blob: 775b6784cbdbd5d8c0fe971c4abc5395cd2fa77f [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"
28
29/* Hardware control for SFC9000 family including SFL9021 (aka Siena). */
30
31static void siena_init_wol(struct efx_nic *efx);
32
33
34static void siena_push_irq_moderation(struct efx_channel *channel)
35{
36 efx_dword_t timer_cmd;
37
Ben Hutchings9e393b32011-09-05 07:43:04 +000038 BUILD_BUG_ON(EFX_IRQ_MOD_MAX > (1 << FRF_CZ_TC_TIMER_VAL_WIDTH));
39
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000040 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
55static void siena_push_multicast_hash(struct efx_nic *efx)
56{
57 WARN_ON(!mutex_is_locked(&efx->mac_lock));
58
59 efx_mcdi_rpc(efx, MC_CMD_SET_MCAST_HASH,
60 efx->multicast_hash.byte, sizeof(efx->multicast_hash),
61 NULL, 0, NULL);
62}
63
64static int siena_mdio_write(struct net_device *net_dev,
65 int prtad, int devad, u16 addr, u16 value)
66{
67 struct efx_nic *efx = netdev_priv(net_dev);
68 uint32_t status;
69 int rc;
70
71 rc = efx_mcdi_mdio_write(efx, efx->mdio_bus, prtad, devad,
72 addr, value, &status);
73 if (rc)
74 return rc;
75 if (status != MC_CMD_MDIO_STATUS_GOOD)
76 return -EIO;
77
78 return 0;
79}
80
81static int siena_mdio_read(struct net_device *net_dev,
82 int prtad, int devad, u16 addr)
83{
84 struct efx_nic *efx = netdev_priv(net_dev);
85 uint16_t value;
86 uint32_t status;
87 int rc;
88
89 rc = efx_mcdi_mdio_read(efx, efx->mdio_bus, prtad, devad,
90 addr, &value, &status);
91 if (rc)
92 return rc;
93 if (status != MC_CMD_MDIO_STATUS_GOOD)
94 return -EIO;
95
96 return (int)value;
97}
98
99/* This call is responsible for hooking in the MAC and PHY operations */
100static int siena_probe_port(struct efx_nic *efx)
101{
102 int rc;
103
104 /* Hook in PHY operations table */
105 efx->phy_op = &efx_mcdi_phy_ops;
106
107 /* Set up MDIO structure for PHY */
108 efx->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
109 efx->mdio.mdio_read = siena_mdio_read;
110 efx->mdio.mdio_write = siena_mdio_write;
111
Steve Hodgson7a6b8f62010-02-03 09:30:38 +0000112 /* Fill out MDIO structure, loopback modes, and initial link state */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000113 rc = efx->phy_op->probe(efx);
114 if (rc != 0)
115 return rc;
116
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000117 /* Allocate buffer for stats */
118 rc = efx_nic_alloc_buffer(efx, &efx->stats_buffer,
119 MC_CMD_MAC_NSTATS * sizeof(u64));
120 if (rc)
121 return rc;
Ben Hutchings62776d02010-06-23 11:30:07 +0000122 netif_dbg(efx, probe, efx->net_dev,
123 "stats buffer at %llx (virt %p phys %llx)\n",
124 (u64)efx->stats_buffer.dma_addr,
125 efx->stats_buffer.addr,
126 (u64)virt_to_phys(efx->stats_buffer.addr));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000127
128 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr, 0, 0, 1);
129
130 return 0;
131}
132
stephen hemmingerd2156972010-10-18 05:27:31 +0000133static void siena_remove_port(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000134{
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000135 efx->phy_op->remove(efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000136 efx_nic_free_buffer(efx, &efx->stats_buffer);
137}
138
139static const struct efx_nic_register_test siena_register_tests[] = {
140 { FR_AZ_ADR_REGION,
Steve Hodgson4cddca52010-02-03 09:31:40 +0000141 EFX_OWORD32(0x0003FFFF, 0x0003FFFF, 0x0003FFFF, 0x0003FFFF) },
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000142 { FR_CZ_USR_EV_CFG,
143 EFX_OWORD32(0x000103FF, 0x00000000, 0x00000000, 0x00000000) },
144 { FR_AZ_RX_CFG,
145 EFX_OWORD32(0xFFFFFFFE, 0xFFFFFFFF, 0x0003FFFF, 0x00000000) },
146 { FR_AZ_TX_CFG,
147 EFX_OWORD32(0x7FFF0037, 0xFFFF8000, 0xFFFFFFFF, 0x03FFFFFF) },
148 { FR_AZ_TX_RESERVED,
149 EFX_OWORD32(0xFFFEFE80, 0x1FFFFFFF, 0x020000FE, 0x007FFFFF) },
150 { FR_AZ_SRM_TX_DC_CFG,
151 EFX_OWORD32(0x001FFFFF, 0x00000000, 0x00000000, 0x00000000) },
152 { FR_AZ_RX_DC_CFG,
153 EFX_OWORD32(0x00000003, 0x00000000, 0x00000000, 0x00000000) },
154 { FR_AZ_RX_DC_PF_WM,
155 EFX_OWORD32(0x000003FF, 0x00000000, 0x00000000, 0x00000000) },
156 { FR_BZ_DP_CTRL,
157 EFX_OWORD32(0x00000FFF, 0x00000000, 0x00000000, 0x00000000) },
158 { FR_BZ_RX_RSS_TKEY,
159 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
160 { FR_CZ_RX_RSS_IPV6_REG1,
161 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
162 { FR_CZ_RX_RSS_IPV6_REG2,
163 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) },
164 { FR_CZ_RX_RSS_IPV6_REG3,
165 EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0x00000007, 0x00000000) },
166};
167
168static int siena_test_registers(struct efx_nic *efx)
169{
170 return efx_nic_test_registers(efx, siena_register_tests,
171 ARRAY_SIZE(siena_register_tests));
172}
173
174/**************************************************************************
175 *
176 * Device reset
177 *
178 **************************************************************************
179 */
180
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100181static enum reset_type siena_map_reset_reason(enum reset_type reason)
182{
183 return RESET_TYPE_ALL;
184}
185
186static int siena_map_reset_flags(u32 *flags)
187{
188 enum {
189 SIENA_RESET_PORT = (ETH_RESET_DMA | ETH_RESET_FILTER |
190 ETH_RESET_OFFLOAD | ETH_RESET_MAC |
191 ETH_RESET_PHY),
192 SIENA_RESET_MC = (SIENA_RESET_PORT |
193 ETH_RESET_MGMT << ETH_RESET_SHARED_SHIFT),
194 };
195
196 if ((*flags & SIENA_RESET_MC) == SIENA_RESET_MC) {
197 *flags &= ~SIENA_RESET_MC;
198 return RESET_TYPE_WORLD;
199 }
200
201 if ((*flags & SIENA_RESET_PORT) == SIENA_RESET_PORT) {
202 *flags &= ~SIENA_RESET_PORT;
203 return RESET_TYPE_ALL;
204 }
205
206 /* no invisible reset implemented */
207
208 return -EINVAL;
209}
210
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000211static int siena_reset_hw(struct efx_nic *efx, enum reset_type method)
212{
Steve Hodgson8b2103a2010-02-03 09:30:17 +0000213 int rc;
214
215 /* Recover from a failed assertion pre-reset */
216 rc = efx_mcdi_handle_assertion(efx);
217 if (rc)
218 return rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000219
220 if (method == RESET_TYPE_WORLD)
221 return efx_mcdi_reset_mc(efx);
222 else
223 return efx_mcdi_reset_port(efx);
224}
225
226static int siena_probe_nvconfig(struct efx_nic *efx)
227{
Ben Hutchings7e300bc2010-12-02 13:48:28 +0000228 return efx_mcdi_get_board_cfg(efx, efx->net_dev->perm_addr, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000229}
230
231static int siena_probe_nic(struct efx_nic *efx)
232{
233 struct siena_nic_data *nic_data;
Rusty Russell3db1cd52011-12-19 13:56:45 +0000234 bool already_attached = false;
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000235 efx_oword_t reg;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000236 int rc;
237
238 /* Allocate storage for hardware specific data */
239 nic_data = kzalloc(sizeof(struct siena_nic_data), GFP_KERNEL);
240 if (!nic_data)
241 return -ENOMEM;
242 efx->nic_data = nic_data;
243
244 if (efx_nic_fpga_ver(efx) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000245 netif_err(efx, probe, efx->net_dev,
246 "Siena FPGA not supported\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000247 rc = -ENODEV;
248 goto fail1;
249 }
250
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000251 efx_reado(efx, &reg, FR_AZ_CS_DEBUG);
Ben Hutchings3df95ce2010-06-02 10:39:56 +0000252 efx->net_dev->dev_id = EFX_OWORD_FIELD(reg, FRF_CZ_CS_PORT_NUM) - 1;
Ben Hutchingsd42a8f42010-06-01 11:32:43 +0000253
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000254 efx_mcdi_init(efx);
255
256 /* Recover from a failed assertion before probing */
257 rc = efx_mcdi_handle_assertion(efx);
258 if (rc)
David S. Miller8decf862011-09-22 03:23:13 -0400259 goto fail1;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000260
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000261 /* Let the BMC know that the driver is now in charge of link and
262 * filter settings. We must do this before we reset the NIC */
263 rc = efx_mcdi_drv_attach(efx, true, &already_attached);
264 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000265 netif_err(efx, probe, efx->net_dev,
266 "Unable to register driver with MCPU\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000267 goto fail2;
268 }
269 if (already_attached)
270 /* Not a fatal error */
Ben Hutchings62776d02010-06-23 11:30:07 +0000271 netif_err(efx, probe, efx->net_dev,
272 "Host already registered with MCPU\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000273
274 /* Now we can reset the NIC */
275 rc = siena_reset_hw(efx, RESET_TYPE_ALL);
276 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000277 netif_err(efx, probe, efx->net_dev, "failed to reset NIC\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000278 goto fail3;
279 }
280
281 siena_init_wol(efx);
282
283 /* Allocate memory for INT_KER */
284 rc = efx_nic_alloc_buffer(efx, &efx->irq_status, sizeof(efx_oword_t));
285 if (rc)
286 goto fail4;
287 BUG_ON(efx->irq_status.dma_addr & 0x0f);
288
Ben Hutchings62776d02010-06-23 11:30:07 +0000289 netif_dbg(efx, probe, efx->net_dev,
290 "INT_KER at %llx (virt %p phys %llx)\n",
291 (unsigned long long)efx->irq_status.dma_addr,
292 efx->irq_status.addr,
293 (unsigned long long)virt_to_phys(efx->irq_status.addr));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000294
295 /* Read in the non-volatile configuration */
296 rc = siena_probe_nvconfig(efx);
297 if (rc == -EINVAL) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000298 netif_err(efx, probe, efx->net_dev,
299 "NVRAM is invalid therefore using defaults\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000300 efx->phy_type = PHY_TYPE_NONE;
301 efx->mdio.prtad = MDIO_PRTAD_NONE;
302 } else if (rc) {
303 goto fail5;
304 }
305
306 return 0;
307
308fail5:
309 efx_nic_free_buffer(efx, &efx->irq_status);
310fail4:
311fail3:
312 efx_mcdi_drv_attach(efx, false, NULL);
313fail2:
314fail1:
315 kfree(efx->nic_data);
316 return rc;
317}
318
319/* This call performs hardware-specific global initialisation, such as
320 * defining the descriptor cache sizes and number of RSS channels.
321 * It does not set up any buffers, descriptor rings or event queues.
322 */
323static int siena_init_nic(struct efx_nic *efx)
324{
325 efx_oword_t temp;
326 int rc;
327
328 /* Recover from a failed assertion post-reset */
329 rc = efx_mcdi_handle_assertion(efx);
330 if (rc)
331 return rc;
332
333 /* Squash TX of packets of 16 bytes or less */
334 efx_reado(efx, &temp, FR_AZ_TX_RESERVED);
335 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1);
336 efx_writeo(efx, &temp, FR_AZ_TX_RESERVED);
337
338 /* Do not enable TX_NO_EOP_DISC_EN, since it limits packets to 16
339 * descriptors (which is bad).
340 */
341 efx_reado(efx, &temp, FR_AZ_TX_CFG);
342 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_NO_EOP_DISC_EN, 0);
343 EFX_SET_OWORD_FIELD(temp, FRF_CZ_TX_FILTER_EN_BIT, 1);
344 efx_writeo(efx, &temp, FR_AZ_TX_CFG);
345
346 efx_reado(efx, &temp, FR_AZ_RX_CFG);
347 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_DESC_PUSH_EN, 0);
348 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_INGR_EN, 1);
Ben Hutchings477e54e2010-06-25 07:05:56 +0000349 /* Enable hash insertion. This is broken for the 'Falcon' hash
350 * if IPv6 hashing is also enabled, so also select Toeplitz
351 * TCP/IPv4 and IPv4 hashes. */
352 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_INSRT_HDR, 1);
353 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_ALG, 1);
354 EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_IP_HASH, 1);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000355 efx_writeo(efx, &temp, FR_AZ_RX_CFG);
356
Ben Hutchings477e54e2010-06-25 07:05:56 +0000357 /* Set hash key for IPv4 */
358 memcpy(&temp, efx->rx_hash_key, sizeof(temp));
359 efx_writeo(efx, &temp, FR_BZ_RX_RSS_TKEY);
360
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000361 /* Enable IPv6 RSS */
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000362 BUILD_BUG_ON(sizeof(efx->rx_hash_key) <
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000363 2 * sizeof(temp) + FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8 ||
364 FRF_CZ_RX_RSS_IPV6_TKEY_HI_LBN != 0);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000365 memcpy(&temp, efx->rx_hash_key, sizeof(temp));
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000366 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG1);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000367 memcpy(&temp, efx->rx_hash_key + sizeof(temp), sizeof(temp));
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000368 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG2);
369 EFX_POPULATE_OWORD_2(temp, FRF_CZ_RX_RSS_IPV6_THASH_ENABLE, 1,
370 FRF_CZ_RX_RSS_IPV6_IP_THASH_ENABLE, 1);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +0000371 memcpy(&temp, efx->rx_hash_key + 2 * sizeof(temp),
Ben Hutchingsd614cfb2010-04-28 09:29:02 +0000372 FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8);
373 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG3);
374
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000375 /* Enable event logging */
376 rc = efx_mcdi_log_ctrl(efx, true, false, 0);
377 if (rc)
378 return rc;
379
380 /* Set destination of both TX and RX Flush events */
381 EFX_POPULATE_OWORD_1(temp, FRF_BZ_FLS_EVQ_ID, 0);
382 efx_writeo(efx, &temp, FR_BZ_DP_CTRL);
383
384 EFX_POPULATE_OWORD_1(temp, FRF_CZ_USREV_DIS, 1);
385 efx_writeo(efx, &temp, FR_CZ_USR_EV_CFG);
386
387 efx_nic_init_common(efx);
388 return 0;
389}
390
391static void siena_remove_nic(struct efx_nic *efx)
392{
393 efx_nic_free_buffer(efx, &efx->irq_status);
394
395 siena_reset_hw(efx, RESET_TYPE_ALL);
396
397 /* Relinquish the device back to the BMC */
398 if (efx_nic_has_mc(efx))
399 efx_mcdi_drv_attach(efx, false, NULL);
400
401 /* Tear down the private nic state */
David S. Miller8decf862011-09-22 03:23:13 -0400402 kfree(efx->nic_data);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000403 efx->nic_data = NULL;
404}
405
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100406#define STATS_GENERATION_INVALID ((__force __le64)(-1))
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000407
408static int siena_try_update_nic_stats(struct efx_nic *efx)
409{
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100410 __le64 *dma_stats;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000411 struct efx_mac_stats *mac_stats;
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100412 __le64 generation_start, generation_end;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000413
414 mac_stats = &efx->mac_stats;
Joe Perches43d620c2011-06-16 19:08:06 +0000415 dma_stats = efx->stats_buffer.addr;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000416
417 generation_end = dma_stats[MC_CMD_MAC_GENERATION_END];
418 if (generation_end == STATS_GENERATION_INVALID)
419 return 0;
420 rmb();
421
422#define MAC_STAT(M, D) \
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100423 mac_stats->M = le64_to_cpu(dma_stats[MC_CMD_MAC_ ## D])
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000424
425 MAC_STAT(tx_bytes, TX_BYTES);
426 MAC_STAT(tx_bad_bytes, TX_BAD_BYTES);
427 mac_stats->tx_good_bytes = (mac_stats->tx_bytes -
428 mac_stats->tx_bad_bytes);
429 MAC_STAT(tx_packets, TX_PKTS);
430 MAC_STAT(tx_bad, TX_BAD_FCS_PKTS);
431 MAC_STAT(tx_pause, TX_PAUSE_PKTS);
432 MAC_STAT(tx_control, TX_CONTROL_PKTS);
433 MAC_STAT(tx_unicast, TX_UNICAST_PKTS);
434 MAC_STAT(tx_multicast, TX_MULTICAST_PKTS);
435 MAC_STAT(tx_broadcast, TX_BROADCAST_PKTS);
436 MAC_STAT(tx_lt64, TX_LT64_PKTS);
437 MAC_STAT(tx_64, TX_64_PKTS);
438 MAC_STAT(tx_65_to_127, TX_65_TO_127_PKTS);
439 MAC_STAT(tx_128_to_255, TX_128_TO_255_PKTS);
440 MAC_STAT(tx_256_to_511, TX_256_TO_511_PKTS);
441 MAC_STAT(tx_512_to_1023, TX_512_TO_1023_PKTS);
442 MAC_STAT(tx_1024_to_15xx, TX_1024_TO_15XX_PKTS);
443 MAC_STAT(tx_15xx_to_jumbo, TX_15XX_TO_JUMBO_PKTS);
444 MAC_STAT(tx_gtjumbo, TX_GTJUMBO_PKTS);
445 mac_stats->tx_collision = 0;
446 MAC_STAT(tx_single_collision, TX_SINGLE_COLLISION_PKTS);
447 MAC_STAT(tx_multiple_collision, TX_MULTIPLE_COLLISION_PKTS);
448 MAC_STAT(tx_excessive_collision, TX_EXCESSIVE_COLLISION_PKTS);
449 MAC_STAT(tx_deferred, TX_DEFERRED_PKTS);
450 MAC_STAT(tx_late_collision, TX_LATE_COLLISION_PKTS);
451 mac_stats->tx_collision = (mac_stats->tx_single_collision +
452 mac_stats->tx_multiple_collision +
453 mac_stats->tx_excessive_collision +
454 mac_stats->tx_late_collision);
455 MAC_STAT(tx_excessive_deferred, TX_EXCESSIVE_DEFERRED_PKTS);
456 MAC_STAT(tx_non_tcpudp, TX_NON_TCPUDP_PKTS);
457 MAC_STAT(tx_mac_src_error, TX_MAC_SRC_ERR_PKTS);
458 MAC_STAT(tx_ip_src_error, TX_IP_SRC_ERR_PKTS);
459 MAC_STAT(rx_bytes, RX_BYTES);
460 MAC_STAT(rx_bad_bytes, RX_BAD_BYTES);
461 mac_stats->rx_good_bytes = (mac_stats->rx_bytes -
462 mac_stats->rx_bad_bytes);
463 MAC_STAT(rx_packets, RX_PKTS);
464 MAC_STAT(rx_good, RX_GOOD_PKTS);
Ben Hutchings1cdc2cf2010-09-10 06:41:00 +0000465 MAC_STAT(rx_bad, RX_BAD_FCS_PKTS);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000466 MAC_STAT(rx_pause, RX_PAUSE_PKTS);
467 MAC_STAT(rx_control, RX_CONTROL_PKTS);
468 MAC_STAT(rx_unicast, RX_UNICAST_PKTS);
469 MAC_STAT(rx_multicast, RX_MULTICAST_PKTS);
470 MAC_STAT(rx_broadcast, RX_BROADCAST_PKTS);
471 MAC_STAT(rx_lt64, RX_UNDERSIZE_PKTS);
472 MAC_STAT(rx_64, RX_64_PKTS);
473 MAC_STAT(rx_65_to_127, RX_65_TO_127_PKTS);
474 MAC_STAT(rx_128_to_255, RX_128_TO_255_PKTS);
475 MAC_STAT(rx_256_to_511, RX_256_TO_511_PKTS);
476 MAC_STAT(rx_512_to_1023, RX_512_TO_1023_PKTS);
477 MAC_STAT(rx_1024_to_15xx, RX_1024_TO_15XX_PKTS);
478 MAC_STAT(rx_15xx_to_jumbo, RX_15XX_TO_JUMBO_PKTS);
479 MAC_STAT(rx_gtjumbo, RX_GTJUMBO_PKTS);
480 mac_stats->rx_bad_lt64 = 0;
481 mac_stats->rx_bad_64_to_15xx = 0;
482 mac_stats->rx_bad_15xx_to_jumbo = 0;
483 MAC_STAT(rx_bad_gtjumbo, RX_JABBER_PKTS);
484 MAC_STAT(rx_overflow, RX_OVERFLOW_PKTS);
485 mac_stats->rx_missed = 0;
486 MAC_STAT(rx_false_carrier, RX_FALSE_CARRIER_PKTS);
487 MAC_STAT(rx_symbol_error, RX_SYMBOL_ERROR_PKTS);
488 MAC_STAT(rx_align_error, RX_ALIGN_ERROR_PKTS);
489 MAC_STAT(rx_length_error, RX_LENGTH_ERROR_PKTS);
490 MAC_STAT(rx_internal_error, RX_INTERNAL_ERROR_PKTS);
491 mac_stats->rx_good_lt64 = 0;
492
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100493 efx->n_rx_nodesc_drop_cnt =
494 le64_to_cpu(dma_stats[MC_CMD_MAC_RX_NODESC_DROPS]);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000495
496#undef MAC_STAT
497
498 rmb();
499 generation_start = dma_stats[MC_CMD_MAC_GENERATION_START];
500 if (generation_end != generation_start)
501 return -EAGAIN;
502
503 return 0;
504}
505
506static void siena_update_nic_stats(struct efx_nic *efx)
507{
Ben Hutchingsaabc5642010-04-28 09:00:35 +0000508 int retry;
509
510 /* If we're unlucky enough to read statistics wduring the DMA, wait
511 * up to 10ms for it to finish (typically takes <500us) */
512 for (retry = 0; retry < 100; ++retry) {
513 if (siena_try_update_nic_stats(efx) == 0)
514 return;
515 udelay(100);
516 }
517
518 /* Use the old values instead */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000519}
520
521static void siena_start_nic_stats(struct efx_nic *efx)
522{
Steve Hodgsona659b2a2011-06-22 12:11:33 +0100523 __le64 *dma_stats = efx->stats_buffer.addr;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000524
525 dma_stats[MC_CMD_MAC_GENERATION_END] = STATS_GENERATION_INVALID;
526
527 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr,
528 MC_CMD_MAC_NSTATS * sizeof(u64), 1, 0);
529}
530
531static void siena_stop_nic_stats(struct efx_nic *efx)
532{
533 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr, 0, 0, 0);
534}
535
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000536/**************************************************************************
537 *
538 * Wake on LAN
539 *
540 **************************************************************************
541 */
542
543static void siena_get_wol(struct efx_nic *efx, struct ethtool_wolinfo *wol)
544{
545 struct siena_nic_data *nic_data = efx->nic_data;
546
547 wol->supported = WAKE_MAGIC;
548 if (nic_data->wol_filter_id != -1)
549 wol->wolopts = WAKE_MAGIC;
550 else
551 wol->wolopts = 0;
552 memset(&wol->sopass, 0, sizeof(wol->sopass));
553}
554
555
556static int siena_set_wol(struct efx_nic *efx, u32 type)
557{
558 struct siena_nic_data *nic_data = efx->nic_data;
559 int rc;
560
561 if (type & ~WAKE_MAGIC)
562 return -EINVAL;
563
564 if (type & WAKE_MAGIC) {
565 if (nic_data->wol_filter_id != -1)
566 efx_mcdi_wol_filter_remove(efx,
567 nic_data->wol_filter_id);
Ben Hutchings02ebc262010-12-02 13:48:20 +0000568 rc = efx_mcdi_wol_filter_set_magic(efx, efx->net_dev->dev_addr,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000569 &nic_data->wol_filter_id);
570 if (rc)
571 goto fail;
572
573 pci_wake_from_d3(efx->pci_dev, true);
574 } else {
575 rc = efx_mcdi_wol_filter_reset(efx);
576 nic_data->wol_filter_id = -1;
577 pci_wake_from_d3(efx->pci_dev, false);
578 if (rc)
579 goto fail;
580 }
581
582 return 0;
583 fail:
Ben Hutchings62776d02010-06-23 11:30:07 +0000584 netif_err(efx, hw, efx->net_dev, "%s failed: type=%d rc=%d\n",
585 __func__, type, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000586 return rc;
587}
588
589
590static void siena_init_wol(struct efx_nic *efx)
591{
592 struct siena_nic_data *nic_data = efx->nic_data;
593 int rc;
594
595 rc = efx_mcdi_wol_filter_get_magic(efx, &nic_data->wol_filter_id);
596
597 if (rc != 0) {
598 /* If it failed, attempt to get into a synchronised
599 * state with MC by resetting any set WoL filters */
600 efx_mcdi_wol_filter_reset(efx);
601 nic_data->wol_filter_id = -1;
602 } else if (nic_data->wol_filter_id != -1) {
603 pci_wake_from_d3(efx->pci_dev, true);
604 }
605}
606
607
608/**************************************************************************
609 *
610 * Revision-dependent attributes used by efx.c and nic.c
611 *
612 **************************************************************************
613 */
614
stephen hemminger6c8c2512011-04-14 05:50:12 +0000615const struct efx_nic_type siena_a0_nic_type = {
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000616 .probe = siena_probe_nic,
617 .remove = siena_remove_nic,
618 .init = siena_init_nic,
619 .fini = efx_port_dummy_op_void,
620 .monitor = NULL,
Ben Hutchings0e2a9c72011-06-24 20:50:07 +0100621 .map_reset_reason = siena_map_reset_reason,
622 .map_reset_flags = siena_map_reset_flags,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000623 .reset = siena_reset_hw,
624 .probe_port = siena_probe_port,
625 .remove_port = siena_remove_port,
626 .prepare_flush = efx_port_dummy_op_void,
627 .update_stats = siena_update_nic_stats,
628 .start_stats = siena_start_nic_stats,
629 .stop_stats = siena_stop_nic_stats,
630 .set_id_led = efx_mcdi_set_id_led,
631 .push_irq_moderation = siena_push_irq_moderation,
632 .push_multicast_hash = siena_push_multicast_hash,
Ben Hutchings710b2082011-09-03 00:15:00 +0100633 .reconfigure_mac = efx_mcdi_mac_reconfigure,
634 .check_mac_fault = efx_mcdi_mac_check_fault,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000635 .reconfigure_port = efx_mcdi_phy_reconfigure,
636 .get_wol = siena_get_wol,
637 .set_wol = siena_set_wol,
638 .resume_wol = siena_init_wol,
639 .test_registers = siena_test_registers,
Ben Hutchings2e803402010-02-03 09:31:01 +0000640 .test_nvram = efx_mcdi_nvram_test_all,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000641
642 .revision = EFX_REV_SIENA_A0,
David S. Miller8decf862011-09-22 03:23:13 -0400643 .mem_map_size = (FR_CZ_MC_TREG_SMEM +
644 FR_CZ_MC_TREG_SMEM_STEP * FR_CZ_MC_TREG_SMEM_ROWS),
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000645 .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL,
646 .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL,
647 .buf_tbl_base = FR_BZ_BUF_FULL_TBL,
648 .evq_ptr_tbl_base = FR_BZ_EVQ_PTR_TBL,
649 .evq_rptr_tbl_base = FR_BZ_EVQ_RPTR,
650 .max_dma_mask = DMA_BIT_MASK(FSF_AZ_TX_KER_BUF_ADDR_WIDTH),
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000651 .rx_buffer_hash_size = 0x10,
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000652 .rx_buffer_padding = 0,
653 .max_interrupt_mode = EFX_INT_MODE_MSIX,
654 .phys_addr_channels = 32, /* Hardware limit is 64, but the legacy
655 * interrupt handler only supports 32
656 * channels */
657 .tx_dc_base = 0x88000,
658 .rx_dc_base = 0x68000,
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000659 .offload_features = (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Ben Hutchingsb4187e42010-09-20 08:43:42 +0000660 NETIF_F_RXHASH | NETIF_F_NTUPLE),
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000661};