0001
0002
0003
0004 #include <linux/pci.h>
0005 #include <linux/delay.h>
0006 #include <linux/sched.h>
0007
0008 #include "ixgbe.h"
0009 #include "ixgbe_phy.h"
0010
0011 #define IXGBE_82598_MAX_TX_QUEUES 32
0012 #define IXGBE_82598_MAX_RX_QUEUES 64
0013 #define IXGBE_82598_RAR_ENTRIES 16
0014 #define IXGBE_82598_MC_TBL_SIZE 128
0015 #define IXGBE_82598_VFT_TBL_SIZE 128
0016 #define IXGBE_82598_RX_PB_SIZE 512
0017
0018 static s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw,
0019 ixgbe_link_speed speed,
0020 bool autoneg_wait_to_complete);
0021 static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
0022 u8 *eeprom_data);
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034 static void ixgbe_set_pcie_completion_timeout(struct ixgbe_hw *hw)
0035 {
0036 u32 gcr = IXGBE_READ_REG(hw, IXGBE_GCR);
0037 u16 pcie_devctl2;
0038
0039 if (ixgbe_removed(hw->hw_addr))
0040 return;
0041
0042
0043 if (gcr & IXGBE_GCR_CMPL_TMOUT_MASK)
0044 goto out;
0045
0046
0047
0048
0049
0050 if (!(gcr & IXGBE_GCR_CAP_VER2)) {
0051 gcr |= IXGBE_GCR_CMPL_TMOUT_10ms;
0052 goto out;
0053 }
0054
0055
0056
0057
0058
0059
0060 pcie_devctl2 = ixgbe_read_pci_cfg_word(hw, IXGBE_PCI_DEVICE_CONTROL2);
0061 pcie_devctl2 |= IXGBE_PCI_DEVICE_CONTROL2_16ms;
0062 ixgbe_write_pci_cfg_word(hw, IXGBE_PCI_DEVICE_CONTROL2, pcie_devctl2);
0063 out:
0064
0065 gcr &= ~IXGBE_GCR_CMPL_TMOUT_RESEND;
0066 IXGBE_WRITE_REG(hw, IXGBE_GCR, gcr);
0067 }
0068
0069 static s32 ixgbe_get_invariants_82598(struct ixgbe_hw *hw)
0070 {
0071 struct ixgbe_mac_info *mac = &hw->mac;
0072
0073
0074 ixgbe_identify_phy_generic(hw);
0075
0076 mac->mcft_size = IXGBE_82598_MC_TBL_SIZE;
0077 mac->vft_size = IXGBE_82598_VFT_TBL_SIZE;
0078 mac->num_rar_entries = IXGBE_82598_RAR_ENTRIES;
0079 mac->rx_pb_size = IXGBE_82598_RX_PB_SIZE;
0080 mac->max_rx_queues = IXGBE_82598_MAX_RX_QUEUES;
0081 mac->max_tx_queues = IXGBE_82598_MAX_TX_QUEUES;
0082 mac->max_msix_vectors = ixgbe_get_pcie_msix_count_generic(hw);
0083
0084 return 0;
0085 }
0086
0087
0088
0089
0090
0091
0092
0093
0094
0095
0096 static s32 ixgbe_init_phy_ops_82598(struct ixgbe_hw *hw)
0097 {
0098 struct ixgbe_mac_info *mac = &hw->mac;
0099 struct ixgbe_phy_info *phy = &hw->phy;
0100 s32 ret_val;
0101 u16 list_offset, data_offset;
0102
0103
0104 phy->ops.identify(hw);
0105
0106
0107 if (mac->ops.get_media_type(hw) == ixgbe_media_type_copper) {
0108 mac->ops.setup_link = &ixgbe_setup_copper_link_82598;
0109 mac->ops.get_link_capabilities =
0110 &ixgbe_get_copper_link_capabilities_generic;
0111 }
0112
0113 switch (hw->phy.type) {
0114 case ixgbe_phy_tn:
0115 phy->ops.setup_link = &ixgbe_setup_phy_link_tnx;
0116 phy->ops.check_link = &ixgbe_check_phy_link_tnx;
0117 break;
0118 case ixgbe_phy_nl:
0119 phy->ops.reset = &ixgbe_reset_phy_nl;
0120
0121
0122 ret_val = phy->ops.identify_sfp(hw);
0123 if (ret_val)
0124 return ret_val;
0125 if (hw->phy.sfp_type == ixgbe_sfp_type_unknown)
0126 return IXGBE_ERR_SFP_NOT_SUPPORTED;
0127
0128
0129 ret_val = ixgbe_get_sfp_init_sequence_offsets(hw,
0130 &list_offset,
0131 &data_offset);
0132 if (ret_val)
0133 return IXGBE_ERR_SFP_NOT_SUPPORTED;
0134 break;
0135 default:
0136 break;
0137 }
0138
0139 return 0;
0140 }
0141
0142
0143
0144
0145
0146
0147
0148
0149
0150
0151 static s32 ixgbe_start_hw_82598(struct ixgbe_hw *hw)
0152 {
0153 s32 ret_val;
0154
0155 ret_val = ixgbe_start_hw_generic(hw);
0156 if (ret_val)
0157 return ret_val;
0158
0159
0160 ixgbe_set_pcie_completion_timeout(hw);
0161
0162 return 0;
0163 }
0164
0165
0166
0167
0168
0169
0170
0171
0172
0173 static s32 ixgbe_get_link_capabilities_82598(struct ixgbe_hw *hw,
0174 ixgbe_link_speed *speed,
0175 bool *autoneg)
0176 {
0177 u32 autoc = 0;
0178
0179
0180
0181
0182
0183
0184 if (hw->mac.orig_link_settings_stored)
0185 autoc = hw->mac.orig_autoc;
0186 else
0187 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
0188
0189 switch (autoc & IXGBE_AUTOC_LMS_MASK) {
0190 case IXGBE_AUTOC_LMS_1G_LINK_NO_AN:
0191 *speed = IXGBE_LINK_SPEED_1GB_FULL;
0192 *autoneg = false;
0193 break;
0194
0195 case IXGBE_AUTOC_LMS_10G_LINK_NO_AN:
0196 *speed = IXGBE_LINK_SPEED_10GB_FULL;
0197 *autoneg = false;
0198 break;
0199
0200 case IXGBE_AUTOC_LMS_1G_AN:
0201 *speed = IXGBE_LINK_SPEED_1GB_FULL;
0202 *autoneg = true;
0203 break;
0204
0205 case IXGBE_AUTOC_LMS_KX4_AN:
0206 case IXGBE_AUTOC_LMS_KX4_AN_1G_AN:
0207 *speed = IXGBE_LINK_SPEED_UNKNOWN;
0208 if (autoc & IXGBE_AUTOC_KX4_SUPP)
0209 *speed |= IXGBE_LINK_SPEED_10GB_FULL;
0210 if (autoc & IXGBE_AUTOC_KX_SUPP)
0211 *speed |= IXGBE_LINK_SPEED_1GB_FULL;
0212 *autoneg = true;
0213 break;
0214
0215 default:
0216 return IXGBE_ERR_LINK_SETUP;
0217 }
0218
0219 return 0;
0220 }
0221
0222
0223
0224
0225
0226
0227
0228 static enum ixgbe_media_type ixgbe_get_media_type_82598(struct ixgbe_hw *hw)
0229 {
0230
0231 switch (hw->phy.type) {
0232 case ixgbe_phy_cu_unknown:
0233 case ixgbe_phy_tn:
0234 return ixgbe_media_type_copper;
0235
0236 default:
0237 break;
0238 }
0239
0240
0241 switch (hw->device_id) {
0242 case IXGBE_DEV_ID_82598:
0243 case IXGBE_DEV_ID_82598_BX:
0244
0245 return ixgbe_media_type_backplane;
0246
0247 case IXGBE_DEV_ID_82598AF_DUAL_PORT:
0248 case IXGBE_DEV_ID_82598AF_SINGLE_PORT:
0249 case IXGBE_DEV_ID_82598_DA_DUAL_PORT:
0250 case IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM:
0251 case IXGBE_DEV_ID_82598EB_XF_LR:
0252 case IXGBE_DEV_ID_82598EB_SFP_LOM:
0253 return ixgbe_media_type_fiber;
0254
0255 case IXGBE_DEV_ID_82598EB_CX4:
0256 case IXGBE_DEV_ID_82598_CX4_DUAL_PORT:
0257 return ixgbe_media_type_cx4;
0258
0259 case IXGBE_DEV_ID_82598AT:
0260 case IXGBE_DEV_ID_82598AT2:
0261 return ixgbe_media_type_copper;
0262
0263 default:
0264 return ixgbe_media_type_unknown;
0265 }
0266 }
0267
0268
0269
0270
0271
0272
0273
0274 static s32 ixgbe_fc_enable_82598(struct ixgbe_hw *hw)
0275 {
0276 u32 fctrl_reg;
0277 u32 rmcs_reg;
0278 u32 reg;
0279 u32 fcrtl, fcrth;
0280 u32 link_speed = 0;
0281 int i;
0282 bool link_up;
0283
0284
0285 if (!hw->fc.pause_time)
0286 return IXGBE_ERR_INVALID_LINK_SETTINGS;
0287
0288
0289 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
0290 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
0291 hw->fc.high_water[i]) {
0292 if (!hw->fc.low_water[i] ||
0293 hw->fc.low_water[i] >= hw->fc.high_water[i]) {
0294 hw_dbg(hw, "Invalid water mark configuration\n");
0295 return IXGBE_ERR_INVALID_LINK_SETTINGS;
0296 }
0297 }
0298 }
0299
0300
0301
0302
0303
0304
0305 hw->mac.ops.check_link(hw, &link_speed, &link_up, false);
0306 if (link_up && link_speed == IXGBE_LINK_SPEED_1GB_FULL) {
0307 switch (hw->fc.requested_mode) {
0308 case ixgbe_fc_full:
0309 hw->fc.requested_mode = ixgbe_fc_tx_pause;
0310 break;
0311 case ixgbe_fc_rx_pause:
0312 hw->fc.requested_mode = ixgbe_fc_none;
0313 break;
0314 default:
0315
0316 break;
0317 }
0318 }
0319
0320
0321 hw->mac.ops.fc_autoneg(hw);
0322
0323
0324 fctrl_reg = IXGBE_READ_REG(hw, IXGBE_FCTRL);
0325 fctrl_reg &= ~(IXGBE_FCTRL_RFCE | IXGBE_FCTRL_RPFCE);
0326
0327 rmcs_reg = IXGBE_READ_REG(hw, IXGBE_RMCS);
0328 rmcs_reg &= ~(IXGBE_RMCS_TFCE_PRIORITY | IXGBE_RMCS_TFCE_802_3X);
0329
0330
0331
0332
0333
0334
0335
0336
0337
0338
0339
0340 switch (hw->fc.current_mode) {
0341 case ixgbe_fc_none:
0342
0343
0344
0345
0346 break;
0347 case ixgbe_fc_rx_pause:
0348
0349
0350
0351
0352
0353
0354
0355
0356 fctrl_reg |= IXGBE_FCTRL_RFCE;
0357 break;
0358 case ixgbe_fc_tx_pause:
0359
0360
0361
0362
0363 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
0364 break;
0365 case ixgbe_fc_full:
0366
0367 fctrl_reg |= IXGBE_FCTRL_RFCE;
0368 rmcs_reg |= IXGBE_RMCS_TFCE_802_3X;
0369 break;
0370 default:
0371 hw_dbg(hw, "Flow control param set incorrectly\n");
0372 return IXGBE_ERR_CONFIG;
0373 }
0374
0375
0376 fctrl_reg |= IXGBE_FCTRL_DPF;
0377 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl_reg);
0378 IXGBE_WRITE_REG(hw, IXGBE_RMCS, rmcs_reg);
0379
0380
0381 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
0382 if ((hw->fc.current_mode & ixgbe_fc_tx_pause) &&
0383 hw->fc.high_water[i]) {
0384 fcrtl = (hw->fc.low_water[i] << 10) | IXGBE_FCRTL_XONE;
0385 fcrth = (hw->fc.high_water[i] << 10) | IXGBE_FCRTH_FCEN;
0386 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(i), fcrtl);
0387 IXGBE_WRITE_REG(hw, IXGBE_FCRTH(i), fcrth);
0388 } else {
0389 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(i), 0);
0390 IXGBE_WRITE_REG(hw, IXGBE_FCRTH(i), 0);
0391 }
0392
0393 }
0394
0395
0396 reg = hw->fc.pause_time * 0x00010001;
0397 for (i = 0; i < (MAX_TRAFFIC_CLASS / 2); i++)
0398 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
0399
0400
0401 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
0402
0403 return 0;
0404 }
0405
0406
0407
0408
0409
0410
0411
0412
0413
0414 static s32 ixgbe_start_mac_link_82598(struct ixgbe_hw *hw,
0415 bool autoneg_wait_to_complete)
0416 {
0417 u32 autoc_reg;
0418 u32 links_reg;
0419 u32 i;
0420 s32 status = 0;
0421
0422
0423 autoc_reg = IXGBE_READ_REG(hw, IXGBE_AUTOC);
0424 autoc_reg |= IXGBE_AUTOC_AN_RESTART;
0425 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc_reg);
0426
0427
0428 if (autoneg_wait_to_complete) {
0429 if ((autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
0430 IXGBE_AUTOC_LMS_KX4_AN ||
0431 (autoc_reg & IXGBE_AUTOC_LMS_MASK) ==
0432 IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
0433 links_reg = 0;
0434 for (i = 0; i < IXGBE_AUTO_NEG_TIME; i++) {
0435 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
0436 if (links_reg & IXGBE_LINKS_KX_AN_COMP)
0437 break;
0438 msleep(100);
0439 }
0440 if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) {
0441 status = IXGBE_ERR_AUTONEG_NOT_COMPLETE;
0442 hw_dbg(hw, "Autonegotiation did not complete.\n");
0443 }
0444 }
0445 }
0446
0447
0448 msleep(50);
0449
0450 return status;
0451 }
0452
0453
0454
0455
0456
0457
0458
0459
0460 static s32 ixgbe_validate_link_ready(struct ixgbe_hw *hw)
0461 {
0462 u32 timeout;
0463 u16 an_reg;
0464
0465 if (hw->device_id != IXGBE_DEV_ID_82598AT2)
0466 return 0;
0467
0468 for (timeout = 0;
0469 timeout < IXGBE_VALIDATE_LINK_READY_TIMEOUT; timeout++) {
0470 hw->phy.ops.read_reg(hw, MDIO_STAT1, MDIO_MMD_AN, &an_reg);
0471
0472 if ((an_reg & MDIO_AN_STAT1_COMPLETE) &&
0473 (an_reg & MDIO_STAT1_LSTATUS))
0474 break;
0475
0476 msleep(100);
0477 }
0478
0479 if (timeout == IXGBE_VALIDATE_LINK_READY_TIMEOUT) {
0480 hw_dbg(hw, "Link was indicated but link is down\n");
0481 return IXGBE_ERR_LINK_SETUP;
0482 }
0483
0484 return 0;
0485 }
0486
0487
0488
0489
0490
0491
0492
0493
0494
0495
0496 static s32 ixgbe_check_mac_link_82598(struct ixgbe_hw *hw,
0497 ixgbe_link_speed *speed, bool *link_up,
0498 bool link_up_wait_to_complete)
0499 {
0500 u32 links_reg;
0501 u32 i;
0502 u16 link_reg, adapt_comp_reg;
0503
0504
0505
0506
0507
0508
0509
0510 if (hw->phy.type == ixgbe_phy_nl) {
0511 hw->phy.ops.read_reg(hw, 0xC79F, MDIO_MMD_PMAPMD, &link_reg);
0512 hw->phy.ops.read_reg(hw, 0xC79F, MDIO_MMD_PMAPMD, &link_reg);
0513 hw->phy.ops.read_reg(hw, 0xC00C, MDIO_MMD_PMAPMD,
0514 &adapt_comp_reg);
0515 if (link_up_wait_to_complete) {
0516 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
0517 if ((link_reg & 1) &&
0518 ((adapt_comp_reg & 1) == 0)) {
0519 *link_up = true;
0520 break;
0521 } else {
0522 *link_up = false;
0523 }
0524 msleep(100);
0525 hw->phy.ops.read_reg(hw, 0xC79F,
0526 MDIO_MMD_PMAPMD,
0527 &link_reg);
0528 hw->phy.ops.read_reg(hw, 0xC00C,
0529 MDIO_MMD_PMAPMD,
0530 &adapt_comp_reg);
0531 }
0532 } else {
0533 if ((link_reg & 1) && ((adapt_comp_reg & 1) == 0))
0534 *link_up = true;
0535 else
0536 *link_up = false;
0537 }
0538
0539 if (!*link_up)
0540 return 0;
0541 }
0542
0543 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
0544 if (link_up_wait_to_complete) {
0545 for (i = 0; i < IXGBE_LINK_UP_TIME; i++) {
0546 if (links_reg & IXGBE_LINKS_UP) {
0547 *link_up = true;
0548 break;
0549 } else {
0550 *link_up = false;
0551 }
0552 msleep(100);
0553 links_reg = IXGBE_READ_REG(hw, IXGBE_LINKS);
0554 }
0555 } else {
0556 if (links_reg & IXGBE_LINKS_UP)
0557 *link_up = true;
0558 else
0559 *link_up = false;
0560 }
0561
0562 if (links_reg & IXGBE_LINKS_SPEED)
0563 *speed = IXGBE_LINK_SPEED_10GB_FULL;
0564 else
0565 *speed = IXGBE_LINK_SPEED_1GB_FULL;
0566
0567 if ((hw->device_id == IXGBE_DEV_ID_82598AT2) && *link_up &&
0568 (ixgbe_validate_link_ready(hw) != 0))
0569 *link_up = false;
0570
0571 return 0;
0572 }
0573
0574
0575
0576
0577
0578
0579
0580
0581
0582 static s32 ixgbe_setup_mac_link_82598(struct ixgbe_hw *hw,
0583 ixgbe_link_speed speed,
0584 bool autoneg_wait_to_complete)
0585 {
0586 bool autoneg = false;
0587 ixgbe_link_speed link_capabilities = IXGBE_LINK_SPEED_UNKNOWN;
0588 u32 curr_autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
0589 u32 autoc = curr_autoc;
0590 u32 link_mode = autoc & IXGBE_AUTOC_LMS_MASK;
0591
0592
0593 ixgbe_get_link_capabilities_82598(hw, &link_capabilities, &autoneg);
0594 speed &= link_capabilities;
0595
0596 if (speed == IXGBE_LINK_SPEED_UNKNOWN)
0597 return IXGBE_ERR_LINK_SETUP;
0598
0599
0600 else if (link_mode == IXGBE_AUTOC_LMS_KX4_AN ||
0601 link_mode == IXGBE_AUTOC_LMS_KX4_AN_1G_AN) {
0602 autoc &= ~IXGBE_AUTOC_KX4_KX_SUPP_MASK;
0603 if (speed & IXGBE_LINK_SPEED_10GB_FULL)
0604 autoc |= IXGBE_AUTOC_KX4_SUPP;
0605 if (speed & IXGBE_LINK_SPEED_1GB_FULL)
0606 autoc |= IXGBE_AUTOC_KX_SUPP;
0607 if (autoc != curr_autoc)
0608 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, autoc);
0609 }
0610
0611
0612
0613
0614
0615 return ixgbe_start_mac_link_82598(hw, autoneg_wait_to_complete);
0616 }
0617
0618
0619
0620
0621
0622
0623
0624
0625
0626
0627 static s32 ixgbe_setup_copper_link_82598(struct ixgbe_hw *hw,
0628 ixgbe_link_speed speed,
0629 bool autoneg_wait_to_complete)
0630 {
0631 s32 status;
0632
0633
0634 status = hw->phy.ops.setup_link_speed(hw, speed,
0635 autoneg_wait_to_complete);
0636
0637 ixgbe_start_mac_link_82598(hw, autoneg_wait_to_complete);
0638
0639 return status;
0640 }
0641
0642
0643
0644
0645
0646
0647
0648
0649
0650 static s32 ixgbe_reset_hw_82598(struct ixgbe_hw *hw)
0651 {
0652 s32 status;
0653 s32 phy_status = 0;
0654 u32 ctrl;
0655 u32 gheccr;
0656 u32 i;
0657 u32 autoc;
0658 u8 analog_val;
0659
0660
0661 status = hw->mac.ops.stop_adapter(hw);
0662 if (status)
0663 return status;
0664
0665
0666
0667
0668
0669
0670 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK, &analog_val);
0671 if (analog_val & IXGBE_ATLAS_PDN_TX_REG_EN) {
0672
0673 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
0674 &analog_val);
0675 analog_val &= ~IXGBE_ATLAS_PDN_TX_REG_EN;
0676 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_LPBK,
0677 analog_val);
0678
0679 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
0680 &analog_val);
0681 analog_val &= ~IXGBE_ATLAS_PDN_TX_10G_QL_ALL;
0682 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_10G,
0683 analog_val);
0684
0685 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
0686 &analog_val);
0687 analog_val &= ~IXGBE_ATLAS_PDN_TX_1G_QL_ALL;
0688 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_1G,
0689 analog_val);
0690
0691 hw->mac.ops.read_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
0692 &analog_val);
0693 analog_val &= ~IXGBE_ATLAS_PDN_TX_AN_QL_ALL;
0694 hw->mac.ops.write_analog_reg8(hw, IXGBE_ATLAS_PDN_AN,
0695 analog_val);
0696 }
0697
0698
0699 if (hw->phy.reset_disable == false) {
0700
0701
0702
0703 phy_status = hw->phy.ops.init(hw);
0704 if (phy_status == IXGBE_ERR_SFP_NOT_SUPPORTED)
0705 return phy_status;
0706 if (phy_status == IXGBE_ERR_SFP_NOT_PRESENT)
0707 goto mac_reset_top;
0708
0709 hw->phy.ops.reset(hw);
0710 }
0711
0712 mac_reset_top:
0713
0714
0715
0716
0717 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL) | IXGBE_CTRL_RST;
0718 IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl);
0719 IXGBE_WRITE_FLUSH(hw);
0720 usleep_range(1000, 1200);
0721
0722
0723 for (i = 0; i < 10; i++) {
0724 ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL);
0725 if (!(ctrl & IXGBE_CTRL_RST))
0726 break;
0727 udelay(1);
0728 }
0729 if (ctrl & IXGBE_CTRL_RST) {
0730 status = IXGBE_ERR_RESET_FAILED;
0731 hw_dbg(hw, "Reset polling failed to complete.\n");
0732 }
0733
0734 msleep(50);
0735
0736
0737
0738
0739
0740
0741 if (hw->mac.flags & IXGBE_FLAGS_DOUBLE_RESET_REQUIRED) {
0742 hw->mac.flags &= ~IXGBE_FLAGS_DOUBLE_RESET_REQUIRED;
0743 goto mac_reset_top;
0744 }
0745
0746 gheccr = IXGBE_READ_REG(hw, IXGBE_GHECCR);
0747 gheccr &= ~(BIT(21) | BIT(18) | BIT(9) | BIT(6));
0748 IXGBE_WRITE_REG(hw, IXGBE_GHECCR, gheccr);
0749
0750
0751
0752
0753
0754
0755 autoc = IXGBE_READ_REG(hw, IXGBE_AUTOC);
0756 if (hw->mac.orig_link_settings_stored == false) {
0757 hw->mac.orig_autoc = autoc;
0758 hw->mac.orig_link_settings_stored = true;
0759 } else if (autoc != hw->mac.orig_autoc) {
0760 IXGBE_WRITE_REG(hw, IXGBE_AUTOC, hw->mac.orig_autoc);
0761 }
0762
0763
0764 hw->mac.ops.get_mac_addr(hw, hw->mac.perm_addr);
0765
0766
0767
0768
0769
0770 hw->mac.ops.init_rx_addrs(hw);
0771
0772 if (phy_status)
0773 status = phy_status;
0774
0775 return status;
0776 }
0777
0778
0779
0780
0781
0782
0783
0784 static s32 ixgbe_set_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
0785 {
0786 u32 rar_high;
0787 u32 rar_entries = hw->mac.num_rar_entries;
0788
0789
0790 if (rar >= rar_entries) {
0791 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
0792 return IXGBE_ERR_INVALID_ARGUMENT;
0793 }
0794
0795 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
0796 rar_high &= ~IXGBE_RAH_VIND_MASK;
0797 rar_high |= ((vmdq << IXGBE_RAH_VIND_SHIFT) & IXGBE_RAH_VIND_MASK);
0798 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
0799 return 0;
0800 }
0801
0802
0803
0804
0805
0806
0807
0808 static s32 ixgbe_clear_vmdq_82598(struct ixgbe_hw *hw, u32 rar, u32 vmdq)
0809 {
0810 u32 rar_high;
0811 u32 rar_entries = hw->mac.num_rar_entries;
0812
0813
0814
0815 if (rar >= rar_entries) {
0816 hw_dbg(hw, "RAR index %d is out of range.\n", rar);
0817 return IXGBE_ERR_INVALID_ARGUMENT;
0818 }
0819
0820 rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar));
0821 if (rar_high & IXGBE_RAH_VIND_MASK) {
0822 rar_high &= ~IXGBE_RAH_VIND_MASK;
0823 IXGBE_WRITE_REG(hw, IXGBE_RAH(rar), rar_high);
0824 }
0825
0826 return 0;
0827 }
0828
0829
0830
0831
0832
0833
0834
0835
0836
0837
0838
0839 static s32 ixgbe_set_vfta_82598(struct ixgbe_hw *hw, u32 vlan, u32 vind,
0840 bool vlan_on, bool vlvf_bypass)
0841 {
0842 u32 regindex;
0843 u32 bitindex;
0844 u32 bits;
0845 u32 vftabyte;
0846
0847 if (vlan > 4095)
0848 return IXGBE_ERR_PARAM;
0849
0850
0851 regindex = (vlan >> 5) & 0x7F;
0852
0853
0854 vftabyte = ((vlan >> 3) & 0x03);
0855 bitindex = (vlan & 0x7) << 2;
0856
0857
0858 bits = IXGBE_READ_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex));
0859 bits &= (~(0x0F << bitindex));
0860 bits |= (vind << bitindex);
0861 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vftabyte, regindex), bits);
0862
0863
0864 bitindex = vlan & 0x1F;
0865
0866 bits = IXGBE_READ_REG(hw, IXGBE_VFTA(regindex));
0867 if (vlan_on)
0868
0869 bits |= BIT(bitindex);
0870 else
0871
0872 bits &= ~BIT(bitindex);
0873 IXGBE_WRITE_REG(hw, IXGBE_VFTA(regindex), bits);
0874
0875 return 0;
0876 }
0877
0878
0879
0880
0881
0882
0883
0884 static s32 ixgbe_clear_vfta_82598(struct ixgbe_hw *hw)
0885 {
0886 u32 offset;
0887 u32 vlanbyte;
0888
0889 for (offset = 0; offset < hw->mac.vft_size; offset++)
0890 IXGBE_WRITE_REG(hw, IXGBE_VFTA(offset), 0);
0891
0892 for (vlanbyte = 0; vlanbyte < 4; vlanbyte++)
0893 for (offset = 0; offset < hw->mac.vft_size; offset++)
0894 IXGBE_WRITE_REG(hw, IXGBE_VFTAVIND(vlanbyte, offset),
0895 0);
0896
0897 return 0;
0898 }
0899
0900
0901
0902
0903
0904
0905
0906
0907
0908 static s32 ixgbe_read_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 *val)
0909 {
0910 u32 atlas_ctl;
0911
0912 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL,
0913 IXGBE_ATLASCTL_WRITE_CMD | (reg << 8));
0914 IXGBE_WRITE_FLUSH(hw);
0915 udelay(10);
0916 atlas_ctl = IXGBE_READ_REG(hw, IXGBE_ATLASCTL);
0917 *val = (u8)atlas_ctl;
0918
0919 return 0;
0920 }
0921
0922
0923
0924
0925
0926
0927
0928
0929
0930 static s32 ixgbe_write_analog_reg8_82598(struct ixgbe_hw *hw, u32 reg, u8 val)
0931 {
0932 u32 atlas_ctl;
0933
0934 atlas_ctl = (reg << 8) | val;
0935 IXGBE_WRITE_REG(hw, IXGBE_ATLASCTL, atlas_ctl);
0936 IXGBE_WRITE_FLUSH(hw);
0937 udelay(10);
0938
0939 return 0;
0940 }
0941
0942
0943
0944
0945
0946
0947
0948
0949
0950
0951 static s32 ixgbe_read_i2c_phy_82598(struct ixgbe_hw *hw, u8 dev_addr,
0952 u8 byte_offset, u8 *eeprom_data)
0953 {
0954 s32 status = 0;
0955 u16 sfp_addr = 0;
0956 u16 sfp_data = 0;
0957 u16 sfp_stat = 0;
0958 u16 gssr;
0959 u32 i;
0960
0961 if (IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)
0962 gssr = IXGBE_GSSR_PHY1_SM;
0963 else
0964 gssr = IXGBE_GSSR_PHY0_SM;
0965
0966 if (hw->mac.ops.acquire_swfw_sync(hw, gssr) != 0)
0967 return IXGBE_ERR_SWFW_SYNC;
0968
0969 if (hw->phy.type == ixgbe_phy_nl) {
0970
0971
0972
0973
0974
0975 sfp_addr = (dev_addr << 8) + byte_offset;
0976 sfp_addr = (sfp_addr | IXGBE_I2C_EEPROM_READ_MASK);
0977 hw->phy.ops.write_reg_mdi(hw,
0978 IXGBE_MDIO_PMA_PMD_SDA_SCL_ADDR,
0979 MDIO_MMD_PMAPMD,
0980 sfp_addr);
0981
0982
0983 for (i = 0; i < 100; i++) {
0984 hw->phy.ops.read_reg_mdi(hw,
0985 IXGBE_MDIO_PMA_PMD_SDA_SCL_STAT,
0986 MDIO_MMD_PMAPMD,
0987 &sfp_stat);
0988 sfp_stat = sfp_stat & IXGBE_I2C_EEPROM_STATUS_MASK;
0989 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_IN_PROGRESS)
0990 break;
0991 usleep_range(10000, 20000);
0992 }
0993
0994 if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_PASS) {
0995 hw_dbg(hw, "EEPROM read did not pass.\n");
0996 status = IXGBE_ERR_SFP_NOT_PRESENT;
0997 goto out;
0998 }
0999
1000
1001 hw->phy.ops.read_reg_mdi(hw, IXGBE_MDIO_PMA_PMD_SDA_SCL_DATA,
1002 MDIO_MMD_PMAPMD, &sfp_data);
1003
1004 *eeprom_data = (u8)(sfp_data >> 8);
1005 } else {
1006 status = IXGBE_ERR_PHY;
1007 }
1008
1009 out:
1010 hw->mac.ops.release_swfw_sync(hw, gssr);
1011 return status;
1012 }
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022 static s32 ixgbe_read_i2c_eeprom_82598(struct ixgbe_hw *hw, u8 byte_offset,
1023 u8 *eeprom_data)
1024 {
1025 return ixgbe_read_i2c_phy_82598(hw, IXGBE_I2C_EEPROM_DEV_ADDR,
1026 byte_offset, eeprom_data);
1027 }
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037 static s32 ixgbe_read_i2c_sff8472_82598(struct ixgbe_hw *hw, u8 byte_offset,
1038 u8 *sff8472_data)
1039 {
1040 return ixgbe_read_i2c_phy_82598(hw, IXGBE_I2C_EEPROM_DEV_ADDR2,
1041 byte_offset, sff8472_data);
1042 }
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052 static void ixgbe_set_lan_id_multi_port_pcie_82598(struct ixgbe_hw *hw)
1053 {
1054 struct ixgbe_bus_info *bus = &hw->bus;
1055 u16 pci_gen = 0;
1056 u16 pci_ctrl2 = 0;
1057
1058 ixgbe_set_lan_id_multi_port_pcie(hw);
1059
1060
1061 hw->eeprom.ops.read(hw, IXGBE_PCIE_GENERAL_PTR, &pci_gen);
1062 if ((pci_gen != 0) && (pci_gen != 0xFFFF)) {
1063
1064 hw->eeprom.ops.read(hw, pci_gen + IXGBE_PCIE_CTRL2, &pci_ctrl2);
1065
1066
1067 if ((pci_ctrl2 & IXGBE_PCIE_CTRL2_LAN_DISABLE) &&
1068 !(pci_ctrl2 & IXGBE_PCIE_CTRL2_DISABLE_SELECT) &&
1069 !(pci_ctrl2 & IXGBE_PCIE_CTRL2_DUMMY_ENABLE)) {
1070
1071 bus->func = 0;
1072 }
1073 }
1074 }
1075
1076
1077
1078
1079
1080
1081
1082
1083 static void ixgbe_set_rxpba_82598(struct ixgbe_hw *hw, int num_pb,
1084 u32 headroom, int strategy)
1085 {
1086 u32 rxpktsize = IXGBE_RXPBSIZE_64KB;
1087 u8 i = 0;
1088
1089 if (!num_pb)
1090 return;
1091
1092
1093 switch (strategy) {
1094 case PBA_STRATEGY_WEIGHTED:
1095
1096 rxpktsize = IXGBE_RXPBSIZE_80KB;
1097 for (; i < 4; i++)
1098 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
1099
1100 rxpktsize = IXGBE_RXPBSIZE_48KB;
1101 fallthrough;
1102 case PBA_STRATEGY_EQUAL:
1103 default:
1104
1105 for (; i < IXGBE_MAX_PACKET_BUFFERS; i++)
1106 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
1107 break;
1108 }
1109
1110
1111 for (i = 0; i < IXGBE_MAX_PACKET_BUFFERS; i++)
1112 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), IXGBE_TXPBSIZE_40KB);
1113 }
1114
1115 static const struct ixgbe_mac_operations mac_ops_82598 = {
1116 .init_hw = &ixgbe_init_hw_generic,
1117 .reset_hw = &ixgbe_reset_hw_82598,
1118 .start_hw = &ixgbe_start_hw_82598,
1119 .clear_hw_cntrs = &ixgbe_clear_hw_cntrs_generic,
1120 .get_media_type = &ixgbe_get_media_type_82598,
1121 .enable_rx_dma = &ixgbe_enable_rx_dma_generic,
1122 .get_mac_addr = &ixgbe_get_mac_addr_generic,
1123 .stop_adapter = &ixgbe_stop_adapter_generic,
1124 .get_bus_info = &ixgbe_get_bus_info_generic,
1125 .set_lan_id = &ixgbe_set_lan_id_multi_port_pcie_82598,
1126 .read_analog_reg8 = &ixgbe_read_analog_reg8_82598,
1127 .write_analog_reg8 = &ixgbe_write_analog_reg8_82598,
1128 .setup_link = &ixgbe_setup_mac_link_82598,
1129 .set_rxpba = &ixgbe_set_rxpba_82598,
1130 .check_link = &ixgbe_check_mac_link_82598,
1131 .get_link_capabilities = &ixgbe_get_link_capabilities_82598,
1132 .led_on = &ixgbe_led_on_generic,
1133 .led_off = &ixgbe_led_off_generic,
1134 .init_led_link_act = ixgbe_init_led_link_act_generic,
1135 .blink_led_start = &ixgbe_blink_led_start_generic,
1136 .blink_led_stop = &ixgbe_blink_led_stop_generic,
1137 .set_rar = &ixgbe_set_rar_generic,
1138 .clear_rar = &ixgbe_clear_rar_generic,
1139 .set_vmdq = &ixgbe_set_vmdq_82598,
1140 .clear_vmdq = &ixgbe_clear_vmdq_82598,
1141 .init_rx_addrs = &ixgbe_init_rx_addrs_generic,
1142 .update_mc_addr_list = &ixgbe_update_mc_addr_list_generic,
1143 .enable_mc = &ixgbe_enable_mc_generic,
1144 .disable_mc = &ixgbe_disable_mc_generic,
1145 .clear_vfta = &ixgbe_clear_vfta_82598,
1146 .set_vfta = &ixgbe_set_vfta_82598,
1147 .fc_enable = &ixgbe_fc_enable_82598,
1148 .setup_fc = ixgbe_setup_fc_generic,
1149 .fc_autoneg = ixgbe_fc_autoneg,
1150 .set_fw_drv_ver = NULL,
1151 .acquire_swfw_sync = &ixgbe_acquire_swfw_sync,
1152 .release_swfw_sync = &ixgbe_release_swfw_sync,
1153 .init_swfw_sync = NULL,
1154 .get_thermal_sensor_data = NULL,
1155 .init_thermal_sensor_thresh = NULL,
1156 .prot_autoc_read = &prot_autoc_read_generic,
1157 .prot_autoc_write = &prot_autoc_write_generic,
1158 .enable_rx = &ixgbe_enable_rx_generic,
1159 .disable_rx = &ixgbe_disable_rx_generic,
1160 };
1161
1162 static const struct ixgbe_eeprom_operations eeprom_ops_82598 = {
1163 .init_params = &ixgbe_init_eeprom_params_generic,
1164 .read = &ixgbe_read_eerd_generic,
1165 .write = &ixgbe_write_eeprom_generic,
1166 .write_buffer = &ixgbe_write_eeprom_buffer_bit_bang_generic,
1167 .read_buffer = &ixgbe_read_eerd_buffer_generic,
1168 .calc_checksum = &ixgbe_calc_eeprom_checksum_generic,
1169 .validate_checksum = &ixgbe_validate_eeprom_checksum_generic,
1170 .update_checksum = &ixgbe_update_eeprom_checksum_generic,
1171 };
1172
1173 static const struct ixgbe_phy_operations phy_ops_82598 = {
1174 .identify = &ixgbe_identify_phy_generic,
1175 .identify_sfp = &ixgbe_identify_module_generic,
1176 .init = &ixgbe_init_phy_ops_82598,
1177 .reset = &ixgbe_reset_phy_generic,
1178 .read_reg = &ixgbe_read_phy_reg_generic,
1179 .write_reg = &ixgbe_write_phy_reg_generic,
1180 .read_reg_mdi = &ixgbe_read_phy_reg_mdi,
1181 .write_reg_mdi = &ixgbe_write_phy_reg_mdi,
1182 .setup_link = &ixgbe_setup_phy_link_generic,
1183 .setup_link_speed = &ixgbe_setup_phy_link_speed_generic,
1184 .read_i2c_sff8472 = &ixgbe_read_i2c_sff8472_82598,
1185 .read_i2c_eeprom = &ixgbe_read_i2c_eeprom_82598,
1186 .check_overtemp = &ixgbe_tn_check_overtemp,
1187 };
1188
1189 const struct ixgbe_info ixgbe_82598_info = {
1190 .mac = ixgbe_mac_82598EB,
1191 .get_invariants = &ixgbe_get_invariants_82598,
1192 .mac_ops = &mac_ops_82598,
1193 .eeprom_ops = &eeprom_ops_82598,
1194 .phy_ops = &phy_ops_82598,
1195 .mvals = ixgbe_mvals_8259X,
1196 };