Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1 | /**************************************************************************** |
| 2 | * Driver for Solarflare Solarstorm network controllers and boards |
| 3 | * Copyright 2005-2006 Fen Systems Ltd. |
| 4 | * Copyright 2006-2008 Solarflare Communications Inc. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License version 2 as published |
| 8 | * by the Free Software Foundation, incorporated herein by reference. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/delay.h> |
| 12 | #include "net_driver.h" |
| 13 | #include "efx.h" |
| 14 | #include "falcon.h" |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 15 | #include "regs.h" |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 16 | #include "io.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 17 | #include "mac.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 18 | #include "mdio_10g.h" |
| 19 | #include "phy.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 20 | #include "workarounds.h" |
| 21 | |
| 22 | /************************************************************************** |
| 23 | * |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 24 | * MAC operations |
| 25 | * |
| 26 | *************************************************************************/ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 27 | |
| 28 | /* Configure the XAUI driver that is an output from Falcon */ |
| 29 | static void falcon_setup_xaui(struct efx_nic *efx) |
| 30 | { |
Ben Hutchings | c1e5fcc | 2008-09-01 12:48:41 +0100 | [diff] [blame] | 31 | efx_oword_t sdctl, txdrv; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 32 | |
| 33 | /* Move the XAUI into low power, unless there is no PHY, in |
| 34 | * which case the XAUI will have to drive a cable. */ |
| 35 | if (efx->phy_type == PHY_TYPE_NONE) |
| 36 | return; |
| 37 | |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 38 | efx_reado(efx, &sdctl, FR_AB_XX_SD_CTL); |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 39 | EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_HIDRVD, FFE_AB_XX_SD_CTL_DRV_DEF); |
| 40 | EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_LODRVD, FFE_AB_XX_SD_CTL_DRV_DEF); |
| 41 | EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_HIDRVC, FFE_AB_XX_SD_CTL_DRV_DEF); |
| 42 | EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_LODRVC, FFE_AB_XX_SD_CTL_DRV_DEF); |
| 43 | EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_HIDRVB, FFE_AB_XX_SD_CTL_DRV_DEF); |
| 44 | EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_LODRVB, FFE_AB_XX_SD_CTL_DRV_DEF); |
| 45 | EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_HIDRVA, FFE_AB_XX_SD_CTL_DRV_DEF); |
| 46 | EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_LODRVA, FFE_AB_XX_SD_CTL_DRV_DEF); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 47 | efx_writeo(efx, &sdctl, FR_AB_XX_SD_CTL); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 48 | |
Ben Hutchings | c1e5fcc | 2008-09-01 12:48:41 +0100 | [diff] [blame] | 49 | EFX_POPULATE_OWORD_8(txdrv, |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 50 | FRF_AB_XX_DEQD, FFE_AB_XX_TXDRV_DEQ_DEF, |
| 51 | FRF_AB_XX_DEQC, FFE_AB_XX_TXDRV_DEQ_DEF, |
| 52 | FRF_AB_XX_DEQB, FFE_AB_XX_TXDRV_DEQ_DEF, |
| 53 | FRF_AB_XX_DEQA, FFE_AB_XX_TXDRV_DEQ_DEF, |
| 54 | FRF_AB_XX_DTXD, FFE_AB_XX_TXDRV_DTX_DEF, |
| 55 | FRF_AB_XX_DTXC, FFE_AB_XX_TXDRV_DTX_DEF, |
| 56 | FRF_AB_XX_DTXB, FFE_AB_XX_TXDRV_DTX_DEF, |
| 57 | FRF_AB_XX_DTXA, FFE_AB_XX_TXDRV_DTX_DEF); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 58 | efx_writeo(efx, &txdrv, FR_AB_XX_TXDRV_CTL); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 59 | } |
| 60 | |
Ben Hutchings | ef08af0 | 2008-09-01 12:49:20 +0100 | [diff] [blame] | 61 | int falcon_reset_xaui(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 62 | { |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame^] | 63 | struct falcon_nic_data *nic_data = efx->nic_data; |
Ben Hutchings | c1e5fcc | 2008-09-01 12:48:41 +0100 | [diff] [blame] | 64 | efx_oword_t reg; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 65 | int count; |
| 66 | |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame^] | 67 | /* Don't fetch MAC statistics over an XMAC reset */ |
| 68 | WARN_ON(nic_data->stats_disable_count == 0); |
| 69 | |
Ben Hutchings | d4ec09a | 2009-08-26 08:16:46 +0000 | [diff] [blame] | 70 | /* Start reset sequence */ |
Ben Hutchings | 80cb9a0 | 2009-11-25 16:08:41 +0000 | [diff] [blame] | 71 | EFX_POPULATE_OWORD_1(reg, FRF_AB_XX_RST_XX_EN, 1); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 72 | efx_writeo(efx, ®, FR_AB_XX_PWR_RST); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 73 | |
Ben Hutchings | d4ec09a | 2009-08-26 08:16:46 +0000 | [diff] [blame] | 74 | /* Wait up to 10 ms for completion, then reinitialise */ |
| 75 | for (count = 0; count < 1000; count++) { |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 76 | efx_reado(efx, ®, FR_AB_XX_PWR_RST); |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 77 | if (EFX_OWORD_FIELD(reg, FRF_AB_XX_RST_XX_EN) == 0 && |
| 78 | EFX_OWORD_FIELD(reg, FRF_AB_XX_SD_RST_ACT) == 0) { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 79 | falcon_setup_xaui(efx); |
| 80 | return 0; |
| 81 | } |
| 82 | udelay(10); |
| 83 | } |
| 84 | EFX_ERR(efx, "timed out waiting for XAUI/XGXS reset\n"); |
| 85 | return -ETIMEDOUT; |
| 86 | } |
| 87 | |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 88 | static void falcon_mask_status_intr(struct efx_nic *efx, bool enable) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 89 | { |
Ben Hutchings | c1e5fcc | 2008-09-01 12:48:41 +0100 | [diff] [blame] | 90 | efx_oword_t reg; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 91 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 92 | if ((falcon_rev(efx) != FALCON_REV_B0) || LOOPBACK_INTERNAL(efx)) |
| 93 | return; |
| 94 | |
| 95 | /* We expect xgmii faults if the wireside link is up */ |
Ben Hutchings | eb50c0d | 2009-11-23 16:06:30 +0000 | [diff] [blame] | 96 | if (!EFX_WORKAROUND_5147(efx) || !efx->link_state.up) |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 97 | return; |
| 98 | |
| 99 | /* We can only use this interrupt to signal the negative edge of |
| 100 | * xaui_align [we have to poll the positive edge]. */ |
| 101 | if (!efx->mac_up) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 102 | return; |
| 103 | |
| 104 | /* Flush the ISR */ |
| 105 | if (enable) |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 106 | efx_reado(efx, ®, FR_AB_XM_MGT_INT_MSK); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 107 | |
Ben Hutchings | c1e5fcc | 2008-09-01 12:48:41 +0100 | [diff] [blame] | 108 | EFX_POPULATE_OWORD_2(reg, |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 109 | FRF_AB_XM_MSK_RMTFLT, !enable, |
| 110 | FRF_AB_XM_MSK_LCLFLT, !enable); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 111 | efx_writeo(efx, ®, FR_AB_XM_MGT_INT_MASK); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 112 | } |
| 113 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 114 | /* Get status of XAUI link */ |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 115 | bool falcon_xaui_link_ok(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 116 | { |
Ben Hutchings | c1e5fcc | 2008-09-01 12:48:41 +0100 | [diff] [blame] | 117 | efx_oword_t reg; |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 118 | bool align_done, link_ok = false; |
| 119 | int sync_status; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 120 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 121 | if (LOOPBACK_INTERNAL(efx)) |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 122 | return true; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 123 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 124 | /* Read link status */ |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 125 | efx_reado(efx, ®, FR_AB_XX_CORE_STAT); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 126 | |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 127 | align_done = EFX_OWORD_FIELD(reg, FRF_AB_XX_ALIGN_DONE); |
| 128 | sync_status = EFX_OWORD_FIELD(reg, FRF_AB_XX_SYNC_STAT); |
| 129 | if (align_done && (sync_status == FFE_AB_XX_STAT_ALL_LANES)) |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 130 | link_ok = true; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 131 | |
| 132 | /* Clear link status ready for next read */ |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 133 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_COMMA_DET, FFE_AB_XX_STAT_ALL_LANES); |
| 134 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_CHAR_ERR, FFE_AB_XX_STAT_ALL_LANES); |
| 135 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_DISPERR, FFE_AB_XX_STAT_ALL_LANES); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 136 | efx_writeo(efx, ®, FR_AB_XX_CORE_STAT); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 137 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 138 | /* If the link is up, then check the phy side of the xaui link */ |
Ben Hutchings | eb50c0d | 2009-11-23 16:06:30 +0000 | [diff] [blame] | 139 | if (efx->link_state.up && link_ok) |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 140 | if (efx->phy_op->mmds & (1 << MDIO_MMD_PHYXS)) |
Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 141 | link_ok = efx_mdio_phyxgxs_lane_sync(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 142 | |
| 143 | return link_ok; |
| 144 | } |
| 145 | |
| 146 | static void falcon_reconfigure_xmac_core(struct efx_nic *efx) |
| 147 | { |
| 148 | unsigned int max_frame_len; |
Ben Hutchings | c1e5fcc | 2008-09-01 12:48:41 +0100 | [diff] [blame] | 149 | efx_oword_t reg; |
Ben Hutchings | eb50c0d | 2009-11-23 16:06:30 +0000 | [diff] [blame] | 150 | bool rx_fc = !!(efx->link_state.fc & EFX_FC_RX); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 151 | |
| 152 | /* Configure MAC - cut-thru mode is hard wired on */ |
Ben Hutchings | 80cb9a0 | 2009-11-25 16:08:41 +0000 | [diff] [blame] | 153 | EFX_POPULATE_OWORD_3(reg, |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 154 | FRF_AB_XM_RX_JUMBO_MODE, 1, |
| 155 | FRF_AB_XM_TX_STAT_EN, 1, |
| 156 | FRF_AB_XM_RX_STAT_EN, 1); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 157 | efx_writeo(efx, ®, FR_AB_XM_GLB_CFG); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 158 | |
| 159 | /* Configure TX */ |
Ben Hutchings | 80cb9a0 | 2009-11-25 16:08:41 +0000 | [diff] [blame] | 160 | EFX_POPULATE_OWORD_6(reg, |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 161 | FRF_AB_XM_TXEN, 1, |
| 162 | FRF_AB_XM_TX_PRMBL, 1, |
| 163 | FRF_AB_XM_AUTO_PAD, 1, |
| 164 | FRF_AB_XM_TXCRC, 1, |
| 165 | FRF_AB_XM_FCNTL, 1, |
| 166 | FRF_AB_XM_IPG, 0x3); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 167 | efx_writeo(efx, ®, FR_AB_XM_TX_CFG); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 168 | |
| 169 | /* Configure RX */ |
Ben Hutchings | 80cb9a0 | 2009-11-25 16:08:41 +0000 | [diff] [blame] | 170 | EFX_POPULATE_OWORD_5(reg, |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 171 | FRF_AB_XM_RXEN, 1, |
| 172 | FRF_AB_XM_AUTO_DEPAD, 0, |
| 173 | FRF_AB_XM_ACPT_ALL_MCAST, 1, |
| 174 | FRF_AB_XM_ACPT_ALL_UCAST, efx->promiscuous, |
| 175 | FRF_AB_XM_PASS_CRC_ERR, 1); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 176 | efx_writeo(efx, ®, FR_AB_XM_RX_CFG); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 177 | |
| 178 | /* Set frame length */ |
| 179 | max_frame_len = EFX_MAX_FRAME_LEN(efx->net_dev->mtu); |
Ben Hutchings | 80cb9a0 | 2009-11-25 16:08:41 +0000 | [diff] [blame] | 180 | EFX_POPULATE_OWORD_1(reg, FRF_AB_XM_MAX_RX_FRM_SIZE, max_frame_len); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 181 | efx_writeo(efx, ®, FR_AB_XM_RX_PARAM); |
Ben Hutchings | 80cb9a0 | 2009-11-25 16:08:41 +0000 | [diff] [blame] | 182 | EFX_POPULATE_OWORD_2(reg, |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 183 | FRF_AB_XM_MAX_TX_FRM_SIZE, max_frame_len, |
| 184 | FRF_AB_XM_TX_JUMBO_MODE, 1); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 185 | efx_writeo(efx, ®, FR_AB_XM_TX_PARAM); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 186 | |
Ben Hutchings | 80cb9a0 | 2009-11-25 16:08:41 +0000 | [diff] [blame] | 187 | EFX_POPULATE_OWORD_2(reg, |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 188 | FRF_AB_XM_PAUSE_TIME, 0xfffe, /* MAX PAUSE TIME */ |
| 189 | FRF_AB_XM_DIS_FCNTL, !rx_fc); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 190 | efx_writeo(efx, ®, FR_AB_XM_FC); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 191 | |
| 192 | /* Set MAC address */ |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 193 | memcpy(®, &efx->net_dev->dev_addr[0], 4); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 194 | efx_writeo(efx, ®, FR_AB_XM_ADR_LO); |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 195 | memcpy(®, &efx->net_dev->dev_addr[4], 2); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 196 | efx_writeo(efx, ®, FR_AB_XM_ADR_HI); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 197 | } |
| 198 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 199 | static void falcon_reconfigure_xgxs_core(struct efx_nic *efx) |
| 200 | { |
Ben Hutchings | c1e5fcc | 2008-09-01 12:48:41 +0100 | [diff] [blame] | 201 | efx_oword_t reg; |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 202 | bool xgxs_loopback = (efx->loopback_mode == LOOPBACK_XGXS); |
| 203 | bool xaui_loopback = (efx->loopback_mode == LOOPBACK_XAUI); |
| 204 | bool xgmii_loopback = (efx->loopback_mode == LOOPBACK_XGMII); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 205 | |
| 206 | /* XGXS block is flaky and will need to be reset if moving |
| 207 | * into our out of XGMII, XGXS or XAUI loopbacks. */ |
| 208 | if (EFX_WORKAROUND_5147(efx)) { |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 209 | bool old_xgmii_loopback, old_xgxs_loopback, old_xaui_loopback; |
| 210 | bool reset_xgxs; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 211 | |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 212 | efx_reado(efx, ®, FR_AB_XX_CORE_STAT); |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 213 | old_xgxs_loopback = EFX_OWORD_FIELD(reg, FRF_AB_XX_XGXS_LB_EN); |
| 214 | old_xgmii_loopback = |
| 215 | EFX_OWORD_FIELD(reg, FRF_AB_XX_XGMII_LB_EN); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 216 | |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 217 | efx_reado(efx, ®, FR_AB_XX_SD_CTL); |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 218 | old_xaui_loopback = EFX_OWORD_FIELD(reg, FRF_AB_XX_LPBKA); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 219 | |
| 220 | /* The PHY driver may have turned XAUI off */ |
| 221 | reset_xgxs = ((xgxs_loopback != old_xgxs_loopback) || |
| 222 | (xaui_loopback != old_xaui_loopback) || |
| 223 | (xgmii_loopback != old_xgmii_loopback)); |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 224 | |
| 225 | if (reset_xgxs) |
| 226 | falcon_reset_xaui(efx); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 227 | } |
| 228 | |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 229 | efx_reado(efx, ®, FR_AB_XX_CORE_STAT); |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 230 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_FORCE_SIG, |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 231 | (xgxs_loopback || xaui_loopback) ? |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 232 | FFE_AB_XX_FORCE_SIG_ALL_LANES : 0); |
| 233 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_XGXS_LB_EN, xgxs_loopback); |
| 234 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_XGMII_LB_EN, xgmii_loopback); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 235 | efx_writeo(efx, ®, FR_AB_XX_CORE_STAT); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 236 | |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 237 | efx_reado(efx, ®, FR_AB_XX_SD_CTL); |
Ben Hutchings | 3e6c453 | 2009-10-23 08:30:36 +0000 | [diff] [blame] | 238 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_LPBKD, xaui_loopback); |
| 239 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_LPBKC, xaui_loopback); |
| 240 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_LPBKB, xaui_loopback); |
| 241 | EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_LPBKA, xaui_loopback); |
Ben Hutchings | 12d00ca | 2009-10-23 08:30:46 +0000 | [diff] [blame] | 242 | efx_writeo(efx, ®, FR_AB_XX_SD_CTL); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 246 | /* Try and bring the Falcon side of the Falcon-Phy XAUI link fails |
| 247 | * to come back up. Bash it until it comes back up */ |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 248 | static void falcon_check_xaui_link_up(struct efx_nic *efx, int tries) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 249 | { |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 250 | efx->mac_up = falcon_xaui_link_ok(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 251 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 252 | if ((efx->loopback_mode == LOOPBACK_NETWORK) || |
Ben Hutchings | f8b87c1 | 2008-09-01 12:48:17 +0100 | [diff] [blame] | 253 | efx_phy_mode_disabled(efx->phy_mode)) |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 254 | /* XAUI link is expected to be down */ |
| 255 | return; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 256 | |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame^] | 257 | falcon_stop_nic_stats(efx); |
| 258 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 259 | while (!efx->mac_up && tries) { |
| 260 | EFX_LOG(efx, "bashing xaui\n"); |
Ben Hutchings | 91ad757 | 2008-05-16 21:14:27 +0100 | [diff] [blame] | 261 | falcon_reset_xaui(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 262 | udelay(200); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 263 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 264 | efx->mac_up = falcon_xaui_link_ok(efx); |
| 265 | --tries; |
| 266 | } |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame^] | 267 | |
| 268 | falcon_start_nic_stats(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 269 | } |
| 270 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 271 | static void falcon_reconfigure_xmac(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 272 | { |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 273 | falcon_mask_status_intr(efx, false); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 274 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 275 | falcon_reconfigure_xgxs_core(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 276 | falcon_reconfigure_xmac_core(efx); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 277 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 278 | falcon_reconfigure_mac_wrapper(efx); |
| 279 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 280 | falcon_check_xaui_link_up(efx, 5); |
| 281 | falcon_mask_status_intr(efx, true); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 282 | } |
| 283 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 284 | static void falcon_update_stats_xmac(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 285 | { |
| 286 | struct efx_mac_stats *mac_stats = &efx->mac_stats; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 287 | |
| 288 | /* Update MAC stats from DMAed values */ |
| 289 | FALCON_STAT(efx, XgRxOctets, rx_bytes); |
| 290 | FALCON_STAT(efx, XgRxOctetsOK, rx_good_bytes); |
| 291 | FALCON_STAT(efx, XgRxPkts, rx_packets); |
| 292 | FALCON_STAT(efx, XgRxPktsOK, rx_good); |
| 293 | FALCON_STAT(efx, XgRxBroadcastPkts, rx_broadcast); |
| 294 | FALCON_STAT(efx, XgRxMulticastPkts, rx_multicast); |
| 295 | FALCON_STAT(efx, XgRxUnicastPkts, rx_unicast); |
| 296 | FALCON_STAT(efx, XgRxUndersizePkts, rx_lt64); |
| 297 | FALCON_STAT(efx, XgRxOversizePkts, rx_gtjumbo); |
| 298 | FALCON_STAT(efx, XgRxJabberPkts, rx_bad_gtjumbo); |
| 299 | FALCON_STAT(efx, XgRxUndersizeFCSerrorPkts, rx_bad_lt64); |
| 300 | FALCON_STAT(efx, XgRxDropEvents, rx_overflow); |
| 301 | FALCON_STAT(efx, XgRxFCSerrorPkts, rx_bad); |
| 302 | FALCON_STAT(efx, XgRxAlignError, rx_align_error); |
| 303 | FALCON_STAT(efx, XgRxSymbolError, rx_symbol_error); |
| 304 | FALCON_STAT(efx, XgRxInternalMACError, rx_internal_error); |
| 305 | FALCON_STAT(efx, XgRxControlPkts, rx_control); |
| 306 | FALCON_STAT(efx, XgRxPausePkts, rx_pause); |
| 307 | FALCON_STAT(efx, XgRxPkts64Octets, rx_64); |
| 308 | FALCON_STAT(efx, XgRxPkts65to127Octets, rx_65_to_127); |
| 309 | FALCON_STAT(efx, XgRxPkts128to255Octets, rx_128_to_255); |
| 310 | FALCON_STAT(efx, XgRxPkts256to511Octets, rx_256_to_511); |
| 311 | FALCON_STAT(efx, XgRxPkts512to1023Octets, rx_512_to_1023); |
| 312 | FALCON_STAT(efx, XgRxPkts1024to15xxOctets, rx_1024_to_15xx); |
| 313 | FALCON_STAT(efx, XgRxPkts15xxtoMaxOctets, rx_15xx_to_jumbo); |
| 314 | FALCON_STAT(efx, XgRxLengthError, rx_length_error); |
| 315 | FALCON_STAT(efx, XgTxPkts, tx_packets); |
| 316 | FALCON_STAT(efx, XgTxOctets, tx_bytes); |
| 317 | FALCON_STAT(efx, XgTxMulticastPkts, tx_multicast); |
| 318 | FALCON_STAT(efx, XgTxBroadcastPkts, tx_broadcast); |
| 319 | FALCON_STAT(efx, XgTxUnicastPkts, tx_unicast); |
| 320 | FALCON_STAT(efx, XgTxControlPkts, tx_control); |
| 321 | FALCON_STAT(efx, XgTxPausePkts, tx_pause); |
| 322 | FALCON_STAT(efx, XgTxPkts64Octets, tx_64); |
| 323 | FALCON_STAT(efx, XgTxPkts65to127Octets, tx_65_to_127); |
| 324 | FALCON_STAT(efx, XgTxPkts128to255Octets, tx_128_to_255); |
| 325 | FALCON_STAT(efx, XgTxPkts256to511Octets, tx_256_to_511); |
| 326 | FALCON_STAT(efx, XgTxPkts512to1023Octets, tx_512_to_1023); |
| 327 | FALCON_STAT(efx, XgTxPkts1024to15xxOctets, tx_1024_to_15xx); |
| 328 | FALCON_STAT(efx, XgTxPkts1519toMaxOctets, tx_15xx_to_jumbo); |
| 329 | FALCON_STAT(efx, XgTxUndersizePkts, tx_lt64); |
| 330 | FALCON_STAT(efx, XgTxOversizePkts, tx_gtjumbo); |
| 331 | FALCON_STAT(efx, XgTxNonTcpUdpPkt, tx_non_tcpudp); |
| 332 | FALCON_STAT(efx, XgTxMacSrcErrPkt, tx_mac_src_error); |
| 333 | FALCON_STAT(efx, XgTxIpSrcErrPkt, tx_ip_src_error); |
| 334 | |
| 335 | /* Update derived statistics */ |
| 336 | mac_stats->tx_good_bytes = |
Ben Hutchings | c264361 | 2008-09-01 12:46:10 +0100 | [diff] [blame] | 337 | (mac_stats->tx_bytes - mac_stats->tx_bad_bytes - |
| 338 | mac_stats->tx_control * 64); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 339 | mac_stats->rx_bad_bytes = |
Ben Hutchings | c264361 | 2008-09-01 12:46:10 +0100 | [diff] [blame] | 340 | (mac_stats->rx_bytes - mac_stats->rx_good_bytes - |
| 341 | mac_stats->rx_control * 64); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 342 | } |
| 343 | |
Ben Hutchings | 766ca0f | 2008-12-12 21:59:24 -0800 | [diff] [blame] | 344 | static void falcon_xmac_irq(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 345 | { |
Ben Hutchings | 766ca0f | 2008-12-12 21:59:24 -0800 | [diff] [blame] | 346 | /* The XGMII link has a transient fault, which indicates either: |
| 347 | * - there's a transient xgmii fault |
| 348 | * - falcon's end of the xaui link may need a kick |
| 349 | * - the wire-side link may have gone down, but the lasi/poll() |
| 350 | * hasn't noticed yet. |
| 351 | * |
| 352 | * We only want to even bother polling XAUI if we're confident it's |
| 353 | * not (1) or (3). In both cases, the only reliable way to spot this |
| 354 | * is to wait a bit. We do this here by forcing the mac link state |
| 355 | * to down, and waiting for the mac poll to come round and check |
| 356 | */ |
| 357 | efx->mac_up = false; |
| 358 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 359 | |
Ben Hutchings | 766ca0f | 2008-12-12 21:59:24 -0800 | [diff] [blame] | 360 | static void falcon_poll_xmac(struct efx_nic *efx) |
| 361 | { |
Ben Hutchings | eb50c0d | 2009-11-23 16:06:30 +0000 | [diff] [blame] | 362 | if (!EFX_WORKAROUND_5147(efx) || !efx->link_state.up || efx->mac_up) |
Ben Hutchings | 766ca0f | 2008-12-12 21:59:24 -0800 | [diff] [blame] | 363 | return; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 364 | |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 365 | falcon_mask_status_intr(efx, false); |
Ben Hutchings | 766ca0f | 2008-12-12 21:59:24 -0800 | [diff] [blame] | 366 | falcon_check_xaui_link_up(efx, 1); |
| 367 | falcon_mask_status_intr(efx, true); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 368 | } |
| 369 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 370 | struct efx_mac_operations falcon_xmac_operations = { |
| 371 | .reconfigure = falcon_reconfigure_xmac, |
| 372 | .update_stats = falcon_update_stats_xmac, |
Ben Hutchings | 766ca0f | 2008-12-12 21:59:24 -0800 | [diff] [blame] | 373 | .irq = falcon_xmac_irq, |
| 374 | .poll = falcon_poll_xmac, |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 375 | }; |