blob: 6106ef15dee38d84508456e8caabbee34cdd8bd9 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchings0a6f40c2011-02-25 00:01:34 +00004 * Copyright 2006-2010 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01005 *
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"
Ben Hutchings744093c2009-11-29 15:12:08 +000014#include "nic.h"
Ben Hutchings3e6c4532009-10-23 08:30:36 +000015#include "regs.h"
Ben Hutchings12d00ca2009-10-23 08:30:46 +000016#include "io.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010017#include "mdio_10g.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010018#include "workarounds.h"
19
20/**************************************************************************
21 *
Ben Hutchings8ceee662008-04-27 12:55:59 +010022 * MAC operations
23 *
24 *************************************************************************/
Ben Hutchings8ceee662008-04-27 12:55:59 +010025
26/* Configure the XAUI driver that is an output from Falcon */
Steve Hodgsonb7b40ee2010-04-28 09:28:10 +000027void falcon_setup_xaui(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +010028{
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010029 efx_oword_t sdctl, txdrv;
Ben Hutchings8ceee662008-04-27 12:55:59 +010030
31 /* Move the XAUI into low power, unless there is no PHY, in
32 * which case the XAUI will have to drive a cable. */
33 if (efx->phy_type == PHY_TYPE_NONE)
34 return;
35
Ben Hutchings12d00ca2009-10-23 08:30:46 +000036 efx_reado(efx, &sdctl, FR_AB_XX_SD_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +000037 EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_HIDRVD, FFE_AB_XX_SD_CTL_DRV_DEF);
38 EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_LODRVD, FFE_AB_XX_SD_CTL_DRV_DEF);
39 EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_HIDRVC, FFE_AB_XX_SD_CTL_DRV_DEF);
40 EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_LODRVC, FFE_AB_XX_SD_CTL_DRV_DEF);
41 EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_HIDRVB, FFE_AB_XX_SD_CTL_DRV_DEF);
42 EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_LODRVB, FFE_AB_XX_SD_CTL_DRV_DEF);
43 EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_HIDRVA, FFE_AB_XX_SD_CTL_DRV_DEF);
44 EFX_SET_OWORD_FIELD(sdctl, FRF_AB_XX_LODRVA, FFE_AB_XX_SD_CTL_DRV_DEF);
Ben Hutchings12d00ca2009-10-23 08:30:46 +000045 efx_writeo(efx, &sdctl, FR_AB_XX_SD_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +010046
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010047 EFX_POPULATE_OWORD_8(txdrv,
Ben Hutchings3e6c4532009-10-23 08:30:36 +000048 FRF_AB_XX_DEQD, FFE_AB_XX_TXDRV_DEQ_DEF,
49 FRF_AB_XX_DEQC, FFE_AB_XX_TXDRV_DEQ_DEF,
50 FRF_AB_XX_DEQB, FFE_AB_XX_TXDRV_DEQ_DEF,
51 FRF_AB_XX_DEQA, FFE_AB_XX_TXDRV_DEQ_DEF,
52 FRF_AB_XX_DTXD, FFE_AB_XX_TXDRV_DTX_DEF,
53 FRF_AB_XX_DTXC, FFE_AB_XX_TXDRV_DTX_DEF,
54 FRF_AB_XX_DTXB, FFE_AB_XX_TXDRV_DTX_DEF,
55 FRF_AB_XX_DTXA, FFE_AB_XX_TXDRV_DTX_DEF);
Ben Hutchings12d00ca2009-10-23 08:30:46 +000056 efx_writeo(efx, &txdrv, FR_AB_XX_TXDRV_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +010057}
58
Ben Hutchingsef08af02008-09-01 12:49:20 +010059int falcon_reset_xaui(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +010060{
Ben Hutchings55edc6e2009-11-25 16:11:35 +000061 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010062 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +010063 int count;
64
Ben Hutchings55edc6e2009-11-25 16:11:35 +000065 /* Don't fetch MAC statistics over an XMAC reset */
66 WARN_ON(nic_data->stats_disable_count == 0);
67
Ben Hutchingsd4ec09a2009-08-26 08:16:46 +000068 /* Start reset sequence */
Ben Hutchings80cb9a02009-11-25 16:08:41 +000069 EFX_POPULATE_OWORD_1(reg, FRF_AB_XX_RST_XX_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +000070 efx_writeo(efx, &reg, FR_AB_XX_PWR_RST);
Ben Hutchings8ceee662008-04-27 12:55:59 +010071
Ben Hutchingsd4ec09a2009-08-26 08:16:46 +000072 /* Wait up to 10 ms for completion, then reinitialise */
73 for (count = 0; count < 1000; count++) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +000074 efx_reado(efx, &reg, FR_AB_XX_PWR_RST);
Ben Hutchings3e6c4532009-10-23 08:30:36 +000075 if (EFX_OWORD_FIELD(reg, FRF_AB_XX_RST_XX_EN) == 0 &&
76 EFX_OWORD_FIELD(reg, FRF_AB_XX_SD_RST_ACT) == 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +010077 falcon_setup_xaui(efx);
78 return 0;
79 }
80 udelay(10);
81 }
Ben Hutchings62776d02010-06-23 11:30:07 +000082 netif_err(efx, hw, efx->net_dev,
83 "timed out waiting for XAUI/XGXS reset\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +010084 return -ETIMEDOUT;
85}
86
Steve Hodgsonef524f22010-04-28 09:27:54 +000087static void falcon_ack_status_intr(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +010088{
Ben Hutchingscef68bd2010-12-02 13:47:51 +000089 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010090 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +010091
Ben Hutchingsdaeda632009-11-28 05:36:04 +000092 if ((efx_nic_rev(efx) != EFX_REV_FALCON_B0) || LOOPBACK_INTERNAL(efx))
Ben Hutchings177dfcd2008-12-12 21:50:08 -080093 return;
94
Steve Hodgsonef524f22010-04-28 09:27:54 +000095 /* We expect xgmii faults if the wireside link is down */
Ben Hutchingseb50c0d2009-11-23 16:06:30 +000096 if (!EFX_WORKAROUND_5147(efx) || !efx->link_state.up)
Ben Hutchings177dfcd2008-12-12 21:50:08 -080097 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]. */
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000101 if (nic_data->xmac_poll_required)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100102 return;
103
Steve Hodgsonef524f22010-04-28 09:27:54 +0000104 efx_reado(efx, &reg, FR_AB_XM_MGT_INT_MSK);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100105}
106
Ben Hutchingsa3550202009-12-23 13:46:47 +0000107static bool falcon_xgxs_link_ok(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100108{
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100109 efx_oword_t reg;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100110 bool align_done, link_ok = false;
111 int sync_status;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100112
113 /* Read link status */
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000114 efx_reado(efx, &reg, FR_AB_XX_CORE_STAT);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100115
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000116 align_done = EFX_OWORD_FIELD(reg, FRF_AB_XX_ALIGN_DONE);
117 sync_status = EFX_OWORD_FIELD(reg, FRF_AB_XX_SYNC_STAT);
118 if (align_done && (sync_status == FFE_AB_XX_STAT_ALL_LANES))
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100119 link_ok = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100120
121 /* Clear link status ready for next read */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000122 EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_COMMA_DET, FFE_AB_XX_STAT_ALL_LANES);
123 EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_CHAR_ERR, FFE_AB_XX_STAT_ALL_LANES);
124 EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_DISPERR, FFE_AB_XX_STAT_ALL_LANES);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000125 efx_writeo(efx, &reg, FR_AB_XX_CORE_STAT);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100126
Ben Hutchings8ceee662008-04-27 12:55:59 +0100127 return link_ok;
128}
129
Ben Hutchingsa3550202009-12-23 13:46:47 +0000130static bool falcon_xmac_link_ok(struct efx_nic *efx)
131{
132 /*
133 * Check MAC's XGXS link status except when using XGMII loopback
134 * which bypasses the XGXS block.
135 * If possible, check PHY's XGXS link status except when using
136 * MAC loopback.
137 */
138 return (efx->loopback_mode == LOOPBACK_XGMII ||
139 falcon_xgxs_link_ok(efx)) &&
140 (!(efx->mdio.mmds & (1 << MDIO_MMD_PHYXS)) ||
Ben Hutchings9c636ba2012-01-05 17:19:45 +0000141 LOOPBACK_INTERNAL(efx) ||
Ben Hutchingsa3550202009-12-23 13:46:47 +0000142 efx_mdio_phyxgxs_lane_sync(efx));
143}
144
stephen hemmingerd2156972010-10-18 05:27:31 +0000145static void falcon_reconfigure_xmac_core(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100146{
147 unsigned int max_frame_len;
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100148 efx_oword_t reg;
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000149 bool rx_fc = !!(efx->link_state.fc & EFX_FC_RX);
Ben Hutchings4b0d29d2009-11-29 03:42:18 +0000150 bool tx_fc = !!(efx->link_state.fc & EFX_FC_TX);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100151
152 /* Configure MAC - cut-thru mode is hard wired on */
Ben Hutchings80cb9a02009-11-25 16:08:41 +0000153 EFX_POPULATE_OWORD_3(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000154 FRF_AB_XM_RX_JUMBO_MODE, 1,
155 FRF_AB_XM_TX_STAT_EN, 1,
156 FRF_AB_XM_RX_STAT_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000157 efx_writeo(efx, &reg, FR_AB_XM_GLB_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100158
159 /* Configure TX */
Ben Hutchings80cb9a02009-11-25 16:08:41 +0000160 EFX_POPULATE_OWORD_6(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000161 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,
Ben Hutchings4b0d29d2009-11-29 03:42:18 +0000165 FRF_AB_XM_FCNTL, tx_fc,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000166 FRF_AB_XM_IPG, 0x3);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000167 efx_writeo(efx, &reg, FR_AB_XM_TX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100168
169 /* Configure RX */
Ben Hutchings80cb9a02009-11-25 16:08:41 +0000170 EFX_POPULATE_OWORD_5(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000171 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 Hutchings12d00ca2009-10-23 08:30:46 +0000176 efx_writeo(efx, &reg, FR_AB_XM_RX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100177
178 /* Set frame length */
179 max_frame_len = EFX_MAX_FRAME_LEN(efx->net_dev->mtu);
Ben Hutchings80cb9a02009-11-25 16:08:41 +0000180 EFX_POPULATE_OWORD_1(reg, FRF_AB_XM_MAX_RX_FRM_SIZE, max_frame_len);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000181 efx_writeo(efx, &reg, FR_AB_XM_RX_PARAM);
Ben Hutchings80cb9a02009-11-25 16:08:41 +0000182 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000183 FRF_AB_XM_MAX_TX_FRM_SIZE, max_frame_len,
184 FRF_AB_XM_TX_JUMBO_MODE, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000185 efx_writeo(efx, &reg, FR_AB_XM_TX_PARAM);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100186
Ben Hutchings80cb9a02009-11-25 16:08:41 +0000187 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000188 FRF_AB_XM_PAUSE_TIME, 0xfffe, /* MAX PAUSE TIME */
189 FRF_AB_XM_DIS_FCNTL, !rx_fc);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000190 efx_writeo(efx, &reg, FR_AB_XM_FC);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100191
192 /* Set MAC address */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000193 memcpy(&reg, &efx->net_dev->dev_addr[0], 4);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000194 efx_writeo(efx, &reg, FR_AB_XM_ADR_LO);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000195 memcpy(&reg, &efx->net_dev->dev_addr[4], 2);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000196 efx_writeo(efx, &reg, FR_AB_XM_ADR_HI);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100197}
198
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100199static void falcon_reconfigure_xgxs_core(struct efx_nic *efx)
200{
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100201 efx_oword_t reg;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100202 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 Hutchings3273c2e2008-05-07 13:36:19 +0100205
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 Hutchingsdc8cfa52008-09-01 12:46:50 +0100209 bool old_xgmii_loopback, old_xgxs_loopback, old_xaui_loopback;
210 bool reset_xgxs;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100211
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000212 efx_reado(efx, &reg, FR_AB_XX_CORE_STAT);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000213 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 Hutchings3273c2e2008-05-07 13:36:19 +0100216
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000217 efx_reado(efx, &reg, FR_AB_XX_SD_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000218 old_xaui_loopback = EFX_OWORD_FIELD(reg, FRF_AB_XX_LPBKA);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100219
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 Hutchings8c8661e2008-09-01 12:49:02 +0100224
225 if (reset_xgxs)
226 falcon_reset_xaui(efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100227 }
228
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000229 efx_reado(efx, &reg, FR_AB_XX_CORE_STAT);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000230 EFX_SET_OWORD_FIELD(reg, FRF_AB_XX_FORCE_SIG,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100231 (xgxs_loopback || xaui_loopback) ?
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000232 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 Hutchings12d00ca2009-10-23 08:30:46 +0000235 efx_writeo(efx, &reg, FR_AB_XX_CORE_STAT);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100236
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000237 efx_reado(efx, &reg, FR_AB_XX_SD_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000238 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 Hutchings12d00ca2009-10-23 08:30:46 +0000242 efx_writeo(efx, &reg, FR_AB_XX_SD_CTL);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100243}
244
245
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000246/* Try to bring up the Falcon side of the Falcon-Phy XAUI link */
Ben Hutchingsa3550202009-12-23 13:46:47 +0000247static bool falcon_xmac_link_ok_retry(struct efx_nic *efx, int tries)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100248{
Ben Hutchingsa3550202009-12-23 13:46:47 +0000249 bool mac_up = falcon_xmac_link_ok(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100250
Ben Hutchingse58f69f2009-11-29 15:08:41 +0000251 if (LOOPBACK_MASK(efx) & LOOPBACKS_EXTERNAL(efx) & LOOPBACKS_WS ||
Ben Hutchingsf8b87c12008-09-01 12:48:17 +0100252 efx_phy_mode_disabled(efx->phy_mode))
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800253 /* XAUI link is expected to be down */
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000254 return mac_up;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100255
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000256 falcon_stop_nic_stats(efx);
257
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000258 while (!mac_up && tries) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000259 netif_dbg(efx, hw, efx->net_dev, "bashing xaui\n");
Ben Hutchings91ad7572008-05-16 21:14:27 +0100260 falcon_reset_xaui(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100261 udelay(200);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100262
Ben Hutchingsa3550202009-12-23 13:46:47 +0000263 mac_up = falcon_xmac_link_ok(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800264 --tries;
265 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000266
267 falcon_start_nic_stats(efx);
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000268
269 return mac_up;
270}
271
Ben Hutchings710b2082011-09-03 00:15:00 +0100272bool falcon_xmac_check_fault(struct efx_nic *efx)
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000273{
Ben Hutchingsa3550202009-12-23 13:46:47 +0000274 return !falcon_xmac_link_ok_retry(efx, 5);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100275}
276
Ben Hutchings710b2082011-09-03 00:15:00 +0100277int falcon_reconfigure_xmac(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100278{
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000279 struct falcon_nic_data *nic_data = efx->nic_data;
280
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100281 falcon_reconfigure_xgxs_core(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100282 falcon_reconfigure_xmac_core(efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100283
Ben Hutchings8ceee662008-04-27 12:55:59 +0100284 falcon_reconfigure_mac_wrapper(efx);
285
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000286 nic_data->xmac_poll_required = !falcon_xmac_link_ok_retry(efx, 5);
Steve Hodgsonef524f22010-04-28 09:27:54 +0000287 falcon_ack_status_intr(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000288
289 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100290}
291
Ben Hutchings710b2082011-09-03 00:15:00 +0100292void falcon_update_stats_xmac(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100293{
294 struct efx_mac_stats *mac_stats = &efx->mac_stats;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100295
296 /* Update MAC stats from DMAed values */
297 FALCON_STAT(efx, XgRxOctets, rx_bytes);
298 FALCON_STAT(efx, XgRxOctetsOK, rx_good_bytes);
299 FALCON_STAT(efx, XgRxPkts, rx_packets);
300 FALCON_STAT(efx, XgRxPktsOK, rx_good);
301 FALCON_STAT(efx, XgRxBroadcastPkts, rx_broadcast);
302 FALCON_STAT(efx, XgRxMulticastPkts, rx_multicast);
303 FALCON_STAT(efx, XgRxUnicastPkts, rx_unicast);
304 FALCON_STAT(efx, XgRxUndersizePkts, rx_lt64);
305 FALCON_STAT(efx, XgRxOversizePkts, rx_gtjumbo);
306 FALCON_STAT(efx, XgRxJabberPkts, rx_bad_gtjumbo);
307 FALCON_STAT(efx, XgRxUndersizeFCSerrorPkts, rx_bad_lt64);
308 FALCON_STAT(efx, XgRxDropEvents, rx_overflow);
309 FALCON_STAT(efx, XgRxFCSerrorPkts, rx_bad);
310 FALCON_STAT(efx, XgRxAlignError, rx_align_error);
311 FALCON_STAT(efx, XgRxSymbolError, rx_symbol_error);
312 FALCON_STAT(efx, XgRxInternalMACError, rx_internal_error);
313 FALCON_STAT(efx, XgRxControlPkts, rx_control);
314 FALCON_STAT(efx, XgRxPausePkts, rx_pause);
315 FALCON_STAT(efx, XgRxPkts64Octets, rx_64);
316 FALCON_STAT(efx, XgRxPkts65to127Octets, rx_65_to_127);
317 FALCON_STAT(efx, XgRxPkts128to255Octets, rx_128_to_255);
318 FALCON_STAT(efx, XgRxPkts256to511Octets, rx_256_to_511);
319 FALCON_STAT(efx, XgRxPkts512to1023Octets, rx_512_to_1023);
320 FALCON_STAT(efx, XgRxPkts1024to15xxOctets, rx_1024_to_15xx);
321 FALCON_STAT(efx, XgRxPkts15xxtoMaxOctets, rx_15xx_to_jumbo);
322 FALCON_STAT(efx, XgRxLengthError, rx_length_error);
323 FALCON_STAT(efx, XgTxPkts, tx_packets);
324 FALCON_STAT(efx, XgTxOctets, tx_bytes);
325 FALCON_STAT(efx, XgTxMulticastPkts, tx_multicast);
326 FALCON_STAT(efx, XgTxBroadcastPkts, tx_broadcast);
327 FALCON_STAT(efx, XgTxUnicastPkts, tx_unicast);
328 FALCON_STAT(efx, XgTxControlPkts, tx_control);
329 FALCON_STAT(efx, XgTxPausePkts, tx_pause);
330 FALCON_STAT(efx, XgTxPkts64Octets, tx_64);
331 FALCON_STAT(efx, XgTxPkts65to127Octets, tx_65_to_127);
332 FALCON_STAT(efx, XgTxPkts128to255Octets, tx_128_to_255);
333 FALCON_STAT(efx, XgTxPkts256to511Octets, tx_256_to_511);
334 FALCON_STAT(efx, XgTxPkts512to1023Octets, tx_512_to_1023);
335 FALCON_STAT(efx, XgTxPkts1024to15xxOctets, tx_1024_to_15xx);
336 FALCON_STAT(efx, XgTxPkts1519toMaxOctets, tx_15xx_to_jumbo);
337 FALCON_STAT(efx, XgTxUndersizePkts, tx_lt64);
338 FALCON_STAT(efx, XgTxOversizePkts, tx_gtjumbo);
339 FALCON_STAT(efx, XgTxNonTcpUdpPkt, tx_non_tcpudp);
340 FALCON_STAT(efx, XgTxMacSrcErrPkt, tx_mac_src_error);
341 FALCON_STAT(efx, XgTxIpSrcErrPkt, tx_ip_src_error);
342
343 /* Update derived statistics */
344 mac_stats->tx_good_bytes =
Ben Hutchingsc2643612008-09-01 12:46:10 +0100345 (mac_stats->tx_bytes - mac_stats->tx_bad_bytes -
346 mac_stats->tx_control * 64);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100347 mac_stats->rx_bad_bytes =
Ben Hutchingsc2643612008-09-01 12:46:10 +0100348 (mac_stats->rx_bytes - mac_stats->rx_good_bytes -
349 mac_stats->rx_control * 64);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100350}
351
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000352void falcon_poll_xmac(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100353{
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000354 struct falcon_nic_data *nic_data = efx->nic_data;
355
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000356 if (!EFX_WORKAROUND_5147(efx) || !efx->link_state.up ||
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000357 !nic_data->xmac_poll_required)
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800358 return;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100359
Ben Hutchingscef68bd2010-12-02 13:47:51 +0000360 nic_data->xmac_poll_required = !falcon_xmac_link_ok_retry(efx, 1);
Steve Hodgsonef524f22010-04-28 09:27:54 +0000361 falcon_ack_status_intr(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100362}