blob: 3dca771938f0c4786a9fc15b761838af773a6953 [file] [log] [blame]
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001/****************************************************************************
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 Hutchingsafd4aea2009-11-29 15:15:25 +00005 *
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/bitops.h>
12#include <linux/delay.h>
13#include <linux/pci.h>
14#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Ben Hutchingsd614cfb2010-04-28 09:29:02 +000016#include <linux/random.h>
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000017#include "net_driver.h"
18#include "bitfield.h"
19#include "efx.h"
20#include "nic.h"
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000021#include "spi.h"
22#include "regs.h"
23#include "io.h"
24#include "phy.h"
25#include "workarounds.h"
26#include "mcdi.h"
27#include "mcdi_pcol.h"
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +010028#include "selftest.h"
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000029
30/* Hardware control for SFC9000 family including SFL9021 (aka Siena). */
31
32static void siena_init_wol(struct efx_nic *efx);
33
34
35static void siena_push_irq_moderation(struct efx_channel *channel)
36{
37 efx_dword_t timer_cmd;
38
39 if (channel->irq_moderation)
40 EFX_POPULATE_DWORD_2(timer_cmd,
41 FRF_CZ_TC_TIMER_MODE,
42 FFE_CZ_TIMER_MODE_INT_HLDOFF,
43 FRF_CZ_TC_TIMER_VAL,
44 channel->irq_moderation - 1);
45 else
46 EFX_POPULATE_DWORD_2(timer_cmd,
47 FRF_CZ_TC_TIMER_MODE,
48 FFE_CZ_TIMER_MODE_DIS,
49 FRF_CZ_TC_TIMER_VAL, 0);
50 efx_writed_page_locked(channel->efx, &timer_cmd, FR_BZ_TIMER_COMMAND_P0,
51 channel->channel);
52}
53
Ben Hutchingsd5e8cc62012-09-06 16:52:31 +010054void siena_prepare_flush(struct efx_nic *efx)
55{
56 if (efx->fc_disable++ == 0)
57 efx_mcdi_set_mac(efx);
58}
59
60void siena_finish_flush(struct efx_nic *efx)
61{
62 if (--efx->fc_disable == 0)
63 efx_mcdi_set_mac(efx);
64}
65
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000066static const struct efx_nic_register_test siena_register_tests[] = {
67 { FR_AZ_ADR_REGION,
Steve Hodgson4cddca52010-02-03 09:31:40 +000068 EFX_OWORD32(0x0003FFFF, 0x0003FFFF, 0x0003FFFF, 0x0003FFFF) },
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000069 { FR_CZ_USR_EV_CFG,
70 EFX_OWORD32(0x000103FF, 0x00000000, 0x00000000, 0x00000000) },
71 { FR_AZ_RX_CFG,
72 EFX_OWORD32(0xFFFFFFFE, 0xFFFFFFFF, 0x0003FFFF, 0x00000000) },
73 { FR_AZ_TX_CFG,
74 EFX_OWORD32(0x7FFF0037, 0xFFFF8000, 0xFFFFFFFF, 0x03FFFFFF) },
75 { FR_AZ_TX_RESERVED,
76 EFX_OWORD32(0xFFFEFE80, 0x1FFFFFFF, 0x020000FE, 0x007FFFFF) },
77 { FR_AZ_SRM_TX_DC_CFG,
78 EFX_OWORD32(0x001FFFFF, 0x00000000, 0x00000000, 0x00000000) },
79 { FR_AZ_RX_DC_CFG,
80 EFX_OWORD32(0x00000003, 0x00000000, 0x00000000, 0x00000000) },
81 { FR_AZ_RX_DC_PF_WM,
82 EFX_OWORD32(0x000003FF, 0x00000000, 0x00000000, 0x00000000) },
83 { FR_BZ_DP_CTRL,
84 EFX_OWORD32(0x00000FFF, 0x00000000, 0x00000000, 0x00000000) },
85 { FR_BZ_RX_RSS_TKEY,
86 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
87 { FR_CZ_RX_RSS_IPV6_REG1,
88 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
89 { FR_CZ_RX_RSS_IPV6_REG2,
90 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
91 { FR_CZ_RX_RSS_IPV6_REG3,
92 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0x00000007, 0x00000000) },
93};
94
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +010095static int siena_test_chip(struct efx_nic *efx, struct efx_self_tests *tests)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000096{
Ben Hutchingsef492f12012-12-01 01:55:27 +000097 enum reset_type reset_method = RESET_TYPE_ALL;
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +010098 int rc, rc2;
99
100 efx_reset_down(efx, reset_method);
101
102 /* Reset the chip immediately so that it is completely
103 * quiescent regardless of what any VF driver does.
104 */
Ben Hutchings6bff8612012-09-18 02:33:52 +0100105 rc = efx_mcdi_reset(efx, reset_method);
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100106 if (rc)
107 goto out;
108
109 tests->registers =
110 efx_nic_test_registers(efx, siena_register_tests,
111 ARRAY_SIZE(siena_register_tests))
112 ? -1 : 1;
113
Ben Hutchings6bff8612012-09-18 02:33:52 +0100114 rc = efx_mcdi_reset(efx, reset_method);
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100115out:
116 rc2 = efx_reset_up(efx, reset_method, rc == 0);
117 return rc ? rc : rc2;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000118}
119
120/**************************************************************************
121 *
122 * Device reset
123 *
124 **************************************************************************
125 */
126
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100127static int siena_map_reset_flags(u32 *flags)
128{
129 enum {
130 SIENA_RESET_PORT = (ETH_RESET_DMA | ETH_RESET_FILTER |
131 ETH_RESET_OFFLOAD | ETH_RESET_MAC |
132 ETH_RESET_PHY),
133 SIENA_RESET_MC = (SIENA_RESET_PORT |
134 ETH_RESET_MGMT << ETH_RESET_SHARED_SHIFT),
135 };
136
137 if ((*flags & SIENA_RESET_MC) == SIENA_RESET_MC) {
138 *flags &= ~SIENA_RESET_MC;
139 return RESET_TYPE_WORLD;
140 }
141
142 if ((*flags & SIENA_RESET_PORT) == SIENA_RESET_PORT) {
143 *flags &= ~SIENA_RESET_PORT;
144 return RESET_TYPE_ALL;
145 }
146
147 /* no invisible reset implemented */
148
149 return -EINVAL;
150}
151
Alexandre Rames626950d2013-01-14 17:20:22 +0000152#ifdef CONFIG_EEH
153/* When a PCI device is isolated from the bus, a subsequent MMIO read is
154 * required for the kernel EEH mechanisms to notice. As the Solarflare driver
155 * was written to minimise MMIO read (for latency) then a periodic call to check
156 * the EEH status of the device is required so that device recovery can happen
157 * in a timely fashion.
158 */
159static void siena_monitor(struct efx_nic *efx)
160{
161 struct eeh_dev *eehdev =
162 of_node_to_eeh_dev(pci_device_to_OF_node(efx->pci_dev));
163
164 eeh_dev_check_failure(eehdev);
165}
166#endif
167
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000168static int siena_probe_nvconfig(struct efx_nic *efx)
169{
Ben Hutchingscc180b62011-12-08 19:51:47 +0000170 u32 caps = 0;
171 int rc;
172
173 rc = efx_mcdi_get_board_cfg(efx, efx->net_dev->perm_addr, NULL, &caps);
174
175 efx->timer_quantum_ns =
176 (caps & (1 << MC_CMD_CAPABILITIES_TURBO_ACTIVE_LBN)) ?
177 3072 : 6144; /* 768 cycles */
178 return rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000179}
180
Ben Hutchings28e47c42012-02-15 01:58:49 +0000181static void siena_dimension_resources(struct efx_nic *efx)
182{
183 /* Each port has a small block of internal SRAM dedicated to
184 * the buffer table and descriptor caches. In theory we can
185 * map both blocks to one port, but we don't.
186 */
187 efx_nic_dimension_resources(efx, FR_CZ_BUF_FULL_TBL_ROWS / 2);
188}
189
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000190static int siena_probe_nic(struct efx_nic *efx)
191{
192 struct siena_nic_data *nic_data;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000193 bool already_attached = false;
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000194 efx_oword_t reg;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000195 int rc;
196
197 /* Allocate storage for hardware specific data */
198 nic_data = kzalloc(sizeof(struct siena_nic_data), GFP_KERNEL);
199 if (!nic_data)
200 return -ENOMEM;
201 efx->nic_data = nic_data;
202
203 if (efx_nic_fpga_ver(efx) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000204 netif_err(efx, probe, efx->net_dev,
205 "Siena FPGA not supported\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000206 rc = -ENODEV;
207 goto fail1;
208 }
209
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000210 efx_reado(efx, &reg, FR_AZ_CS_DEBUG);
Ben Hutchings66020412013-06-10 18:03:17 +0100211 efx->port_num = EFX_OWORD_FIELD(reg, FRF_CZ_CS_PORT_NUM) - 1;
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000212
Ben Hutchingsf073dde2012-09-18 02:33:55 +0100213 rc = efx_mcdi_init(efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000214 if (rc)
David S. Miller8decf862011-09-22 03:23:13 -0400215 goto fail1;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000216
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000217 /* Let the BMC know that the driver is now in charge of link and
218 * filter settings. We must do this before we reset the NIC */
219 rc = efx_mcdi_drv_attach(efx, true, &already_attached);
220 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000221 netif_err(efx, probe, efx->net_dev,
222 "Unable to register driver with MCPU\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000223 goto fail2;
224 }
225 if (already_attached)
226 /* Not a fatal error */
Ben Hutchings62776d02010-06-23 11:30:07 +0000227 netif_err(efx, probe, efx->net_dev,
228 "Host already registered with MCPU\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000229
230 /* Now we can reset the NIC */
Ben Hutchings6bff8612012-09-18 02:33:52 +0100231 rc = efx_mcdi_reset(efx, RESET_TYPE_ALL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000232 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000233 netif_err(efx, probe, efx->net_dev, "failed to reset NIC\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000234 goto fail3;
235 }
236
237 siena_init_wol(efx);
238
239 /* Allocate memory for INT_KER */
240 rc = efx_nic_alloc_buffer(efx, &efx->irq_status, sizeof(efx_oword_t));
241 if (rc)
242 goto fail4;
243 BUG_ON(efx->irq_status.dma_addr & 0x0f);
244
Ben Hutchings62776d02010-06-23 11:30:07 +0000245 netif_dbg(efx, probe, efx->net_dev,
246 "INT_KER at %llx (virt %p phys %llx)\n",
247 (unsigned long long)efx->irq_status.dma_addr,
248 efx->irq_status.addr,
249 (unsigned long long)virt_to_phys(efx->irq_status.addr));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000250
251 /* Read in the non-volatile configuration */
252 rc = siena_probe_nvconfig(efx);
253 if (rc == -EINVAL) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000254 netif_err(efx, probe, efx->net_dev,
255 "NVRAM is invalid therefore using defaults\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000256 efx->phy_type = PHY_TYPE_NONE;
257 efx->mdio.prtad = MDIO_PRTAD_NONE;
258 } else if (rc) {
259 goto fail5;
260 }
261
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000262 rc = efx_mcdi_mon_probe(efx);
263 if (rc)
264 goto fail5;
265
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000266 efx_sriov_probe(efx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100267 efx_ptp_probe(efx);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000268
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000269 return 0;
270
271fail5:
272 efx_nic_free_buffer(efx, &efx->irq_status);
273fail4:
274fail3:
275 efx_mcdi_drv_attach(efx, false, NULL);
276fail2:
277fail1:
278 kfree(efx->nic_data);
279 return rc;
280}
281
282/* This call performs hardware-specific global initialisation, such as
283 * defining the descriptor cache sizes and number of RSS channels.
284 * It does not set up any buffers, descriptor rings or event queues.
285 */
286static int siena_init_nic(struct efx_nic *efx)
287{
288 efx_oword_t temp;
289 int rc;
290
291 /* Recover from a failed assertion post-reset */
292 rc = efx_mcdi_handle_assertion(efx);
293 if (rc)
294 return rc;
295
296 /* Squash TX of packets of 16 bytes or less */
297 efx_reado(efx, &temp, FR_AZ_TX_RESERVED);
298 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1);
299 efx_writeo(efx, &temp, FR_AZ_TX_RESERVED);
300
301 /* Do not enable TX_NO_EOP_DISC_EN, since it limits packets to 16
302 * descriptors (which is bad).
303 */
304 efx_reado(efx, &temp, FR_AZ_TX_CFG);
305 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_NO_EOP_DISC_EN, 0);
306 EFX_SET_OWORD_FIELD(temp, FRF_CZ_TX_FILTER_EN_BIT, 1);
307 efx_writeo(efx, &temp, FR_AZ_TX_CFG);
308
309 efx_reado(efx, &temp, FR_AZ_RX_CFG);
310 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_DESC_PUSH_EN, 0);
311 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_INGR_EN, 1);
Ben Hutchings477e54e2010-06-25 07:05:56 +0000312 /* Enable hash insertion. This is broken for the 'Falcon' hash
313 * if IPv6 hashing is also enabled, so also select Toeplitz
314 * TCP/IPv4 and IPv4 hashes. */
315 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_INSRT_HDR, 1);
316 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_ALG, 1);
317 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_IP_HASH, 1);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000318 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_USR_BUF_SIZE,
319 EFX_RX_USR_BUF_SIZE >> 5);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000320 efx_writeo(efx, &temp, FR_AZ_RX_CFG);
321
Ben Hutchings477e54e2010-06-25 07:05:56 +0000322 /* Set hash key for IPv4 */
323 memcpy(&temp, efx->rx_hash_key, sizeof(temp));
324 efx_writeo(efx, &temp, FR_BZ_RX_RSS_TKEY);
325
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000326 /* Enable IPv6 RSS */
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000327 BUILD_BUG_ON(sizeof(efx->rx_hash_key) <
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000328 2 * sizeof(temp) + FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8 ||
329 FRF_CZ_RX_RSS_IPV6_TKEY_HI_LBN != 0);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000330 memcpy(&temp, efx->rx_hash_key, sizeof(temp));
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000331 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG1);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000332 memcpy(&temp, efx->rx_hash_key + sizeof(temp), sizeof(temp));
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000333 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG2);
334 EFX_POPULATE_OWORD_2(temp, FRF_CZ_RX_RSS_IPV6_THASH_ENABLE, 1,
335 FRF_CZ_RX_RSS_IPV6_IP_THASH_ENABLE, 1);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000336 memcpy(&temp, efx->rx_hash_key + 2 * sizeof(temp),
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000337 FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8);
338 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG3);
339
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000340 /* Enable event logging */
341 rc = efx_mcdi_log_ctrl(efx, true, false, 0);
342 if (rc)
343 return rc;
344
345 /* Set destination of both TX and RX Flush events */
346 EFX_POPULATE_OWORD_1(temp, FRF_BZ_FLS_EVQ_ID, 0);
347 efx_writeo(efx, &temp, FR_BZ_DP_CTRL);
348
349 EFX_POPULATE_OWORD_1(temp, FRF_CZ_USREV_DIS, 1);
350 efx_writeo(efx, &temp, FR_CZ_USR_EV_CFG);
351
352 efx_nic_init_common(efx);
353 return 0;
354}
355
356static void siena_remove_nic(struct efx_nic *efx)
357{
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000358 efx_mcdi_mon_remove(efx);
359
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000360 efx_nic_free_buffer(efx, &efx->irq_status);
361
Ben Hutchings6bff8612012-09-18 02:33:52 +0100362 efx_mcdi_reset(efx, RESET_TYPE_ALL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000363
364 /* Relinquish the device back to the BMC */
Ben Hutchingsbdca71e2012-02-24 21:29:40 +0000365 efx_mcdi_drv_attach(efx, false, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000366
367 /* Tear down the private nic state */
David S. Miller8decf862011-09-22 03:23:13 -0400368 kfree(efx->nic_data);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000369 efx->nic_data = NULL;
370}
371
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000372static int siena_try_update_nic_stats(struct efx_nic *efx)
373{
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100374 __le64 *dma_stats;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000375 struct efx_mac_stats *mac_stats;
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100376 __le64 generation_start, generation_end;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000377
378 mac_stats = &efx->mac_stats;
Joe Perches43d620c2011-06-16 19:08:06 +0000379 dma_stats = efx->stats_buffer.addr;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000380
381 generation_end = dma_stats[MC_CMD_MAC_GENERATION_END];
Ben Hutchings43f775b22012-09-18 02:33:54 +0100382 if (generation_end == EFX_MC_STATS_GENERATION_INVALID)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000383 return 0;
384 rmb();
385
386#define MAC_STAT(M, D) \
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100387 mac_stats->M = le64_to_cpu(dma_stats[MC_CMD_MAC_ ## D])
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000388
389 MAC_STAT(tx_bytes, TX_BYTES);
390 MAC_STAT(tx_bad_bytes, TX_BAD_BYTES);
Ben Hutchingsb7f514a2012-07-04 22:25:07 +0100391 efx_update_diff_stat(&mac_stats->tx_good_bytes,
392 mac_stats->tx_bytes - mac_stats->tx_bad_bytes);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000393 MAC_STAT(tx_packets, TX_PKTS);
394 MAC_STAT(tx_bad, TX_BAD_FCS_PKTS);
395 MAC_STAT(tx_pause, TX_PAUSE_PKTS);
396 MAC_STAT(tx_control, TX_CONTROL_PKTS);
397 MAC_STAT(tx_unicast, TX_UNICAST_PKTS);
398 MAC_STAT(tx_multicast, TX_MULTICAST_PKTS);
399 MAC_STAT(tx_broadcast, TX_BROADCAST_PKTS);
400 MAC_STAT(tx_lt64, TX_LT64_PKTS);
401 MAC_STAT(tx_64, TX_64_PKTS);
402 MAC_STAT(tx_65_to_127, TX_65_TO_127_PKTS);
403 MAC_STAT(tx_128_to_255, TX_128_TO_255_PKTS);
404 MAC_STAT(tx_256_to_511, TX_256_TO_511_PKTS);
405 MAC_STAT(tx_512_to_1023, TX_512_TO_1023_PKTS);
406 MAC_STAT(tx_1024_to_15xx, TX_1024_TO_15XX_PKTS);
407 MAC_STAT(tx_15xx_to_jumbo, TX_15XX_TO_JUMBO_PKTS);
408 MAC_STAT(tx_gtjumbo, TX_GTJUMBO_PKTS);
409 mac_stats->tx_collision = 0;
410 MAC_STAT(tx_single_collision, TX_SINGLE_COLLISION_PKTS);
411 MAC_STAT(tx_multiple_collision, TX_MULTIPLE_COLLISION_PKTS);
412 MAC_STAT(tx_excessive_collision, TX_EXCESSIVE_COLLISION_PKTS);
413 MAC_STAT(tx_deferred, TX_DEFERRED_PKTS);
414 MAC_STAT(tx_late_collision, TX_LATE_COLLISION_PKTS);
415 mac_stats->tx_collision = (mac_stats->tx_single_collision +
416 mac_stats->tx_multiple_collision +
417 mac_stats->tx_excessive_collision +
418 mac_stats->tx_late_collision);
419 MAC_STAT(tx_excessive_deferred, TX_EXCESSIVE_DEFERRED_PKTS);
420 MAC_STAT(tx_non_tcpudp, TX_NON_TCPUDP_PKTS);
421 MAC_STAT(tx_mac_src_error, TX_MAC_SRC_ERR_PKTS);
422 MAC_STAT(tx_ip_src_error, TX_IP_SRC_ERR_PKTS);
423 MAC_STAT(rx_bytes, RX_BYTES);
424 MAC_STAT(rx_bad_bytes, RX_BAD_BYTES);
Ben Hutchingsb7f514a2012-07-04 22:25:07 +0100425 efx_update_diff_stat(&mac_stats->rx_good_bytes,
426 mac_stats->rx_bytes - mac_stats->rx_bad_bytes);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000427 MAC_STAT(rx_packets, RX_PKTS);
428 MAC_STAT(rx_good, RX_GOOD_PKTS);
Ben Hutchings1cdc2cf2010-09-10 06:41:00 +0000429 MAC_STAT(rx_bad, RX_BAD_FCS_PKTS);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000430 MAC_STAT(rx_pause, RX_PAUSE_PKTS);
431 MAC_STAT(rx_control, RX_CONTROL_PKTS);
432 MAC_STAT(rx_unicast, RX_UNICAST_PKTS);
433 MAC_STAT(rx_multicast, RX_MULTICAST_PKTS);
434 MAC_STAT(rx_broadcast, RX_BROADCAST_PKTS);
435 MAC_STAT(rx_lt64, RX_UNDERSIZE_PKTS);
436 MAC_STAT(rx_64, RX_64_PKTS);
437 MAC_STAT(rx_65_to_127, RX_65_TO_127_PKTS);
438 MAC_STAT(rx_128_to_255, RX_128_TO_255_PKTS);
439 MAC_STAT(rx_256_to_511, RX_256_TO_511_PKTS);
440 MAC_STAT(rx_512_to_1023, RX_512_TO_1023_PKTS);
441 MAC_STAT(rx_1024_to_15xx, RX_1024_TO_15XX_PKTS);
442 MAC_STAT(rx_15xx_to_jumbo, RX_15XX_TO_JUMBO_PKTS);
443 MAC_STAT(rx_gtjumbo, RX_GTJUMBO_PKTS);
444 mac_stats->rx_bad_lt64 = 0;
445 mac_stats->rx_bad_64_to_15xx = 0;
446 mac_stats->rx_bad_15xx_to_jumbo = 0;
447 MAC_STAT(rx_bad_gtjumbo, RX_JABBER_PKTS);
448 MAC_STAT(rx_overflow, RX_OVERFLOW_PKTS);
449 mac_stats->rx_missed = 0;
450 MAC_STAT(rx_false_carrier, RX_FALSE_CARRIER_PKTS);
451 MAC_STAT(rx_symbol_error, RX_SYMBOL_ERROR_PKTS);
452 MAC_STAT(rx_align_error, RX_ALIGN_ERROR_PKTS);
453 MAC_STAT(rx_length_error, RX_LENGTH_ERROR_PKTS);
454 MAC_STAT(rx_internal_error, RX_INTERNAL_ERROR_PKTS);
455 mac_stats->rx_good_lt64 = 0;
456
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100457 efx->n_rx_nodesc_drop_cnt =
458 le64_to_cpu(dma_stats[MC_CMD_MAC_RX_NODESC_DROPS]);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000459
460#undef MAC_STAT
461
462 rmb();
463 generation_start = dma_stats[MC_CMD_MAC_GENERATION_START];
464 if (generation_end != generation_start)
465 return -EAGAIN;
466
467 return 0;
468}
469
470static void siena_update_nic_stats(struct efx_nic *efx)
471{
Ben Hutchingsaabc5642010-04-28 09:00:35 +0000472 int retry;
473
474 /* If we're unlucky enough to read statistics wduring the DMA, wait
475 * up to 10ms for it to finish (typically takes <500us) */
476 for (retry = 0; retry < 100; ++retry) {
477 if (siena_try_update_nic_stats(efx) == 0)
478 return;
479 udelay(100);
480 }
481
482 /* Use the old values instead */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000483}
484
Ben Hutchings319ec642012-10-08 16:56:18 +0100485static int siena_mac_reconfigure(struct efx_nic *efx)
486{
487 MCDI_DECLARE_BUF(inbuf, MC_CMD_SET_MCAST_HASH_IN_LEN);
488 int rc;
489
490 BUILD_BUG_ON(MC_CMD_SET_MCAST_HASH_IN_LEN !=
491 MC_CMD_SET_MCAST_HASH_IN_HASH0_OFST +
492 sizeof(efx->multicast_hash));
493
494 WARN_ON(!mutex_is_locked(&efx->mac_lock));
495
496 rc = efx_mcdi_set_mac(efx);
497 if (rc != 0)
498 return rc;
499
500 memcpy(MCDI_PTR(inbuf, SET_MCAST_HASH_IN_HASH0),
501 efx->multicast_hash.byte, sizeof(efx->multicast_hash));
502 return efx_mcdi_rpc(efx, MC_CMD_SET_MCAST_HASH,
503 inbuf, sizeof(inbuf), NULL, 0, NULL);
504}
505
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000506/**************************************************************************
507 *
508 * Wake on LAN
509 *
510 **************************************************************************
511 */
512
513static void siena_get_wol(struct efx_nic *efx, struct ethtool_wolinfo *wol)
514{
515 struct siena_nic_data *nic_data = efx->nic_data;
516
517 wol->supported = WAKE_MAGIC;
518 if (nic_data->wol_filter_id != -1)
519 wol->wolopts = WAKE_MAGIC;
520 else
521 wol->wolopts = 0;
522 memset(&wol->sopass, 0, sizeof(wol->sopass));
523}
524
525
526static int siena_set_wol(struct efx_nic *efx, u32 type)
527{
528 struct siena_nic_data *nic_data = efx->nic_data;
529 int rc;
530
531 if (type & ~WAKE_MAGIC)
532 return -EINVAL;
533
534 if (type & WAKE_MAGIC) {
535 if (nic_data->wol_filter_id != -1)
536 efx_mcdi_wol_filter_remove(efx,
537 nic_data->wol_filter_id);
Ben Hutchings02ebc262010-12-02 13:48:20 +0000538 rc = efx_mcdi_wol_filter_set_magic(efx, efx->net_dev->dev_addr,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000539 &nic_data->wol_filter_id);
540 if (rc)
541 goto fail;
542
543 pci_wake_from_d3(efx->pci_dev, true);
544 } else {
545 rc = efx_mcdi_wol_filter_reset(efx);
546 nic_data->wol_filter_id = -1;
547 pci_wake_from_d3(efx->pci_dev, false);
548 if (rc)
549 goto fail;
550 }
551
552 return 0;
553 fail:
Ben Hutchings62776d02010-06-23 11:30:07 +0000554 netif_err(efx, hw, efx->net_dev, "%s failed: type=%d rc=%d\n",
555 __func__, type, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000556 return rc;
557}
558
559
560static void siena_init_wol(struct efx_nic *efx)
561{
562 struct siena_nic_data *nic_data = efx->nic_data;
563 int rc;
564
565 rc = efx_mcdi_wol_filter_get_magic(efx, &nic_data->wol_filter_id);
566
567 if (rc != 0) {
568 /* If it failed, attempt to get into a synchronised
569 * state with MC by resetting any set WoL filters */
570 efx_mcdi_wol_filter_reset(efx);
571 nic_data->wol_filter_id = -1;
572 } else if (nic_data->wol_filter_id != -1) {
573 pci_wake_from_d3(efx->pci_dev, true);
574 }
575}
576
577
578/**************************************************************************
579 *
580 * Revision-dependent attributes used by efx.c and nic.c
581 *
582 **************************************************************************
583 */
584
stephen hemminger6c8c2512011-04-14 05:50:12 +0000585const struct efx_nic_type siena_a0_nic_type = {
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000586 .probe = siena_probe_nic,
587 .remove = siena_remove_nic,
588 .init = siena_init_nic,
Ben Hutchings28e47c42012-02-15 01:58:49 +0000589 .dimension_resources = siena_dimension_resources,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000590 .fini = efx_port_dummy_op_void,
Alexandre Rames626950d2013-01-14 17:20:22 +0000591#ifdef CONFIG_EEH
592 .monitor = siena_monitor,
593#else
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000594 .monitor = NULL,
Alexandre Rames626950d2013-01-14 17:20:22 +0000595#endif
Ben Hutchings6bff8612012-09-18 02:33:52 +0100596 .map_reset_reason = efx_mcdi_map_reset_reason,
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100597 .map_reset_flags = siena_map_reset_flags,
Ben Hutchings6bff8612012-09-18 02:33:52 +0100598 .reset = efx_mcdi_reset,
Ben Hutchings43f775b22012-09-18 02:33:54 +0100599 .probe_port = efx_mcdi_port_probe,
600 .remove_port = efx_mcdi_port_remove,
Ben Hutchingsd5e8cc62012-09-06 16:52:31 +0100601 .prepare_flush = siena_prepare_flush,
602 .finish_flush = siena_finish_flush,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000603 .update_stats = siena_update_nic_stats,
Ben Hutchings43f775b22012-09-18 02:33:54 +0100604 .start_stats = efx_mcdi_mac_start_stats,
605 .stop_stats = efx_mcdi_mac_stop_stats,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000606 .set_id_led = efx_mcdi_set_id_led,
607 .push_irq_moderation = siena_push_irq_moderation,
Ben Hutchings319ec642012-10-08 16:56:18 +0100608 .reconfigure_mac = siena_mac_reconfigure,
Ben Hutchings710b2082011-09-03 00:15:00 +0100609 .check_mac_fault = efx_mcdi_mac_check_fault,
Ben Hutchings43f775b22012-09-18 02:33:54 +0100610 .reconfigure_port = efx_mcdi_port_reconfigure,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000611 .get_wol = siena_get_wol,
612 .set_wol = siena_set_wol,
613 .resume_wol = siena_init_wol,
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100614 .test_chip = siena_test_chip,
Ben Hutchings2e803402010-02-03 09:31:01 +0000615 .test_nvram = efx_mcdi_nvram_test_all,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000616
617 .revision = EFX_REV_SIENA_A0,
David S. Miller8decf862011-09-22 03:23:13 -0400618 .mem_map_size = (FR_CZ_MC_TREG_SMEM +
619 FR_CZ_MC_TREG_SMEM_STEP * FR_CZ_MC_TREG_SMEM_ROWS),
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000620 .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL,
621 .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL,
622 .buf_tbl_base = FR_BZ_BUF_FULL_TBL,
623 .evq_ptr_tbl_base = FR_BZ_EVQ_PTR_TBL,
624 .evq_rptr_tbl_base = FR_BZ_EVQ_RPTR,
625 .max_dma_mask = DMA_BIT_MASK(FSF_AZ_TX_KER_BUF_ADDR_WIDTH),
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000626 .rx_buffer_hash_size = 0x10,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000627 .rx_buffer_padding = 0,
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000628 .can_rx_scatter = true,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000629 .max_interrupt_mode = EFX_INT_MODE_MSIX,
630 .phys_addr_channels = 32, /* Hardware limit is 64, but the legacy
631 * interrupt handler only supports 32
632 * channels */
Ben Hutchingscc180b62011-12-08 19:51:47 +0000633 .timer_period_max = 1 << FRF_CZ_TC_TIMER_VAL_WIDTH,
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000634 .offload_features = (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000635 NETIF_F_RXHASH | NETIF_F_NTUPLE),
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000636};