1 /* 2 * Copyright (C) 2015 Cavium, Inc. 3 * 4 * This program is free software; you can redistribute it and/or modify it 5 * under the terms of version 2 of the GNU General Public License 6 * as published by the Free Software Foundation. 7 */ 8 9 #include <linux/module.h> 10 #include <linux/interrupt.h> 11 #include <linux/pci.h> 12 #include <linux/netdevice.h> 13 #include <linux/etherdevice.h> 14 #include <linux/phy.h> 15 #include <linux/of.h> 16 #include <linux/of_mdio.h> 17 #include <linux/of_net.h> 18 19 #include "nic_reg.h" 20 #include "nic.h" 21 #include "thunder_bgx.h" 22 23 #define DRV_NAME "thunder-BGX" 24 #define DRV_VERSION "1.0" 25 26 struct lmac { 27 struct bgx *bgx; 28 int dmac; 29 unsigned char mac[ETH_ALEN]; 30 bool link_up; 31 int lmacid; /* ID within BGX */ 32 int lmacid_bd; /* ID on board */ 33 struct net_device netdev; 34 struct phy_device *phydev; 35 unsigned int last_duplex; 36 unsigned int last_link; 37 unsigned int last_speed; 38 bool is_sgmii; 39 struct delayed_work dwork; 40 struct workqueue_struct *check_link; 41 }; 42 43 struct bgx { 44 u8 bgx_id; 45 u8 qlm_mode; 46 struct lmac lmac[MAX_LMAC_PER_BGX]; 47 int lmac_count; 48 int lmac_type; 49 int lane_to_sds; 50 int use_training; 51 void __iomem *reg_base; 52 struct pci_dev *pdev; 53 }; 54 55 static struct bgx *bgx_vnic[MAX_BGX_THUNDER]; 56 static int lmac_count; /* Total no of LMACs in system */ 57 58 static int bgx_xaui_check_link(struct lmac *lmac); 59 60 /* Supported devices */ 61 static const struct pci_device_id bgx_id_table[] = { 62 { PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, PCI_DEVICE_ID_THUNDER_BGX) }, 63 { 0, } /* end of table */ 64 }; 65 66 MODULE_AUTHOR("Cavium Inc"); 67 MODULE_DESCRIPTION("Cavium Thunder BGX/MAC Driver"); 68 MODULE_LICENSE("GPL v2"); 69 MODULE_VERSION(DRV_VERSION); 70 MODULE_DEVICE_TABLE(pci, bgx_id_table); 71 72 /* The Cavium ThunderX network controller can *only* be found in SoCs 73 * containing the ThunderX ARM64 CPU implementation. All accesses to the device 74 * registers on this platform are implicitly strongly ordered with respect 75 * to memory accesses. So writeq_relaxed() and readq_relaxed() are safe to use 76 * with no memory barriers in this driver. The readq()/writeq() functions add 77 * explicit ordering operation which in this case are redundant, and only 78 * add overhead. 79 */ 80 81 /* Register read/write APIs */ 82 static u64 bgx_reg_read(struct bgx *bgx, u8 lmac, u64 offset) 83 { 84 void __iomem *addr = bgx->reg_base + ((u32)lmac << 20) + offset; 85 86 return readq_relaxed(addr); 87 } 88 89 static void bgx_reg_write(struct bgx *bgx, u8 lmac, u64 offset, u64 val) 90 { 91 void __iomem *addr = bgx->reg_base + ((u32)lmac << 20) + offset; 92 93 writeq_relaxed(val, addr); 94 } 95 96 static void bgx_reg_modify(struct bgx *bgx, u8 lmac, u64 offset, u64 val) 97 { 98 void __iomem *addr = bgx->reg_base + ((u32)lmac << 20) + offset; 99 100 writeq_relaxed(val | readq_relaxed(addr), addr); 101 } 102 103 static int bgx_poll_reg(struct bgx *bgx, u8 lmac, u64 reg, u64 mask, bool zero) 104 { 105 int timeout = 100; 106 u64 reg_val; 107 108 while (timeout) { 109 reg_val = bgx_reg_read(bgx, lmac, reg); 110 if (zero && !(reg_val & mask)) 111 return 0; 112 if (!zero && (reg_val & mask)) 113 return 0; 114 usleep_range(1000, 2000); 115 timeout--; 116 } 117 return 1; 118 } 119 120 /* Return number of BGX present in HW */ 121 unsigned bgx_get_map(int node) 122 { 123 int i; 124 unsigned map = 0; 125 126 for (i = 0; i < MAX_BGX_PER_CN88XX; i++) { 127 if (bgx_vnic[(node * MAX_BGX_PER_CN88XX) + i]) 128 map |= (1 << i); 129 } 130 131 return map; 132 } 133 EXPORT_SYMBOL(bgx_get_map); 134 135 /* Return number of LMAC configured for this BGX */ 136 int bgx_get_lmac_count(int node, int bgx_idx) 137 { 138 struct bgx *bgx; 139 140 bgx = bgx_vnic[(node * MAX_BGX_PER_CN88XX) + bgx_idx]; 141 if (bgx) 142 return bgx->lmac_count; 143 144 return 0; 145 } 146 EXPORT_SYMBOL(bgx_get_lmac_count); 147 148 /* Returns the current link status of LMAC */ 149 void bgx_get_lmac_link_state(int node, int bgx_idx, int lmacid, void *status) 150 { 151 struct bgx_link_status *link = (struct bgx_link_status *)status; 152 struct bgx *bgx; 153 struct lmac *lmac; 154 155 bgx = bgx_vnic[(node * MAX_BGX_PER_CN88XX) + bgx_idx]; 156 if (!bgx) 157 return; 158 159 lmac = &bgx->lmac[lmacid]; 160 link->link_up = lmac->link_up; 161 link->duplex = lmac->last_duplex; 162 link->speed = lmac->last_speed; 163 } 164 EXPORT_SYMBOL(bgx_get_lmac_link_state); 165 166 const u8 *bgx_get_lmac_mac(int node, int bgx_idx, int lmacid) 167 { 168 struct bgx *bgx = bgx_vnic[(node * MAX_BGX_PER_CN88XX) + bgx_idx]; 169 170 if (bgx) 171 return bgx->lmac[lmacid].mac; 172 173 return NULL; 174 } 175 EXPORT_SYMBOL(bgx_get_lmac_mac); 176 177 void bgx_set_lmac_mac(int node, int bgx_idx, int lmacid, const u8 *mac) 178 { 179 struct bgx *bgx = bgx_vnic[(node * MAX_BGX_PER_CN88XX) + bgx_idx]; 180 181 if (!bgx) 182 return; 183 184 ether_addr_copy(bgx->lmac[lmacid].mac, mac); 185 } 186 EXPORT_SYMBOL(bgx_set_lmac_mac); 187 188 static void bgx_sgmii_change_link_state(struct lmac *lmac) 189 { 190 struct bgx *bgx = lmac->bgx; 191 u64 cmr_cfg; 192 u64 port_cfg = 0; 193 u64 misc_ctl = 0; 194 195 cmr_cfg = bgx_reg_read(bgx, lmac->lmacid, BGX_CMRX_CFG); 196 cmr_cfg &= ~CMR_EN; 197 bgx_reg_write(bgx, lmac->lmacid, BGX_CMRX_CFG, cmr_cfg); 198 199 port_cfg = bgx_reg_read(bgx, lmac->lmacid, BGX_GMP_GMI_PRTX_CFG); 200 misc_ctl = bgx_reg_read(bgx, lmac->lmacid, BGX_GMP_PCS_MISCX_CTL); 201 202 if (lmac->link_up) { 203 misc_ctl &= ~PCS_MISC_CTL_GMX_ENO; 204 port_cfg &= ~GMI_PORT_CFG_DUPLEX; 205 port_cfg |= (lmac->last_duplex << 2); 206 } else { 207 misc_ctl |= PCS_MISC_CTL_GMX_ENO; 208 } 209 210 switch (lmac->last_speed) { 211 case 10: 212 port_cfg &= ~GMI_PORT_CFG_SPEED; /* speed 0 */ 213 port_cfg |= GMI_PORT_CFG_SPEED_MSB; /* speed_msb 1 */ 214 port_cfg &= ~GMI_PORT_CFG_SLOT_TIME; /* slottime 0 */ 215 misc_ctl &= ~PCS_MISC_CTL_SAMP_PT_MASK; 216 misc_ctl |= 50; /* samp_pt */ 217 bgx_reg_write(bgx, lmac->lmacid, BGX_GMP_GMI_TXX_SLOT, 64); 218 bgx_reg_write(bgx, lmac->lmacid, BGX_GMP_GMI_TXX_BURST, 0); 219 break; 220 case 100: 221 port_cfg &= ~GMI_PORT_CFG_SPEED; /* speed 0 */ 222 port_cfg &= ~GMI_PORT_CFG_SPEED_MSB; /* speed_msb 0 */ 223 port_cfg &= ~GMI_PORT_CFG_SLOT_TIME; /* slottime 0 */ 224 misc_ctl &= ~PCS_MISC_CTL_SAMP_PT_MASK; 225 misc_ctl |= 5; /* samp_pt */ 226 bgx_reg_write(bgx, lmac->lmacid, BGX_GMP_GMI_TXX_SLOT, 64); 227 bgx_reg_write(bgx, lmac->lmacid, BGX_GMP_GMI_TXX_BURST, 0); 228 break; 229 case 1000: 230 port_cfg |= GMI_PORT_CFG_SPEED; /* speed 1 */ 231 port_cfg &= ~GMI_PORT_CFG_SPEED_MSB; /* speed_msb 0 */ 232 port_cfg |= GMI_PORT_CFG_SLOT_TIME; /* slottime 1 */ 233 misc_ctl &= ~PCS_MISC_CTL_SAMP_PT_MASK; 234 misc_ctl |= 1; /* samp_pt */ 235 bgx_reg_write(bgx, lmac->lmacid, BGX_GMP_GMI_TXX_SLOT, 512); 236 if (lmac->last_duplex) 237 bgx_reg_write(bgx, lmac->lmacid, 238 BGX_GMP_GMI_TXX_BURST, 0); 239 else 240 bgx_reg_write(bgx, lmac->lmacid, 241 BGX_GMP_GMI_TXX_BURST, 8192); 242 break; 243 default: 244 break; 245 } 246 bgx_reg_write(bgx, lmac->lmacid, BGX_GMP_PCS_MISCX_CTL, misc_ctl); 247 bgx_reg_write(bgx, lmac->lmacid, BGX_GMP_GMI_PRTX_CFG, port_cfg); 248 249 port_cfg = bgx_reg_read(bgx, lmac->lmacid, BGX_GMP_GMI_PRTX_CFG); 250 251 /* renable lmac */ 252 cmr_cfg |= CMR_EN; 253 bgx_reg_write(bgx, lmac->lmacid, BGX_CMRX_CFG, cmr_cfg); 254 } 255 256 static void bgx_lmac_handler(struct net_device *netdev) 257 { 258 struct lmac *lmac = container_of(netdev, struct lmac, netdev); 259 struct phy_device *phydev = lmac->phydev; 260 int link_changed = 0; 261 262 if (!lmac) 263 return; 264 265 if (!phydev->link && lmac->last_link) 266 link_changed = -1; 267 268 if (phydev->link && 269 (lmac->last_duplex != phydev->duplex || 270 lmac->last_link != phydev->link || 271 lmac->last_speed != phydev->speed)) { 272 link_changed = 1; 273 } 274 275 lmac->last_link = phydev->link; 276 lmac->last_speed = phydev->speed; 277 lmac->last_duplex = phydev->duplex; 278 279 if (!link_changed) 280 return; 281 282 if (link_changed > 0) 283 lmac->link_up = true; 284 else 285 lmac->link_up = false; 286 287 if (lmac->is_sgmii) 288 bgx_sgmii_change_link_state(lmac); 289 else 290 bgx_xaui_check_link(lmac); 291 } 292 293 u64 bgx_get_rx_stats(int node, int bgx_idx, int lmac, int idx) 294 { 295 struct bgx *bgx; 296 297 bgx = bgx_vnic[(node * MAX_BGX_PER_CN88XX) + bgx_idx]; 298 if (!bgx) 299 return 0; 300 301 if (idx > 8) 302 lmac = 0; 303 return bgx_reg_read(bgx, lmac, BGX_CMRX_RX_STAT0 + (idx * 8)); 304 } 305 EXPORT_SYMBOL(bgx_get_rx_stats); 306 307 u64 bgx_get_tx_stats(int node, int bgx_idx, int lmac, int idx) 308 { 309 struct bgx *bgx; 310 311 bgx = bgx_vnic[(node * MAX_BGX_PER_CN88XX) + bgx_idx]; 312 if (!bgx) 313 return 0; 314 315 return bgx_reg_read(bgx, lmac, BGX_CMRX_TX_STAT0 + (idx * 8)); 316 } 317 EXPORT_SYMBOL(bgx_get_tx_stats); 318 319 static void bgx_flush_dmac_addrs(struct bgx *bgx, int lmac) 320 { 321 u64 offset; 322 323 while (bgx->lmac[lmac].dmac > 0) { 324 offset = ((bgx->lmac[lmac].dmac - 1) * sizeof(u64)) + 325 (lmac * MAX_DMAC_PER_LMAC * sizeof(u64)); 326 bgx_reg_write(bgx, 0, BGX_CMR_RX_DMACX_CAM + offset, 0); 327 bgx->lmac[lmac].dmac--; 328 } 329 } 330 331 static int bgx_lmac_sgmii_init(struct bgx *bgx, int lmacid) 332 { 333 u64 cfg; 334 335 bgx_reg_modify(bgx, lmacid, BGX_GMP_GMI_TXX_THRESH, 0x30); 336 /* max packet size */ 337 bgx_reg_modify(bgx, lmacid, BGX_GMP_GMI_RXX_JABBER, MAX_FRAME_SIZE); 338 339 /* Disable frame alignment if using preamble */ 340 cfg = bgx_reg_read(bgx, lmacid, BGX_GMP_GMI_TXX_APPEND); 341 if (cfg & 1) 342 bgx_reg_write(bgx, lmacid, BGX_GMP_GMI_TXX_SGMII_CTL, 0); 343 344 /* Enable lmac */ 345 bgx_reg_modify(bgx, lmacid, BGX_CMRX_CFG, CMR_EN); 346 347 /* PCS reset */ 348 bgx_reg_modify(bgx, lmacid, BGX_GMP_PCS_MRX_CTL, PCS_MRX_CTL_RESET); 349 if (bgx_poll_reg(bgx, lmacid, BGX_GMP_PCS_MRX_CTL, 350 PCS_MRX_CTL_RESET, true)) { 351 dev_err(&bgx->pdev->dev, "BGX PCS reset not completed\n"); 352 return -1; 353 } 354 355 /* power down, reset autoneg, autoneg enable */ 356 cfg = bgx_reg_read(bgx, lmacid, BGX_GMP_PCS_MRX_CTL); 357 cfg &= ~PCS_MRX_CTL_PWR_DN; 358 cfg |= (PCS_MRX_CTL_RST_AN | PCS_MRX_CTL_AN_EN); 359 bgx_reg_write(bgx, lmacid, BGX_GMP_PCS_MRX_CTL, cfg); 360 361 if (bgx_poll_reg(bgx, lmacid, BGX_GMP_PCS_MRX_STATUS, 362 PCS_MRX_STATUS_AN_CPT, false)) { 363 dev_err(&bgx->pdev->dev, "BGX AN_CPT not completed\n"); 364 return -1; 365 } 366 367 return 0; 368 } 369 370 static int bgx_lmac_xaui_init(struct bgx *bgx, int lmacid, int lmac_type) 371 { 372 u64 cfg; 373 374 /* Reset SPU */ 375 bgx_reg_modify(bgx, lmacid, BGX_SPUX_CONTROL1, SPU_CTL_RESET); 376 if (bgx_poll_reg(bgx, lmacid, BGX_SPUX_CONTROL1, SPU_CTL_RESET, true)) { 377 dev_err(&bgx->pdev->dev, "BGX SPU reset not completed\n"); 378 return -1; 379 } 380 381 /* Disable LMAC */ 382 cfg = bgx_reg_read(bgx, lmacid, BGX_CMRX_CFG); 383 cfg &= ~CMR_EN; 384 bgx_reg_write(bgx, lmacid, BGX_CMRX_CFG, cfg); 385 386 bgx_reg_modify(bgx, lmacid, BGX_SPUX_CONTROL1, SPU_CTL_LOW_POWER); 387 /* Set interleaved running disparity for RXAUI */ 388 if (bgx->lmac_type != BGX_MODE_RXAUI) 389 bgx_reg_modify(bgx, lmacid, 390 BGX_SPUX_MISC_CONTROL, SPU_MISC_CTL_RX_DIS); 391 else 392 bgx_reg_modify(bgx, lmacid, BGX_SPUX_MISC_CONTROL, 393 SPU_MISC_CTL_RX_DIS | SPU_MISC_CTL_INTLV_RDISP); 394 395 /* clear all interrupts */ 396 cfg = bgx_reg_read(bgx, lmacid, BGX_SMUX_RX_INT); 397 bgx_reg_write(bgx, lmacid, BGX_SMUX_RX_INT, cfg); 398 cfg = bgx_reg_read(bgx, lmacid, BGX_SMUX_TX_INT); 399 bgx_reg_write(bgx, lmacid, BGX_SMUX_TX_INT, cfg); 400 cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_INT); 401 bgx_reg_write(bgx, lmacid, BGX_SPUX_INT, cfg); 402 403 if (bgx->use_training) { 404 bgx_reg_write(bgx, lmacid, BGX_SPUX_BR_PMD_LP_CUP, 0x00); 405 bgx_reg_write(bgx, lmacid, BGX_SPUX_BR_PMD_LD_CUP, 0x00); 406 bgx_reg_write(bgx, lmacid, BGX_SPUX_BR_PMD_LD_REP, 0x00); 407 /* training enable */ 408 bgx_reg_modify(bgx, lmacid, 409 BGX_SPUX_BR_PMD_CRTL, SPU_PMD_CRTL_TRAIN_EN); 410 } 411 412 /* Append FCS to each packet */ 413 bgx_reg_modify(bgx, lmacid, BGX_SMUX_TX_APPEND, SMU_TX_APPEND_FCS_D); 414 415 /* Disable forward error correction */ 416 cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_FEC_CONTROL); 417 cfg &= ~SPU_FEC_CTL_FEC_EN; 418 bgx_reg_write(bgx, lmacid, BGX_SPUX_FEC_CONTROL, cfg); 419 420 /* Disable autoneg */ 421 cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_AN_CONTROL); 422 cfg = cfg & ~(SPU_AN_CTL_AN_EN | SPU_AN_CTL_XNP_EN); 423 bgx_reg_write(bgx, lmacid, BGX_SPUX_AN_CONTROL, cfg); 424 425 cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_AN_ADV); 426 if (bgx->lmac_type == BGX_MODE_10G_KR) 427 cfg |= (1 << 23); 428 else if (bgx->lmac_type == BGX_MODE_40G_KR) 429 cfg |= (1 << 24); 430 else 431 cfg &= ~((1 << 23) | (1 << 24)); 432 cfg = cfg & (~((1ULL << 25) | (1ULL << 22) | (1ULL << 12))); 433 bgx_reg_write(bgx, lmacid, BGX_SPUX_AN_ADV, cfg); 434 435 cfg = bgx_reg_read(bgx, 0, BGX_SPU_DBG_CONTROL); 436 cfg &= ~SPU_DBG_CTL_AN_ARB_LINK_CHK_EN; 437 bgx_reg_write(bgx, 0, BGX_SPU_DBG_CONTROL, cfg); 438 439 /* Enable lmac */ 440 bgx_reg_modify(bgx, lmacid, BGX_CMRX_CFG, CMR_EN); 441 442 cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_CONTROL1); 443 cfg &= ~SPU_CTL_LOW_POWER; 444 bgx_reg_write(bgx, lmacid, BGX_SPUX_CONTROL1, cfg); 445 446 cfg = bgx_reg_read(bgx, lmacid, BGX_SMUX_TX_CTL); 447 cfg &= ~SMU_TX_CTL_UNI_EN; 448 cfg |= SMU_TX_CTL_DIC_EN; 449 bgx_reg_write(bgx, lmacid, BGX_SMUX_TX_CTL, cfg); 450 451 /* take lmac_count into account */ 452 bgx_reg_modify(bgx, lmacid, BGX_SMUX_TX_THRESH, (0x100 - 1)); 453 /* max packet size */ 454 bgx_reg_modify(bgx, lmacid, BGX_SMUX_RX_JABBER, MAX_FRAME_SIZE); 455 456 return 0; 457 } 458 459 static int bgx_xaui_check_link(struct lmac *lmac) 460 { 461 struct bgx *bgx = lmac->bgx; 462 int lmacid = lmac->lmacid; 463 int lmac_type = bgx->lmac_type; 464 u64 cfg; 465 466 bgx_reg_modify(bgx, lmacid, BGX_SPUX_MISC_CONTROL, SPU_MISC_CTL_RX_DIS); 467 if (bgx->use_training) { 468 cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_INT); 469 if (!(cfg & (1ull << 13))) { 470 cfg = (1ull << 13) | (1ull << 14); 471 bgx_reg_write(bgx, lmacid, BGX_SPUX_INT, cfg); 472 cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_BR_PMD_CRTL); 473 cfg |= (1ull << 0); 474 bgx_reg_write(bgx, lmacid, BGX_SPUX_BR_PMD_CRTL, cfg); 475 return -1; 476 } 477 } 478 479 /* wait for PCS to come out of reset */ 480 if (bgx_poll_reg(bgx, lmacid, BGX_SPUX_CONTROL1, SPU_CTL_RESET, true)) { 481 dev_err(&bgx->pdev->dev, "BGX SPU reset not completed\n"); 482 return -1; 483 } 484 485 if ((lmac_type == BGX_MODE_10G_KR) || (lmac_type == BGX_MODE_XFI) || 486 (lmac_type == BGX_MODE_40G_KR) || (lmac_type == BGX_MODE_XLAUI)) { 487 if (bgx_poll_reg(bgx, lmacid, BGX_SPUX_BR_STATUS1, 488 SPU_BR_STATUS_BLK_LOCK, false)) { 489 dev_err(&bgx->pdev->dev, 490 "SPU_BR_STATUS_BLK_LOCK not completed\n"); 491 return -1; 492 } 493 } else { 494 if (bgx_poll_reg(bgx, lmacid, BGX_SPUX_BX_STATUS, 495 SPU_BX_STATUS_RX_ALIGN, false)) { 496 dev_err(&bgx->pdev->dev, 497 "SPU_BX_STATUS_RX_ALIGN not completed\n"); 498 return -1; 499 } 500 } 501 502 /* Clear rcvflt bit (latching high) and read it back */ 503 bgx_reg_modify(bgx, lmacid, BGX_SPUX_STATUS2, SPU_STATUS2_RCVFLT); 504 if (bgx_reg_read(bgx, lmacid, BGX_SPUX_STATUS2) & SPU_STATUS2_RCVFLT) { 505 dev_err(&bgx->pdev->dev, "Receive fault, retry training\n"); 506 if (bgx->use_training) { 507 cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_INT); 508 if (!(cfg & (1ull << 13))) { 509 cfg = (1ull << 13) | (1ull << 14); 510 bgx_reg_write(bgx, lmacid, BGX_SPUX_INT, cfg); 511 cfg = bgx_reg_read(bgx, lmacid, 512 BGX_SPUX_BR_PMD_CRTL); 513 cfg |= (1ull << 0); 514 bgx_reg_write(bgx, lmacid, 515 BGX_SPUX_BR_PMD_CRTL, cfg); 516 return -1; 517 } 518 } 519 return -1; 520 } 521 522 /* Wait for MAC RX to be ready */ 523 if (bgx_poll_reg(bgx, lmacid, BGX_SMUX_RX_CTL, 524 SMU_RX_CTL_STATUS, true)) { 525 dev_err(&bgx->pdev->dev, "SMU RX link not okay\n"); 526 return -1; 527 } 528 529 /* Wait for BGX RX to be idle */ 530 if (bgx_poll_reg(bgx, lmacid, BGX_SMUX_CTL, SMU_CTL_RX_IDLE, false)) { 531 dev_err(&bgx->pdev->dev, "SMU RX not idle\n"); 532 return -1; 533 } 534 535 /* Wait for BGX TX to be idle */ 536 if (bgx_poll_reg(bgx, lmacid, BGX_SMUX_CTL, SMU_CTL_TX_IDLE, false)) { 537 dev_err(&bgx->pdev->dev, "SMU TX not idle\n"); 538 return -1; 539 } 540 541 if (bgx_reg_read(bgx, lmacid, BGX_SPUX_STATUS2) & SPU_STATUS2_RCVFLT) { 542 dev_err(&bgx->pdev->dev, "Receive fault\n"); 543 return -1; 544 } 545 546 /* Receive link is latching low. Force it high and verify it */ 547 bgx_reg_modify(bgx, lmacid, BGX_SPUX_STATUS1, SPU_STATUS1_RCV_LNK); 548 if (bgx_poll_reg(bgx, lmacid, BGX_SPUX_STATUS1, 549 SPU_STATUS1_RCV_LNK, false)) { 550 dev_err(&bgx->pdev->dev, "SPU receive link down\n"); 551 return -1; 552 } 553 554 cfg = bgx_reg_read(bgx, lmacid, BGX_SPUX_MISC_CONTROL); 555 cfg &= ~SPU_MISC_CTL_RX_DIS; 556 bgx_reg_write(bgx, lmacid, BGX_SPUX_MISC_CONTROL, cfg); 557 return 0; 558 } 559 560 static void bgx_poll_for_link(struct work_struct *work) 561 { 562 struct lmac *lmac; 563 u64 link; 564 565 lmac = container_of(work, struct lmac, dwork.work); 566 567 /* Receive link is latching low. Force it high and verify it */ 568 bgx_reg_modify(lmac->bgx, lmac->lmacid, 569 BGX_SPUX_STATUS1, SPU_STATUS1_RCV_LNK); 570 bgx_poll_reg(lmac->bgx, lmac->lmacid, BGX_SPUX_STATUS1, 571 SPU_STATUS1_RCV_LNK, false); 572 573 link = bgx_reg_read(lmac->bgx, lmac->lmacid, BGX_SPUX_STATUS1); 574 if (link & SPU_STATUS1_RCV_LNK) { 575 lmac->link_up = 1; 576 if (lmac->bgx->lmac_type == BGX_MODE_XLAUI) 577 lmac->last_speed = 40000; 578 else 579 lmac->last_speed = 10000; 580 lmac->last_duplex = 1; 581 } else { 582 lmac->link_up = 0; 583 } 584 585 if (lmac->last_link != lmac->link_up) { 586 lmac->last_link = lmac->link_up; 587 if (lmac->link_up) 588 bgx_xaui_check_link(lmac); 589 } 590 591 queue_delayed_work(lmac->check_link, &lmac->dwork, HZ * 2); 592 } 593 594 static int bgx_lmac_enable(struct bgx *bgx, u8 lmacid) 595 { 596 struct lmac *lmac; 597 u64 cfg; 598 599 lmac = &bgx->lmac[lmacid]; 600 lmac->bgx = bgx; 601 602 if (bgx->lmac_type == BGX_MODE_SGMII) { 603 lmac->is_sgmii = 1; 604 if (bgx_lmac_sgmii_init(bgx, lmacid)) 605 return -1; 606 } else { 607 lmac->is_sgmii = 0; 608 if (bgx_lmac_xaui_init(bgx, lmacid, bgx->lmac_type)) 609 return -1; 610 } 611 612 if (lmac->is_sgmii) { 613 cfg = bgx_reg_read(bgx, lmacid, BGX_GMP_GMI_TXX_APPEND); 614 cfg |= ((1ull << 2) | (1ull << 1)); /* FCS and PAD */ 615 bgx_reg_modify(bgx, lmacid, BGX_GMP_GMI_TXX_APPEND, cfg); 616 bgx_reg_write(bgx, lmacid, BGX_GMP_GMI_TXX_MIN_PKT, 60 - 1); 617 } else { 618 cfg = bgx_reg_read(bgx, lmacid, BGX_SMUX_TX_APPEND); 619 cfg |= ((1ull << 2) | (1ull << 1)); /* FCS and PAD */ 620 bgx_reg_modify(bgx, lmacid, BGX_SMUX_TX_APPEND, cfg); 621 bgx_reg_write(bgx, lmacid, BGX_SMUX_TX_MIN_PKT, 60 + 4); 622 } 623 624 /* Enable lmac */ 625 bgx_reg_modify(bgx, lmacid, BGX_CMRX_CFG, 626 CMR_EN | CMR_PKT_RX_EN | CMR_PKT_TX_EN); 627 628 /* Restore default cfg, incase low level firmware changed it */ 629 bgx_reg_write(bgx, lmacid, BGX_CMRX_RX_DMAC_CTL, 0x03); 630 631 if ((bgx->lmac_type != BGX_MODE_XFI) && 632 (bgx->lmac_type != BGX_MODE_XLAUI) && 633 (bgx->lmac_type != BGX_MODE_40G_KR) && 634 (bgx->lmac_type != BGX_MODE_10G_KR)) { 635 if (!lmac->phydev) 636 return -ENODEV; 637 638 lmac->phydev->dev_flags = 0; 639 640 if (phy_connect_direct(&lmac->netdev, lmac->phydev, 641 bgx_lmac_handler, 642 PHY_INTERFACE_MODE_SGMII)) 643 return -ENODEV; 644 645 phy_start_aneg(lmac->phydev); 646 } else { 647 lmac->check_link = alloc_workqueue("check_link", WQ_UNBOUND | 648 WQ_MEM_RECLAIM, 1); 649 if (!lmac->check_link) 650 return -ENOMEM; 651 INIT_DELAYED_WORK(&lmac->dwork, bgx_poll_for_link); 652 queue_delayed_work(lmac->check_link, &lmac->dwork, 0); 653 } 654 655 return 0; 656 } 657 658 static void bgx_lmac_disable(struct bgx *bgx, u8 lmacid) 659 { 660 struct lmac *lmac; 661 u64 cmrx_cfg; 662 663 lmac = &bgx->lmac[lmacid]; 664 if (lmac->check_link) { 665 /* Destroy work queue */ 666 cancel_delayed_work(&lmac->dwork); 667 flush_workqueue(lmac->check_link); 668 destroy_workqueue(lmac->check_link); 669 } 670 671 cmrx_cfg = bgx_reg_read(bgx, lmacid, BGX_CMRX_CFG); 672 cmrx_cfg &= ~(1 << 15); 673 bgx_reg_write(bgx, lmacid, BGX_CMRX_CFG, cmrx_cfg); 674 bgx_flush_dmac_addrs(bgx, lmacid); 675 676 if ((bgx->lmac_type != BGX_MODE_XFI) && 677 (bgx->lmac_type != BGX_MODE_XLAUI) && 678 (bgx->lmac_type != BGX_MODE_40G_KR) && 679 (bgx->lmac_type != BGX_MODE_10G_KR) && lmac->phydev) 680 phy_disconnect(lmac->phydev); 681 682 lmac->phydev = NULL; 683 } 684 685 static void bgx_set_num_ports(struct bgx *bgx) 686 { 687 u64 lmac_count; 688 689 switch (bgx->qlm_mode) { 690 case QLM_MODE_SGMII: 691 bgx->lmac_count = 4; 692 bgx->lmac_type = BGX_MODE_SGMII; 693 bgx->lane_to_sds = 0; 694 break; 695 case QLM_MODE_XAUI_1X4: 696 bgx->lmac_count = 1; 697 bgx->lmac_type = BGX_MODE_XAUI; 698 bgx->lane_to_sds = 0xE4; 699 break; 700 case QLM_MODE_RXAUI_2X2: 701 bgx->lmac_count = 2; 702 bgx->lmac_type = BGX_MODE_RXAUI; 703 bgx->lane_to_sds = 0xE4; 704 break; 705 case QLM_MODE_XFI_4X1: 706 bgx->lmac_count = 4; 707 bgx->lmac_type = BGX_MODE_XFI; 708 bgx->lane_to_sds = 0; 709 break; 710 case QLM_MODE_XLAUI_1X4: 711 bgx->lmac_count = 1; 712 bgx->lmac_type = BGX_MODE_XLAUI; 713 bgx->lane_to_sds = 0xE4; 714 break; 715 case QLM_MODE_10G_KR_4X1: 716 bgx->lmac_count = 4; 717 bgx->lmac_type = BGX_MODE_10G_KR; 718 bgx->lane_to_sds = 0; 719 bgx->use_training = 1; 720 break; 721 case QLM_MODE_40G_KR4_1X4: 722 bgx->lmac_count = 1; 723 bgx->lmac_type = BGX_MODE_40G_KR; 724 bgx->lane_to_sds = 0xE4; 725 bgx->use_training = 1; 726 break; 727 default: 728 bgx->lmac_count = 0; 729 break; 730 } 731 732 /* Check if low level firmware has programmed LMAC count 733 * based on board type, if yes consider that otherwise 734 * the default static values 735 */ 736 lmac_count = bgx_reg_read(bgx, 0, BGX_CMR_RX_LMACS) & 0x7; 737 if (lmac_count != 4) 738 bgx->lmac_count = lmac_count; 739 } 740 741 static void bgx_init_hw(struct bgx *bgx) 742 { 743 int i; 744 745 bgx_set_num_ports(bgx); 746 747 bgx_reg_modify(bgx, 0, BGX_CMR_GLOBAL_CFG, CMR_GLOBAL_CFG_FCS_STRIP); 748 if (bgx_reg_read(bgx, 0, BGX_CMR_BIST_STATUS)) 749 dev_err(&bgx->pdev->dev, "BGX%d BIST failed\n", bgx->bgx_id); 750 751 /* Set lmac type and lane2serdes mapping */ 752 for (i = 0; i < bgx->lmac_count; i++) { 753 if (bgx->lmac_type == BGX_MODE_RXAUI) { 754 if (i) 755 bgx->lane_to_sds = 0x0e; 756 else 757 bgx->lane_to_sds = 0x04; 758 bgx_reg_write(bgx, i, BGX_CMRX_CFG, 759 (bgx->lmac_type << 8) | bgx->lane_to_sds); 760 continue; 761 } 762 bgx_reg_write(bgx, i, BGX_CMRX_CFG, 763 (bgx->lmac_type << 8) | (bgx->lane_to_sds + i)); 764 bgx->lmac[i].lmacid_bd = lmac_count; 765 lmac_count++; 766 } 767 768 bgx_reg_write(bgx, 0, BGX_CMR_TX_LMACS, bgx->lmac_count); 769 bgx_reg_write(bgx, 0, BGX_CMR_RX_LMACS, bgx->lmac_count); 770 771 /* Set the backpressure AND mask */ 772 for (i = 0; i < bgx->lmac_count; i++) 773 bgx_reg_modify(bgx, 0, BGX_CMR_CHAN_MSK_AND, 774 ((1ULL << MAX_BGX_CHANS_PER_LMAC) - 1) << 775 (i * MAX_BGX_CHANS_PER_LMAC)); 776 777 /* Disable all MAC filtering */ 778 for (i = 0; i < RX_DMAC_COUNT; i++) 779 bgx_reg_write(bgx, 0, BGX_CMR_RX_DMACX_CAM + (i * 8), 0x00); 780 781 /* Disable MAC steering (NCSI traffic) */ 782 for (i = 0; i < RX_TRAFFIC_STEER_RULE_COUNT; i++) 783 bgx_reg_write(bgx, 0, BGX_CMR_RX_STREERING + (i * 8), 0x00); 784 } 785 786 static void bgx_get_qlm_mode(struct bgx *bgx) 787 { 788 struct device *dev = &bgx->pdev->dev; 789 int lmac_type; 790 int train_en; 791 792 /* Read LMAC0 type to figure out QLM mode 793 * This is configured by low level firmware 794 */ 795 lmac_type = bgx_reg_read(bgx, 0, BGX_CMRX_CFG); 796 lmac_type = (lmac_type >> 8) & 0x07; 797 798 train_en = bgx_reg_read(bgx, 0, BGX_SPUX_BR_PMD_CRTL) & 799 SPU_PMD_CRTL_TRAIN_EN; 800 801 switch (lmac_type) { 802 case BGX_MODE_SGMII: 803 bgx->qlm_mode = QLM_MODE_SGMII; 804 dev_info(dev, "BGX%d QLM mode: SGMII\n", bgx->bgx_id); 805 break; 806 case BGX_MODE_XAUI: 807 bgx->qlm_mode = QLM_MODE_XAUI_1X4; 808 dev_info(dev, "BGX%d QLM mode: XAUI\n", bgx->bgx_id); 809 break; 810 case BGX_MODE_RXAUI: 811 bgx->qlm_mode = QLM_MODE_RXAUI_2X2; 812 dev_info(dev, "BGX%d QLM mode: RXAUI\n", bgx->bgx_id); 813 break; 814 case BGX_MODE_XFI: 815 if (!train_en) { 816 bgx->qlm_mode = QLM_MODE_XFI_4X1; 817 dev_info(dev, "BGX%d QLM mode: XFI\n", bgx->bgx_id); 818 } else { 819 bgx->qlm_mode = QLM_MODE_10G_KR_4X1; 820 dev_info(dev, "BGX%d QLM mode: 10G_KR\n", bgx->bgx_id); 821 } 822 break; 823 case BGX_MODE_XLAUI: 824 if (!train_en) { 825 bgx->qlm_mode = QLM_MODE_XLAUI_1X4; 826 dev_info(dev, "BGX%d QLM mode: XLAUI\n", bgx->bgx_id); 827 } else { 828 bgx->qlm_mode = QLM_MODE_40G_KR4_1X4; 829 dev_info(dev, "BGX%d QLM mode: 40G_KR4\n", bgx->bgx_id); 830 } 831 break; 832 default: 833 bgx->qlm_mode = QLM_MODE_SGMII; 834 dev_info(dev, "BGX%d QLM default mode: SGMII\n", bgx->bgx_id); 835 } 836 } 837 838 static void bgx_init_of(struct bgx *bgx, struct device_node *np) 839 { 840 struct device_node *np_child; 841 u8 lmac = 0; 842 843 for_each_child_of_node(np, np_child) { 844 struct device_node *phy_np; 845 const char *mac; 846 847 phy_np = of_parse_phandle(np_child, "phy-handle", 0); 848 if (phy_np) 849 bgx->lmac[lmac].phydev = of_phy_find_device(phy_np); 850 851 mac = of_get_mac_address(np_child); 852 if (mac) 853 ether_addr_copy(bgx->lmac[lmac].mac, mac); 854 855 SET_NETDEV_DEV(&bgx->lmac[lmac].netdev, &bgx->pdev->dev); 856 bgx->lmac[lmac].lmacid = lmac; 857 lmac++; 858 if (lmac == MAX_LMAC_PER_BGX) 859 break; 860 } 861 } 862 863 static int bgx_probe(struct pci_dev *pdev, const struct pci_device_id *ent) 864 { 865 int err; 866 struct device *dev = &pdev->dev; 867 struct bgx *bgx = NULL; 868 struct device_node *np; 869 char bgx_sel[5]; 870 u8 lmac; 871 872 bgx = devm_kzalloc(dev, sizeof(*bgx), GFP_KERNEL); 873 if (!bgx) 874 return -ENOMEM; 875 bgx->pdev = pdev; 876 877 pci_set_drvdata(pdev, bgx); 878 879 err = pci_enable_device(pdev); 880 if (err) { 881 dev_err(dev, "Failed to enable PCI device\n"); 882 pci_set_drvdata(pdev, NULL); 883 return err; 884 } 885 886 err = pci_request_regions(pdev, DRV_NAME); 887 if (err) { 888 dev_err(dev, "PCI request regions failed 0x%x\n", err); 889 goto err_disable_device; 890 } 891 892 /* MAP configuration registers */ 893 bgx->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0); 894 if (!bgx->reg_base) { 895 dev_err(dev, "BGX: Cannot map CSR memory space, aborting\n"); 896 err = -ENOMEM; 897 goto err_release_regions; 898 } 899 bgx->bgx_id = (pci_resource_start(pdev, PCI_CFG_REG_BAR_NUM) >> 24) & 1; 900 bgx->bgx_id += nic_get_node_id(pdev) * MAX_BGX_PER_CN88XX; 901 902 bgx_vnic[bgx->bgx_id] = bgx; 903 bgx_get_qlm_mode(bgx); 904 905 snprintf(bgx_sel, 5, "bgx%d", bgx->bgx_id); 906 np = of_find_node_by_name(NULL, bgx_sel); 907 if (np) 908 bgx_init_of(bgx, np); 909 910 bgx_init_hw(bgx); 911 912 /* Enable all LMACs */ 913 for (lmac = 0; lmac < bgx->lmac_count; lmac++) { 914 err = bgx_lmac_enable(bgx, lmac); 915 if (err) { 916 dev_err(dev, "BGX%d failed to enable lmac%d\n", 917 bgx->bgx_id, lmac); 918 goto err_enable; 919 } 920 } 921 922 return 0; 923 924 err_enable: 925 bgx_vnic[bgx->bgx_id] = NULL; 926 err_release_regions: 927 pci_release_regions(pdev); 928 err_disable_device: 929 pci_disable_device(pdev); 930 pci_set_drvdata(pdev, NULL); 931 return err; 932 } 933 934 static void bgx_remove(struct pci_dev *pdev) 935 { 936 struct bgx *bgx = pci_get_drvdata(pdev); 937 u8 lmac; 938 939 /* Disable all LMACs */ 940 for (lmac = 0; lmac < bgx->lmac_count; lmac++) 941 bgx_lmac_disable(bgx, lmac); 942 943 bgx_vnic[bgx->bgx_id] = NULL; 944 pci_release_regions(pdev); 945 pci_disable_device(pdev); 946 pci_set_drvdata(pdev, NULL); 947 } 948 949 static struct pci_driver bgx_driver = { 950 .name = DRV_NAME, 951 .id_table = bgx_id_table, 952 .probe = bgx_probe, 953 .remove = bgx_remove, 954 }; 955 956 static int __init bgx_init_module(void) 957 { 958 pr_info("%s, ver %s\n", DRV_NAME, DRV_VERSION); 959 960 return pci_register_driver(&bgx_driver); 961 } 962 963 static void __exit bgx_cleanup_module(void) 964 { 965 pci_unregister_driver(&bgx_driver); 966 } 967 968 module_init(bgx_init_module); 969 module_exit(bgx_cleanup_module); 970