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