blob: e07ff0d3f26b1fd4c42496dd6d961bf45c87a778 [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);
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +010033static int siena_reset_hw(struct efx_nic *efx, enum reset_type method);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000034
35
36static void siena_push_irq_moderation(struct efx_channel *channel)
37{
38 efx_dword_t timer_cmd;
39
40 if (channel->irq_moderation)
41 EFX_POPULATE_DWORD_2(timer_cmd,
42 FRF_CZ_TC_TIMER_MODE,
43 FFE_CZ_TIMER_MODE_INT_HLDOFF,
44 FRF_CZ_TC_TIMER_VAL,
45 channel->irq_moderation - 1);
46 else
47 EFX_POPULATE_DWORD_2(timer_cmd,
48 FRF_CZ_TC_TIMER_MODE,
49 FFE_CZ_TIMER_MODE_DIS,
50 FRF_CZ_TC_TIMER_VAL, 0);
51 efx_writed_page_locked(channel->efx, &timer_cmd, FR_BZ_TIMER_COMMAND_P0,
52 channel->channel);
53}
54
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000055static int siena_mdio_write(struct net_device *net_dev,
56 int prtad, int devad, u16 addr, u16 value)
57{
58 struct efx_nic *efx = netdev_priv(net_dev);
59 uint32_t status;
60 int rc;
61
62 rc = efx_mcdi_mdio_write(efx, efx->mdio_bus, prtad, devad,
63 addr, value, &status);
64 if (rc)
65 return rc;
66 if (status != MC_CMD_MDIO_STATUS_GOOD)
67 return -EIO;
68
69 return 0;
70}
71
72static int siena_mdio_read(struct net_device *net_dev,
73 int prtad, int devad, u16 addr)
74{
75 struct efx_nic *efx = netdev_priv(net_dev);
76 uint16_t value;
77 uint32_t status;
78 int rc;
79
80 rc = efx_mcdi_mdio_read(efx, efx->mdio_bus, prtad, devad,
81 addr, &value, &status);
82 if (rc)
83 return rc;
84 if (status != MC_CMD_MDIO_STATUS_GOOD)
85 return -EIO;
86
87 return (int)value;
88}
89
90/* This call is responsible for hooking in the MAC and PHY operations */
91static int siena_probe_port(struct efx_nic *efx)
92{
93 int rc;
94
95 /* Hook in PHY operations table */
96 efx->phy_op = &efx_mcdi_phy_ops;
97
98 /* Set up MDIO structure for PHY */
99 efx->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
100 efx->mdio.mdio_read = siena_mdio_read;
101 efx->mdio.mdio_write = siena_mdio_write;
102
Steve Hodgson7a6b8f62010-02-03 09:30:38 +0000103 /* Fill out MDIO structure, loopback modes, and initial link state */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000104 rc = efx->phy_op->probe(efx);
105 if (rc != 0)
106 return rc;
107
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000108 /* Allocate buffer for stats */
109 rc = efx_nic_alloc_buffer(efx, &efx->stats_buffer,
110 MC_CMD_MAC_NSTATS * sizeof(u64));
111 if (rc)
112 return rc;
Ben Hutchings62776d02010-06-23 11:30:07 +0000113 netif_dbg(efx, probe, efx->net_dev,
114 "stats buffer at %llx (virt %p phys %llx)\n",
115 (u64)efx->stats_buffer.dma_addr,
116 efx->stats_buffer.addr,
117 (u64)virt_to_phys(efx->stats_buffer.addr));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000118
119 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr, 0, 0, 1);
120
121 return 0;
122}
123
stephen hemmingerd2156972010-10-18 05:27:31 +0000124static void siena_remove_port(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000125{
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000126 efx->phy_op->remove(efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000127 efx_nic_free_buffer(efx, &efx->stats_buffer);
128}
129
Ben Hutchingsd5e8cc62012-09-06 16:52:31 +0100130void siena_prepare_flush(struct efx_nic *efx)
131{
132 if (efx->fc_disable++ == 0)
133 efx_mcdi_set_mac(efx);
134}
135
136void siena_finish_flush(struct efx_nic *efx)
137{
138 if (--efx->fc_disable == 0)
139 efx_mcdi_set_mac(efx);
140}
141
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000142static const struct efx_nic_register_test siena_register_tests[] = {
143 { FR_AZ_ADR_REGION,
Steve Hodgson4cddca52010-02-03 09:31:40 +0000144 EFX_OWORD32(0x0003FFFF, 0x0003FFFF, 0x0003FFFF, 0x0003FFFF) },
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000145 { FR_CZ_USR_EV_CFG,
146 EFX_OWORD32(0x000103FF, 0x00000000, 0x00000000, 0x00000000) },
147 { FR_AZ_RX_CFG,
148 EFX_OWORD32(0xFFFFFFFE, 0xFFFFFFFF, 0x0003FFFF, 0x00000000) },
149 { FR_AZ_TX_CFG,
150 EFX_OWORD32(0x7FFF0037, 0xFFFF8000, 0xFFFFFFFF, 0x03FFFFFF) },
151 { FR_AZ_TX_RESERVED,
152 EFX_OWORD32(0xFFFEFE80, 0x1FFFFFFF, 0x020000FE, 0x007FFFFF) },
153 { FR_AZ_SRM_TX_DC_CFG,
154 EFX_OWORD32(0x001FFFFF, 0x00000000, 0x00000000, 0x00000000) },
155 { FR_AZ_RX_DC_CFG,
156 EFX_OWORD32(0x00000003, 0x00000000, 0x00000000, 0x00000000) },
157 { FR_AZ_RX_DC_PF_WM,
158 EFX_OWORD32(0x000003FF, 0x00000000, 0x00000000, 0x00000000) },
159 { FR_BZ_DP_CTRL,
160 EFX_OWORD32(0x00000FFF, 0x00000000, 0x00000000, 0x00000000) },
161 { FR_BZ_RX_RSS_TKEY,
162 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
163 { FR_CZ_RX_RSS_IPV6_REG1,
164 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
165 { FR_CZ_RX_RSS_IPV6_REG2,
166 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
167 { FR_CZ_RX_RSS_IPV6_REG3,
168 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0x00000007, 0x00000000) },
169};
170
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100171static int siena_test_chip(struct efx_nic *efx, struct efx_self_tests *tests)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000172{
Ben Hutchingsef492f12012-12-01 01:55:27 +0000173 enum reset_type reset_method = RESET_TYPE_ALL;
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100174 int rc, rc2;
175
176 efx_reset_down(efx, reset_method);
177
178 /* Reset the chip immediately so that it is completely
179 * quiescent regardless of what any VF driver does.
180 */
181 rc = siena_reset_hw(efx, reset_method);
182 if (rc)
183 goto out;
184
185 tests->registers =
186 efx_nic_test_registers(efx, siena_register_tests,
187 ARRAY_SIZE(siena_register_tests))
188 ? -1 : 1;
189
190 rc = siena_reset_hw(efx, reset_method);
191out:
192 rc2 = efx_reset_up(efx, reset_method, rc == 0);
193 return rc ? rc : rc2;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000194}
195
196/**************************************************************************
197 *
198 * Device reset
199 *
200 **************************************************************************
201 */
202
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100203static enum reset_type siena_map_reset_reason(enum reset_type reason)
204{
Alexandre Rames626950d2013-01-14 17:20:22 +0000205 return RESET_TYPE_RECOVER_OR_ALL;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100206}
207
208static int siena_map_reset_flags(u32 *flags)
209{
210 enum {
211 SIENA_RESET_PORT = (ETH_RESET_DMA | ETH_RESET_FILTER |
212 ETH_RESET_OFFLOAD | ETH_RESET_MAC |
213 ETH_RESET_PHY),
214 SIENA_RESET_MC = (SIENA_RESET_PORT |
215 ETH_RESET_MGMT << ETH_RESET_SHARED_SHIFT),
216 };
217
218 if ((*flags & SIENA_RESET_MC) == SIENA_RESET_MC) {
219 *flags &= ~SIENA_RESET_MC;
220 return RESET_TYPE_WORLD;
221 }
222
223 if ((*flags & SIENA_RESET_PORT) == SIENA_RESET_PORT) {
224 *flags &= ~SIENA_RESET_PORT;
225 return RESET_TYPE_ALL;
226 }
227
228 /* no invisible reset implemented */
229
230 return -EINVAL;
231}
232
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000233static int siena_reset_hw(struct efx_nic *efx, enum reset_type method)
234{
Steve Hodgson8b2103a2010-02-03 09:30:17 +0000235 int rc;
236
237 /* Recover from a failed assertion pre-reset */
238 rc = efx_mcdi_handle_assertion(efx);
239 if (rc)
240 return rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000241
242 if (method == RESET_TYPE_WORLD)
243 return efx_mcdi_reset_mc(efx);
244 else
245 return efx_mcdi_reset_port(efx);
246}
247
Alexandre Rames626950d2013-01-14 17:20:22 +0000248#ifdef CONFIG_EEH
249/* When a PCI device is isolated from the bus, a subsequent MMIO read is
250 * required for the kernel EEH mechanisms to notice. As the Solarflare driver
251 * was written to minimise MMIO read (for latency) then a periodic call to check
252 * the EEH status of the device is required so that device recovery can happen
253 * in a timely fashion.
254 */
255static void siena_monitor(struct efx_nic *efx)
256{
257 struct eeh_dev *eehdev =
258 of_node_to_eeh_dev(pci_device_to_OF_node(efx->pci_dev));
259
260 eeh_dev_check_failure(eehdev);
261}
262#endif
263
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000264static int siena_probe_nvconfig(struct efx_nic *efx)
265{
Ben Hutchingscc180b62011-12-08 19:51:47 +0000266 u32 caps = 0;
267 int rc;
268
269 rc = efx_mcdi_get_board_cfg(efx, efx->net_dev->perm_addr, NULL, &caps);
270
271 efx->timer_quantum_ns =
272 (caps & (1 << MC_CMD_CAPABILITIES_TURBO_ACTIVE_LBN)) ?
273 3072 : 6144; /* 768 cycles */
274 return rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000275}
276
Ben Hutchings28e47c42012-02-15 01:58:49 +0000277static void siena_dimension_resources(struct efx_nic *efx)
278{
279 /* Each port has a small block of internal SRAM dedicated to
280 * the buffer table and descriptor caches. In theory we can
281 * map both blocks to one port, but we don't.
282 */
283 efx_nic_dimension_resources(efx, FR_CZ_BUF_FULL_TBL_ROWS / 2);
284}
285
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000286static int siena_probe_nic(struct efx_nic *efx)
287{
288 struct siena_nic_data *nic_data;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000289 bool already_attached = false;
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000290 efx_oword_t reg;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000291 int rc;
292
293 /* Allocate storage for hardware specific data */
294 nic_data = kzalloc(sizeof(struct siena_nic_data), GFP_KERNEL);
295 if (!nic_data)
296 return -ENOMEM;
297 efx->nic_data = nic_data;
298
299 if (efx_nic_fpga_ver(efx) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000300 netif_err(efx, probe, efx->net_dev,
301 "Siena FPGA not supported\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000302 rc = -ENODEV;
303 goto fail1;
304 }
305
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000306 efx_reado(efx, &reg, FR_AZ_CS_DEBUG);
Ben Hutchings3df95ce2010-06-02 10:39:56 +0000307 efx->net_dev->dev_id = EFX_OWORD_FIELD(reg, FRF_CZ_CS_PORT_NUM) - 1;
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000308
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000309 efx_mcdi_init(efx);
310
311 /* Recover from a failed assertion before probing */
312 rc = efx_mcdi_handle_assertion(efx);
313 if (rc)
David S. Miller8decf862011-09-22 03:23:13 -0400314 goto fail1;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000315
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000316 /* Let the BMC know that the driver is now in charge of link and
317 * filter settings. We must do this before we reset the NIC */
318 rc = efx_mcdi_drv_attach(efx, true, &already_attached);
319 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000320 netif_err(efx, probe, efx->net_dev,
321 "Unable to register driver with MCPU\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000322 goto fail2;
323 }
324 if (already_attached)
325 /* Not a fatal error */
Ben Hutchings62776d02010-06-23 11:30:07 +0000326 netif_err(efx, probe, efx->net_dev,
327 "Host already registered with MCPU\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000328
329 /* Now we can reset the NIC */
330 rc = siena_reset_hw(efx, RESET_TYPE_ALL);
331 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000332 netif_err(efx, probe, efx->net_dev, "failed to reset NIC\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000333 goto fail3;
334 }
335
336 siena_init_wol(efx);
337
338 /* Allocate memory for INT_KER */
339 rc = efx_nic_alloc_buffer(efx, &efx->irq_status, sizeof(efx_oword_t));
340 if (rc)
341 goto fail4;
342 BUG_ON(efx->irq_status.dma_addr & 0x0f);
343
Ben Hutchings62776d02010-06-23 11:30:07 +0000344 netif_dbg(efx, probe, efx->net_dev,
345 "INT_KER at %llx (virt %p phys %llx)\n",
346 (unsigned long long)efx->irq_status.dma_addr,
347 efx->irq_status.addr,
348 (unsigned long long)virt_to_phys(efx->irq_status.addr));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000349
350 /* Read in the non-volatile configuration */
351 rc = siena_probe_nvconfig(efx);
352 if (rc == -EINVAL) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000353 netif_err(efx, probe, efx->net_dev,
354 "NVRAM is invalid therefore using defaults\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000355 efx->phy_type = PHY_TYPE_NONE;
356 efx->mdio.prtad = MDIO_PRTAD_NONE;
357 } else if (rc) {
358 goto fail5;
359 }
360
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000361 rc = efx_mcdi_mon_probe(efx);
362 if (rc)
363 goto fail5;
364
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000365 efx_sriov_probe(efx);
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100366 efx_ptp_probe(efx);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000367
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000368 return 0;
369
370fail5:
371 efx_nic_free_buffer(efx, &efx->irq_status);
372fail4:
373fail3:
374 efx_mcdi_drv_attach(efx, false, NULL);
375fail2:
376fail1:
377 kfree(efx->nic_data);
378 return rc;
379}
380
381/* This call performs hardware-specific global initialisation, such as
382 * defining the descriptor cache sizes and number of RSS channels.
383 * It does not set up any buffers, descriptor rings or event queues.
384 */
385static int siena_init_nic(struct efx_nic *efx)
386{
387 efx_oword_t temp;
388 int rc;
389
390 /* Recover from a failed assertion post-reset */
391 rc = efx_mcdi_handle_assertion(efx);
392 if (rc)
393 return rc;
394
395 /* Squash TX of packets of 16 bytes or less */
396 efx_reado(efx, &temp, FR_AZ_TX_RESERVED);
397 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1);
398 efx_writeo(efx, &temp, FR_AZ_TX_RESERVED);
399
400 /* Do not enable TX_NO_EOP_DISC_EN, since it limits packets to 16
401 * descriptors (which is bad).
402 */
403 efx_reado(efx, &temp, FR_AZ_TX_CFG);
404 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_NO_EOP_DISC_EN, 0);
405 EFX_SET_OWORD_FIELD(temp, FRF_CZ_TX_FILTER_EN_BIT, 1);
406 efx_writeo(efx, &temp, FR_AZ_TX_CFG);
407
408 efx_reado(efx, &temp, FR_AZ_RX_CFG);
409 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_DESC_PUSH_EN, 0);
410 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_INGR_EN, 1);
Ben Hutchings477e54e2010-06-25 07:05:56 +0000411 /* Enable hash insertion. This is broken for the 'Falcon' hash
412 * if IPv6 hashing is also enabled, so also select Toeplitz
413 * TCP/IPv4 and IPv4 hashes. */
414 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_INSRT_HDR, 1);
415 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_ALG, 1);
416 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_IP_HASH, 1);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000417 efx_writeo(efx, &temp, FR_AZ_RX_CFG);
418
Ben Hutchings477e54e2010-06-25 07:05:56 +0000419 /* Set hash key for IPv4 */
420 memcpy(&temp, efx->rx_hash_key, sizeof(temp));
421 efx_writeo(efx, &temp, FR_BZ_RX_RSS_TKEY);
422
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000423 /* Enable IPv6 RSS */
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000424 BUILD_BUG_ON(sizeof(efx->rx_hash_key) <
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000425 2 * sizeof(temp) + FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8 ||
426 FRF_CZ_RX_RSS_IPV6_TKEY_HI_LBN != 0);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000427 memcpy(&temp, efx->rx_hash_key, sizeof(temp));
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000428 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG1);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000429 memcpy(&temp, efx->rx_hash_key + sizeof(temp), sizeof(temp));
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000430 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG2);
431 EFX_POPULATE_OWORD_2(temp, FRF_CZ_RX_RSS_IPV6_THASH_ENABLE, 1,
432 FRF_CZ_RX_RSS_IPV6_IP_THASH_ENABLE, 1);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000433 memcpy(&temp, efx->rx_hash_key + 2 * sizeof(temp),
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000434 FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8);
435 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG3);
436
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000437 /* Enable event logging */
438 rc = efx_mcdi_log_ctrl(efx, true, false, 0);
439 if (rc)
440 return rc;
441
442 /* Set destination of both TX and RX Flush events */
443 EFX_POPULATE_OWORD_1(temp, FRF_BZ_FLS_EVQ_ID, 0);
444 efx_writeo(efx, &temp, FR_BZ_DP_CTRL);
445
446 EFX_POPULATE_OWORD_1(temp, FRF_CZ_USREV_DIS, 1);
447 efx_writeo(efx, &temp, FR_CZ_USR_EV_CFG);
448
449 efx_nic_init_common(efx);
450 return 0;
451}
452
453static void siena_remove_nic(struct efx_nic *efx)
454{
Ben Hutchings55c5e0f2012-01-06 20:25:39 +0000455 efx_mcdi_mon_remove(efx);
456
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000457 efx_nic_free_buffer(efx, &efx->irq_status);
458
459 siena_reset_hw(efx, RESET_TYPE_ALL);
460
461 /* Relinquish the device back to the BMC */
Ben Hutchingsbdca71e2012-02-24 21:29:40 +0000462 efx_mcdi_drv_attach(efx, false, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000463
464 /* Tear down the private nic state */
David S. Miller8decf862011-09-22 03:23:13 -0400465 kfree(efx->nic_data);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000466 efx->nic_data = NULL;
467}
468
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100469#define STATS_GENERATION_INVALID ((__force __le64)(-1))
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000470
471static int siena_try_update_nic_stats(struct efx_nic *efx)
472{
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100473 __le64 *dma_stats;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000474 struct efx_mac_stats *mac_stats;
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100475 __le64 generation_start, generation_end;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000476
477 mac_stats = &efx->mac_stats;
Joe Perches43d620c2011-06-16 19:08:06 +0000478 dma_stats = efx->stats_buffer.addr;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000479
480 generation_end = dma_stats[MC_CMD_MAC_GENERATION_END];
481 if (generation_end == STATS_GENERATION_INVALID)
482 return 0;
483 rmb();
484
485#define MAC_STAT(M, D) \
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100486 mac_stats->M = le64_to_cpu(dma_stats[MC_CMD_MAC_ ## D])
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000487
488 MAC_STAT(tx_bytes, TX_BYTES);
489 MAC_STAT(tx_bad_bytes, TX_BAD_BYTES);
Ben Hutchingsb7f514a2012-07-04 22:25:07 +0100490 efx_update_diff_stat(&mac_stats->tx_good_bytes,
491 mac_stats->tx_bytes - mac_stats->tx_bad_bytes);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000492 MAC_STAT(tx_packets, TX_PKTS);
493 MAC_STAT(tx_bad, TX_BAD_FCS_PKTS);
494 MAC_STAT(tx_pause, TX_PAUSE_PKTS);
495 MAC_STAT(tx_control, TX_CONTROL_PKTS);
496 MAC_STAT(tx_unicast, TX_UNICAST_PKTS);
497 MAC_STAT(tx_multicast, TX_MULTICAST_PKTS);
498 MAC_STAT(tx_broadcast, TX_BROADCAST_PKTS);
499 MAC_STAT(tx_lt64, TX_LT64_PKTS);
500 MAC_STAT(tx_64, TX_64_PKTS);
501 MAC_STAT(tx_65_to_127, TX_65_TO_127_PKTS);
502 MAC_STAT(tx_128_to_255, TX_128_TO_255_PKTS);
503 MAC_STAT(tx_256_to_511, TX_256_TO_511_PKTS);
504 MAC_STAT(tx_512_to_1023, TX_512_TO_1023_PKTS);
505 MAC_STAT(tx_1024_to_15xx, TX_1024_TO_15XX_PKTS);
506 MAC_STAT(tx_15xx_to_jumbo, TX_15XX_TO_JUMBO_PKTS);
507 MAC_STAT(tx_gtjumbo, TX_GTJUMBO_PKTS);
508 mac_stats->tx_collision = 0;
509 MAC_STAT(tx_single_collision, TX_SINGLE_COLLISION_PKTS);
510 MAC_STAT(tx_multiple_collision, TX_MULTIPLE_COLLISION_PKTS);
511 MAC_STAT(tx_excessive_collision, TX_EXCESSIVE_COLLISION_PKTS);
512 MAC_STAT(tx_deferred, TX_DEFERRED_PKTS);
513 MAC_STAT(tx_late_collision, TX_LATE_COLLISION_PKTS);
514 mac_stats->tx_collision = (mac_stats->tx_single_collision +
515 mac_stats->tx_multiple_collision +
516 mac_stats->tx_excessive_collision +
517 mac_stats->tx_late_collision);
518 MAC_STAT(tx_excessive_deferred, TX_EXCESSIVE_DEFERRED_PKTS);
519 MAC_STAT(tx_non_tcpudp, TX_NON_TCPUDP_PKTS);
520 MAC_STAT(tx_mac_src_error, TX_MAC_SRC_ERR_PKTS);
521 MAC_STAT(tx_ip_src_error, TX_IP_SRC_ERR_PKTS);
522 MAC_STAT(rx_bytes, RX_BYTES);
523 MAC_STAT(rx_bad_bytes, RX_BAD_BYTES);
Ben Hutchingsb7f514a2012-07-04 22:25:07 +0100524 efx_update_diff_stat(&mac_stats->rx_good_bytes,
525 mac_stats->rx_bytes - mac_stats->rx_bad_bytes);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000526 MAC_STAT(rx_packets, RX_PKTS);
527 MAC_STAT(rx_good, RX_GOOD_PKTS);
Ben Hutchings1cdc2cf2010-09-10 06:41:00 +0000528 MAC_STAT(rx_bad, RX_BAD_FCS_PKTS);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000529 MAC_STAT(rx_pause, RX_PAUSE_PKTS);
530 MAC_STAT(rx_control, RX_CONTROL_PKTS);
531 MAC_STAT(rx_unicast, RX_UNICAST_PKTS);
532 MAC_STAT(rx_multicast, RX_MULTICAST_PKTS);
533 MAC_STAT(rx_broadcast, RX_BROADCAST_PKTS);
534 MAC_STAT(rx_lt64, RX_UNDERSIZE_PKTS);
535 MAC_STAT(rx_64, RX_64_PKTS);
536 MAC_STAT(rx_65_to_127, RX_65_TO_127_PKTS);
537 MAC_STAT(rx_128_to_255, RX_128_TO_255_PKTS);
538 MAC_STAT(rx_256_to_511, RX_256_TO_511_PKTS);
539 MAC_STAT(rx_512_to_1023, RX_512_TO_1023_PKTS);
540 MAC_STAT(rx_1024_to_15xx, RX_1024_TO_15XX_PKTS);
541 MAC_STAT(rx_15xx_to_jumbo, RX_15XX_TO_JUMBO_PKTS);
542 MAC_STAT(rx_gtjumbo, RX_GTJUMBO_PKTS);
543 mac_stats->rx_bad_lt64 = 0;
544 mac_stats->rx_bad_64_to_15xx = 0;
545 mac_stats->rx_bad_15xx_to_jumbo = 0;
546 MAC_STAT(rx_bad_gtjumbo, RX_JABBER_PKTS);
547 MAC_STAT(rx_overflow, RX_OVERFLOW_PKTS);
548 mac_stats->rx_missed = 0;
549 MAC_STAT(rx_false_carrier, RX_FALSE_CARRIER_PKTS);
550 MAC_STAT(rx_symbol_error, RX_SYMBOL_ERROR_PKTS);
551 MAC_STAT(rx_align_error, RX_ALIGN_ERROR_PKTS);
552 MAC_STAT(rx_length_error, RX_LENGTH_ERROR_PKTS);
553 MAC_STAT(rx_internal_error, RX_INTERNAL_ERROR_PKTS);
554 mac_stats->rx_good_lt64 = 0;
555
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100556 efx->n_rx_nodesc_drop_cnt =
557 le64_to_cpu(dma_stats[MC_CMD_MAC_RX_NODESC_DROPS]);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000558
559#undef MAC_STAT
560
561 rmb();
562 generation_start = dma_stats[MC_CMD_MAC_GENERATION_START];
563 if (generation_end != generation_start)
564 return -EAGAIN;
565
566 return 0;
567}
568
569static void siena_update_nic_stats(struct efx_nic *efx)
570{
Ben Hutchingsaabc5642010-04-28 09:00:35 +0000571 int retry;
572
573 /* If we're unlucky enough to read statistics wduring the DMA, wait
574 * up to 10ms for it to finish (typically takes <500us) */
575 for (retry = 0; retry < 100; ++retry) {
576 if (siena_try_update_nic_stats(efx) == 0)
577 return;
578 udelay(100);
579 }
580
581 /* Use the old values instead */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000582}
583
584static void siena_start_nic_stats(struct efx_nic *efx)
585{
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100586 __le64 *dma_stats = efx->stats_buffer.addr;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000587
588 dma_stats[MC_CMD_MAC_GENERATION_END] = STATS_GENERATION_INVALID;
589
590 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr,
591 MC_CMD_MAC_NSTATS * sizeof(u64), 1, 0);
592}
593
594static void siena_stop_nic_stats(struct efx_nic *efx)
595{
596 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr, 0, 0, 0);
597}
598
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000599/**************************************************************************
600 *
601 * Wake on LAN
602 *
603 **************************************************************************
604 */
605
606static void siena_get_wol(struct efx_nic *efx, struct ethtool_wolinfo *wol)
607{
608 struct siena_nic_data *nic_data = efx->nic_data;
609
610 wol->supported = WAKE_MAGIC;
611 if (nic_data->wol_filter_id != -1)
612 wol->wolopts = WAKE_MAGIC;
613 else
614 wol->wolopts = 0;
615 memset(&wol->sopass, 0, sizeof(wol->sopass));
616}
617
618
619static int siena_set_wol(struct efx_nic *efx, u32 type)
620{
621 struct siena_nic_data *nic_data = efx->nic_data;
622 int rc;
623
624 if (type & ~WAKE_MAGIC)
625 return -EINVAL;
626
627 if (type & WAKE_MAGIC) {
628 if (nic_data->wol_filter_id != -1)
629 efx_mcdi_wol_filter_remove(efx,
630 nic_data->wol_filter_id);
Ben Hutchings02ebc262010-12-02 13:48:20 +0000631 rc = efx_mcdi_wol_filter_set_magic(efx, efx->net_dev->dev_addr,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000632 &nic_data->wol_filter_id);
633 if (rc)
634 goto fail;
635
636 pci_wake_from_d3(efx->pci_dev, true);
637 } else {
638 rc = efx_mcdi_wol_filter_reset(efx);
639 nic_data->wol_filter_id = -1;
640 pci_wake_from_d3(efx->pci_dev, false);
641 if (rc)
642 goto fail;
643 }
644
645 return 0;
646 fail:
Ben Hutchings62776d02010-06-23 11:30:07 +0000647 netif_err(efx, hw, efx->net_dev, "%s failed: type=%d rc=%d\n",
648 __func__, type, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000649 return rc;
650}
651
652
653static void siena_init_wol(struct efx_nic *efx)
654{
655 struct siena_nic_data *nic_data = efx->nic_data;
656 int rc;
657
658 rc = efx_mcdi_wol_filter_get_magic(efx, &nic_data->wol_filter_id);
659
660 if (rc != 0) {
661 /* If it failed, attempt to get into a synchronised
662 * state with MC by resetting any set WoL filters */
663 efx_mcdi_wol_filter_reset(efx);
664 nic_data->wol_filter_id = -1;
665 } else if (nic_data->wol_filter_id != -1) {
666 pci_wake_from_d3(efx->pci_dev, true);
667 }
668}
669
670
671/**************************************************************************
672 *
673 * Revision-dependent attributes used by efx.c and nic.c
674 *
675 **************************************************************************
676 */
677
stephen hemminger6c8c2512011-04-14 05:50:12 +0000678const struct efx_nic_type siena_a0_nic_type = {
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000679 .probe = siena_probe_nic,
680 .remove = siena_remove_nic,
681 .init = siena_init_nic,
Ben Hutchings28e47c42012-02-15 01:58:49 +0000682 .dimension_resources = siena_dimension_resources,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000683 .fini = efx_port_dummy_op_void,
Alexandre Rames626950d2013-01-14 17:20:22 +0000684#ifdef CONFIG_EEH
685 .monitor = siena_monitor,
686#else
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000687 .monitor = NULL,
Alexandre Rames626950d2013-01-14 17:20:22 +0000688#endif
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100689 .map_reset_reason = siena_map_reset_reason,
690 .map_reset_flags = siena_map_reset_flags,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000691 .reset = siena_reset_hw,
692 .probe_port = siena_probe_port,
693 .remove_port = siena_remove_port,
Ben Hutchingsd5e8cc62012-09-06 16:52:31 +0100694 .prepare_flush = siena_prepare_flush,
695 .finish_flush = siena_finish_flush,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000696 .update_stats = siena_update_nic_stats,
697 .start_stats = siena_start_nic_stats,
698 .stop_stats = siena_stop_nic_stats,
699 .set_id_led = efx_mcdi_set_id_led,
700 .push_irq_moderation = siena_push_irq_moderation,
Ben Hutchings710b2082011-09-03 00:15:00 +0100701 .reconfigure_mac = efx_mcdi_mac_reconfigure,
702 .check_mac_fault = efx_mcdi_mac_check_fault,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000703 .reconfigure_port = efx_mcdi_phy_reconfigure,
704 .get_wol = siena_get_wol,
705 .set_wol = siena_set_wol,
706 .resume_wol = siena_init_wol,
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100707 .test_chip = siena_test_chip,
Ben Hutchings2e803402010-02-03 09:31:01 +0000708 .test_nvram = efx_mcdi_nvram_test_all,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000709
710 .revision = EFX_REV_SIENA_A0,
David S. Miller8decf862011-09-22 03:23:13 -0400711 .mem_map_size = (FR_CZ_MC_TREG_SMEM +
712 FR_CZ_MC_TREG_SMEM_STEP * FR_CZ_MC_TREG_SMEM_ROWS),
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000713 .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL,
714 .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL,
715 .buf_tbl_base = FR_BZ_BUF_FULL_TBL,
716 .evq_ptr_tbl_base = FR_BZ_EVQ_PTR_TBL,
717 .evq_rptr_tbl_base = FR_BZ_EVQ_RPTR,
718 .max_dma_mask = DMA_BIT_MASK(FSF_AZ_TX_KER_BUF_ADDR_WIDTH),
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000719 .rx_buffer_hash_size = 0x10,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000720 .rx_buffer_padding = 0,
721 .max_interrupt_mode = EFX_INT_MODE_MSIX,
722 .phys_addr_channels = 32, /* Hardware limit is 64, but the legacy
723 * interrupt handler only supports 32
724 * channels */
Ben Hutchingscc180b62011-12-08 19:51:47 +0000725 .timer_period_max = 1 << FRF_CZ_TC_TIMER_VAL_WIDTH,
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000726 .offload_features = (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000727 NETIF_F_RXHASH | NETIF_F_NTUPLE),
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000728};