blob: 6babc8eb984d379352c112cf14066a61e2632877 [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 Hutchingsafd4aea2009-11-29 15:15:25 +000054static int siena_mdio_write(struct net_device *net_dev,
55 int prtad, int devad, u16 addr, u16 value)
56{
57 struct efx_nic *efx = netdev_priv(net_dev);
58 uint32_t status;
59 int rc;
60
61 rc = efx_mcdi_mdio_write(efx, efx->mdio_bus, prtad, devad,
62 addr, value, &status);
63 if (rc)
64 return rc;
65 if (status != MC_CMD_MDIO_STATUS_GOOD)
66 return -EIO;
67
68 return 0;
69}
70
71static int siena_mdio_read(struct net_device *net_dev,
72 int prtad, int devad, u16 addr)
73{
74 struct efx_nic *efx = netdev_priv(net_dev);
75 uint16_t value;
76 uint32_t status;
77 int rc;
78
79 rc = efx_mcdi_mdio_read(efx, efx->mdio_bus, prtad, devad,
80 addr, &value, &status);
81 if (rc)
82 return rc;
83 if (status != MC_CMD_MDIO_STATUS_GOOD)
84 return -EIO;
85
86 return (int)value;
87}
88
89/* This call is responsible for hooking in the MAC and PHY operations */
90static int siena_probe_port(struct efx_nic *efx)
91{
92 int rc;
93
94 /* Hook in PHY operations table */
95 efx->phy_op = &efx_mcdi_phy_ops;
96
97 /* Set up MDIO structure for PHY */
98 efx->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
99 efx->mdio.mdio_read = siena_mdio_read;
100 efx->mdio.mdio_write = siena_mdio_write;
101
Steve Hodgson7a6b8f62010-02-03 09:30:38 +0000102 /* Fill out MDIO structure, loopback modes, and initial link state */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000103 rc = efx->phy_op->probe(efx);
104 if (rc != 0)
105 return rc;
106
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000107 /* Allocate buffer for stats */
108 rc = efx_nic_alloc_buffer(efx, &efx->stats_buffer,
109 MC_CMD_MAC_NSTATS * sizeof(u64));
110 if (rc)
111 return rc;
Ben Hutchings62776d02010-06-23 11:30:07 +0000112 netif_dbg(efx, probe, efx->net_dev,
113 "stats buffer at %llx (virt %p phys %llx)\n",
114 (u64)efx->stats_buffer.dma_addr,
115 efx->stats_buffer.addr,
116 (u64)virt_to_phys(efx->stats_buffer.addr));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000117
118 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr, 0, 0, 1);
119
120 return 0;
121}
122
stephen hemmingerd2156972010-10-18 05:27:31 +0000123static void siena_remove_port(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000124{
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000125 efx->phy_op->remove(efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000126 efx_nic_free_buffer(efx, &efx->stats_buffer);
127}
128
Ben Hutchingsd5e8cc62012-09-06 16:52:31 +0100129void siena_prepare_flush(struct efx_nic *efx)
130{
131 if (efx->fc_disable++ == 0)
132 efx_mcdi_set_mac(efx);
133}
134
135void siena_finish_flush(struct efx_nic *efx)
136{
137 if (--efx->fc_disable == 0)
138 efx_mcdi_set_mac(efx);
139}
140
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000141static const struct efx_nic_register_test siena_register_tests[] = {
142 { FR_AZ_ADR_REGION,
Steve Hodgson4cddca52010-02-03 09:31:40 +0000143 EFX_OWORD32(0x0003FFFF, 0x0003FFFF, 0x0003FFFF, 0x0003FFFF) },
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000144 { FR_CZ_USR_EV_CFG,
145 EFX_OWORD32(0x000103FF, 0x00000000, 0x00000000, 0x00000000) },
146 { FR_AZ_RX_CFG,
147 EFX_OWORD32(0xFFFFFFFE, 0xFFFFFFFF, 0x0003FFFF, 0x00000000) },
148 { FR_AZ_TX_CFG,
149 EFX_OWORD32(0x7FFF0037, 0xFFFF8000, 0xFFFFFFFF, 0x03FFFFFF) },
150 { FR_AZ_TX_RESERVED,
151 EFX_OWORD32(0xFFFEFE80, 0x1FFFFFFF, 0x020000FE, 0x007FFFFF) },
152 { FR_AZ_SRM_TX_DC_CFG,
153 EFX_OWORD32(0x001FFFFF, 0x00000000, 0x00000000, 0x00000000) },
154 { FR_AZ_RX_DC_CFG,
155 EFX_OWORD32(0x00000003, 0x00000000, 0x00000000, 0x00000000) },
156 { FR_AZ_RX_DC_PF_WM,
157 EFX_OWORD32(0x000003FF, 0x00000000, 0x00000000, 0x00000000) },
158 { FR_BZ_DP_CTRL,
159 EFX_OWORD32(0x00000FFF, 0x00000000, 0x00000000, 0x00000000) },
160 { FR_BZ_RX_RSS_TKEY,
161 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
162 { FR_CZ_RX_RSS_IPV6_REG1,
163 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
164 { FR_CZ_RX_RSS_IPV6_REG2,
165 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
166 { FR_CZ_RX_RSS_IPV6_REG3,
167 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0x00000007, 0x00000000) },
168};
169
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100170static int siena_test_chip(struct efx_nic *efx, struct efx_self_tests *tests)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000171{
Ben Hutchingsef492f12012-12-01 01:55:27 +0000172 enum reset_type reset_method = RESET_TYPE_ALL;
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100173 int rc, rc2;
174
175 efx_reset_down(efx, reset_method);
176
177 /* Reset the chip immediately so that it is completely
178 * quiescent regardless of what any VF driver does.
179 */
Ben Hutchings6bff8612012-09-18 02:33:52 +0100180 rc = efx_mcdi_reset(efx, reset_method);
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100181 if (rc)
182 goto out;
183
184 tests->registers =
185 efx_nic_test_registers(efx, siena_register_tests,
186 ARRAY_SIZE(siena_register_tests))
187 ? -1 : 1;
188
Ben Hutchings6bff8612012-09-18 02:33:52 +0100189 rc = efx_mcdi_reset(efx, reset_method);
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100190out:
191 rc2 = efx_reset_up(efx, reset_method, rc == 0);
192 return rc ? rc : rc2;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000193}
194
195/**************************************************************************
196 *
197 * Device reset
198 *
199 **************************************************************************
200 */
201
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100202static int siena_map_reset_flags(u32 *flags)
203{
204 enum {
205 SIENA_RESET_PORT = (ETH_RESET_DMA | ETH_RESET_FILTER |
206 ETH_RESET_OFFLOAD | ETH_RESET_MAC |
207 ETH_RESET_PHY),
208 SIENA_RESET_MC = (SIENA_RESET_PORT |
209 ETH_RESET_MGMT << ETH_RESET_SHARED_SHIFT),
210 };
211
212 if ((*flags & SIENA_RESET_MC) == SIENA_RESET_MC) {
213 *flags &= ~SIENA_RESET_MC;
214 return RESET_TYPE_WORLD;
215 }
216
217 if ((*flags & SIENA_RESET_PORT) == SIENA_RESET_PORT) {
218 *flags &= ~SIENA_RESET_PORT;
219 return RESET_TYPE_ALL;
220 }
221
222 /* no invisible reset implemented */
223
224 return -EINVAL;
225}
226
Alexandre Rames626950d2013-01-14 17:20:22 +0000227#ifdef CONFIG_EEH
228/* When a PCI device is isolated from the bus, a subsequent MMIO read is
229 * required for the kernel EEH mechanisms to notice. As the Solarflare driver
230 * was written to minimise MMIO read (for latency) then a periodic call to check
231 * the EEH status of the device is required so that device recovery can happen
232 * in a timely fashion.
233 */
234static void siena_monitor(struct efx_nic *efx)
235{
236 struct eeh_dev *eehdev =
237 of_node_to_eeh_dev(pci_device_to_OF_node(efx->pci_dev));
238
239 eeh_dev_check_failure(eehdev);
240}
241#endif
242
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000243static int siena_probe_nvconfig(struct efx_nic *efx)
244{
Ben Hutchingscc180b62011-12-08 19:51:47 +0000245 u32 caps = 0;
246 int rc;
247
248 rc = efx_mcdi_get_board_cfg(efx, efx->net_dev->perm_addr, NULL, &caps);
249
250 efx->timer_quantum_ns =
251 (caps & (1 << MC_CMD_CAPABILITIES_TURBO_ACTIVE_LBN)) ?
252 3072 : 6144; /* 768 cycles */
253 return rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000254}
255
Ben Hutchings28e47c42012-02-15 01:58:49 +0000256static void siena_dimension_resources(struct efx_nic *efx)
257{
258 /* Each port has a small block of internal SRAM dedicated to
259 * the buffer table and descriptor caches. In theory we can
260 * map both blocks to one port, but we don't.
261 */
262 efx_nic_dimension_resources(efx, FR_CZ_BUF_FULL_TBL_ROWS / 2);
263}
264
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000265static int siena_probe_nic(struct efx_nic *efx)
266{
267 struct siena_nic_data *nic_data;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000268 bool already_attached = false;
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000269 efx_oword_t reg;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000270 int rc;
271
272 /* Allocate storage for hardware specific data */
273 nic_data = kzalloc(sizeof(struct siena_nic_data), GFP_KERNEL);
274 if (!nic_data)
275 return -ENOMEM;
276 efx->nic_data = nic_data;
277
278 if (efx_nic_fpga_ver(efx) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000279 netif_err(efx, probe, efx->net_dev,
280 "Siena FPGA not supported\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000281 rc = -ENODEV;
282 goto fail1;
283 }
284
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000285 efx_reado(efx, &reg, FR_AZ_CS_DEBUG);
Ben Hutchings66020412013-06-10 18:03:17 +0100286 efx->port_num = EFX_OWORD_FIELD(reg, FRF_CZ_CS_PORT_NUM) - 1;
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000287
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000288 efx_mcdi_init(efx);
289
290 /* Recover from a failed assertion before probing */
291 rc = efx_mcdi_handle_assertion(efx);
292 if (rc)
David S. Miller8decf862011-09-22 03:23:13 -0400293 goto fail1;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000294
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000295 /* Let the BMC know that the driver is now in charge of link and
296 * filter settings. We must do this before we reset the NIC */
297 rc = efx_mcdi_drv_attach(efx, true, &already_attached);
298 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000299 netif_err(efx, probe, efx->net_dev,
300 "Unable to register driver with MCPU\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000301 goto fail2;
302 }
303 if (already_attached)
304 /* Not a fatal error */
Ben Hutchings62776d02010-06-23 11:30:07 +0000305 netif_err(efx, probe, efx->net_dev,
306 "Host already registered with MCPU\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000307
308 /* Now we can reset the NIC */
Ben Hutchings6bff8612012-09-18 02:33:52 +0100309 rc = efx_mcdi_reset(efx, RESET_TYPE_ALL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000310 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000311 netif_err(efx, probe, efx->net_dev, "failed to reset NIC\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000312 goto fail3;
313 }
314
315 siena_init_wol(efx);
316
317 /* Allocate memory for INT_KER */
318 rc = efx_nic_alloc_buffer(efx, &efx->irq_status, sizeof(efx_oword_t));
319 if (rc)
320 goto fail4;
321 BUG_ON(efx->irq_status.dma_addr & 0x0f);
322
Ben Hutchings62776d02010-06-23 11:30:07 +0000323 netif_dbg(efx, probe, efx->net_dev,
324 "INT_KER at %llx (virt %p phys %llx)\n",
325 (unsigned long long)efx->irq_status.dma_addr,
326 efx->irq_status.addr,
327 (unsigned long long)virt_to_phys(efx->irq_status.addr));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000328
329 /* Read in the non-volatile configuration */
330 rc = siena_probe_nvconfig(efx);
331 if (rc == -EINVAL) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000332 netif_err(efx, probe, efx->net_dev,
333 "NVRAM is invalid therefore using defaults\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000334 efx->phy_type = PHY_TYPE_NONE;
335 efx->mdio.prtad = MDIO_PRTAD_NONE;
336 } else if (rc) {
337 goto fail5;
338 }
339
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000340 rc = efx_mcdi_mon_probe(efx);
341 if (rc)
342 goto fail5;
343
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000344 efx_sriov_probe(efx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100345 efx_ptp_probe(efx);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000346
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000347 return 0;
348
349fail5:
350 efx_nic_free_buffer(efx, &efx->irq_status);
351fail4:
352fail3:
353 efx_mcdi_drv_attach(efx, false, NULL);
354fail2:
355fail1:
356 kfree(efx->nic_data);
357 return rc;
358}
359
360/* This call performs hardware-specific global initialisation, such as
361 * defining the descriptor cache sizes and number of RSS channels.
362 * It does not set up any buffers, descriptor rings or event queues.
363 */
364static int siena_init_nic(struct efx_nic *efx)
365{
366 efx_oword_t temp;
367 int rc;
368
369 /* Recover from a failed assertion post-reset */
370 rc = efx_mcdi_handle_assertion(efx);
371 if (rc)
372 return rc;
373
374 /* Squash TX of packets of 16 bytes or less */
375 efx_reado(efx, &temp, FR_AZ_TX_RESERVED);
376 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1);
377 efx_writeo(efx, &temp, FR_AZ_TX_RESERVED);
378
379 /* Do not enable TX_NO_EOP_DISC_EN, since it limits packets to 16
380 * descriptors (which is bad).
381 */
382 efx_reado(efx, &temp, FR_AZ_TX_CFG);
383 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_NO_EOP_DISC_EN, 0);
384 EFX_SET_OWORD_FIELD(temp, FRF_CZ_TX_FILTER_EN_BIT, 1);
385 efx_writeo(efx, &temp, FR_AZ_TX_CFG);
386
387 efx_reado(efx, &temp, FR_AZ_RX_CFG);
388 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_DESC_PUSH_EN, 0);
389 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_INGR_EN, 1);
Ben Hutchings477e54e2010-06-25 07:05:56 +0000390 /* Enable hash insertion. This is broken for the 'Falcon' hash
391 * if IPv6 hashing is also enabled, so also select Toeplitz
392 * TCP/IPv4 and IPv4 hashes. */
393 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_INSRT_HDR, 1);
394 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_ALG, 1);
395 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_IP_HASH, 1);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000396 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_USR_BUF_SIZE,
397 EFX_RX_USR_BUF_SIZE >> 5);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000398 efx_writeo(efx, &temp, FR_AZ_RX_CFG);
399
Ben Hutchings477e54e2010-06-25 07:05:56 +0000400 /* Set hash key for IPv4 */
401 memcpy(&temp, efx->rx_hash_key, sizeof(temp));
402 efx_writeo(efx, &temp, FR_BZ_RX_RSS_TKEY);
403
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000404 /* Enable IPv6 RSS */
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000405 BUILD_BUG_ON(sizeof(efx->rx_hash_key) <
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000406 2 * sizeof(temp) + FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8 ||
407 FRF_CZ_RX_RSS_IPV6_TKEY_HI_LBN != 0);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000408 memcpy(&temp, efx->rx_hash_key, sizeof(temp));
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000409 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG1);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000410 memcpy(&temp, efx->rx_hash_key + sizeof(temp), sizeof(temp));
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000411 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG2);
412 EFX_POPULATE_OWORD_2(temp, FRF_CZ_RX_RSS_IPV6_THASH_ENABLE, 1,
413 FRF_CZ_RX_RSS_IPV6_IP_THASH_ENABLE, 1);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000414 memcpy(&temp, efx->rx_hash_key + 2 * sizeof(temp),
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000415 FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8);
416 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG3);
417
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000418 /* Enable event logging */
419 rc = efx_mcdi_log_ctrl(efx, true, false, 0);
420 if (rc)
421 return rc;
422
423 /* Set destination of both TX and RX Flush events */
424 EFX_POPULATE_OWORD_1(temp, FRF_BZ_FLS_EVQ_ID, 0);
425 efx_writeo(efx, &temp, FR_BZ_DP_CTRL);
426
427 EFX_POPULATE_OWORD_1(temp, FRF_CZ_USREV_DIS, 1);
428 efx_writeo(efx, &temp, FR_CZ_USR_EV_CFG);
429
430 efx_nic_init_common(efx);
431 return 0;
432}
433
434static void siena_remove_nic(struct efx_nic *efx)
435{
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000436 efx_mcdi_mon_remove(efx);
437
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000438 efx_nic_free_buffer(efx, &efx->irq_status);
439
Ben Hutchings6bff8612012-09-18 02:33:52 +0100440 efx_mcdi_reset(efx, RESET_TYPE_ALL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000441
442 /* Relinquish the device back to the BMC */
Ben Hutchingsbdca71e2012-02-24 21:29:40 +0000443 efx_mcdi_drv_attach(efx, false, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000444
445 /* Tear down the private nic state */
David S. Miller8decf862011-09-22 03:23:13 -0400446 kfree(efx->nic_data);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000447 efx->nic_data = NULL;
448}
449
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100450#define STATS_GENERATION_INVALID ((__force __le64)(-1))
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000451
452static int siena_try_update_nic_stats(struct efx_nic *efx)
453{
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100454 __le64 *dma_stats;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000455 struct efx_mac_stats *mac_stats;
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100456 __le64 generation_start, generation_end;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000457
458 mac_stats = &efx->mac_stats;
Joe Perches43d620c2011-06-16 19:08:06 +0000459 dma_stats = efx->stats_buffer.addr;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000460
461 generation_end = dma_stats[MC_CMD_MAC_GENERATION_END];
462 if (generation_end == STATS_GENERATION_INVALID)
463 return 0;
464 rmb();
465
466#define MAC_STAT(M, D) \
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100467 mac_stats->M = le64_to_cpu(dma_stats[MC_CMD_MAC_ ## D])
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000468
469 MAC_STAT(tx_bytes, TX_BYTES);
470 MAC_STAT(tx_bad_bytes, TX_BAD_BYTES);
Ben Hutchingsb7f514a2012-07-04 22:25:07 +0100471 efx_update_diff_stat(&mac_stats->tx_good_bytes,
472 mac_stats->tx_bytes - mac_stats->tx_bad_bytes);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000473 MAC_STAT(tx_packets, TX_PKTS);
474 MAC_STAT(tx_bad, TX_BAD_FCS_PKTS);
475 MAC_STAT(tx_pause, TX_PAUSE_PKTS);
476 MAC_STAT(tx_control, TX_CONTROL_PKTS);
477 MAC_STAT(tx_unicast, TX_UNICAST_PKTS);
478 MAC_STAT(tx_multicast, TX_MULTICAST_PKTS);
479 MAC_STAT(tx_broadcast, TX_BROADCAST_PKTS);
480 MAC_STAT(tx_lt64, TX_LT64_PKTS);
481 MAC_STAT(tx_64, TX_64_PKTS);
482 MAC_STAT(tx_65_to_127, TX_65_TO_127_PKTS);
483 MAC_STAT(tx_128_to_255, TX_128_TO_255_PKTS);
484 MAC_STAT(tx_256_to_511, TX_256_TO_511_PKTS);
485 MAC_STAT(tx_512_to_1023, TX_512_TO_1023_PKTS);
486 MAC_STAT(tx_1024_to_15xx, TX_1024_TO_15XX_PKTS);
487 MAC_STAT(tx_15xx_to_jumbo, TX_15XX_TO_JUMBO_PKTS);
488 MAC_STAT(tx_gtjumbo, TX_GTJUMBO_PKTS);
489 mac_stats->tx_collision = 0;
490 MAC_STAT(tx_single_collision, TX_SINGLE_COLLISION_PKTS);
491 MAC_STAT(tx_multiple_collision, TX_MULTIPLE_COLLISION_PKTS);
492 MAC_STAT(tx_excessive_collision, TX_EXCESSIVE_COLLISION_PKTS);
493 MAC_STAT(tx_deferred, TX_DEFERRED_PKTS);
494 MAC_STAT(tx_late_collision, TX_LATE_COLLISION_PKTS);
495 mac_stats->tx_collision = (mac_stats->tx_single_collision +
496 mac_stats->tx_multiple_collision +
497 mac_stats->tx_excessive_collision +
498 mac_stats->tx_late_collision);
499 MAC_STAT(tx_excessive_deferred, TX_EXCESSIVE_DEFERRED_PKTS);
500 MAC_STAT(tx_non_tcpudp, TX_NON_TCPUDP_PKTS);
501 MAC_STAT(tx_mac_src_error, TX_MAC_SRC_ERR_PKTS);
502 MAC_STAT(tx_ip_src_error, TX_IP_SRC_ERR_PKTS);
503 MAC_STAT(rx_bytes, RX_BYTES);
504 MAC_STAT(rx_bad_bytes, RX_BAD_BYTES);
Ben Hutchingsb7f514a2012-07-04 22:25:07 +0100505 efx_update_diff_stat(&mac_stats->rx_good_bytes,
506 mac_stats->rx_bytes - mac_stats->rx_bad_bytes);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000507 MAC_STAT(rx_packets, RX_PKTS);
508 MAC_STAT(rx_good, RX_GOOD_PKTS);
Ben Hutchings1cdc2cf2010-09-10 06:41:00 +0000509 MAC_STAT(rx_bad, RX_BAD_FCS_PKTS);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000510 MAC_STAT(rx_pause, RX_PAUSE_PKTS);
511 MAC_STAT(rx_control, RX_CONTROL_PKTS);
512 MAC_STAT(rx_unicast, RX_UNICAST_PKTS);
513 MAC_STAT(rx_multicast, RX_MULTICAST_PKTS);
514 MAC_STAT(rx_broadcast, RX_BROADCAST_PKTS);
515 MAC_STAT(rx_lt64, RX_UNDERSIZE_PKTS);
516 MAC_STAT(rx_64, RX_64_PKTS);
517 MAC_STAT(rx_65_to_127, RX_65_TO_127_PKTS);
518 MAC_STAT(rx_128_to_255, RX_128_TO_255_PKTS);
519 MAC_STAT(rx_256_to_511, RX_256_TO_511_PKTS);
520 MAC_STAT(rx_512_to_1023, RX_512_TO_1023_PKTS);
521 MAC_STAT(rx_1024_to_15xx, RX_1024_TO_15XX_PKTS);
522 MAC_STAT(rx_15xx_to_jumbo, RX_15XX_TO_JUMBO_PKTS);
523 MAC_STAT(rx_gtjumbo, RX_GTJUMBO_PKTS);
524 mac_stats->rx_bad_lt64 = 0;
525 mac_stats->rx_bad_64_to_15xx = 0;
526 mac_stats->rx_bad_15xx_to_jumbo = 0;
527 MAC_STAT(rx_bad_gtjumbo, RX_JABBER_PKTS);
528 MAC_STAT(rx_overflow, RX_OVERFLOW_PKTS);
529 mac_stats->rx_missed = 0;
530 MAC_STAT(rx_false_carrier, RX_FALSE_CARRIER_PKTS);
531 MAC_STAT(rx_symbol_error, RX_SYMBOL_ERROR_PKTS);
532 MAC_STAT(rx_align_error, RX_ALIGN_ERROR_PKTS);
533 MAC_STAT(rx_length_error, RX_LENGTH_ERROR_PKTS);
534 MAC_STAT(rx_internal_error, RX_INTERNAL_ERROR_PKTS);
535 mac_stats->rx_good_lt64 = 0;
536
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100537 efx->n_rx_nodesc_drop_cnt =
538 le64_to_cpu(dma_stats[MC_CMD_MAC_RX_NODESC_DROPS]);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000539
540#undef MAC_STAT
541
542 rmb();
543 generation_start = dma_stats[MC_CMD_MAC_GENERATION_START];
544 if (generation_end != generation_start)
545 return -EAGAIN;
546
547 return 0;
548}
549
550static void siena_update_nic_stats(struct efx_nic *efx)
551{
Ben Hutchingsaabc5642010-04-28 09:00:35 +0000552 int retry;
553
554 /* If we're unlucky enough to read statistics wduring the DMA, wait
555 * up to 10ms for it to finish (typically takes <500us) */
556 for (retry = 0; retry < 100; ++retry) {
557 if (siena_try_update_nic_stats(efx) == 0)
558 return;
559 udelay(100);
560 }
561
562 /* Use the old values instead */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000563}
564
565static void siena_start_nic_stats(struct efx_nic *efx)
566{
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100567 __le64 *dma_stats = efx->stats_buffer.addr;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000568
569 dma_stats[MC_CMD_MAC_GENERATION_END] = STATS_GENERATION_INVALID;
570
571 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr,
572 MC_CMD_MAC_NSTATS * sizeof(u64), 1, 0);
573}
574
575static void siena_stop_nic_stats(struct efx_nic *efx)
576{
577 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr, 0, 0, 0);
578}
579
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000580/**************************************************************************
581 *
582 * Wake on LAN
583 *
584 **************************************************************************
585 */
586
587static void siena_get_wol(struct efx_nic *efx, struct ethtool_wolinfo *wol)
588{
589 struct siena_nic_data *nic_data = efx->nic_data;
590
591 wol->supported = WAKE_MAGIC;
592 if (nic_data->wol_filter_id != -1)
593 wol->wolopts = WAKE_MAGIC;
594 else
595 wol->wolopts = 0;
596 memset(&wol->sopass, 0, sizeof(wol->sopass));
597}
598
599
600static int siena_set_wol(struct efx_nic *efx, u32 type)
601{
602 struct siena_nic_data *nic_data = efx->nic_data;
603 int rc;
604
605 if (type & ~WAKE_MAGIC)
606 return -EINVAL;
607
608 if (type & WAKE_MAGIC) {
609 if (nic_data->wol_filter_id != -1)
610 efx_mcdi_wol_filter_remove(efx,
611 nic_data->wol_filter_id);
Ben Hutchings02ebc262010-12-02 13:48:20 +0000612 rc = efx_mcdi_wol_filter_set_magic(efx, efx->net_dev->dev_addr,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000613 &nic_data->wol_filter_id);
614 if (rc)
615 goto fail;
616
617 pci_wake_from_d3(efx->pci_dev, true);
618 } else {
619 rc = efx_mcdi_wol_filter_reset(efx);
620 nic_data->wol_filter_id = -1;
621 pci_wake_from_d3(efx->pci_dev, false);
622 if (rc)
623 goto fail;
624 }
625
626 return 0;
627 fail:
Ben Hutchings62776d02010-06-23 11:30:07 +0000628 netif_err(efx, hw, efx->net_dev, "%s failed: type=%d rc=%d\n",
629 __func__, type, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000630 return rc;
631}
632
633
634static void siena_init_wol(struct efx_nic *efx)
635{
636 struct siena_nic_data *nic_data = efx->nic_data;
637 int rc;
638
639 rc = efx_mcdi_wol_filter_get_magic(efx, &nic_data->wol_filter_id);
640
641 if (rc != 0) {
642 /* If it failed, attempt to get into a synchronised
643 * state with MC by resetting any set WoL filters */
644 efx_mcdi_wol_filter_reset(efx);
645 nic_data->wol_filter_id = -1;
646 } else if (nic_data->wol_filter_id != -1) {
647 pci_wake_from_d3(efx->pci_dev, true);
648 }
649}
650
651
652/**************************************************************************
653 *
654 * Revision-dependent attributes used by efx.c and nic.c
655 *
656 **************************************************************************
657 */
658
stephen hemminger6c8c2512011-04-14 05:50:12 +0000659const struct efx_nic_type siena_a0_nic_type = {
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000660 .probe = siena_probe_nic,
661 .remove = siena_remove_nic,
662 .init = siena_init_nic,
Ben Hutchings28e47c42012-02-15 01:58:49 +0000663 .dimension_resources = siena_dimension_resources,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000664 .fini = efx_port_dummy_op_void,
Alexandre Rames626950d2013-01-14 17:20:22 +0000665#ifdef CONFIG_EEH
666 .monitor = siena_monitor,
667#else
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000668 .monitor = NULL,
Alexandre Rames626950d2013-01-14 17:20:22 +0000669#endif
Ben Hutchings6bff8612012-09-18 02:33:52 +0100670 .map_reset_reason = efx_mcdi_map_reset_reason,
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100671 .map_reset_flags = siena_map_reset_flags,
Ben Hutchings6bff8612012-09-18 02:33:52 +0100672 .reset = efx_mcdi_reset,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000673 .probe_port = siena_probe_port,
674 .remove_port = siena_remove_port,
Ben Hutchingsd5e8cc62012-09-06 16:52:31 +0100675 .prepare_flush = siena_prepare_flush,
676 .finish_flush = siena_finish_flush,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000677 .update_stats = siena_update_nic_stats,
678 .start_stats = siena_start_nic_stats,
679 .stop_stats = siena_stop_nic_stats,
680 .set_id_led = efx_mcdi_set_id_led,
681 .push_irq_moderation = siena_push_irq_moderation,
Ben Hutchings710b2082011-09-03 00:15:00 +0100682 .reconfigure_mac = efx_mcdi_mac_reconfigure,
683 .check_mac_fault = efx_mcdi_mac_check_fault,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000684 .reconfigure_port = efx_mcdi_phy_reconfigure,
685 .get_wol = siena_get_wol,
686 .set_wol = siena_set_wol,
687 .resume_wol = siena_init_wol,
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100688 .test_chip = siena_test_chip,
Ben Hutchings2e803402010-02-03 09:31:01 +0000689 .test_nvram = efx_mcdi_nvram_test_all,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000690
691 .revision = EFX_REV_SIENA_A0,
David S. Miller8decf862011-09-22 03:23:13 -0400692 .mem_map_size = (FR_CZ_MC_TREG_SMEM +
693 FR_CZ_MC_TREG_SMEM_STEP * FR_CZ_MC_TREG_SMEM_ROWS),
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000694 .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL,
695 .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL,
696 .buf_tbl_base = FR_BZ_BUF_FULL_TBL,
697 .evq_ptr_tbl_base = FR_BZ_EVQ_PTR_TBL,
698 .evq_rptr_tbl_base = FR_BZ_EVQ_RPTR,
699 .max_dma_mask = DMA_BIT_MASK(FSF_AZ_TX_KER_BUF_ADDR_WIDTH),
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000700 .rx_buffer_hash_size = 0x10,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000701 .rx_buffer_padding = 0,
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000702 .can_rx_scatter = true,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000703 .max_interrupt_mode = EFX_INT_MODE_MSIX,
704 .phys_addr_channels = 32, /* Hardware limit is 64, but the legacy
705 * interrupt handler only supports 32
706 * channels */
Ben Hutchingscc180b62011-12-08 19:51:47 +0000707 .timer_period_max = 1 << FRF_CZ_TC_TIMER_VAL_WIDTH,
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000708 .offload_features = (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000709 NETIF_F_RXHASH | NETIF_F_NTUPLE),
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000710};