David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014 Realtek Semiconductor Corp. All rights reserved. |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/signal.h> |
| 7 | #include <linux/slab.h> |
| 8 | #include <linux/module.h> |
| 9 | #include <linux/netdevice.h> |
| 10 | #include <linux/etherdevice.h> |
| 11 | #include <linux/mii.h> |
| 12 | #include <linux/ethtool.h> |
| 13 | #include <linux/usb.h> |
| 14 | #include <linux/crc32.h> |
| 15 | #include <linux/if_vlan.h> |
| 16 | #include <linux/uaccess.h> |
| 17 | #include <linux/list.h> |
| 18 | #include <linux/ip.h> |
| 19 | #include <linux/ipv6.h> |
| 20 | #include <net/ip6_checksum.h> |
| 21 | #include <uapi/linux/mdio.h> |
| 22 | #include <linux/mdio.h> |
| 23 | #include <linux/usb/cdc.h> |
| 24 | #include <linux/suspend.h> |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 25 | #include <linux/atomic.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 26 | #include <linux/acpi.h> |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 27 | #include <linux/firmware.h> |
| 28 | #include <crypto/hash.h> |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 29 | |
| 30 | /* Information for net-next */ |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 31 | #define NETNEXT_VERSION "11" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 32 | |
| 33 | /* Information for net */ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 34 | #define NET_VERSION "11" |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 35 | |
| 36 | #define DRIVER_VERSION "v1." NETNEXT_VERSION "." NET_VERSION |
| 37 | #define DRIVER_AUTHOR "Realtek linux nic maintainers <nic_swsd@realtek.com>" |
| 38 | #define DRIVER_DESC "Realtek RTL8152/RTL8153 Based USB Ethernet Adapters" |
| 39 | #define MODULENAME "r8152" |
| 40 | |
| 41 | #define R8152_PHY_ID 32 |
| 42 | |
| 43 | #define PLA_IDR 0xc000 |
| 44 | #define PLA_RCR 0xc010 |
| 45 | #define PLA_RMS 0xc016 |
| 46 | #define PLA_RXFIFO_CTRL0 0xc0a0 |
| 47 | #define PLA_RXFIFO_CTRL1 0xc0a4 |
| 48 | #define PLA_RXFIFO_CTRL2 0xc0a8 |
| 49 | #define PLA_DMY_REG0 0xc0b0 |
| 50 | #define PLA_FMC 0xc0b4 |
| 51 | #define PLA_CFG_WOL 0xc0b6 |
| 52 | #define PLA_TEREDO_CFG 0xc0bc |
| 53 | #define PLA_TEREDO_WAKE_BASE 0xc0c4 |
| 54 | #define PLA_MAR 0xcd00 |
| 55 | #define PLA_BACKUP 0xd000 |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 56 | #define PLA_BDC_CR 0xd1a0 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 57 | #define PLA_TEREDO_TIMER 0xd2cc |
| 58 | #define PLA_REALWOW_TIMER 0xd2e8 |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 59 | #define PLA_UPHY_TIMER 0xd388 |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 60 | #define PLA_SUSPEND_FLAG 0xd38a |
| 61 | #define PLA_INDICATE_FALG 0xd38c |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 62 | #define PLA_MACDBG_PRE 0xd38c /* RTL_VER_04 only */ |
| 63 | #define PLA_MACDBG_POST 0xd38e /* RTL_VER_04 only */ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 64 | #define PLA_EXTRA_STATUS 0xd398 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 65 | #define PLA_EFUSE_DATA 0xdd00 |
| 66 | #define PLA_EFUSE_CMD 0xdd02 |
| 67 | #define PLA_LEDSEL 0xdd90 |
| 68 | #define PLA_LED_FEATURE 0xdd92 |
| 69 | #define PLA_PHYAR 0xde00 |
| 70 | #define PLA_BOOT_CTRL 0xe004 |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 71 | #define PLA_LWAKE_CTRL_REG 0xe007 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 72 | #define PLA_GPHY_INTR_IMR 0xe022 |
| 73 | #define PLA_EEE_CR 0xe040 |
| 74 | #define PLA_EEEP_CR 0xe080 |
| 75 | #define PLA_MAC_PWR_CTRL 0xe0c0 |
| 76 | #define PLA_MAC_PWR_CTRL2 0xe0ca |
| 77 | #define PLA_MAC_PWR_CTRL3 0xe0cc |
| 78 | #define PLA_MAC_PWR_CTRL4 0xe0ce |
| 79 | #define PLA_WDT6_CTRL 0xe428 |
| 80 | #define PLA_TCR0 0xe610 |
| 81 | #define PLA_TCR1 0xe612 |
| 82 | #define PLA_MTPS 0xe615 |
| 83 | #define PLA_TXFIFO_CTRL 0xe618 |
| 84 | #define PLA_RSTTALLY 0xe800 |
| 85 | #define PLA_CR 0xe813 |
| 86 | #define PLA_CRWECR 0xe81c |
| 87 | #define PLA_CONFIG12 0xe81e /* CONFIG1, CONFIG2 */ |
| 88 | #define PLA_CONFIG34 0xe820 /* CONFIG3, CONFIG4 */ |
| 89 | #define PLA_CONFIG5 0xe822 |
| 90 | #define PLA_PHY_PWR 0xe84c |
| 91 | #define PLA_OOB_CTRL 0xe84f |
| 92 | #define PLA_CPCR 0xe854 |
| 93 | #define PLA_MISC_0 0xe858 |
| 94 | #define PLA_MISC_1 0xe85a |
| 95 | #define PLA_OCP_GPHY_BASE 0xe86c |
| 96 | #define PLA_TALLYCNT 0xe890 |
| 97 | #define PLA_SFF_STS_7 0xe8de |
| 98 | #define PLA_PHYSTATUS 0xe908 |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 99 | #define PLA_CONFIG6 0xe90a /* CONFIG6 */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 100 | #define PLA_BP_BA 0xfc26 |
| 101 | #define PLA_BP_0 0xfc28 |
| 102 | #define PLA_BP_1 0xfc2a |
| 103 | #define PLA_BP_2 0xfc2c |
| 104 | #define PLA_BP_3 0xfc2e |
| 105 | #define PLA_BP_4 0xfc30 |
| 106 | #define PLA_BP_5 0xfc32 |
| 107 | #define PLA_BP_6 0xfc34 |
| 108 | #define PLA_BP_7 0xfc36 |
| 109 | #define PLA_BP_EN 0xfc38 |
| 110 | |
| 111 | #define USB_USB2PHY 0xb41e |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 112 | #define USB_SSPHYLINK1 0xb426 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 113 | #define USB_SSPHYLINK2 0xb428 |
| 114 | #define USB_U2P3_CTRL 0xb460 |
| 115 | #define USB_CSR_DUMMY1 0xb464 |
| 116 | #define USB_CSR_DUMMY2 0xb466 |
| 117 | #define USB_DEV_STAT 0xb808 |
| 118 | #define USB_CONNECT_TIMER 0xcbf8 |
| 119 | #define USB_MSC_TIMER 0xcbfc |
| 120 | #define USB_BURST_SIZE 0xcfc0 |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 121 | #define USB_FW_FIX_EN0 0xcfca |
| 122 | #define USB_FW_FIX_EN1 0xcfcc |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 123 | #define USB_LPM_CONFIG 0xcfd8 |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 124 | #define USB_CSTMR 0xcfef /* RTL8153A */ |
| 125 | #define USB_FW_CTRL 0xd334 /* RTL8153B */ |
| 126 | #define USB_FC_TIMER 0xd340 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 127 | #define USB_USB_CTRL 0xd406 |
| 128 | #define USB_PHY_CTRL 0xd408 |
| 129 | #define USB_TX_AGG 0xd40a |
| 130 | #define USB_RX_BUF_TH 0xd40c |
| 131 | #define USB_USB_TIMER 0xd428 |
| 132 | #define USB_RX_EARLY_TIMEOUT 0xd42c |
| 133 | #define USB_RX_EARLY_SIZE 0xd42e |
| 134 | #define USB_PM_CTRL_STATUS 0xd432 /* RTL8153A */ |
| 135 | #define USB_RX_EXTRA_AGGR_TMR 0xd432 /* RTL8153B */ |
| 136 | #define USB_TX_DMA 0xd434 |
| 137 | #define USB_UPT_RXDMA_OWN 0xd437 |
| 138 | #define USB_TOLERANCE 0xd490 |
| 139 | #define USB_LPM_CTRL 0xd41a |
| 140 | #define USB_BMU_RESET 0xd4b0 |
| 141 | #define USB_U1U2_TIMER 0xd4da |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 142 | #define USB_FW_TASK 0xd4e8 /* RTL8153B */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 143 | #define USB_UPS_CTRL 0xd800 |
| 144 | #define USB_POWER_CUT 0xd80a |
| 145 | #define USB_MISC_0 0xd81a |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 146 | #define USB_MISC_1 0xd81f |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 147 | #define USB_AFE_CTRL2 0xd824 |
| 148 | #define USB_UPS_CFG 0xd842 |
| 149 | #define USB_UPS_FLAGS 0xd848 |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 150 | #define USB_WDT1_CTRL 0xe404 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 151 | #define USB_WDT11_CTRL 0xe43c |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 152 | #define USB_BP_BA PLA_BP_BA |
| 153 | #define USB_BP_0 PLA_BP_0 |
| 154 | #define USB_BP_1 PLA_BP_1 |
| 155 | #define USB_BP_2 PLA_BP_2 |
| 156 | #define USB_BP_3 PLA_BP_3 |
| 157 | #define USB_BP_4 PLA_BP_4 |
| 158 | #define USB_BP_5 PLA_BP_5 |
| 159 | #define USB_BP_6 PLA_BP_6 |
| 160 | #define USB_BP_7 PLA_BP_7 |
| 161 | #define USB_BP_EN PLA_BP_EN /* RTL8153A */ |
| 162 | #define USB_BP_8 0xfc38 /* RTL8153B */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 163 | #define USB_BP_9 0xfc3a |
| 164 | #define USB_BP_10 0xfc3c |
| 165 | #define USB_BP_11 0xfc3e |
| 166 | #define USB_BP_12 0xfc40 |
| 167 | #define USB_BP_13 0xfc42 |
| 168 | #define USB_BP_14 0xfc44 |
| 169 | #define USB_BP_15 0xfc46 |
| 170 | #define USB_BP2_EN 0xfc48 |
| 171 | |
| 172 | /* OCP Registers */ |
| 173 | #define OCP_ALDPS_CONFIG 0x2010 |
| 174 | #define OCP_EEE_CONFIG1 0x2080 |
| 175 | #define OCP_EEE_CONFIG2 0x2092 |
| 176 | #define OCP_EEE_CONFIG3 0x2094 |
| 177 | #define OCP_BASE_MII 0xa400 |
| 178 | #define OCP_EEE_AR 0xa41a |
| 179 | #define OCP_EEE_DATA 0xa41c |
| 180 | #define OCP_PHY_STATUS 0xa420 |
| 181 | #define OCP_NCTL_CFG 0xa42c |
| 182 | #define OCP_POWER_CFG 0xa430 |
| 183 | #define OCP_EEE_CFG 0xa432 |
| 184 | #define OCP_SRAM_ADDR 0xa436 |
| 185 | #define OCP_SRAM_DATA 0xa438 |
| 186 | #define OCP_DOWN_SPEED 0xa442 |
| 187 | #define OCP_EEE_ABLE 0xa5c4 |
| 188 | #define OCP_EEE_ADV 0xa5d0 |
| 189 | #define OCP_EEE_LPABLE 0xa5d2 |
| 190 | #define OCP_PHY_STATE 0xa708 /* nway state for 8153 */ |
| 191 | #define OCP_PHY_PATCH_STAT 0xb800 |
| 192 | #define OCP_PHY_PATCH_CMD 0xb820 |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 193 | #define OCP_PHY_LOCK 0xb82e |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 194 | #define OCP_ADC_IOFFSET 0xbcfc |
| 195 | #define OCP_ADC_CFG 0xbc06 |
| 196 | #define OCP_SYSCLK_CFG 0xc416 |
| 197 | |
| 198 | /* SRAM Register */ |
| 199 | #define SRAM_GREEN_CFG 0x8011 |
| 200 | #define SRAM_LPF_CFG 0x8012 |
| 201 | #define SRAM_10M_AMP1 0x8080 |
| 202 | #define SRAM_10M_AMP2 0x8082 |
| 203 | #define SRAM_IMPEDANCE 0x8084 |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 204 | #define SRAM_PHY_LOCK 0xb82e |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 205 | |
| 206 | /* PLA_RCR */ |
| 207 | #define RCR_AAP 0x00000001 |
| 208 | #define RCR_APM 0x00000002 |
| 209 | #define RCR_AM 0x00000004 |
| 210 | #define RCR_AB 0x00000008 |
| 211 | #define RCR_ACPT_ALL (RCR_AAP | RCR_APM | RCR_AM | RCR_AB) |
| 212 | |
| 213 | /* PLA_RXFIFO_CTRL0 */ |
| 214 | #define RXFIFO_THR1_NORMAL 0x00080002 |
| 215 | #define RXFIFO_THR1_OOB 0x01800003 |
| 216 | |
| 217 | /* PLA_RXFIFO_CTRL1 */ |
| 218 | #define RXFIFO_THR2_FULL 0x00000060 |
| 219 | #define RXFIFO_THR2_HIGH 0x00000038 |
| 220 | #define RXFIFO_THR2_OOB 0x0000004a |
| 221 | #define RXFIFO_THR2_NORMAL 0x00a0 |
| 222 | |
| 223 | /* PLA_RXFIFO_CTRL2 */ |
| 224 | #define RXFIFO_THR3_FULL 0x00000078 |
| 225 | #define RXFIFO_THR3_HIGH 0x00000048 |
| 226 | #define RXFIFO_THR3_OOB 0x0000005a |
| 227 | #define RXFIFO_THR3_NORMAL 0x0110 |
| 228 | |
| 229 | /* PLA_TXFIFO_CTRL */ |
| 230 | #define TXFIFO_THR_NORMAL 0x00400008 |
| 231 | #define TXFIFO_THR_NORMAL2 0x01000008 |
| 232 | |
| 233 | /* PLA_DMY_REG0 */ |
| 234 | #define ECM_ALDPS 0x0002 |
| 235 | |
| 236 | /* PLA_FMC */ |
| 237 | #define FMC_FCR_MCU_EN 0x0001 |
| 238 | |
| 239 | /* PLA_EEEP_CR */ |
| 240 | #define EEEP_CR_EEEP_TX 0x0002 |
| 241 | |
| 242 | /* PLA_WDT6_CTRL */ |
| 243 | #define WDT6_SET_MODE 0x0010 |
| 244 | |
| 245 | /* PLA_TCR0 */ |
| 246 | #define TCR0_TX_EMPTY 0x0800 |
| 247 | #define TCR0_AUTO_FIFO 0x0080 |
| 248 | |
| 249 | /* PLA_TCR1 */ |
| 250 | #define VERSION_MASK 0x7cf0 |
| 251 | |
| 252 | /* PLA_MTPS */ |
| 253 | #define MTPS_JUMBO (12 * 1024 / 64) |
| 254 | #define MTPS_DEFAULT (6 * 1024 / 64) |
| 255 | |
| 256 | /* PLA_RSTTALLY */ |
| 257 | #define TALLY_RESET 0x0001 |
| 258 | |
| 259 | /* PLA_CR */ |
| 260 | #define CR_RST 0x10 |
| 261 | #define CR_RE 0x08 |
| 262 | #define CR_TE 0x04 |
| 263 | |
| 264 | /* PLA_CRWECR */ |
| 265 | #define CRWECR_NORAML 0x00 |
| 266 | #define CRWECR_CONFIG 0xc0 |
| 267 | |
| 268 | /* PLA_OOB_CTRL */ |
| 269 | #define NOW_IS_OOB 0x80 |
| 270 | #define TXFIFO_EMPTY 0x20 |
| 271 | #define RXFIFO_EMPTY 0x10 |
| 272 | #define LINK_LIST_READY 0x02 |
| 273 | #define DIS_MCU_CLROOB 0x01 |
| 274 | #define FIFO_EMPTY (TXFIFO_EMPTY | RXFIFO_EMPTY) |
| 275 | |
| 276 | /* PLA_MISC_1 */ |
| 277 | #define RXDY_GATED_EN 0x0008 |
| 278 | |
| 279 | /* PLA_SFF_STS_7 */ |
| 280 | #define RE_INIT_LL 0x8000 |
| 281 | #define MCU_BORW_EN 0x4000 |
| 282 | |
| 283 | /* PLA_CPCR */ |
| 284 | #define CPCR_RX_VLAN 0x0040 |
| 285 | |
| 286 | /* PLA_CFG_WOL */ |
| 287 | #define MAGIC_EN 0x0001 |
| 288 | |
| 289 | /* PLA_TEREDO_CFG */ |
| 290 | #define TEREDO_SEL 0x8000 |
| 291 | #define TEREDO_WAKE_MASK 0x7f00 |
| 292 | #define TEREDO_RS_EVENT_MASK 0x00fe |
| 293 | #define OOB_TEREDO_EN 0x0001 |
| 294 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 295 | /* PLA_BDC_CR */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 296 | #define ALDPS_PROXY_MODE 0x0001 |
| 297 | |
| 298 | /* PLA_EFUSE_CMD */ |
| 299 | #define EFUSE_READ_CMD BIT(15) |
| 300 | #define EFUSE_DATA_BIT16 BIT(7) |
| 301 | |
| 302 | /* PLA_CONFIG34 */ |
| 303 | #define LINK_ON_WAKE_EN 0x0010 |
| 304 | #define LINK_OFF_WAKE_EN 0x0008 |
| 305 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 306 | /* PLA_CONFIG6 */ |
| 307 | #define LANWAKE_CLR_EN BIT(0) |
| 308 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 309 | /* PLA_CONFIG5 */ |
| 310 | #define BWF_EN 0x0040 |
| 311 | #define MWF_EN 0x0020 |
| 312 | #define UWF_EN 0x0010 |
| 313 | #define LAN_WAKE_EN 0x0002 |
| 314 | |
| 315 | /* PLA_LED_FEATURE */ |
| 316 | #define LED_MODE_MASK 0x0700 |
| 317 | |
| 318 | /* PLA_PHY_PWR */ |
| 319 | #define TX_10M_IDLE_EN 0x0080 |
| 320 | #define PFM_PWM_SWITCH 0x0040 |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 321 | #define TEST_IO_OFF BIT(4) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 322 | |
| 323 | /* PLA_MAC_PWR_CTRL */ |
| 324 | #define D3_CLK_GATED_EN 0x00004000 |
| 325 | #define MCU_CLK_RATIO 0x07010f07 |
| 326 | #define MCU_CLK_RATIO_MASK 0x0f0f0f0f |
| 327 | #define ALDPS_SPDWN_RATIO 0x0f87 |
| 328 | |
| 329 | /* PLA_MAC_PWR_CTRL2 */ |
| 330 | #define EEE_SPDWN_RATIO 0x8007 |
| 331 | #define MAC_CLK_SPDWN_EN BIT(15) |
| 332 | |
| 333 | /* PLA_MAC_PWR_CTRL3 */ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 334 | #define PLA_MCU_SPDWN_EN BIT(14) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 335 | #define PKT_AVAIL_SPDWN_EN 0x0100 |
| 336 | #define SUSPEND_SPDWN_EN 0x0004 |
| 337 | #define U1U2_SPDWN_EN 0x0002 |
| 338 | #define L1_SPDWN_EN 0x0001 |
| 339 | |
| 340 | /* PLA_MAC_PWR_CTRL4 */ |
| 341 | #define PWRSAVE_SPDWN_EN 0x1000 |
| 342 | #define RXDV_SPDWN_EN 0x0800 |
| 343 | #define TX10MIDLE_EN 0x0100 |
| 344 | #define TP100_SPDWN_EN 0x0020 |
| 345 | #define TP500_SPDWN_EN 0x0010 |
| 346 | #define TP1000_SPDWN_EN 0x0008 |
| 347 | #define EEE_SPDWN_EN 0x0001 |
| 348 | |
| 349 | /* PLA_GPHY_INTR_IMR */ |
| 350 | #define GPHY_STS_MSK 0x0001 |
| 351 | #define SPEED_DOWN_MSK 0x0002 |
| 352 | #define SPDWN_RXDV_MSK 0x0004 |
| 353 | #define SPDWN_LINKCHG_MSK 0x0008 |
| 354 | |
| 355 | /* PLA_PHYAR */ |
| 356 | #define PHYAR_FLAG 0x80000000 |
| 357 | |
| 358 | /* PLA_EEE_CR */ |
| 359 | #define EEE_RX_EN 0x0001 |
| 360 | #define EEE_TX_EN 0x0002 |
| 361 | |
| 362 | /* PLA_BOOT_CTRL */ |
| 363 | #define AUTOLOAD_DONE 0x0002 |
| 364 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 365 | /* PLA_LWAKE_CTRL_REG */ |
| 366 | #define LANWAKE_PIN BIT(7) |
| 367 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 368 | /* PLA_SUSPEND_FLAG */ |
| 369 | #define LINK_CHG_EVENT BIT(0) |
| 370 | |
| 371 | /* PLA_INDICATE_FALG */ |
| 372 | #define UPCOMING_RUNTIME_D3 BIT(0) |
| 373 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 374 | /* PLA_MACDBG_PRE and PLA_MACDBG_POST */ |
| 375 | #define DEBUG_OE BIT(0) |
| 376 | #define DEBUG_LTSSM 0x0082 |
| 377 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 378 | /* PLA_EXTRA_STATUS */ |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 379 | #define CUR_LINK_OK BIT(15) |
| 380 | #define U3P3_CHECK_EN BIT(7) /* RTL_VER_05 only */ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 381 | #define LINK_CHANGE_FLAG BIT(8) |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 382 | #define POLL_LINK_CHG BIT(0) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 383 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 384 | /* USB_USB2PHY */ |
| 385 | #define USB2PHY_SUSPEND 0x0001 |
| 386 | #define USB2PHY_L1 0x0002 |
| 387 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 388 | /* USB_SSPHYLINK1 */ |
| 389 | #define DELAY_PHY_PWR_CHG BIT(1) |
| 390 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 391 | /* USB_SSPHYLINK2 */ |
| 392 | #define pwd_dn_scale_mask 0x3ffe |
| 393 | #define pwd_dn_scale(x) ((x) << 1) |
| 394 | |
| 395 | /* USB_CSR_DUMMY1 */ |
| 396 | #define DYNAMIC_BURST 0x0001 |
| 397 | |
| 398 | /* USB_CSR_DUMMY2 */ |
| 399 | #define EP4_FULL_FC 0x0001 |
| 400 | |
| 401 | /* USB_DEV_STAT */ |
| 402 | #define STAT_SPEED_MASK 0x0006 |
| 403 | #define STAT_SPEED_HIGH 0x0000 |
| 404 | #define STAT_SPEED_FULL 0x0002 |
| 405 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 406 | /* USB_FW_FIX_EN0 */ |
| 407 | #define FW_FIX_SUSPEND BIT(14) |
| 408 | |
| 409 | /* USB_FW_FIX_EN1 */ |
| 410 | #define FW_IP_RESET_EN BIT(9) |
| 411 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 412 | /* USB_LPM_CONFIG */ |
| 413 | #define LPM_U1U2_EN BIT(0) |
| 414 | |
| 415 | /* USB_TX_AGG */ |
| 416 | #define TX_AGG_MAX_THRESHOLD 0x03 |
| 417 | |
| 418 | /* USB_RX_BUF_TH */ |
| 419 | #define RX_THR_SUPPER 0x0c350180 |
| 420 | #define RX_THR_HIGH 0x7a120180 |
| 421 | #define RX_THR_SLOW 0xffff0180 |
| 422 | #define RX_THR_B 0x00010001 |
| 423 | |
| 424 | /* USB_TX_DMA */ |
| 425 | #define TEST_MODE_DISABLE 0x00000001 |
| 426 | #define TX_SIZE_ADJUST1 0x00000100 |
| 427 | |
| 428 | /* USB_BMU_RESET */ |
| 429 | #define BMU_RESET_EP_IN 0x01 |
| 430 | #define BMU_RESET_EP_OUT 0x02 |
| 431 | |
| 432 | /* USB_UPT_RXDMA_OWN */ |
| 433 | #define OWN_UPDATE BIT(0) |
| 434 | #define OWN_CLEAR BIT(1) |
| 435 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 436 | /* USB_FW_TASK */ |
| 437 | #define FC_PATCH_TASK BIT(1) |
| 438 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 439 | /* USB_UPS_CTRL */ |
| 440 | #define POWER_CUT 0x0100 |
| 441 | |
| 442 | /* USB_PM_CTRL_STATUS */ |
| 443 | #define RESUME_INDICATE 0x0001 |
| 444 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 445 | /* USB_CSTMR */ |
| 446 | #define FORCE_SUPER BIT(0) |
| 447 | |
| 448 | /* USB_FW_CTRL */ |
| 449 | #define FLOW_CTRL_PATCH_OPT BIT(1) |
| 450 | |
| 451 | /* USB_FC_TIMER */ |
| 452 | #define CTRL_TIMER_EN BIT(15) |
| 453 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 454 | /* USB_USB_CTRL */ |
| 455 | #define RX_AGG_DISABLE 0x0010 |
| 456 | #define RX_ZERO_EN 0x0080 |
| 457 | |
| 458 | /* USB_U2P3_CTRL */ |
| 459 | #define U2P3_ENABLE 0x0001 |
| 460 | |
| 461 | /* USB_POWER_CUT */ |
| 462 | #define PWR_EN 0x0001 |
| 463 | #define PHASE2_EN 0x0008 |
| 464 | #define UPS_EN BIT(4) |
| 465 | #define USP_PREWAKE BIT(5) |
| 466 | |
| 467 | /* USB_MISC_0 */ |
| 468 | #define PCUT_STATUS 0x0001 |
| 469 | |
| 470 | /* USB_RX_EARLY_TIMEOUT */ |
| 471 | #define COALESCE_SUPER 85000U |
| 472 | #define COALESCE_HIGH 250000U |
| 473 | #define COALESCE_SLOW 524280U |
| 474 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 475 | /* USB_WDT1_CTRL */ |
| 476 | #define WTD1_EN BIT(0) |
| 477 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 478 | /* USB_WDT11_CTRL */ |
| 479 | #define TIMER11_EN 0x0001 |
| 480 | |
| 481 | /* USB_LPM_CTRL */ |
| 482 | /* bit 4 ~ 5: fifo empty boundary */ |
| 483 | #define FIFO_EMPTY_1FB 0x30 /* 0x1fb * 64 = 32448 bytes */ |
| 484 | /* bit 2 ~ 3: LMP timer */ |
| 485 | #define LPM_TIMER_MASK 0x0c |
| 486 | #define LPM_TIMER_500MS 0x04 /* 500 ms */ |
| 487 | #define LPM_TIMER_500US 0x0c /* 500 us */ |
| 488 | #define ROK_EXIT_LPM 0x02 |
| 489 | |
| 490 | /* USB_AFE_CTRL2 */ |
| 491 | #define SEN_VAL_MASK 0xf800 |
| 492 | #define SEN_VAL_NORMAL 0xa000 |
| 493 | #define SEL_RXIDLE 0x0100 |
| 494 | |
| 495 | /* USB_UPS_CFG */ |
| 496 | #define SAW_CNT_1MS_MASK 0x0fff |
| 497 | |
| 498 | /* USB_UPS_FLAGS */ |
| 499 | #define UPS_FLAGS_R_TUNE BIT(0) |
| 500 | #define UPS_FLAGS_EN_10M_CKDIV BIT(1) |
| 501 | #define UPS_FLAGS_250M_CKDIV BIT(2) |
| 502 | #define UPS_FLAGS_EN_ALDPS BIT(3) |
| 503 | #define UPS_FLAGS_CTAP_SHORT_DIS BIT(4) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 504 | #define ups_flags_speed(x) ((x) << 16) |
| 505 | #define UPS_FLAGS_EN_EEE BIT(20) |
| 506 | #define UPS_FLAGS_EN_500M_EEE BIT(21) |
| 507 | #define UPS_FLAGS_EN_EEE_CKDIV BIT(22) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 508 | #define UPS_FLAGS_EEE_PLLOFF_100 BIT(23) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 509 | #define UPS_FLAGS_EEE_PLLOFF_GIGA BIT(24) |
| 510 | #define UPS_FLAGS_EEE_CMOD_LV_EN BIT(25) |
| 511 | #define UPS_FLAGS_EN_GREEN BIT(26) |
| 512 | #define UPS_FLAGS_EN_FLOW_CTR BIT(27) |
| 513 | |
| 514 | enum spd_duplex { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 515 | NWAY_10M_HALF, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 516 | NWAY_10M_FULL, |
| 517 | NWAY_100M_HALF, |
| 518 | NWAY_100M_FULL, |
| 519 | NWAY_1000M_FULL, |
| 520 | FORCE_10M_HALF, |
| 521 | FORCE_10M_FULL, |
| 522 | FORCE_100M_HALF, |
| 523 | FORCE_100M_FULL, |
| 524 | }; |
| 525 | |
| 526 | /* OCP_ALDPS_CONFIG */ |
| 527 | #define ENPWRSAVE 0x8000 |
| 528 | #define ENPDNPS 0x0200 |
| 529 | #define LINKENA 0x0100 |
| 530 | #define DIS_SDSAVE 0x0010 |
| 531 | |
| 532 | /* OCP_PHY_STATUS */ |
| 533 | #define PHY_STAT_MASK 0x0007 |
| 534 | #define PHY_STAT_EXT_INIT 2 |
| 535 | #define PHY_STAT_LAN_ON 3 |
| 536 | #define PHY_STAT_PWRDN 5 |
| 537 | |
| 538 | /* OCP_NCTL_CFG */ |
| 539 | #define PGA_RETURN_EN BIT(1) |
| 540 | |
| 541 | /* OCP_POWER_CFG */ |
| 542 | #define EEE_CLKDIV_EN 0x8000 |
| 543 | #define EN_ALDPS 0x0004 |
| 544 | #define EN_10M_PLLOFF 0x0001 |
| 545 | |
| 546 | /* OCP_EEE_CONFIG1 */ |
| 547 | #define RG_TXLPI_MSK_HFDUP 0x8000 |
| 548 | #define RG_MATCLR_EN 0x4000 |
| 549 | #define EEE_10_CAP 0x2000 |
| 550 | #define EEE_NWAY_EN 0x1000 |
| 551 | #define TX_QUIET_EN 0x0200 |
| 552 | #define RX_QUIET_EN 0x0100 |
| 553 | #define sd_rise_time_mask 0x0070 |
| 554 | #define sd_rise_time(x) (min(x, 7) << 4) /* bit 4 ~ 6 */ |
| 555 | #define RG_RXLPI_MSK_HFDUP 0x0008 |
| 556 | #define SDFALLTIME 0x0007 /* bit 0 ~ 2 */ |
| 557 | |
| 558 | /* OCP_EEE_CONFIG2 */ |
| 559 | #define RG_LPIHYS_NUM 0x7000 /* bit 12 ~ 15 */ |
| 560 | #define RG_DACQUIET_EN 0x0400 |
| 561 | #define RG_LDVQUIET_EN 0x0200 |
| 562 | #define RG_CKRSEL 0x0020 |
| 563 | #define RG_EEEPRG_EN 0x0010 |
| 564 | |
| 565 | /* OCP_EEE_CONFIG3 */ |
| 566 | #define fast_snr_mask 0xff80 |
| 567 | #define fast_snr(x) (min(x, 0x1ff) << 7) /* bit 7 ~ 15 */ |
| 568 | #define RG_LFS_SEL 0x0060 /* bit 6 ~ 5 */ |
| 569 | #define MSK_PH 0x0006 /* bit 0 ~ 3 */ |
| 570 | |
| 571 | /* OCP_EEE_AR */ |
| 572 | /* bit[15:14] function */ |
| 573 | #define FUN_ADDR 0x0000 |
| 574 | #define FUN_DATA 0x4000 |
| 575 | /* bit[4:0] device addr */ |
| 576 | |
| 577 | /* OCP_EEE_CFG */ |
| 578 | #define CTAP_SHORT_EN 0x0040 |
| 579 | #define EEE10_EN 0x0010 |
| 580 | |
| 581 | /* OCP_DOWN_SPEED */ |
| 582 | #define EN_EEE_CMODE BIT(14) |
| 583 | #define EN_EEE_1000 BIT(13) |
| 584 | #define EN_EEE_100 BIT(12) |
| 585 | #define EN_10M_CLKDIV BIT(11) |
| 586 | #define EN_10M_BGOFF 0x0080 |
| 587 | |
| 588 | /* OCP_PHY_STATE */ |
| 589 | #define TXDIS_STATE 0x01 |
| 590 | #define ABD_STATE 0x02 |
| 591 | |
| 592 | /* OCP_PHY_PATCH_STAT */ |
| 593 | #define PATCH_READY BIT(6) |
| 594 | |
| 595 | /* OCP_PHY_PATCH_CMD */ |
| 596 | #define PATCH_REQUEST BIT(4) |
| 597 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 598 | /* OCP_PHY_LOCK */ |
| 599 | #define PATCH_LOCK BIT(0) |
| 600 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 601 | /* OCP_ADC_CFG */ |
| 602 | #define CKADSEL_L 0x0100 |
| 603 | #define ADC_EN 0x0080 |
| 604 | #define EN_EMI_L 0x0040 |
| 605 | |
| 606 | /* OCP_SYSCLK_CFG */ |
| 607 | #define clk_div_expo(x) (min(x, 5) << 8) |
| 608 | |
| 609 | /* SRAM_GREEN_CFG */ |
| 610 | #define GREEN_ETH_EN BIT(15) |
| 611 | #define R_TUNE_EN BIT(11) |
| 612 | |
| 613 | /* SRAM_LPF_CFG */ |
| 614 | #define LPF_AUTO_TUNE 0x8000 |
| 615 | |
| 616 | /* SRAM_10M_AMP1 */ |
| 617 | #define GDAC_IB_UPALL 0x0008 |
| 618 | |
| 619 | /* SRAM_10M_AMP2 */ |
| 620 | #define AMP_DN 0x0200 |
| 621 | |
| 622 | /* SRAM_IMPEDANCE */ |
| 623 | #define RX_DRIVING_MASK 0x6000 |
| 624 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 625 | /* SRAM_PHY_LOCK */ |
| 626 | #define PHY_PATCH_LOCK 0x0001 |
| 627 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 628 | /* MAC PASSTHRU */ |
| 629 | #define AD_MASK 0xfee0 |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 630 | #define BND_MASK 0x0004 |
| 631 | #define BD_MASK 0x0001 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 632 | #define EFUSE 0xcfdb |
| 633 | #define PASS_THRU_MASK 0x1 |
| 634 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 635 | #define BP4_SUPER_ONLY 0x1578 /* RTL_VER_04 only */ |
| 636 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 637 | enum rtl_register_content { |
| 638 | _1000bps = 0x10, |
| 639 | _100bps = 0x08, |
| 640 | _10bps = 0x04, |
| 641 | LINK_STATUS = 0x02, |
| 642 | FULL_DUP = 0x01, |
| 643 | }; |
| 644 | |
| 645 | #define RTL8152_MAX_TX 4 |
| 646 | #define RTL8152_MAX_RX 10 |
| 647 | #define INTBUFSIZE 2 |
| 648 | #define TX_ALIGN 4 |
| 649 | #define RX_ALIGN 8 |
| 650 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 651 | #define RTL8152_RX_MAX_PENDING 4096 |
| 652 | #define RTL8152_RXFG_HEADSZ 256 |
| 653 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 654 | #define INTR_LINK 0x0004 |
| 655 | |
| 656 | #define RTL8152_REQT_READ 0xc0 |
| 657 | #define RTL8152_REQT_WRITE 0x40 |
| 658 | #define RTL8152_REQ_GET_REGS 0x05 |
| 659 | #define RTL8152_REQ_SET_REGS 0x05 |
| 660 | |
| 661 | #define BYTE_EN_DWORD 0xff |
| 662 | #define BYTE_EN_WORD 0x33 |
| 663 | #define BYTE_EN_BYTE 0x11 |
| 664 | #define BYTE_EN_SIX_BYTES 0x3f |
| 665 | #define BYTE_EN_START_MASK 0x0f |
| 666 | #define BYTE_EN_END_MASK 0xf0 |
| 667 | |
| 668 | #define RTL8153_MAX_PACKET 9216 /* 9K */ |
| 669 | #define RTL8153_MAX_MTU (RTL8153_MAX_PACKET - VLAN_ETH_HLEN - \ |
| 670 | ETH_FCS_LEN) |
| 671 | #define RTL8152_RMS (VLAN_ETH_FRAME_LEN + ETH_FCS_LEN) |
| 672 | #define RTL8153_RMS RTL8153_MAX_PACKET |
| 673 | #define RTL8152_TX_TIMEOUT (5 * HZ) |
| 674 | #define RTL8152_NAPI_WEIGHT 64 |
| 675 | #define rx_reserved_size(x) ((x) + VLAN_ETH_HLEN + ETH_FCS_LEN + \ |
| 676 | sizeof(struct rx_desc) + RX_ALIGN) |
| 677 | |
| 678 | /* rtl8152 flags */ |
| 679 | enum rtl8152_flags { |
| 680 | RTL8152_UNPLUG = 0, |
| 681 | RTL8152_SET_RX_MODE, |
| 682 | WORK_ENABLE, |
| 683 | RTL8152_LINK_CHG, |
| 684 | SELECTIVE_SUSPEND, |
| 685 | PHY_RESET, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 686 | SCHEDULE_TASKLET, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 687 | GREEN_ETHERNET, |
| 688 | DELL_TB_RX_AGG_BUG, |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 689 | LENOVO_MACPASSTHRU, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 690 | }; |
| 691 | |
| 692 | /* Define these values to match your device */ |
| 693 | #define VENDOR_ID_REALTEK 0x0bda |
| 694 | #define VENDOR_ID_MICROSOFT 0x045e |
| 695 | #define VENDOR_ID_SAMSUNG 0x04e8 |
| 696 | #define VENDOR_ID_LENOVO 0x17ef |
| 697 | #define VENDOR_ID_LINKSYS 0x13b1 |
| 698 | #define VENDOR_ID_NVIDIA 0x0955 |
| 699 | #define VENDOR_ID_TPLINK 0x2357 |
| 700 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 701 | #define DEVICE_ID_THINKPAD_THUNDERBOLT3_DOCK_GEN2 0x3082 |
| 702 | #define DEVICE_ID_THINKPAD_USB_C_DOCK_GEN2 0xa387 |
| 703 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 704 | #define MCU_TYPE_PLA 0x0100 |
| 705 | #define MCU_TYPE_USB 0x0000 |
| 706 | |
| 707 | struct tally_counter { |
| 708 | __le64 tx_packets; |
| 709 | __le64 rx_packets; |
| 710 | __le64 tx_errors; |
| 711 | __le32 rx_errors; |
| 712 | __le16 rx_missed; |
| 713 | __le16 align_errors; |
| 714 | __le32 tx_one_collision; |
| 715 | __le32 tx_multi_collision; |
| 716 | __le64 rx_unicast; |
| 717 | __le64 rx_broadcast; |
| 718 | __le32 rx_multicast; |
| 719 | __le16 tx_aborted; |
| 720 | __le16 tx_underrun; |
| 721 | }; |
| 722 | |
| 723 | struct rx_desc { |
| 724 | __le32 opts1; |
| 725 | #define RX_LEN_MASK 0x7fff |
| 726 | |
| 727 | __le32 opts2; |
| 728 | #define RD_UDP_CS BIT(23) |
| 729 | #define RD_TCP_CS BIT(22) |
| 730 | #define RD_IPV6_CS BIT(20) |
| 731 | #define RD_IPV4_CS BIT(19) |
| 732 | |
| 733 | __le32 opts3; |
| 734 | #define IPF BIT(23) /* IP checksum fail */ |
| 735 | #define UDPF BIT(22) /* UDP checksum fail */ |
| 736 | #define TCPF BIT(21) /* TCP checksum fail */ |
| 737 | #define RX_VLAN_TAG BIT(16) |
| 738 | |
| 739 | __le32 opts4; |
| 740 | __le32 opts5; |
| 741 | __le32 opts6; |
| 742 | }; |
| 743 | |
| 744 | struct tx_desc { |
| 745 | __le32 opts1; |
| 746 | #define TX_FS BIT(31) /* First segment of a packet */ |
| 747 | #define TX_LS BIT(30) /* Final segment of a packet */ |
| 748 | #define GTSENDV4 BIT(28) |
| 749 | #define GTSENDV6 BIT(27) |
| 750 | #define GTTCPHO_SHIFT 18 |
| 751 | #define GTTCPHO_MAX 0x7fU |
| 752 | #define TX_LEN_MAX 0x3ffffU |
| 753 | |
| 754 | __le32 opts2; |
| 755 | #define UDP_CS BIT(31) /* Calculate UDP/IP checksum */ |
| 756 | #define TCP_CS BIT(30) /* Calculate TCP/IP checksum */ |
| 757 | #define IPV4_CS BIT(29) /* Calculate IPv4 checksum */ |
| 758 | #define IPV6_CS BIT(28) /* Calculate IPv6 checksum */ |
| 759 | #define MSS_SHIFT 17 |
| 760 | #define MSS_MAX 0x7ffU |
| 761 | #define TCPHO_SHIFT 17 |
| 762 | #define TCPHO_MAX 0x7ffU |
| 763 | #define TX_VLAN_TAG BIT(16) |
| 764 | }; |
| 765 | |
| 766 | struct r8152; |
| 767 | |
| 768 | struct rx_agg { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 769 | struct list_head list, info_list; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 770 | struct urb *urb; |
| 771 | struct r8152 *context; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 772 | struct page *page; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 773 | void *buffer; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 774 | }; |
| 775 | |
| 776 | struct tx_agg { |
| 777 | struct list_head list; |
| 778 | struct urb *urb; |
| 779 | struct r8152 *context; |
| 780 | void *buffer; |
| 781 | void *head; |
| 782 | u32 skb_num; |
| 783 | u32 skb_len; |
| 784 | }; |
| 785 | |
| 786 | struct r8152 { |
| 787 | unsigned long flags; |
| 788 | struct usb_device *udev; |
| 789 | struct napi_struct napi; |
| 790 | struct usb_interface *intf; |
| 791 | struct net_device *netdev; |
| 792 | struct urb *intr_urb; |
| 793 | struct tx_agg tx_info[RTL8152_MAX_TX]; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 794 | struct list_head rx_info, rx_used; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 795 | struct list_head rx_done, tx_free; |
| 796 | struct sk_buff_head tx_queue, rx_queue; |
| 797 | spinlock_t rx_lock, tx_lock; |
| 798 | struct delayed_work schedule, hw_phy_work; |
| 799 | struct mii_if_info mii; |
| 800 | struct mutex control; /* use for hw setting */ |
| 801 | #ifdef CONFIG_PM_SLEEP |
| 802 | struct notifier_block pm_notifier; |
| 803 | #endif |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 804 | struct tasklet_struct tx_tl; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 805 | |
| 806 | struct rtl_ops { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 807 | void (*init)(struct r8152 *tp); |
| 808 | int (*enable)(struct r8152 *tp); |
| 809 | void (*disable)(struct r8152 *tp); |
| 810 | void (*up)(struct r8152 *tp); |
| 811 | void (*down)(struct r8152 *tp); |
| 812 | void (*unload)(struct r8152 *tp); |
| 813 | int (*eee_get)(struct r8152 *tp, struct ethtool_eee *eee); |
| 814 | int (*eee_set)(struct r8152 *tp, struct ethtool_eee *eee); |
| 815 | bool (*in_nway)(struct r8152 *tp); |
| 816 | void (*hw_phy_cfg)(struct r8152 *tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 817 | void (*autosuspend_en)(struct r8152 *tp, bool enable); |
| 818 | } rtl_ops; |
| 819 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 820 | struct ups_info { |
| 821 | u32 _10m_ckdiv:1; |
| 822 | u32 _250m_ckdiv:1; |
| 823 | u32 aldps:1; |
| 824 | u32 lite_mode:2; |
| 825 | u32 speed_duplex:4; |
| 826 | u32 eee:1; |
| 827 | u32 eee_lite:1; |
| 828 | u32 eee_ckdiv:1; |
| 829 | u32 eee_plloff_100:1; |
| 830 | u32 eee_plloff_giga:1; |
| 831 | u32 eee_cmod_lv:1; |
| 832 | u32 green:1; |
| 833 | u32 flow_control:1; |
| 834 | u32 ctap_short_off:1; |
| 835 | } ups_info; |
| 836 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 837 | #define RTL_VER_SIZE 32 |
| 838 | |
| 839 | struct rtl_fw { |
| 840 | const char *fw_name; |
| 841 | const struct firmware *fw; |
| 842 | |
| 843 | char version[RTL_VER_SIZE]; |
| 844 | int (*pre_fw)(struct r8152 *tp); |
| 845 | int (*post_fw)(struct r8152 *tp); |
| 846 | |
| 847 | bool retry; |
| 848 | } rtl_fw; |
| 849 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 850 | atomic_t rx_count; |
| 851 | |
| 852 | bool eee_en; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 853 | int intr_interval; |
| 854 | u32 saved_wolopts; |
| 855 | u32 msg_enable; |
| 856 | u32 tx_qlen; |
| 857 | u32 coalesce; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 858 | u32 advertising; |
| 859 | u32 rx_buf_sz; |
| 860 | u32 rx_copybreak; |
| 861 | u32 rx_pending; |
| 862 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 863 | u16 ocp_base; |
| 864 | u16 speed; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 865 | u16 eee_adv; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 866 | u8 *intr_buff; |
| 867 | u8 version; |
| 868 | u8 duplex; |
| 869 | u8 autoneg; |
| 870 | }; |
| 871 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 872 | /** |
| 873 | * struct fw_block - block type and total length |
| 874 | * @type: type of the current block, such as RTL_FW_END, RTL_FW_PLA, |
| 875 | * RTL_FW_USB and so on. |
| 876 | * @length: total length of the current block. |
| 877 | */ |
| 878 | struct fw_block { |
| 879 | __le32 type; |
| 880 | __le32 length; |
| 881 | } __packed; |
| 882 | |
| 883 | /** |
| 884 | * struct fw_header - header of the firmware file |
| 885 | * @checksum: checksum of sha256 which is calculated from the whole file |
| 886 | * except the checksum field of the file. That is, calculate sha256 |
| 887 | * from the version field to the end of the file. |
| 888 | * @version: version of this firmware. |
| 889 | * @blocks: the first firmware block of the file |
| 890 | */ |
| 891 | struct fw_header { |
| 892 | u8 checksum[32]; |
| 893 | char version[RTL_VER_SIZE]; |
| 894 | struct fw_block blocks[]; |
| 895 | } __packed; |
| 896 | |
| 897 | /** |
| 898 | * struct fw_mac - a firmware block used by RTL_FW_PLA and RTL_FW_USB. |
| 899 | * The layout of the firmware block is: |
| 900 | * <struct fw_mac> + <info> + <firmware data>. |
| 901 | * @fw_offset: offset of the firmware binary data. The start address of |
| 902 | * the data would be the address of struct fw_mac + @fw_offset. |
| 903 | * @fw_reg: the register to load the firmware. Depends on chip. |
| 904 | * @bp_ba_addr: the register to write break point base address. Depends on |
| 905 | * chip. |
| 906 | * @bp_ba_value: break point base address. Depends on chip. |
| 907 | * @bp_en_addr: the register to write break point enabled mask. Depends |
| 908 | * on chip. |
| 909 | * @bp_en_value: break point enabled mask. Depends on the firmware. |
| 910 | * @bp_start: the start register of break points. Depends on chip. |
| 911 | * @bp_num: the break point number which needs to be set for this firmware. |
| 912 | * Depends on the firmware. |
| 913 | * @bp: break points. Depends on firmware. |
| 914 | * @fw_ver_reg: the register to store the fw version. |
| 915 | * @fw_ver_data: the firmware version of the current type. |
| 916 | * @info: additional information for debugging, and is followed by the |
| 917 | * binary data of firmware. |
| 918 | */ |
| 919 | struct fw_mac { |
| 920 | struct fw_block blk_hdr; |
| 921 | __le16 fw_offset; |
| 922 | __le16 fw_reg; |
| 923 | __le16 bp_ba_addr; |
| 924 | __le16 bp_ba_value; |
| 925 | __le16 bp_en_addr; |
| 926 | __le16 bp_en_value; |
| 927 | __le16 bp_start; |
| 928 | __le16 bp_num; |
| 929 | __le16 bp[16]; /* any value determined by firmware */ |
| 930 | __le32 reserved; |
| 931 | __le16 fw_ver_reg; |
| 932 | u8 fw_ver_data; |
| 933 | char info[]; |
| 934 | } __packed; |
| 935 | |
| 936 | /** |
| 937 | * struct fw_phy_patch_key - a firmware block used by RTL_FW_PHY_START. |
| 938 | * This is used to set patch key when loading the firmware of PHY. |
| 939 | * @key_reg: the register to write the patch key. |
| 940 | * @key_data: patch key. |
| 941 | */ |
| 942 | struct fw_phy_patch_key { |
| 943 | struct fw_block blk_hdr; |
| 944 | __le16 key_reg; |
| 945 | __le16 key_data; |
| 946 | __le32 reserved; |
| 947 | } __packed; |
| 948 | |
| 949 | /** |
| 950 | * struct fw_phy_nc - a firmware block used by RTL_FW_PHY_NC. |
| 951 | * The layout of the firmware block is: |
| 952 | * <struct fw_phy_nc> + <info> + <firmware data>. |
| 953 | * @fw_offset: offset of the firmware binary data. The start address of |
| 954 | * the data would be the address of struct fw_phy_nc + @fw_offset. |
| 955 | * @fw_reg: the register to load the firmware. Depends on chip. |
| 956 | * @ba_reg: the register to write the base address. Depends on chip. |
| 957 | * @ba_data: base address. Depends on chip. |
| 958 | * @patch_en_addr: the register of enabling patch mode. Depends on chip. |
| 959 | * @patch_en_value: patch mode enabled mask. Depends on the firmware. |
| 960 | * @mode_reg: the regitster of switching the mode. |
| 961 | * @mod_pre: the mode needing to be set before loading the firmware. |
| 962 | * @mod_post: the mode to be set when finishing to load the firmware. |
| 963 | * @bp_start: the start register of break points. Depends on chip. |
| 964 | * @bp_num: the break point number which needs to be set for this firmware. |
| 965 | * Depends on the firmware. |
| 966 | * @bp: break points. Depends on firmware. |
| 967 | * @info: additional information for debugging, and is followed by the |
| 968 | * binary data of firmware. |
| 969 | */ |
| 970 | struct fw_phy_nc { |
| 971 | struct fw_block blk_hdr; |
| 972 | __le16 fw_offset; |
| 973 | __le16 fw_reg; |
| 974 | __le16 ba_reg; |
| 975 | __le16 ba_data; |
| 976 | __le16 patch_en_addr; |
| 977 | __le16 patch_en_value; |
| 978 | __le16 mode_reg; |
| 979 | __le16 mode_pre; |
| 980 | __le16 mode_post; |
| 981 | __le16 reserved; |
| 982 | __le16 bp_start; |
| 983 | __le16 bp_num; |
| 984 | __le16 bp[4]; |
| 985 | char info[]; |
| 986 | } __packed; |
| 987 | |
| 988 | enum rtl_fw_type { |
| 989 | RTL_FW_END = 0, |
| 990 | RTL_FW_PLA, |
| 991 | RTL_FW_USB, |
| 992 | RTL_FW_PHY_START, |
| 993 | RTL_FW_PHY_STOP, |
| 994 | RTL_FW_PHY_NC, |
| 995 | }; |
| 996 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 997 | enum rtl_version { |
| 998 | RTL_VER_UNKNOWN = 0, |
| 999 | RTL_VER_01, |
| 1000 | RTL_VER_02, |
| 1001 | RTL_VER_03, |
| 1002 | RTL_VER_04, |
| 1003 | RTL_VER_05, |
| 1004 | RTL_VER_06, |
| 1005 | RTL_VER_07, |
| 1006 | RTL_VER_08, |
| 1007 | RTL_VER_09, |
| 1008 | RTL_VER_MAX |
| 1009 | }; |
| 1010 | |
| 1011 | enum tx_csum_stat { |
| 1012 | TX_CSUM_SUCCESS = 0, |
| 1013 | TX_CSUM_TSO, |
| 1014 | TX_CSUM_NONE |
| 1015 | }; |
| 1016 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1017 | #define RTL_ADVERTISED_10_HALF BIT(0) |
| 1018 | #define RTL_ADVERTISED_10_FULL BIT(1) |
| 1019 | #define RTL_ADVERTISED_100_HALF BIT(2) |
| 1020 | #define RTL_ADVERTISED_100_FULL BIT(3) |
| 1021 | #define RTL_ADVERTISED_1000_HALF BIT(4) |
| 1022 | #define RTL_ADVERTISED_1000_FULL BIT(5) |
| 1023 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1024 | /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast). |
| 1025 | * The RTL chips use a 64 element hash table based on the Ethernet CRC. |
| 1026 | */ |
| 1027 | static const int multicast_filter_limit = 32; |
| 1028 | static unsigned int agg_buf_sz = 16384; |
| 1029 | |
| 1030 | #define RTL_LIMITED_TSO_SIZE (agg_buf_sz - sizeof(struct tx_desc) - \ |
| 1031 | VLAN_ETH_HLEN - ETH_FCS_LEN) |
| 1032 | |
| 1033 | static |
| 1034 | int get_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data) |
| 1035 | { |
| 1036 | int ret; |
| 1037 | void *tmp; |
| 1038 | |
| 1039 | tmp = kmalloc(size, GFP_KERNEL); |
| 1040 | if (!tmp) |
| 1041 | return -ENOMEM; |
| 1042 | |
| 1043 | ret = usb_control_msg(tp->udev, usb_rcvctrlpipe(tp->udev, 0), |
| 1044 | RTL8152_REQ_GET_REGS, RTL8152_REQT_READ, |
| 1045 | value, index, tmp, size, 500); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1046 | if (ret < 0) |
| 1047 | memset(data, 0xff, size); |
| 1048 | else |
| 1049 | memcpy(data, tmp, size); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1050 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1051 | kfree(tmp); |
| 1052 | |
| 1053 | return ret; |
| 1054 | } |
| 1055 | |
| 1056 | static |
| 1057 | int set_registers(struct r8152 *tp, u16 value, u16 index, u16 size, void *data) |
| 1058 | { |
| 1059 | int ret; |
| 1060 | void *tmp; |
| 1061 | |
| 1062 | tmp = kmemdup(data, size, GFP_KERNEL); |
| 1063 | if (!tmp) |
| 1064 | return -ENOMEM; |
| 1065 | |
| 1066 | ret = usb_control_msg(tp->udev, usb_sndctrlpipe(tp->udev, 0), |
| 1067 | RTL8152_REQ_SET_REGS, RTL8152_REQT_WRITE, |
| 1068 | value, index, tmp, size, 500); |
| 1069 | |
| 1070 | kfree(tmp); |
| 1071 | |
| 1072 | return ret; |
| 1073 | } |
| 1074 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1075 | static void rtl_set_unplug(struct r8152 *tp) |
| 1076 | { |
| 1077 | if (tp->udev->state == USB_STATE_NOTATTACHED) { |
| 1078 | set_bit(RTL8152_UNPLUG, &tp->flags); |
| 1079 | smp_mb__after_atomic(); |
| 1080 | } |
| 1081 | } |
| 1082 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1083 | static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size, |
| 1084 | void *data, u16 type) |
| 1085 | { |
| 1086 | u16 limit = 64; |
| 1087 | int ret = 0; |
| 1088 | |
| 1089 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 1090 | return -ENODEV; |
| 1091 | |
| 1092 | /* both size and indix must be 4 bytes align */ |
| 1093 | if ((size & 3) || !size || (index & 3) || !data) |
| 1094 | return -EPERM; |
| 1095 | |
| 1096 | if ((u32)index + (u32)size > 0xffff) |
| 1097 | return -EPERM; |
| 1098 | |
| 1099 | while (size) { |
| 1100 | if (size > limit) { |
| 1101 | ret = get_registers(tp, index, type, limit, data); |
| 1102 | if (ret < 0) |
| 1103 | break; |
| 1104 | |
| 1105 | index += limit; |
| 1106 | data += limit; |
| 1107 | size -= limit; |
| 1108 | } else { |
| 1109 | ret = get_registers(tp, index, type, size, data); |
| 1110 | if (ret < 0) |
| 1111 | break; |
| 1112 | |
| 1113 | index += size; |
| 1114 | data += size; |
| 1115 | size = 0; |
| 1116 | break; |
| 1117 | } |
| 1118 | } |
| 1119 | |
| 1120 | if (ret == -ENODEV) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1121 | rtl_set_unplug(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1122 | |
| 1123 | return ret; |
| 1124 | } |
| 1125 | |
| 1126 | static int generic_ocp_write(struct r8152 *tp, u16 index, u16 byteen, |
| 1127 | u16 size, void *data, u16 type) |
| 1128 | { |
| 1129 | int ret; |
| 1130 | u16 byteen_start, byteen_end, byen; |
| 1131 | u16 limit = 512; |
| 1132 | |
| 1133 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 1134 | return -ENODEV; |
| 1135 | |
| 1136 | /* both size and indix must be 4 bytes align */ |
| 1137 | if ((size & 3) || !size || (index & 3) || !data) |
| 1138 | return -EPERM; |
| 1139 | |
| 1140 | if ((u32)index + (u32)size > 0xffff) |
| 1141 | return -EPERM; |
| 1142 | |
| 1143 | byteen_start = byteen & BYTE_EN_START_MASK; |
| 1144 | byteen_end = byteen & BYTE_EN_END_MASK; |
| 1145 | |
| 1146 | byen = byteen_start | (byteen_start << 4); |
| 1147 | ret = set_registers(tp, index, type | byen, 4, data); |
| 1148 | if (ret < 0) |
| 1149 | goto error1; |
| 1150 | |
| 1151 | index += 4; |
| 1152 | data += 4; |
| 1153 | size -= 4; |
| 1154 | |
| 1155 | if (size) { |
| 1156 | size -= 4; |
| 1157 | |
| 1158 | while (size) { |
| 1159 | if (size > limit) { |
| 1160 | ret = set_registers(tp, index, |
| 1161 | type | BYTE_EN_DWORD, |
| 1162 | limit, data); |
| 1163 | if (ret < 0) |
| 1164 | goto error1; |
| 1165 | |
| 1166 | index += limit; |
| 1167 | data += limit; |
| 1168 | size -= limit; |
| 1169 | } else { |
| 1170 | ret = set_registers(tp, index, |
| 1171 | type | BYTE_EN_DWORD, |
| 1172 | size, data); |
| 1173 | if (ret < 0) |
| 1174 | goto error1; |
| 1175 | |
| 1176 | index += size; |
| 1177 | data += size; |
| 1178 | size = 0; |
| 1179 | break; |
| 1180 | } |
| 1181 | } |
| 1182 | |
| 1183 | byen = byteen_end | (byteen_end >> 4); |
| 1184 | ret = set_registers(tp, index, type | byen, 4, data); |
| 1185 | if (ret < 0) |
| 1186 | goto error1; |
| 1187 | } |
| 1188 | |
| 1189 | error1: |
| 1190 | if (ret == -ENODEV) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1191 | rtl_set_unplug(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1192 | |
| 1193 | return ret; |
| 1194 | } |
| 1195 | |
| 1196 | static inline |
| 1197 | int pla_ocp_read(struct r8152 *tp, u16 index, u16 size, void *data) |
| 1198 | { |
| 1199 | return generic_ocp_read(tp, index, size, data, MCU_TYPE_PLA); |
| 1200 | } |
| 1201 | |
| 1202 | static inline |
| 1203 | int pla_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data) |
| 1204 | { |
| 1205 | return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_PLA); |
| 1206 | } |
| 1207 | |
| 1208 | static inline |
| 1209 | int usb_ocp_write(struct r8152 *tp, u16 index, u16 byteen, u16 size, void *data) |
| 1210 | { |
| 1211 | return generic_ocp_write(tp, index, byteen, size, data, MCU_TYPE_USB); |
| 1212 | } |
| 1213 | |
| 1214 | static u32 ocp_read_dword(struct r8152 *tp, u16 type, u16 index) |
| 1215 | { |
| 1216 | __le32 data; |
| 1217 | |
| 1218 | generic_ocp_read(tp, index, sizeof(data), &data, type); |
| 1219 | |
| 1220 | return __le32_to_cpu(data); |
| 1221 | } |
| 1222 | |
| 1223 | static void ocp_write_dword(struct r8152 *tp, u16 type, u16 index, u32 data) |
| 1224 | { |
| 1225 | __le32 tmp = __cpu_to_le32(data); |
| 1226 | |
| 1227 | generic_ocp_write(tp, index, BYTE_EN_DWORD, sizeof(tmp), &tmp, type); |
| 1228 | } |
| 1229 | |
| 1230 | static u16 ocp_read_word(struct r8152 *tp, u16 type, u16 index) |
| 1231 | { |
| 1232 | u32 data; |
| 1233 | __le32 tmp; |
| 1234 | u16 byen = BYTE_EN_WORD; |
| 1235 | u8 shift = index & 2; |
| 1236 | |
| 1237 | index &= ~3; |
| 1238 | byen <<= shift; |
| 1239 | |
| 1240 | generic_ocp_read(tp, index, sizeof(tmp), &tmp, type | byen); |
| 1241 | |
| 1242 | data = __le32_to_cpu(tmp); |
| 1243 | data >>= (shift * 8); |
| 1244 | data &= 0xffff; |
| 1245 | |
| 1246 | return (u16)data; |
| 1247 | } |
| 1248 | |
| 1249 | static void ocp_write_word(struct r8152 *tp, u16 type, u16 index, u32 data) |
| 1250 | { |
| 1251 | u32 mask = 0xffff; |
| 1252 | __le32 tmp; |
| 1253 | u16 byen = BYTE_EN_WORD; |
| 1254 | u8 shift = index & 2; |
| 1255 | |
| 1256 | data &= mask; |
| 1257 | |
| 1258 | if (index & 2) { |
| 1259 | byen <<= shift; |
| 1260 | mask <<= (shift * 8); |
| 1261 | data <<= (shift * 8); |
| 1262 | index &= ~3; |
| 1263 | } |
| 1264 | |
| 1265 | tmp = __cpu_to_le32(data); |
| 1266 | |
| 1267 | generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type); |
| 1268 | } |
| 1269 | |
| 1270 | static u8 ocp_read_byte(struct r8152 *tp, u16 type, u16 index) |
| 1271 | { |
| 1272 | u32 data; |
| 1273 | __le32 tmp; |
| 1274 | u8 shift = index & 3; |
| 1275 | |
| 1276 | index &= ~3; |
| 1277 | |
| 1278 | generic_ocp_read(tp, index, sizeof(tmp), &tmp, type); |
| 1279 | |
| 1280 | data = __le32_to_cpu(tmp); |
| 1281 | data >>= (shift * 8); |
| 1282 | data &= 0xff; |
| 1283 | |
| 1284 | return (u8)data; |
| 1285 | } |
| 1286 | |
| 1287 | static void ocp_write_byte(struct r8152 *tp, u16 type, u16 index, u32 data) |
| 1288 | { |
| 1289 | u32 mask = 0xff; |
| 1290 | __le32 tmp; |
| 1291 | u16 byen = BYTE_EN_BYTE; |
| 1292 | u8 shift = index & 3; |
| 1293 | |
| 1294 | data &= mask; |
| 1295 | |
| 1296 | if (index & 3) { |
| 1297 | byen <<= shift; |
| 1298 | mask <<= (shift * 8); |
| 1299 | data <<= (shift * 8); |
| 1300 | index &= ~3; |
| 1301 | } |
| 1302 | |
| 1303 | tmp = __cpu_to_le32(data); |
| 1304 | |
| 1305 | generic_ocp_write(tp, index, byen, sizeof(tmp), &tmp, type); |
| 1306 | } |
| 1307 | |
| 1308 | static u16 ocp_reg_read(struct r8152 *tp, u16 addr) |
| 1309 | { |
| 1310 | u16 ocp_base, ocp_index; |
| 1311 | |
| 1312 | ocp_base = addr & 0xf000; |
| 1313 | if (ocp_base != tp->ocp_base) { |
| 1314 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base); |
| 1315 | tp->ocp_base = ocp_base; |
| 1316 | } |
| 1317 | |
| 1318 | ocp_index = (addr & 0x0fff) | 0xb000; |
| 1319 | return ocp_read_word(tp, MCU_TYPE_PLA, ocp_index); |
| 1320 | } |
| 1321 | |
| 1322 | static void ocp_reg_write(struct r8152 *tp, u16 addr, u16 data) |
| 1323 | { |
| 1324 | u16 ocp_base, ocp_index; |
| 1325 | |
| 1326 | ocp_base = addr & 0xf000; |
| 1327 | if (ocp_base != tp->ocp_base) { |
| 1328 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, ocp_base); |
| 1329 | tp->ocp_base = ocp_base; |
| 1330 | } |
| 1331 | |
| 1332 | ocp_index = (addr & 0x0fff) | 0xb000; |
| 1333 | ocp_write_word(tp, MCU_TYPE_PLA, ocp_index, data); |
| 1334 | } |
| 1335 | |
| 1336 | static inline void r8152_mdio_write(struct r8152 *tp, u32 reg_addr, u32 value) |
| 1337 | { |
| 1338 | ocp_reg_write(tp, OCP_BASE_MII + reg_addr * 2, value); |
| 1339 | } |
| 1340 | |
| 1341 | static inline int r8152_mdio_read(struct r8152 *tp, u32 reg_addr) |
| 1342 | { |
| 1343 | return ocp_reg_read(tp, OCP_BASE_MII + reg_addr * 2); |
| 1344 | } |
| 1345 | |
| 1346 | static void sram_write(struct r8152 *tp, u16 addr, u16 data) |
| 1347 | { |
| 1348 | ocp_reg_write(tp, OCP_SRAM_ADDR, addr); |
| 1349 | ocp_reg_write(tp, OCP_SRAM_DATA, data); |
| 1350 | } |
| 1351 | |
| 1352 | static u16 sram_read(struct r8152 *tp, u16 addr) |
| 1353 | { |
| 1354 | ocp_reg_write(tp, OCP_SRAM_ADDR, addr); |
| 1355 | return ocp_reg_read(tp, OCP_SRAM_DATA); |
| 1356 | } |
| 1357 | |
| 1358 | static int read_mii_word(struct net_device *netdev, int phy_id, int reg) |
| 1359 | { |
| 1360 | struct r8152 *tp = netdev_priv(netdev); |
| 1361 | int ret; |
| 1362 | |
| 1363 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 1364 | return -ENODEV; |
| 1365 | |
| 1366 | if (phy_id != R8152_PHY_ID) |
| 1367 | return -EINVAL; |
| 1368 | |
| 1369 | ret = r8152_mdio_read(tp, reg); |
| 1370 | |
| 1371 | return ret; |
| 1372 | } |
| 1373 | |
| 1374 | static |
| 1375 | void write_mii_word(struct net_device *netdev, int phy_id, int reg, int val) |
| 1376 | { |
| 1377 | struct r8152 *tp = netdev_priv(netdev); |
| 1378 | |
| 1379 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 1380 | return; |
| 1381 | |
| 1382 | if (phy_id != R8152_PHY_ID) |
| 1383 | return; |
| 1384 | |
| 1385 | r8152_mdio_write(tp, reg, val); |
| 1386 | } |
| 1387 | |
| 1388 | static int |
| 1389 | r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags); |
| 1390 | |
| 1391 | static int rtl8152_set_mac_address(struct net_device *netdev, void *p) |
| 1392 | { |
| 1393 | struct r8152 *tp = netdev_priv(netdev); |
| 1394 | struct sockaddr *addr = p; |
| 1395 | int ret = -EADDRNOTAVAIL; |
| 1396 | |
| 1397 | if (!is_valid_ether_addr(addr->sa_data)) |
| 1398 | goto out1; |
| 1399 | |
| 1400 | ret = usb_autopm_get_interface(tp->intf); |
| 1401 | if (ret < 0) |
| 1402 | goto out1; |
| 1403 | |
| 1404 | mutex_lock(&tp->control); |
| 1405 | |
| 1406 | memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); |
| 1407 | |
| 1408 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG); |
| 1409 | pla_ocp_write(tp, PLA_IDR, BYTE_EN_SIX_BYTES, 8, addr->sa_data); |
| 1410 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML); |
| 1411 | |
| 1412 | mutex_unlock(&tp->control); |
| 1413 | |
| 1414 | usb_autopm_put_interface(tp->intf); |
| 1415 | out1: |
| 1416 | return ret; |
| 1417 | } |
| 1418 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1419 | /* Devices containing proper chips can support a persistent |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1420 | * host system provided MAC address. |
| 1421 | * Examples of this are Dell TB15 and Dell WD15 docks |
| 1422 | */ |
| 1423 | static int vendor_mac_passthru_addr_read(struct r8152 *tp, struct sockaddr *sa) |
| 1424 | { |
| 1425 | acpi_status status; |
| 1426 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1427 | union acpi_object *obj; |
| 1428 | int ret = -EINVAL; |
| 1429 | u32 ocp_data; |
| 1430 | unsigned char buf[6]; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1431 | char *mac_obj_name; |
| 1432 | acpi_object_type mac_obj_type; |
| 1433 | int mac_strlen; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1434 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1435 | if (test_bit(LENOVO_MACPASSTHRU, &tp->flags)) { |
| 1436 | mac_obj_name = "\\MACA"; |
| 1437 | mac_obj_type = ACPI_TYPE_STRING; |
| 1438 | mac_strlen = 0x16; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1439 | } else { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1440 | /* test for -AD variant of RTL8153 */ |
| 1441 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0); |
| 1442 | if ((ocp_data & AD_MASK) == 0x1000) { |
| 1443 | /* test for MAC address pass-through bit */ |
| 1444 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, EFUSE); |
| 1445 | if ((ocp_data & PASS_THRU_MASK) != 1) { |
| 1446 | netif_dbg(tp, probe, tp->netdev, |
| 1447 | "No efuse for RTL8153-AD MAC pass through\n"); |
| 1448 | return -ENODEV; |
| 1449 | } |
| 1450 | } else { |
| 1451 | /* test for RTL8153-BND and RTL8153-BD */ |
| 1452 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_MISC_1); |
| 1453 | if ((ocp_data & BND_MASK) == 0 && (ocp_data & BD_MASK) == 0) { |
| 1454 | netif_dbg(tp, probe, tp->netdev, |
| 1455 | "Invalid variant for MAC pass through\n"); |
| 1456 | return -ENODEV; |
| 1457 | } |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1458 | } |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1459 | |
| 1460 | mac_obj_name = "\\_SB.AMAC"; |
| 1461 | mac_obj_type = ACPI_TYPE_BUFFER; |
| 1462 | mac_strlen = 0x17; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1463 | } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1464 | |
| 1465 | /* returns _AUXMAC_#AABBCCDDEEFF# */ |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1466 | status = acpi_evaluate_object(NULL, mac_obj_name, NULL, &buffer); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1467 | obj = (union acpi_object *)buffer.pointer; |
| 1468 | if (!ACPI_SUCCESS(status)) |
| 1469 | return -ENODEV; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1470 | if (obj->type != mac_obj_type || obj->string.length != mac_strlen) { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1471 | netif_warn(tp, probe, tp->netdev, |
| 1472 | "Invalid buffer for pass-thru MAC addr: (%d, %d)\n", |
| 1473 | obj->type, obj->string.length); |
| 1474 | goto amacout; |
| 1475 | } |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1476 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1477 | if (strncmp(obj->string.pointer, "_AUXMAC_#", 9) != 0 || |
| 1478 | strncmp(obj->string.pointer + 0x15, "#", 1) != 0) { |
| 1479 | netif_warn(tp, probe, tp->netdev, |
| 1480 | "Invalid header when reading pass-thru MAC addr\n"); |
| 1481 | goto amacout; |
| 1482 | } |
| 1483 | ret = hex2bin(buf, obj->string.pointer + 9, 6); |
| 1484 | if (!(ret == 0 && is_valid_ether_addr(buf))) { |
| 1485 | netif_warn(tp, probe, tp->netdev, |
| 1486 | "Invalid MAC for pass-thru MAC addr: %d, %pM\n", |
| 1487 | ret, buf); |
| 1488 | ret = -EINVAL; |
| 1489 | goto amacout; |
| 1490 | } |
| 1491 | memcpy(sa->sa_data, buf, 6); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1492 | netif_info(tp, probe, tp->netdev, |
| 1493 | "Using pass-thru MAC addr %pM\n", sa->sa_data); |
| 1494 | |
| 1495 | amacout: |
| 1496 | kfree(obj); |
| 1497 | return ret; |
| 1498 | } |
| 1499 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1500 | static int determine_ethernet_addr(struct r8152 *tp, struct sockaddr *sa) |
| 1501 | { |
| 1502 | struct net_device *dev = tp->netdev; |
| 1503 | int ret; |
| 1504 | |
| 1505 | sa->sa_family = dev->type; |
| 1506 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1507 | ret = eth_platform_get_mac_address(&tp->udev->dev, sa->sa_data); |
| 1508 | if (ret < 0) { |
| 1509 | if (tp->version == RTL_VER_01) { |
| 1510 | ret = pla_ocp_read(tp, PLA_IDR, 8, sa->sa_data); |
| 1511 | } else { |
| 1512 | /* if device doesn't support MAC pass through this will |
| 1513 | * be expected to be non-zero |
| 1514 | */ |
| 1515 | ret = vendor_mac_passthru_addr_read(tp, sa); |
| 1516 | if (ret < 0) |
| 1517 | ret = pla_ocp_read(tp, PLA_BACKUP, 8, |
| 1518 | sa->sa_data); |
| 1519 | } |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1520 | } |
| 1521 | |
| 1522 | if (ret < 0) { |
| 1523 | netif_err(tp, probe, dev, "Get ether addr fail\n"); |
| 1524 | } else if (!is_valid_ether_addr(sa->sa_data)) { |
| 1525 | netif_err(tp, probe, dev, "Invalid ether addr %pM\n", |
| 1526 | sa->sa_data); |
| 1527 | eth_hw_addr_random(dev); |
| 1528 | ether_addr_copy(sa->sa_data, dev->dev_addr); |
| 1529 | netif_info(tp, probe, dev, "Random ether addr %pM\n", |
| 1530 | sa->sa_data); |
| 1531 | return 0; |
| 1532 | } |
| 1533 | |
| 1534 | return ret; |
| 1535 | } |
| 1536 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1537 | static int set_ethernet_addr(struct r8152 *tp) |
| 1538 | { |
| 1539 | struct net_device *dev = tp->netdev; |
| 1540 | struct sockaddr sa; |
| 1541 | int ret; |
| 1542 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1543 | ret = determine_ethernet_addr(tp, &sa); |
| 1544 | if (ret < 0) |
| 1545 | return ret; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1546 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1547 | if (tp->version == RTL_VER_01) |
| 1548 | ether_addr_copy(dev->dev_addr, sa.sa_data); |
| 1549 | else |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1550 | ret = rtl8152_set_mac_address(dev, &sa); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1551 | |
| 1552 | return ret; |
| 1553 | } |
| 1554 | |
| 1555 | static void read_bulk_callback(struct urb *urb) |
| 1556 | { |
| 1557 | struct net_device *netdev; |
| 1558 | int status = urb->status; |
| 1559 | struct rx_agg *agg; |
| 1560 | struct r8152 *tp; |
| 1561 | unsigned long flags; |
| 1562 | |
| 1563 | agg = urb->context; |
| 1564 | if (!agg) |
| 1565 | return; |
| 1566 | |
| 1567 | tp = agg->context; |
| 1568 | if (!tp) |
| 1569 | return; |
| 1570 | |
| 1571 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 1572 | return; |
| 1573 | |
| 1574 | if (!test_bit(WORK_ENABLE, &tp->flags)) |
| 1575 | return; |
| 1576 | |
| 1577 | netdev = tp->netdev; |
| 1578 | |
| 1579 | /* When link down, the driver would cancel all bulks. */ |
| 1580 | /* This avoid the re-submitting bulk */ |
| 1581 | if (!netif_carrier_ok(netdev)) |
| 1582 | return; |
| 1583 | |
| 1584 | usb_mark_last_busy(tp->udev); |
| 1585 | |
| 1586 | switch (status) { |
| 1587 | case 0: |
| 1588 | if (urb->actual_length < ETH_ZLEN) |
| 1589 | break; |
| 1590 | |
| 1591 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 1592 | list_add_tail(&agg->list, &tp->rx_done); |
| 1593 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 1594 | napi_schedule(&tp->napi); |
| 1595 | return; |
| 1596 | case -ESHUTDOWN: |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1597 | rtl_set_unplug(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1598 | netif_device_detach(tp->netdev); |
| 1599 | return; |
| 1600 | case -ENOENT: |
| 1601 | return; /* the urb is in unlink state */ |
| 1602 | case -ETIME: |
| 1603 | if (net_ratelimit()) |
| 1604 | netdev_warn(netdev, "maybe reset is needed?\n"); |
| 1605 | break; |
| 1606 | default: |
| 1607 | if (net_ratelimit()) |
| 1608 | netdev_warn(netdev, "Rx status %d\n", status); |
| 1609 | break; |
| 1610 | } |
| 1611 | |
| 1612 | r8152_submit_rx(tp, agg, GFP_ATOMIC); |
| 1613 | } |
| 1614 | |
| 1615 | static void write_bulk_callback(struct urb *urb) |
| 1616 | { |
| 1617 | struct net_device_stats *stats; |
| 1618 | struct net_device *netdev; |
| 1619 | struct tx_agg *agg; |
| 1620 | struct r8152 *tp; |
| 1621 | unsigned long flags; |
| 1622 | int status = urb->status; |
| 1623 | |
| 1624 | agg = urb->context; |
| 1625 | if (!agg) |
| 1626 | return; |
| 1627 | |
| 1628 | tp = agg->context; |
| 1629 | if (!tp) |
| 1630 | return; |
| 1631 | |
| 1632 | netdev = tp->netdev; |
| 1633 | stats = &netdev->stats; |
| 1634 | if (status) { |
| 1635 | if (net_ratelimit()) |
| 1636 | netdev_warn(netdev, "Tx status %d\n", status); |
| 1637 | stats->tx_errors += agg->skb_num; |
| 1638 | } else { |
| 1639 | stats->tx_packets += agg->skb_num; |
| 1640 | stats->tx_bytes += agg->skb_len; |
| 1641 | } |
| 1642 | |
| 1643 | spin_lock_irqsave(&tp->tx_lock, flags); |
| 1644 | list_add_tail(&agg->list, &tp->tx_free); |
| 1645 | spin_unlock_irqrestore(&tp->tx_lock, flags); |
| 1646 | |
| 1647 | usb_autopm_put_interface_async(tp->intf); |
| 1648 | |
| 1649 | if (!netif_carrier_ok(netdev)) |
| 1650 | return; |
| 1651 | |
| 1652 | if (!test_bit(WORK_ENABLE, &tp->flags)) |
| 1653 | return; |
| 1654 | |
| 1655 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 1656 | return; |
| 1657 | |
| 1658 | if (!skb_queue_empty(&tp->tx_queue)) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1659 | tasklet_schedule(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1660 | } |
| 1661 | |
| 1662 | static void intr_callback(struct urb *urb) |
| 1663 | { |
| 1664 | struct r8152 *tp; |
| 1665 | __le16 *d; |
| 1666 | int status = urb->status; |
| 1667 | int res; |
| 1668 | |
| 1669 | tp = urb->context; |
| 1670 | if (!tp) |
| 1671 | return; |
| 1672 | |
| 1673 | if (!test_bit(WORK_ENABLE, &tp->flags)) |
| 1674 | return; |
| 1675 | |
| 1676 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 1677 | return; |
| 1678 | |
| 1679 | switch (status) { |
| 1680 | case 0: /* success */ |
| 1681 | break; |
| 1682 | case -ECONNRESET: /* unlink */ |
| 1683 | case -ESHUTDOWN: |
| 1684 | netif_device_detach(tp->netdev); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1685 | fallthrough; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1686 | case -ENOENT: |
| 1687 | case -EPROTO: |
| 1688 | netif_info(tp, intr, tp->netdev, |
| 1689 | "Stop submitting intr, status %d\n", status); |
| 1690 | return; |
| 1691 | case -EOVERFLOW: |
| 1692 | netif_info(tp, intr, tp->netdev, "intr status -EOVERFLOW\n"); |
| 1693 | goto resubmit; |
| 1694 | /* -EPIPE: should clear the halt */ |
| 1695 | default: |
| 1696 | netif_info(tp, intr, tp->netdev, "intr status %d\n", status); |
| 1697 | goto resubmit; |
| 1698 | } |
| 1699 | |
| 1700 | d = urb->transfer_buffer; |
| 1701 | if (INTR_LINK & __le16_to_cpu(d[0])) { |
| 1702 | if (!netif_carrier_ok(tp->netdev)) { |
| 1703 | set_bit(RTL8152_LINK_CHG, &tp->flags); |
| 1704 | schedule_delayed_work(&tp->schedule, 0); |
| 1705 | } |
| 1706 | } else { |
| 1707 | if (netif_carrier_ok(tp->netdev)) { |
| 1708 | netif_stop_queue(tp->netdev); |
| 1709 | set_bit(RTL8152_LINK_CHG, &tp->flags); |
| 1710 | schedule_delayed_work(&tp->schedule, 0); |
| 1711 | } |
| 1712 | } |
| 1713 | |
| 1714 | resubmit: |
| 1715 | res = usb_submit_urb(urb, GFP_ATOMIC); |
| 1716 | if (res == -ENODEV) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1717 | rtl_set_unplug(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1718 | netif_device_detach(tp->netdev); |
| 1719 | } else if (res) { |
| 1720 | netif_err(tp, intr, tp->netdev, |
| 1721 | "can't resubmit intr, status %d\n", res); |
| 1722 | } |
| 1723 | } |
| 1724 | |
| 1725 | static inline void *rx_agg_align(void *data) |
| 1726 | { |
| 1727 | return (void *)ALIGN((uintptr_t)data, RX_ALIGN); |
| 1728 | } |
| 1729 | |
| 1730 | static inline void *tx_agg_align(void *data) |
| 1731 | { |
| 1732 | return (void *)ALIGN((uintptr_t)data, TX_ALIGN); |
| 1733 | } |
| 1734 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1735 | static void free_rx_agg(struct r8152 *tp, struct rx_agg *agg) |
| 1736 | { |
| 1737 | list_del(&agg->info_list); |
| 1738 | |
| 1739 | usb_free_urb(agg->urb); |
| 1740 | put_page(agg->page); |
| 1741 | kfree(agg); |
| 1742 | |
| 1743 | atomic_dec(&tp->rx_count); |
| 1744 | } |
| 1745 | |
| 1746 | static struct rx_agg *alloc_rx_agg(struct r8152 *tp, gfp_t mflags) |
| 1747 | { |
| 1748 | struct net_device *netdev = tp->netdev; |
| 1749 | int node = netdev->dev.parent ? dev_to_node(netdev->dev.parent) : -1; |
| 1750 | unsigned int order = get_order(tp->rx_buf_sz); |
| 1751 | struct rx_agg *rx_agg; |
| 1752 | unsigned long flags; |
| 1753 | |
| 1754 | rx_agg = kmalloc_node(sizeof(*rx_agg), mflags, node); |
| 1755 | if (!rx_agg) |
| 1756 | return NULL; |
| 1757 | |
| 1758 | rx_agg->page = alloc_pages(mflags | __GFP_COMP, order); |
| 1759 | if (!rx_agg->page) |
| 1760 | goto free_rx; |
| 1761 | |
| 1762 | rx_agg->buffer = page_address(rx_agg->page); |
| 1763 | |
| 1764 | rx_agg->urb = usb_alloc_urb(0, mflags); |
| 1765 | if (!rx_agg->urb) |
| 1766 | goto free_buf; |
| 1767 | |
| 1768 | rx_agg->context = tp; |
| 1769 | |
| 1770 | INIT_LIST_HEAD(&rx_agg->list); |
| 1771 | INIT_LIST_HEAD(&rx_agg->info_list); |
| 1772 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 1773 | list_add_tail(&rx_agg->info_list, &tp->rx_info); |
| 1774 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 1775 | |
| 1776 | atomic_inc(&tp->rx_count); |
| 1777 | |
| 1778 | return rx_agg; |
| 1779 | |
| 1780 | free_buf: |
| 1781 | __free_pages(rx_agg->page, order); |
| 1782 | free_rx: |
| 1783 | kfree(rx_agg); |
| 1784 | return NULL; |
| 1785 | } |
| 1786 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1787 | static void free_all_mem(struct r8152 *tp) |
| 1788 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1789 | struct rx_agg *agg, *agg_next; |
| 1790 | unsigned long flags; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1791 | int i; |
| 1792 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1793 | spin_lock_irqsave(&tp->rx_lock, flags); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1794 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1795 | list_for_each_entry_safe(agg, agg_next, &tp->rx_info, info_list) |
| 1796 | free_rx_agg(tp, agg); |
| 1797 | |
| 1798 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 1799 | |
| 1800 | WARN_ON(atomic_read(&tp->rx_count)); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1801 | |
| 1802 | for (i = 0; i < RTL8152_MAX_TX; i++) { |
| 1803 | usb_free_urb(tp->tx_info[i].urb); |
| 1804 | tp->tx_info[i].urb = NULL; |
| 1805 | |
| 1806 | kfree(tp->tx_info[i].buffer); |
| 1807 | tp->tx_info[i].buffer = NULL; |
| 1808 | tp->tx_info[i].head = NULL; |
| 1809 | } |
| 1810 | |
| 1811 | usb_free_urb(tp->intr_urb); |
| 1812 | tp->intr_urb = NULL; |
| 1813 | |
| 1814 | kfree(tp->intr_buff); |
| 1815 | tp->intr_buff = NULL; |
| 1816 | } |
| 1817 | |
| 1818 | static int alloc_all_mem(struct r8152 *tp) |
| 1819 | { |
| 1820 | struct net_device *netdev = tp->netdev; |
| 1821 | struct usb_interface *intf = tp->intf; |
| 1822 | struct usb_host_interface *alt = intf->cur_altsetting; |
| 1823 | struct usb_host_endpoint *ep_intr = alt->endpoint + 2; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1824 | int node, i; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1825 | |
| 1826 | node = netdev->dev.parent ? dev_to_node(netdev->dev.parent) : -1; |
| 1827 | |
| 1828 | spin_lock_init(&tp->rx_lock); |
| 1829 | spin_lock_init(&tp->tx_lock); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1830 | INIT_LIST_HEAD(&tp->rx_info); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1831 | INIT_LIST_HEAD(&tp->tx_free); |
| 1832 | INIT_LIST_HEAD(&tp->rx_done); |
| 1833 | skb_queue_head_init(&tp->tx_queue); |
| 1834 | skb_queue_head_init(&tp->rx_queue); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1835 | atomic_set(&tp->rx_count, 0); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1836 | |
| 1837 | for (i = 0; i < RTL8152_MAX_RX; i++) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1838 | if (!alloc_rx_agg(tp, GFP_KERNEL)) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1839 | goto err1; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1840 | } |
| 1841 | |
| 1842 | for (i = 0; i < RTL8152_MAX_TX; i++) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 1843 | struct urb *urb; |
| 1844 | u8 *buf; |
| 1845 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1846 | buf = kmalloc_node(agg_buf_sz, GFP_KERNEL, node); |
| 1847 | if (!buf) |
| 1848 | goto err1; |
| 1849 | |
| 1850 | if (buf != tx_agg_align(buf)) { |
| 1851 | kfree(buf); |
| 1852 | buf = kmalloc_node(agg_buf_sz + TX_ALIGN, GFP_KERNEL, |
| 1853 | node); |
| 1854 | if (!buf) |
| 1855 | goto err1; |
| 1856 | } |
| 1857 | |
| 1858 | urb = usb_alloc_urb(0, GFP_KERNEL); |
| 1859 | if (!urb) { |
| 1860 | kfree(buf); |
| 1861 | goto err1; |
| 1862 | } |
| 1863 | |
| 1864 | INIT_LIST_HEAD(&tp->tx_info[i].list); |
| 1865 | tp->tx_info[i].context = tp; |
| 1866 | tp->tx_info[i].urb = urb; |
| 1867 | tp->tx_info[i].buffer = buf; |
| 1868 | tp->tx_info[i].head = tx_agg_align(buf); |
| 1869 | |
| 1870 | list_add_tail(&tp->tx_info[i].list, &tp->tx_free); |
| 1871 | } |
| 1872 | |
| 1873 | tp->intr_urb = usb_alloc_urb(0, GFP_KERNEL); |
| 1874 | if (!tp->intr_urb) |
| 1875 | goto err1; |
| 1876 | |
| 1877 | tp->intr_buff = kmalloc(INTBUFSIZE, GFP_KERNEL); |
| 1878 | if (!tp->intr_buff) |
| 1879 | goto err1; |
| 1880 | |
| 1881 | tp->intr_interval = (int)ep_intr->desc.bInterval; |
| 1882 | usb_fill_int_urb(tp->intr_urb, tp->udev, usb_rcvintpipe(tp->udev, 3), |
| 1883 | tp->intr_buff, INTBUFSIZE, intr_callback, |
| 1884 | tp, tp->intr_interval); |
| 1885 | |
| 1886 | return 0; |
| 1887 | |
| 1888 | err1: |
| 1889 | free_all_mem(tp); |
| 1890 | return -ENOMEM; |
| 1891 | } |
| 1892 | |
| 1893 | static struct tx_agg *r8152_get_tx_agg(struct r8152 *tp) |
| 1894 | { |
| 1895 | struct tx_agg *agg = NULL; |
| 1896 | unsigned long flags; |
| 1897 | |
| 1898 | if (list_empty(&tp->tx_free)) |
| 1899 | return NULL; |
| 1900 | |
| 1901 | spin_lock_irqsave(&tp->tx_lock, flags); |
| 1902 | if (!list_empty(&tp->tx_free)) { |
| 1903 | struct list_head *cursor; |
| 1904 | |
| 1905 | cursor = tp->tx_free.next; |
| 1906 | list_del_init(cursor); |
| 1907 | agg = list_entry(cursor, struct tx_agg, list); |
| 1908 | } |
| 1909 | spin_unlock_irqrestore(&tp->tx_lock, flags); |
| 1910 | |
| 1911 | return agg; |
| 1912 | } |
| 1913 | |
| 1914 | /* r8152_csum_workaround() |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1915 | * The hw limits the value of the transport offset. When the offset is out of |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1916 | * range, calculate the checksum by sw. |
| 1917 | */ |
| 1918 | static void r8152_csum_workaround(struct r8152 *tp, struct sk_buff *skb, |
| 1919 | struct sk_buff_head *list) |
| 1920 | { |
| 1921 | if (skb_shinfo(skb)->gso_size) { |
| 1922 | netdev_features_t features = tp->netdev->features; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1923 | struct sk_buff *segs, *seg, *next; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1924 | struct sk_buff_head seg_list; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1925 | |
| 1926 | features &= ~(NETIF_F_SG | NETIF_F_IPV6_CSUM | NETIF_F_TSO6); |
| 1927 | segs = skb_gso_segment(skb, features); |
| 1928 | if (IS_ERR(segs) || !segs) |
| 1929 | goto drop; |
| 1930 | |
| 1931 | __skb_queue_head_init(&seg_list); |
| 1932 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 1933 | skb_list_walk_safe(segs, seg, next) { |
| 1934 | skb_mark_not_on_list(seg); |
| 1935 | __skb_queue_tail(&seg_list, seg); |
| 1936 | } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1937 | |
| 1938 | skb_queue_splice(&seg_list, list); |
| 1939 | dev_kfree_skb(skb); |
| 1940 | } else if (skb->ip_summed == CHECKSUM_PARTIAL) { |
| 1941 | if (skb_checksum_help(skb) < 0) |
| 1942 | goto drop; |
| 1943 | |
| 1944 | __skb_queue_head(list, skb); |
| 1945 | } else { |
| 1946 | struct net_device_stats *stats; |
| 1947 | |
| 1948 | drop: |
| 1949 | stats = &tp->netdev->stats; |
| 1950 | stats->tx_dropped++; |
| 1951 | dev_kfree_skb(skb); |
| 1952 | } |
| 1953 | } |
| 1954 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1955 | static inline void rtl_tx_vlan_tag(struct tx_desc *desc, struct sk_buff *skb) |
| 1956 | { |
| 1957 | if (skb_vlan_tag_present(skb)) { |
| 1958 | u32 opts2; |
| 1959 | |
| 1960 | opts2 = TX_VLAN_TAG | swab16(skb_vlan_tag_get(skb)); |
| 1961 | desc->opts2 |= cpu_to_le32(opts2); |
| 1962 | } |
| 1963 | } |
| 1964 | |
| 1965 | static inline void rtl_rx_vlan_tag(struct rx_desc *desc, struct sk_buff *skb) |
| 1966 | { |
| 1967 | u32 opts2 = le32_to_cpu(desc->opts2); |
| 1968 | |
| 1969 | if (opts2 & RX_VLAN_TAG) |
| 1970 | __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), |
| 1971 | swab16(opts2 & 0xffff)); |
| 1972 | } |
| 1973 | |
| 1974 | static int r8152_tx_csum(struct r8152 *tp, struct tx_desc *desc, |
| 1975 | struct sk_buff *skb, u32 len, u32 transport_offset) |
| 1976 | { |
| 1977 | u32 mss = skb_shinfo(skb)->gso_size; |
| 1978 | u32 opts1, opts2 = 0; |
| 1979 | int ret = TX_CSUM_SUCCESS; |
| 1980 | |
| 1981 | WARN_ON_ONCE(len > TX_LEN_MAX); |
| 1982 | |
| 1983 | opts1 = len | TX_FS | TX_LS; |
| 1984 | |
| 1985 | if (mss) { |
| 1986 | if (transport_offset > GTTCPHO_MAX) { |
| 1987 | netif_warn(tp, tx_err, tp->netdev, |
| 1988 | "Invalid transport offset 0x%x for TSO\n", |
| 1989 | transport_offset); |
| 1990 | ret = TX_CSUM_TSO; |
| 1991 | goto unavailable; |
| 1992 | } |
| 1993 | |
| 1994 | switch (vlan_get_protocol(skb)) { |
| 1995 | case htons(ETH_P_IP): |
| 1996 | opts1 |= GTSENDV4; |
| 1997 | break; |
| 1998 | |
| 1999 | case htons(ETH_P_IPV6): |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2000 | if (skb_cow_head(skb, 0)) { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2001 | ret = TX_CSUM_TSO; |
| 2002 | goto unavailable; |
| 2003 | } |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2004 | tcp_v6_gso_csum_prep(skb); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2005 | opts1 |= GTSENDV6; |
| 2006 | break; |
| 2007 | |
| 2008 | default: |
| 2009 | WARN_ON_ONCE(1); |
| 2010 | break; |
| 2011 | } |
| 2012 | |
| 2013 | opts1 |= transport_offset << GTTCPHO_SHIFT; |
| 2014 | opts2 |= min(mss, MSS_MAX) << MSS_SHIFT; |
| 2015 | } else if (skb->ip_summed == CHECKSUM_PARTIAL) { |
| 2016 | u8 ip_protocol; |
| 2017 | |
| 2018 | if (transport_offset > TCPHO_MAX) { |
| 2019 | netif_warn(tp, tx_err, tp->netdev, |
| 2020 | "Invalid transport offset 0x%x\n", |
| 2021 | transport_offset); |
| 2022 | ret = TX_CSUM_NONE; |
| 2023 | goto unavailable; |
| 2024 | } |
| 2025 | |
| 2026 | switch (vlan_get_protocol(skb)) { |
| 2027 | case htons(ETH_P_IP): |
| 2028 | opts2 |= IPV4_CS; |
| 2029 | ip_protocol = ip_hdr(skb)->protocol; |
| 2030 | break; |
| 2031 | |
| 2032 | case htons(ETH_P_IPV6): |
| 2033 | opts2 |= IPV6_CS; |
| 2034 | ip_protocol = ipv6_hdr(skb)->nexthdr; |
| 2035 | break; |
| 2036 | |
| 2037 | default: |
| 2038 | ip_protocol = IPPROTO_RAW; |
| 2039 | break; |
| 2040 | } |
| 2041 | |
| 2042 | if (ip_protocol == IPPROTO_TCP) |
| 2043 | opts2 |= TCP_CS; |
| 2044 | else if (ip_protocol == IPPROTO_UDP) |
| 2045 | opts2 |= UDP_CS; |
| 2046 | else |
| 2047 | WARN_ON_ONCE(1); |
| 2048 | |
| 2049 | opts2 |= transport_offset << TCPHO_SHIFT; |
| 2050 | } |
| 2051 | |
| 2052 | desc->opts2 = cpu_to_le32(opts2); |
| 2053 | desc->opts1 = cpu_to_le32(opts1); |
| 2054 | |
| 2055 | unavailable: |
| 2056 | return ret; |
| 2057 | } |
| 2058 | |
| 2059 | static int r8152_tx_agg_fill(struct r8152 *tp, struct tx_agg *agg) |
| 2060 | { |
| 2061 | struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue; |
| 2062 | int remain, ret; |
| 2063 | u8 *tx_data; |
| 2064 | |
| 2065 | __skb_queue_head_init(&skb_head); |
| 2066 | spin_lock(&tx_queue->lock); |
| 2067 | skb_queue_splice_init(tx_queue, &skb_head); |
| 2068 | spin_unlock(&tx_queue->lock); |
| 2069 | |
| 2070 | tx_data = agg->head; |
| 2071 | agg->skb_num = 0; |
| 2072 | agg->skb_len = 0; |
| 2073 | remain = agg_buf_sz; |
| 2074 | |
| 2075 | while (remain >= ETH_ZLEN + sizeof(struct tx_desc)) { |
| 2076 | struct tx_desc *tx_desc; |
| 2077 | struct sk_buff *skb; |
| 2078 | unsigned int len; |
| 2079 | u32 offset; |
| 2080 | |
| 2081 | skb = __skb_dequeue(&skb_head); |
| 2082 | if (!skb) |
| 2083 | break; |
| 2084 | |
| 2085 | len = skb->len + sizeof(*tx_desc); |
| 2086 | |
| 2087 | if (len > remain) { |
| 2088 | __skb_queue_head(&skb_head, skb); |
| 2089 | break; |
| 2090 | } |
| 2091 | |
| 2092 | tx_data = tx_agg_align(tx_data); |
| 2093 | tx_desc = (struct tx_desc *)tx_data; |
| 2094 | |
| 2095 | offset = (u32)skb_transport_offset(skb); |
| 2096 | |
| 2097 | if (r8152_tx_csum(tp, tx_desc, skb, skb->len, offset)) { |
| 2098 | r8152_csum_workaround(tp, skb, &skb_head); |
| 2099 | continue; |
| 2100 | } |
| 2101 | |
| 2102 | rtl_tx_vlan_tag(tx_desc, skb); |
| 2103 | |
| 2104 | tx_data += sizeof(*tx_desc); |
| 2105 | |
| 2106 | len = skb->len; |
| 2107 | if (skb_copy_bits(skb, 0, tx_data, len) < 0) { |
| 2108 | struct net_device_stats *stats = &tp->netdev->stats; |
| 2109 | |
| 2110 | stats->tx_dropped++; |
| 2111 | dev_kfree_skb_any(skb); |
| 2112 | tx_data -= sizeof(*tx_desc); |
| 2113 | continue; |
| 2114 | } |
| 2115 | |
| 2116 | tx_data += len; |
| 2117 | agg->skb_len += len; |
| 2118 | agg->skb_num += skb_shinfo(skb)->gso_segs ?: 1; |
| 2119 | |
| 2120 | dev_kfree_skb_any(skb); |
| 2121 | |
| 2122 | remain = agg_buf_sz - (int)(tx_agg_align(tx_data) - agg->head); |
| 2123 | |
| 2124 | if (test_bit(DELL_TB_RX_AGG_BUG, &tp->flags)) |
| 2125 | break; |
| 2126 | } |
| 2127 | |
| 2128 | if (!skb_queue_empty(&skb_head)) { |
| 2129 | spin_lock(&tx_queue->lock); |
| 2130 | skb_queue_splice(&skb_head, tx_queue); |
| 2131 | spin_unlock(&tx_queue->lock); |
| 2132 | } |
| 2133 | |
| 2134 | netif_tx_lock(tp->netdev); |
| 2135 | |
| 2136 | if (netif_queue_stopped(tp->netdev) && |
| 2137 | skb_queue_len(&tp->tx_queue) < tp->tx_qlen) |
| 2138 | netif_wake_queue(tp->netdev); |
| 2139 | |
| 2140 | netif_tx_unlock(tp->netdev); |
| 2141 | |
| 2142 | ret = usb_autopm_get_interface_async(tp->intf); |
| 2143 | if (ret < 0) |
| 2144 | goto out_tx_fill; |
| 2145 | |
| 2146 | usb_fill_bulk_urb(agg->urb, tp->udev, usb_sndbulkpipe(tp->udev, 2), |
| 2147 | agg->head, (int)(tx_data - (u8 *)agg->head), |
| 2148 | (usb_complete_t)write_bulk_callback, agg); |
| 2149 | |
| 2150 | ret = usb_submit_urb(agg->urb, GFP_ATOMIC); |
| 2151 | if (ret < 0) |
| 2152 | usb_autopm_put_interface_async(tp->intf); |
| 2153 | |
| 2154 | out_tx_fill: |
| 2155 | return ret; |
| 2156 | } |
| 2157 | |
| 2158 | static u8 r8152_rx_csum(struct r8152 *tp, struct rx_desc *rx_desc) |
| 2159 | { |
| 2160 | u8 checksum = CHECKSUM_NONE; |
| 2161 | u32 opts2, opts3; |
| 2162 | |
| 2163 | if (!(tp->netdev->features & NETIF_F_RXCSUM)) |
| 2164 | goto return_result; |
| 2165 | |
| 2166 | opts2 = le32_to_cpu(rx_desc->opts2); |
| 2167 | opts3 = le32_to_cpu(rx_desc->opts3); |
| 2168 | |
| 2169 | if (opts2 & RD_IPV4_CS) { |
| 2170 | if (opts3 & IPF) |
| 2171 | checksum = CHECKSUM_NONE; |
| 2172 | else if ((opts2 & RD_UDP_CS) && !(opts3 & UDPF)) |
| 2173 | checksum = CHECKSUM_UNNECESSARY; |
| 2174 | else if ((opts2 & RD_TCP_CS) && !(opts3 & TCPF)) |
| 2175 | checksum = CHECKSUM_UNNECESSARY; |
| 2176 | } else if (opts2 & RD_IPV6_CS) { |
| 2177 | if ((opts2 & RD_UDP_CS) && !(opts3 & UDPF)) |
| 2178 | checksum = CHECKSUM_UNNECESSARY; |
| 2179 | else if ((opts2 & RD_TCP_CS) && !(opts3 & TCPF)) |
| 2180 | checksum = CHECKSUM_UNNECESSARY; |
| 2181 | } |
| 2182 | |
| 2183 | return_result: |
| 2184 | return checksum; |
| 2185 | } |
| 2186 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2187 | static inline bool rx_count_exceed(struct r8152 *tp) |
| 2188 | { |
| 2189 | return atomic_read(&tp->rx_count) > RTL8152_MAX_RX; |
| 2190 | } |
| 2191 | |
| 2192 | static inline int agg_offset(struct rx_agg *agg, void *addr) |
| 2193 | { |
| 2194 | return (int)(addr - agg->buffer); |
| 2195 | } |
| 2196 | |
| 2197 | static struct rx_agg *rtl_get_free_rx(struct r8152 *tp, gfp_t mflags) |
| 2198 | { |
| 2199 | struct rx_agg *agg, *agg_next, *agg_free = NULL; |
| 2200 | unsigned long flags; |
| 2201 | |
| 2202 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2203 | |
| 2204 | list_for_each_entry_safe(agg, agg_next, &tp->rx_used, list) { |
| 2205 | if (page_count(agg->page) == 1) { |
| 2206 | if (!agg_free) { |
| 2207 | list_del_init(&agg->list); |
| 2208 | agg_free = agg; |
| 2209 | continue; |
| 2210 | } |
| 2211 | if (rx_count_exceed(tp)) { |
| 2212 | list_del_init(&agg->list); |
| 2213 | free_rx_agg(tp, agg); |
| 2214 | } |
| 2215 | break; |
| 2216 | } |
| 2217 | } |
| 2218 | |
| 2219 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 2220 | |
| 2221 | if (!agg_free && atomic_read(&tp->rx_count) < tp->rx_pending) |
| 2222 | agg_free = alloc_rx_agg(tp, mflags); |
| 2223 | |
| 2224 | return agg_free; |
| 2225 | } |
| 2226 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2227 | static int rx_bottom(struct r8152 *tp, int budget) |
| 2228 | { |
| 2229 | unsigned long flags; |
| 2230 | struct list_head *cursor, *next, rx_queue; |
| 2231 | int ret = 0, work_done = 0; |
| 2232 | struct napi_struct *napi = &tp->napi; |
| 2233 | |
| 2234 | if (!skb_queue_empty(&tp->rx_queue)) { |
| 2235 | while (work_done < budget) { |
| 2236 | struct sk_buff *skb = __skb_dequeue(&tp->rx_queue); |
| 2237 | struct net_device *netdev = tp->netdev; |
| 2238 | struct net_device_stats *stats = &netdev->stats; |
| 2239 | unsigned int pkt_len; |
| 2240 | |
| 2241 | if (!skb) |
| 2242 | break; |
| 2243 | |
| 2244 | pkt_len = skb->len; |
| 2245 | napi_gro_receive(napi, skb); |
| 2246 | work_done++; |
| 2247 | stats->rx_packets++; |
| 2248 | stats->rx_bytes += pkt_len; |
| 2249 | } |
| 2250 | } |
| 2251 | |
| 2252 | if (list_empty(&tp->rx_done)) |
| 2253 | goto out1; |
| 2254 | |
| 2255 | INIT_LIST_HEAD(&rx_queue); |
| 2256 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2257 | list_splice_init(&tp->rx_done, &rx_queue); |
| 2258 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 2259 | |
| 2260 | list_for_each_safe(cursor, next, &rx_queue) { |
| 2261 | struct rx_desc *rx_desc; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2262 | struct rx_agg *agg, *agg_free; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2263 | int len_used = 0; |
| 2264 | struct urb *urb; |
| 2265 | u8 *rx_data; |
| 2266 | |
| 2267 | list_del_init(cursor); |
| 2268 | |
| 2269 | agg = list_entry(cursor, struct rx_agg, list); |
| 2270 | urb = agg->urb; |
| 2271 | if (urb->actual_length < ETH_ZLEN) |
| 2272 | goto submit; |
| 2273 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2274 | agg_free = rtl_get_free_rx(tp, GFP_ATOMIC); |
| 2275 | |
| 2276 | rx_desc = agg->buffer; |
| 2277 | rx_data = agg->buffer; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2278 | len_used += sizeof(struct rx_desc); |
| 2279 | |
| 2280 | while (urb->actual_length > len_used) { |
| 2281 | struct net_device *netdev = tp->netdev; |
| 2282 | struct net_device_stats *stats = &netdev->stats; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2283 | unsigned int pkt_len, rx_frag_head_sz; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2284 | struct sk_buff *skb; |
| 2285 | |
| 2286 | /* limite the skb numbers for rx_queue */ |
| 2287 | if (unlikely(skb_queue_len(&tp->rx_queue) >= 1000)) |
| 2288 | break; |
| 2289 | |
| 2290 | pkt_len = le32_to_cpu(rx_desc->opts1) & RX_LEN_MASK; |
| 2291 | if (pkt_len < ETH_ZLEN) |
| 2292 | break; |
| 2293 | |
| 2294 | len_used += pkt_len; |
| 2295 | if (urb->actual_length < len_used) |
| 2296 | break; |
| 2297 | |
| 2298 | pkt_len -= ETH_FCS_LEN; |
| 2299 | rx_data += sizeof(struct rx_desc); |
| 2300 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2301 | if (!agg_free || tp->rx_copybreak > pkt_len) |
| 2302 | rx_frag_head_sz = pkt_len; |
| 2303 | else |
| 2304 | rx_frag_head_sz = tp->rx_copybreak; |
| 2305 | |
| 2306 | skb = napi_alloc_skb(napi, rx_frag_head_sz); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2307 | if (!skb) { |
| 2308 | stats->rx_dropped++; |
| 2309 | goto find_next_rx; |
| 2310 | } |
| 2311 | |
| 2312 | skb->ip_summed = r8152_rx_csum(tp, rx_desc); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2313 | memcpy(skb->data, rx_data, rx_frag_head_sz); |
| 2314 | skb_put(skb, rx_frag_head_sz); |
| 2315 | pkt_len -= rx_frag_head_sz; |
| 2316 | rx_data += rx_frag_head_sz; |
| 2317 | if (pkt_len) { |
| 2318 | skb_add_rx_frag(skb, 0, agg->page, |
| 2319 | agg_offset(agg, rx_data), |
| 2320 | pkt_len, |
| 2321 | SKB_DATA_ALIGN(pkt_len)); |
| 2322 | get_page(agg->page); |
| 2323 | } |
| 2324 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2325 | skb->protocol = eth_type_trans(skb, netdev); |
| 2326 | rtl_rx_vlan_tag(rx_desc, skb); |
| 2327 | if (work_done < budget) { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2328 | work_done++; |
| 2329 | stats->rx_packets++; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2330 | stats->rx_bytes += skb->len; |
| 2331 | napi_gro_receive(napi, skb); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2332 | } else { |
| 2333 | __skb_queue_tail(&tp->rx_queue, skb); |
| 2334 | } |
| 2335 | |
| 2336 | find_next_rx: |
| 2337 | rx_data = rx_agg_align(rx_data + pkt_len + ETH_FCS_LEN); |
| 2338 | rx_desc = (struct rx_desc *)rx_data; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2339 | len_used = agg_offset(agg, rx_data); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2340 | len_used += sizeof(struct rx_desc); |
| 2341 | } |
| 2342 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2343 | WARN_ON(!agg_free && page_count(agg->page) > 1); |
| 2344 | |
| 2345 | if (agg_free) { |
| 2346 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2347 | if (page_count(agg->page) == 1) { |
| 2348 | list_add(&agg_free->list, &tp->rx_used); |
| 2349 | } else { |
| 2350 | list_add_tail(&agg->list, &tp->rx_used); |
| 2351 | agg = agg_free; |
| 2352 | urb = agg->urb; |
| 2353 | } |
| 2354 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 2355 | } |
| 2356 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2357 | submit: |
| 2358 | if (!ret) { |
| 2359 | ret = r8152_submit_rx(tp, agg, GFP_ATOMIC); |
| 2360 | } else { |
| 2361 | urb->actual_length = 0; |
| 2362 | list_add_tail(&agg->list, next); |
| 2363 | } |
| 2364 | } |
| 2365 | |
| 2366 | if (!list_empty(&rx_queue)) { |
| 2367 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2368 | list_splice_tail(&rx_queue, &tp->rx_done); |
| 2369 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 2370 | } |
| 2371 | |
| 2372 | out1: |
| 2373 | return work_done; |
| 2374 | } |
| 2375 | |
| 2376 | static void tx_bottom(struct r8152 *tp) |
| 2377 | { |
| 2378 | int res; |
| 2379 | |
| 2380 | do { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2381 | struct net_device *netdev = tp->netdev; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2382 | struct tx_agg *agg; |
| 2383 | |
| 2384 | if (skb_queue_empty(&tp->tx_queue)) |
| 2385 | break; |
| 2386 | |
| 2387 | agg = r8152_get_tx_agg(tp); |
| 2388 | if (!agg) |
| 2389 | break; |
| 2390 | |
| 2391 | res = r8152_tx_agg_fill(tp, agg); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2392 | if (!res) |
| 2393 | continue; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2394 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2395 | if (res == -ENODEV) { |
| 2396 | rtl_set_unplug(tp); |
| 2397 | netif_device_detach(netdev); |
| 2398 | } else { |
| 2399 | struct net_device_stats *stats = &netdev->stats; |
| 2400 | unsigned long flags; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2401 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2402 | netif_warn(tp, tx_err, netdev, |
| 2403 | "failed tx_urb %d\n", res); |
| 2404 | stats->tx_dropped += agg->skb_num; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2405 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2406 | spin_lock_irqsave(&tp->tx_lock, flags); |
| 2407 | list_add_tail(&agg->list, &tp->tx_free); |
| 2408 | spin_unlock_irqrestore(&tp->tx_lock, flags); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2409 | } |
| 2410 | } while (res == 0); |
| 2411 | } |
| 2412 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2413 | static void bottom_half(unsigned long data) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2414 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2415 | struct r8152 *tp; |
| 2416 | |
| 2417 | tp = (struct r8152 *)data; |
| 2418 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2419 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 2420 | return; |
| 2421 | |
| 2422 | if (!test_bit(WORK_ENABLE, &tp->flags)) |
| 2423 | return; |
| 2424 | |
| 2425 | /* When link down, the driver would cancel all bulks. */ |
| 2426 | /* This avoid the re-submitting bulk */ |
| 2427 | if (!netif_carrier_ok(tp->netdev)) |
| 2428 | return; |
| 2429 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2430 | clear_bit(SCHEDULE_TASKLET, &tp->flags); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2431 | |
| 2432 | tx_bottom(tp); |
| 2433 | } |
| 2434 | |
| 2435 | static int r8152_poll(struct napi_struct *napi, int budget) |
| 2436 | { |
| 2437 | struct r8152 *tp = container_of(napi, struct r8152, napi); |
| 2438 | int work_done; |
| 2439 | |
| 2440 | work_done = rx_bottom(tp, budget); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2441 | |
| 2442 | if (work_done < budget) { |
| 2443 | if (!napi_complete_done(napi, work_done)) |
| 2444 | goto out; |
| 2445 | if (!list_empty(&tp->rx_done)) |
| 2446 | napi_schedule(napi); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2447 | } |
| 2448 | |
| 2449 | out: |
| 2450 | return work_done; |
| 2451 | } |
| 2452 | |
| 2453 | static |
| 2454 | int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, gfp_t mem_flags) |
| 2455 | { |
| 2456 | int ret; |
| 2457 | |
| 2458 | /* The rx would be stopped, so skip submitting */ |
| 2459 | if (test_bit(RTL8152_UNPLUG, &tp->flags) || |
| 2460 | !test_bit(WORK_ENABLE, &tp->flags) || !netif_carrier_ok(tp->netdev)) |
| 2461 | return 0; |
| 2462 | |
| 2463 | usb_fill_bulk_urb(agg->urb, tp->udev, usb_rcvbulkpipe(tp->udev, 1), |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2464 | agg->buffer, tp->rx_buf_sz, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2465 | (usb_complete_t)read_bulk_callback, agg); |
| 2466 | |
| 2467 | ret = usb_submit_urb(agg->urb, mem_flags); |
| 2468 | if (ret == -ENODEV) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2469 | rtl_set_unplug(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2470 | netif_device_detach(tp->netdev); |
| 2471 | } else if (ret) { |
| 2472 | struct urb *urb = agg->urb; |
| 2473 | unsigned long flags; |
| 2474 | |
| 2475 | urb->actual_length = 0; |
| 2476 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2477 | list_add_tail(&agg->list, &tp->rx_done); |
| 2478 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 2479 | |
| 2480 | netif_err(tp, rx_err, tp->netdev, |
| 2481 | "Couldn't submit rx[%p], ret = %d\n", agg, ret); |
| 2482 | |
| 2483 | napi_schedule(&tp->napi); |
| 2484 | } |
| 2485 | |
| 2486 | return ret; |
| 2487 | } |
| 2488 | |
| 2489 | static void rtl_drop_queued_tx(struct r8152 *tp) |
| 2490 | { |
| 2491 | struct net_device_stats *stats = &tp->netdev->stats; |
| 2492 | struct sk_buff_head skb_head, *tx_queue = &tp->tx_queue; |
| 2493 | struct sk_buff *skb; |
| 2494 | |
| 2495 | if (skb_queue_empty(tx_queue)) |
| 2496 | return; |
| 2497 | |
| 2498 | __skb_queue_head_init(&skb_head); |
| 2499 | spin_lock_bh(&tx_queue->lock); |
| 2500 | skb_queue_splice_init(tx_queue, &skb_head); |
| 2501 | spin_unlock_bh(&tx_queue->lock); |
| 2502 | |
| 2503 | while ((skb = __skb_dequeue(&skb_head))) { |
| 2504 | dev_kfree_skb(skb); |
| 2505 | stats->tx_dropped++; |
| 2506 | } |
| 2507 | } |
| 2508 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2509 | static void rtl8152_tx_timeout(struct net_device *netdev, unsigned int txqueue) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2510 | { |
| 2511 | struct r8152 *tp = netdev_priv(netdev); |
| 2512 | |
| 2513 | netif_warn(tp, tx_err, netdev, "Tx timeout\n"); |
| 2514 | |
| 2515 | usb_queue_reset_device(tp->intf); |
| 2516 | } |
| 2517 | |
| 2518 | static void rtl8152_set_rx_mode(struct net_device *netdev) |
| 2519 | { |
| 2520 | struct r8152 *tp = netdev_priv(netdev); |
| 2521 | |
| 2522 | if (netif_carrier_ok(netdev)) { |
| 2523 | set_bit(RTL8152_SET_RX_MODE, &tp->flags); |
| 2524 | schedule_delayed_work(&tp->schedule, 0); |
| 2525 | } |
| 2526 | } |
| 2527 | |
| 2528 | static void _rtl8152_set_rx_mode(struct net_device *netdev) |
| 2529 | { |
| 2530 | struct r8152 *tp = netdev_priv(netdev); |
| 2531 | u32 mc_filter[2]; /* Multicast hash filter */ |
| 2532 | __le32 tmp[2]; |
| 2533 | u32 ocp_data; |
| 2534 | |
| 2535 | netif_stop_queue(netdev); |
| 2536 | ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR); |
| 2537 | ocp_data &= ~RCR_ACPT_ALL; |
| 2538 | ocp_data |= RCR_AB | RCR_APM; |
| 2539 | |
| 2540 | if (netdev->flags & IFF_PROMISC) { |
| 2541 | /* Unconditionally log net taps. */ |
| 2542 | netif_notice(tp, link, netdev, "Promiscuous mode enabled\n"); |
| 2543 | ocp_data |= RCR_AM | RCR_AAP; |
| 2544 | mc_filter[1] = 0xffffffff; |
| 2545 | mc_filter[0] = 0xffffffff; |
| 2546 | } else if ((netdev_mc_count(netdev) > multicast_filter_limit) || |
| 2547 | (netdev->flags & IFF_ALLMULTI)) { |
| 2548 | /* Too many to filter perfectly -- accept all multicasts. */ |
| 2549 | ocp_data |= RCR_AM; |
| 2550 | mc_filter[1] = 0xffffffff; |
| 2551 | mc_filter[0] = 0xffffffff; |
| 2552 | } else { |
| 2553 | struct netdev_hw_addr *ha; |
| 2554 | |
| 2555 | mc_filter[1] = 0; |
| 2556 | mc_filter[0] = 0; |
| 2557 | netdev_for_each_mc_addr(ha, netdev) { |
| 2558 | int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26; |
| 2559 | |
| 2560 | mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31); |
| 2561 | ocp_data |= RCR_AM; |
| 2562 | } |
| 2563 | } |
| 2564 | |
| 2565 | tmp[0] = __cpu_to_le32(swab32(mc_filter[1])); |
| 2566 | tmp[1] = __cpu_to_le32(swab32(mc_filter[0])); |
| 2567 | |
| 2568 | pla_ocp_write(tp, PLA_MAR, BYTE_EN_DWORD, sizeof(tmp), tmp); |
| 2569 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data); |
| 2570 | netif_wake_queue(netdev); |
| 2571 | } |
| 2572 | |
| 2573 | static netdev_features_t |
| 2574 | rtl8152_features_check(struct sk_buff *skb, struct net_device *dev, |
| 2575 | netdev_features_t features) |
| 2576 | { |
| 2577 | u32 mss = skb_shinfo(skb)->gso_size; |
| 2578 | int max_offset = mss ? GTTCPHO_MAX : TCPHO_MAX; |
| 2579 | int offset = skb_transport_offset(skb); |
| 2580 | |
| 2581 | if ((mss || skb->ip_summed == CHECKSUM_PARTIAL) && offset > max_offset) |
| 2582 | features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK); |
| 2583 | else if ((skb->len + sizeof(struct tx_desc)) > agg_buf_sz) |
| 2584 | features &= ~NETIF_F_GSO_MASK; |
| 2585 | |
| 2586 | return features; |
| 2587 | } |
| 2588 | |
| 2589 | static netdev_tx_t rtl8152_start_xmit(struct sk_buff *skb, |
| 2590 | struct net_device *netdev) |
| 2591 | { |
| 2592 | struct r8152 *tp = netdev_priv(netdev); |
| 2593 | |
| 2594 | skb_tx_timestamp(skb); |
| 2595 | |
| 2596 | skb_queue_tail(&tp->tx_queue, skb); |
| 2597 | |
| 2598 | if (!list_empty(&tp->tx_free)) { |
| 2599 | if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2600 | set_bit(SCHEDULE_TASKLET, &tp->flags); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2601 | schedule_delayed_work(&tp->schedule, 0); |
| 2602 | } else { |
| 2603 | usb_mark_last_busy(tp->udev); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2604 | tasklet_schedule(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2605 | } |
| 2606 | } else if (skb_queue_len(&tp->tx_queue) > tp->tx_qlen) { |
| 2607 | netif_stop_queue(netdev); |
| 2608 | } |
| 2609 | |
| 2610 | return NETDEV_TX_OK; |
| 2611 | } |
| 2612 | |
| 2613 | static void r8152b_reset_packet_filter(struct r8152 *tp) |
| 2614 | { |
| 2615 | u32 ocp_data; |
| 2616 | |
| 2617 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_FMC); |
| 2618 | ocp_data &= ~FMC_FCR_MCU_EN; |
| 2619 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data); |
| 2620 | ocp_data |= FMC_FCR_MCU_EN; |
| 2621 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_FMC, ocp_data); |
| 2622 | } |
| 2623 | |
| 2624 | static void rtl8152_nic_reset(struct r8152 *tp) |
| 2625 | { |
| 2626 | int i; |
| 2627 | |
| 2628 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, CR_RST); |
| 2629 | |
| 2630 | for (i = 0; i < 1000; i++) { |
| 2631 | if (!(ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR) & CR_RST)) |
| 2632 | break; |
| 2633 | usleep_range(100, 400); |
| 2634 | } |
| 2635 | } |
| 2636 | |
| 2637 | static void set_tx_qlen(struct r8152 *tp) |
| 2638 | { |
| 2639 | struct net_device *netdev = tp->netdev; |
| 2640 | |
| 2641 | tp->tx_qlen = agg_buf_sz / (netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN + |
| 2642 | sizeof(struct tx_desc)); |
| 2643 | } |
| 2644 | |
| 2645 | static inline u8 rtl8152_get_speed(struct r8152 *tp) |
| 2646 | { |
| 2647 | return ocp_read_byte(tp, MCU_TYPE_PLA, PLA_PHYSTATUS); |
| 2648 | } |
| 2649 | |
| 2650 | static void rtl_set_eee_plus(struct r8152 *tp) |
| 2651 | { |
| 2652 | u32 ocp_data; |
| 2653 | u8 speed; |
| 2654 | |
| 2655 | speed = rtl8152_get_speed(tp); |
| 2656 | if (speed & _10bps) { |
| 2657 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR); |
| 2658 | ocp_data |= EEEP_CR_EEEP_TX; |
| 2659 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data); |
| 2660 | } else { |
| 2661 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR); |
| 2662 | ocp_data &= ~EEEP_CR_EEEP_TX; |
| 2663 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEEP_CR, ocp_data); |
| 2664 | } |
| 2665 | } |
| 2666 | |
| 2667 | static void rxdy_gated_en(struct r8152 *tp, bool enable) |
| 2668 | { |
| 2669 | u32 ocp_data; |
| 2670 | |
| 2671 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MISC_1); |
| 2672 | if (enable) |
| 2673 | ocp_data |= RXDY_GATED_EN; |
| 2674 | else |
| 2675 | ocp_data &= ~RXDY_GATED_EN; |
| 2676 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MISC_1, ocp_data); |
| 2677 | } |
| 2678 | |
| 2679 | static int rtl_start_rx(struct r8152 *tp) |
| 2680 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2681 | struct rx_agg *agg, *agg_next; |
| 2682 | struct list_head tmp_list; |
| 2683 | unsigned long flags; |
| 2684 | int ret = 0, i = 0; |
| 2685 | |
| 2686 | INIT_LIST_HEAD(&tmp_list); |
| 2687 | |
| 2688 | spin_lock_irqsave(&tp->rx_lock, flags); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2689 | |
| 2690 | INIT_LIST_HEAD(&tp->rx_done); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2691 | INIT_LIST_HEAD(&tp->rx_used); |
| 2692 | |
| 2693 | list_splice_init(&tp->rx_info, &tmp_list); |
| 2694 | |
| 2695 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 2696 | |
| 2697 | list_for_each_entry_safe(agg, agg_next, &tmp_list, info_list) { |
| 2698 | INIT_LIST_HEAD(&agg->list); |
| 2699 | |
| 2700 | /* Only RTL8152_MAX_RX rx_agg need to be submitted. */ |
| 2701 | if (++i > RTL8152_MAX_RX) { |
| 2702 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2703 | list_add_tail(&agg->list, &tp->rx_used); |
| 2704 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 2705 | } else if (unlikely(ret < 0)) { |
| 2706 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2707 | list_add_tail(&agg->list, &tp->rx_done); |
| 2708 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 2709 | } else { |
| 2710 | ret = r8152_submit_rx(tp, agg, GFP_KERNEL); |
| 2711 | } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2712 | } |
| 2713 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2714 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2715 | WARN_ON(!list_empty(&tp->rx_info)); |
| 2716 | list_splice(&tmp_list, &tp->rx_info); |
| 2717 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2718 | |
| 2719 | return ret; |
| 2720 | } |
| 2721 | |
| 2722 | static int rtl_stop_rx(struct r8152 *tp) |
| 2723 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2724 | struct rx_agg *agg, *agg_next; |
| 2725 | struct list_head tmp_list; |
| 2726 | unsigned long flags; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2727 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2728 | INIT_LIST_HEAD(&tmp_list); |
| 2729 | |
| 2730 | /* The usb_kill_urb() couldn't be used in atomic. |
| 2731 | * Therefore, move the list of rx_info to a tmp one. |
| 2732 | * Then, list_for_each_entry_safe could be used without |
| 2733 | * spin lock. |
| 2734 | */ |
| 2735 | |
| 2736 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2737 | list_splice_init(&tp->rx_info, &tmp_list); |
| 2738 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
| 2739 | |
| 2740 | list_for_each_entry_safe(agg, agg_next, &tmp_list, info_list) { |
| 2741 | /* At least RTL8152_MAX_RX rx_agg have the page_count being |
| 2742 | * equal to 1, so the other ones could be freed safely. |
| 2743 | */ |
| 2744 | if (page_count(agg->page) > 1) |
| 2745 | free_rx_agg(tp, agg); |
| 2746 | else |
| 2747 | usb_kill_urb(agg->urb); |
| 2748 | } |
| 2749 | |
| 2750 | /* Move back the list of temp to the rx_info */ |
| 2751 | spin_lock_irqsave(&tp->rx_lock, flags); |
| 2752 | WARN_ON(!list_empty(&tp->rx_info)); |
| 2753 | list_splice(&tmp_list, &tp->rx_info); |
| 2754 | spin_unlock_irqrestore(&tp->rx_lock, flags); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2755 | |
| 2756 | while (!skb_queue_empty(&tp->rx_queue)) |
| 2757 | dev_kfree_skb(__skb_dequeue(&tp->rx_queue)); |
| 2758 | |
| 2759 | return 0; |
| 2760 | } |
| 2761 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2762 | static inline void r8153b_rx_agg_chg_indicate(struct r8152 *tp) |
| 2763 | { |
| 2764 | ocp_write_byte(tp, MCU_TYPE_USB, USB_UPT_RXDMA_OWN, |
| 2765 | OWN_UPDATE | OWN_CLEAR); |
| 2766 | } |
| 2767 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2768 | static int rtl_enable(struct r8152 *tp) |
| 2769 | { |
| 2770 | u32 ocp_data; |
| 2771 | |
| 2772 | r8152b_reset_packet_filter(tp); |
| 2773 | |
| 2774 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CR); |
| 2775 | ocp_data |= CR_RE | CR_TE; |
| 2776 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, ocp_data); |
| 2777 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2778 | switch (tp->version) { |
| 2779 | case RTL_VER_08: |
| 2780 | case RTL_VER_09: |
| 2781 | r8153b_rx_agg_chg_indicate(tp); |
| 2782 | break; |
| 2783 | default: |
| 2784 | break; |
| 2785 | } |
| 2786 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2787 | rxdy_gated_en(tp, false); |
| 2788 | |
| 2789 | return 0; |
| 2790 | } |
| 2791 | |
| 2792 | static int rtl8152_enable(struct r8152 *tp) |
| 2793 | { |
| 2794 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 2795 | return -ENODEV; |
| 2796 | |
| 2797 | set_tx_qlen(tp); |
| 2798 | rtl_set_eee_plus(tp); |
| 2799 | |
| 2800 | return rtl_enable(tp); |
| 2801 | } |
| 2802 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2803 | static void r8153_set_rx_early_timeout(struct r8152 *tp) |
| 2804 | { |
| 2805 | u32 ocp_data = tp->coalesce / 8; |
| 2806 | |
| 2807 | switch (tp->version) { |
| 2808 | case RTL_VER_03: |
| 2809 | case RTL_VER_04: |
| 2810 | case RTL_VER_05: |
| 2811 | case RTL_VER_06: |
| 2812 | ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT, |
| 2813 | ocp_data); |
| 2814 | break; |
| 2815 | |
| 2816 | case RTL_VER_08: |
| 2817 | case RTL_VER_09: |
| 2818 | /* The RTL8153B uses USB_RX_EXTRA_AGGR_TMR for rx timeout |
| 2819 | * primarily. For USB_RX_EARLY_TIMEOUT, we fix it to 128ns. |
| 2820 | */ |
| 2821 | ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_TIMEOUT, |
| 2822 | 128 / 8); |
| 2823 | ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EXTRA_AGGR_TMR, |
| 2824 | ocp_data); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2825 | break; |
| 2826 | |
| 2827 | default: |
| 2828 | break; |
| 2829 | } |
| 2830 | } |
| 2831 | |
| 2832 | static void r8153_set_rx_early_size(struct r8152 *tp) |
| 2833 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 2834 | u32 ocp_data = tp->rx_buf_sz - rx_reserved_size(tp->netdev->mtu); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2835 | |
| 2836 | switch (tp->version) { |
| 2837 | case RTL_VER_03: |
| 2838 | case RTL_VER_04: |
| 2839 | case RTL_VER_05: |
| 2840 | case RTL_VER_06: |
| 2841 | ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE, |
| 2842 | ocp_data / 4); |
| 2843 | break; |
| 2844 | case RTL_VER_08: |
| 2845 | case RTL_VER_09: |
| 2846 | ocp_write_word(tp, MCU_TYPE_USB, USB_RX_EARLY_SIZE, |
| 2847 | ocp_data / 8); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2848 | break; |
| 2849 | default: |
| 2850 | WARN_ON_ONCE(1); |
| 2851 | break; |
| 2852 | } |
| 2853 | } |
| 2854 | |
| 2855 | static int rtl8153_enable(struct r8152 *tp) |
| 2856 | { |
| 2857 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 2858 | return -ENODEV; |
| 2859 | |
| 2860 | set_tx_qlen(tp); |
| 2861 | rtl_set_eee_plus(tp); |
| 2862 | r8153_set_rx_early_timeout(tp); |
| 2863 | r8153_set_rx_early_size(tp); |
| 2864 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 2865 | if (tp->version == RTL_VER_09) { |
| 2866 | u32 ocp_data; |
| 2867 | |
| 2868 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_TASK); |
| 2869 | ocp_data &= ~FC_PATCH_TASK; |
| 2870 | ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data); |
| 2871 | usleep_range(1000, 2000); |
| 2872 | ocp_data |= FC_PATCH_TASK; |
| 2873 | ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data); |
| 2874 | } |
| 2875 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2876 | return rtl_enable(tp); |
| 2877 | } |
| 2878 | |
| 2879 | static void rtl_disable(struct r8152 *tp) |
| 2880 | { |
| 2881 | u32 ocp_data; |
| 2882 | int i; |
| 2883 | |
| 2884 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) { |
| 2885 | rtl_drop_queued_tx(tp); |
| 2886 | return; |
| 2887 | } |
| 2888 | |
| 2889 | ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR); |
| 2890 | ocp_data &= ~RCR_ACPT_ALL; |
| 2891 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data); |
| 2892 | |
| 2893 | rtl_drop_queued_tx(tp); |
| 2894 | |
| 2895 | for (i = 0; i < RTL8152_MAX_TX; i++) |
| 2896 | usb_kill_urb(tp->tx_info[i].urb); |
| 2897 | |
| 2898 | rxdy_gated_en(tp, true); |
| 2899 | |
| 2900 | for (i = 0; i < 1000; i++) { |
| 2901 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); |
| 2902 | if ((ocp_data & FIFO_EMPTY) == FIFO_EMPTY) |
| 2903 | break; |
| 2904 | usleep_range(1000, 2000); |
| 2905 | } |
| 2906 | |
| 2907 | for (i = 0; i < 1000; i++) { |
| 2908 | if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0) & TCR0_TX_EMPTY) |
| 2909 | break; |
| 2910 | usleep_range(1000, 2000); |
| 2911 | } |
| 2912 | |
| 2913 | rtl_stop_rx(tp); |
| 2914 | |
| 2915 | rtl8152_nic_reset(tp); |
| 2916 | } |
| 2917 | |
| 2918 | static void r8152_power_cut_en(struct r8152 *tp, bool enable) |
| 2919 | { |
| 2920 | u32 ocp_data; |
| 2921 | |
| 2922 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CTRL); |
| 2923 | if (enable) |
| 2924 | ocp_data |= POWER_CUT; |
| 2925 | else |
| 2926 | ocp_data &= ~POWER_CUT; |
| 2927 | ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CTRL, ocp_data); |
| 2928 | |
| 2929 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS); |
| 2930 | ocp_data &= ~RESUME_INDICATE; |
| 2931 | ocp_write_word(tp, MCU_TYPE_USB, USB_PM_CTRL_STATUS, ocp_data); |
| 2932 | } |
| 2933 | |
| 2934 | static void rtl_rx_vlan_en(struct r8152 *tp, bool enable) |
| 2935 | { |
| 2936 | u32 ocp_data; |
| 2937 | |
| 2938 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CPCR); |
| 2939 | if (enable) |
| 2940 | ocp_data |= CPCR_RX_VLAN; |
| 2941 | else |
| 2942 | ocp_data &= ~CPCR_RX_VLAN; |
| 2943 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_CPCR, ocp_data); |
| 2944 | } |
| 2945 | |
| 2946 | static int rtl8152_set_features(struct net_device *dev, |
| 2947 | netdev_features_t features) |
| 2948 | { |
| 2949 | netdev_features_t changed = features ^ dev->features; |
| 2950 | struct r8152 *tp = netdev_priv(dev); |
| 2951 | int ret; |
| 2952 | |
| 2953 | ret = usb_autopm_get_interface(tp->intf); |
| 2954 | if (ret < 0) |
| 2955 | goto out; |
| 2956 | |
| 2957 | mutex_lock(&tp->control); |
| 2958 | |
| 2959 | if (changed & NETIF_F_HW_VLAN_CTAG_RX) { |
| 2960 | if (features & NETIF_F_HW_VLAN_CTAG_RX) |
| 2961 | rtl_rx_vlan_en(tp, true); |
| 2962 | else |
| 2963 | rtl_rx_vlan_en(tp, false); |
| 2964 | } |
| 2965 | |
| 2966 | mutex_unlock(&tp->control); |
| 2967 | |
| 2968 | usb_autopm_put_interface(tp->intf); |
| 2969 | |
| 2970 | out: |
| 2971 | return ret; |
| 2972 | } |
| 2973 | |
| 2974 | #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST) |
| 2975 | |
| 2976 | static u32 __rtl_get_wol(struct r8152 *tp) |
| 2977 | { |
| 2978 | u32 ocp_data; |
| 2979 | u32 wolopts = 0; |
| 2980 | |
| 2981 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34); |
| 2982 | if (ocp_data & LINK_ON_WAKE_EN) |
| 2983 | wolopts |= WAKE_PHY; |
| 2984 | |
| 2985 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5); |
| 2986 | if (ocp_data & UWF_EN) |
| 2987 | wolopts |= WAKE_UCAST; |
| 2988 | if (ocp_data & BWF_EN) |
| 2989 | wolopts |= WAKE_BCAST; |
| 2990 | if (ocp_data & MWF_EN) |
| 2991 | wolopts |= WAKE_MCAST; |
| 2992 | |
| 2993 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL); |
| 2994 | if (ocp_data & MAGIC_EN) |
| 2995 | wolopts |= WAKE_MAGIC; |
| 2996 | |
| 2997 | return wolopts; |
| 2998 | } |
| 2999 | |
| 3000 | static void __rtl_set_wol(struct r8152 *tp, u32 wolopts) |
| 3001 | { |
| 3002 | u32 ocp_data; |
| 3003 | |
| 3004 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG); |
| 3005 | |
| 3006 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34); |
| 3007 | ocp_data &= ~LINK_ON_WAKE_EN; |
| 3008 | if (wolopts & WAKE_PHY) |
| 3009 | ocp_data |= LINK_ON_WAKE_EN; |
| 3010 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data); |
| 3011 | |
| 3012 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG5); |
| 3013 | ocp_data &= ~(UWF_EN | BWF_EN | MWF_EN); |
| 3014 | if (wolopts & WAKE_UCAST) |
| 3015 | ocp_data |= UWF_EN; |
| 3016 | if (wolopts & WAKE_BCAST) |
| 3017 | ocp_data |= BWF_EN; |
| 3018 | if (wolopts & WAKE_MCAST) |
| 3019 | ocp_data |= MWF_EN; |
| 3020 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG5, ocp_data); |
| 3021 | |
| 3022 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML); |
| 3023 | |
| 3024 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL); |
| 3025 | ocp_data &= ~MAGIC_EN; |
| 3026 | if (wolopts & WAKE_MAGIC) |
| 3027 | ocp_data |= MAGIC_EN; |
| 3028 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_CFG_WOL, ocp_data); |
| 3029 | |
| 3030 | if (wolopts & WAKE_ANY) |
| 3031 | device_set_wakeup_enable(&tp->udev->dev, true); |
| 3032 | else |
| 3033 | device_set_wakeup_enable(&tp->udev->dev, false); |
| 3034 | } |
| 3035 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3036 | static void r8153_u1u2en(struct r8152 *tp, bool enable) |
| 3037 | { |
| 3038 | u8 u1u2[8]; |
| 3039 | |
| 3040 | if (enable) |
| 3041 | memset(u1u2, 0xff, sizeof(u1u2)); |
| 3042 | else |
| 3043 | memset(u1u2, 0x00, sizeof(u1u2)); |
| 3044 | |
| 3045 | usb_ocp_write(tp, USB_TOLERANCE, BYTE_EN_SIX_BYTES, sizeof(u1u2), u1u2); |
| 3046 | } |
| 3047 | |
| 3048 | static void r8153b_u1u2en(struct r8152 *tp, bool enable) |
| 3049 | { |
| 3050 | u32 ocp_data; |
| 3051 | |
| 3052 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_LPM_CONFIG); |
| 3053 | if (enable) |
| 3054 | ocp_data |= LPM_U1U2_EN; |
| 3055 | else |
| 3056 | ocp_data &= ~LPM_U1U2_EN; |
| 3057 | |
| 3058 | ocp_write_word(tp, MCU_TYPE_USB, USB_LPM_CONFIG, ocp_data); |
| 3059 | } |
| 3060 | |
| 3061 | static void r8153_u2p3en(struct r8152 *tp, bool enable) |
| 3062 | { |
| 3063 | u32 ocp_data; |
| 3064 | |
| 3065 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL); |
| 3066 | if (enable) |
| 3067 | ocp_data |= U2P3_ENABLE; |
| 3068 | else |
| 3069 | ocp_data &= ~U2P3_ENABLE; |
| 3070 | ocp_write_word(tp, MCU_TYPE_USB, USB_U2P3_CTRL, ocp_data); |
| 3071 | } |
| 3072 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3073 | static void r8153b_ups_flags(struct r8152 *tp) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3074 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3075 | u32 ups_flags = 0; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3076 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3077 | if (tp->ups_info.green) |
| 3078 | ups_flags |= UPS_FLAGS_EN_GREEN; |
| 3079 | |
| 3080 | if (tp->ups_info.aldps) |
| 3081 | ups_flags |= UPS_FLAGS_EN_ALDPS; |
| 3082 | |
| 3083 | if (tp->ups_info.eee) |
| 3084 | ups_flags |= UPS_FLAGS_EN_EEE; |
| 3085 | |
| 3086 | if (tp->ups_info.flow_control) |
| 3087 | ups_flags |= UPS_FLAGS_EN_FLOW_CTR; |
| 3088 | |
| 3089 | if (tp->ups_info.eee_ckdiv) |
| 3090 | ups_flags |= UPS_FLAGS_EN_EEE_CKDIV; |
| 3091 | |
| 3092 | if (tp->ups_info.eee_cmod_lv) |
| 3093 | ups_flags |= UPS_FLAGS_EEE_CMOD_LV_EN; |
| 3094 | |
| 3095 | if (tp->ups_info._10m_ckdiv) |
| 3096 | ups_flags |= UPS_FLAGS_EN_10M_CKDIV; |
| 3097 | |
| 3098 | if (tp->ups_info.eee_plloff_100) |
| 3099 | ups_flags |= UPS_FLAGS_EEE_PLLOFF_100; |
| 3100 | |
| 3101 | if (tp->ups_info.eee_plloff_giga) |
| 3102 | ups_flags |= UPS_FLAGS_EEE_PLLOFF_GIGA; |
| 3103 | |
| 3104 | if (tp->ups_info._250m_ckdiv) |
| 3105 | ups_flags |= UPS_FLAGS_250M_CKDIV; |
| 3106 | |
| 3107 | if (tp->ups_info.ctap_short_off) |
| 3108 | ups_flags |= UPS_FLAGS_CTAP_SHORT_DIS; |
| 3109 | |
| 3110 | switch (tp->ups_info.speed_duplex) { |
| 3111 | case NWAY_10M_HALF: |
| 3112 | ups_flags |= ups_flags_speed(1); |
| 3113 | break; |
| 3114 | case NWAY_10M_FULL: |
| 3115 | ups_flags |= ups_flags_speed(2); |
| 3116 | break; |
| 3117 | case NWAY_100M_HALF: |
| 3118 | ups_flags |= ups_flags_speed(3); |
| 3119 | break; |
| 3120 | case NWAY_100M_FULL: |
| 3121 | ups_flags |= ups_flags_speed(4); |
| 3122 | break; |
| 3123 | case NWAY_1000M_FULL: |
| 3124 | ups_flags |= ups_flags_speed(5); |
| 3125 | break; |
| 3126 | case FORCE_10M_HALF: |
| 3127 | ups_flags |= ups_flags_speed(6); |
| 3128 | break; |
| 3129 | case FORCE_10M_FULL: |
| 3130 | ups_flags |= ups_flags_speed(7); |
| 3131 | break; |
| 3132 | case FORCE_100M_HALF: |
| 3133 | ups_flags |= ups_flags_speed(8); |
| 3134 | break; |
| 3135 | case FORCE_100M_FULL: |
| 3136 | ups_flags |= ups_flags_speed(9); |
| 3137 | break; |
| 3138 | default: |
| 3139 | break; |
| 3140 | } |
| 3141 | |
| 3142 | ocp_write_dword(tp, MCU_TYPE_USB, USB_UPS_FLAGS, ups_flags); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3143 | } |
| 3144 | |
| 3145 | static void r8153b_green_en(struct r8152 *tp, bool enable) |
| 3146 | { |
| 3147 | u16 data; |
| 3148 | |
| 3149 | if (enable) { |
| 3150 | sram_write(tp, 0x8045, 0); /* 10M abiq&ldvbias */ |
| 3151 | sram_write(tp, 0x804d, 0x1222); /* 100M short abiq&ldvbias */ |
| 3152 | sram_write(tp, 0x805d, 0x0022); /* 1000M short abiq&ldvbias */ |
| 3153 | } else { |
| 3154 | sram_write(tp, 0x8045, 0x2444); /* 10M abiq&ldvbias */ |
| 3155 | sram_write(tp, 0x804d, 0x2444); /* 100M short abiq&ldvbias */ |
| 3156 | sram_write(tp, 0x805d, 0x2444); /* 1000M short abiq&ldvbias */ |
| 3157 | } |
| 3158 | |
| 3159 | data = sram_read(tp, SRAM_GREEN_CFG); |
| 3160 | data |= GREEN_ETH_EN; |
| 3161 | sram_write(tp, SRAM_GREEN_CFG, data); |
| 3162 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3163 | tp->ups_info.green = enable; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3164 | } |
| 3165 | |
| 3166 | static u16 r8153_phy_status(struct r8152 *tp, u16 desired) |
| 3167 | { |
| 3168 | u16 data; |
| 3169 | int i; |
| 3170 | |
| 3171 | for (i = 0; i < 500; i++) { |
| 3172 | data = ocp_reg_read(tp, OCP_PHY_STATUS); |
| 3173 | data &= PHY_STAT_MASK; |
| 3174 | if (desired) { |
| 3175 | if (data == desired) |
| 3176 | break; |
| 3177 | } else if (data == PHY_STAT_LAN_ON || data == PHY_STAT_PWRDN || |
| 3178 | data == PHY_STAT_EXT_INIT) { |
| 3179 | break; |
| 3180 | } |
| 3181 | |
| 3182 | msleep(20); |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 3183 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 3184 | break; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3185 | } |
| 3186 | |
| 3187 | return data; |
| 3188 | } |
| 3189 | |
| 3190 | static void r8153b_ups_en(struct r8152 *tp, bool enable) |
| 3191 | { |
| 3192 | u32 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_POWER_CUT); |
| 3193 | |
| 3194 | if (enable) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3195 | r8153b_ups_flags(tp); |
| 3196 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3197 | ocp_data |= UPS_EN | USP_PREWAKE | PHASE2_EN; |
| 3198 | ocp_write_byte(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data); |
| 3199 | |
| 3200 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, 0xcfff); |
| 3201 | ocp_data |= BIT(0); |
| 3202 | ocp_write_byte(tp, MCU_TYPE_USB, 0xcfff, ocp_data); |
| 3203 | } else { |
| 3204 | u16 data; |
| 3205 | |
| 3206 | ocp_data &= ~(UPS_EN | USP_PREWAKE); |
| 3207 | ocp_write_byte(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data); |
| 3208 | |
| 3209 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, 0xcfff); |
| 3210 | ocp_data &= ~BIT(0); |
| 3211 | ocp_write_byte(tp, MCU_TYPE_USB, 0xcfff, ocp_data); |
| 3212 | |
| 3213 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0); |
| 3214 | ocp_data &= ~PCUT_STATUS; |
| 3215 | ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data); |
| 3216 | |
| 3217 | data = r8153_phy_status(tp, 0); |
| 3218 | |
| 3219 | switch (data) { |
| 3220 | case PHY_STAT_PWRDN: |
| 3221 | case PHY_STAT_EXT_INIT: |
| 3222 | r8153b_green_en(tp, |
| 3223 | test_bit(GREEN_ETHERNET, &tp->flags)); |
| 3224 | |
| 3225 | data = r8152_mdio_read(tp, MII_BMCR); |
| 3226 | data &= ~BMCR_PDOWN; |
| 3227 | data |= BMCR_RESET; |
| 3228 | r8152_mdio_write(tp, MII_BMCR, data); |
| 3229 | |
| 3230 | data = r8153_phy_status(tp, PHY_STAT_LAN_ON); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 3231 | fallthrough; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3232 | |
| 3233 | default: |
| 3234 | if (data != PHY_STAT_LAN_ON) |
| 3235 | netif_warn(tp, link, tp->netdev, |
| 3236 | "PHY not ready"); |
| 3237 | break; |
| 3238 | } |
| 3239 | } |
| 3240 | } |
| 3241 | |
| 3242 | static void r8153_power_cut_en(struct r8152 *tp, bool enable) |
| 3243 | { |
| 3244 | u32 ocp_data; |
| 3245 | |
| 3246 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT); |
| 3247 | if (enable) |
| 3248 | ocp_data |= PWR_EN | PHASE2_EN; |
| 3249 | else |
| 3250 | ocp_data &= ~(PWR_EN | PHASE2_EN); |
| 3251 | ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data); |
| 3252 | |
| 3253 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0); |
| 3254 | ocp_data &= ~PCUT_STATUS; |
| 3255 | ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data); |
| 3256 | } |
| 3257 | |
| 3258 | static void r8153b_power_cut_en(struct r8152 *tp, bool enable) |
| 3259 | { |
| 3260 | u32 ocp_data; |
| 3261 | |
| 3262 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_POWER_CUT); |
| 3263 | if (enable) |
| 3264 | ocp_data |= PWR_EN | PHASE2_EN; |
| 3265 | else |
| 3266 | ocp_data &= ~PWR_EN; |
| 3267 | ocp_write_word(tp, MCU_TYPE_USB, USB_POWER_CUT, ocp_data); |
| 3268 | |
| 3269 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_MISC_0); |
| 3270 | ocp_data &= ~PCUT_STATUS; |
| 3271 | ocp_write_word(tp, MCU_TYPE_USB, USB_MISC_0, ocp_data); |
| 3272 | } |
| 3273 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3274 | static void r8153_queue_wake(struct r8152 *tp, bool enable) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3275 | { |
| 3276 | u32 ocp_data; |
| 3277 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3278 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_INDICATE_FALG); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3279 | if (enable) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3280 | ocp_data |= UPCOMING_RUNTIME_D3; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3281 | else |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3282 | ocp_data &= ~UPCOMING_RUNTIME_D3; |
| 3283 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_INDICATE_FALG, ocp_data); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3284 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3285 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_SUSPEND_FLAG); |
| 3286 | ocp_data &= ~LINK_CHG_EVENT; |
| 3287 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_SUSPEND_FLAG, ocp_data); |
| 3288 | |
| 3289 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS); |
| 3290 | ocp_data &= ~LINK_CHANGE_FLAG; |
| 3291 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, ocp_data); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3292 | } |
| 3293 | |
| 3294 | static bool rtl_can_wakeup(struct r8152 *tp) |
| 3295 | { |
| 3296 | struct usb_device *udev = tp->udev; |
| 3297 | |
| 3298 | return (udev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_WAKEUP); |
| 3299 | } |
| 3300 | |
| 3301 | static void rtl_runtime_suspend_enable(struct r8152 *tp, bool enable) |
| 3302 | { |
| 3303 | if (enable) { |
| 3304 | u32 ocp_data; |
| 3305 | |
| 3306 | __rtl_set_wol(tp, WAKE_ANY); |
| 3307 | |
| 3308 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG); |
| 3309 | |
| 3310 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34); |
| 3311 | ocp_data |= LINK_OFF_WAKE_EN; |
| 3312 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data); |
| 3313 | |
| 3314 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML); |
| 3315 | } else { |
| 3316 | u32 ocp_data; |
| 3317 | |
| 3318 | __rtl_set_wol(tp, tp->saved_wolopts); |
| 3319 | |
| 3320 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_CONFIG); |
| 3321 | |
| 3322 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_CONFIG34); |
| 3323 | ocp_data &= ~LINK_OFF_WAKE_EN; |
| 3324 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_CONFIG34, ocp_data); |
| 3325 | |
| 3326 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML); |
| 3327 | } |
| 3328 | } |
| 3329 | |
| 3330 | static void rtl8153_runtime_enable(struct r8152 *tp, bool enable) |
| 3331 | { |
| 3332 | if (enable) { |
| 3333 | r8153_u1u2en(tp, false); |
| 3334 | r8153_u2p3en(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3335 | rtl_runtime_suspend_enable(tp, true); |
| 3336 | } else { |
| 3337 | rtl_runtime_suspend_enable(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3338 | |
| 3339 | switch (tp->version) { |
| 3340 | case RTL_VER_03: |
| 3341 | case RTL_VER_04: |
| 3342 | break; |
| 3343 | case RTL_VER_05: |
| 3344 | case RTL_VER_06: |
| 3345 | default: |
| 3346 | r8153_u2p3en(tp, true); |
| 3347 | break; |
| 3348 | } |
| 3349 | |
| 3350 | r8153_u1u2en(tp, true); |
| 3351 | } |
| 3352 | } |
| 3353 | |
| 3354 | static void rtl8153b_runtime_enable(struct r8152 *tp, bool enable) |
| 3355 | { |
| 3356 | if (enable) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3357 | r8153_queue_wake(tp, true); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3358 | r8153b_u1u2en(tp, false); |
| 3359 | r8153_u2p3en(tp, false); |
| 3360 | rtl_runtime_suspend_enable(tp, true); |
| 3361 | r8153b_ups_en(tp, true); |
| 3362 | } else { |
| 3363 | r8153b_ups_en(tp, false); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 3364 | r8153_queue_wake(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3365 | rtl_runtime_suspend_enable(tp, false); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 3366 | if (tp->udev->speed != USB_SPEED_HIGH) |
| 3367 | r8153b_u1u2en(tp, true); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 3368 | } |
| 3369 | } |
| 3370 | |
| 3371 | static void r8153_teredo_off(struct r8152 *tp) |
| 3372 | { |
| 3373 | u32 ocp_data; |
| 3374 | |
| 3375 | switch (tp->version) { |
| 3376 | case RTL_VER_01: |
| 3377 | case RTL_VER_02: |
| 3378 | case RTL_VER_03: |
| 3379 | case RTL_VER_04: |
| 3380 | case RTL_VER_05: |
| 3381 | case RTL_VER_06: |
| 3382 | case RTL_VER_07: |
| 3383 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG); |
| 3384 | ocp_data &= ~(TEREDO_SEL | TEREDO_RS_EVENT_MASK | |
| 3385 | OOB_TEREDO_EN); |
| 3386 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data); |
| 3387 | break; |
| 3388 | |
| 3389 | case RTL_VER_08: |
| 3390 | case RTL_VER_09: |
| 3391 | /* The bit 0 ~ 7 are relative with teredo settings. They are |
| 3392 | * W1C (write 1 to clear), so set all 1 to disable it. |
| 3393 | */ |
| 3394 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, 0xff); |
| 3395 | break; |
| 3396 | |
| 3397 | default: |
| 3398 | break; |
| 3399 | } |
| 3400 | |
| 3401 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_WDT6_CTRL, WDT6_SET_MODE); |
| 3402 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_REALWOW_TIMER, 0); |
| 3403 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TEREDO_TIMER, 0); |
| 3404 | } |
| 3405 | |
| 3406 | static void rtl_reset_bmu(struct r8152 *tp) |
| 3407 | { |
| 3408 | u32 ocp_data; |
| 3409 | |
| 3410 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_BMU_RESET); |
| 3411 | ocp_data &= ~(BMU_RESET_EP_IN | BMU_RESET_EP_OUT); |
| 3412 | ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data); |
| 3413 | ocp_data |= BMU_RESET_EP_IN | BMU_RESET_EP_OUT; |
| 3414 | ocp_write_byte(tp, MCU_TYPE_USB, USB_BMU_RESET, ocp_data); |
| 3415 | } |
| 3416 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 3417 | /* Clear the bp to stop the firmware before loading a new one */ |
| 3418 | static void rtl_clear_bp(struct r8152 *tp, u16 type) |
| 3419 | { |
| 3420 | switch (tp->version) { |
| 3421 | case RTL_VER_01: |
| 3422 | case RTL_VER_02: |
| 3423 | case RTL_VER_07: |
| 3424 | break; |
| 3425 | case RTL_VER_03: |
| 3426 | case RTL_VER_04: |
| 3427 | case RTL_VER_05: |
| 3428 | case RTL_VER_06: |
| 3429 | ocp_write_byte(tp, type, PLA_BP_EN, 0); |
| 3430 | break; |
| 3431 | case RTL_VER_08: |
| 3432 | case RTL_VER_09: |
| 3433 | default: |
| 3434 | if (type == MCU_TYPE_USB) { |
| 3435 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP2_EN, 0); |
| 3436 | |
| 3437 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP_8, 0); |
| 3438 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP_9, 0); |
| 3439 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP_10, 0); |
| 3440 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP_11, 0); |
| 3441 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP_12, 0); |
| 3442 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP_13, 0); |
| 3443 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP_14, 0); |
| 3444 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP_15, 0); |
| 3445 | } else { |
| 3446 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_BP_EN, 0); |
| 3447 | } |
| 3448 | break; |
| 3449 | } |
| 3450 | |
| 3451 | ocp_write_word(tp, type, PLA_BP_0, 0); |
| 3452 | ocp_write_word(tp, type, PLA_BP_1, 0); |
| 3453 | ocp_write_word(tp, type, PLA_BP_2, 0); |
| 3454 | ocp_write_word(tp, type, PLA_BP_3, 0); |
| 3455 | ocp_write_word(tp, type, PLA_BP_4, 0); |
| 3456 | ocp_write_word(tp, type, PLA_BP_5, 0); |
| 3457 | ocp_write_word(tp, type, PLA_BP_6, 0); |
| 3458 | ocp_write_word(tp, type, PLA_BP_7, 0); |
| 3459 | |
| 3460 | /* wait 3 ms to make sure the firmware is stopped */ |
| 3461 | usleep_range(3000, 6000); |
| 3462 | ocp_write_word(tp, type, PLA_BP_BA, 0); |
| 3463 | } |
| 3464 | |
| 3465 | static int r8153_patch_request(struct r8152 *tp, bool request) |
| 3466 | { |
| 3467 | u16 data; |
| 3468 | int i; |
| 3469 | |
| 3470 | data = ocp_reg_read(tp, OCP_PHY_PATCH_CMD); |
| 3471 | if (request) |
| 3472 | data |= PATCH_REQUEST; |
| 3473 | else |
| 3474 | data &= ~PATCH_REQUEST; |
| 3475 | ocp_reg_write(tp, OCP_PHY_PATCH_CMD, data); |
| 3476 | |
| 3477 | for (i = 0; request && i < 5000; i++) { |
| 3478 | usleep_range(1000, 2000); |
| 3479 | if (ocp_reg_read(tp, OCP_PHY_PATCH_STAT) & PATCH_READY) |
| 3480 | break; |
| 3481 | } |
| 3482 | |
| 3483 | if (request && !(ocp_reg_read(tp, OCP_PHY_PATCH_STAT) & PATCH_READY)) { |
| 3484 | netif_err(tp, drv, tp->netdev, "patch request fail\n"); |
| 3485 | r8153_patch_request(tp, false); |
| 3486 | return -ETIME; |
| 3487 | } else { |
| 3488 | return 0; |
| 3489 | } |
| 3490 | } |
| 3491 | |
| 3492 | static int r8153_pre_ram_code(struct r8152 *tp, u16 key_addr, u16 patch_key) |
| 3493 | { |
| 3494 | if (r8153_patch_request(tp, true)) { |
| 3495 | dev_err(&tp->intf->dev, "patch request fail\n"); |
| 3496 | return -ETIME; |
| 3497 | } |
| 3498 | |
| 3499 | sram_write(tp, key_addr, patch_key); |
| 3500 | sram_write(tp, SRAM_PHY_LOCK, PHY_PATCH_LOCK); |
| 3501 | |
| 3502 | return 0; |
| 3503 | } |
| 3504 | |
| 3505 | static int r8153_post_ram_code(struct r8152 *tp, u16 key_addr) |
| 3506 | { |
| 3507 | u16 data; |
| 3508 | |
| 3509 | sram_write(tp, 0x0000, 0x0000); |
| 3510 | |
| 3511 | data = ocp_reg_read(tp, OCP_PHY_LOCK); |
| 3512 | data &= ~PATCH_LOCK; |
| 3513 | ocp_reg_write(tp, OCP_PHY_LOCK, data); |
| 3514 | |
| 3515 | sram_write(tp, key_addr, 0x0000); |
| 3516 | |
| 3517 | r8153_patch_request(tp, false); |
| 3518 | |
| 3519 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, tp->ocp_base); |
| 3520 | |
| 3521 | return 0; |
| 3522 | } |
| 3523 | |
| 3524 | static bool rtl8152_is_fw_phy_nc_ok(struct r8152 *tp, struct fw_phy_nc *phy) |
| 3525 | { |
| 3526 | u32 length; |
| 3527 | u16 fw_offset, fw_reg, ba_reg, patch_en_addr, mode_reg, bp_start; |
| 3528 | bool rc = false; |
| 3529 | |
| 3530 | switch (tp->version) { |
| 3531 | case RTL_VER_04: |
| 3532 | case RTL_VER_05: |
| 3533 | case RTL_VER_06: |
| 3534 | fw_reg = 0xa014; |
| 3535 | ba_reg = 0xa012; |
| 3536 | patch_en_addr = 0xa01a; |
| 3537 | mode_reg = 0xb820; |
| 3538 | bp_start = 0xa000; |
| 3539 | break; |
| 3540 | default: |
| 3541 | goto out; |
| 3542 | } |
| 3543 | |
| 3544 | fw_offset = __le16_to_cpu(phy->fw_offset); |
| 3545 | if (fw_offset < sizeof(*phy)) { |
| 3546 | dev_err(&tp->intf->dev, "fw_offset too small\n"); |
| 3547 | goto out; |
| 3548 | } |
| 3549 | |
| 3550 | length = __le32_to_cpu(phy->blk_hdr.length); |
| 3551 | if (length < fw_offset) { |
| 3552 | dev_err(&tp->intf->dev, "invalid fw_offset\n"); |
| 3553 | goto out; |
| 3554 | } |
| 3555 | |
| 3556 | length -= __le16_to_cpu(phy->fw_offset); |
| 3557 | if (!length || (length & 1)) { |
| 3558 | dev_err(&tp->intf->dev, "invalid block length\n"); |
| 3559 | goto out; |
| 3560 | } |
| 3561 | |
| 3562 | if (__le16_to_cpu(phy->fw_reg) != fw_reg) { |
| 3563 | dev_err(&tp->intf->dev, "invalid register to load firmware\n"); |
| 3564 | goto out; |
| 3565 | } |
| 3566 | |
| 3567 | if (__le16_to_cpu(phy->ba_reg) != ba_reg) { |
| 3568 | dev_err(&tp->intf->dev, "invalid base address register\n"); |
| 3569 | goto out; |
| 3570 | } |
| 3571 | |
| 3572 | if (__le16_to_cpu(phy->patch_en_addr) != patch_en_addr) { |
| 3573 | dev_err(&tp->intf->dev, |
| 3574 | "invalid patch mode enabled register\n"); |
| 3575 | goto out; |
| 3576 | } |
| 3577 | |
| 3578 | if (__le16_to_cpu(phy->mode_reg) != mode_reg) { |
| 3579 | dev_err(&tp->intf->dev, |
| 3580 | "invalid register to switch the mode\n"); |
| 3581 | goto out; |
| 3582 | } |
| 3583 | |
| 3584 | if (__le16_to_cpu(phy->bp_start) != bp_start) { |
| 3585 | dev_err(&tp->intf->dev, |
| 3586 | "invalid start register of break point\n"); |
| 3587 | goto out; |
| 3588 | } |
| 3589 | |
| 3590 | if (__le16_to_cpu(phy->bp_num) > 4) { |
| 3591 | dev_err(&tp->intf->dev, "invalid break point number\n"); |
| 3592 | goto out; |
| 3593 | } |
| 3594 | |
| 3595 | rc = true; |
| 3596 | out: |
| 3597 | return rc; |
| 3598 | } |
| 3599 | |
| 3600 | static bool rtl8152_is_fw_mac_ok(struct r8152 *tp, struct fw_mac *mac) |
| 3601 | { |
| 3602 | u16 fw_reg, bp_ba_addr, bp_en_addr, bp_start, fw_offset; |
| 3603 | bool rc = false; |
| 3604 | u32 length, type; |
| 3605 | int i, max_bp; |
| 3606 | |
| 3607 | type = __le32_to_cpu(mac->blk_hdr.type); |
| 3608 | if (type == RTL_FW_PLA) { |
| 3609 | switch (tp->version) { |
| 3610 | case RTL_VER_01: |
| 3611 | case RTL_VER_02: |
| 3612 | case RTL_VER_07: |
| 3613 | fw_reg = 0xf800; |
| 3614 | bp_ba_addr = PLA_BP_BA; |
| 3615 | bp_en_addr = 0; |
| 3616 | bp_start = PLA_BP_0; |
| 3617 | max_bp = 8; |
| 3618 | break; |
| 3619 | case RTL_VER_03: |
| 3620 | case RTL_VER_04: |
| 3621 | case RTL_VER_05: |
| 3622 | case RTL_VER_06: |
| 3623 | case RTL_VER_08: |
| 3624 | case RTL_VER_09: |
| 3625 | fw_reg = 0xf800; |
| 3626 | bp_ba_addr = PLA_BP_BA; |
| 3627 | bp_en_addr = PLA_BP_EN; |
| 3628 | bp_start = PLA_BP_0; |
| 3629 | max_bp = 8; |
| 3630 | break; |
| 3631 | default: |
| 3632 | goto out; |
| 3633 | } |
| 3634 | } else if (type == RTL_FW_USB) { |
| 3635 | switch (tp->version) { |
| 3636 | case RTL_VER_03: |
| 3637 | case RTL_VER_04: |
| 3638 | case RTL_VER_05: |
| 3639 | case RTL_VER_06: |
| 3640 | fw_reg = 0xf800; |
| 3641 | bp_ba_addr = USB_BP_BA; |
| 3642 | bp_en_addr = USB_BP_EN; |
| 3643 | bp_start = USB_BP_0; |
| 3644 | max_bp = 8; |
| 3645 | break; |
| 3646 | case RTL_VER_08: |
| 3647 | case RTL_VER_09: |
| 3648 | fw_reg = 0xe600; |
| 3649 | bp_ba_addr = USB_BP_BA; |
| 3650 | bp_en_addr = USB_BP2_EN; |
| 3651 | bp_start = USB_BP_0; |
| 3652 | max_bp = 16; |
| 3653 | break; |
| 3654 | case RTL_VER_01: |
| 3655 | case RTL_VER_02: |
| 3656 | case RTL_VER_07: |
| 3657 | default: |
| 3658 | goto out; |
| 3659 | } |
| 3660 | } else { |
| 3661 | goto out; |
| 3662 | } |
| 3663 | |
| 3664 | fw_offset = __le16_to_cpu(mac->fw_offset); |
| 3665 | if (fw_offset < sizeof(*mac)) { |
| 3666 | dev_err(&tp->intf->dev, "fw_offset too small\n"); |
| 3667 | goto out; |
| 3668 | } |
| 3669 | |
| 3670 | length = __le32_to_cpu(mac->blk_hdr.length); |
| 3671 | if (length < fw_offset) { |
| 3672 | dev_err(&tp->intf->dev, "invalid fw_offset\n"); |
| 3673 | goto out; |
| 3674 | } |
| 3675 | |
| 3676 | length -= fw_offset; |
| 3677 | if (length < 4 || (length & 3)) { |
| 3678 | dev_err(&tp->intf->dev, "invalid block length\n"); |
| 3679 | goto out; |
| 3680 | } |
| 3681 | |
| 3682 | if (__le16_to_cpu(mac->fw_reg) != fw_reg) { |
| 3683 | dev_err(&tp->intf->dev, "invalid register to load firmware\n"); |
| 3684 | goto out; |
| 3685 | } |
| 3686 | |
| 3687 | if (__le16_to_cpu(mac->bp_ba_addr) != bp_ba_addr) { |
| 3688 | dev_err(&tp->intf->dev, "invalid base address register\n"); |
| 3689 | goto out; |
| 3690 | } |
| 3691 | |
| 3692 | if (__le16_to_cpu(mac->bp_en_addr) != bp_en_addr) { |
| 3693 | dev_err(&tp->intf->dev, "invalid enabled mask register\n"); |
| 3694 | goto out; |
| 3695 | } |
| 3696 | |
| 3697 | if (__le16_to_cpu(mac->bp_start) != bp_start) { |
| 3698 | dev_err(&tp->intf->dev, |
| 3699 | "invalid start register of break point\n"); |
| 3700 | goto out; |
| 3701 | } |
| 3702 | |
| 3703 | if (__le16_to_cpu(mac->bp_num) > max_bp) { |
| 3704 | dev_err(&tp->intf->dev, "invalid break point number\n"); |
| 3705 | goto out; |
| 3706 | } |
| 3707 | |
| 3708 | for (i = __le16_to_cpu(mac->bp_num); i < max_bp; i++) { |
| 3709 | if (mac->bp[i]) { |
| 3710 | dev_err(&tp->intf->dev, "unused bp%u is not zero\n", i); |
| 3711 | goto out; |
| 3712 | } |
| 3713 | } |
| 3714 | |
| 3715 | rc = true; |
| 3716 | out: |
| 3717 | return rc; |
| 3718 | } |
| 3719 | |
| 3720 | /* Verify the checksum for the firmware file. It is calculated from the version |
| 3721 | * field to the end of the file. Compare the result with the checksum field to |
| 3722 | * make sure the file is correct. |
| 3723 | */ |
| 3724 | static long rtl8152_fw_verify_checksum(struct r8152 *tp, |
| 3725 | struct fw_header *fw_hdr, size_t size) |
| 3726 | { |
| 3727 | unsigned char checksum[sizeof(fw_hdr->checksum)]; |
| 3728 | struct crypto_shash *alg; |
| 3729 | struct shash_desc *sdesc; |
| 3730 | size_t len; |
| 3731 | long rc; |
| 3732 | |
| 3733 | alg = crypto_alloc_shash("sha256", 0, 0); |
| 3734 | if (IS_ERR(alg)) { |
| 3735 | rc = PTR_ERR(alg); |
| 3736 | goto out; |
| 3737 | } |
| 3738 | |
| 3739 | if (crypto_shash_digestsize(alg) != sizeof(fw_hdr->checksum)) { |
| 3740 | rc = -EFAULT; |
| 3741 | dev_err(&tp->intf->dev, "digestsize incorrect (%u)\n", |
| 3742 | crypto_shash_digestsize(alg)); |
| 3743 | goto free_shash; |
| 3744 | } |
| 3745 | |
| 3746 | len = sizeof(*sdesc) + crypto_shash_descsize(alg); |
| 3747 | sdesc = kmalloc(len, GFP_KERNEL); |
| 3748 | if (!sdesc) { |
| 3749 | rc = -ENOMEM; |
| 3750 | goto free_shash; |
| 3751 | } |
| 3752 | sdesc->tfm = alg; |
| 3753 | |
| 3754 | len = size - sizeof(fw_hdr->checksum); |
| 3755 | rc = crypto_shash_digest(sdesc, fw_hdr->version, len, checksum); |
| 3756 | kfree(sdesc); |
| 3757 | if (rc) |
| 3758 | goto free_shash; |
| 3759 | |
| 3760 | if (memcmp(fw_hdr->checksum, checksum, sizeof(fw_hdr->checksum))) { |
| 3761 | dev_err(&tp->intf->dev, "checksum fail\n"); |
| 3762 | rc = -EFAULT; |
| 3763 | } |
| 3764 | |
| 3765 | free_shash: |
| 3766 | crypto_free_shash(alg); |
| 3767 | out: |
| 3768 | return rc; |
| 3769 | } |
| 3770 | |
| 3771 | static long rtl8152_check_firmware(struct r8152 *tp, struct rtl_fw *rtl_fw) |
| 3772 | { |
| 3773 | const struct firmware *fw = rtl_fw->fw; |
| 3774 | struct fw_header *fw_hdr = (struct fw_header *)fw->data; |
| 3775 | struct fw_mac *pla = NULL, *usb = NULL; |
| 3776 | struct fw_phy_patch_key *start = NULL; |
| 3777 | struct fw_phy_nc *phy_nc = NULL; |
| 3778 | struct fw_block *stop = NULL; |
| 3779 | long ret = -EFAULT; |
| 3780 | int i; |
| 3781 | |
| 3782 | if (fw->size < sizeof(*fw_hdr)) { |
| 3783 | dev_err(&tp->intf->dev, "file too small\n"); |
| 3784 | goto fail; |
| 3785 | } |
| 3786 | |
| 3787 | ret = rtl8152_fw_verify_checksum(tp, fw_hdr, fw->size); |
| 3788 | if (ret) |
| 3789 | goto fail; |
| 3790 | |
| 3791 | ret = -EFAULT; |
| 3792 | |
| 3793 | for (i = sizeof(*fw_hdr); i < fw->size;) { |
| 3794 | struct fw_block *block = (struct fw_block *)&fw->data[i]; |
| 3795 | u32 type; |
| 3796 | |
| 3797 | if ((i + sizeof(*block)) > fw->size) |
| 3798 | goto fail; |
| 3799 | |
| 3800 | type = __le32_to_cpu(block->type); |
| 3801 | switch (type) { |
| 3802 | case RTL_FW_END: |
| 3803 | if (__le32_to_cpu(block->length) != sizeof(*block)) |
| 3804 | goto fail; |
| 3805 | goto fw_end; |
| 3806 | case RTL_FW_PLA: |
| 3807 | if (pla) { |
| 3808 | dev_err(&tp->intf->dev, |
| 3809 | "multiple PLA firmware encountered"); |
| 3810 | goto fail; |
| 3811 | } |
| 3812 | |
| 3813 | pla = (struct fw_mac *)block; |
| 3814 | if (!rtl8152_is_fw_mac_ok(tp, pla)) { |
| 3815 | dev_err(&tp->intf->dev, |
| 3816 | "check PLA firmware failed\n"); |
| 3817 | goto fail; |
| 3818 | } |
| 3819 | break; |
| 3820 | case RTL_FW_USB: |
| 3821 | if (usb) { |
| 3822 | dev_err(&tp->intf->dev, |
| 3823 | "multiple USB firmware encountered"); |
| 3824 | goto fail; |
| 3825 | } |
| 3826 | |
| 3827 | usb = (struct fw_mac *)block; |
| 3828 | if (!rtl8152_is_fw_mac_ok(tp, usb)) { |
| 3829 | dev_err(&tp->intf->dev, |
| 3830 | "check USB firmware failed\n"); |
| 3831 | goto fail; |
| 3832 | } |
| 3833 | break; |
| 3834 | case RTL_FW_PHY_START: |
| 3835 | if (start || phy_nc || stop) { |
| 3836 | dev_err(&tp->intf->dev, |
| 3837 | "check PHY_START fail\n"); |
| 3838 | goto fail; |
| 3839 | } |
| 3840 | |
| 3841 | if (__le32_to_cpu(block->length) != sizeof(*start)) { |
| 3842 | dev_err(&tp->intf->dev, |
| 3843 | "Invalid length for PHY_START\n"); |
| 3844 | goto fail; |
| 3845 | } |
| 3846 | |
| 3847 | start = (struct fw_phy_patch_key *)block; |
| 3848 | break; |
| 3849 | case RTL_FW_PHY_STOP: |
| 3850 | if (stop || !start) { |
| 3851 | dev_err(&tp->intf->dev, |
| 3852 | "Check PHY_STOP fail\n"); |
| 3853 | goto fail; |
| 3854 | } |
| 3855 | |
| 3856 | if (__le32_to_cpu(block->length) != sizeof(*block)) { |
| 3857 | dev_err(&tp->intf->dev, |
| 3858 | "Invalid length for PHY_STOP\n"); |
| 3859 | goto fail; |
| 3860 | } |
| 3861 | |
| 3862 | stop = block; |
| 3863 | break; |
| 3864 | case RTL_FW_PHY_NC: |
| 3865 | if (!start || stop) { |
| 3866 | dev_err(&tp->intf->dev, |
| 3867 | "check PHY_NC fail\n"); |
| 3868 | goto fail; |
| 3869 | } |
| 3870 | |
| 3871 | if (phy_nc) { |
| 3872 | dev_err(&tp->intf->dev, |
| 3873 | "multiple PHY NC encountered\n"); |
| 3874 | goto fail; |
| 3875 | } |
| 3876 | |
| 3877 | phy_nc = (struct fw_phy_nc *)block; |
| 3878 | if (!rtl8152_is_fw_phy_nc_ok(tp, phy_nc)) { |
| 3879 | dev_err(&tp->intf->dev, |
| 3880 | "check PHY NC firmware failed\n"); |
| 3881 | goto fail; |
| 3882 | } |
| 3883 | |
| 3884 | break; |
| 3885 | default: |
| 3886 | dev_warn(&tp->intf->dev, "Unknown type %u is found\n", |
| 3887 | type); |
| 3888 | break; |
| 3889 | } |
| 3890 | |
| 3891 | /* next block */ |
| 3892 | i += ALIGN(__le32_to_cpu(block->length), 8); |
| 3893 | } |
| 3894 | |
| 3895 | fw_end: |
| 3896 | if ((phy_nc || start) && !stop) { |
| 3897 | dev_err(&tp->intf->dev, "without PHY_STOP\n"); |
| 3898 | goto fail; |
| 3899 | } |
| 3900 | |
| 3901 | return 0; |
| 3902 | fail: |
| 3903 | return ret; |
| 3904 | } |
| 3905 | |
| 3906 | static void rtl8152_fw_phy_nc_apply(struct r8152 *tp, struct fw_phy_nc *phy) |
| 3907 | { |
| 3908 | u16 mode_reg, bp_index; |
| 3909 | u32 length, i, num; |
| 3910 | __le16 *data; |
| 3911 | |
| 3912 | mode_reg = __le16_to_cpu(phy->mode_reg); |
| 3913 | sram_write(tp, mode_reg, __le16_to_cpu(phy->mode_pre)); |
| 3914 | sram_write(tp, __le16_to_cpu(phy->ba_reg), |
| 3915 | __le16_to_cpu(phy->ba_data)); |
| 3916 | |
| 3917 | length = __le32_to_cpu(phy->blk_hdr.length); |
| 3918 | length -= __le16_to_cpu(phy->fw_offset); |
| 3919 | num = length / 2; |
| 3920 | data = (__le16 *)((u8 *)phy + __le16_to_cpu(phy->fw_offset)); |
| 3921 | |
| 3922 | ocp_reg_write(tp, OCP_SRAM_ADDR, __le16_to_cpu(phy->fw_reg)); |
| 3923 | for (i = 0; i < num; i++) |
| 3924 | ocp_reg_write(tp, OCP_SRAM_DATA, __le16_to_cpu(data[i])); |
| 3925 | |
| 3926 | sram_write(tp, __le16_to_cpu(phy->patch_en_addr), |
| 3927 | __le16_to_cpu(phy->patch_en_value)); |
| 3928 | |
| 3929 | bp_index = __le16_to_cpu(phy->bp_start); |
| 3930 | num = __le16_to_cpu(phy->bp_num); |
| 3931 | for (i = 0; i < num; i++) { |
| 3932 | sram_write(tp, bp_index, __le16_to_cpu(phy->bp[i])); |
| 3933 | bp_index += 2; |
| 3934 | } |
| 3935 | |
| 3936 | sram_write(tp, mode_reg, __le16_to_cpu(phy->mode_post)); |
| 3937 | |
| 3938 | dev_dbg(&tp->intf->dev, "successfully applied %s\n", phy->info); |
| 3939 | } |
| 3940 | |
| 3941 | static void rtl8152_fw_mac_apply(struct r8152 *tp, struct fw_mac *mac) |
| 3942 | { |
| 3943 | u16 bp_en_addr, bp_index, type, bp_num, fw_ver_reg; |
| 3944 | u32 length; |
| 3945 | u8 *data; |
| 3946 | int i; |
| 3947 | |
| 3948 | switch (__le32_to_cpu(mac->blk_hdr.type)) { |
| 3949 | case RTL_FW_PLA: |
| 3950 | type = MCU_TYPE_PLA; |
| 3951 | break; |
| 3952 | case RTL_FW_USB: |
| 3953 | type = MCU_TYPE_USB; |
| 3954 | break; |
| 3955 | default: |
| 3956 | return; |
| 3957 | } |
| 3958 | |
| 3959 | rtl_clear_bp(tp, type); |
| 3960 | |
| 3961 | /* Enable backup/restore of MACDBG. This is required after clearing PLA |
| 3962 | * break points and before applying the PLA firmware. |
| 3963 | */ |
| 3964 | if (tp->version == RTL_VER_04 && type == MCU_TYPE_PLA && |
| 3965 | !(ocp_read_word(tp, MCU_TYPE_PLA, PLA_MACDBG_POST) & DEBUG_OE)) { |
| 3966 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MACDBG_PRE, DEBUG_LTSSM); |
| 3967 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MACDBG_POST, DEBUG_LTSSM); |
| 3968 | } |
| 3969 | |
| 3970 | length = __le32_to_cpu(mac->blk_hdr.length); |
| 3971 | length -= __le16_to_cpu(mac->fw_offset); |
| 3972 | |
| 3973 | data = (u8 *)mac; |
| 3974 | data += __le16_to_cpu(mac->fw_offset); |
| 3975 | |
| 3976 | generic_ocp_write(tp, __le16_to_cpu(mac->fw_reg), 0xff, length, data, |
| 3977 | type); |
| 3978 | |
| 3979 | ocp_write_word(tp, type, __le16_to_cpu(mac->bp_ba_addr), |
| 3980 | __le16_to_cpu(mac->bp_ba_value)); |
| 3981 | |
| 3982 | bp_index = __le16_to_cpu(mac->bp_start); |
| 3983 | bp_num = __le16_to_cpu(mac->bp_num); |
| 3984 | for (i = 0; i < bp_num; i++) { |
| 3985 | ocp_write_word(tp, type, bp_index, __le16_to_cpu(mac->bp[i])); |
| 3986 | bp_index += 2; |
| 3987 | } |
| 3988 | |
| 3989 | bp_en_addr = __le16_to_cpu(mac->bp_en_addr); |
| 3990 | if (bp_en_addr) |
| 3991 | ocp_write_word(tp, type, bp_en_addr, |
| 3992 | __le16_to_cpu(mac->bp_en_value)); |
| 3993 | |
| 3994 | fw_ver_reg = __le16_to_cpu(mac->fw_ver_reg); |
| 3995 | if (fw_ver_reg) |
| 3996 | ocp_write_byte(tp, MCU_TYPE_USB, fw_ver_reg, |
| 3997 | mac->fw_ver_data); |
| 3998 | |
| 3999 | dev_dbg(&tp->intf->dev, "successfully applied %s\n", mac->info); |
| 4000 | } |
| 4001 | |
| 4002 | static void rtl8152_apply_firmware(struct r8152 *tp) |
| 4003 | { |
| 4004 | struct rtl_fw *rtl_fw = &tp->rtl_fw; |
| 4005 | const struct firmware *fw; |
| 4006 | struct fw_header *fw_hdr; |
| 4007 | struct fw_phy_patch_key *key; |
| 4008 | u16 key_addr = 0; |
| 4009 | int i; |
| 4010 | |
| 4011 | if (IS_ERR_OR_NULL(rtl_fw->fw)) |
| 4012 | return; |
| 4013 | |
| 4014 | fw = rtl_fw->fw; |
| 4015 | fw_hdr = (struct fw_header *)fw->data; |
| 4016 | |
| 4017 | if (rtl_fw->pre_fw) |
| 4018 | rtl_fw->pre_fw(tp); |
| 4019 | |
| 4020 | for (i = offsetof(struct fw_header, blocks); i < fw->size;) { |
| 4021 | struct fw_block *block = (struct fw_block *)&fw->data[i]; |
| 4022 | |
| 4023 | switch (__le32_to_cpu(block->type)) { |
| 4024 | case RTL_FW_END: |
| 4025 | goto post_fw; |
| 4026 | case RTL_FW_PLA: |
| 4027 | case RTL_FW_USB: |
| 4028 | rtl8152_fw_mac_apply(tp, (struct fw_mac *)block); |
| 4029 | break; |
| 4030 | case RTL_FW_PHY_START: |
| 4031 | key = (struct fw_phy_patch_key *)block; |
| 4032 | key_addr = __le16_to_cpu(key->key_reg); |
| 4033 | r8153_pre_ram_code(tp, key_addr, |
| 4034 | __le16_to_cpu(key->key_data)); |
| 4035 | break; |
| 4036 | case RTL_FW_PHY_STOP: |
| 4037 | WARN_ON(!key_addr); |
| 4038 | r8153_post_ram_code(tp, key_addr); |
| 4039 | break; |
| 4040 | case RTL_FW_PHY_NC: |
| 4041 | rtl8152_fw_phy_nc_apply(tp, (struct fw_phy_nc *)block); |
| 4042 | break; |
| 4043 | default: |
| 4044 | break; |
| 4045 | } |
| 4046 | |
| 4047 | i += ALIGN(__le32_to_cpu(block->length), 8); |
| 4048 | } |
| 4049 | |
| 4050 | post_fw: |
| 4051 | if (rtl_fw->post_fw) |
| 4052 | rtl_fw->post_fw(tp); |
| 4053 | |
| 4054 | strscpy(rtl_fw->version, fw_hdr->version, RTL_VER_SIZE); |
| 4055 | dev_info(&tp->intf->dev, "load %s successfully\n", rtl_fw->version); |
| 4056 | } |
| 4057 | |
| 4058 | static void rtl8152_release_firmware(struct r8152 *tp) |
| 4059 | { |
| 4060 | struct rtl_fw *rtl_fw = &tp->rtl_fw; |
| 4061 | |
| 4062 | if (!IS_ERR_OR_NULL(rtl_fw->fw)) { |
| 4063 | release_firmware(rtl_fw->fw); |
| 4064 | rtl_fw->fw = NULL; |
| 4065 | } |
| 4066 | } |
| 4067 | |
| 4068 | static int rtl8152_request_firmware(struct r8152 *tp) |
| 4069 | { |
| 4070 | struct rtl_fw *rtl_fw = &tp->rtl_fw; |
| 4071 | long rc; |
| 4072 | |
| 4073 | if (rtl_fw->fw || !rtl_fw->fw_name) { |
| 4074 | dev_info(&tp->intf->dev, "skip request firmware\n"); |
| 4075 | rc = 0; |
| 4076 | goto result; |
| 4077 | } |
| 4078 | |
| 4079 | rc = request_firmware(&rtl_fw->fw, rtl_fw->fw_name, &tp->intf->dev); |
| 4080 | if (rc < 0) |
| 4081 | goto result; |
| 4082 | |
| 4083 | rc = rtl8152_check_firmware(tp, rtl_fw); |
| 4084 | if (rc < 0) |
| 4085 | release_firmware(rtl_fw->fw); |
| 4086 | |
| 4087 | result: |
| 4088 | if (rc) { |
| 4089 | rtl_fw->fw = ERR_PTR(rc); |
| 4090 | |
| 4091 | dev_warn(&tp->intf->dev, |
| 4092 | "unable to load firmware patch %s (%ld)\n", |
| 4093 | rtl_fw->fw_name, rc); |
| 4094 | } |
| 4095 | |
| 4096 | return rc; |
| 4097 | } |
| 4098 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4099 | static void r8152_aldps_en(struct r8152 *tp, bool enable) |
| 4100 | { |
| 4101 | if (enable) { |
| 4102 | ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPWRSAVE | ENPDNPS | |
| 4103 | LINKENA | DIS_SDSAVE); |
| 4104 | } else { |
| 4105 | ocp_reg_write(tp, OCP_ALDPS_CONFIG, ENPDNPS | LINKENA | |
| 4106 | DIS_SDSAVE); |
| 4107 | msleep(20); |
| 4108 | } |
| 4109 | } |
| 4110 | |
| 4111 | static inline void r8152_mmd_indirect(struct r8152 *tp, u16 dev, u16 reg) |
| 4112 | { |
| 4113 | ocp_reg_write(tp, OCP_EEE_AR, FUN_ADDR | dev); |
| 4114 | ocp_reg_write(tp, OCP_EEE_DATA, reg); |
| 4115 | ocp_reg_write(tp, OCP_EEE_AR, FUN_DATA | dev); |
| 4116 | } |
| 4117 | |
| 4118 | static u16 r8152_mmd_read(struct r8152 *tp, u16 dev, u16 reg) |
| 4119 | { |
| 4120 | u16 data; |
| 4121 | |
| 4122 | r8152_mmd_indirect(tp, dev, reg); |
| 4123 | data = ocp_reg_read(tp, OCP_EEE_DATA); |
| 4124 | ocp_reg_write(tp, OCP_EEE_AR, 0x0000); |
| 4125 | |
| 4126 | return data; |
| 4127 | } |
| 4128 | |
| 4129 | static void r8152_mmd_write(struct r8152 *tp, u16 dev, u16 reg, u16 data) |
| 4130 | { |
| 4131 | r8152_mmd_indirect(tp, dev, reg); |
| 4132 | ocp_reg_write(tp, OCP_EEE_DATA, data); |
| 4133 | ocp_reg_write(tp, OCP_EEE_AR, 0x0000); |
| 4134 | } |
| 4135 | |
| 4136 | static void r8152_eee_en(struct r8152 *tp, bool enable) |
| 4137 | { |
| 4138 | u16 config1, config2, config3; |
| 4139 | u32 ocp_data; |
| 4140 | |
| 4141 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR); |
| 4142 | config1 = ocp_reg_read(tp, OCP_EEE_CONFIG1) & ~sd_rise_time_mask; |
| 4143 | config2 = ocp_reg_read(tp, OCP_EEE_CONFIG2); |
| 4144 | config3 = ocp_reg_read(tp, OCP_EEE_CONFIG3) & ~fast_snr_mask; |
| 4145 | |
| 4146 | if (enable) { |
| 4147 | ocp_data |= EEE_RX_EN | EEE_TX_EN; |
| 4148 | config1 |= EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN | RX_QUIET_EN; |
| 4149 | config1 |= sd_rise_time(1); |
| 4150 | config2 |= RG_DACQUIET_EN | RG_LDVQUIET_EN; |
| 4151 | config3 |= fast_snr(42); |
| 4152 | } else { |
| 4153 | ocp_data &= ~(EEE_RX_EN | EEE_TX_EN); |
| 4154 | config1 &= ~(EEE_10_CAP | EEE_NWAY_EN | TX_QUIET_EN | |
| 4155 | RX_QUIET_EN); |
| 4156 | config1 |= sd_rise_time(7); |
| 4157 | config2 &= ~(RG_DACQUIET_EN | RG_LDVQUIET_EN); |
| 4158 | config3 |= fast_snr(511); |
| 4159 | } |
| 4160 | |
| 4161 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data); |
| 4162 | ocp_reg_write(tp, OCP_EEE_CONFIG1, config1); |
| 4163 | ocp_reg_write(tp, OCP_EEE_CONFIG2, config2); |
| 4164 | ocp_reg_write(tp, OCP_EEE_CONFIG3, config3); |
| 4165 | } |
| 4166 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4167 | static void r8153_eee_en(struct r8152 *tp, bool enable) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4168 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4169 | u32 ocp_data; |
| 4170 | u16 config; |
| 4171 | |
| 4172 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EEE_CR); |
| 4173 | config = ocp_reg_read(tp, OCP_EEE_CFG); |
| 4174 | |
| 4175 | if (enable) { |
| 4176 | ocp_data |= EEE_RX_EN | EEE_TX_EN; |
| 4177 | config |= EEE10_EN; |
| 4178 | } else { |
| 4179 | ocp_data &= ~(EEE_RX_EN | EEE_TX_EN); |
| 4180 | config &= ~EEE10_EN; |
| 4181 | } |
| 4182 | |
| 4183 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_EEE_CR, ocp_data); |
| 4184 | ocp_reg_write(tp, OCP_EEE_CFG, config); |
| 4185 | |
| 4186 | tp->ups_info.eee = enable; |
| 4187 | } |
| 4188 | |
| 4189 | static void rtl_eee_enable(struct r8152 *tp, bool enable) |
| 4190 | { |
| 4191 | switch (tp->version) { |
| 4192 | case RTL_VER_01: |
| 4193 | case RTL_VER_02: |
| 4194 | case RTL_VER_07: |
| 4195 | if (enable) { |
| 4196 | r8152_eee_en(tp, true); |
| 4197 | r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, |
| 4198 | tp->eee_adv); |
| 4199 | } else { |
| 4200 | r8152_eee_en(tp, false); |
| 4201 | r8152_mmd_write(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV, 0); |
| 4202 | } |
| 4203 | break; |
| 4204 | case RTL_VER_03: |
| 4205 | case RTL_VER_04: |
| 4206 | case RTL_VER_05: |
| 4207 | case RTL_VER_06: |
| 4208 | case RTL_VER_08: |
| 4209 | case RTL_VER_09: |
| 4210 | if (enable) { |
| 4211 | r8153_eee_en(tp, true); |
| 4212 | ocp_reg_write(tp, OCP_EEE_ADV, tp->eee_adv); |
| 4213 | } else { |
| 4214 | r8153_eee_en(tp, false); |
| 4215 | ocp_reg_write(tp, OCP_EEE_ADV, 0); |
| 4216 | } |
| 4217 | break; |
| 4218 | default: |
| 4219 | break; |
| 4220 | } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4221 | } |
| 4222 | |
| 4223 | static void r8152b_enable_fc(struct r8152 *tp) |
| 4224 | { |
| 4225 | u16 anar; |
| 4226 | |
| 4227 | anar = r8152_mdio_read(tp, MII_ADVERTISE); |
| 4228 | anar |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM; |
| 4229 | r8152_mdio_write(tp, MII_ADVERTISE, anar); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4230 | |
| 4231 | tp->ups_info.flow_control = true; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4232 | } |
| 4233 | |
| 4234 | static void rtl8152_disable(struct r8152 *tp) |
| 4235 | { |
| 4236 | r8152_aldps_en(tp, false); |
| 4237 | rtl_disable(tp); |
| 4238 | r8152_aldps_en(tp, true); |
| 4239 | } |
| 4240 | |
| 4241 | static void r8152b_hw_phy_cfg(struct r8152 *tp) |
| 4242 | { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4243 | rtl8152_apply_firmware(tp); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4244 | rtl_eee_enable(tp, tp->eee_en); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4245 | r8152_aldps_en(tp, true); |
| 4246 | r8152b_enable_fc(tp); |
| 4247 | |
| 4248 | set_bit(PHY_RESET, &tp->flags); |
| 4249 | } |
| 4250 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4251 | static void wait_oob_link_list_ready(struct r8152 *tp) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4252 | { |
| 4253 | u32 ocp_data; |
| 4254 | int i; |
| 4255 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4256 | for (i = 0; i < 1000; i++) { |
| 4257 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); |
| 4258 | if (ocp_data & LINK_LIST_READY) |
| 4259 | break; |
| 4260 | usleep_range(1000, 2000); |
| 4261 | } |
| 4262 | } |
| 4263 | |
| 4264 | static void r8152b_exit_oob(struct r8152 *tp) |
| 4265 | { |
| 4266 | u32 ocp_data; |
| 4267 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4268 | ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR); |
| 4269 | ocp_data &= ~RCR_ACPT_ALL; |
| 4270 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data); |
| 4271 | |
| 4272 | rxdy_gated_en(tp, true); |
| 4273 | r8153_teredo_off(tp); |
| 4274 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CRWECR, CRWECR_NORAML); |
| 4275 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CR, 0x00); |
| 4276 | |
| 4277 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); |
| 4278 | ocp_data &= ~NOW_IS_OOB; |
| 4279 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data); |
| 4280 | |
| 4281 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7); |
| 4282 | ocp_data &= ~MCU_BORW_EN; |
| 4283 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data); |
| 4284 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4285 | wait_oob_link_list_ready(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4286 | |
| 4287 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7); |
| 4288 | ocp_data |= RE_INIT_LL; |
| 4289 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data); |
| 4290 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4291 | wait_oob_link_list_ready(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4292 | |
| 4293 | rtl8152_nic_reset(tp); |
| 4294 | |
| 4295 | /* rx share fifo credit full threshold */ |
| 4296 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL); |
| 4297 | |
| 4298 | if (tp->udev->speed == USB_SPEED_FULL || |
| 4299 | tp->udev->speed == USB_SPEED_LOW) { |
| 4300 | /* rx share fifo credit near full threshold */ |
| 4301 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, |
| 4302 | RXFIFO_THR2_FULL); |
| 4303 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, |
| 4304 | RXFIFO_THR3_FULL); |
| 4305 | } else { |
| 4306 | /* rx share fifo credit near full threshold */ |
| 4307 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, |
| 4308 | RXFIFO_THR2_HIGH); |
| 4309 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, |
| 4310 | RXFIFO_THR3_HIGH); |
| 4311 | } |
| 4312 | |
| 4313 | /* TX share fifo free credit full threshold */ |
| 4314 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL); |
| 4315 | |
| 4316 | ocp_write_byte(tp, MCU_TYPE_USB, USB_TX_AGG, TX_AGG_MAX_THRESHOLD); |
| 4317 | ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_HIGH); |
| 4318 | ocp_write_dword(tp, MCU_TYPE_USB, USB_TX_DMA, |
| 4319 | TEST_MODE_DISABLE | TX_SIZE_ADJUST1); |
| 4320 | |
| 4321 | rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX); |
| 4322 | |
| 4323 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS); |
| 4324 | |
| 4325 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0); |
| 4326 | ocp_data |= TCR0_AUTO_FIFO; |
| 4327 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data); |
| 4328 | } |
| 4329 | |
| 4330 | static void r8152b_enter_oob(struct r8152 *tp) |
| 4331 | { |
| 4332 | u32 ocp_data; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4333 | |
| 4334 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); |
| 4335 | ocp_data &= ~NOW_IS_OOB; |
| 4336 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data); |
| 4337 | |
| 4338 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_OOB); |
| 4339 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_OOB); |
| 4340 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_OOB); |
| 4341 | |
| 4342 | rtl_disable(tp); |
| 4343 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4344 | wait_oob_link_list_ready(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4345 | |
| 4346 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7); |
| 4347 | ocp_data |= RE_INIT_LL; |
| 4348 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data); |
| 4349 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4350 | wait_oob_link_list_ready(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4351 | |
| 4352 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, RTL8152_RMS); |
| 4353 | |
| 4354 | rtl_rx_vlan_en(tp, true); |
| 4355 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4356 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BDC_CR); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4357 | ocp_data |= ALDPS_PROXY_MODE; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4358 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_BDC_CR, ocp_data); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4359 | |
| 4360 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); |
| 4361 | ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB; |
| 4362 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data); |
| 4363 | |
| 4364 | rxdy_gated_en(tp, false); |
| 4365 | |
| 4366 | ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR); |
| 4367 | ocp_data |= RCR_APM | RCR_AM | RCR_AB; |
| 4368 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data); |
| 4369 | } |
| 4370 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4371 | static int r8153_pre_firmware_1(struct r8152 *tp) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4372 | { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4373 | int i; |
| 4374 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4375 | /* Wait till the WTD timer is ready. It would take at most 104 ms. */ |
| 4376 | for (i = 0; i < 104; i++) { |
| 4377 | u32 ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_WDT1_CTRL); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4378 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4379 | if (!(ocp_data & WTD1_EN)) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4380 | break; |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4381 | usleep_range(1000, 2000); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4382 | } |
| 4383 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4384 | return 0; |
| 4385 | } |
| 4386 | |
| 4387 | static int r8153_post_firmware_1(struct r8152 *tp) |
| 4388 | { |
| 4389 | /* set USB_BP_4 to support USB_SPEED_SUPER only */ |
| 4390 | if (ocp_read_byte(tp, MCU_TYPE_USB, USB_CSTMR) & FORCE_SUPER) |
| 4391 | ocp_write_word(tp, MCU_TYPE_USB, USB_BP_4, BP4_SUPER_ONLY); |
| 4392 | |
| 4393 | /* reset UPHY timer to 36 ms */ |
| 4394 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_UPHY_TIMER, 36000 / 16); |
| 4395 | |
| 4396 | return 0; |
| 4397 | } |
| 4398 | |
| 4399 | static int r8153_pre_firmware_2(struct r8152 *tp) |
| 4400 | { |
| 4401 | u32 ocp_data; |
| 4402 | |
| 4403 | r8153_pre_firmware_1(tp); |
| 4404 | |
| 4405 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0); |
| 4406 | ocp_data &= ~FW_FIX_SUSPEND; |
| 4407 | ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0, ocp_data); |
| 4408 | |
| 4409 | return 0; |
| 4410 | } |
| 4411 | |
| 4412 | static int r8153_post_firmware_2(struct r8152 *tp) |
| 4413 | { |
| 4414 | u32 ocp_data; |
| 4415 | |
| 4416 | /* enable bp0 if support USB_SPEED_SUPER only */ |
| 4417 | if (ocp_read_byte(tp, MCU_TYPE_USB, USB_CSTMR) & FORCE_SUPER) { |
| 4418 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BP_EN); |
| 4419 | ocp_data |= BIT(0); |
| 4420 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_BP_EN, ocp_data); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4421 | } |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4422 | |
| 4423 | /* reset UPHY timer to 36 ms */ |
| 4424 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_UPHY_TIMER, 36000 / 16); |
| 4425 | |
| 4426 | /* enable U3P3 check, set the counter to 4 */ |
| 4427 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, U3P3_CHECK_EN | 4); |
| 4428 | |
| 4429 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0); |
| 4430 | ocp_data |= FW_FIX_SUSPEND; |
| 4431 | ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN0, ocp_data); |
| 4432 | |
| 4433 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY); |
| 4434 | ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND; |
| 4435 | ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data); |
| 4436 | |
| 4437 | return 0; |
| 4438 | } |
| 4439 | |
| 4440 | static int r8153_post_firmware_3(struct r8152 *tp) |
| 4441 | { |
| 4442 | u32 ocp_data; |
| 4443 | |
| 4444 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY); |
| 4445 | ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND; |
| 4446 | ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data); |
| 4447 | |
| 4448 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1); |
| 4449 | ocp_data |= FW_IP_RESET_EN; |
| 4450 | ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1, ocp_data); |
| 4451 | |
| 4452 | return 0; |
| 4453 | } |
| 4454 | |
| 4455 | static int r8153b_pre_firmware_1(struct r8152 *tp) |
| 4456 | { |
| 4457 | /* enable fc timer and set timer to 1 second. */ |
| 4458 | ocp_write_word(tp, MCU_TYPE_USB, USB_FC_TIMER, |
| 4459 | CTRL_TIMER_EN | (1000 / 8)); |
| 4460 | |
| 4461 | return 0; |
| 4462 | } |
| 4463 | |
| 4464 | static int r8153b_post_firmware_1(struct r8152 *tp) |
| 4465 | { |
| 4466 | u32 ocp_data; |
| 4467 | |
| 4468 | /* enable bp0 for RTL8153-BND */ |
| 4469 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_MISC_1); |
| 4470 | if (ocp_data & BND_MASK) { |
| 4471 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BP_EN); |
| 4472 | ocp_data |= BIT(0); |
| 4473 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_BP_EN, ocp_data); |
| 4474 | } |
| 4475 | |
| 4476 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_CTRL); |
| 4477 | ocp_data |= FLOW_CTRL_PATCH_OPT; |
| 4478 | ocp_write_word(tp, MCU_TYPE_USB, USB_FW_CTRL, ocp_data); |
| 4479 | |
| 4480 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_TASK); |
| 4481 | ocp_data |= FC_PATCH_TASK; |
| 4482 | ocp_write_word(tp, MCU_TYPE_USB, USB_FW_TASK, ocp_data); |
| 4483 | |
| 4484 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1); |
| 4485 | ocp_data |= FW_IP_RESET_EN; |
| 4486 | ocp_write_word(tp, MCU_TYPE_USB, USB_FW_FIX_EN1, ocp_data); |
| 4487 | |
| 4488 | return 0; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4489 | } |
| 4490 | |
| 4491 | static void r8153_aldps_en(struct r8152 *tp, bool enable) |
| 4492 | { |
| 4493 | u16 data; |
| 4494 | |
| 4495 | data = ocp_reg_read(tp, OCP_POWER_CFG); |
| 4496 | if (enable) { |
| 4497 | data |= EN_ALDPS; |
| 4498 | ocp_reg_write(tp, OCP_POWER_CFG, data); |
| 4499 | } else { |
| 4500 | int i; |
| 4501 | |
| 4502 | data &= ~EN_ALDPS; |
| 4503 | ocp_reg_write(tp, OCP_POWER_CFG, data); |
| 4504 | for (i = 0; i < 20; i++) { |
| 4505 | usleep_range(1000, 2000); |
| 4506 | if (ocp_read_word(tp, MCU_TYPE_PLA, 0xe000) & 0x0100) |
| 4507 | break; |
| 4508 | } |
| 4509 | } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4510 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4511 | tp->ups_info.aldps = enable; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4512 | } |
| 4513 | |
| 4514 | static void r8153_hw_phy_cfg(struct r8152 *tp) |
| 4515 | { |
| 4516 | u32 ocp_data; |
| 4517 | u16 data; |
| 4518 | |
| 4519 | /* disable ALDPS before updating the PHY parameters */ |
| 4520 | r8153_aldps_en(tp, false); |
| 4521 | |
| 4522 | /* disable EEE before updating the PHY parameters */ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4523 | rtl_eee_enable(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4524 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4525 | rtl8152_apply_firmware(tp); |
| 4526 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4527 | if (tp->version == RTL_VER_03) { |
| 4528 | data = ocp_reg_read(tp, OCP_EEE_CFG); |
| 4529 | data &= ~CTAP_SHORT_EN; |
| 4530 | ocp_reg_write(tp, OCP_EEE_CFG, data); |
| 4531 | } |
| 4532 | |
| 4533 | data = ocp_reg_read(tp, OCP_POWER_CFG); |
| 4534 | data |= EEE_CLKDIV_EN; |
| 4535 | ocp_reg_write(tp, OCP_POWER_CFG, data); |
| 4536 | |
| 4537 | data = ocp_reg_read(tp, OCP_DOWN_SPEED); |
| 4538 | data |= EN_10M_BGOFF; |
| 4539 | ocp_reg_write(tp, OCP_DOWN_SPEED, data); |
| 4540 | data = ocp_reg_read(tp, OCP_POWER_CFG); |
| 4541 | data |= EN_10M_PLLOFF; |
| 4542 | ocp_reg_write(tp, OCP_POWER_CFG, data); |
| 4543 | sram_write(tp, SRAM_IMPEDANCE, 0x0b13); |
| 4544 | |
| 4545 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR); |
| 4546 | ocp_data |= PFM_PWM_SWITCH; |
| 4547 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data); |
| 4548 | |
| 4549 | /* Enable LPF corner auto tune */ |
| 4550 | sram_write(tp, SRAM_LPF_CFG, 0xf70f); |
| 4551 | |
| 4552 | /* Adjust 10M Amplitude */ |
| 4553 | sram_write(tp, SRAM_10M_AMP1, 0x00af); |
| 4554 | sram_write(tp, SRAM_10M_AMP2, 0x0208); |
| 4555 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4556 | if (tp->eee_en) |
| 4557 | rtl_eee_enable(tp, true); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4558 | |
| 4559 | r8153_aldps_en(tp, true); |
| 4560 | r8152b_enable_fc(tp); |
| 4561 | |
| 4562 | switch (tp->version) { |
| 4563 | case RTL_VER_03: |
| 4564 | case RTL_VER_04: |
| 4565 | break; |
| 4566 | case RTL_VER_05: |
| 4567 | case RTL_VER_06: |
| 4568 | default: |
| 4569 | r8153_u2p3en(tp, true); |
| 4570 | break; |
| 4571 | } |
| 4572 | |
| 4573 | set_bit(PHY_RESET, &tp->flags); |
| 4574 | } |
| 4575 | |
| 4576 | static u32 r8152_efuse_read(struct r8152 *tp, u8 addr) |
| 4577 | { |
| 4578 | u32 ocp_data; |
| 4579 | |
| 4580 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_EFUSE_CMD, EFUSE_READ_CMD | addr); |
| 4581 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EFUSE_CMD); |
| 4582 | ocp_data = (ocp_data & EFUSE_DATA_BIT16) << 9; /* data of bit16 */ |
| 4583 | ocp_data |= ocp_read_word(tp, MCU_TYPE_PLA, PLA_EFUSE_DATA); |
| 4584 | |
| 4585 | return ocp_data; |
| 4586 | } |
| 4587 | |
| 4588 | static void r8153b_hw_phy_cfg(struct r8152 *tp) |
| 4589 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4590 | u32 ocp_data; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4591 | u16 data; |
| 4592 | |
| 4593 | /* disable ALDPS before updating the PHY parameters */ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4594 | r8153_aldps_en(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4595 | |
| 4596 | /* disable EEE before updating the PHY parameters */ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4597 | rtl_eee_enable(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4598 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4599 | rtl8152_apply_firmware(tp); |
| 4600 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4601 | r8153b_green_en(tp, test_bit(GREEN_ETHERNET, &tp->flags)); |
| 4602 | |
| 4603 | data = sram_read(tp, SRAM_GREEN_CFG); |
| 4604 | data |= R_TUNE_EN; |
| 4605 | sram_write(tp, SRAM_GREEN_CFG, data); |
| 4606 | data = ocp_reg_read(tp, OCP_NCTL_CFG); |
| 4607 | data |= PGA_RETURN_EN; |
| 4608 | ocp_reg_write(tp, OCP_NCTL_CFG, data); |
| 4609 | |
| 4610 | /* ADC Bias Calibration: |
| 4611 | * read efuse offset 0x7d to get a 17-bit data. Remove the dummy/fake |
| 4612 | * bit (bit3) to rebuild the real 16-bit data. Write the data to the |
| 4613 | * ADC ioffset. |
| 4614 | */ |
| 4615 | ocp_data = r8152_efuse_read(tp, 0x7d); |
| 4616 | data = (u16)(((ocp_data & 0x1fff0) >> 1) | (ocp_data & 0x7)); |
| 4617 | if (data != 0xffff) |
| 4618 | ocp_reg_write(tp, OCP_ADC_IOFFSET, data); |
| 4619 | |
| 4620 | /* ups mode tx-link-pulse timing adjustment: |
| 4621 | * rg_saw_cnt = OCP reg 0xC426 Bit[13:0] |
| 4622 | * swr_cnt_1ms_ini = 16000000 / rg_saw_cnt |
| 4623 | */ |
| 4624 | ocp_data = ocp_reg_read(tp, 0xc426); |
| 4625 | ocp_data &= 0x3fff; |
| 4626 | if (ocp_data) { |
| 4627 | u32 swr_cnt_1ms_ini; |
| 4628 | |
| 4629 | swr_cnt_1ms_ini = (16000000 / ocp_data) & SAW_CNT_1MS_MASK; |
| 4630 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_UPS_CFG); |
| 4631 | ocp_data = (ocp_data & ~SAW_CNT_1MS_MASK) | swr_cnt_1ms_ini; |
| 4632 | ocp_write_word(tp, MCU_TYPE_USB, USB_UPS_CFG, ocp_data); |
| 4633 | } |
| 4634 | |
| 4635 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR); |
| 4636 | ocp_data |= PFM_PWM_SWITCH; |
| 4637 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data); |
| 4638 | |
| 4639 | /* Advnace EEE */ |
| 4640 | if (!r8153_patch_request(tp, true)) { |
| 4641 | data = ocp_reg_read(tp, OCP_POWER_CFG); |
| 4642 | data |= EEE_CLKDIV_EN; |
| 4643 | ocp_reg_write(tp, OCP_POWER_CFG, data); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4644 | tp->ups_info.eee_ckdiv = true; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4645 | |
| 4646 | data = ocp_reg_read(tp, OCP_DOWN_SPEED); |
| 4647 | data |= EN_EEE_CMODE | EN_EEE_1000 | EN_10M_CLKDIV; |
| 4648 | ocp_reg_write(tp, OCP_DOWN_SPEED, data); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4649 | tp->ups_info.eee_cmod_lv = true; |
| 4650 | tp->ups_info._10m_ckdiv = true; |
| 4651 | tp->ups_info.eee_plloff_giga = true; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4652 | |
| 4653 | ocp_reg_write(tp, OCP_SYSCLK_CFG, 0); |
| 4654 | ocp_reg_write(tp, OCP_SYSCLK_CFG, clk_div_expo(5)); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4655 | tp->ups_info._250m_ckdiv = true; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4656 | |
| 4657 | r8153_patch_request(tp, false); |
| 4658 | } |
| 4659 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4660 | if (tp->eee_en) |
| 4661 | rtl_eee_enable(tp, true); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4662 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4663 | r8153_aldps_en(tp, true); |
| 4664 | r8152b_enable_fc(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4665 | |
| 4666 | set_bit(PHY_RESET, &tp->flags); |
| 4667 | } |
| 4668 | |
| 4669 | static void r8153_first_init(struct r8152 *tp) |
| 4670 | { |
| 4671 | u32 ocp_data; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4672 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4673 | rxdy_gated_en(tp, true); |
| 4674 | r8153_teredo_off(tp); |
| 4675 | |
| 4676 | ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR); |
| 4677 | ocp_data &= ~RCR_ACPT_ALL; |
| 4678 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data); |
| 4679 | |
| 4680 | rtl8152_nic_reset(tp); |
| 4681 | rtl_reset_bmu(tp); |
| 4682 | |
| 4683 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); |
| 4684 | ocp_data &= ~NOW_IS_OOB; |
| 4685 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data); |
| 4686 | |
| 4687 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7); |
| 4688 | ocp_data &= ~MCU_BORW_EN; |
| 4689 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data); |
| 4690 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4691 | wait_oob_link_list_ready(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4692 | |
| 4693 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7); |
| 4694 | ocp_data |= RE_INIT_LL; |
| 4695 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data); |
| 4696 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4697 | wait_oob_link_list_ready(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4698 | |
| 4699 | rtl_rx_vlan_en(tp, tp->netdev->features & NETIF_F_HW_VLAN_CTAG_RX); |
| 4700 | |
| 4701 | ocp_data = tp->netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN; |
| 4702 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, ocp_data); |
| 4703 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_MTPS, MTPS_JUMBO); |
| 4704 | |
| 4705 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TCR0); |
| 4706 | ocp_data |= TCR0_AUTO_FIFO; |
| 4707 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_TCR0, ocp_data); |
| 4708 | |
| 4709 | rtl8152_nic_reset(tp); |
| 4710 | |
| 4711 | /* rx share fifo credit full threshold */ |
| 4712 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL0, RXFIFO_THR1_NORMAL); |
| 4713 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL1, RXFIFO_THR2_NORMAL); |
| 4714 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_RXFIFO_CTRL2, RXFIFO_THR3_NORMAL); |
| 4715 | /* TX share fifo free credit full threshold */ |
| 4716 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_TXFIFO_CTRL, TXFIFO_THR_NORMAL2); |
| 4717 | } |
| 4718 | |
| 4719 | static void r8153_enter_oob(struct r8152 *tp) |
| 4720 | { |
| 4721 | u32 ocp_data; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4722 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4723 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); |
| 4724 | ocp_data &= ~NOW_IS_OOB; |
| 4725 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data); |
| 4726 | |
| 4727 | rtl_disable(tp); |
| 4728 | rtl_reset_bmu(tp); |
| 4729 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4730 | wait_oob_link_list_ready(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4731 | |
| 4732 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7); |
| 4733 | ocp_data |= RE_INIT_LL; |
| 4734 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_SFF_STS_7, ocp_data); |
| 4735 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4736 | wait_oob_link_list_ready(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4737 | |
| 4738 | ocp_data = tp->netdev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN; |
| 4739 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, ocp_data); |
| 4740 | |
| 4741 | switch (tp->version) { |
| 4742 | case RTL_VER_03: |
| 4743 | case RTL_VER_04: |
| 4744 | case RTL_VER_05: |
| 4745 | case RTL_VER_06: |
| 4746 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG); |
| 4747 | ocp_data &= ~TEREDO_WAKE_MASK; |
| 4748 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_CFG, ocp_data); |
| 4749 | break; |
| 4750 | |
| 4751 | case RTL_VER_08: |
| 4752 | case RTL_VER_09: |
| 4753 | /* Clear teredo wake event. bit[15:8] is the teredo wakeup |
| 4754 | * type. Set it to zero. bits[7:0] are the W1C bits about |
| 4755 | * the events. Set them to all 1 to clear them. |
| 4756 | */ |
| 4757 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_TEREDO_WAKE_BASE, 0x00ff); |
| 4758 | break; |
| 4759 | |
| 4760 | default: |
| 4761 | break; |
| 4762 | } |
| 4763 | |
| 4764 | rtl_rx_vlan_en(tp, true); |
| 4765 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4766 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_BDC_CR); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4767 | ocp_data |= ALDPS_PROXY_MODE; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4768 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_BDC_CR, ocp_data); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4769 | |
| 4770 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL); |
| 4771 | ocp_data |= NOW_IS_OOB | DIS_MCU_CLROOB; |
| 4772 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_OOB_CTRL, ocp_data); |
| 4773 | |
| 4774 | rxdy_gated_en(tp, false); |
| 4775 | |
| 4776 | ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR); |
| 4777 | ocp_data |= RCR_APM | RCR_AM | RCR_AB; |
| 4778 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data); |
| 4779 | } |
| 4780 | |
| 4781 | static void rtl8153_disable(struct r8152 *tp) |
| 4782 | { |
| 4783 | r8153_aldps_en(tp, false); |
| 4784 | rtl_disable(tp); |
| 4785 | rtl_reset_bmu(tp); |
| 4786 | r8153_aldps_en(tp, true); |
| 4787 | } |
| 4788 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4789 | static int rtl8152_set_speed(struct r8152 *tp, u8 autoneg, u32 speed, u8 duplex, |
| 4790 | u32 advertising) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4791 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4792 | u16 bmcr; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4793 | int ret = 0; |
| 4794 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4795 | if (autoneg == AUTONEG_DISABLE) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4796 | if (duplex != DUPLEX_HALF && duplex != DUPLEX_FULL) |
| 4797 | return -EINVAL; |
| 4798 | |
| 4799 | switch (speed) { |
| 4800 | case SPEED_10: |
| 4801 | bmcr = BMCR_SPEED10; |
| 4802 | if (duplex == DUPLEX_FULL) { |
| 4803 | bmcr |= BMCR_FULLDPLX; |
| 4804 | tp->ups_info.speed_duplex = FORCE_10M_FULL; |
| 4805 | } else { |
| 4806 | tp->ups_info.speed_duplex = FORCE_10M_HALF; |
| 4807 | } |
| 4808 | break; |
| 4809 | case SPEED_100: |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4810 | bmcr = BMCR_SPEED100; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4811 | if (duplex == DUPLEX_FULL) { |
| 4812 | bmcr |= BMCR_FULLDPLX; |
| 4813 | tp->ups_info.speed_duplex = FORCE_100M_FULL; |
| 4814 | } else { |
| 4815 | tp->ups_info.speed_duplex = FORCE_100M_HALF; |
| 4816 | } |
| 4817 | break; |
| 4818 | case SPEED_1000: |
| 4819 | if (tp->mii.supports_gmii) { |
| 4820 | bmcr = BMCR_SPEED1000 | BMCR_FULLDPLX; |
| 4821 | tp->ups_info.speed_duplex = NWAY_1000M_FULL; |
| 4822 | break; |
| 4823 | } |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 4824 | fallthrough; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4825 | default: |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4826 | ret = -EINVAL; |
| 4827 | goto out; |
| 4828 | } |
| 4829 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4830 | if (duplex == DUPLEX_FULL) |
| 4831 | tp->mii.full_duplex = 1; |
| 4832 | else |
| 4833 | tp->mii.full_duplex = 0; |
| 4834 | |
| 4835 | tp->mii.force_media = 1; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4836 | } else { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4837 | u16 anar, tmp1; |
| 4838 | u32 support; |
| 4839 | |
| 4840 | support = RTL_ADVERTISED_10_HALF | RTL_ADVERTISED_10_FULL | |
| 4841 | RTL_ADVERTISED_100_HALF | RTL_ADVERTISED_100_FULL; |
| 4842 | |
| 4843 | if (tp->mii.supports_gmii) |
| 4844 | support |= RTL_ADVERTISED_1000_FULL; |
| 4845 | |
| 4846 | if (!(advertising & support)) |
| 4847 | return -EINVAL; |
| 4848 | |
| 4849 | anar = r8152_mdio_read(tp, MII_ADVERTISE); |
| 4850 | tmp1 = anar & ~(ADVERTISE_10HALF | ADVERTISE_10FULL | |
| 4851 | ADVERTISE_100HALF | ADVERTISE_100FULL); |
| 4852 | if (advertising & RTL_ADVERTISED_10_HALF) { |
| 4853 | tmp1 |= ADVERTISE_10HALF; |
| 4854 | tp->ups_info.speed_duplex = NWAY_10M_HALF; |
| 4855 | } |
| 4856 | if (advertising & RTL_ADVERTISED_10_FULL) { |
| 4857 | tmp1 |= ADVERTISE_10FULL; |
| 4858 | tp->ups_info.speed_duplex = NWAY_10M_FULL; |
| 4859 | } |
| 4860 | |
| 4861 | if (advertising & RTL_ADVERTISED_100_HALF) { |
| 4862 | tmp1 |= ADVERTISE_100HALF; |
| 4863 | tp->ups_info.speed_duplex = NWAY_100M_HALF; |
| 4864 | } |
| 4865 | if (advertising & RTL_ADVERTISED_100_FULL) { |
| 4866 | tmp1 |= ADVERTISE_100FULL; |
| 4867 | tp->ups_info.speed_duplex = NWAY_100M_FULL; |
| 4868 | } |
| 4869 | |
| 4870 | if (anar != tmp1) { |
| 4871 | r8152_mdio_write(tp, MII_ADVERTISE, tmp1); |
| 4872 | tp->mii.advertising = tmp1; |
| 4873 | } |
| 4874 | |
| 4875 | if (tp->mii.supports_gmii) { |
| 4876 | u16 gbcr; |
| 4877 | |
| 4878 | gbcr = r8152_mdio_read(tp, MII_CTRL1000); |
| 4879 | tmp1 = gbcr & ~(ADVERTISE_1000FULL | |
| 4880 | ADVERTISE_1000HALF); |
| 4881 | |
| 4882 | if (advertising & RTL_ADVERTISED_1000_FULL) { |
| 4883 | tmp1 |= ADVERTISE_1000FULL; |
| 4884 | tp->ups_info.speed_duplex = NWAY_1000M_FULL; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4885 | } |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4886 | |
| 4887 | if (gbcr != tmp1) |
| 4888 | r8152_mdio_write(tp, MII_CTRL1000, tmp1); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4889 | } |
| 4890 | |
| 4891 | bmcr = BMCR_ANENABLE | BMCR_ANRESTART; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 4892 | |
| 4893 | tp->mii.force_media = 0; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4894 | } |
| 4895 | |
| 4896 | if (test_and_clear_bit(PHY_RESET, &tp->flags)) |
| 4897 | bmcr |= BMCR_RESET; |
| 4898 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4899 | r8152_mdio_write(tp, MII_BMCR, bmcr); |
| 4900 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4901 | if (bmcr & BMCR_RESET) { |
| 4902 | int i; |
| 4903 | |
| 4904 | for (i = 0; i < 50; i++) { |
| 4905 | msleep(20); |
| 4906 | if ((r8152_mdio_read(tp, MII_BMCR) & BMCR_RESET) == 0) |
| 4907 | break; |
| 4908 | } |
| 4909 | } |
| 4910 | |
| 4911 | out: |
| 4912 | return ret; |
| 4913 | } |
| 4914 | |
| 4915 | static void rtl8152_up(struct r8152 *tp) |
| 4916 | { |
| 4917 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 4918 | return; |
| 4919 | |
| 4920 | r8152_aldps_en(tp, false); |
| 4921 | r8152b_exit_oob(tp); |
| 4922 | r8152_aldps_en(tp, true); |
| 4923 | } |
| 4924 | |
| 4925 | static void rtl8152_down(struct r8152 *tp) |
| 4926 | { |
| 4927 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) { |
| 4928 | rtl_drop_queued_tx(tp); |
| 4929 | return; |
| 4930 | } |
| 4931 | |
| 4932 | r8152_power_cut_en(tp, false); |
| 4933 | r8152_aldps_en(tp, false); |
| 4934 | r8152b_enter_oob(tp); |
| 4935 | r8152_aldps_en(tp, true); |
| 4936 | } |
| 4937 | |
| 4938 | static void rtl8153_up(struct r8152 *tp) |
| 4939 | { |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 4940 | u32 ocp_data; |
| 4941 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4942 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 4943 | return; |
| 4944 | |
| 4945 | r8153_u1u2en(tp, false); |
| 4946 | r8153_u2p3en(tp, false); |
| 4947 | r8153_aldps_en(tp, false); |
| 4948 | r8153_first_init(tp); |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 4949 | |
| 4950 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6); |
| 4951 | ocp_data |= LANWAKE_CLR_EN; |
| 4952 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6, ocp_data); |
| 4953 | |
| 4954 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG); |
| 4955 | ocp_data &= ~LANWAKE_PIN; |
| 4956 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG, ocp_data); |
| 4957 | |
| 4958 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK1); |
| 4959 | ocp_data &= ~DELAY_PHY_PWR_CHG; |
| 4960 | ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK1, ocp_data); |
| 4961 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4962 | r8153_aldps_en(tp, true); |
| 4963 | |
| 4964 | switch (tp->version) { |
| 4965 | case RTL_VER_03: |
| 4966 | case RTL_VER_04: |
| 4967 | break; |
| 4968 | case RTL_VER_05: |
| 4969 | case RTL_VER_06: |
| 4970 | default: |
| 4971 | r8153_u2p3en(tp, true); |
| 4972 | break; |
| 4973 | } |
| 4974 | |
| 4975 | r8153_u1u2en(tp, true); |
| 4976 | } |
| 4977 | |
| 4978 | static void rtl8153_down(struct r8152 *tp) |
| 4979 | { |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 4980 | u32 ocp_data; |
| 4981 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4982 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) { |
| 4983 | rtl_drop_queued_tx(tp); |
| 4984 | return; |
| 4985 | } |
| 4986 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 4987 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6); |
| 4988 | ocp_data &= ~LANWAKE_CLR_EN; |
| 4989 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6, ocp_data); |
| 4990 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4991 | r8153_u1u2en(tp, false); |
| 4992 | r8153_u2p3en(tp, false); |
| 4993 | r8153_power_cut_en(tp, false); |
| 4994 | r8153_aldps_en(tp, false); |
| 4995 | r8153_enter_oob(tp); |
| 4996 | r8153_aldps_en(tp, true); |
| 4997 | } |
| 4998 | |
| 4999 | static void rtl8153b_up(struct r8152 *tp) |
| 5000 | { |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5001 | u32 ocp_data; |
| 5002 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5003 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 5004 | return; |
| 5005 | |
| 5006 | r8153b_u1u2en(tp, false); |
| 5007 | r8153_u2p3en(tp, false); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5008 | r8153_aldps_en(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5009 | |
| 5010 | r8153_first_init(tp); |
| 5011 | ocp_write_dword(tp, MCU_TYPE_USB, USB_RX_BUF_TH, RX_THR_B); |
| 5012 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5013 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3); |
| 5014 | ocp_data &= ~PLA_MCU_SPDWN_EN; |
| 5015 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, ocp_data); |
| 5016 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5017 | r8153_aldps_en(tp, true); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 5018 | |
| 5019 | if (tp->udev->speed != USB_SPEED_HIGH) |
| 5020 | r8153b_u1u2en(tp, true); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5021 | } |
| 5022 | |
| 5023 | static void rtl8153b_down(struct r8152 *tp) |
| 5024 | { |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5025 | u32 ocp_data; |
| 5026 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5027 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) { |
| 5028 | rtl_drop_queued_tx(tp); |
| 5029 | return; |
| 5030 | } |
| 5031 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5032 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3); |
| 5033 | ocp_data |= PLA_MCU_SPDWN_EN; |
| 5034 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, ocp_data); |
| 5035 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5036 | r8153b_u1u2en(tp, false); |
| 5037 | r8153_u2p3en(tp, false); |
| 5038 | r8153b_power_cut_en(tp, false); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5039 | r8153_aldps_en(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5040 | r8153_enter_oob(tp); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5041 | r8153_aldps_en(tp, true); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5042 | } |
| 5043 | |
| 5044 | static bool rtl8152_in_nway(struct r8152 *tp) |
| 5045 | { |
| 5046 | u16 nway_state; |
| 5047 | |
| 5048 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_OCP_GPHY_BASE, 0x2000); |
| 5049 | tp->ocp_base = 0x2000; |
| 5050 | ocp_write_byte(tp, MCU_TYPE_PLA, 0xb014, 0x4c); /* phy state */ |
| 5051 | nway_state = ocp_read_word(tp, MCU_TYPE_PLA, 0xb01a); |
| 5052 | |
| 5053 | /* bit 15: TXDIS_STATE, bit 14: ABD_STATE */ |
| 5054 | if (nway_state & 0xc000) |
| 5055 | return false; |
| 5056 | else |
| 5057 | return true; |
| 5058 | } |
| 5059 | |
| 5060 | static bool rtl8153_in_nway(struct r8152 *tp) |
| 5061 | { |
| 5062 | u16 phy_state = ocp_reg_read(tp, OCP_PHY_STATE) & 0xff; |
| 5063 | |
| 5064 | if (phy_state == TXDIS_STATE || phy_state == ABD_STATE) |
| 5065 | return false; |
| 5066 | else |
| 5067 | return true; |
| 5068 | } |
| 5069 | |
| 5070 | static void set_carrier(struct r8152 *tp) |
| 5071 | { |
| 5072 | struct net_device *netdev = tp->netdev; |
| 5073 | struct napi_struct *napi = &tp->napi; |
| 5074 | u8 speed; |
| 5075 | |
| 5076 | speed = rtl8152_get_speed(tp); |
| 5077 | |
| 5078 | if (speed & LINK_STATUS) { |
| 5079 | if (!netif_carrier_ok(netdev)) { |
| 5080 | tp->rtl_ops.enable(tp); |
| 5081 | netif_stop_queue(netdev); |
| 5082 | napi_disable(napi); |
| 5083 | netif_carrier_on(netdev); |
| 5084 | rtl_start_rx(tp); |
| 5085 | clear_bit(RTL8152_SET_RX_MODE, &tp->flags); |
| 5086 | _rtl8152_set_rx_mode(netdev); |
| 5087 | napi_enable(&tp->napi); |
| 5088 | netif_wake_queue(netdev); |
| 5089 | netif_info(tp, link, netdev, "carrier on\n"); |
| 5090 | } else if (netif_queue_stopped(netdev) && |
| 5091 | skb_queue_len(&tp->tx_queue) < tp->tx_qlen) { |
| 5092 | netif_wake_queue(netdev); |
| 5093 | } |
| 5094 | } else { |
| 5095 | if (netif_carrier_ok(netdev)) { |
| 5096 | netif_carrier_off(netdev); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5097 | tasklet_disable(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5098 | napi_disable(napi); |
| 5099 | tp->rtl_ops.disable(tp); |
| 5100 | napi_enable(napi); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5101 | tasklet_enable(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5102 | netif_info(tp, link, netdev, "carrier off\n"); |
| 5103 | } |
| 5104 | } |
| 5105 | } |
| 5106 | |
| 5107 | static void rtl_work_func_t(struct work_struct *work) |
| 5108 | { |
| 5109 | struct r8152 *tp = container_of(work, struct r8152, schedule.work); |
| 5110 | |
| 5111 | /* If the device is unplugged or !netif_running(), the workqueue |
| 5112 | * doesn't need to wake the device, and could return directly. |
| 5113 | */ |
| 5114 | if (test_bit(RTL8152_UNPLUG, &tp->flags) || !netif_running(tp->netdev)) |
| 5115 | return; |
| 5116 | |
| 5117 | if (usb_autopm_get_interface(tp->intf) < 0) |
| 5118 | return; |
| 5119 | |
| 5120 | if (!test_bit(WORK_ENABLE, &tp->flags)) |
| 5121 | goto out1; |
| 5122 | |
| 5123 | if (!mutex_trylock(&tp->control)) { |
| 5124 | schedule_delayed_work(&tp->schedule, 0); |
| 5125 | goto out1; |
| 5126 | } |
| 5127 | |
| 5128 | if (test_and_clear_bit(RTL8152_LINK_CHG, &tp->flags)) |
| 5129 | set_carrier(tp); |
| 5130 | |
| 5131 | if (test_and_clear_bit(RTL8152_SET_RX_MODE, &tp->flags)) |
| 5132 | _rtl8152_set_rx_mode(tp->netdev); |
| 5133 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5134 | /* don't schedule tasket before linking */ |
| 5135 | if (test_and_clear_bit(SCHEDULE_TASKLET, &tp->flags) && |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5136 | netif_carrier_ok(tp->netdev)) |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5137 | tasklet_schedule(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5138 | |
| 5139 | mutex_unlock(&tp->control); |
| 5140 | |
| 5141 | out1: |
| 5142 | usb_autopm_put_interface(tp->intf); |
| 5143 | } |
| 5144 | |
| 5145 | static void rtl_hw_phy_work_func_t(struct work_struct *work) |
| 5146 | { |
| 5147 | struct r8152 *tp = container_of(work, struct r8152, hw_phy_work.work); |
| 5148 | |
| 5149 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 5150 | return; |
| 5151 | |
| 5152 | if (usb_autopm_get_interface(tp->intf) < 0) |
| 5153 | return; |
| 5154 | |
| 5155 | mutex_lock(&tp->control); |
| 5156 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 5157 | if (rtl8152_request_firmware(tp) == -ENODEV && tp->rtl_fw.retry) { |
| 5158 | tp->rtl_fw.retry = false; |
| 5159 | tp->rtl_fw.fw = NULL; |
| 5160 | |
| 5161 | /* Delay execution in case request_firmware() is not ready yet. |
| 5162 | */ |
| 5163 | queue_delayed_work(system_long_wq, &tp->hw_phy_work, HZ * 10); |
| 5164 | goto ignore_once; |
| 5165 | } |
| 5166 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5167 | tp->rtl_ops.hw_phy_cfg(tp); |
| 5168 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5169 | rtl8152_set_speed(tp, tp->autoneg, tp->speed, tp->duplex, |
| 5170 | tp->advertising); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5171 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 5172 | ignore_once: |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5173 | mutex_unlock(&tp->control); |
| 5174 | |
| 5175 | usb_autopm_put_interface(tp->intf); |
| 5176 | } |
| 5177 | |
| 5178 | #ifdef CONFIG_PM_SLEEP |
| 5179 | static int rtl_notifier(struct notifier_block *nb, unsigned long action, |
| 5180 | void *data) |
| 5181 | { |
| 5182 | struct r8152 *tp = container_of(nb, struct r8152, pm_notifier); |
| 5183 | |
| 5184 | switch (action) { |
| 5185 | case PM_HIBERNATION_PREPARE: |
| 5186 | case PM_SUSPEND_PREPARE: |
| 5187 | usb_autopm_get_interface(tp->intf); |
| 5188 | break; |
| 5189 | |
| 5190 | case PM_POST_HIBERNATION: |
| 5191 | case PM_POST_SUSPEND: |
| 5192 | usb_autopm_put_interface(tp->intf); |
| 5193 | break; |
| 5194 | |
| 5195 | case PM_POST_RESTORE: |
| 5196 | case PM_RESTORE_PREPARE: |
| 5197 | default: |
| 5198 | break; |
| 5199 | } |
| 5200 | |
| 5201 | return NOTIFY_DONE; |
| 5202 | } |
| 5203 | #endif |
| 5204 | |
| 5205 | static int rtl8152_open(struct net_device *netdev) |
| 5206 | { |
| 5207 | struct r8152 *tp = netdev_priv(netdev); |
| 5208 | int res = 0; |
| 5209 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 5210 | if (work_busy(&tp->hw_phy_work.work) & WORK_BUSY_PENDING) { |
| 5211 | cancel_delayed_work_sync(&tp->hw_phy_work); |
| 5212 | rtl_hw_phy_work_func_t(&tp->hw_phy_work.work); |
| 5213 | } |
| 5214 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5215 | res = alloc_all_mem(tp); |
| 5216 | if (res) |
| 5217 | goto out; |
| 5218 | |
| 5219 | res = usb_autopm_get_interface(tp->intf); |
| 5220 | if (res < 0) |
| 5221 | goto out_free; |
| 5222 | |
| 5223 | mutex_lock(&tp->control); |
| 5224 | |
| 5225 | tp->rtl_ops.up(tp); |
| 5226 | |
| 5227 | netif_carrier_off(netdev); |
| 5228 | netif_start_queue(netdev); |
| 5229 | set_bit(WORK_ENABLE, &tp->flags); |
| 5230 | |
| 5231 | res = usb_submit_urb(tp->intr_urb, GFP_KERNEL); |
| 5232 | if (res) { |
| 5233 | if (res == -ENODEV) |
| 5234 | netif_device_detach(tp->netdev); |
| 5235 | netif_warn(tp, ifup, netdev, "intr_urb submit failed: %d\n", |
| 5236 | res); |
| 5237 | goto out_unlock; |
| 5238 | } |
| 5239 | napi_enable(&tp->napi); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5240 | tasklet_enable(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5241 | |
| 5242 | mutex_unlock(&tp->control); |
| 5243 | |
| 5244 | usb_autopm_put_interface(tp->intf); |
| 5245 | #ifdef CONFIG_PM_SLEEP |
| 5246 | tp->pm_notifier.notifier_call = rtl_notifier; |
| 5247 | register_pm_notifier(&tp->pm_notifier); |
| 5248 | #endif |
| 5249 | return 0; |
| 5250 | |
| 5251 | out_unlock: |
| 5252 | mutex_unlock(&tp->control); |
| 5253 | usb_autopm_put_interface(tp->intf); |
| 5254 | out_free: |
| 5255 | free_all_mem(tp); |
| 5256 | out: |
| 5257 | return res; |
| 5258 | } |
| 5259 | |
| 5260 | static int rtl8152_close(struct net_device *netdev) |
| 5261 | { |
| 5262 | struct r8152 *tp = netdev_priv(netdev); |
| 5263 | int res = 0; |
| 5264 | |
| 5265 | #ifdef CONFIG_PM_SLEEP |
| 5266 | unregister_pm_notifier(&tp->pm_notifier); |
| 5267 | #endif |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5268 | tasklet_disable(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5269 | clear_bit(WORK_ENABLE, &tp->flags); |
| 5270 | usb_kill_urb(tp->intr_urb); |
| 5271 | cancel_delayed_work_sync(&tp->schedule); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5272 | napi_disable(&tp->napi); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5273 | netif_stop_queue(netdev); |
| 5274 | |
| 5275 | res = usb_autopm_get_interface(tp->intf); |
| 5276 | if (res < 0 || test_bit(RTL8152_UNPLUG, &tp->flags)) { |
| 5277 | rtl_drop_queued_tx(tp); |
| 5278 | rtl_stop_rx(tp); |
| 5279 | } else { |
| 5280 | mutex_lock(&tp->control); |
| 5281 | |
| 5282 | tp->rtl_ops.down(tp); |
| 5283 | |
| 5284 | mutex_unlock(&tp->control); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5285 | } |
| 5286 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5287 | if (!res) |
| 5288 | usb_autopm_put_interface(tp->intf); |
| 5289 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5290 | free_all_mem(tp); |
| 5291 | |
| 5292 | return res; |
| 5293 | } |
| 5294 | |
| 5295 | static void rtl_tally_reset(struct r8152 *tp) |
| 5296 | { |
| 5297 | u32 ocp_data; |
| 5298 | |
| 5299 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY); |
| 5300 | ocp_data |= TALLY_RESET; |
| 5301 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data); |
| 5302 | } |
| 5303 | |
| 5304 | static void r8152b_init(struct r8152 *tp) |
| 5305 | { |
| 5306 | u32 ocp_data; |
| 5307 | u16 data; |
| 5308 | |
| 5309 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 5310 | return; |
| 5311 | |
| 5312 | data = r8152_mdio_read(tp, MII_BMCR); |
| 5313 | if (data & BMCR_PDOWN) { |
| 5314 | data &= ~BMCR_PDOWN; |
| 5315 | r8152_mdio_write(tp, MII_BMCR, data); |
| 5316 | } |
| 5317 | |
| 5318 | r8152_aldps_en(tp, false); |
| 5319 | |
| 5320 | if (tp->version == RTL_VER_01) { |
| 5321 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE); |
| 5322 | ocp_data &= ~LED_MODE_MASK; |
| 5323 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data); |
| 5324 | } |
| 5325 | |
| 5326 | r8152_power_cut_en(tp, false); |
| 5327 | |
| 5328 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR); |
| 5329 | ocp_data |= TX_10M_IDLE_EN | PFM_PWM_SWITCH; |
| 5330 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data); |
| 5331 | ocp_data = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL); |
| 5332 | ocp_data &= ~MCU_CLK_RATIO_MASK; |
| 5333 | ocp_data |= MCU_CLK_RATIO | D3_CLK_GATED_EN; |
| 5334 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, ocp_data); |
| 5335 | ocp_data = GPHY_STS_MSK | SPEED_DOWN_MSK | |
| 5336 | SPDWN_RXDV_MSK | SPDWN_LINKCHG_MSK; |
| 5337 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_GPHY_INTR_IMR, ocp_data); |
| 5338 | |
| 5339 | rtl_tally_reset(tp); |
| 5340 | |
| 5341 | /* enable rx aggregation */ |
| 5342 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL); |
| 5343 | ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN); |
| 5344 | ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data); |
| 5345 | } |
| 5346 | |
| 5347 | static void r8153_init(struct r8152 *tp) |
| 5348 | { |
| 5349 | u32 ocp_data; |
| 5350 | u16 data; |
| 5351 | int i; |
| 5352 | |
| 5353 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 5354 | return; |
| 5355 | |
| 5356 | r8153_u1u2en(tp, false); |
| 5357 | |
| 5358 | for (i = 0; i < 500; i++) { |
| 5359 | if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) & |
| 5360 | AUTOLOAD_DONE) |
| 5361 | break; |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5362 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5363 | msleep(20); |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5364 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 5365 | break; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5366 | } |
| 5367 | |
| 5368 | data = r8153_phy_status(tp, 0); |
| 5369 | |
| 5370 | if (tp->version == RTL_VER_03 || tp->version == RTL_VER_04 || |
| 5371 | tp->version == RTL_VER_05) |
| 5372 | ocp_reg_write(tp, OCP_ADC_CFG, CKADSEL_L | ADC_EN | EN_EMI_L); |
| 5373 | |
| 5374 | data = r8152_mdio_read(tp, MII_BMCR); |
| 5375 | if (data & BMCR_PDOWN) { |
| 5376 | data &= ~BMCR_PDOWN; |
| 5377 | r8152_mdio_write(tp, MII_BMCR, data); |
| 5378 | } |
| 5379 | |
| 5380 | data = r8153_phy_status(tp, PHY_STAT_LAN_ON); |
| 5381 | |
| 5382 | r8153_u2p3en(tp, false); |
| 5383 | |
| 5384 | if (tp->version == RTL_VER_04) { |
| 5385 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2); |
| 5386 | ocp_data &= ~pwd_dn_scale_mask; |
| 5387 | ocp_data |= pwd_dn_scale(96); |
| 5388 | ocp_write_word(tp, MCU_TYPE_USB, USB_SSPHYLINK2, ocp_data); |
| 5389 | |
| 5390 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_USB2PHY); |
| 5391 | ocp_data |= USB2PHY_L1 | USB2PHY_SUSPEND; |
| 5392 | ocp_write_byte(tp, MCU_TYPE_USB, USB_USB2PHY, ocp_data); |
| 5393 | } else if (tp->version == RTL_VER_05) { |
| 5394 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0); |
| 5395 | ocp_data &= ~ECM_ALDPS; |
| 5396 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_DMY_REG0, ocp_data); |
| 5397 | |
| 5398 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1); |
| 5399 | if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0) |
| 5400 | ocp_data &= ~DYNAMIC_BURST; |
| 5401 | else |
| 5402 | ocp_data |= DYNAMIC_BURST; |
| 5403 | ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data); |
| 5404 | } else if (tp->version == RTL_VER_06) { |
| 5405 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1); |
| 5406 | if (ocp_read_word(tp, MCU_TYPE_USB, USB_BURST_SIZE) == 0) |
| 5407 | ocp_data &= ~DYNAMIC_BURST; |
| 5408 | else |
| 5409 | ocp_data |= DYNAMIC_BURST; |
| 5410 | ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY1, ocp_data); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 5411 | |
| 5412 | r8153_queue_wake(tp, false); |
| 5413 | |
| 5414 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS); |
| 5415 | if (rtl8152_get_speed(tp) & LINK_STATUS) |
| 5416 | ocp_data |= CUR_LINK_OK; |
| 5417 | else |
| 5418 | ocp_data &= ~CUR_LINK_OK; |
| 5419 | ocp_data |= POLL_LINK_CHG; |
| 5420 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, ocp_data); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5421 | } |
| 5422 | |
| 5423 | ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2); |
| 5424 | ocp_data |= EP4_FULL_FC; |
| 5425 | ocp_write_byte(tp, MCU_TYPE_USB, USB_CSR_DUMMY2, ocp_data); |
| 5426 | |
| 5427 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL); |
| 5428 | ocp_data &= ~TIMER11_EN; |
| 5429 | ocp_write_word(tp, MCU_TYPE_USB, USB_WDT11_CTRL, ocp_data); |
| 5430 | |
| 5431 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE); |
| 5432 | ocp_data &= ~LED_MODE_MASK; |
| 5433 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_LED_FEATURE, ocp_data); |
| 5434 | |
| 5435 | ocp_data = FIFO_EMPTY_1FB | ROK_EXIT_LPM; |
| 5436 | if (tp->version == RTL_VER_04 && tp->udev->speed < USB_SPEED_SUPER) |
| 5437 | ocp_data |= LPM_TIMER_500MS; |
| 5438 | else |
| 5439 | ocp_data |= LPM_TIMER_500US; |
| 5440 | ocp_write_byte(tp, MCU_TYPE_USB, USB_LPM_CTRL, ocp_data); |
| 5441 | |
| 5442 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2); |
| 5443 | ocp_data &= ~SEN_VAL_MASK; |
| 5444 | ocp_data |= SEN_VAL_NORMAL | SEL_RXIDLE; |
| 5445 | ocp_write_word(tp, MCU_TYPE_USB, USB_AFE_CTRL2, ocp_data); |
| 5446 | |
| 5447 | ocp_write_word(tp, MCU_TYPE_USB, USB_CONNECT_TIMER, 0x0001); |
| 5448 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5449 | /* MAC clock speed down */ |
| 5450 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL, 0); |
| 5451 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, 0); |
| 5452 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, 0); |
| 5453 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL4, 0); |
| 5454 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5455 | r8153_power_cut_en(tp, false); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 5456 | rtl_runtime_suspend_enable(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5457 | r8153_u1u2en(tp, true); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5458 | usb_enable_lpm(tp->udev); |
| 5459 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5460 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6); |
| 5461 | ocp_data |= LANWAKE_CLR_EN; |
| 5462 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_CONFIG6, ocp_data); |
| 5463 | |
| 5464 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG); |
| 5465 | ocp_data &= ~LANWAKE_PIN; |
| 5466 | ocp_write_byte(tp, MCU_TYPE_PLA, PLA_LWAKE_CTRL_REG, ocp_data); |
| 5467 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5468 | /* rx aggregation */ |
| 5469 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL); |
| 5470 | ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN); |
| 5471 | if (test_bit(DELL_TB_RX_AGG_BUG, &tp->flags)) |
| 5472 | ocp_data |= RX_AGG_DISABLE; |
| 5473 | |
| 5474 | ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data); |
| 5475 | |
| 5476 | rtl_tally_reset(tp); |
| 5477 | |
| 5478 | switch (tp->udev->speed) { |
| 5479 | case USB_SPEED_SUPER: |
| 5480 | case USB_SPEED_SUPER_PLUS: |
| 5481 | tp->coalesce = COALESCE_SUPER; |
| 5482 | break; |
| 5483 | case USB_SPEED_HIGH: |
| 5484 | tp->coalesce = COALESCE_HIGH; |
| 5485 | break; |
| 5486 | default: |
| 5487 | tp->coalesce = COALESCE_SLOW; |
| 5488 | break; |
| 5489 | } |
| 5490 | } |
| 5491 | |
| 5492 | static void r8153b_init(struct r8152 *tp) |
| 5493 | { |
| 5494 | u32 ocp_data; |
| 5495 | u16 data; |
| 5496 | int i; |
| 5497 | |
| 5498 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 5499 | return; |
| 5500 | |
| 5501 | r8153b_u1u2en(tp, false); |
| 5502 | |
| 5503 | for (i = 0; i < 500; i++) { |
| 5504 | if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) & |
| 5505 | AUTOLOAD_DONE) |
| 5506 | break; |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5507 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5508 | msleep(20); |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5509 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 5510 | break; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5511 | } |
| 5512 | |
| 5513 | data = r8153_phy_status(tp, 0); |
| 5514 | |
| 5515 | data = r8152_mdio_read(tp, MII_BMCR); |
| 5516 | if (data & BMCR_PDOWN) { |
| 5517 | data &= ~BMCR_PDOWN; |
| 5518 | r8152_mdio_write(tp, MII_BMCR, data); |
| 5519 | } |
| 5520 | |
| 5521 | data = r8153_phy_status(tp, PHY_STAT_LAN_ON); |
| 5522 | |
| 5523 | r8153_u2p3en(tp, false); |
| 5524 | |
| 5525 | /* MSC timer = 0xfff * 8ms = 32760 ms */ |
| 5526 | ocp_write_word(tp, MCU_TYPE_USB, USB_MSC_TIMER, 0x0fff); |
| 5527 | |
| 5528 | /* U1/U2/L1 idle timer. 500 us */ |
| 5529 | ocp_write_word(tp, MCU_TYPE_USB, USB_U1U2_TIMER, 500); |
| 5530 | |
| 5531 | r8153b_power_cut_en(tp, false); |
| 5532 | r8153b_ups_en(tp, false); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5533 | r8153_queue_wake(tp, false); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5534 | rtl_runtime_suspend_enable(tp, false); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 5535 | |
| 5536 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS); |
| 5537 | if (rtl8152_get_speed(tp) & LINK_STATUS) |
| 5538 | ocp_data |= CUR_LINK_OK; |
| 5539 | else |
| 5540 | ocp_data &= ~CUR_LINK_OK; |
| 5541 | ocp_data |= POLL_LINK_CHG; |
| 5542 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_EXTRA_STATUS, ocp_data); |
| 5543 | |
| 5544 | if (tp->udev->speed != USB_SPEED_HIGH) |
| 5545 | r8153b_u1u2en(tp, true); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5546 | usb_enable_lpm(tp->udev); |
| 5547 | |
| 5548 | /* MAC clock speed down */ |
| 5549 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2); |
| 5550 | ocp_data |= MAC_CLK_SPDWN_EN; |
| 5551 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL2, ocp_data); |
| 5552 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 5553 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3); |
| 5554 | ocp_data &= ~PLA_MCU_SPDWN_EN; |
| 5555 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_MAC_PWR_CTRL3, ocp_data); |
| 5556 | |
| 5557 | if (tp->version == RTL_VER_09) { |
| 5558 | /* Disable Test IO for 32QFN */ |
| 5559 | if (ocp_read_byte(tp, MCU_TYPE_PLA, 0xdc00) & BIT(5)) { |
| 5560 | ocp_data = ocp_read_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR); |
| 5561 | ocp_data |= TEST_IO_OFF; |
| 5562 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_PHY_PWR, ocp_data); |
| 5563 | } |
| 5564 | } |
| 5565 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5566 | set_bit(GREEN_ETHERNET, &tp->flags); |
| 5567 | |
| 5568 | /* rx aggregation */ |
| 5569 | ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL); |
| 5570 | ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN); |
| 5571 | ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data); |
| 5572 | |
| 5573 | rtl_tally_reset(tp); |
| 5574 | |
| 5575 | tp->coalesce = 15000; /* 15 us */ |
| 5576 | } |
| 5577 | |
| 5578 | static int rtl8152_pre_reset(struct usb_interface *intf) |
| 5579 | { |
| 5580 | struct r8152 *tp = usb_get_intfdata(intf); |
| 5581 | struct net_device *netdev; |
| 5582 | |
| 5583 | if (!tp) |
| 5584 | return 0; |
| 5585 | |
| 5586 | netdev = tp->netdev; |
| 5587 | if (!netif_running(netdev)) |
| 5588 | return 0; |
| 5589 | |
| 5590 | netif_stop_queue(netdev); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5591 | tasklet_disable(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5592 | clear_bit(WORK_ENABLE, &tp->flags); |
| 5593 | usb_kill_urb(tp->intr_urb); |
| 5594 | cancel_delayed_work_sync(&tp->schedule); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5595 | napi_disable(&tp->napi); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5596 | if (netif_carrier_ok(netdev)) { |
| 5597 | mutex_lock(&tp->control); |
| 5598 | tp->rtl_ops.disable(tp); |
| 5599 | mutex_unlock(&tp->control); |
| 5600 | } |
| 5601 | |
| 5602 | return 0; |
| 5603 | } |
| 5604 | |
| 5605 | static int rtl8152_post_reset(struct usb_interface *intf) |
| 5606 | { |
| 5607 | struct r8152 *tp = usb_get_intfdata(intf); |
| 5608 | struct net_device *netdev; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5609 | struct sockaddr sa; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5610 | |
| 5611 | if (!tp) |
| 5612 | return 0; |
| 5613 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5614 | /* reset the MAC adddress in case of policy change */ |
| 5615 | if (determine_ethernet_addr(tp, &sa) >= 0) { |
| 5616 | rtnl_lock(); |
| 5617 | dev_set_mac_address (tp->netdev, &sa, NULL); |
| 5618 | rtnl_unlock(); |
| 5619 | } |
| 5620 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5621 | netdev = tp->netdev; |
| 5622 | if (!netif_running(netdev)) |
| 5623 | return 0; |
| 5624 | |
| 5625 | set_bit(WORK_ENABLE, &tp->flags); |
| 5626 | if (netif_carrier_ok(netdev)) { |
| 5627 | mutex_lock(&tp->control); |
| 5628 | tp->rtl_ops.enable(tp); |
| 5629 | rtl_start_rx(tp); |
| 5630 | _rtl8152_set_rx_mode(netdev); |
| 5631 | mutex_unlock(&tp->control); |
| 5632 | } |
| 5633 | |
| 5634 | napi_enable(&tp->napi); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5635 | tasklet_enable(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5636 | netif_wake_queue(netdev); |
| 5637 | usb_submit_urb(tp->intr_urb, GFP_KERNEL); |
| 5638 | |
| 5639 | if (!list_empty(&tp->rx_done)) |
| 5640 | napi_schedule(&tp->napi); |
| 5641 | |
| 5642 | return 0; |
| 5643 | } |
| 5644 | |
| 5645 | static bool delay_autosuspend(struct r8152 *tp) |
| 5646 | { |
| 5647 | bool sw_linking = !!netif_carrier_ok(tp->netdev); |
| 5648 | bool hw_linking = !!(rtl8152_get_speed(tp) & LINK_STATUS); |
| 5649 | |
| 5650 | /* This means a linking change occurs and the driver doesn't detect it, |
| 5651 | * yet. If the driver has disabled tx/rx and hw is linking on, the |
| 5652 | * device wouldn't wake up by receiving any packet. |
| 5653 | */ |
| 5654 | if (work_busy(&tp->schedule.work) || sw_linking != hw_linking) |
| 5655 | return true; |
| 5656 | |
| 5657 | /* If the linking down is occurred by nway, the device may miss the |
| 5658 | * linking change event. And it wouldn't wake when linking on. |
| 5659 | */ |
| 5660 | if (!sw_linking && tp->rtl_ops.in_nway(tp)) |
| 5661 | return true; |
| 5662 | else if (!skb_queue_empty(&tp->tx_queue)) |
| 5663 | return true; |
| 5664 | else |
| 5665 | return false; |
| 5666 | } |
| 5667 | |
| 5668 | static int rtl8152_runtime_resume(struct r8152 *tp) |
| 5669 | { |
| 5670 | struct net_device *netdev = tp->netdev; |
| 5671 | |
| 5672 | if (netif_running(netdev) && netdev->flags & IFF_UP) { |
| 5673 | struct napi_struct *napi = &tp->napi; |
| 5674 | |
| 5675 | tp->rtl_ops.autosuspend_en(tp, false); |
| 5676 | napi_disable(napi); |
| 5677 | set_bit(WORK_ENABLE, &tp->flags); |
| 5678 | |
| 5679 | if (netif_carrier_ok(netdev)) { |
| 5680 | if (rtl8152_get_speed(tp) & LINK_STATUS) { |
| 5681 | rtl_start_rx(tp); |
| 5682 | } else { |
| 5683 | netif_carrier_off(netdev); |
| 5684 | tp->rtl_ops.disable(tp); |
| 5685 | netif_info(tp, link, netdev, "linking down\n"); |
| 5686 | } |
| 5687 | } |
| 5688 | |
| 5689 | napi_enable(napi); |
| 5690 | clear_bit(SELECTIVE_SUSPEND, &tp->flags); |
| 5691 | smp_mb__after_atomic(); |
| 5692 | |
| 5693 | if (!list_empty(&tp->rx_done)) |
| 5694 | napi_schedule(&tp->napi); |
| 5695 | |
| 5696 | usb_submit_urb(tp->intr_urb, GFP_NOIO); |
| 5697 | } else { |
| 5698 | if (netdev->flags & IFF_UP) |
| 5699 | tp->rtl_ops.autosuspend_en(tp, false); |
| 5700 | |
| 5701 | clear_bit(SELECTIVE_SUSPEND, &tp->flags); |
| 5702 | } |
| 5703 | |
| 5704 | return 0; |
| 5705 | } |
| 5706 | |
| 5707 | static int rtl8152_system_resume(struct r8152 *tp) |
| 5708 | { |
| 5709 | struct net_device *netdev = tp->netdev; |
| 5710 | |
| 5711 | netif_device_attach(netdev); |
| 5712 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5713 | if (netif_running(netdev) && (netdev->flags & IFF_UP)) { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5714 | tp->rtl_ops.up(tp); |
| 5715 | netif_carrier_off(netdev); |
| 5716 | set_bit(WORK_ENABLE, &tp->flags); |
| 5717 | usb_submit_urb(tp->intr_urb, GFP_NOIO); |
| 5718 | } |
| 5719 | |
| 5720 | return 0; |
| 5721 | } |
| 5722 | |
| 5723 | static int rtl8152_runtime_suspend(struct r8152 *tp) |
| 5724 | { |
| 5725 | struct net_device *netdev = tp->netdev; |
| 5726 | int ret = 0; |
| 5727 | |
| 5728 | set_bit(SELECTIVE_SUSPEND, &tp->flags); |
| 5729 | smp_mb__after_atomic(); |
| 5730 | |
| 5731 | if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) { |
| 5732 | u32 rcr = 0; |
| 5733 | |
| 5734 | if (netif_carrier_ok(netdev)) { |
| 5735 | u32 ocp_data; |
| 5736 | |
| 5737 | rcr = ocp_read_dword(tp, MCU_TYPE_PLA, PLA_RCR); |
| 5738 | ocp_data = rcr & ~RCR_ACPT_ALL; |
| 5739 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, ocp_data); |
| 5740 | rxdy_gated_en(tp, true); |
| 5741 | ocp_data = ocp_read_byte(tp, MCU_TYPE_PLA, |
| 5742 | PLA_OOB_CTRL); |
| 5743 | if (!(ocp_data & RXFIFO_EMPTY)) { |
| 5744 | rxdy_gated_en(tp, false); |
| 5745 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr); |
| 5746 | clear_bit(SELECTIVE_SUSPEND, &tp->flags); |
| 5747 | smp_mb__after_atomic(); |
| 5748 | ret = -EBUSY; |
| 5749 | goto out1; |
| 5750 | } |
| 5751 | } |
| 5752 | |
| 5753 | clear_bit(WORK_ENABLE, &tp->flags); |
| 5754 | usb_kill_urb(tp->intr_urb); |
| 5755 | |
| 5756 | tp->rtl_ops.autosuspend_en(tp, true); |
| 5757 | |
| 5758 | if (netif_carrier_ok(netdev)) { |
| 5759 | struct napi_struct *napi = &tp->napi; |
| 5760 | |
| 5761 | napi_disable(napi); |
| 5762 | rtl_stop_rx(tp); |
| 5763 | rxdy_gated_en(tp, false); |
| 5764 | ocp_write_dword(tp, MCU_TYPE_PLA, PLA_RCR, rcr); |
| 5765 | napi_enable(napi); |
| 5766 | } |
| 5767 | |
| 5768 | if (delay_autosuspend(tp)) { |
| 5769 | rtl8152_runtime_resume(tp); |
| 5770 | ret = -EBUSY; |
| 5771 | } |
| 5772 | } |
| 5773 | |
| 5774 | out1: |
| 5775 | return ret; |
| 5776 | } |
| 5777 | |
| 5778 | static int rtl8152_system_suspend(struct r8152 *tp) |
| 5779 | { |
| 5780 | struct net_device *netdev = tp->netdev; |
| 5781 | |
| 5782 | netif_device_detach(netdev); |
| 5783 | |
| 5784 | if (netif_running(netdev) && test_bit(WORK_ENABLE, &tp->flags)) { |
| 5785 | struct napi_struct *napi = &tp->napi; |
| 5786 | |
| 5787 | clear_bit(WORK_ENABLE, &tp->flags); |
| 5788 | usb_kill_urb(tp->intr_urb); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5789 | tasklet_disable(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5790 | napi_disable(napi); |
| 5791 | cancel_delayed_work_sync(&tp->schedule); |
| 5792 | tp->rtl_ops.down(tp); |
| 5793 | napi_enable(napi); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5794 | tasklet_enable(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5795 | } |
| 5796 | |
| 5797 | return 0; |
| 5798 | } |
| 5799 | |
| 5800 | static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message) |
| 5801 | { |
| 5802 | struct r8152 *tp = usb_get_intfdata(intf); |
| 5803 | int ret; |
| 5804 | |
| 5805 | mutex_lock(&tp->control); |
| 5806 | |
| 5807 | if (PMSG_IS_AUTO(message)) |
| 5808 | ret = rtl8152_runtime_suspend(tp); |
| 5809 | else |
| 5810 | ret = rtl8152_system_suspend(tp); |
| 5811 | |
| 5812 | mutex_unlock(&tp->control); |
| 5813 | |
| 5814 | return ret; |
| 5815 | } |
| 5816 | |
| 5817 | static int rtl8152_resume(struct usb_interface *intf) |
| 5818 | { |
| 5819 | struct r8152 *tp = usb_get_intfdata(intf); |
| 5820 | int ret; |
| 5821 | |
| 5822 | mutex_lock(&tp->control); |
| 5823 | |
| 5824 | if (test_bit(SELECTIVE_SUSPEND, &tp->flags)) |
| 5825 | ret = rtl8152_runtime_resume(tp); |
| 5826 | else |
| 5827 | ret = rtl8152_system_resume(tp); |
| 5828 | |
| 5829 | mutex_unlock(&tp->control); |
| 5830 | |
| 5831 | return ret; |
| 5832 | } |
| 5833 | |
| 5834 | static int rtl8152_reset_resume(struct usb_interface *intf) |
| 5835 | { |
| 5836 | struct r8152 *tp = usb_get_intfdata(intf); |
| 5837 | |
| 5838 | clear_bit(SELECTIVE_SUSPEND, &tp->flags); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5839 | tp->rtl_ops.init(tp); |
| 5840 | queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5841 | set_ethernet_addr(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5842 | return rtl8152_resume(intf); |
| 5843 | } |
| 5844 | |
| 5845 | static void rtl8152_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) |
| 5846 | { |
| 5847 | struct r8152 *tp = netdev_priv(dev); |
| 5848 | |
| 5849 | if (usb_autopm_get_interface(tp->intf) < 0) |
| 5850 | return; |
| 5851 | |
| 5852 | if (!rtl_can_wakeup(tp)) { |
| 5853 | wol->supported = 0; |
| 5854 | wol->wolopts = 0; |
| 5855 | } else { |
| 5856 | mutex_lock(&tp->control); |
| 5857 | wol->supported = WAKE_ANY; |
| 5858 | wol->wolopts = __rtl_get_wol(tp); |
| 5859 | mutex_unlock(&tp->control); |
| 5860 | } |
| 5861 | |
| 5862 | usb_autopm_put_interface(tp->intf); |
| 5863 | } |
| 5864 | |
| 5865 | static int rtl8152_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol) |
| 5866 | { |
| 5867 | struct r8152 *tp = netdev_priv(dev); |
| 5868 | int ret; |
| 5869 | |
| 5870 | if (!rtl_can_wakeup(tp)) |
| 5871 | return -EOPNOTSUPP; |
| 5872 | |
| 5873 | if (wol->wolopts & ~WAKE_ANY) |
| 5874 | return -EINVAL; |
| 5875 | |
| 5876 | ret = usb_autopm_get_interface(tp->intf); |
| 5877 | if (ret < 0) |
| 5878 | goto out_set_wol; |
| 5879 | |
| 5880 | mutex_lock(&tp->control); |
| 5881 | |
| 5882 | __rtl_set_wol(tp, wol->wolopts); |
| 5883 | tp->saved_wolopts = wol->wolopts & WAKE_ANY; |
| 5884 | |
| 5885 | mutex_unlock(&tp->control); |
| 5886 | |
| 5887 | usb_autopm_put_interface(tp->intf); |
| 5888 | |
| 5889 | out_set_wol: |
| 5890 | return ret; |
| 5891 | } |
| 5892 | |
| 5893 | static u32 rtl8152_get_msglevel(struct net_device *dev) |
| 5894 | { |
| 5895 | struct r8152 *tp = netdev_priv(dev); |
| 5896 | |
| 5897 | return tp->msg_enable; |
| 5898 | } |
| 5899 | |
| 5900 | static void rtl8152_set_msglevel(struct net_device *dev, u32 value) |
| 5901 | { |
| 5902 | struct r8152 *tp = netdev_priv(dev); |
| 5903 | |
| 5904 | tp->msg_enable = value; |
| 5905 | } |
| 5906 | |
| 5907 | static void rtl8152_get_drvinfo(struct net_device *netdev, |
| 5908 | struct ethtool_drvinfo *info) |
| 5909 | { |
| 5910 | struct r8152 *tp = netdev_priv(netdev); |
| 5911 | |
| 5912 | strlcpy(info->driver, MODULENAME, sizeof(info->driver)); |
| 5913 | strlcpy(info->version, DRIVER_VERSION, sizeof(info->version)); |
| 5914 | usb_make_path(tp->udev, info->bus_info, sizeof(info->bus_info)); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 5915 | if (!IS_ERR_OR_NULL(tp->rtl_fw.fw)) |
| 5916 | strlcpy(info->fw_version, tp->rtl_fw.version, |
| 5917 | sizeof(info->fw_version)); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5918 | } |
| 5919 | |
| 5920 | static |
| 5921 | int rtl8152_get_link_ksettings(struct net_device *netdev, |
| 5922 | struct ethtool_link_ksettings *cmd) |
| 5923 | { |
| 5924 | struct r8152 *tp = netdev_priv(netdev); |
| 5925 | int ret; |
| 5926 | |
| 5927 | if (!tp->mii.mdio_read) |
| 5928 | return -EOPNOTSUPP; |
| 5929 | |
| 5930 | ret = usb_autopm_get_interface(tp->intf); |
| 5931 | if (ret < 0) |
| 5932 | goto out; |
| 5933 | |
| 5934 | mutex_lock(&tp->control); |
| 5935 | |
| 5936 | mii_ethtool_get_link_ksettings(&tp->mii, cmd); |
| 5937 | |
| 5938 | mutex_unlock(&tp->control); |
| 5939 | |
| 5940 | usb_autopm_put_interface(tp->intf); |
| 5941 | |
| 5942 | out: |
| 5943 | return ret; |
| 5944 | } |
| 5945 | |
| 5946 | static int rtl8152_set_link_ksettings(struct net_device *dev, |
| 5947 | const struct ethtool_link_ksettings *cmd) |
| 5948 | { |
| 5949 | struct r8152 *tp = netdev_priv(dev); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5950 | u32 advertising = 0; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5951 | int ret; |
| 5952 | |
| 5953 | ret = usb_autopm_get_interface(tp->intf); |
| 5954 | if (ret < 0) |
| 5955 | goto out; |
| 5956 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5957 | if (test_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, |
| 5958 | cmd->link_modes.advertising)) |
| 5959 | advertising |= RTL_ADVERTISED_10_HALF; |
| 5960 | |
| 5961 | if (test_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, |
| 5962 | cmd->link_modes.advertising)) |
| 5963 | advertising |= RTL_ADVERTISED_10_FULL; |
| 5964 | |
| 5965 | if (test_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, |
| 5966 | cmd->link_modes.advertising)) |
| 5967 | advertising |= RTL_ADVERTISED_100_HALF; |
| 5968 | |
| 5969 | if (test_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, |
| 5970 | cmd->link_modes.advertising)) |
| 5971 | advertising |= RTL_ADVERTISED_100_FULL; |
| 5972 | |
| 5973 | if (test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT, |
| 5974 | cmd->link_modes.advertising)) |
| 5975 | advertising |= RTL_ADVERTISED_1000_HALF; |
| 5976 | |
| 5977 | if (test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT, |
| 5978 | cmd->link_modes.advertising)) |
| 5979 | advertising |= RTL_ADVERTISED_1000_FULL; |
| 5980 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5981 | mutex_lock(&tp->control); |
| 5982 | |
| 5983 | ret = rtl8152_set_speed(tp, cmd->base.autoneg, cmd->base.speed, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5984 | cmd->base.duplex, advertising); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5985 | if (!ret) { |
| 5986 | tp->autoneg = cmd->base.autoneg; |
| 5987 | tp->speed = cmd->base.speed; |
| 5988 | tp->duplex = cmd->base.duplex; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 5989 | tp->advertising = advertising; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 5990 | } |
| 5991 | |
| 5992 | mutex_unlock(&tp->control); |
| 5993 | |
| 5994 | usb_autopm_put_interface(tp->intf); |
| 5995 | |
| 5996 | out: |
| 5997 | return ret; |
| 5998 | } |
| 5999 | |
| 6000 | static const char rtl8152_gstrings[][ETH_GSTRING_LEN] = { |
| 6001 | "tx_packets", |
| 6002 | "rx_packets", |
| 6003 | "tx_errors", |
| 6004 | "rx_errors", |
| 6005 | "rx_missed", |
| 6006 | "align_errors", |
| 6007 | "tx_single_collisions", |
| 6008 | "tx_multi_collisions", |
| 6009 | "rx_unicast", |
| 6010 | "rx_broadcast", |
| 6011 | "rx_multicast", |
| 6012 | "tx_aborted", |
| 6013 | "tx_underrun", |
| 6014 | }; |
| 6015 | |
| 6016 | static int rtl8152_get_sset_count(struct net_device *dev, int sset) |
| 6017 | { |
| 6018 | switch (sset) { |
| 6019 | case ETH_SS_STATS: |
| 6020 | return ARRAY_SIZE(rtl8152_gstrings); |
| 6021 | default: |
| 6022 | return -EOPNOTSUPP; |
| 6023 | } |
| 6024 | } |
| 6025 | |
| 6026 | static void rtl8152_get_ethtool_stats(struct net_device *dev, |
| 6027 | struct ethtool_stats *stats, u64 *data) |
| 6028 | { |
| 6029 | struct r8152 *tp = netdev_priv(dev); |
| 6030 | struct tally_counter tally; |
| 6031 | |
| 6032 | if (usb_autopm_get_interface(tp->intf) < 0) |
| 6033 | return; |
| 6034 | |
| 6035 | generic_ocp_read(tp, PLA_TALLYCNT, sizeof(tally), &tally, MCU_TYPE_PLA); |
| 6036 | |
| 6037 | usb_autopm_put_interface(tp->intf); |
| 6038 | |
| 6039 | data[0] = le64_to_cpu(tally.tx_packets); |
| 6040 | data[1] = le64_to_cpu(tally.rx_packets); |
| 6041 | data[2] = le64_to_cpu(tally.tx_errors); |
| 6042 | data[3] = le32_to_cpu(tally.rx_errors); |
| 6043 | data[4] = le16_to_cpu(tally.rx_missed); |
| 6044 | data[5] = le16_to_cpu(tally.align_errors); |
| 6045 | data[6] = le32_to_cpu(tally.tx_one_collision); |
| 6046 | data[7] = le32_to_cpu(tally.tx_multi_collision); |
| 6047 | data[8] = le64_to_cpu(tally.rx_unicast); |
| 6048 | data[9] = le64_to_cpu(tally.rx_broadcast); |
| 6049 | data[10] = le32_to_cpu(tally.rx_multicast); |
| 6050 | data[11] = le16_to_cpu(tally.tx_aborted); |
| 6051 | data[12] = le16_to_cpu(tally.tx_underrun); |
| 6052 | } |
| 6053 | |
| 6054 | static void rtl8152_get_strings(struct net_device *dev, u32 stringset, u8 *data) |
| 6055 | { |
| 6056 | switch (stringset) { |
| 6057 | case ETH_SS_STATS: |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 6058 | memcpy(data, rtl8152_gstrings, sizeof(rtl8152_gstrings)); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6059 | break; |
| 6060 | } |
| 6061 | } |
| 6062 | |
| 6063 | static int r8152_get_eee(struct r8152 *tp, struct ethtool_eee *eee) |
| 6064 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6065 | u32 lp, adv, supported = 0; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6066 | u16 val; |
| 6067 | |
| 6068 | val = r8152_mmd_read(tp, MDIO_MMD_PCS, MDIO_PCS_EEE_ABLE); |
| 6069 | supported = mmd_eee_cap_to_ethtool_sup_t(val); |
| 6070 | |
| 6071 | val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_ADV); |
| 6072 | adv = mmd_eee_adv_to_ethtool_adv_t(val); |
| 6073 | |
| 6074 | val = r8152_mmd_read(tp, MDIO_MMD_AN, MDIO_AN_EEE_LPABLE); |
| 6075 | lp = mmd_eee_adv_to_ethtool_adv_t(val); |
| 6076 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6077 | eee->eee_enabled = tp->eee_en; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6078 | eee->eee_active = !!(supported & adv & lp); |
| 6079 | eee->supported = supported; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6080 | eee->advertised = tp->eee_adv; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6081 | eee->lp_advertised = lp; |
| 6082 | |
| 6083 | return 0; |
| 6084 | } |
| 6085 | |
| 6086 | static int r8152_set_eee(struct r8152 *tp, struct ethtool_eee *eee) |
| 6087 | { |
| 6088 | u16 val = ethtool_adv_to_mmd_eee_adv_t(eee->advertised); |
| 6089 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6090 | tp->eee_en = eee->eee_enabled; |
| 6091 | tp->eee_adv = val; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6092 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6093 | rtl_eee_enable(tp, tp->eee_en); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6094 | |
| 6095 | return 0; |
| 6096 | } |
| 6097 | |
| 6098 | static int r8153_get_eee(struct r8152 *tp, struct ethtool_eee *eee) |
| 6099 | { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6100 | u32 lp, adv, supported = 0; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6101 | u16 val; |
| 6102 | |
| 6103 | val = ocp_reg_read(tp, OCP_EEE_ABLE); |
| 6104 | supported = mmd_eee_cap_to_ethtool_sup_t(val); |
| 6105 | |
| 6106 | val = ocp_reg_read(tp, OCP_EEE_ADV); |
| 6107 | adv = mmd_eee_adv_to_ethtool_adv_t(val); |
| 6108 | |
| 6109 | val = ocp_reg_read(tp, OCP_EEE_LPABLE); |
| 6110 | lp = mmd_eee_adv_to_ethtool_adv_t(val); |
| 6111 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6112 | eee->eee_enabled = tp->eee_en; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6113 | eee->eee_active = !!(supported & adv & lp); |
| 6114 | eee->supported = supported; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6115 | eee->advertised = tp->eee_adv; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6116 | eee->lp_advertised = lp; |
| 6117 | |
| 6118 | return 0; |
| 6119 | } |
| 6120 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6121 | static int |
| 6122 | rtl_ethtool_get_eee(struct net_device *net, struct ethtool_eee *edata) |
| 6123 | { |
| 6124 | struct r8152 *tp = netdev_priv(net); |
| 6125 | int ret; |
| 6126 | |
| 6127 | ret = usb_autopm_get_interface(tp->intf); |
| 6128 | if (ret < 0) |
| 6129 | goto out; |
| 6130 | |
| 6131 | mutex_lock(&tp->control); |
| 6132 | |
| 6133 | ret = tp->rtl_ops.eee_get(tp, edata); |
| 6134 | |
| 6135 | mutex_unlock(&tp->control); |
| 6136 | |
| 6137 | usb_autopm_put_interface(tp->intf); |
| 6138 | |
| 6139 | out: |
| 6140 | return ret; |
| 6141 | } |
| 6142 | |
| 6143 | static int |
| 6144 | rtl_ethtool_set_eee(struct net_device *net, struct ethtool_eee *edata) |
| 6145 | { |
| 6146 | struct r8152 *tp = netdev_priv(net); |
| 6147 | int ret; |
| 6148 | |
| 6149 | ret = usb_autopm_get_interface(tp->intf); |
| 6150 | if (ret < 0) |
| 6151 | goto out; |
| 6152 | |
| 6153 | mutex_lock(&tp->control); |
| 6154 | |
| 6155 | ret = tp->rtl_ops.eee_set(tp, edata); |
| 6156 | if (!ret) |
| 6157 | ret = mii_nway_restart(&tp->mii); |
| 6158 | |
| 6159 | mutex_unlock(&tp->control); |
| 6160 | |
| 6161 | usb_autopm_put_interface(tp->intf); |
| 6162 | |
| 6163 | out: |
| 6164 | return ret; |
| 6165 | } |
| 6166 | |
| 6167 | static int rtl8152_nway_reset(struct net_device *dev) |
| 6168 | { |
| 6169 | struct r8152 *tp = netdev_priv(dev); |
| 6170 | int ret; |
| 6171 | |
| 6172 | ret = usb_autopm_get_interface(tp->intf); |
| 6173 | if (ret < 0) |
| 6174 | goto out; |
| 6175 | |
| 6176 | mutex_lock(&tp->control); |
| 6177 | |
| 6178 | ret = mii_nway_restart(&tp->mii); |
| 6179 | |
| 6180 | mutex_unlock(&tp->control); |
| 6181 | |
| 6182 | usb_autopm_put_interface(tp->intf); |
| 6183 | |
| 6184 | out: |
| 6185 | return ret; |
| 6186 | } |
| 6187 | |
| 6188 | static int rtl8152_get_coalesce(struct net_device *netdev, |
| 6189 | struct ethtool_coalesce *coalesce) |
| 6190 | { |
| 6191 | struct r8152 *tp = netdev_priv(netdev); |
| 6192 | |
| 6193 | switch (tp->version) { |
| 6194 | case RTL_VER_01: |
| 6195 | case RTL_VER_02: |
| 6196 | case RTL_VER_07: |
| 6197 | return -EOPNOTSUPP; |
| 6198 | default: |
| 6199 | break; |
| 6200 | } |
| 6201 | |
| 6202 | coalesce->rx_coalesce_usecs = tp->coalesce; |
| 6203 | |
| 6204 | return 0; |
| 6205 | } |
| 6206 | |
| 6207 | static int rtl8152_set_coalesce(struct net_device *netdev, |
| 6208 | struct ethtool_coalesce *coalesce) |
| 6209 | { |
| 6210 | struct r8152 *tp = netdev_priv(netdev); |
| 6211 | int ret; |
| 6212 | |
| 6213 | switch (tp->version) { |
| 6214 | case RTL_VER_01: |
| 6215 | case RTL_VER_02: |
| 6216 | case RTL_VER_07: |
| 6217 | return -EOPNOTSUPP; |
| 6218 | default: |
| 6219 | break; |
| 6220 | } |
| 6221 | |
| 6222 | if (coalesce->rx_coalesce_usecs > COALESCE_SLOW) |
| 6223 | return -EINVAL; |
| 6224 | |
| 6225 | ret = usb_autopm_get_interface(tp->intf); |
| 6226 | if (ret < 0) |
| 6227 | return ret; |
| 6228 | |
| 6229 | mutex_lock(&tp->control); |
| 6230 | |
| 6231 | if (tp->coalesce != coalesce->rx_coalesce_usecs) { |
| 6232 | tp->coalesce = coalesce->rx_coalesce_usecs; |
| 6233 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6234 | if (netif_running(netdev) && netif_carrier_ok(netdev)) { |
| 6235 | netif_stop_queue(netdev); |
| 6236 | napi_disable(&tp->napi); |
| 6237 | tp->rtl_ops.disable(tp); |
| 6238 | tp->rtl_ops.enable(tp); |
| 6239 | rtl_start_rx(tp); |
| 6240 | clear_bit(RTL8152_SET_RX_MODE, &tp->flags); |
| 6241 | _rtl8152_set_rx_mode(netdev); |
| 6242 | napi_enable(&tp->napi); |
| 6243 | netif_wake_queue(netdev); |
| 6244 | } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6245 | } |
| 6246 | |
| 6247 | mutex_unlock(&tp->control); |
| 6248 | |
| 6249 | usb_autopm_put_interface(tp->intf); |
| 6250 | |
| 6251 | return ret; |
| 6252 | } |
| 6253 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6254 | static int rtl8152_get_tunable(struct net_device *netdev, |
| 6255 | const struct ethtool_tunable *tunable, void *d) |
| 6256 | { |
| 6257 | struct r8152 *tp = netdev_priv(netdev); |
| 6258 | |
| 6259 | switch (tunable->id) { |
| 6260 | case ETHTOOL_RX_COPYBREAK: |
| 6261 | *(u32 *)d = tp->rx_copybreak; |
| 6262 | break; |
| 6263 | default: |
| 6264 | return -EOPNOTSUPP; |
| 6265 | } |
| 6266 | |
| 6267 | return 0; |
| 6268 | } |
| 6269 | |
| 6270 | static int rtl8152_set_tunable(struct net_device *netdev, |
| 6271 | const struct ethtool_tunable *tunable, |
| 6272 | const void *d) |
| 6273 | { |
| 6274 | struct r8152 *tp = netdev_priv(netdev); |
| 6275 | u32 val; |
| 6276 | |
| 6277 | switch (tunable->id) { |
| 6278 | case ETHTOOL_RX_COPYBREAK: |
| 6279 | val = *(u32 *)d; |
| 6280 | if (val < ETH_ZLEN) { |
| 6281 | netif_err(tp, rx_err, netdev, |
| 6282 | "Invalid rx copy break value\n"); |
| 6283 | return -EINVAL; |
| 6284 | } |
| 6285 | |
| 6286 | if (tp->rx_copybreak != val) { |
| 6287 | if (netdev->flags & IFF_UP) { |
| 6288 | mutex_lock(&tp->control); |
| 6289 | napi_disable(&tp->napi); |
| 6290 | tp->rx_copybreak = val; |
| 6291 | napi_enable(&tp->napi); |
| 6292 | mutex_unlock(&tp->control); |
| 6293 | } else { |
| 6294 | tp->rx_copybreak = val; |
| 6295 | } |
| 6296 | } |
| 6297 | break; |
| 6298 | default: |
| 6299 | return -EOPNOTSUPP; |
| 6300 | } |
| 6301 | |
| 6302 | return 0; |
| 6303 | } |
| 6304 | |
| 6305 | static void rtl8152_get_ringparam(struct net_device *netdev, |
| 6306 | struct ethtool_ringparam *ring) |
| 6307 | { |
| 6308 | struct r8152 *tp = netdev_priv(netdev); |
| 6309 | |
| 6310 | ring->rx_max_pending = RTL8152_RX_MAX_PENDING; |
| 6311 | ring->rx_pending = tp->rx_pending; |
| 6312 | } |
| 6313 | |
| 6314 | static int rtl8152_set_ringparam(struct net_device *netdev, |
| 6315 | struct ethtool_ringparam *ring) |
| 6316 | { |
| 6317 | struct r8152 *tp = netdev_priv(netdev); |
| 6318 | |
| 6319 | if (ring->rx_pending < (RTL8152_MAX_RX * 2)) |
| 6320 | return -EINVAL; |
| 6321 | |
| 6322 | if (tp->rx_pending != ring->rx_pending) { |
| 6323 | if (netdev->flags & IFF_UP) { |
| 6324 | mutex_lock(&tp->control); |
| 6325 | napi_disable(&tp->napi); |
| 6326 | tp->rx_pending = ring->rx_pending; |
| 6327 | napi_enable(&tp->napi); |
| 6328 | mutex_unlock(&tp->control); |
| 6329 | } else { |
| 6330 | tp->rx_pending = ring->rx_pending; |
| 6331 | } |
| 6332 | } |
| 6333 | |
| 6334 | return 0; |
| 6335 | } |
| 6336 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6337 | static const struct ethtool_ops ops = { |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 6338 | .supported_coalesce_params = ETHTOOL_COALESCE_USECS, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6339 | .get_drvinfo = rtl8152_get_drvinfo, |
| 6340 | .get_link = ethtool_op_get_link, |
| 6341 | .nway_reset = rtl8152_nway_reset, |
| 6342 | .get_msglevel = rtl8152_get_msglevel, |
| 6343 | .set_msglevel = rtl8152_set_msglevel, |
| 6344 | .get_wol = rtl8152_get_wol, |
| 6345 | .set_wol = rtl8152_set_wol, |
| 6346 | .get_strings = rtl8152_get_strings, |
| 6347 | .get_sset_count = rtl8152_get_sset_count, |
| 6348 | .get_ethtool_stats = rtl8152_get_ethtool_stats, |
| 6349 | .get_coalesce = rtl8152_get_coalesce, |
| 6350 | .set_coalesce = rtl8152_set_coalesce, |
| 6351 | .get_eee = rtl_ethtool_get_eee, |
| 6352 | .set_eee = rtl_ethtool_set_eee, |
| 6353 | .get_link_ksettings = rtl8152_get_link_ksettings, |
| 6354 | .set_link_ksettings = rtl8152_set_link_ksettings, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6355 | .get_tunable = rtl8152_get_tunable, |
| 6356 | .set_tunable = rtl8152_set_tunable, |
| 6357 | .get_ringparam = rtl8152_get_ringparam, |
| 6358 | .set_ringparam = rtl8152_set_ringparam, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6359 | }; |
| 6360 | |
| 6361 | static int rtl8152_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd) |
| 6362 | { |
| 6363 | struct r8152 *tp = netdev_priv(netdev); |
| 6364 | struct mii_ioctl_data *data = if_mii(rq); |
| 6365 | int res; |
| 6366 | |
| 6367 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 6368 | return -ENODEV; |
| 6369 | |
| 6370 | res = usb_autopm_get_interface(tp->intf); |
| 6371 | if (res < 0) |
| 6372 | goto out; |
| 6373 | |
| 6374 | switch (cmd) { |
| 6375 | case SIOCGMIIPHY: |
| 6376 | data->phy_id = R8152_PHY_ID; /* Internal PHY */ |
| 6377 | break; |
| 6378 | |
| 6379 | case SIOCGMIIREG: |
| 6380 | mutex_lock(&tp->control); |
| 6381 | data->val_out = r8152_mdio_read(tp, data->reg_num); |
| 6382 | mutex_unlock(&tp->control); |
| 6383 | break; |
| 6384 | |
| 6385 | case SIOCSMIIREG: |
| 6386 | if (!capable(CAP_NET_ADMIN)) { |
| 6387 | res = -EPERM; |
| 6388 | break; |
| 6389 | } |
| 6390 | mutex_lock(&tp->control); |
| 6391 | r8152_mdio_write(tp, data->reg_num, data->val_in); |
| 6392 | mutex_unlock(&tp->control); |
| 6393 | break; |
| 6394 | |
| 6395 | default: |
| 6396 | res = -EOPNOTSUPP; |
| 6397 | } |
| 6398 | |
| 6399 | usb_autopm_put_interface(tp->intf); |
| 6400 | |
| 6401 | out: |
| 6402 | return res; |
| 6403 | } |
| 6404 | |
| 6405 | static int rtl8152_change_mtu(struct net_device *dev, int new_mtu) |
| 6406 | { |
| 6407 | struct r8152 *tp = netdev_priv(dev); |
| 6408 | int ret; |
| 6409 | |
| 6410 | switch (tp->version) { |
| 6411 | case RTL_VER_01: |
| 6412 | case RTL_VER_02: |
| 6413 | case RTL_VER_07: |
| 6414 | dev->mtu = new_mtu; |
| 6415 | return 0; |
| 6416 | default: |
| 6417 | break; |
| 6418 | } |
| 6419 | |
| 6420 | ret = usb_autopm_get_interface(tp->intf); |
| 6421 | if (ret < 0) |
| 6422 | return ret; |
| 6423 | |
| 6424 | mutex_lock(&tp->control); |
| 6425 | |
| 6426 | dev->mtu = new_mtu; |
| 6427 | |
| 6428 | if (netif_running(dev)) { |
| 6429 | u32 rms = new_mtu + VLAN_ETH_HLEN + ETH_FCS_LEN; |
| 6430 | |
| 6431 | ocp_write_word(tp, MCU_TYPE_PLA, PLA_RMS, rms); |
| 6432 | |
| 6433 | if (netif_carrier_ok(dev)) |
| 6434 | r8153_set_rx_early_size(tp); |
| 6435 | } |
| 6436 | |
| 6437 | mutex_unlock(&tp->control); |
| 6438 | |
| 6439 | usb_autopm_put_interface(tp->intf); |
| 6440 | |
| 6441 | return ret; |
| 6442 | } |
| 6443 | |
| 6444 | static const struct net_device_ops rtl8152_netdev_ops = { |
| 6445 | .ndo_open = rtl8152_open, |
| 6446 | .ndo_stop = rtl8152_close, |
| 6447 | .ndo_do_ioctl = rtl8152_ioctl, |
| 6448 | .ndo_start_xmit = rtl8152_start_xmit, |
| 6449 | .ndo_tx_timeout = rtl8152_tx_timeout, |
| 6450 | .ndo_set_features = rtl8152_set_features, |
| 6451 | .ndo_set_rx_mode = rtl8152_set_rx_mode, |
| 6452 | .ndo_set_mac_address = rtl8152_set_mac_address, |
| 6453 | .ndo_change_mtu = rtl8152_change_mtu, |
| 6454 | .ndo_validate_addr = eth_validate_addr, |
| 6455 | .ndo_features_check = rtl8152_features_check, |
| 6456 | }; |
| 6457 | |
| 6458 | static void rtl8152_unload(struct r8152 *tp) |
| 6459 | { |
| 6460 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 6461 | return; |
| 6462 | |
| 6463 | if (tp->version != RTL_VER_01) |
| 6464 | r8152_power_cut_en(tp, true); |
| 6465 | } |
| 6466 | |
| 6467 | static void rtl8153_unload(struct r8152 *tp) |
| 6468 | { |
| 6469 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 6470 | return; |
| 6471 | |
| 6472 | r8153_power_cut_en(tp, false); |
| 6473 | } |
| 6474 | |
| 6475 | static void rtl8153b_unload(struct r8152 *tp) |
| 6476 | { |
| 6477 | if (test_bit(RTL8152_UNPLUG, &tp->flags)) |
| 6478 | return; |
| 6479 | |
| 6480 | r8153b_power_cut_en(tp, false); |
| 6481 | } |
| 6482 | |
| 6483 | static int rtl_ops_init(struct r8152 *tp) |
| 6484 | { |
| 6485 | struct rtl_ops *ops = &tp->rtl_ops; |
| 6486 | int ret = 0; |
| 6487 | |
| 6488 | switch (tp->version) { |
| 6489 | case RTL_VER_01: |
| 6490 | case RTL_VER_02: |
| 6491 | case RTL_VER_07: |
| 6492 | ops->init = r8152b_init; |
| 6493 | ops->enable = rtl8152_enable; |
| 6494 | ops->disable = rtl8152_disable; |
| 6495 | ops->up = rtl8152_up; |
| 6496 | ops->down = rtl8152_down; |
| 6497 | ops->unload = rtl8152_unload; |
| 6498 | ops->eee_get = r8152_get_eee; |
| 6499 | ops->eee_set = r8152_set_eee; |
| 6500 | ops->in_nway = rtl8152_in_nway; |
| 6501 | ops->hw_phy_cfg = r8152b_hw_phy_cfg; |
| 6502 | ops->autosuspend_en = rtl_runtime_suspend_enable; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6503 | tp->rx_buf_sz = 16 * 1024; |
| 6504 | tp->eee_en = true; |
| 6505 | tp->eee_adv = MDIO_EEE_100TX; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6506 | break; |
| 6507 | |
| 6508 | case RTL_VER_03: |
| 6509 | case RTL_VER_04: |
| 6510 | case RTL_VER_05: |
| 6511 | case RTL_VER_06: |
| 6512 | ops->init = r8153_init; |
| 6513 | ops->enable = rtl8153_enable; |
| 6514 | ops->disable = rtl8153_disable; |
| 6515 | ops->up = rtl8153_up; |
| 6516 | ops->down = rtl8153_down; |
| 6517 | ops->unload = rtl8153_unload; |
| 6518 | ops->eee_get = r8153_get_eee; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6519 | ops->eee_set = r8152_set_eee; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6520 | ops->in_nway = rtl8153_in_nway; |
| 6521 | ops->hw_phy_cfg = r8153_hw_phy_cfg; |
| 6522 | ops->autosuspend_en = rtl8153_runtime_enable; |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 6523 | if (tp->udev->speed < USB_SPEED_SUPER) |
| 6524 | tp->rx_buf_sz = 16 * 1024; |
| 6525 | else |
| 6526 | tp->rx_buf_sz = 32 * 1024; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6527 | tp->eee_en = true; |
| 6528 | tp->eee_adv = MDIO_EEE_1000T | MDIO_EEE_100TX; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6529 | break; |
| 6530 | |
| 6531 | case RTL_VER_08: |
| 6532 | case RTL_VER_09: |
| 6533 | ops->init = r8153b_init; |
| 6534 | ops->enable = rtl8153_enable; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6535 | ops->disable = rtl8153_disable; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6536 | ops->up = rtl8153b_up; |
| 6537 | ops->down = rtl8153b_down; |
| 6538 | ops->unload = rtl8153b_unload; |
| 6539 | ops->eee_get = r8153_get_eee; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6540 | ops->eee_set = r8152_set_eee; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6541 | ops->in_nway = rtl8153_in_nway; |
| 6542 | ops->hw_phy_cfg = r8153b_hw_phy_cfg; |
| 6543 | ops->autosuspend_en = rtl8153b_runtime_enable; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6544 | tp->rx_buf_sz = 32 * 1024; |
| 6545 | tp->eee_en = true; |
| 6546 | tp->eee_adv = MDIO_EEE_1000T | MDIO_EEE_100TX; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6547 | break; |
| 6548 | |
| 6549 | default: |
| 6550 | ret = -ENODEV; |
| 6551 | netif_err(tp, probe, tp->netdev, "Unknown Device\n"); |
| 6552 | break; |
| 6553 | } |
| 6554 | |
| 6555 | return ret; |
| 6556 | } |
| 6557 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 6558 | #define FIRMWARE_8153A_2 "rtl_nic/rtl8153a-2.fw" |
| 6559 | #define FIRMWARE_8153A_3 "rtl_nic/rtl8153a-3.fw" |
| 6560 | #define FIRMWARE_8153A_4 "rtl_nic/rtl8153a-4.fw" |
| 6561 | #define FIRMWARE_8153B_2 "rtl_nic/rtl8153b-2.fw" |
| 6562 | |
| 6563 | MODULE_FIRMWARE(FIRMWARE_8153A_2); |
| 6564 | MODULE_FIRMWARE(FIRMWARE_8153A_3); |
| 6565 | MODULE_FIRMWARE(FIRMWARE_8153A_4); |
| 6566 | MODULE_FIRMWARE(FIRMWARE_8153B_2); |
| 6567 | |
| 6568 | static int rtl_fw_init(struct r8152 *tp) |
| 6569 | { |
| 6570 | struct rtl_fw *rtl_fw = &tp->rtl_fw; |
| 6571 | |
| 6572 | switch (tp->version) { |
| 6573 | case RTL_VER_04: |
| 6574 | rtl_fw->fw_name = FIRMWARE_8153A_2; |
| 6575 | rtl_fw->pre_fw = r8153_pre_firmware_1; |
| 6576 | rtl_fw->post_fw = r8153_post_firmware_1; |
| 6577 | break; |
| 6578 | case RTL_VER_05: |
| 6579 | rtl_fw->fw_name = FIRMWARE_8153A_3; |
| 6580 | rtl_fw->pre_fw = r8153_pre_firmware_2; |
| 6581 | rtl_fw->post_fw = r8153_post_firmware_2; |
| 6582 | break; |
| 6583 | case RTL_VER_06: |
| 6584 | rtl_fw->fw_name = FIRMWARE_8153A_4; |
| 6585 | rtl_fw->post_fw = r8153_post_firmware_3; |
| 6586 | break; |
| 6587 | case RTL_VER_09: |
| 6588 | rtl_fw->fw_name = FIRMWARE_8153B_2; |
| 6589 | rtl_fw->pre_fw = r8153b_pre_firmware_1; |
| 6590 | rtl_fw->post_fw = r8153b_post_firmware_1; |
| 6591 | break; |
| 6592 | default: |
| 6593 | break; |
| 6594 | } |
| 6595 | |
| 6596 | return 0; |
| 6597 | } |
| 6598 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6599 | static u8 rtl_get_version(struct usb_interface *intf) |
| 6600 | { |
| 6601 | struct usb_device *udev = interface_to_usbdev(intf); |
| 6602 | u32 ocp_data = 0; |
| 6603 | __le32 *tmp; |
| 6604 | u8 version; |
| 6605 | int ret; |
| 6606 | |
| 6607 | tmp = kmalloc(sizeof(*tmp), GFP_KERNEL); |
| 6608 | if (!tmp) |
| 6609 | return 0; |
| 6610 | |
| 6611 | ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), |
| 6612 | RTL8152_REQ_GET_REGS, RTL8152_REQT_READ, |
| 6613 | PLA_TCR0, MCU_TYPE_PLA, tmp, sizeof(*tmp), 500); |
| 6614 | if (ret > 0) |
| 6615 | ocp_data = (__le32_to_cpu(*tmp) >> 16) & VERSION_MASK; |
| 6616 | |
| 6617 | kfree(tmp); |
| 6618 | |
| 6619 | switch (ocp_data) { |
| 6620 | case 0x4c00: |
| 6621 | version = RTL_VER_01; |
| 6622 | break; |
| 6623 | case 0x4c10: |
| 6624 | version = RTL_VER_02; |
| 6625 | break; |
| 6626 | case 0x5c00: |
| 6627 | version = RTL_VER_03; |
| 6628 | break; |
| 6629 | case 0x5c10: |
| 6630 | version = RTL_VER_04; |
| 6631 | break; |
| 6632 | case 0x5c20: |
| 6633 | version = RTL_VER_05; |
| 6634 | break; |
| 6635 | case 0x5c30: |
| 6636 | version = RTL_VER_06; |
| 6637 | break; |
| 6638 | case 0x4800: |
| 6639 | version = RTL_VER_07; |
| 6640 | break; |
| 6641 | case 0x6000: |
| 6642 | version = RTL_VER_08; |
| 6643 | break; |
| 6644 | case 0x6010: |
| 6645 | version = RTL_VER_09; |
| 6646 | break; |
| 6647 | default: |
| 6648 | version = RTL_VER_UNKNOWN; |
| 6649 | dev_info(&intf->dev, "Unknown version 0x%04x\n", ocp_data); |
| 6650 | break; |
| 6651 | } |
| 6652 | |
| 6653 | dev_dbg(&intf->dev, "Detected version 0x%04x\n", version); |
| 6654 | |
| 6655 | return version; |
| 6656 | } |
| 6657 | |
| 6658 | static int rtl8152_probe(struct usb_interface *intf, |
| 6659 | const struct usb_device_id *id) |
| 6660 | { |
| 6661 | struct usb_device *udev = interface_to_usbdev(intf); |
| 6662 | u8 version = rtl_get_version(intf); |
| 6663 | struct r8152 *tp; |
| 6664 | struct net_device *netdev; |
| 6665 | int ret; |
| 6666 | |
| 6667 | if (version == RTL_VER_UNKNOWN) |
| 6668 | return -ENODEV; |
| 6669 | |
| 6670 | if (udev->actconfig->desc.bConfigurationValue != 1) { |
| 6671 | usb_driver_set_configuration(udev, 1); |
| 6672 | return -ENODEV; |
| 6673 | } |
| 6674 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 6675 | if (intf->cur_altsetting->desc.bNumEndpoints < 3) |
| 6676 | return -ENODEV; |
| 6677 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6678 | usb_reset_device(udev); |
| 6679 | netdev = alloc_etherdev(sizeof(struct r8152)); |
| 6680 | if (!netdev) { |
| 6681 | dev_err(&intf->dev, "Out of memory\n"); |
| 6682 | return -ENOMEM; |
| 6683 | } |
| 6684 | |
| 6685 | SET_NETDEV_DEV(netdev, &intf->dev); |
| 6686 | tp = netdev_priv(netdev); |
| 6687 | tp->msg_enable = 0x7FFF; |
| 6688 | |
| 6689 | tp->udev = udev; |
| 6690 | tp->netdev = netdev; |
| 6691 | tp->intf = intf; |
| 6692 | tp->version = version; |
| 6693 | |
| 6694 | switch (version) { |
| 6695 | case RTL_VER_01: |
| 6696 | case RTL_VER_02: |
| 6697 | case RTL_VER_07: |
| 6698 | tp->mii.supports_gmii = 0; |
| 6699 | break; |
| 6700 | default: |
| 6701 | tp->mii.supports_gmii = 1; |
| 6702 | break; |
| 6703 | } |
| 6704 | |
| 6705 | ret = rtl_ops_init(tp); |
| 6706 | if (ret) |
| 6707 | goto out; |
| 6708 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 6709 | rtl_fw_init(tp); |
| 6710 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6711 | mutex_init(&tp->control); |
| 6712 | INIT_DELAYED_WORK(&tp->schedule, rtl_work_func_t); |
| 6713 | INIT_DELAYED_WORK(&tp->hw_phy_work, rtl_hw_phy_work_func_t); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6714 | tasklet_init(&tp->tx_tl, bottom_half, (unsigned long)tp); |
| 6715 | tasklet_disable(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6716 | |
| 6717 | netdev->netdev_ops = &rtl8152_netdev_ops; |
| 6718 | netdev->watchdog_timeo = RTL8152_TX_TIMEOUT; |
| 6719 | |
| 6720 | netdev->features |= NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG | |
| 6721 | NETIF_F_TSO | NETIF_F_FRAGLIST | NETIF_F_IPV6_CSUM | |
| 6722 | NETIF_F_TSO6 | NETIF_F_HW_VLAN_CTAG_RX | |
| 6723 | NETIF_F_HW_VLAN_CTAG_TX; |
| 6724 | netdev->hw_features = NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG | |
| 6725 | NETIF_F_TSO | NETIF_F_FRAGLIST | |
| 6726 | NETIF_F_IPV6_CSUM | NETIF_F_TSO6 | |
| 6727 | NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX; |
| 6728 | netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO | |
| 6729 | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST | |
| 6730 | NETIF_F_IPV6_CSUM | NETIF_F_TSO6; |
| 6731 | |
| 6732 | if (tp->version == RTL_VER_01) { |
| 6733 | netdev->features &= ~NETIF_F_RXCSUM; |
| 6734 | netdev->hw_features &= ~NETIF_F_RXCSUM; |
| 6735 | } |
| 6736 | |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 6737 | if (le16_to_cpu(udev->descriptor.idVendor) == VENDOR_ID_LENOVO) { |
| 6738 | switch (le16_to_cpu(udev->descriptor.idProduct)) { |
| 6739 | case DEVICE_ID_THINKPAD_THUNDERBOLT3_DOCK_GEN2: |
| 6740 | case DEVICE_ID_THINKPAD_USB_C_DOCK_GEN2: |
| 6741 | set_bit(LENOVO_MACPASSTHRU, &tp->flags); |
| 6742 | } |
| 6743 | } |
| 6744 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6745 | if (le16_to_cpu(udev->descriptor.bcdDevice) == 0x3011 && udev->serial && |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 6746 | (!strcmp(udev->serial, "000001000000") || |
| 6747 | !strcmp(udev->serial, "000002000000"))) { |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6748 | dev_info(&udev->dev, "Dell TB16 Dock, disable RX aggregation"); |
| 6749 | set_bit(DELL_TB_RX_AGG_BUG, &tp->flags); |
| 6750 | } |
| 6751 | |
| 6752 | netdev->ethtool_ops = &ops; |
| 6753 | netif_set_gso_max_size(netdev, RTL_LIMITED_TSO_SIZE); |
| 6754 | |
| 6755 | /* MTU range: 68 - 1500 or 9194 */ |
| 6756 | netdev->min_mtu = ETH_MIN_MTU; |
| 6757 | switch (tp->version) { |
| 6758 | case RTL_VER_01: |
| 6759 | case RTL_VER_02: |
| 6760 | netdev->max_mtu = ETH_DATA_LEN; |
| 6761 | break; |
| 6762 | default: |
| 6763 | netdev->max_mtu = RTL8153_MAX_MTU; |
| 6764 | break; |
| 6765 | } |
| 6766 | |
| 6767 | tp->mii.dev = netdev; |
| 6768 | tp->mii.mdio_read = read_mii_word; |
| 6769 | tp->mii.mdio_write = write_mii_word; |
| 6770 | tp->mii.phy_id_mask = 0x3f; |
| 6771 | tp->mii.reg_num_mask = 0x1f; |
| 6772 | tp->mii.phy_id = R8152_PHY_ID; |
| 6773 | |
| 6774 | tp->autoneg = AUTONEG_ENABLE; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6775 | tp->speed = SPEED_100; |
| 6776 | tp->advertising = RTL_ADVERTISED_10_HALF | RTL_ADVERTISED_10_FULL | |
| 6777 | RTL_ADVERTISED_100_HALF | RTL_ADVERTISED_100_FULL; |
| 6778 | if (tp->mii.supports_gmii) { |
| 6779 | tp->speed = SPEED_1000; |
| 6780 | tp->advertising |= RTL_ADVERTISED_1000_FULL; |
| 6781 | } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6782 | tp->duplex = DUPLEX_FULL; |
| 6783 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6784 | tp->rx_copybreak = RTL8152_RXFG_HEADSZ; |
| 6785 | tp->rx_pending = 10 * RTL8152_MAX_RX; |
| 6786 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6787 | intf->needs_remote_wakeup = 1; |
| 6788 | |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 6789 | if (!rtl_can_wakeup(tp)) |
| 6790 | __rtl_set_wol(tp, 0); |
| 6791 | else |
| 6792 | tp->saved_wolopts = __rtl_get_wol(tp); |
| 6793 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6794 | tp->rtl_ops.init(tp); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 6795 | #if IS_BUILTIN(CONFIG_USB_RTL8152) |
| 6796 | /* Retry in case request_firmware() is not ready yet. */ |
| 6797 | tp->rtl_fw.retry = true; |
| 6798 | #endif |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6799 | queue_delayed_work(system_long_wq, &tp->hw_phy_work, 0); |
| 6800 | set_ethernet_addr(tp); |
| 6801 | |
| 6802 | usb_set_intfdata(intf, tp); |
| 6803 | netif_napi_add(netdev, &tp->napi, r8152_poll, RTL8152_NAPI_WEIGHT); |
| 6804 | |
| 6805 | ret = register_netdev(netdev); |
| 6806 | if (ret != 0) { |
| 6807 | netif_err(tp, probe, netdev, "couldn't register the device\n"); |
| 6808 | goto out1; |
| 6809 | } |
| 6810 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6811 | if (tp->saved_wolopts) |
| 6812 | device_set_wakeup_enable(&udev->dev, true); |
| 6813 | else |
| 6814 | device_set_wakeup_enable(&udev->dev, false); |
| 6815 | |
| 6816 | netif_info(tp, probe, netdev, "%s\n", DRIVER_VERSION); |
| 6817 | |
| 6818 | return 0; |
| 6819 | |
| 6820 | out1: |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6821 | tasklet_kill(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6822 | usb_set_intfdata(intf, NULL); |
| 6823 | out: |
| 6824 | free_netdev(netdev); |
| 6825 | return ret; |
| 6826 | } |
| 6827 | |
| 6828 | static void rtl8152_disconnect(struct usb_interface *intf) |
| 6829 | { |
| 6830 | struct r8152 *tp = usb_get_intfdata(intf); |
| 6831 | |
| 6832 | usb_set_intfdata(intf, NULL); |
| 6833 | if (tp) { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6834 | rtl_set_unplug(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6835 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6836 | unregister_netdev(tp->netdev); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6837 | tasklet_kill(&tp->tx_tl); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6838 | cancel_delayed_work_sync(&tp->hw_phy_work); |
| 6839 | tp->rtl_ops.unload(tp); |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 6840 | rtl8152_release_firmware(tp); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6841 | free_netdev(tp->netdev); |
| 6842 | } |
| 6843 | } |
| 6844 | |
| 6845 | #define REALTEK_USB_DEVICE(vend, prod) \ |
| 6846 | .match_flags = USB_DEVICE_ID_MATCH_DEVICE | \ |
| 6847 | USB_DEVICE_ID_MATCH_INT_CLASS, \ |
| 6848 | .idVendor = (vend), \ |
| 6849 | .idProduct = (prod), \ |
| 6850 | .bInterfaceClass = USB_CLASS_VENDOR_SPEC \ |
| 6851 | }, \ |
| 6852 | { \ |
| 6853 | .match_flags = USB_DEVICE_ID_MATCH_INT_INFO | \ |
| 6854 | USB_DEVICE_ID_MATCH_DEVICE, \ |
| 6855 | .idVendor = (vend), \ |
| 6856 | .idProduct = (prod), \ |
| 6857 | .bInterfaceClass = USB_CLASS_COMM, \ |
| 6858 | .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, \ |
| 6859 | .bInterfaceProtocol = USB_CDC_PROTO_NONE |
| 6860 | |
| 6861 | /* table of devices that work with this driver */ |
| 6862 | static const struct usb_device_id rtl8152_table[] = { |
| 6863 | {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8050)}, |
| 6864 | {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8152)}, |
| 6865 | {REALTEK_USB_DEVICE(VENDOR_ID_REALTEK, 0x8153)}, |
| 6866 | {REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07ab)}, |
| 6867 | {REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x07c6)}, |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 6868 | {REALTEK_USB_DEVICE(VENDOR_ID_MICROSOFT, 0x0927)}, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6869 | {REALTEK_USB_DEVICE(VENDOR_ID_SAMSUNG, 0xa101)}, |
| 6870 | {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x304f)}, |
| 6871 | {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3062)}, |
| 6872 | {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3069)}, |
Olivier Deprez | 157378f | 2022-04-04 15:47:50 +0200 | [diff] [blame^] | 6873 | {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x3082)}, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6874 | {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x7205)}, |
| 6875 | {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x720c)}, |
| 6876 | {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x7214)}, |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 6877 | {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0x721e)}, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 6878 | {REALTEK_USB_DEVICE(VENDOR_ID_LENOVO, 0xa387)}, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6879 | {REALTEK_USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041)}, |
| 6880 | {REALTEK_USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff)}, |
| 6881 | {REALTEK_USB_DEVICE(VENDOR_ID_TPLINK, 0x0601)}, |
| 6882 | {} |
| 6883 | }; |
| 6884 | |
| 6885 | MODULE_DEVICE_TABLE(usb, rtl8152_table); |
| 6886 | |
| 6887 | static struct usb_driver rtl8152_driver = { |
| 6888 | .name = MODULENAME, |
| 6889 | .id_table = rtl8152_table, |
| 6890 | .probe = rtl8152_probe, |
| 6891 | .disconnect = rtl8152_disconnect, |
| 6892 | .suspend = rtl8152_suspend, |
| 6893 | .resume = rtl8152_resume, |
| 6894 | .reset_resume = rtl8152_reset_resume, |
| 6895 | .pre_reset = rtl8152_pre_reset, |
| 6896 | .post_reset = rtl8152_post_reset, |
| 6897 | .supports_autosuspend = 1, |
| 6898 | .disable_hub_initiated_lpm = 1, |
| 6899 | }; |
| 6900 | |
| 6901 | module_usb_driver(rtl8152_driver); |
| 6902 | |
| 6903 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 6904 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 6905 | MODULE_LICENSE("GPL"); |
| 6906 | MODULE_VERSION(DRIVER_VERSION); |