blob: 5a03713685acda98fe958ad5c1f50e7d93a8d3dc [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.
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"
15#include "falcon_hwdefs.h"
16#include "falcon_io.h"
17#include "mac.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010018#include "mdio_10g.h"
19#include "phy.h"
20#include "boards.h"
21#include "workarounds.h"
22
23/**************************************************************************
24 *
Ben Hutchings8ceee662008-04-27 12:55:59 +010025 * MAC operations
26 *
27 *************************************************************************/
Ben Hutchings8ceee662008-04-27 12:55:59 +010028
29/* Configure the XAUI driver that is an output from Falcon */
30static void falcon_setup_xaui(struct efx_nic *efx)
31{
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010032 efx_oword_t sdctl, txdrv;
Ben Hutchings8ceee662008-04-27 12:55:59 +010033
34 /* Move the XAUI into low power, unless there is no PHY, in
35 * which case the XAUI will have to drive a cable. */
36 if (efx->phy_type == PHY_TYPE_NONE)
37 return;
38
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010039 falcon_read(efx, &sdctl, XX_SD_CTL_REG);
40 EFX_SET_OWORD_FIELD(sdctl, XX_HIDRVD, XX_SD_CTL_DRV_DEFAULT);
41 EFX_SET_OWORD_FIELD(sdctl, XX_LODRVD, XX_SD_CTL_DRV_DEFAULT);
42 EFX_SET_OWORD_FIELD(sdctl, XX_HIDRVC, XX_SD_CTL_DRV_DEFAULT);
43 EFX_SET_OWORD_FIELD(sdctl, XX_LODRVC, XX_SD_CTL_DRV_DEFAULT);
44 EFX_SET_OWORD_FIELD(sdctl, XX_HIDRVB, XX_SD_CTL_DRV_DEFAULT);
45 EFX_SET_OWORD_FIELD(sdctl, XX_LODRVB, XX_SD_CTL_DRV_DEFAULT);
46 EFX_SET_OWORD_FIELD(sdctl, XX_HIDRVA, XX_SD_CTL_DRV_DEFAULT);
47 EFX_SET_OWORD_FIELD(sdctl, XX_LODRVA, XX_SD_CTL_DRV_DEFAULT);
48 falcon_write(efx, &sdctl, XX_SD_CTL_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +010049
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010050 EFX_POPULATE_OWORD_8(txdrv,
Ben Hutchings8ceee662008-04-27 12:55:59 +010051 XX_DEQD, XX_TXDRV_DEQ_DEFAULT,
52 XX_DEQC, XX_TXDRV_DEQ_DEFAULT,
53 XX_DEQB, XX_TXDRV_DEQ_DEFAULT,
54 XX_DEQA, XX_TXDRV_DEQ_DEFAULT,
55 XX_DTXD, XX_TXDRV_DTX_DEFAULT,
56 XX_DTXC, XX_TXDRV_DTX_DEFAULT,
57 XX_DTXB, XX_TXDRV_DTX_DEFAULT,
58 XX_DTXA, XX_TXDRV_DTX_DEFAULT);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010059 falcon_write(efx, &txdrv, XX_TXDRV_CTL_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +010060}
61
Ben Hutchingsef08af02008-09-01 12:49:20 +010062int falcon_reset_xaui(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +010063{
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010064 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +010065 int count;
66
67 EFX_POPULATE_DWORD_1(reg, XX_RST_XX_EN, 1);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010068 falcon_write(efx, &reg, XX_PWR_RST_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +010069
70 /* Give some time for the link to establish */
71 for (count = 0; count < 1000; count++) { /* wait upto 10ms */
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010072 falcon_read(efx, &reg, XX_PWR_RST_REG);
73 if (EFX_OWORD_FIELD(reg, XX_RST_XX_EN) == 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +010074 falcon_setup_xaui(efx);
75 return 0;
76 }
77 udelay(10);
78 }
79 EFX_ERR(efx, "timed out waiting for XAUI/XGXS reset\n");
80 return -ETIMEDOUT;
81}
82
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +010083static void falcon_mask_status_intr(struct efx_nic *efx, bool enable)
Ben Hutchings8ceee662008-04-27 12:55:59 +010084{
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +010085 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +010086
Ben Hutchings177dfcd2008-12-12 21:50:08 -080087 if ((falcon_rev(efx) != FALCON_REV_B0) || LOOPBACK_INTERNAL(efx))
88 return;
89
90 /* We expect xgmii faults if the wireside link is up */
91 if (!EFX_WORKAROUND_5147(efx) || !efx->link_up)
92 return;
93
94 /* We can only use this interrupt to signal the negative edge of
95 * xaui_align [we have to poll the positive edge]. */
96 if (!efx->mac_up)
Ben Hutchings8ceee662008-04-27 12:55:59 +010097 return;
98
99 /* Flush the ISR */
100 if (enable)
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100101 falcon_read(efx, &reg, XM_MGT_INT_REG_B0);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100102
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100103 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100104 XM_MSK_RMTFLT, !enable,
105 XM_MSK_LCLFLT, !enable);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100106 falcon_write(efx, &reg, XM_MGT_INT_MSK_REG_B0);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100107}
108
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800109/* Get status of XAUI link */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100110bool falcon_xaui_link_ok(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100111{
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100112 efx_oword_t reg;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100113 bool align_done, link_ok = false;
114 int sync_status;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100115
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100116 if (LOOPBACK_INTERNAL(efx))
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100117 return true;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100118
Ben Hutchings8ceee662008-04-27 12:55:59 +0100119 /* Read link status */
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100120 falcon_read(efx, &reg, XX_CORE_STAT_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100121
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100122 align_done = EFX_OWORD_FIELD(reg, XX_ALIGN_DONE);
123 sync_status = EFX_OWORD_FIELD(reg, XX_SYNC_STAT);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100124 if (align_done && (sync_status == XX_SYNC_STAT_DECODE_SYNCED))
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100125 link_ok = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100126
127 /* Clear link status ready for next read */
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100128 EFX_SET_OWORD_FIELD(reg, XX_COMMA_DET, XX_COMMA_DET_RESET);
129 EFX_SET_OWORD_FIELD(reg, XX_CHARERR, XX_CHARERR_RESET);
130 EFX_SET_OWORD_FIELD(reg, XX_DISPERR, XX_DISPERR_RESET);
131 falcon_write(efx, &reg, XX_CORE_STAT_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100132
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800133 /* If the link is up, then check the phy side of the xaui link */
134 if (efx->link_up && link_ok)
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100135 if (efx->phy_op->mmds & (1 << MDIO_MMD_PHYXS))
Ben Hutchings8ceee662008-04-27 12:55:59 +0100136 link_ok = mdio_clause45_phyxgxs_lane_sync(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100137
138 return link_ok;
139}
140
141static void falcon_reconfigure_xmac_core(struct efx_nic *efx)
142{
143 unsigned int max_frame_len;
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100144 efx_oword_t reg;
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800145 bool rx_fc = !!(efx->link_fc & EFX_FC_RX);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100146
147 /* Configure MAC - cut-thru mode is hard wired on */
148 EFX_POPULATE_DWORD_3(reg,
149 XM_RX_JUMBO_MODE, 1,
150 XM_TX_STAT_EN, 1,
151 XM_RX_STAT_EN, 1);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100152 falcon_write(efx, &reg, XM_GLB_CFG_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100153
154 /* Configure TX */
155 EFX_POPULATE_DWORD_6(reg,
156 XM_TXEN, 1,
157 XM_TX_PRMBL, 1,
158 XM_AUTO_PAD, 1,
159 XM_TXCRC, 1,
160 XM_FCNTL, 1,
161 XM_IPG, 0x3);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100162 falcon_write(efx, &reg, XM_TX_CFG_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100163
164 /* Configure RX */
165 EFX_POPULATE_DWORD_5(reg,
166 XM_RXEN, 1,
167 XM_AUTO_DEPAD, 0,
168 XM_ACPT_ALL_MCAST, 1,
169 XM_ACPT_ALL_UCAST, efx->promiscuous,
170 XM_PASS_CRC_ERR, 1);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100171 falcon_write(efx, &reg, XM_RX_CFG_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100172
173 /* Set frame length */
174 max_frame_len = EFX_MAX_FRAME_LEN(efx->net_dev->mtu);
175 EFX_POPULATE_DWORD_1(reg, XM_MAX_RX_FRM_SIZE, max_frame_len);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100176 falcon_write(efx, &reg, XM_RX_PARAM_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100177 EFX_POPULATE_DWORD_2(reg,
178 XM_MAX_TX_FRM_SIZE, max_frame_len,
179 XM_TX_JUMBO_MODE, 1);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100180 falcon_write(efx, &reg, XM_TX_PARAM_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100181
182 EFX_POPULATE_DWORD_2(reg,
183 XM_PAUSE_TIME, 0xfffe, /* MAX PAUSE TIME */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100184 XM_DIS_FCNTL, !rx_fc);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100185 falcon_write(efx, &reg, XM_FC_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100186
187 /* Set MAC address */
188 EFX_POPULATE_DWORD_4(reg,
189 XM_ADR_0, efx->net_dev->dev_addr[0],
190 XM_ADR_1, efx->net_dev->dev_addr[1],
191 XM_ADR_2, efx->net_dev->dev_addr[2],
192 XM_ADR_3, efx->net_dev->dev_addr[3]);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100193 falcon_write(efx, &reg, XM_ADR_LO_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100194 EFX_POPULATE_DWORD_2(reg,
195 XM_ADR_4, efx->net_dev->dev_addr[4],
196 XM_ADR_5, efx->net_dev->dev_addr[5]);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100197 falcon_write(efx, &reg, XM_ADR_HI_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100198}
199
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100200static void falcon_reconfigure_xgxs_core(struct efx_nic *efx)
201{
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100202 efx_oword_t reg;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100203 bool xgxs_loopback = (efx->loopback_mode == LOOPBACK_XGXS);
204 bool xaui_loopback = (efx->loopback_mode == LOOPBACK_XAUI);
205 bool xgmii_loopback = (efx->loopback_mode == LOOPBACK_XGMII);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100206
207 /* XGXS block is flaky and will need to be reset if moving
208 * into our out of XGMII, XGXS or XAUI loopbacks. */
209 if (EFX_WORKAROUND_5147(efx)) {
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100210 bool old_xgmii_loopback, old_xgxs_loopback, old_xaui_loopback;
211 bool reset_xgxs;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100212
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100213 falcon_read(efx, &reg, XX_CORE_STAT_REG);
214 old_xgxs_loopback = EFX_OWORD_FIELD(reg, XX_XGXS_LB_EN);
215 old_xgmii_loopback = EFX_OWORD_FIELD(reg, XX_XGMII_LB_EN);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100216
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100217 falcon_read(efx, &reg, XX_SD_CTL_REG);
218 old_xaui_loopback = EFX_OWORD_FIELD(reg, 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 Hutchingsc1e5fcc2008-09-01 12:48:41 +0100229 falcon_read(efx, &reg, XX_CORE_STAT_REG);
230 EFX_SET_OWORD_FIELD(reg, XX_FORCE_SIG,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100231 (xgxs_loopback || xaui_loopback) ?
232 XX_FORCE_SIG_DECODE_FORCED : 0);
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100233 EFX_SET_OWORD_FIELD(reg, XX_XGXS_LB_EN, xgxs_loopback);
234 EFX_SET_OWORD_FIELD(reg, XX_XGMII_LB_EN, xgmii_loopback);
235 falcon_write(efx, &reg, XX_CORE_STAT_REG);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100236
Ben Hutchingsc1e5fcc2008-09-01 12:48:41 +0100237 falcon_read(efx, &reg, XX_SD_CTL_REG);
238 EFX_SET_OWORD_FIELD(reg, XX_LPBKD, xaui_loopback);
239 EFX_SET_OWORD_FIELD(reg, XX_LPBKC, xaui_loopback);
240 EFX_SET_OWORD_FIELD(reg, XX_LPBKB, xaui_loopback);
241 EFX_SET_OWORD_FIELD(reg, XX_LPBKA, xaui_loopback);
242 falcon_write(efx, &reg, XX_SD_CTL_REG);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100243}
244
245
Ben Hutchings8ceee662008-04-27 12:55:59 +0100246/* 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 Hutchings177dfcd2008-12-12 21:50:08 -0800248static void falcon_check_xaui_link_up(struct efx_nic *efx, int tries)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100249{
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800250 efx->mac_up = falcon_xaui_link_ok(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100251
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100252 if ((efx->loopback_mode == LOOPBACK_NETWORK) ||
Ben Hutchingsf8b87c12008-09-01 12:48:17 +0100253 efx_phy_mode_disabled(efx->phy_mode))
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800254 /* XAUI link is expected to be down */
255 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100256
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800257 while (!efx->mac_up && tries) {
258 EFX_LOG(efx, "bashing xaui\n");
Ben Hutchings91ad7572008-05-16 21:14:27 +0100259 falcon_reset_xaui(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100260 udelay(200);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100261
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800262 efx->mac_up = falcon_xaui_link_ok(efx);
263 --tries;
264 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100265}
266
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800267static void falcon_reconfigure_xmac(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100268{
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100269 falcon_mask_status_intr(efx, false);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100270
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100271 falcon_reconfigure_xgxs_core(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100272 falcon_reconfigure_xmac_core(efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100273
Ben Hutchings8ceee662008-04-27 12:55:59 +0100274 falcon_reconfigure_mac_wrapper(efx);
275
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800276 falcon_check_xaui_link_up(efx, 5);
277 falcon_mask_status_intr(efx, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100278}
279
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800280static void falcon_update_stats_xmac(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100281{
282 struct efx_mac_stats *mac_stats = &efx->mac_stats;
283 int rc;
284
285 rc = falcon_dma_stats(efx, XgDmaDone_offset);
286 if (rc)
287 return;
288
289 /* Update MAC stats from DMAed values */
290 FALCON_STAT(efx, XgRxOctets, rx_bytes);
291 FALCON_STAT(efx, XgRxOctetsOK, rx_good_bytes);
292 FALCON_STAT(efx, XgRxPkts, rx_packets);
293 FALCON_STAT(efx, XgRxPktsOK, rx_good);
294 FALCON_STAT(efx, XgRxBroadcastPkts, rx_broadcast);
295 FALCON_STAT(efx, XgRxMulticastPkts, rx_multicast);
296 FALCON_STAT(efx, XgRxUnicastPkts, rx_unicast);
297 FALCON_STAT(efx, XgRxUndersizePkts, rx_lt64);
298 FALCON_STAT(efx, XgRxOversizePkts, rx_gtjumbo);
299 FALCON_STAT(efx, XgRxJabberPkts, rx_bad_gtjumbo);
300 FALCON_STAT(efx, XgRxUndersizeFCSerrorPkts, rx_bad_lt64);
301 FALCON_STAT(efx, XgRxDropEvents, rx_overflow);
302 FALCON_STAT(efx, XgRxFCSerrorPkts, rx_bad);
303 FALCON_STAT(efx, XgRxAlignError, rx_align_error);
304 FALCON_STAT(efx, XgRxSymbolError, rx_symbol_error);
305 FALCON_STAT(efx, XgRxInternalMACError, rx_internal_error);
306 FALCON_STAT(efx, XgRxControlPkts, rx_control);
307 FALCON_STAT(efx, XgRxPausePkts, rx_pause);
308 FALCON_STAT(efx, XgRxPkts64Octets, rx_64);
309 FALCON_STAT(efx, XgRxPkts65to127Octets, rx_65_to_127);
310 FALCON_STAT(efx, XgRxPkts128to255Octets, rx_128_to_255);
311 FALCON_STAT(efx, XgRxPkts256to511Octets, rx_256_to_511);
312 FALCON_STAT(efx, XgRxPkts512to1023Octets, rx_512_to_1023);
313 FALCON_STAT(efx, XgRxPkts1024to15xxOctets, rx_1024_to_15xx);
314 FALCON_STAT(efx, XgRxPkts15xxtoMaxOctets, rx_15xx_to_jumbo);
315 FALCON_STAT(efx, XgRxLengthError, rx_length_error);
316 FALCON_STAT(efx, XgTxPkts, tx_packets);
317 FALCON_STAT(efx, XgTxOctets, tx_bytes);
318 FALCON_STAT(efx, XgTxMulticastPkts, tx_multicast);
319 FALCON_STAT(efx, XgTxBroadcastPkts, tx_broadcast);
320 FALCON_STAT(efx, XgTxUnicastPkts, tx_unicast);
321 FALCON_STAT(efx, XgTxControlPkts, tx_control);
322 FALCON_STAT(efx, XgTxPausePkts, tx_pause);
323 FALCON_STAT(efx, XgTxPkts64Octets, tx_64);
324 FALCON_STAT(efx, XgTxPkts65to127Octets, tx_65_to_127);
325 FALCON_STAT(efx, XgTxPkts128to255Octets, tx_128_to_255);
326 FALCON_STAT(efx, XgTxPkts256to511Octets, tx_256_to_511);
327 FALCON_STAT(efx, XgTxPkts512to1023Octets, tx_512_to_1023);
328 FALCON_STAT(efx, XgTxPkts1024to15xxOctets, tx_1024_to_15xx);
329 FALCON_STAT(efx, XgTxPkts1519toMaxOctets, tx_15xx_to_jumbo);
330 FALCON_STAT(efx, XgTxUndersizePkts, tx_lt64);
331 FALCON_STAT(efx, XgTxOversizePkts, tx_gtjumbo);
332 FALCON_STAT(efx, XgTxNonTcpUdpPkt, tx_non_tcpudp);
333 FALCON_STAT(efx, XgTxMacSrcErrPkt, tx_mac_src_error);
334 FALCON_STAT(efx, XgTxIpSrcErrPkt, tx_ip_src_error);
335
336 /* Update derived statistics */
337 mac_stats->tx_good_bytes =
Ben Hutchingsc2643612008-09-01 12:46:10 +0100338 (mac_stats->tx_bytes - mac_stats->tx_bad_bytes -
339 mac_stats->tx_control * 64);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100340 mac_stats->rx_bad_bytes =
Ben Hutchingsc2643612008-09-01 12:46:10 +0100341 (mac_stats->rx_bytes - mac_stats->rx_good_bytes -
342 mac_stats->rx_control * 64);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100343}
344
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800345static void falcon_xmac_irq(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100346{
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800347 /* The XGMII link has a transient fault, which indicates either:
348 * - there's a transient xgmii fault
349 * - falcon's end of the xaui link may need a kick
350 * - the wire-side link may have gone down, but the lasi/poll()
351 * hasn't noticed yet.
352 *
353 * We only want to even bother polling XAUI if we're confident it's
354 * not (1) or (3). In both cases, the only reliable way to spot this
355 * is to wait a bit. We do this here by forcing the mac link state
356 * to down, and waiting for the mac poll to come round and check
357 */
358 efx->mac_up = false;
359}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100360
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800361static void falcon_poll_xmac(struct efx_nic *efx)
362{
363 if (!EFX_WORKAROUND_5147(efx) || !efx->link_up || efx->mac_up)
364 return;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100365
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100366 falcon_mask_status_intr(efx, false);
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800367 falcon_check_xaui_link_up(efx, 1);
368 falcon_mask_status_intr(efx, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100369}
370
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800371struct efx_mac_operations falcon_xmac_operations = {
372 .reconfigure = falcon_reconfigure_xmac,
373 .update_stats = falcon_update_stats_xmac,
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800374 .irq = falcon_xmac_irq,
375 .poll = falcon_poll_xmac,
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800376};