sfc: Allocate SRAM between buffer table and descriptor caches at init time
[deliverable/linux.git] / drivers / net / ethernet / sfc / efx.c
CommitLineData
8ceee660
BH
1/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
0a6f40c6 4 * Copyright 2005-2011 Solarflare Communications Inc.
8ceee660
BH
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/module.h>
12#include <linux/pci.h>
13#include <linux/netdevice.h>
14#include <linux/etherdevice.h>
15#include <linux/delay.h>
16#include <linux/notifier.h>
17#include <linux/ip.h>
18#include <linux/tcp.h>
19#include <linux/in.h>
20#include <linux/crc32.h>
21#include <linux/ethtool.h>
aa6ef27e 22#include <linux/topology.h>
5a0e3ad6 23#include <linux/gfp.h>
64d8ad6d 24#include <linux/cpu_rmap.h>
8ceee660 25#include "net_driver.h"
8ceee660 26#include "efx.h"
744093c9 27#include "nic.h"
8ceee660 28
8880f4ec 29#include "mcdi.h"
fd371e32 30#include "workarounds.h"
8880f4ec 31
c459302d
BH
32/**************************************************************************
33 *
34 * Type name strings
35 *
36 **************************************************************************
37 */
38
39/* Loopback mode names (see LOOPBACK_MODE()) */
40const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
18e83e4c 41const char *const efx_loopback_mode_names[] = {
c459302d 42 [LOOPBACK_NONE] = "NONE",
e58f69f4 43 [LOOPBACK_DATA] = "DATAPATH",
c459302d
BH
44 [LOOPBACK_GMAC] = "GMAC",
45 [LOOPBACK_XGMII] = "XGMII",
46 [LOOPBACK_XGXS] = "XGXS",
9c636baf
BH
47 [LOOPBACK_XAUI] = "XAUI",
48 [LOOPBACK_GMII] = "GMII",
49 [LOOPBACK_SGMII] = "SGMII",
e58f69f4
BH
50 [LOOPBACK_XGBR] = "XGBR",
51 [LOOPBACK_XFI] = "XFI",
52 [LOOPBACK_XAUI_FAR] = "XAUI_FAR",
53 [LOOPBACK_GMII_FAR] = "GMII_FAR",
54 [LOOPBACK_SGMII_FAR] = "SGMII_FAR",
55 [LOOPBACK_XFI_FAR] = "XFI_FAR",
c459302d
BH
56 [LOOPBACK_GPHY] = "GPHY",
57 [LOOPBACK_PHYXS] = "PHYXS",
9c636baf
BH
58 [LOOPBACK_PCS] = "PCS",
59 [LOOPBACK_PMAPMD] = "PMA/PMD",
e58f69f4
BH
60 [LOOPBACK_XPORT] = "XPORT",
61 [LOOPBACK_XGMII_WS] = "XGMII_WS",
9c636baf 62 [LOOPBACK_XAUI_WS] = "XAUI_WS",
e58f69f4
BH
63 [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR",
64 [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
9c636baf 65 [LOOPBACK_GMII_WS] = "GMII_WS",
e58f69f4
BH
66 [LOOPBACK_XFI_WS] = "XFI_WS",
67 [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR",
9c636baf 68 [LOOPBACK_PHYXS_WS] = "PHYXS_WS",
c459302d
BH
69};
70
c459302d 71const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
18e83e4c 72const char *const efx_reset_type_names[] = {
c459302d
BH
73 [RESET_TYPE_INVISIBLE] = "INVISIBLE",
74 [RESET_TYPE_ALL] = "ALL",
75 [RESET_TYPE_WORLD] = "WORLD",
76 [RESET_TYPE_DISABLE] = "DISABLE",
77 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
78 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
79 [RESET_TYPE_RX_RECOVERY] = "RX_RECOVERY",
80 [RESET_TYPE_RX_DESC_FETCH] = "RX_DESC_FETCH",
81 [RESET_TYPE_TX_DESC_FETCH] = "TX_DESC_FETCH",
82 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
8880f4ec 83 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
c459302d
BH
84};
85
8ceee660
BH
86#define EFX_MAX_MTU (9 * 1024)
87
1ab00629
SH
88/* Reset workqueue. If any NIC has a hardware failure then a reset will be
89 * queued onto this work queue. This is not a per-nic work queue, because
90 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
91 */
92static struct workqueue_struct *reset_workqueue;
93
8ceee660
BH
94/**************************************************************************
95 *
96 * Configurable values
97 *
98 *************************************************************************/
99
8ceee660
BH
100/*
101 * Use separate channels for TX and RX events
102 *
28b581ab
NT
103 * Set this to 1 to use separate channels for TX and RX. It allows us
104 * to control interrupt affinity separately for TX and RX.
8ceee660 105 *
28b581ab 106 * This is only used in MSI-X interrupt mode
8ceee660 107 */
28b581ab 108static unsigned int separate_tx_channels;
8313aca3 109module_param(separate_tx_channels, uint, 0444);
28b581ab
NT
110MODULE_PARM_DESC(separate_tx_channels,
111 "Use separate channels for TX and RX");
8ceee660
BH
112
113/* This is the weight assigned to each of the (per-channel) virtual
114 * NAPI devices.
115 */
116static int napi_weight = 64;
117
118/* This is the time (in jiffies) between invocations of the hardware
e254c274
BH
119 * monitor. On Falcon-based NICs, this will:
120 * - Check the on-board hardware monitor;
121 * - Poll the link state and reconfigure the hardware as necessary.
8ceee660 122 */
d215697f 123static unsigned int efx_monitor_interval = 1 * HZ;
8ceee660 124
8ceee660
BH
125/* Initial interrupt moderation settings. They can be modified after
126 * module load with ethtool.
127 *
128 * The default for RX should strike a balance between increasing the
129 * round-trip latency and reducing overhead.
130 */
131static unsigned int rx_irq_mod_usec = 60;
132
133/* Initial interrupt moderation settings. They can be modified after
134 * module load with ethtool.
135 *
136 * This default is chosen to ensure that a 10G link does not go idle
137 * while a TX queue is stopped after it has become full. A queue is
138 * restarted when it drops below half full. The time this takes (assuming
139 * worst case 3 descriptors per packet and 1024 descriptors) is
140 * 512 / 3 * 1.2 = 205 usec.
141 */
142static unsigned int tx_irq_mod_usec = 150;
143
144/* This is the first interrupt mode to try out of:
145 * 0 => MSI-X
146 * 1 => MSI
147 * 2 => legacy
148 */
149static unsigned int interrupt_mode;
150
151/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
152 * i.e. the number of CPUs among which we may distribute simultaneous
153 * interrupt handling.
154 *
155 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
cdb08f8f 156 * The default (0) means to assign an interrupt to each core.
8ceee660
BH
157 */
158static unsigned int rss_cpus;
159module_param(rss_cpus, uint, 0444);
160MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
161
84ae48fe
BH
162static int phy_flash_cfg;
163module_param(phy_flash_cfg, int, 0644);
164MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
165
6fb70fd1
BH
166static unsigned irq_adapt_low_thresh = 10000;
167module_param(irq_adapt_low_thresh, uint, 0644);
168MODULE_PARM_DESC(irq_adapt_low_thresh,
169 "Threshold score for reducing IRQ moderation");
170
171static unsigned irq_adapt_high_thresh = 20000;
172module_param(irq_adapt_high_thresh, uint, 0644);
173MODULE_PARM_DESC(irq_adapt_high_thresh,
174 "Threshold score for increasing IRQ moderation");
175
62776d03
BH
176static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
177 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
178 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
179 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
180module_param(debug, uint, 0);
181MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
182
8ceee660
BH
183/**************************************************************************
184 *
185 * Utility functions and prototypes
186 *
187 *************************************************************************/
4642610c 188
7f967c01
BH
189static void efx_start_interrupts(struct efx_nic *efx, bool may_keep_eventq);
190static void efx_stop_interrupts(struct efx_nic *efx, bool may_keep_eventq);
191static void efx_remove_channel(struct efx_channel *channel);
4642610c 192static void efx_remove_channels(struct efx_nic *efx);
7f967c01 193static const struct efx_channel_type efx_default_channel_type;
8ceee660 194static void efx_remove_port(struct efx_nic *efx);
7f967c01 195static void efx_init_napi_channel(struct efx_channel *channel);
8ceee660 196static void efx_fini_napi(struct efx_nic *efx);
e8f14992 197static void efx_fini_napi_channel(struct efx_channel *channel);
4642610c
BH
198static void efx_fini_struct(struct efx_nic *efx);
199static void efx_start_all(struct efx_nic *efx);
200static void efx_stop_all(struct efx_nic *efx);
8ceee660
BH
201
202#define EFX_ASSERT_RESET_SERIALISED(efx) \
203 do { \
332c1ce9
BH
204 if ((efx->state == STATE_RUNNING) || \
205 (efx->state == STATE_DISABLED)) \
8ceee660
BH
206 ASSERT_RTNL(); \
207 } while (0)
208
209/**************************************************************************
210 *
211 * Event queue processing
212 *
213 *************************************************************************/
214
215/* Process channel's event queue
216 *
217 * This function is responsible for processing the event queue of a
218 * single channel. The caller must guarantee that this function will
219 * never be concurrently called more than once on the same channel,
220 * though different channels may be being processed concurrently.
221 */
fa236e18 222static int efx_process_channel(struct efx_channel *channel, int budget)
8ceee660 223{
fa236e18 224 int spent;
8ceee660 225
9f2cb71c 226 if (unlikely(!channel->enabled))
42cbe2d7 227 return 0;
8ceee660 228
fa236e18 229 spent = efx_nic_process_eventq(channel, budget);
d9ab7007
BH
230 if (spent && efx_channel_has_rx_queue(channel)) {
231 struct efx_rx_queue *rx_queue =
232 efx_channel_get_rx_queue(channel);
233
234 /* Deliver last RX packet. */
235 if (channel->rx_pkt) {
236 __efx_rx_packet(channel, channel->rx_pkt);
237 channel->rx_pkt = NULL;
238 }
9f2cb71c
BH
239 if (rx_queue->enabled) {
240 efx_rx_strategy(channel);
241 efx_fast_push_rx_descriptors(rx_queue);
242 }
8ceee660
BH
243 }
244
fa236e18 245 return spent;
8ceee660
BH
246}
247
248/* Mark channel as finished processing
249 *
250 * Note that since we will not receive further interrupts for this
251 * channel before we finish processing and call the eventq_read_ack()
252 * method, there is no need to use the interrupt hold-off timers.
253 */
254static inline void efx_channel_processed(struct efx_channel *channel)
255{
5b9e207c
BH
256 /* The interrupt handler for this channel may set work_pending
257 * as soon as we acknowledge the events we've seen. Make sure
258 * it's cleared before then. */
dc8cfa55 259 channel->work_pending = false;
5b9e207c
BH
260 smp_wmb();
261
152b6a62 262 efx_nic_eventq_read_ack(channel);
8ceee660
BH
263}
264
265/* NAPI poll handler
266 *
267 * NAPI guarantees serialisation of polls of the same device, which
268 * provides the guarantee required by efx_process_channel().
269 */
270static int efx_poll(struct napi_struct *napi, int budget)
271{
272 struct efx_channel *channel =
273 container_of(napi, struct efx_channel, napi_str);
62776d03 274 struct efx_nic *efx = channel->efx;
fa236e18 275 int spent;
8ceee660 276
62776d03
BH
277 netif_vdbg(efx, intr, efx->net_dev,
278 "channel %d NAPI poll executing on CPU %d\n",
279 channel->channel, raw_smp_processor_id());
8ceee660 280
fa236e18 281 spent = efx_process_channel(channel, budget);
8ceee660 282
fa236e18 283 if (spent < budget) {
9d9a6973 284 if (efx_channel_has_rx_queue(channel) &&
6fb70fd1
BH
285 efx->irq_rx_adaptive &&
286 unlikely(++channel->irq_count == 1000)) {
6fb70fd1
BH
287 if (unlikely(channel->irq_mod_score <
288 irq_adapt_low_thresh)) {
0d86ebd8
BH
289 if (channel->irq_moderation > 1) {
290 channel->irq_moderation -= 1;
ef2b90ee 291 efx->type->push_irq_moderation(channel);
0d86ebd8 292 }
6fb70fd1
BH
293 } else if (unlikely(channel->irq_mod_score >
294 irq_adapt_high_thresh)) {
0d86ebd8
BH
295 if (channel->irq_moderation <
296 efx->irq_rx_moderation) {
297 channel->irq_moderation += 1;
ef2b90ee 298 efx->type->push_irq_moderation(channel);
0d86ebd8 299 }
6fb70fd1 300 }
6fb70fd1
BH
301 channel->irq_count = 0;
302 channel->irq_mod_score = 0;
303 }
304
64d8ad6d
BH
305 efx_filter_rfs_expire(channel);
306
8ceee660 307 /* There is no race here; although napi_disable() will
288379f0 308 * only wait for napi_complete(), this isn't a problem
8ceee660
BH
309 * since efx_channel_processed() will have no effect if
310 * interrupts have already been disabled.
311 */
288379f0 312 napi_complete(napi);
8ceee660
BH
313 efx_channel_processed(channel);
314 }
315
fa236e18 316 return spent;
8ceee660
BH
317}
318
319/* Process the eventq of the specified channel immediately on this CPU
320 *
321 * Disable hardware generated interrupts, wait for any existing
322 * processing to finish, then directly poll (and ack ) the eventq.
323 * Finally reenable NAPI and interrupts.
324 *
d4fabcc8
BH
325 * This is for use only during a loopback self-test. It must not
326 * deliver any packets up the stack as this can result in deadlock.
8ceee660
BH
327 */
328void efx_process_channel_now(struct efx_channel *channel)
329{
330 struct efx_nic *efx = channel->efx;
331
8313aca3 332 BUG_ON(channel->channel >= efx->n_channels);
8ceee660 333 BUG_ON(!channel->enabled);
d4fabcc8 334 BUG_ON(!efx->loopback_selftest);
8ceee660
BH
335
336 /* Disable interrupts and wait for ISRs to complete */
152b6a62 337 efx_nic_disable_interrupts(efx);
94dec6a2 338 if (efx->legacy_irq) {
8ceee660 339 synchronize_irq(efx->legacy_irq);
94dec6a2
BH
340 efx->legacy_irq_enabled = false;
341 }
64ee3120 342 if (channel->irq)
8ceee660
BH
343 synchronize_irq(channel->irq);
344
345 /* Wait for any NAPI processing to complete */
346 napi_disable(&channel->napi_str);
347
348 /* Poll the channel */
ecc910f5 349 efx_process_channel(channel, channel->eventq_mask + 1);
8ceee660
BH
350
351 /* Ack the eventq. This may cause an interrupt to be generated
352 * when they are reenabled */
353 efx_channel_processed(channel);
354
355 napi_enable(&channel->napi_str);
94dec6a2
BH
356 if (efx->legacy_irq)
357 efx->legacy_irq_enabled = true;
152b6a62 358 efx_nic_enable_interrupts(efx);
8ceee660
BH
359}
360
361/* Create event queue
362 * Event queue memory allocations are done only once. If the channel
363 * is reset, the memory buffer will be reused; this guards against
364 * errors during channel reset and also simplifies interrupt handling.
365 */
366static int efx_probe_eventq(struct efx_channel *channel)
367{
ecc910f5
SH
368 struct efx_nic *efx = channel->efx;
369 unsigned long entries;
370
86ee5302 371 netif_dbg(efx, probe, efx->net_dev,
62776d03 372 "chan %d create event queue\n", channel->channel);
8ceee660 373
ecc910f5
SH
374 /* Build an event queue with room for one event per tx and rx buffer,
375 * plus some extra for link state events and MCDI completions. */
376 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
377 EFX_BUG_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
378 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
379
152b6a62 380 return efx_nic_probe_eventq(channel);
8ceee660
BH
381}
382
383/* Prepare channel's event queue */
bc3c90a2 384static void efx_init_eventq(struct efx_channel *channel)
8ceee660 385{
62776d03
BH
386 netif_dbg(channel->efx, drv, channel->efx->net_dev,
387 "chan %d init event queue\n", channel->channel);
8ceee660
BH
388
389 channel->eventq_read_ptr = 0;
390
152b6a62 391 efx_nic_init_eventq(channel);
8ceee660
BH
392}
393
9f2cb71c
BH
394/* Enable event queue processing and NAPI */
395static void efx_start_eventq(struct efx_channel *channel)
396{
397 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
398 "chan %d start event queue\n", channel->channel);
399
400 /* The interrupt handler for this channel may set work_pending
401 * as soon as we enable it. Make sure it's cleared before
402 * then. Similarly, make sure it sees the enabled flag set.
403 */
404 channel->work_pending = false;
405 channel->enabled = true;
406 smp_wmb();
407
408 napi_enable(&channel->napi_str);
409 efx_nic_eventq_read_ack(channel);
410}
411
412/* Disable event queue processing and NAPI */
413static void efx_stop_eventq(struct efx_channel *channel)
414{
415 if (!channel->enabled)
416 return;
417
418 napi_disable(&channel->napi_str);
419 channel->enabled = false;
420}
421
8ceee660
BH
422static void efx_fini_eventq(struct efx_channel *channel)
423{
62776d03
BH
424 netif_dbg(channel->efx, drv, channel->efx->net_dev,
425 "chan %d fini event queue\n", channel->channel);
8ceee660 426
152b6a62 427 efx_nic_fini_eventq(channel);
8ceee660
BH
428}
429
430static void efx_remove_eventq(struct efx_channel *channel)
431{
62776d03
BH
432 netif_dbg(channel->efx, drv, channel->efx->net_dev,
433 "chan %d remove event queue\n", channel->channel);
8ceee660 434
152b6a62 435 efx_nic_remove_eventq(channel);
8ceee660
BH
436}
437
438/**************************************************************************
439 *
440 * Channel handling
441 *
442 *************************************************************************/
443
7f967c01 444/* Allocate and initialise a channel structure. */
4642610c
BH
445static struct efx_channel *
446efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
447{
448 struct efx_channel *channel;
449 struct efx_rx_queue *rx_queue;
450 struct efx_tx_queue *tx_queue;
451 int j;
452
7f967c01
BH
453 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
454 if (!channel)
455 return NULL;
4642610c 456
7f967c01
BH
457 channel->efx = efx;
458 channel->channel = i;
459 channel->type = &efx_default_channel_type;
4642610c 460
7f967c01
BH
461 for (j = 0; j < EFX_TXQ_TYPES; j++) {
462 tx_queue = &channel->tx_queue[j];
463 tx_queue->efx = efx;
464 tx_queue->queue = i * EFX_TXQ_TYPES + j;
465 tx_queue->channel = channel;
466 }
4642610c 467
7f967c01
BH
468 rx_queue = &channel->rx_queue;
469 rx_queue->efx = efx;
470 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
471 (unsigned long)rx_queue);
4642610c 472
7f967c01
BH
473 return channel;
474}
475
476/* Allocate and initialise a channel structure, copying parameters
477 * (but not resources) from an old channel structure.
478 */
479static struct efx_channel *
480efx_copy_channel(const struct efx_channel *old_channel)
481{
482 struct efx_channel *channel;
483 struct efx_rx_queue *rx_queue;
484 struct efx_tx_queue *tx_queue;
485 int j;
4642610c 486
7f967c01
BH
487 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
488 if (!channel)
489 return NULL;
490
491 *channel = *old_channel;
492
493 channel->napi_dev = NULL;
494 memset(&channel->eventq, 0, sizeof(channel->eventq));
4642610c 495
7f967c01
BH
496 for (j = 0; j < EFX_TXQ_TYPES; j++) {
497 tx_queue = &channel->tx_queue[j];
498 if (tx_queue->channel)
4642610c 499 tx_queue->channel = channel;
7f967c01
BH
500 tx_queue->buffer = NULL;
501 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
4642610c
BH
502 }
503
4642610c 504 rx_queue = &channel->rx_queue;
7f967c01
BH
505 rx_queue->buffer = NULL;
506 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
4642610c
BH
507 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
508 (unsigned long)rx_queue);
509
510 return channel;
511}
512
8ceee660
BH
513static int efx_probe_channel(struct efx_channel *channel)
514{
515 struct efx_tx_queue *tx_queue;
516 struct efx_rx_queue *rx_queue;
517 int rc;
518
62776d03
BH
519 netif_dbg(channel->efx, probe, channel->efx->net_dev,
520 "creating channel %d\n", channel->channel);
8ceee660 521
7f967c01
BH
522 rc = channel->type->pre_probe(channel);
523 if (rc)
524 goto fail;
525
8ceee660
BH
526 rc = efx_probe_eventq(channel);
527 if (rc)
7f967c01 528 goto fail;
8ceee660
BH
529
530 efx_for_each_channel_tx_queue(tx_queue, channel) {
531 rc = efx_probe_tx_queue(tx_queue);
532 if (rc)
7f967c01 533 goto fail;
8ceee660
BH
534 }
535
536 efx_for_each_channel_rx_queue(rx_queue, channel) {
537 rc = efx_probe_rx_queue(rx_queue);
538 if (rc)
7f967c01 539 goto fail;
8ceee660
BH
540 }
541
542 channel->n_rx_frm_trunc = 0;
543
544 return 0;
545
7f967c01
BH
546fail:
547 efx_remove_channel(channel);
8ceee660
BH
548 return rc;
549}
550
7f967c01
BH
551static void
552efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
553{
554 struct efx_nic *efx = channel->efx;
555 const char *type;
556 int number;
557
558 number = channel->channel;
559 if (efx->tx_channel_offset == 0) {
560 type = "";
561 } else if (channel->channel < efx->tx_channel_offset) {
562 type = "-rx";
563 } else {
564 type = "-tx";
565 number -= efx->tx_channel_offset;
566 }
567 snprintf(buf, len, "%s%s-%d", efx->name, type, number);
568}
8ceee660 569
56536e9c
BH
570static void efx_set_channel_names(struct efx_nic *efx)
571{
572 struct efx_channel *channel;
56536e9c 573
7f967c01
BH
574 efx_for_each_channel(channel, efx)
575 channel->type->get_name(channel,
576 efx->channel_name[channel->channel],
577 sizeof(efx->channel_name[0]));
56536e9c
BH
578}
579
4642610c
BH
580static int efx_probe_channels(struct efx_nic *efx)
581{
582 struct efx_channel *channel;
583 int rc;
584
585 /* Restart special buffer allocation */
586 efx->next_buffer_table = 0;
587
588 efx_for_each_channel(channel, efx) {
589 rc = efx_probe_channel(channel);
590 if (rc) {
591 netif_err(efx, probe, efx->net_dev,
592 "failed to create channel %d\n",
593 channel->channel);
594 goto fail;
595 }
596 }
597 efx_set_channel_names(efx);
598
599 return 0;
600
601fail:
602 efx_remove_channels(efx);
603 return rc;
604}
605
8ceee660
BH
606/* Channels are shutdown and reinitialised whilst the NIC is running
607 * to propagate configuration changes (mtu, checksum offload), or
608 * to clear hardware error conditions
609 */
9f2cb71c 610static void efx_start_datapath(struct efx_nic *efx)
8ceee660
BH
611{
612 struct efx_tx_queue *tx_queue;
613 struct efx_rx_queue *rx_queue;
614 struct efx_channel *channel;
8ceee660 615
f7f13b0b
BH
616 /* Calculate the rx buffer allocation parameters required to
617 * support the current MTU, including padding for header
618 * alignment and overruns.
619 */
620 efx->rx_buffer_len = (max(EFX_PAGE_IP_ALIGN, NET_IP_ALIGN) +
621 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
39c9cf07 622 efx->type->rx_buffer_hash_size +
f7f13b0b 623 efx->type->rx_buffer_padding);
62b330ba
SH
624 efx->rx_buffer_order = get_order(efx->rx_buffer_len +
625 sizeof(struct efx_rx_page_state));
8ceee660
BH
626
627 /* Initialise the channels */
628 efx_for_each_channel(channel, efx) {
bc3c90a2
BH
629 efx_for_each_channel_tx_queue(tx_queue, channel)
630 efx_init_tx_queue(tx_queue);
8ceee660
BH
631
632 /* The rx buffer allocation strategy is MTU dependent */
633 efx_rx_strategy(channel);
634
9f2cb71c 635 efx_for_each_channel_rx_queue(rx_queue, channel) {
bc3c90a2 636 efx_init_rx_queue(rx_queue);
9f2cb71c
BH
637 efx_nic_generate_fill_event(rx_queue);
638 }
8ceee660
BH
639
640 WARN_ON(channel->rx_pkt != NULL);
641 efx_rx_strategy(channel);
642 }
8ceee660 643
9f2cb71c
BH
644 if (netif_device_present(efx->net_dev))
645 netif_tx_wake_all_queues(efx->net_dev);
8ceee660
BH
646}
647
9f2cb71c 648static void efx_stop_datapath(struct efx_nic *efx)
8ceee660
BH
649{
650 struct efx_channel *channel;
651 struct efx_tx_queue *tx_queue;
652 struct efx_rx_queue *rx_queue;
6bc5d3a9 653 int rc;
8ceee660
BH
654
655 EFX_ASSERT_RESET_SERIALISED(efx);
656 BUG_ON(efx->port_enabled);
657
152b6a62 658 rc = efx_nic_flush_queues(efx);
fd371e32
SH
659 if (rc && EFX_WORKAROUND_7803(efx)) {
660 /* Schedule a reset to recover from the flush failure. The
661 * descriptor caches reference memory we're about to free,
662 * but falcon_reconfigure_mac_wrapper() won't reconnect
663 * the MACs because of the pending reset. */
62776d03
BH
664 netif_err(efx, drv, efx->net_dev,
665 "Resetting to recover from flush failure\n");
fd371e32
SH
666 efx_schedule_reset(efx, RESET_TYPE_ALL);
667 } else if (rc) {
62776d03 668 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
fd371e32 669 } else {
62776d03
BH
670 netif_dbg(efx, drv, efx->net_dev,
671 "successfully flushed all queues\n");
fd371e32 672 }
6bc5d3a9 673
8ceee660 674 efx_for_each_channel(channel, efx) {
9f2cb71c
BH
675 /* RX packet processing is pipelined, so wait for the
676 * NAPI handler to complete. At least event queue 0
677 * might be kept active by non-data events, so don't
678 * use napi_synchronize() but actually disable NAPI
679 * temporarily.
680 */
681 if (efx_channel_has_rx_queue(channel)) {
682 efx_stop_eventq(channel);
683 efx_start_eventq(channel);
684 }
8ceee660
BH
685
686 efx_for_each_channel_rx_queue(rx_queue, channel)
687 efx_fini_rx_queue(rx_queue);
94b274bf 688 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
8ceee660 689 efx_fini_tx_queue(tx_queue);
8ceee660
BH
690 }
691}
692
693static void efx_remove_channel(struct efx_channel *channel)
694{
695 struct efx_tx_queue *tx_queue;
696 struct efx_rx_queue *rx_queue;
697
62776d03
BH
698 netif_dbg(channel->efx, drv, channel->efx->net_dev,
699 "destroy chan %d\n", channel->channel);
8ceee660
BH
700
701 efx_for_each_channel_rx_queue(rx_queue, channel)
702 efx_remove_rx_queue(rx_queue);
94b274bf 703 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
8ceee660
BH
704 efx_remove_tx_queue(tx_queue);
705 efx_remove_eventq(channel);
8ceee660
BH
706}
707
4642610c
BH
708static void efx_remove_channels(struct efx_nic *efx)
709{
710 struct efx_channel *channel;
711
712 efx_for_each_channel(channel, efx)
713 efx_remove_channel(channel);
714}
715
716int
717efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
718{
719 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
720 u32 old_rxq_entries, old_txq_entries;
7f967c01
BH
721 unsigned i, next_buffer_table = 0;
722 int rc = 0;
723
724 /* Not all channels should be reallocated. We must avoid
725 * reallocating their buffer table entries.
726 */
727 efx_for_each_channel(channel, efx) {
728 struct efx_rx_queue *rx_queue;
729 struct efx_tx_queue *tx_queue;
730
731 if (channel->type->copy)
732 continue;
733 next_buffer_table = max(next_buffer_table,
734 channel->eventq.index +
735 channel->eventq.entries);
736 efx_for_each_channel_rx_queue(rx_queue, channel)
737 next_buffer_table = max(next_buffer_table,
738 rx_queue->rxd.index +
739 rx_queue->rxd.entries);
740 efx_for_each_channel_tx_queue(tx_queue, channel)
741 next_buffer_table = max(next_buffer_table,
742 tx_queue->txd.index +
743 tx_queue->txd.entries);
744 }
4642610c
BH
745
746 efx_stop_all(efx);
7f967c01 747 efx_stop_interrupts(efx, true);
4642610c 748
7f967c01 749 /* Clone channels (where possible) */
4642610c
BH
750 memset(other_channel, 0, sizeof(other_channel));
751 for (i = 0; i < efx->n_channels; i++) {
7f967c01
BH
752 channel = efx->channel[i];
753 if (channel->type->copy)
754 channel = channel->type->copy(channel);
4642610c
BH
755 if (!channel) {
756 rc = -ENOMEM;
757 goto out;
758 }
759 other_channel[i] = channel;
760 }
761
762 /* Swap entry counts and channel pointers */
763 old_rxq_entries = efx->rxq_entries;
764 old_txq_entries = efx->txq_entries;
765 efx->rxq_entries = rxq_entries;
766 efx->txq_entries = txq_entries;
767 for (i = 0; i < efx->n_channels; i++) {
768 channel = efx->channel[i];
769 efx->channel[i] = other_channel[i];
770 other_channel[i] = channel;
771 }
772
7f967c01
BH
773 /* Restart buffer table allocation */
774 efx->next_buffer_table = next_buffer_table;
e8f14992 775
e8f14992 776 for (i = 0; i < efx->n_channels; i++) {
7f967c01
BH
777 channel = efx->channel[i];
778 if (!channel->type->copy)
779 continue;
780 rc = efx_probe_channel(channel);
781 if (rc)
782 goto rollback;
783 efx_init_napi_channel(efx->channel[i]);
e8f14992 784 }
7f967c01 785
4642610c 786out:
7f967c01
BH
787 /* Destroy unused channel structures */
788 for (i = 0; i < efx->n_channels; i++) {
789 channel = other_channel[i];
790 if (channel && channel->type->copy) {
791 efx_fini_napi_channel(channel);
792 efx_remove_channel(channel);
793 kfree(channel);
794 }
795 }
4642610c 796
7f967c01 797 efx_start_interrupts(efx, true);
4642610c
BH
798 efx_start_all(efx);
799 return rc;
800
801rollback:
802 /* Swap back */
803 efx->rxq_entries = old_rxq_entries;
804 efx->txq_entries = old_txq_entries;
805 for (i = 0; i < efx->n_channels; i++) {
806 channel = efx->channel[i];
807 efx->channel[i] = other_channel[i];
808 other_channel[i] = channel;
809 }
810 goto out;
811}
812
90d683af 813void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
8ceee660 814{
90d683af 815 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
8ceee660
BH
816}
817
7f967c01
BH
818static const struct efx_channel_type efx_default_channel_type = {
819 .pre_probe = efx_channel_dummy_op_int,
820 .get_name = efx_get_channel_name,
821 .copy = efx_copy_channel,
822 .keep_eventq = false,
823};
824
825int efx_channel_dummy_op_int(struct efx_channel *channel)
826{
827 return 0;
828}
829
8ceee660
BH
830/**************************************************************************
831 *
832 * Port handling
833 *
834 **************************************************************************/
835
836/* This ensures that the kernel is kept informed (via
837 * netif_carrier_on/off) of the link status, and also maintains the
838 * link status's stop on the port's TX queue.
839 */
fdaa9aed 840void efx_link_status_changed(struct efx_nic *efx)
8ceee660 841{
eb50c0d6
BH
842 struct efx_link_state *link_state = &efx->link_state;
843
8ceee660
BH
844 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
845 * that no events are triggered between unregister_netdev() and the
846 * driver unloading. A more general condition is that NETDEV_CHANGE
847 * can only be generated between NETDEV_UP and NETDEV_DOWN */
848 if (!netif_running(efx->net_dev))
849 return;
850
eb50c0d6 851 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
8ceee660
BH
852 efx->n_link_state_changes++;
853
eb50c0d6 854 if (link_state->up)
8ceee660
BH
855 netif_carrier_on(efx->net_dev);
856 else
857 netif_carrier_off(efx->net_dev);
858 }
859
860 /* Status message for kernel log */
2aa9ef11 861 if (link_state->up)
62776d03
BH
862 netif_info(efx, link, efx->net_dev,
863 "link up at %uMbps %s-duplex (MTU %d)%s\n",
864 link_state->speed, link_state->fd ? "full" : "half",
865 efx->net_dev->mtu,
866 (efx->promiscuous ? " [PROMISC]" : ""));
2aa9ef11 867 else
62776d03 868 netif_info(efx, link, efx->net_dev, "link down\n");
8ceee660
BH
869}
870
d3245b28
BH
871void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
872{
873 efx->link_advertising = advertising;
874 if (advertising) {
875 if (advertising & ADVERTISED_Pause)
876 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
877 else
878 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
879 if (advertising & ADVERTISED_Asym_Pause)
880 efx->wanted_fc ^= EFX_FC_TX;
881 }
882}
883
b5626946 884void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
d3245b28
BH
885{
886 efx->wanted_fc = wanted_fc;
887 if (efx->link_advertising) {
888 if (wanted_fc & EFX_FC_RX)
889 efx->link_advertising |= (ADVERTISED_Pause |
890 ADVERTISED_Asym_Pause);
891 else
892 efx->link_advertising &= ~(ADVERTISED_Pause |
893 ADVERTISED_Asym_Pause);
894 if (wanted_fc & EFX_FC_TX)
895 efx->link_advertising ^= ADVERTISED_Asym_Pause;
896 }
897}
898
115122af
BH
899static void efx_fini_port(struct efx_nic *efx);
900
d3245b28
BH
901/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
902 * the MAC appropriately. All other PHY configuration changes are pushed
903 * through phy_op->set_settings(), and pushed asynchronously to the MAC
904 * through efx_monitor().
905 *
906 * Callers must hold the mac_lock
907 */
908int __efx_reconfigure_port(struct efx_nic *efx)
8ceee660 909{
d3245b28
BH
910 enum efx_phy_mode phy_mode;
911 int rc;
8ceee660 912
d3245b28 913 WARN_ON(!mutex_is_locked(&efx->mac_lock));
8ceee660 914
0fca8c97 915 /* Serialise the promiscuous flag with efx_set_rx_mode. */
73ba7b68
BH
916 netif_addr_lock_bh(efx->net_dev);
917 netif_addr_unlock_bh(efx->net_dev);
a816f75a 918
d3245b28
BH
919 /* Disable PHY transmit in mac level loopbacks */
920 phy_mode = efx->phy_mode;
177dfcd8
BH
921 if (LOOPBACK_INTERNAL(efx))
922 efx->phy_mode |= PHY_MODE_TX_DISABLED;
923 else
924 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
177dfcd8 925
d3245b28 926 rc = efx->type->reconfigure_port(efx);
8ceee660 927
d3245b28
BH
928 if (rc)
929 efx->phy_mode = phy_mode;
177dfcd8 930
d3245b28 931 return rc;
8ceee660
BH
932}
933
934/* Reinitialise the MAC to pick up new PHY settings, even if the port is
935 * disabled. */
d3245b28 936int efx_reconfigure_port(struct efx_nic *efx)
8ceee660 937{
d3245b28
BH
938 int rc;
939
8ceee660
BH
940 EFX_ASSERT_RESET_SERIALISED(efx);
941
942 mutex_lock(&efx->mac_lock);
d3245b28 943 rc = __efx_reconfigure_port(efx);
8ceee660 944 mutex_unlock(&efx->mac_lock);
d3245b28
BH
945
946 return rc;
8ceee660
BH
947}
948
8be4f3e6
BH
949/* Asynchronous work item for changing MAC promiscuity and multicast
950 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
951 * MAC directly. */
766ca0fa
BH
952static void efx_mac_work(struct work_struct *data)
953{
954 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
955
956 mutex_lock(&efx->mac_lock);
30b81cda 957 if (efx->port_enabled)
710b208d 958 efx->type->reconfigure_mac(efx);
766ca0fa
BH
959 mutex_unlock(&efx->mac_lock);
960}
961
8ceee660
BH
962static int efx_probe_port(struct efx_nic *efx)
963{
964 int rc;
965
62776d03 966 netif_dbg(efx, probe, efx->net_dev, "create port\n");
8ceee660 967
ff3b00a0
SH
968 if (phy_flash_cfg)
969 efx->phy_mode = PHY_MODE_SPECIAL;
970
ef2b90ee
BH
971 /* Connect up MAC/PHY operations table */
972 rc = efx->type->probe_port(efx);
8ceee660 973 if (rc)
e42de262 974 return rc;
8ceee660 975
e332bcb3
BH
976 /* Initialise MAC address to permanent address */
977 memcpy(efx->net_dev->dev_addr, efx->net_dev->perm_addr, ETH_ALEN);
8ceee660
BH
978
979 return 0;
8ceee660
BH
980}
981
982static int efx_init_port(struct efx_nic *efx)
983{
984 int rc;
985
62776d03 986 netif_dbg(efx, drv, efx->net_dev, "init port\n");
8ceee660 987
1dfc5cea
BH
988 mutex_lock(&efx->mac_lock);
989
177dfcd8 990 rc = efx->phy_op->init(efx);
8ceee660 991 if (rc)
1dfc5cea 992 goto fail1;
8ceee660 993
dc8cfa55 994 efx->port_initialized = true;
1dfc5cea 995
d3245b28
BH
996 /* Reconfigure the MAC before creating dma queues (required for
997 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
710b208d 998 efx->type->reconfigure_mac(efx);
d3245b28
BH
999
1000 /* Ensure the PHY advertises the correct flow control settings */
1001 rc = efx->phy_op->reconfigure(efx);
1002 if (rc)
1003 goto fail2;
1004
1dfc5cea 1005 mutex_unlock(&efx->mac_lock);
8ceee660 1006 return 0;
177dfcd8 1007
1dfc5cea 1008fail2:
177dfcd8 1009 efx->phy_op->fini(efx);
1dfc5cea
BH
1010fail1:
1011 mutex_unlock(&efx->mac_lock);
177dfcd8 1012 return rc;
8ceee660
BH
1013}
1014
8ceee660
BH
1015static void efx_start_port(struct efx_nic *efx)
1016{
62776d03 1017 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
8ceee660
BH
1018 BUG_ON(efx->port_enabled);
1019
1020 mutex_lock(&efx->mac_lock);
dc8cfa55 1021 efx->port_enabled = true;
8be4f3e6
BH
1022
1023 /* efx_mac_work() might have been scheduled after efx_stop_port(),
1024 * and then cancelled by efx_flush_all() */
710b208d 1025 efx->type->reconfigure_mac(efx);
8be4f3e6 1026
8ceee660
BH
1027 mutex_unlock(&efx->mac_lock);
1028}
1029
fdaa9aed 1030/* Prevent efx_mac_work() and efx_monitor() from working */
8ceee660
BH
1031static void efx_stop_port(struct efx_nic *efx)
1032{
62776d03 1033 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
8ceee660
BH
1034
1035 mutex_lock(&efx->mac_lock);
dc8cfa55 1036 efx->port_enabled = false;
8ceee660
BH
1037 mutex_unlock(&efx->mac_lock);
1038
1039 /* Serialise against efx_set_multicast_list() */
73ba7b68
BH
1040 netif_addr_lock_bh(efx->net_dev);
1041 netif_addr_unlock_bh(efx->net_dev);
8ceee660
BH
1042}
1043
1044static void efx_fini_port(struct efx_nic *efx)
1045{
62776d03 1046 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
8ceee660
BH
1047
1048 if (!efx->port_initialized)
1049 return;
1050
177dfcd8 1051 efx->phy_op->fini(efx);
dc8cfa55 1052 efx->port_initialized = false;
8ceee660 1053
eb50c0d6 1054 efx->link_state.up = false;
8ceee660
BH
1055 efx_link_status_changed(efx);
1056}
1057
1058static void efx_remove_port(struct efx_nic *efx)
1059{
62776d03 1060 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
8ceee660 1061
ef2b90ee 1062 efx->type->remove_port(efx);
8ceee660
BH
1063}
1064
1065/**************************************************************************
1066 *
1067 * NIC handling
1068 *
1069 **************************************************************************/
1070
1071/* This configures the PCI device to enable I/O and DMA. */
1072static int efx_init_io(struct efx_nic *efx)
1073{
1074 struct pci_dev *pci_dev = efx->pci_dev;
1075 dma_addr_t dma_mask = efx->type->max_dma_mask;
1076 int rc;
1077
62776d03 1078 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
8ceee660
BH
1079
1080 rc = pci_enable_device(pci_dev);
1081 if (rc) {
62776d03
BH
1082 netif_err(efx, probe, efx->net_dev,
1083 "failed to enable PCI device\n");
8ceee660
BH
1084 goto fail1;
1085 }
1086
1087 pci_set_master(pci_dev);
1088
1089 /* Set the PCI DMA mask. Try all possibilities from our
1090 * genuine mask down to 32 bits, because some architectures
1091 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1092 * masks event though they reject 46 bit masks.
1093 */
1094 while (dma_mask > 0x7fffffffUL) {
e9e01846
BH
1095 if (pci_dma_supported(pci_dev, dma_mask)) {
1096 rc = pci_set_dma_mask(pci_dev, dma_mask);
1097 if (rc == 0)
1098 break;
1099 }
8ceee660
BH
1100 dma_mask >>= 1;
1101 }
1102 if (rc) {
62776d03
BH
1103 netif_err(efx, probe, efx->net_dev,
1104 "could not find a suitable DMA mask\n");
8ceee660
BH
1105 goto fail2;
1106 }
62776d03
BH
1107 netif_dbg(efx, probe, efx->net_dev,
1108 "using DMA mask %llx\n", (unsigned long long) dma_mask);
8ceee660
BH
1109 rc = pci_set_consistent_dma_mask(pci_dev, dma_mask);
1110 if (rc) {
1111 /* pci_set_consistent_dma_mask() is not *allowed* to
1112 * fail with a mask that pci_set_dma_mask() accepted,
1113 * but just in case...
1114 */
62776d03
BH
1115 netif_err(efx, probe, efx->net_dev,
1116 "failed to set consistent DMA mask\n");
8ceee660
BH
1117 goto fail2;
1118 }
1119
dc803df8
BH
1120 efx->membase_phys = pci_resource_start(efx->pci_dev, EFX_MEM_BAR);
1121 rc = pci_request_region(pci_dev, EFX_MEM_BAR, "sfc");
8ceee660 1122 if (rc) {
62776d03
BH
1123 netif_err(efx, probe, efx->net_dev,
1124 "request for memory BAR failed\n");
8ceee660
BH
1125 rc = -EIO;
1126 goto fail3;
1127 }
86c432ca
BH
1128 efx->membase = ioremap_nocache(efx->membase_phys,
1129 efx->type->mem_map_size);
8ceee660 1130 if (!efx->membase) {
62776d03
BH
1131 netif_err(efx, probe, efx->net_dev,
1132 "could not map memory BAR at %llx+%x\n",
1133 (unsigned long long)efx->membase_phys,
1134 efx->type->mem_map_size);
8ceee660
BH
1135 rc = -ENOMEM;
1136 goto fail4;
1137 }
62776d03
BH
1138 netif_dbg(efx, probe, efx->net_dev,
1139 "memory BAR at %llx+%x (virtual %p)\n",
1140 (unsigned long long)efx->membase_phys,
1141 efx->type->mem_map_size, efx->membase);
8ceee660
BH
1142
1143 return 0;
1144
1145 fail4:
dc803df8 1146 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
8ceee660 1147 fail3:
2c118e0f 1148 efx->membase_phys = 0;
8ceee660
BH
1149 fail2:
1150 pci_disable_device(efx->pci_dev);
1151 fail1:
1152 return rc;
1153}
1154
1155static void efx_fini_io(struct efx_nic *efx)
1156{
62776d03 1157 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
8ceee660
BH
1158
1159 if (efx->membase) {
1160 iounmap(efx->membase);
1161 efx->membase = NULL;
1162 }
1163
1164 if (efx->membase_phys) {
dc803df8 1165 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
2c118e0f 1166 efx->membase_phys = 0;
8ceee660
BH
1167 }
1168
1169 pci_disable_device(efx->pci_dev);
1170}
1171
a9a52506 1172static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
46123d04 1173{
cdb08f8f 1174 cpumask_var_t thread_mask;
a16e5b24 1175 unsigned int count;
46123d04 1176 int cpu;
5b874e25
BH
1177
1178 if (rss_cpus)
1179 return rss_cpus;
46123d04 1180
cdb08f8f 1181 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
a9a52506
BH
1182 netif_warn(efx, probe, efx->net_dev,
1183 "RSS disabled due to allocation failure\n");
2f8975fb
RR
1184 return 1;
1185 }
1186
46123d04
BH
1187 count = 0;
1188 for_each_online_cpu(cpu) {
cdb08f8f 1189 if (!cpumask_test_cpu(cpu, thread_mask)) {
46123d04 1190 ++count;
cdb08f8f
BH
1191 cpumask_or(thread_mask, thread_mask,
1192 topology_thread_cpumask(cpu));
46123d04
BH
1193 }
1194 }
1195
cdb08f8f 1196 free_cpumask_var(thread_mask);
46123d04
BH
1197 return count;
1198}
1199
64d8ad6d
BH
1200static int
1201efx_init_rx_cpu_rmap(struct efx_nic *efx, struct msix_entry *xentries)
1202{
1203#ifdef CONFIG_RFS_ACCEL
a16e5b24
BH
1204 unsigned int i;
1205 int rc;
64d8ad6d
BH
1206
1207 efx->net_dev->rx_cpu_rmap = alloc_irq_cpu_rmap(efx->n_rx_channels);
1208 if (!efx->net_dev->rx_cpu_rmap)
1209 return -ENOMEM;
1210 for (i = 0; i < efx->n_rx_channels; i++) {
1211 rc = irq_cpu_rmap_add(efx->net_dev->rx_cpu_rmap,
1212 xentries[i].vector);
1213 if (rc) {
1214 free_irq_cpu_rmap(efx->net_dev->rx_cpu_rmap);
1215 efx->net_dev->rx_cpu_rmap = NULL;
1216 return rc;
1217 }
1218 }
1219#endif
1220 return 0;
1221}
1222
46123d04
BH
1223/* Probe the number and type of interrupts we are able to obtain, and
1224 * the resulting numbers of channels and RX queues.
1225 */
64d8ad6d 1226static int efx_probe_interrupts(struct efx_nic *efx)
8ceee660 1227{
a16e5b24
BH
1228 unsigned int max_channels =
1229 min(efx->type->phys_addr_channels, EFX_MAX_CHANNELS);
7f967c01
BH
1230 unsigned int extra_channels = 0;
1231 unsigned int i, j;
a16e5b24 1232 int rc;
8ceee660 1233
7f967c01
BH
1234 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1235 if (efx->extra_channel_type[i])
1236 ++extra_channels;
1237
8ceee660 1238 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
46123d04 1239 struct msix_entry xentries[EFX_MAX_CHANNELS];
a16e5b24 1240 unsigned int n_channels;
aa6ef27e 1241
a9a52506 1242 n_channels = efx_wanted_parallelism(efx);
a4900ac9
BH
1243 if (separate_tx_channels)
1244 n_channels *= 2;
7f967c01 1245 n_channels += extra_channels;
a4900ac9 1246 n_channels = min(n_channels, max_channels);
8ceee660 1247
a4900ac9 1248 for (i = 0; i < n_channels; i++)
8ceee660 1249 xentries[i].entry = i;
a4900ac9 1250 rc = pci_enable_msix(efx->pci_dev, xentries, n_channels);
8ceee660 1251 if (rc > 0) {
62776d03
BH
1252 netif_err(efx, drv, efx->net_dev,
1253 "WARNING: Insufficient MSI-X vectors"
a16e5b24 1254 " available (%d < %u).\n", rc, n_channels);
62776d03
BH
1255 netif_err(efx, drv, efx->net_dev,
1256 "WARNING: Performance may be reduced.\n");
a4900ac9
BH
1257 EFX_BUG_ON_PARANOID(rc >= n_channels);
1258 n_channels = rc;
8ceee660 1259 rc = pci_enable_msix(efx->pci_dev, xentries,
a4900ac9 1260 n_channels);
8ceee660
BH
1261 }
1262
1263 if (rc == 0) {
a4900ac9 1264 efx->n_channels = n_channels;
7f967c01
BH
1265 if (n_channels > extra_channels)
1266 n_channels -= extra_channels;
a4900ac9 1267 if (separate_tx_channels) {
7f967c01
BH
1268 efx->n_tx_channels = max(n_channels / 2, 1U);
1269 efx->n_rx_channels = max(n_channels -
1270 efx->n_tx_channels,
1271 1U);
a4900ac9 1272 } else {
7f967c01
BH
1273 efx->n_tx_channels = n_channels;
1274 efx->n_rx_channels = n_channels;
a4900ac9 1275 }
64d8ad6d
BH
1276 rc = efx_init_rx_cpu_rmap(efx, xentries);
1277 if (rc) {
1278 pci_disable_msix(efx->pci_dev);
1279 return rc;
1280 }
7f967c01 1281 for (i = 0; i < efx->n_channels; i++)
f7d12cdc
BH
1282 efx_get_channel(efx, i)->irq =
1283 xentries[i].vector;
8ceee660
BH
1284 } else {
1285 /* Fall back to single channel MSI */
1286 efx->interrupt_mode = EFX_INT_MODE_MSI;
62776d03
BH
1287 netif_err(efx, drv, efx->net_dev,
1288 "could not enable MSI-X\n");
8ceee660
BH
1289 }
1290 }
1291
1292 /* Try single interrupt MSI */
1293 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
28b581ab 1294 efx->n_channels = 1;
a4900ac9
BH
1295 efx->n_rx_channels = 1;
1296 efx->n_tx_channels = 1;
8ceee660
BH
1297 rc = pci_enable_msi(efx->pci_dev);
1298 if (rc == 0) {
f7d12cdc 1299 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
8ceee660 1300 } else {
62776d03
BH
1301 netif_err(efx, drv, efx->net_dev,
1302 "could not enable MSI\n");
8ceee660
BH
1303 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1304 }
1305 }
1306
1307 /* Assume legacy interrupts */
1308 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
28b581ab 1309 efx->n_channels = 1 + (separate_tx_channels ? 1 : 0);
a4900ac9
BH
1310 efx->n_rx_channels = 1;
1311 efx->n_tx_channels = 1;
8ceee660
BH
1312 efx->legacy_irq = efx->pci_dev->irq;
1313 }
64d8ad6d 1314
7f967c01
BH
1315 /* Assign extra channels if possible */
1316 j = efx->n_channels;
1317 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1318 if (!efx->extra_channel_type[i])
1319 continue;
1320 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1321 efx->n_channels <= extra_channels) {
1322 efx->extra_channel_type[i]->handle_no_channel(efx);
1323 } else {
1324 --j;
1325 efx_get_channel(efx, j)->type =
1326 efx->extra_channel_type[i];
1327 }
1328 }
1329
64d8ad6d 1330 return 0;
8ceee660
BH
1331}
1332
9f2cb71c 1333/* Enable interrupts, then probe and start the event queues */
7f967c01 1334static void efx_start_interrupts(struct efx_nic *efx, bool may_keep_eventq)
9f2cb71c
BH
1335{
1336 struct efx_channel *channel;
1337
1338 if (efx->legacy_irq)
1339 efx->legacy_irq_enabled = true;
1340 efx_nic_enable_interrupts(efx);
1341
1342 efx_for_each_channel(channel, efx) {
7f967c01
BH
1343 if (!channel->type->keep_eventq || !may_keep_eventq)
1344 efx_init_eventq(channel);
9f2cb71c
BH
1345 efx_start_eventq(channel);
1346 }
1347
1348 efx_mcdi_mode_event(efx);
1349}
1350
7f967c01 1351static void efx_stop_interrupts(struct efx_nic *efx, bool may_keep_eventq)
9f2cb71c
BH
1352{
1353 struct efx_channel *channel;
1354
1355 efx_mcdi_mode_poll(efx);
1356
1357 efx_nic_disable_interrupts(efx);
1358 if (efx->legacy_irq) {
1359 synchronize_irq(efx->legacy_irq);
1360 efx->legacy_irq_enabled = false;
1361 }
1362
1363 efx_for_each_channel(channel, efx) {
1364 if (channel->irq)
1365 synchronize_irq(channel->irq);
1366
1367 efx_stop_eventq(channel);
7f967c01
BH
1368 if (!channel->type->keep_eventq || !may_keep_eventq)
1369 efx_fini_eventq(channel);
9f2cb71c
BH
1370 }
1371}
1372
8ceee660
BH
1373static void efx_remove_interrupts(struct efx_nic *efx)
1374{
1375 struct efx_channel *channel;
1376
1377 /* Remove MSI/MSI-X interrupts */
64ee3120 1378 efx_for_each_channel(channel, efx)
8ceee660
BH
1379 channel->irq = 0;
1380 pci_disable_msi(efx->pci_dev);
1381 pci_disable_msix(efx->pci_dev);
1382
1383 /* Remove legacy interrupt */
1384 efx->legacy_irq = 0;
1385}
1386
8831da7b 1387static void efx_set_channels(struct efx_nic *efx)
8ceee660 1388{
602a5322
BH
1389 struct efx_channel *channel;
1390 struct efx_tx_queue *tx_queue;
1391
97653431 1392 efx->tx_channel_offset =
a4900ac9 1393 separate_tx_channels ? efx->n_channels - efx->n_tx_channels : 0;
602a5322
BH
1394
1395 /* We need to adjust the TX queue numbers if we have separate
1396 * RX-only and TX-only channels.
1397 */
1398 efx_for_each_channel(channel, efx) {
1399 efx_for_each_channel_tx_queue(tx_queue, channel)
1400 tx_queue->queue -= (efx->tx_channel_offset *
1401 EFX_TXQ_TYPES);
1402 }
8ceee660
BH
1403}
1404
1405static int efx_probe_nic(struct efx_nic *efx)
1406{
765c9f46 1407 size_t i;
8ceee660
BH
1408 int rc;
1409
62776d03 1410 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
8ceee660
BH
1411
1412 /* Carry out hardware-type specific initialisation */
ef2b90ee 1413 rc = efx->type->probe(efx);
8ceee660
BH
1414 if (rc)
1415 return rc;
1416
a4900ac9 1417 /* Determine the number of channels and queues by trying to hook
8ceee660 1418 * in MSI-X interrupts. */
64d8ad6d
BH
1419 rc = efx_probe_interrupts(efx);
1420 if (rc)
1421 goto fail;
8ceee660 1422
28e47c49
BH
1423 efx->type->dimension_resources(efx);
1424
5d3a6fca
BH
1425 if (efx->n_channels > 1)
1426 get_random_bytes(&efx->rx_hash_key, sizeof(efx->rx_hash_key));
765c9f46 1427 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
278bc429
BH
1428 efx->rx_indir_table[i] =
1429 ethtool_rxfh_indir_default(i, efx->n_rx_channels);
5d3a6fca 1430
8831da7b 1431 efx_set_channels(efx);
c4f4adc7
BH
1432 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1433 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
8ceee660
BH
1434
1435 /* Initialise the interrupt moderation settings */
9e393b30
BH
1436 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1437 true);
8ceee660
BH
1438
1439 return 0;
64d8ad6d
BH
1440
1441fail:
1442 efx->type->remove(efx);
1443 return rc;
8ceee660
BH
1444}
1445
1446static void efx_remove_nic(struct efx_nic *efx)
1447{
62776d03 1448 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
8ceee660
BH
1449
1450 efx_remove_interrupts(efx);
ef2b90ee 1451 efx->type->remove(efx);
8ceee660
BH
1452}
1453
1454/**************************************************************************
1455 *
1456 * NIC startup/shutdown
1457 *
1458 *************************************************************************/
1459
1460static int efx_probe_all(struct efx_nic *efx)
1461{
8ceee660
BH
1462 int rc;
1463
8ceee660
BH
1464 rc = efx_probe_nic(efx);
1465 if (rc) {
62776d03 1466 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
8ceee660
BH
1467 goto fail1;
1468 }
1469
8ceee660
BH
1470 rc = efx_probe_port(efx);
1471 if (rc) {
62776d03 1472 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
8ceee660
BH
1473 goto fail2;
1474 }
1475
ecc910f5 1476 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
8ceee660 1477
64eebcfd
BH
1478 rc = efx_probe_filters(efx);
1479 if (rc) {
1480 netif_err(efx, probe, efx->net_dev,
1481 "failed to create filter tables\n");
7f967c01 1482 goto fail3;
64eebcfd
BH
1483 }
1484
7f967c01
BH
1485 rc = efx_probe_channels(efx);
1486 if (rc)
1487 goto fail4;
1488
8ceee660
BH
1489 return 0;
1490
64eebcfd 1491 fail4:
7f967c01 1492 efx_remove_filters(efx);
8ceee660 1493 fail3:
8ceee660
BH
1494 efx_remove_port(efx);
1495 fail2:
1496 efx_remove_nic(efx);
1497 fail1:
1498 return rc;
1499}
1500
9f2cb71c
BH
1501/* Called after previous invocation(s) of efx_stop_all, restarts the port,
1502 * kernel transmit queues and NAPI processing, and ensures that the port is
1503 * scheduled to be reconfigured. This function is safe to call multiple
1504 * times when the NIC is in any state.
1505 */
8ceee660
BH
1506static void efx_start_all(struct efx_nic *efx)
1507{
8ceee660
BH
1508 EFX_ASSERT_RESET_SERIALISED(efx);
1509
1510 /* Check that it is appropriate to restart the interface. All
1511 * of these flags are safe to read under just the rtnl lock */
1512 if (efx->port_enabled)
1513 return;
1514 if ((efx->state != STATE_RUNNING) && (efx->state != STATE_INIT))
1515 return;
73ba7b68 1516 if (!netif_running(efx->net_dev))
8ceee660
BH
1517 return;
1518
8ceee660 1519 efx_start_port(efx);
9f2cb71c 1520 efx_start_datapath(efx);
8880f4ec 1521
78c1f0a0
SH
1522 /* Start the hardware monitor if there is one. Otherwise (we're link
1523 * event driven), we have to poll the PHY because after an event queue
1524 * flush, we could have a missed a link state change */
1525 if (efx->type->monitor != NULL) {
8ceee660
BH
1526 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1527 efx_monitor_interval);
78c1f0a0
SH
1528 } else {
1529 mutex_lock(&efx->mac_lock);
1530 if (efx->phy_op->poll(efx))
1531 efx_link_status_changed(efx);
1532 mutex_unlock(&efx->mac_lock);
1533 }
55edc6e6 1534
ef2b90ee 1535 efx->type->start_stats(efx);
8ceee660
BH
1536}
1537
1538/* Flush all delayed work. Should only be called when no more delayed work
1539 * will be scheduled. This doesn't flush pending online resets (efx_reset),
1540 * since we're holding the rtnl_lock at this point. */
1541static void efx_flush_all(struct efx_nic *efx)
1542{
8ceee660
BH
1543 /* Make sure the hardware monitor is stopped */
1544 cancel_delayed_work_sync(&efx->monitor_work);
8ceee660 1545 /* Stop scheduled port reconfigurations */
766ca0fa 1546 cancel_work_sync(&efx->mac_work);
8ceee660
BH
1547}
1548
1549/* Quiesce hardware and software without bringing the link down.
1550 * Safe to call multiple times, when the nic and interface is in any
1551 * state. The caller is guaranteed to subsequently be in a position
1552 * to modify any hardware and software state they see fit without
1553 * taking locks. */
1554static void efx_stop_all(struct efx_nic *efx)
1555{
8ceee660
BH
1556 EFX_ASSERT_RESET_SERIALISED(efx);
1557
1558 /* port_enabled can be read safely under the rtnl lock */
1559 if (!efx->port_enabled)
1560 return;
1561
ef2b90ee 1562 efx->type->stop_stats(efx);
8ceee660
BH
1563 efx_stop_port(efx);
1564
fdaa9aed 1565 /* Flush efx_mac_work(), refill_workqueue, monitor_work */
8ceee660
BH
1566 efx_flush_all(efx);
1567
8ceee660
BH
1568 /* Stop the kernel transmit interface late, so the watchdog
1569 * timer isn't ticking over the flush */
9f2cb71c
BH
1570 netif_tx_disable(efx->net_dev);
1571
1572 efx_stop_datapath(efx);
8ceee660
BH
1573}
1574
1575static void efx_remove_all(struct efx_nic *efx)
1576{
4642610c 1577 efx_remove_channels(efx);
7f967c01 1578 efx_remove_filters(efx);
8ceee660
BH
1579 efx_remove_port(efx);
1580 efx_remove_nic(efx);
1581}
1582
8ceee660
BH
1583/**************************************************************************
1584 *
1585 * Interrupt moderation
1586 *
1587 **************************************************************************/
1588
cc180b69 1589static unsigned int irq_mod_ticks(unsigned int usecs, unsigned int quantum_ns)
0d86ebd8 1590{
b548f976
BH
1591 if (usecs == 0)
1592 return 0;
cc180b69 1593 if (usecs * 1000 < quantum_ns)
0d86ebd8 1594 return 1; /* never round down to 0 */
cc180b69 1595 return usecs * 1000 / quantum_ns;
0d86ebd8
BH
1596}
1597
8ceee660 1598/* Set interrupt moderation parameters */
9e393b30
BH
1599int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1600 unsigned int rx_usecs, bool rx_adaptive,
1601 bool rx_may_override_tx)
8ceee660 1602{
f7d12cdc 1603 struct efx_channel *channel;
cc180b69
BH
1604 unsigned int irq_mod_max = DIV_ROUND_UP(efx->type->timer_period_max *
1605 efx->timer_quantum_ns,
1606 1000);
1607 unsigned int tx_ticks;
1608 unsigned int rx_ticks;
8ceee660
BH
1609
1610 EFX_ASSERT_RESET_SERIALISED(efx);
1611
cc180b69 1612 if (tx_usecs > irq_mod_max || rx_usecs > irq_mod_max)
9e393b30
BH
1613 return -EINVAL;
1614
cc180b69
BH
1615 tx_ticks = irq_mod_ticks(tx_usecs, efx->timer_quantum_ns);
1616 rx_ticks = irq_mod_ticks(rx_usecs, efx->timer_quantum_ns);
1617
9e393b30
BH
1618 if (tx_ticks != rx_ticks && efx->tx_channel_offset == 0 &&
1619 !rx_may_override_tx) {
1620 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1621 "RX and TX IRQ moderation must be equal\n");
1622 return -EINVAL;
1623 }
1624
6fb70fd1 1625 efx->irq_rx_adaptive = rx_adaptive;
0d86ebd8 1626 efx->irq_rx_moderation = rx_ticks;
f7d12cdc 1627 efx_for_each_channel(channel, efx) {
525da907 1628 if (efx_channel_has_rx_queue(channel))
f7d12cdc 1629 channel->irq_moderation = rx_ticks;
525da907 1630 else if (efx_channel_has_tx_queues(channel))
f7d12cdc
BH
1631 channel->irq_moderation = tx_ticks;
1632 }
9e393b30
BH
1633
1634 return 0;
8ceee660
BH
1635}
1636
a0c4faf5
BH
1637void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
1638 unsigned int *rx_usecs, bool *rx_adaptive)
1639{
cc180b69
BH
1640 /* We must round up when converting ticks to microseconds
1641 * because we round down when converting the other way.
1642 */
1643
a0c4faf5 1644 *rx_adaptive = efx->irq_rx_adaptive;
cc180b69
BH
1645 *rx_usecs = DIV_ROUND_UP(efx->irq_rx_moderation *
1646 efx->timer_quantum_ns,
1647 1000);
a0c4faf5
BH
1648
1649 /* If channels are shared between RX and TX, so is IRQ
1650 * moderation. Otherwise, IRQ moderation is the same for all
1651 * TX channels and is not adaptive.
1652 */
1653 if (efx->tx_channel_offset == 0)
1654 *tx_usecs = *rx_usecs;
1655 else
cc180b69 1656 *tx_usecs = DIV_ROUND_UP(
a0c4faf5 1657 efx->channel[efx->tx_channel_offset]->irq_moderation *
cc180b69
BH
1658 efx->timer_quantum_ns,
1659 1000);
a0c4faf5
BH
1660}
1661
8ceee660
BH
1662/**************************************************************************
1663 *
1664 * Hardware monitor
1665 *
1666 **************************************************************************/
1667
e254c274 1668/* Run periodically off the general workqueue */
8ceee660
BH
1669static void efx_monitor(struct work_struct *data)
1670{
1671 struct efx_nic *efx = container_of(data, struct efx_nic,
1672 monitor_work.work);
8ceee660 1673
62776d03
BH
1674 netif_vdbg(efx, timer, efx->net_dev,
1675 "hardware monitor executing on CPU %d\n",
1676 raw_smp_processor_id());
ef2b90ee 1677 BUG_ON(efx->type->monitor == NULL);
8ceee660 1678
8ceee660
BH
1679 /* If the mac_lock is already held then it is likely a port
1680 * reconfiguration is already in place, which will likely do
e254c274
BH
1681 * most of the work of monitor() anyway. */
1682 if (mutex_trylock(&efx->mac_lock)) {
1683 if (efx->port_enabled)
1684 efx->type->monitor(efx);
1685 mutex_unlock(&efx->mac_lock);
1686 }
8ceee660 1687
8ceee660
BH
1688 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1689 efx_monitor_interval);
1690}
1691
1692/**************************************************************************
1693 *
1694 * ioctls
1695 *
1696 *************************************************************************/
1697
1698/* Net device ioctl
1699 * Context: process, rtnl_lock() held.
1700 */
1701static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
1702{
767e468c 1703 struct efx_nic *efx = netdev_priv(net_dev);
68e7f45e 1704 struct mii_ioctl_data *data = if_mii(ifr);
8ceee660
BH
1705
1706 EFX_ASSERT_RESET_SERIALISED(efx);
1707
68e7f45e
BH
1708 /* Convert phy_id from older PRTAD/DEVAD format */
1709 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
1710 (data->phy_id & 0xfc00) == 0x0400)
1711 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
1712
1713 return mdio_mii_ioctl(&efx->mdio, data, cmd);
8ceee660
BH
1714}
1715
1716/**************************************************************************
1717 *
1718 * NAPI interface
1719 *
1720 **************************************************************************/
1721
7f967c01
BH
1722static void efx_init_napi_channel(struct efx_channel *channel)
1723{
1724 struct efx_nic *efx = channel->efx;
1725
1726 channel->napi_dev = efx->net_dev;
1727 netif_napi_add(channel->napi_dev, &channel->napi_str,
1728 efx_poll, napi_weight);
1729}
1730
e8f14992 1731static void efx_init_napi(struct efx_nic *efx)
8ceee660
BH
1732{
1733 struct efx_channel *channel;
8ceee660 1734
7f967c01
BH
1735 efx_for_each_channel(channel, efx)
1736 efx_init_napi_channel(channel);
e8f14992
BH
1737}
1738
1739static void efx_fini_napi_channel(struct efx_channel *channel)
1740{
1741 if (channel->napi_dev)
1742 netif_napi_del(&channel->napi_str);
1743 channel->napi_dev = NULL;
8ceee660
BH
1744}
1745
1746static void efx_fini_napi(struct efx_nic *efx)
1747{
1748 struct efx_channel *channel;
1749
e8f14992
BH
1750 efx_for_each_channel(channel, efx)
1751 efx_fini_napi_channel(channel);
8ceee660
BH
1752}
1753
1754/**************************************************************************
1755 *
1756 * Kernel netpoll interface
1757 *
1758 *************************************************************************/
1759
1760#ifdef CONFIG_NET_POLL_CONTROLLER
1761
1762/* Although in the common case interrupts will be disabled, this is not
1763 * guaranteed. However, all our work happens inside the NAPI callback,
1764 * so no locking is required.
1765 */
1766static void efx_netpoll(struct net_device *net_dev)
1767{
767e468c 1768 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660
BH
1769 struct efx_channel *channel;
1770
64ee3120 1771 efx_for_each_channel(channel, efx)
8ceee660
BH
1772 efx_schedule_channel(channel);
1773}
1774
1775#endif
1776
1777/**************************************************************************
1778 *
1779 * Kernel net device interface
1780 *
1781 *************************************************************************/
1782
1783/* Context: process, rtnl_lock() held. */
1784static int efx_net_open(struct net_device *net_dev)
1785{
767e468c 1786 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660
BH
1787 EFX_ASSERT_RESET_SERIALISED(efx);
1788
62776d03
BH
1789 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
1790 raw_smp_processor_id());
8ceee660 1791
f4bd954e
BH
1792 if (efx->state == STATE_DISABLED)
1793 return -EIO;
f8b87c17
BH
1794 if (efx->phy_mode & PHY_MODE_SPECIAL)
1795 return -EBUSY;
8880f4ec
BH
1796 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
1797 return -EIO;
f8b87c17 1798
78c1f0a0
SH
1799 /* Notify the kernel of the link state polled during driver load,
1800 * before the monitor starts running */
1801 efx_link_status_changed(efx);
1802
8ceee660
BH
1803 efx_start_all(efx);
1804 return 0;
1805}
1806
1807/* Context: process, rtnl_lock() held.
1808 * Note that the kernel will ignore our return code; this method
1809 * should really be a void.
1810 */
1811static int efx_net_stop(struct net_device *net_dev)
1812{
767e468c 1813 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660 1814
62776d03
BH
1815 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
1816 raw_smp_processor_id());
8ceee660 1817
f4bd954e
BH
1818 if (efx->state != STATE_DISABLED) {
1819 /* Stop the device and flush all the channels */
1820 efx_stop_all(efx);
f4bd954e 1821 }
8ceee660
BH
1822
1823 return 0;
1824}
1825
5b9e207c 1826/* Context: process, dev_base_lock or RTNL held, non-blocking. */
2aa9ef11
BH
1827static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev,
1828 struct rtnl_link_stats64 *stats)
8ceee660 1829{
767e468c 1830 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660 1831 struct efx_mac_stats *mac_stats = &efx->mac_stats;
8ceee660 1832
55edc6e6 1833 spin_lock_bh(&efx->stats_lock);
1cb34522 1834
ef2b90ee 1835 efx->type->update_stats(efx);
8ceee660
BH
1836
1837 stats->rx_packets = mac_stats->rx_packets;
1838 stats->tx_packets = mac_stats->tx_packets;
1839 stats->rx_bytes = mac_stats->rx_bytes;
1840 stats->tx_bytes = mac_stats->tx_bytes;
80485d34 1841 stats->rx_dropped = efx->n_rx_nodesc_drop_cnt;
8ceee660
BH
1842 stats->multicast = mac_stats->rx_multicast;
1843 stats->collisions = mac_stats->tx_collision;
1844 stats->rx_length_errors = (mac_stats->rx_gtjumbo +
1845 mac_stats->rx_length_error);
8ceee660
BH
1846 stats->rx_crc_errors = mac_stats->rx_bad;
1847 stats->rx_frame_errors = mac_stats->rx_align_error;
1848 stats->rx_fifo_errors = mac_stats->rx_overflow;
1849 stats->rx_missed_errors = mac_stats->rx_missed;
1850 stats->tx_window_errors = mac_stats->tx_late_collision;
1851
1852 stats->rx_errors = (stats->rx_length_errors +
8ceee660
BH
1853 stats->rx_crc_errors +
1854 stats->rx_frame_errors +
8ceee660
BH
1855 mac_stats->rx_symbol_error);
1856 stats->tx_errors = (stats->tx_window_errors +
1857 mac_stats->tx_bad);
1858
1cb34522
BH
1859 spin_unlock_bh(&efx->stats_lock);
1860
8ceee660
BH
1861 return stats;
1862}
1863
1864/* Context: netif_tx_lock held, BHs disabled. */
1865static void efx_watchdog(struct net_device *net_dev)
1866{
767e468c 1867 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660 1868
62776d03
BH
1869 netif_err(efx, tx_err, efx->net_dev,
1870 "TX stuck with port_enabled=%d: resetting channels\n",
1871 efx->port_enabled);
8ceee660 1872
739bb23d 1873 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
8ceee660
BH
1874}
1875
1876
1877/* Context: process, rtnl_lock() held. */
1878static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
1879{
767e468c 1880 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660
BH
1881
1882 EFX_ASSERT_RESET_SERIALISED(efx);
1883
1884 if (new_mtu > EFX_MAX_MTU)
1885 return -EINVAL;
1886
1887 efx_stop_all(efx);
1888
62776d03 1889 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
8ceee660 1890
d3245b28
BH
1891 mutex_lock(&efx->mac_lock);
1892 /* Reconfigure the MAC before enabling the dma queues so that
1893 * the RX buffers don't overflow */
8ceee660 1894 net_dev->mtu = new_mtu;
710b208d 1895 efx->type->reconfigure_mac(efx);
d3245b28
BH
1896 mutex_unlock(&efx->mac_lock);
1897
8ceee660 1898 efx_start_all(efx);
6c8eef4a 1899 return 0;
8ceee660
BH
1900}
1901
1902static int efx_set_mac_address(struct net_device *net_dev, void *data)
1903{
767e468c 1904 struct efx_nic *efx = netdev_priv(net_dev);
8ceee660
BH
1905 struct sockaddr *addr = data;
1906 char *new_addr = addr->sa_data;
1907
1908 EFX_ASSERT_RESET_SERIALISED(efx);
1909
1910 if (!is_valid_ether_addr(new_addr)) {
62776d03
BH
1911 netif_err(efx, drv, efx->net_dev,
1912 "invalid ethernet MAC address requested: %pM\n",
1913 new_addr);
8ceee660
BH
1914 return -EINVAL;
1915 }
1916
1917 memcpy(net_dev->dev_addr, new_addr, net_dev->addr_len);
1918
1919 /* Reconfigure the MAC */
d3245b28 1920 mutex_lock(&efx->mac_lock);
710b208d 1921 efx->type->reconfigure_mac(efx);
d3245b28 1922 mutex_unlock(&efx->mac_lock);
8ceee660
BH
1923
1924 return 0;
1925}
1926
a816f75a 1927/* Context: netif_addr_lock held, BHs disabled. */
0fca8c97 1928static void efx_set_rx_mode(struct net_device *net_dev)
8ceee660 1929{
767e468c 1930 struct efx_nic *efx = netdev_priv(net_dev);
22bedad3 1931 struct netdev_hw_addr *ha;
8ceee660 1932 union efx_multicast_hash *mc_hash = &efx->multicast_hash;
8ceee660
BH
1933 u32 crc;
1934 int bit;
8ceee660 1935
8be4f3e6 1936 efx->promiscuous = !!(net_dev->flags & IFF_PROMISC);
8ceee660
BH
1937
1938 /* Build multicast hash table */
8be4f3e6 1939 if (efx->promiscuous || (net_dev->flags & IFF_ALLMULTI)) {
8ceee660
BH
1940 memset(mc_hash, 0xff, sizeof(*mc_hash));
1941 } else {
1942 memset(mc_hash, 0x00, sizeof(*mc_hash));
22bedad3
JP
1943 netdev_for_each_mc_addr(ha, net_dev) {
1944 crc = ether_crc_le(ETH_ALEN, ha->addr);
8ceee660
BH
1945 bit = crc & (EFX_MCAST_HASH_ENTRIES - 1);
1946 set_bit_le(bit, mc_hash->byte);
8ceee660 1947 }
8ceee660 1948
8be4f3e6
BH
1949 /* Broadcast packets go through the multicast hash filter.
1950 * ether_crc_le() of the broadcast address is 0xbe2612ff
1951 * so we always add bit 0xff to the mask.
1952 */
1953 set_bit_le(0xff, mc_hash->byte);
1954 }
a816f75a 1955
8be4f3e6
BH
1956 if (efx->port_enabled)
1957 queue_work(efx->workqueue, &efx->mac_work);
1958 /* Otherwise efx_start_port() will do this */
8ceee660
BH
1959}
1960
c8f44aff 1961static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
abfe9039
BH
1962{
1963 struct efx_nic *efx = netdev_priv(net_dev);
1964
1965 /* If disabling RX n-tuple filtering, clear existing filters */
1966 if (net_dev->features & ~data & NETIF_F_NTUPLE)
1967 efx_filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
1968
1969 return 0;
1970}
1971
c3ecb9f3
SH
1972static const struct net_device_ops efx_netdev_ops = {
1973 .ndo_open = efx_net_open,
1974 .ndo_stop = efx_net_stop,
4472702e 1975 .ndo_get_stats64 = efx_net_stats,
c3ecb9f3
SH
1976 .ndo_tx_timeout = efx_watchdog,
1977 .ndo_start_xmit = efx_hard_start_xmit,
1978 .ndo_validate_addr = eth_validate_addr,
1979 .ndo_do_ioctl = efx_ioctl,
1980 .ndo_change_mtu = efx_change_mtu,
1981 .ndo_set_mac_address = efx_set_mac_address,
0fca8c97 1982 .ndo_set_rx_mode = efx_set_rx_mode,
abfe9039 1983 .ndo_set_features = efx_set_features,
c3ecb9f3
SH
1984#ifdef CONFIG_NET_POLL_CONTROLLER
1985 .ndo_poll_controller = efx_netpoll,
1986#endif
94b274bf 1987 .ndo_setup_tc = efx_setup_tc,
64d8ad6d
BH
1988#ifdef CONFIG_RFS_ACCEL
1989 .ndo_rx_flow_steer = efx_filter_rfs,
1990#endif
c3ecb9f3
SH
1991};
1992
7dde596e
BH
1993static void efx_update_name(struct efx_nic *efx)
1994{
1995 strcpy(efx->name, efx->net_dev->name);
1996 efx_mtd_rename(efx);
1997 efx_set_channel_names(efx);
1998}
1999
8ceee660
BH
2000static int efx_netdev_event(struct notifier_block *this,
2001 unsigned long event, void *ptr)
2002{
d3208b5e 2003 struct net_device *net_dev = ptr;
8ceee660 2004
7dde596e
BH
2005 if (net_dev->netdev_ops == &efx_netdev_ops &&
2006 event == NETDEV_CHANGENAME)
2007 efx_update_name(netdev_priv(net_dev));
8ceee660
BH
2008
2009 return NOTIFY_DONE;
2010}
2011
2012static struct notifier_block efx_netdev_notifier = {
2013 .notifier_call = efx_netdev_event,
2014};
2015
06d5e193
BH
2016static ssize_t
2017show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2018{
2019 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2020 return sprintf(buf, "%d\n", efx->phy_type);
2021}
2022static DEVICE_ATTR(phy_type, 0644, show_phy_type, NULL);
2023
8ceee660
BH
2024static int efx_register_netdev(struct efx_nic *efx)
2025{
2026 struct net_device *net_dev = efx->net_dev;
c04bfc6b 2027 struct efx_channel *channel;
8ceee660
BH
2028 int rc;
2029
2030 net_dev->watchdog_timeo = 5 * HZ;
2031 net_dev->irq = efx->pci_dev->irq;
c3ecb9f3 2032 net_dev->netdev_ops = &efx_netdev_ops;
8ceee660
BH
2033 SET_ETHTOOL_OPS(net_dev, &efx_ethtool_ops);
2034
7dde596e 2035 rtnl_lock();
aed0628d
BH
2036
2037 rc = dev_alloc_name(net_dev, net_dev->name);
2038 if (rc < 0)
2039 goto fail_locked;
7dde596e 2040 efx_update_name(efx);
aed0628d
BH
2041
2042 rc = register_netdevice(net_dev);
2043 if (rc)
2044 goto fail_locked;
2045
c04bfc6b
BH
2046 efx_for_each_channel(channel, efx) {
2047 struct efx_tx_queue *tx_queue;
60031fcc
BH
2048 efx_for_each_channel_tx_queue(tx_queue, channel)
2049 efx_init_tx_queue_core_txq(tx_queue);
c04bfc6b
BH
2050 }
2051
aed0628d 2052 /* Always start with carrier off; PHY events will detect the link */
86ee5302 2053 netif_carrier_off(net_dev);
aed0628d 2054
7dde596e 2055 rtnl_unlock();
8ceee660 2056
06d5e193
BH
2057 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2058 if (rc) {
62776d03
BH
2059 netif_err(efx, drv, efx->net_dev,
2060 "failed to init net dev attributes\n");
06d5e193
BH
2061 goto fail_registered;
2062 }
2063
8ceee660 2064 return 0;
06d5e193 2065
aed0628d
BH
2066fail_locked:
2067 rtnl_unlock();
62776d03 2068 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
aed0628d
BH
2069 return rc;
2070
06d5e193
BH
2071fail_registered:
2072 unregister_netdev(net_dev);
2073 return rc;
8ceee660
BH
2074}
2075
2076static void efx_unregister_netdev(struct efx_nic *efx)
2077{
f7d12cdc 2078 struct efx_channel *channel;
8ceee660
BH
2079 struct efx_tx_queue *tx_queue;
2080
2081 if (!efx->net_dev)
2082 return;
2083
767e468c 2084 BUG_ON(netdev_priv(efx->net_dev) != efx);
8ceee660
BH
2085
2086 /* Free up any skbs still remaining. This has to happen before
2087 * we try to unregister the netdev as running their destructors
2088 * may be needed to get the device ref. count to 0. */
f7d12cdc
BH
2089 efx_for_each_channel(channel, efx) {
2090 efx_for_each_channel_tx_queue(tx_queue, channel)
2091 efx_release_tx_buffers(tx_queue);
2092 }
8ceee660 2093
73ba7b68
BH
2094 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2095 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2096 unregister_netdev(efx->net_dev);
8ceee660
BH
2097}
2098
2099/**************************************************************************
2100 *
2101 * Device reset and suspend
2102 *
2103 **************************************************************************/
2104
2467ca46
BH
2105/* Tears down the entire software state and most of the hardware state
2106 * before reset. */
d3245b28 2107void efx_reset_down(struct efx_nic *efx, enum reset_type method)
8ceee660 2108{
8ceee660
BH
2109 EFX_ASSERT_RESET_SERIALISED(efx);
2110
2467ca46
BH
2111 efx_stop_all(efx);
2112 mutex_lock(&efx->mac_lock);
2113
7f967c01 2114 efx_stop_interrupts(efx, false);
4b988280
SH
2115 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE)
2116 efx->phy_op->fini(efx);
ef2b90ee 2117 efx->type->fini(efx);
8ceee660
BH
2118}
2119
2467ca46
BH
2120/* This function will always ensure that the locks acquired in
2121 * efx_reset_down() are released. A failure return code indicates
2122 * that we were unable to reinitialise the hardware, and the
2123 * driver should be disabled. If ok is false, then the rx and tx
2124 * engines are not restarted, pending a RESET_DISABLE. */
d3245b28 2125int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
8ceee660
BH
2126{
2127 int rc;
2128
2467ca46 2129 EFX_ASSERT_RESET_SERIALISED(efx);
8ceee660 2130
ef2b90ee 2131 rc = efx->type->init(efx);
8ceee660 2132 if (rc) {
62776d03 2133 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
eb9f6744 2134 goto fail;
8ceee660
BH
2135 }
2136
eb9f6744
BH
2137 if (!ok)
2138 goto fail;
2139
4b988280 2140 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE) {
eb9f6744
BH
2141 rc = efx->phy_op->init(efx);
2142 if (rc)
2143 goto fail;
2144 if (efx->phy_op->reconfigure(efx))
62776d03
BH
2145 netif_err(efx, drv, efx->net_dev,
2146 "could not restore PHY settings\n");
4b988280
SH
2147 }
2148
710b208d 2149 efx->type->reconfigure_mac(efx);
8ceee660 2150
7f967c01 2151 efx_start_interrupts(efx, false);
64eebcfd 2152 efx_restore_filters(efx);
eb9f6744 2153
eb9f6744
BH
2154 mutex_unlock(&efx->mac_lock);
2155
2156 efx_start_all(efx);
2157
2158 return 0;
2159
2160fail:
2161 efx->port_initialized = false;
2467ca46
BH
2162
2163 mutex_unlock(&efx->mac_lock);
2164
8ceee660
BH
2165 return rc;
2166}
2167
eb9f6744
BH
2168/* Reset the NIC using the specified method. Note that the reset may
2169 * fail, in which case the card will be left in an unusable state.
8ceee660 2170 *
eb9f6744 2171 * Caller must hold the rtnl_lock.
8ceee660 2172 */
eb9f6744 2173int efx_reset(struct efx_nic *efx, enum reset_type method)
8ceee660 2174{
eb9f6744
BH
2175 int rc, rc2;
2176 bool disabled;
8ceee660 2177
62776d03
BH
2178 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2179 RESET_TYPE(method));
8ceee660 2180
e4abce85 2181 netif_device_detach(efx->net_dev);
d3245b28 2182 efx_reset_down(efx, method);
8ceee660 2183
ef2b90ee 2184 rc = efx->type->reset(efx, method);
8ceee660 2185 if (rc) {
62776d03 2186 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
eb9f6744 2187 goto out;
8ceee660
BH
2188 }
2189
a7d529ae
BH
2190 /* Clear flags for the scopes we covered. We assume the NIC and
2191 * driver are now quiescent so that there is no race here.
2192 */
2193 efx->reset_pending &= -(1 << (method + 1));
8ceee660
BH
2194
2195 /* Reinitialise bus-mastering, which may have been turned off before
2196 * the reset was scheduled. This is still appropriate, even in the
2197 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2198 * can respond to requests. */
2199 pci_set_master(efx->pci_dev);
2200
eb9f6744 2201out:
8ceee660 2202 /* Leave device stopped if necessary */
eb9f6744
BH
2203 disabled = rc || method == RESET_TYPE_DISABLE;
2204 rc2 = efx_reset_up(efx, method, !disabled);
2205 if (rc2) {
2206 disabled = true;
2207 if (!rc)
2208 rc = rc2;
8ceee660
BH
2209 }
2210
eb9f6744 2211 if (disabled) {
f49a4589 2212 dev_close(efx->net_dev);
62776d03 2213 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
f4bd954e 2214 efx->state = STATE_DISABLED;
f4bd954e 2215 } else {
62776d03 2216 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
e4abce85 2217 netif_device_attach(efx->net_dev);
f4bd954e 2218 }
8ceee660
BH
2219 return rc;
2220}
2221
2222/* The worker thread exists so that code that cannot sleep can
2223 * schedule a reset for later.
2224 */
2225static void efx_reset_work(struct work_struct *data)
2226{
eb9f6744 2227 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
a7d529ae 2228 unsigned long pending = ACCESS_ONCE(efx->reset_pending);
8ceee660 2229
a7d529ae 2230 if (!pending)
319ba649
SH
2231 return;
2232
eb9f6744 2233 /* If we're not RUNNING then don't reset. Leave the reset_pending
a7d529ae 2234 * flags set so that efx_pci_probe_main will be retried */
eb9f6744 2235 if (efx->state != STATE_RUNNING) {
62776d03
BH
2236 netif_info(efx, drv, efx->net_dev,
2237 "scheduled reset quenched. NIC not RUNNING\n");
eb9f6744
BH
2238 return;
2239 }
2240
2241 rtnl_lock();
a7d529ae 2242 (void)efx_reset(efx, fls(pending) - 1);
eb9f6744 2243 rtnl_unlock();
8ceee660
BH
2244}
2245
2246void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2247{
2248 enum reset_type method;
2249
8ceee660
BH
2250 switch (type) {
2251 case RESET_TYPE_INVISIBLE:
2252 case RESET_TYPE_ALL:
2253 case RESET_TYPE_WORLD:
2254 case RESET_TYPE_DISABLE:
2255 method = type;
0e2a9c7c
BH
2256 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2257 RESET_TYPE(method));
8ceee660 2258 break;
8ceee660 2259 default:
0e2a9c7c 2260 method = efx->type->map_reset_reason(type);
62776d03
BH
2261 netif_dbg(efx, drv, efx->net_dev,
2262 "scheduling %s reset for %s\n",
2263 RESET_TYPE(method), RESET_TYPE(type));
0e2a9c7c
BH
2264 break;
2265 }
8ceee660 2266
a7d529ae 2267 set_bit(method, &efx->reset_pending);
8ceee660 2268
8880f4ec
BH
2269 /* efx_process_channel() will no longer read events once a
2270 * reset is scheduled. So switch back to poll'd MCDI completions. */
2271 efx_mcdi_mode_poll(efx);
2272
1ab00629 2273 queue_work(reset_workqueue, &efx->reset_work);
8ceee660
BH
2274}
2275
2276/**************************************************************************
2277 *
2278 * List of NICs we support
2279 *
2280 **************************************************************************/
2281
2282/* PCI device ID table */
a3aa1884 2283static DEFINE_PCI_DEVICE_TABLE(efx_pci_table) = {
937383a5
BH
2284 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2285 PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
daeda630 2286 .driver_data = (unsigned long) &falcon_a1_nic_type},
937383a5
BH
2287 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2288 PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
daeda630 2289 .driver_data = (unsigned long) &falcon_b0_nic_type},
547c474f 2290 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
8880f4ec 2291 .driver_data = (unsigned long) &siena_a0_nic_type},
547c474f 2292 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
8880f4ec 2293 .driver_data = (unsigned long) &siena_a0_nic_type},
8ceee660
BH
2294 {0} /* end of list */
2295};
2296
2297/**************************************************************************
2298 *
3759433d 2299 * Dummy PHY/MAC operations
8ceee660 2300 *
01aad7b6 2301 * Can be used for some unimplemented operations
8ceee660
BH
2302 * Needed so all function pointers are valid and do not have to be tested
2303 * before use
2304 *
2305 **************************************************************************/
2306int efx_port_dummy_op_int(struct efx_nic *efx)
2307{
2308 return 0;
2309}
2310void efx_port_dummy_op_void(struct efx_nic *efx) {}
d215697f 2311
2312static bool efx_port_dummy_op_poll(struct efx_nic *efx)
fdaa9aed
SH
2313{
2314 return false;
2315}
8ceee660 2316
6c8c2513 2317static const struct efx_phy_operations efx_dummy_phy_operations = {
8ceee660 2318 .init = efx_port_dummy_op_int,
d3245b28 2319 .reconfigure = efx_port_dummy_op_int,
fdaa9aed 2320 .poll = efx_port_dummy_op_poll,
8ceee660 2321 .fini = efx_port_dummy_op_void,
8ceee660
BH
2322};
2323
8ceee660
BH
2324/**************************************************************************
2325 *
2326 * Data housekeeping
2327 *
2328 **************************************************************************/
2329
2330/* This zeroes out and then fills in the invariants in a struct
2331 * efx_nic (including all sub-structures).
2332 */
6c8c2513 2333static int efx_init_struct(struct efx_nic *efx, const struct efx_nic_type *type,
8ceee660
BH
2334 struct pci_dev *pci_dev, struct net_device *net_dev)
2335{
4642610c 2336 int i;
8ceee660
BH
2337
2338 /* Initialise common structures */
2339 memset(efx, 0, sizeof(*efx));
2340 spin_lock_init(&efx->biu_lock);
76884835
BH
2341#ifdef CONFIG_SFC_MTD
2342 INIT_LIST_HEAD(&efx->mtd_list);
2343#endif
8ceee660
BH
2344 INIT_WORK(&efx->reset_work, efx_reset_work);
2345 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
2346 efx->pci_dev = pci_dev;
62776d03 2347 efx->msg_enable = debug;
8ceee660 2348 efx->state = STATE_INIT;
8ceee660 2349 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
8ceee660
BH
2350
2351 efx->net_dev = net_dev;
8ceee660
BH
2352 spin_lock_init(&efx->stats_lock);
2353 mutex_init(&efx->mac_lock);
2354 efx->phy_op = &efx_dummy_phy_operations;
68e7f45e 2355 efx->mdio.dev = net_dev;
766ca0fa 2356 INIT_WORK(&efx->mac_work, efx_mac_work);
9f2cb71c 2357 init_waitqueue_head(&efx->flush_wq);
8ceee660
BH
2358
2359 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
4642610c
BH
2360 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2361 if (!efx->channel[i])
2362 goto fail;
8ceee660
BH
2363 }
2364
2365 efx->type = type;
2366
8ceee660
BH
2367 EFX_BUG_ON_PARANOID(efx->type->phys_addr_channels > EFX_MAX_CHANNELS);
2368
2369 /* Higher numbered interrupt modes are less capable! */
2370 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2371 interrupt_mode);
2372
6977dc63
BH
2373 /* Would be good to use the net_dev name, but we're too early */
2374 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2375 pci_name(pci_dev));
2376 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
1ab00629 2377 if (!efx->workqueue)
4642610c 2378 goto fail;
8d9853d9 2379
8ceee660 2380 return 0;
4642610c
BH
2381
2382fail:
2383 efx_fini_struct(efx);
2384 return -ENOMEM;
8ceee660
BH
2385}
2386
2387static void efx_fini_struct(struct efx_nic *efx)
2388{
8313aca3
BH
2389 int i;
2390
2391 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2392 kfree(efx->channel[i]);
2393
8ceee660
BH
2394 if (efx->workqueue) {
2395 destroy_workqueue(efx->workqueue);
2396 efx->workqueue = NULL;
2397 }
2398}
2399
2400/**************************************************************************
2401 *
2402 * PCI interface
2403 *
2404 **************************************************************************/
2405
2406/* Main body of final NIC shutdown code
2407 * This is called only at module unload (or hotplug removal).
2408 */
2409static void efx_pci_remove_main(struct efx_nic *efx)
2410{
64d8ad6d
BH
2411#ifdef CONFIG_RFS_ACCEL
2412 free_irq_cpu_rmap(efx->net_dev->rx_cpu_rmap);
2413 efx->net_dev->rx_cpu_rmap = NULL;
2414#endif
7f967c01 2415 efx_stop_interrupts(efx, false);
152b6a62 2416 efx_nic_fini_interrupt(efx);
8ceee660 2417 efx_fini_port(efx);
ef2b90ee 2418 efx->type->fini(efx);
8ceee660
BH
2419 efx_fini_napi(efx);
2420 efx_remove_all(efx);
2421}
2422
2423/* Final NIC shutdown
2424 * This is called only at module unload (or hotplug removal).
2425 */
2426static void efx_pci_remove(struct pci_dev *pci_dev)
2427{
2428 struct efx_nic *efx;
2429
2430 efx = pci_get_drvdata(pci_dev);
2431 if (!efx)
2432 return;
2433
2434 /* Mark the NIC as fini, then stop the interface */
2435 rtnl_lock();
2436 efx->state = STATE_FINI;
2437 dev_close(efx->net_dev);
2438
2439 /* Allow any queued efx_resets() to complete */
2440 rtnl_unlock();
2441
7f967c01 2442 efx_stop_interrupts(efx, false);
8ceee660
BH
2443 efx_unregister_netdev(efx);
2444
7dde596e
BH
2445 efx_mtd_remove(efx);
2446
8ceee660
BH
2447 /* Wait for any scheduled resets to complete. No more will be
2448 * scheduled from this point because efx_stop_all() has been
2449 * called, we are no longer registered with driverlink, and
2450 * the net_device's have been removed. */
1ab00629 2451 cancel_work_sync(&efx->reset_work);
8ceee660
BH
2452
2453 efx_pci_remove_main(efx);
2454
8ceee660 2455 efx_fini_io(efx);
62776d03 2456 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
8ceee660
BH
2457
2458 pci_set_drvdata(pci_dev, NULL);
2459 efx_fini_struct(efx);
2460 free_netdev(efx->net_dev);
2461};
2462
2463/* Main body of NIC initialisation
2464 * This is called at module load (or hotplug insertion, theoretically).
2465 */
2466static int efx_pci_probe_main(struct efx_nic *efx)
2467{
2468 int rc;
2469
2470 /* Do start-of-day initialisation */
2471 rc = efx_probe_all(efx);
2472 if (rc)
2473 goto fail1;
2474
e8f14992 2475 efx_init_napi(efx);
8ceee660 2476
ef2b90ee 2477 rc = efx->type->init(efx);
8ceee660 2478 if (rc) {
62776d03
BH
2479 netif_err(efx, probe, efx->net_dev,
2480 "failed to initialise NIC\n");
278c0621 2481 goto fail3;
8ceee660
BH
2482 }
2483
2484 rc = efx_init_port(efx);
2485 if (rc) {
62776d03
BH
2486 netif_err(efx, probe, efx->net_dev,
2487 "failed to initialise port\n");
278c0621 2488 goto fail4;
8ceee660
BH
2489 }
2490
152b6a62 2491 rc = efx_nic_init_interrupt(efx);
8ceee660 2492 if (rc)
278c0621 2493 goto fail5;
7f967c01 2494 efx_start_interrupts(efx, false);
8ceee660
BH
2495
2496 return 0;
2497
278c0621 2498 fail5:
8ceee660 2499 efx_fini_port(efx);
8ceee660 2500 fail4:
ef2b90ee 2501 efx->type->fini(efx);
8ceee660
BH
2502 fail3:
2503 efx_fini_napi(efx);
8ceee660
BH
2504 efx_remove_all(efx);
2505 fail1:
2506 return rc;
2507}
2508
2509/* NIC initialisation
2510 *
2511 * This is called at module load (or hotplug insertion,
73ba7b68 2512 * theoretically). It sets up PCI mappings, resets the NIC,
8ceee660
BH
2513 * sets up and registers the network devices with the kernel and hooks
2514 * the interrupt service routine. It does not prepare the device for
2515 * transmission; this is left to the first time one of the network
2516 * interfaces is brought up (i.e. efx_net_open).
2517 */
2518static int __devinit efx_pci_probe(struct pci_dev *pci_dev,
2519 const struct pci_device_id *entry)
2520{
6c8c2513 2521 const struct efx_nic_type *type = (const struct efx_nic_type *) entry->driver_data;
8ceee660
BH
2522 struct net_device *net_dev;
2523 struct efx_nic *efx;
fadac6aa 2524 int rc;
8ceee660
BH
2525
2526 /* Allocate and initialise a struct net_device and struct efx_nic */
94b274bf
BH
2527 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
2528 EFX_MAX_RX_QUEUES);
8ceee660
BH
2529 if (!net_dev)
2530 return -ENOMEM;
c383b537 2531 net_dev->features |= (type->offload_features | NETIF_F_SG |
97bc5415 2532 NETIF_F_HIGHDMA | NETIF_F_TSO |
abfe9039 2533 NETIF_F_RXCSUM);
738a8f4b
BH
2534 if (type->offload_features & NETIF_F_V6_CSUM)
2535 net_dev->features |= NETIF_F_TSO6;
28506563
BH
2536 /* Mask for features that also apply to VLAN devices */
2537 net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
abfe9039
BH
2538 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
2539 NETIF_F_RXCSUM);
2540 /* All offloads can be toggled */
2541 net_dev->hw_features = net_dev->features & ~NETIF_F_HIGHDMA;
767e468c 2542 efx = netdev_priv(net_dev);
8ceee660 2543 pci_set_drvdata(pci_dev, efx);
62776d03 2544 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
8ceee660
BH
2545 rc = efx_init_struct(efx, type, pci_dev, net_dev);
2546 if (rc)
2547 goto fail1;
2548
62776d03 2549 netif_info(efx, probe, efx->net_dev,
ff79c8ac 2550 "Solarflare NIC detected\n");
8ceee660
BH
2551
2552 /* Set up basic I/O (BAR mappings etc) */
2553 rc = efx_init_io(efx);
2554 if (rc)
2555 goto fail2;
2556
fadac6aa 2557 rc = efx_pci_probe_main(efx);
fa402b2e 2558
fadac6aa
BH
2559 /* Serialise against efx_reset(). No more resets will be
2560 * scheduled since efx_stop_all() has been called, and we have
2561 * not and never have been registered.
2562 */
2563 cancel_work_sync(&efx->reset_work);
8ceee660 2564
fadac6aa
BH
2565 if (rc)
2566 goto fail3;
8ceee660 2567
fadac6aa
BH
2568 /* If there was a scheduled reset during probe, the NIC is
2569 * probably hosed anyway.
2570 */
2571 if (efx->reset_pending) {
2572 rc = -EIO;
8ceee660
BH
2573 goto fail4;
2574 }
2575
55edc6e6
BH
2576 /* Switch to the running state before we expose the device to the OS,
2577 * so that dev_open()|efx_start_all() will actually start the device */
8ceee660 2578 efx->state = STATE_RUNNING;
7dde596e 2579
8ceee660
BH
2580 rc = efx_register_netdev(efx);
2581 if (rc)
fadac6aa 2582 goto fail4;
8ceee660 2583
62776d03 2584 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
a5211bb5 2585
7c43161c 2586 /* Try to create MTDs, but allow this to fail */
a5211bb5 2587 rtnl_lock();
7c43161c 2588 rc = efx_mtd_probe(efx);
a5211bb5 2589 rtnl_unlock();
7c43161c
BH
2590 if (rc)
2591 netif_warn(efx, probe, efx->net_dev,
2592 "failed to create MTDs (%d)\n", rc);
2593
8ceee660
BH
2594 return 0;
2595
8ceee660 2596 fail4:
fadac6aa 2597 efx_pci_remove_main(efx);
8ceee660
BH
2598 fail3:
2599 efx_fini_io(efx);
2600 fail2:
2601 efx_fini_struct(efx);
2602 fail1:
5e2a911c 2603 WARN_ON(rc > 0);
62776d03 2604 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
8ceee660
BH
2605 free_netdev(net_dev);
2606 return rc;
2607}
2608
89c758fa
BH
2609static int efx_pm_freeze(struct device *dev)
2610{
2611 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2612
2613 efx->state = STATE_FINI;
2614
2615 netif_device_detach(efx->net_dev);
2616
2617 efx_stop_all(efx);
7f967c01 2618 efx_stop_interrupts(efx, false);
89c758fa
BH
2619
2620 return 0;
2621}
2622
2623static int efx_pm_thaw(struct device *dev)
2624{
2625 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2626
2627 efx->state = STATE_INIT;
2628
7f967c01 2629 efx_start_interrupts(efx, false);
89c758fa
BH
2630
2631 mutex_lock(&efx->mac_lock);
2632 efx->phy_op->reconfigure(efx);
2633 mutex_unlock(&efx->mac_lock);
2634
2635 efx_start_all(efx);
2636
2637 netif_device_attach(efx->net_dev);
2638
2639 efx->state = STATE_RUNNING;
2640
2641 efx->type->resume_wol(efx);
2642
319ba649
SH
2643 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
2644 queue_work(reset_workqueue, &efx->reset_work);
2645
89c758fa
BH
2646 return 0;
2647}
2648
2649static int efx_pm_poweroff(struct device *dev)
2650{
2651 struct pci_dev *pci_dev = to_pci_dev(dev);
2652 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2653
2654 efx->type->fini(efx);
2655
a7d529ae 2656 efx->reset_pending = 0;
89c758fa
BH
2657
2658 pci_save_state(pci_dev);
2659 return pci_set_power_state(pci_dev, PCI_D3hot);
2660}
2661
2662/* Used for both resume and restore */
2663static int efx_pm_resume(struct device *dev)
2664{
2665 struct pci_dev *pci_dev = to_pci_dev(dev);
2666 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2667 int rc;
2668
2669 rc = pci_set_power_state(pci_dev, PCI_D0);
2670 if (rc)
2671 return rc;
2672 pci_restore_state(pci_dev);
2673 rc = pci_enable_device(pci_dev);
2674 if (rc)
2675 return rc;
2676 pci_set_master(efx->pci_dev);
2677 rc = efx->type->reset(efx, RESET_TYPE_ALL);
2678 if (rc)
2679 return rc;
2680 rc = efx->type->init(efx);
2681 if (rc)
2682 return rc;
2683 efx_pm_thaw(dev);
2684 return 0;
2685}
2686
2687static int efx_pm_suspend(struct device *dev)
2688{
2689 int rc;
2690
2691 efx_pm_freeze(dev);
2692 rc = efx_pm_poweroff(dev);
2693 if (rc)
2694 efx_pm_resume(dev);
2695 return rc;
2696}
2697
18e83e4c 2698static const struct dev_pm_ops efx_pm_ops = {
89c758fa
BH
2699 .suspend = efx_pm_suspend,
2700 .resume = efx_pm_resume,
2701 .freeze = efx_pm_freeze,
2702 .thaw = efx_pm_thaw,
2703 .poweroff = efx_pm_poweroff,
2704 .restore = efx_pm_resume,
2705};
2706
8ceee660 2707static struct pci_driver efx_pci_driver = {
c5d5f5fd 2708 .name = KBUILD_MODNAME,
8ceee660
BH
2709 .id_table = efx_pci_table,
2710 .probe = efx_pci_probe,
2711 .remove = efx_pci_remove,
89c758fa 2712 .driver.pm = &efx_pm_ops,
8ceee660
BH
2713};
2714
2715/**************************************************************************
2716 *
2717 * Kernel module interface
2718 *
2719 *************************************************************************/
2720
2721module_param(interrupt_mode, uint, 0444);
2722MODULE_PARM_DESC(interrupt_mode,
2723 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
2724
2725static int __init efx_init_module(void)
2726{
2727 int rc;
2728
2729 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
2730
2731 rc = register_netdevice_notifier(&efx_netdev_notifier);
2732 if (rc)
2733 goto err_notifier;
2734
1ab00629
SH
2735 reset_workqueue = create_singlethread_workqueue("sfc_reset");
2736 if (!reset_workqueue) {
2737 rc = -ENOMEM;
2738 goto err_reset;
2739 }
8ceee660
BH
2740
2741 rc = pci_register_driver(&efx_pci_driver);
2742 if (rc < 0)
2743 goto err_pci;
2744
2745 return 0;
2746
2747 err_pci:
1ab00629
SH
2748 destroy_workqueue(reset_workqueue);
2749 err_reset:
8ceee660
BH
2750 unregister_netdevice_notifier(&efx_netdev_notifier);
2751 err_notifier:
2752 return rc;
2753}
2754
2755static void __exit efx_exit_module(void)
2756{
2757 printk(KERN_INFO "Solarflare NET driver unloading\n");
2758
2759 pci_unregister_driver(&efx_pci_driver);
1ab00629 2760 destroy_workqueue(reset_workqueue);
8ceee660
BH
2761 unregister_netdevice_notifier(&efx_netdev_notifier);
2762
2763}
2764
2765module_init(efx_init_module);
2766module_exit(efx_exit_module);
2767
906bb26c
BH
2768MODULE_AUTHOR("Solarflare Communications and "
2769 "Michael Brown <mbrown@fensystems.co.uk>");
8ceee660
BH
2770MODULE_DESCRIPTION("Solarflare Communications network driver");
2771MODULE_LICENSE("GPL");
2772MODULE_DEVICE_TABLE(pci, efx_pci_table);
This page took 0.71558 seconds and 5 git commands to generate.