sfc: add ndo_set_vf_link_state() function for EF10
[firefly-linux-kernel-4.4.55.git] / drivers / net / ethernet / sfc / efx.c
1 /****************************************************************************
2  * Driver for Solarflare network controllers and boards
3  * Copyright 2005-2006 Fen Systems Ltd.
4  * Copyright 2005-2013 Solarflare Communications Inc.
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/ethtool.h>
21 #include <linux/topology.h>
22 #include <linux/gfp.h>
23 #include <linux/aer.h>
24 #include <linux/interrupt.h>
25 #include "net_driver.h"
26 #include "efx.h"
27 #include "nic.h"
28 #include "selftest.h"
29 #include "sriov.h"
30
31 #include "mcdi.h"
32 #include "workarounds.h"
33
34 /**************************************************************************
35  *
36  * Type name strings
37  *
38  **************************************************************************
39  */
40
41 /* Loopback mode names (see LOOPBACK_MODE()) */
42 const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
43 const char *const efx_loopback_mode_names[] = {
44         [LOOPBACK_NONE]         = "NONE",
45         [LOOPBACK_DATA]         = "DATAPATH",
46         [LOOPBACK_GMAC]         = "GMAC",
47         [LOOPBACK_XGMII]        = "XGMII",
48         [LOOPBACK_XGXS]         = "XGXS",
49         [LOOPBACK_XAUI]         = "XAUI",
50         [LOOPBACK_GMII]         = "GMII",
51         [LOOPBACK_SGMII]        = "SGMII",
52         [LOOPBACK_XGBR]         = "XGBR",
53         [LOOPBACK_XFI]          = "XFI",
54         [LOOPBACK_XAUI_FAR]     = "XAUI_FAR",
55         [LOOPBACK_GMII_FAR]     = "GMII_FAR",
56         [LOOPBACK_SGMII_FAR]    = "SGMII_FAR",
57         [LOOPBACK_XFI_FAR]      = "XFI_FAR",
58         [LOOPBACK_GPHY]         = "GPHY",
59         [LOOPBACK_PHYXS]        = "PHYXS",
60         [LOOPBACK_PCS]          = "PCS",
61         [LOOPBACK_PMAPMD]       = "PMA/PMD",
62         [LOOPBACK_XPORT]        = "XPORT",
63         [LOOPBACK_XGMII_WS]     = "XGMII_WS",
64         [LOOPBACK_XAUI_WS]      = "XAUI_WS",
65         [LOOPBACK_XAUI_WS_FAR]  = "XAUI_WS_FAR",
66         [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
67         [LOOPBACK_GMII_WS]      = "GMII_WS",
68         [LOOPBACK_XFI_WS]       = "XFI_WS",
69         [LOOPBACK_XFI_WS_FAR]   = "XFI_WS_FAR",
70         [LOOPBACK_PHYXS_WS]     = "PHYXS_WS",
71 };
72
73 const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
74 const char *const efx_reset_type_names[] = {
75         [RESET_TYPE_INVISIBLE]          = "INVISIBLE",
76         [RESET_TYPE_ALL]                = "ALL",
77         [RESET_TYPE_RECOVER_OR_ALL]     = "RECOVER_OR_ALL",
78         [RESET_TYPE_WORLD]              = "WORLD",
79         [RESET_TYPE_RECOVER_OR_DISABLE] = "RECOVER_OR_DISABLE",
80         [RESET_TYPE_DATAPATH]           = "DATAPATH",
81         [RESET_TYPE_MC_BIST]            = "MC_BIST",
82         [RESET_TYPE_DISABLE]            = "DISABLE",
83         [RESET_TYPE_TX_WATCHDOG]        = "TX_WATCHDOG",
84         [RESET_TYPE_INT_ERROR]          = "INT_ERROR",
85         [RESET_TYPE_RX_RECOVERY]        = "RX_RECOVERY",
86         [RESET_TYPE_DMA_ERROR]          = "DMA_ERROR",
87         [RESET_TYPE_TX_SKIP]            = "TX_SKIP",
88         [RESET_TYPE_MC_FAILURE]         = "MC_FAILURE",
89         [RESET_TYPE_MCDI_TIMEOUT]       = "MCDI_TIMEOUT (FLR)",
90 };
91
92 /* Reset workqueue. If any NIC has a hardware failure then a reset will be
93  * queued onto this work queue. This is not a per-nic work queue, because
94  * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
95  */
96 static struct workqueue_struct *reset_workqueue;
97
98 /* How often and how many times to poll for a reset while waiting for a
99  * BIST that another function started to complete.
100  */
101 #define BIST_WAIT_DELAY_MS      100
102 #define BIST_WAIT_DELAY_COUNT   100
103
104 /**************************************************************************
105  *
106  * Configurable values
107  *
108  *************************************************************************/
109
110 /*
111  * Use separate channels for TX and RX events
112  *
113  * Set this to 1 to use separate channels for TX and RX. It allows us
114  * to control interrupt affinity separately for TX and RX.
115  *
116  * This is only used in MSI-X interrupt mode
117  */
118 static bool separate_tx_channels;
119 module_param(separate_tx_channels, bool, 0444);
120 MODULE_PARM_DESC(separate_tx_channels,
121                  "Use separate channels for TX and RX");
122
123 /* This is the weight assigned to each of the (per-channel) virtual
124  * NAPI devices.
125  */
126 static int napi_weight = 64;
127
128 /* This is the time (in jiffies) between invocations of the hardware
129  * monitor.
130  * On Falcon-based NICs, this will:
131  * - Check the on-board hardware monitor;
132  * - Poll the link state and reconfigure the hardware as necessary.
133  * On Siena-based NICs for power systems with EEH support, this will give EEH a
134  * chance to start.
135  */
136 static unsigned int efx_monitor_interval = 1 * HZ;
137
138 /* Initial interrupt moderation settings.  They can be modified after
139  * module load with ethtool.
140  *
141  * The default for RX should strike a balance between increasing the
142  * round-trip latency and reducing overhead.
143  */
144 static unsigned int rx_irq_mod_usec = 60;
145
146 /* Initial interrupt moderation settings.  They can be modified after
147  * module load with ethtool.
148  *
149  * This default is chosen to ensure that a 10G link does not go idle
150  * while a TX queue is stopped after it has become full.  A queue is
151  * restarted when it drops below half full.  The time this takes (assuming
152  * worst case 3 descriptors per packet and 1024 descriptors) is
153  *   512 / 3 * 1.2 = 205 usec.
154  */
155 static unsigned int tx_irq_mod_usec = 150;
156
157 /* This is the first interrupt mode to try out of:
158  * 0 => MSI-X
159  * 1 => MSI
160  * 2 => legacy
161  */
162 static unsigned int interrupt_mode;
163
164 /* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
165  * i.e. the number of CPUs among which we may distribute simultaneous
166  * interrupt handling.
167  *
168  * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
169  * The default (0) means to assign an interrupt to each core.
170  */
171 static unsigned int rss_cpus;
172 module_param(rss_cpus, uint, 0444);
173 MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
174
175 static bool phy_flash_cfg;
176 module_param(phy_flash_cfg, bool, 0644);
177 MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
178
179 static unsigned irq_adapt_low_thresh = 8000;
180 module_param(irq_adapt_low_thresh, uint, 0644);
181 MODULE_PARM_DESC(irq_adapt_low_thresh,
182                  "Threshold score for reducing IRQ moderation");
183
184 static unsigned irq_adapt_high_thresh = 16000;
185 module_param(irq_adapt_high_thresh, uint, 0644);
186 MODULE_PARM_DESC(irq_adapt_high_thresh,
187                  "Threshold score for increasing IRQ moderation");
188
189 static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
190                          NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
191                          NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
192                          NETIF_MSG_TX_ERR | NETIF_MSG_HW);
193 module_param(debug, uint, 0);
194 MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
195
196 /**************************************************************************
197  *
198  * Utility functions and prototypes
199  *
200  *************************************************************************/
201
202 static int efx_soft_enable_interrupts(struct efx_nic *efx);
203 static void efx_soft_disable_interrupts(struct efx_nic *efx);
204 static void efx_remove_channel(struct efx_channel *channel);
205 static void efx_remove_channels(struct efx_nic *efx);
206 static const struct efx_channel_type efx_default_channel_type;
207 static void efx_remove_port(struct efx_nic *efx);
208 static void efx_init_napi_channel(struct efx_channel *channel);
209 static void efx_fini_napi(struct efx_nic *efx);
210 static void efx_fini_napi_channel(struct efx_channel *channel);
211 static void efx_fini_struct(struct efx_nic *efx);
212 static void efx_start_all(struct efx_nic *efx);
213 static void efx_stop_all(struct efx_nic *efx);
214
215 #define EFX_ASSERT_RESET_SERIALISED(efx)                \
216         do {                                            \
217                 if ((efx->state == STATE_READY) ||      \
218                     (efx->state == STATE_RECOVERY) ||   \
219                     (efx->state == STATE_DISABLED))     \
220                         ASSERT_RTNL();                  \
221         } while (0)
222
223 static int efx_check_disabled(struct efx_nic *efx)
224 {
225         if (efx->state == STATE_DISABLED || efx->state == STATE_RECOVERY) {
226                 netif_err(efx, drv, efx->net_dev,
227                           "device is disabled due to earlier errors\n");
228                 return -EIO;
229         }
230         return 0;
231 }
232
233 /**************************************************************************
234  *
235  * Event queue processing
236  *
237  *************************************************************************/
238
239 /* Process channel's event queue
240  *
241  * This function is responsible for processing the event queue of a
242  * single channel.  The caller must guarantee that this function will
243  * never be concurrently called more than once on the same channel,
244  * though different channels may be being processed concurrently.
245  */
246 static int efx_process_channel(struct efx_channel *channel, int budget)
247 {
248         int spent;
249
250         if (unlikely(!channel->enabled))
251                 return 0;
252
253         spent = efx_nic_process_eventq(channel, budget);
254         if (spent && efx_channel_has_rx_queue(channel)) {
255                 struct efx_rx_queue *rx_queue =
256                         efx_channel_get_rx_queue(channel);
257
258                 efx_rx_flush_packet(channel);
259                 efx_fast_push_rx_descriptors(rx_queue, true);
260         }
261
262         return spent;
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  */
270 static int efx_poll(struct napi_struct *napi, int budget)
271 {
272         struct efx_channel *channel =
273                 container_of(napi, struct efx_channel, napi_str);
274         struct efx_nic *efx = channel->efx;
275         int spent;
276
277         if (!efx_channel_lock_napi(channel))
278                 return budget;
279
280         netif_vdbg(efx, intr, efx->net_dev,
281                    "channel %d NAPI poll executing on CPU %d\n",
282                    channel->channel, raw_smp_processor_id());
283
284         spent = efx_process_channel(channel, budget);
285
286         if (spent < budget) {
287                 if (efx_channel_has_rx_queue(channel) &&
288                     efx->irq_rx_adaptive &&
289                     unlikely(++channel->irq_count == 1000)) {
290                         if (unlikely(channel->irq_mod_score <
291                                      irq_adapt_low_thresh)) {
292                                 if (channel->irq_moderation > 1) {
293                                         channel->irq_moderation -= 1;
294                                         efx->type->push_irq_moderation(channel);
295                                 }
296                         } else if (unlikely(channel->irq_mod_score >
297                                             irq_adapt_high_thresh)) {
298                                 if (channel->irq_moderation <
299                                     efx->irq_rx_moderation) {
300                                         channel->irq_moderation += 1;
301                                         efx->type->push_irq_moderation(channel);
302                                 }
303                         }
304                         channel->irq_count = 0;
305                         channel->irq_mod_score = 0;
306                 }
307
308                 efx_filter_rfs_expire(channel);
309
310                 /* There is no race here; although napi_disable() will
311                  * only wait for napi_complete(), this isn't a problem
312                  * since efx_nic_eventq_read_ack() will have no effect if
313                  * interrupts have already been disabled.
314                  */
315                 napi_complete(napi);
316                 efx_nic_eventq_read_ack(channel);
317         }
318
319         efx_channel_unlock_napi(channel);
320         return spent;
321 }
322
323 /* Create event queue
324  * Event queue memory allocations are done only once.  If the channel
325  * is reset, the memory buffer will be reused; this guards against
326  * errors during channel reset and also simplifies interrupt handling.
327  */
328 static int efx_probe_eventq(struct efx_channel *channel)
329 {
330         struct efx_nic *efx = channel->efx;
331         unsigned long entries;
332
333         netif_dbg(efx, probe, efx->net_dev,
334                   "chan %d create event queue\n", channel->channel);
335
336         /* Build an event queue with room for one event per tx and rx buffer,
337          * plus some extra for link state events and MCDI completions. */
338         entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
339         EFX_BUG_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
340         channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
341
342         return efx_nic_probe_eventq(channel);
343 }
344
345 /* Prepare channel's event queue */
346 static int efx_init_eventq(struct efx_channel *channel)
347 {
348         struct efx_nic *efx = channel->efx;
349         int rc;
350
351         EFX_WARN_ON_PARANOID(channel->eventq_init);
352
353         netif_dbg(efx, drv, efx->net_dev,
354                   "chan %d init event queue\n", channel->channel);
355
356         rc = efx_nic_init_eventq(channel);
357         if (rc == 0) {
358                 efx->type->push_irq_moderation(channel);
359                 channel->eventq_read_ptr = 0;
360                 channel->eventq_init = true;
361         }
362         return rc;
363 }
364
365 /* Enable event queue processing and NAPI */
366 void efx_start_eventq(struct efx_channel *channel)
367 {
368         netif_dbg(channel->efx, ifup, channel->efx->net_dev,
369                   "chan %d start event queue\n", channel->channel);
370
371         /* Make sure the NAPI handler sees the enabled flag set */
372         channel->enabled = true;
373         smp_wmb();
374
375         efx_channel_enable(channel);
376         napi_enable(&channel->napi_str);
377         efx_nic_eventq_read_ack(channel);
378 }
379
380 /* Disable event queue processing and NAPI */
381 void efx_stop_eventq(struct efx_channel *channel)
382 {
383         if (!channel->enabled)
384                 return;
385
386         napi_disable(&channel->napi_str);
387         while (!efx_channel_disable(channel))
388                 usleep_range(1000, 20000);
389         channel->enabled = false;
390 }
391
392 static void efx_fini_eventq(struct efx_channel *channel)
393 {
394         if (!channel->eventq_init)
395                 return;
396
397         netif_dbg(channel->efx, drv, channel->efx->net_dev,
398                   "chan %d fini event queue\n", channel->channel);
399
400         efx_nic_fini_eventq(channel);
401         channel->eventq_init = false;
402 }
403
404 static void efx_remove_eventq(struct efx_channel *channel)
405 {
406         netif_dbg(channel->efx, drv, channel->efx->net_dev,
407                   "chan %d remove event queue\n", channel->channel);
408
409         efx_nic_remove_eventq(channel);
410 }
411
412 /**************************************************************************
413  *
414  * Channel handling
415  *
416  *************************************************************************/
417
418 /* Allocate and initialise a channel structure. */
419 static struct efx_channel *
420 efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
421 {
422         struct efx_channel *channel;
423         struct efx_rx_queue *rx_queue;
424         struct efx_tx_queue *tx_queue;
425         int j;
426
427         channel = kzalloc(sizeof(*channel), GFP_KERNEL);
428         if (!channel)
429                 return NULL;
430
431         channel->efx = efx;
432         channel->channel = i;
433         channel->type = &efx_default_channel_type;
434
435         for (j = 0; j < EFX_TXQ_TYPES; j++) {
436                 tx_queue = &channel->tx_queue[j];
437                 tx_queue->efx = efx;
438                 tx_queue->queue = i * EFX_TXQ_TYPES + j;
439                 tx_queue->channel = channel;
440         }
441
442         rx_queue = &channel->rx_queue;
443         rx_queue->efx = efx;
444         setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
445                     (unsigned long)rx_queue);
446
447         return channel;
448 }
449
450 /* Allocate and initialise a channel structure, copying parameters
451  * (but not resources) from an old channel structure.
452  */
453 static struct efx_channel *
454 efx_copy_channel(const struct efx_channel *old_channel)
455 {
456         struct efx_channel *channel;
457         struct efx_rx_queue *rx_queue;
458         struct efx_tx_queue *tx_queue;
459         int j;
460
461         channel = kmalloc(sizeof(*channel), GFP_KERNEL);
462         if (!channel)
463                 return NULL;
464
465         *channel = *old_channel;
466
467         channel->napi_dev = NULL;
468         memset(&channel->eventq, 0, sizeof(channel->eventq));
469
470         for (j = 0; j < EFX_TXQ_TYPES; j++) {
471                 tx_queue = &channel->tx_queue[j];
472                 if (tx_queue->channel)
473                         tx_queue->channel = channel;
474                 tx_queue->buffer = NULL;
475                 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
476         }
477
478         rx_queue = &channel->rx_queue;
479         rx_queue->buffer = NULL;
480         memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
481         setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
482                     (unsigned long)rx_queue);
483
484         return channel;
485 }
486
487 static int efx_probe_channel(struct efx_channel *channel)
488 {
489         struct efx_tx_queue *tx_queue;
490         struct efx_rx_queue *rx_queue;
491         int rc;
492
493         netif_dbg(channel->efx, probe, channel->efx->net_dev,
494                   "creating channel %d\n", channel->channel);
495
496         rc = channel->type->pre_probe(channel);
497         if (rc)
498                 goto fail;
499
500         rc = efx_probe_eventq(channel);
501         if (rc)
502                 goto fail;
503
504         efx_for_each_channel_tx_queue(tx_queue, channel) {
505                 rc = efx_probe_tx_queue(tx_queue);
506                 if (rc)
507                         goto fail;
508         }
509
510         efx_for_each_channel_rx_queue(rx_queue, channel) {
511                 rc = efx_probe_rx_queue(rx_queue);
512                 if (rc)
513                         goto fail;
514         }
515
516         return 0;
517
518 fail:
519         efx_remove_channel(channel);
520         return rc;
521 }
522
523 static void
524 efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
525 {
526         struct efx_nic *efx = channel->efx;
527         const char *type;
528         int number;
529
530         number = channel->channel;
531         if (efx->tx_channel_offset == 0) {
532                 type = "";
533         } else if (channel->channel < efx->tx_channel_offset) {
534                 type = "-rx";
535         } else {
536                 type = "-tx";
537                 number -= efx->tx_channel_offset;
538         }
539         snprintf(buf, len, "%s%s-%d", efx->name, type, number);
540 }
541
542 static void efx_set_channel_names(struct efx_nic *efx)
543 {
544         struct efx_channel *channel;
545
546         efx_for_each_channel(channel, efx)
547                 channel->type->get_name(channel,
548                                         efx->msi_context[channel->channel].name,
549                                         sizeof(efx->msi_context[0].name));
550 }
551
552 static int efx_probe_channels(struct efx_nic *efx)
553 {
554         struct efx_channel *channel;
555         int rc;
556
557         /* Restart special buffer allocation */
558         efx->next_buffer_table = 0;
559
560         /* Probe channels in reverse, so that any 'extra' channels
561          * use the start of the buffer table. This allows the traffic
562          * channels to be resized without moving them or wasting the
563          * entries before them.
564          */
565         efx_for_each_channel_rev(channel, efx) {
566                 rc = efx_probe_channel(channel);
567                 if (rc) {
568                         netif_err(efx, probe, efx->net_dev,
569                                   "failed to create channel %d\n",
570                                   channel->channel);
571                         goto fail;
572                 }
573         }
574         efx_set_channel_names(efx);
575
576         return 0;
577
578 fail:
579         efx_remove_channels(efx);
580         return rc;
581 }
582
583 /* Channels are shutdown and reinitialised whilst the NIC is running
584  * to propagate configuration changes (mtu, checksum offload), or
585  * to clear hardware error conditions
586  */
587 static void efx_start_datapath(struct efx_nic *efx)
588 {
589         bool old_rx_scatter = efx->rx_scatter;
590         struct efx_tx_queue *tx_queue;
591         struct efx_rx_queue *rx_queue;
592         struct efx_channel *channel;
593         size_t rx_buf_len;
594
595         /* Calculate the rx buffer allocation parameters required to
596          * support the current MTU, including padding for header
597          * alignment and overruns.
598          */
599         efx->rx_dma_len = (efx->rx_prefix_size +
600                            EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
601                            efx->type->rx_buffer_padding);
602         rx_buf_len = (sizeof(struct efx_rx_page_state) +
603                       efx->rx_ip_align + efx->rx_dma_len);
604         if (rx_buf_len <= PAGE_SIZE) {
605                 efx->rx_scatter = efx->type->always_rx_scatter;
606                 efx->rx_buffer_order = 0;
607         } else if (efx->type->can_rx_scatter) {
608                 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
609                 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
610                              2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
611                                        EFX_RX_BUF_ALIGNMENT) >
612                              PAGE_SIZE);
613                 efx->rx_scatter = true;
614                 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
615                 efx->rx_buffer_order = 0;
616         } else {
617                 efx->rx_scatter = false;
618                 efx->rx_buffer_order = get_order(rx_buf_len);
619         }
620
621         efx_rx_config_page_split(efx);
622         if (efx->rx_buffer_order)
623                 netif_dbg(efx, drv, efx->net_dev,
624                           "RX buf len=%u; page order=%u batch=%u\n",
625                           efx->rx_dma_len, efx->rx_buffer_order,
626                           efx->rx_pages_per_batch);
627         else
628                 netif_dbg(efx, drv, efx->net_dev,
629                           "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
630                           efx->rx_dma_len, efx->rx_page_buf_step,
631                           efx->rx_bufs_per_page, efx->rx_pages_per_batch);
632
633         /* RX filters may also have scatter-enabled flags */
634         if (efx->rx_scatter != old_rx_scatter)
635                 efx->type->filter_update_rx_scatter(efx);
636
637         /* We must keep at least one descriptor in a TX ring empty.
638          * We could avoid this when the queue size does not exactly
639          * match the hardware ring size, but it's not that important.
640          * Therefore we stop the queue when one more skb might fill
641          * the ring completely.  We wake it when half way back to
642          * empty.
643          */
644         efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
645         efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
646
647         /* Initialise the channels */
648         efx_for_each_channel(channel, efx) {
649                 efx_for_each_channel_tx_queue(tx_queue, channel) {
650                         efx_init_tx_queue(tx_queue);
651                         atomic_inc(&efx->active_queues);
652                 }
653
654                 efx_for_each_channel_rx_queue(rx_queue, channel) {
655                         efx_init_rx_queue(rx_queue);
656                         atomic_inc(&efx->active_queues);
657                         efx_stop_eventq(channel);
658                         efx_fast_push_rx_descriptors(rx_queue, false);
659                         efx_start_eventq(channel);
660                 }
661
662                 WARN_ON(channel->rx_pkt_n_frags);
663         }
664
665         efx_ptp_start_datapath(efx);
666
667         if (netif_device_present(efx->net_dev))
668                 netif_tx_wake_all_queues(efx->net_dev);
669 }
670
671 static void efx_stop_datapath(struct efx_nic *efx)
672 {
673         struct efx_channel *channel;
674         struct efx_tx_queue *tx_queue;
675         struct efx_rx_queue *rx_queue;
676         int rc;
677
678         EFX_ASSERT_RESET_SERIALISED(efx);
679         BUG_ON(efx->port_enabled);
680
681         efx_ptp_stop_datapath(efx);
682
683         /* Stop RX refill */
684         efx_for_each_channel(channel, efx) {
685                 efx_for_each_channel_rx_queue(rx_queue, channel)
686                         rx_queue->refill_enabled = false;
687         }
688
689         efx_for_each_channel(channel, efx) {
690                 /* RX packet processing is pipelined, so wait for the
691                  * NAPI handler to complete.  At least event queue 0
692                  * might be kept active by non-data events, so don't
693                  * use napi_synchronize() but actually disable NAPI
694                  * temporarily.
695                  */
696                 if (efx_channel_has_rx_queue(channel)) {
697                         efx_stop_eventq(channel);
698                         efx_start_eventq(channel);
699                 }
700         }
701
702         rc = efx->type->fini_dmaq(efx);
703         if (rc && EFX_WORKAROUND_7803(efx)) {
704                 /* Schedule a reset to recover from the flush failure. The
705                  * descriptor caches reference memory we're about to free,
706                  * but falcon_reconfigure_mac_wrapper() won't reconnect
707                  * the MACs because of the pending reset.
708                  */
709                 netif_err(efx, drv, efx->net_dev,
710                           "Resetting to recover from flush failure\n");
711                 efx_schedule_reset(efx, RESET_TYPE_ALL);
712         } else if (rc) {
713                 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
714         } else {
715                 netif_dbg(efx, drv, efx->net_dev,
716                           "successfully flushed all queues\n");
717         }
718
719         efx_for_each_channel(channel, efx) {
720                 efx_for_each_channel_rx_queue(rx_queue, channel)
721                         efx_fini_rx_queue(rx_queue);
722                 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
723                         efx_fini_tx_queue(tx_queue);
724         }
725 }
726
727 static void efx_remove_channel(struct efx_channel *channel)
728 {
729         struct efx_tx_queue *tx_queue;
730         struct efx_rx_queue *rx_queue;
731
732         netif_dbg(channel->efx, drv, channel->efx->net_dev,
733                   "destroy chan %d\n", channel->channel);
734
735         efx_for_each_channel_rx_queue(rx_queue, channel)
736                 efx_remove_rx_queue(rx_queue);
737         efx_for_each_possible_channel_tx_queue(tx_queue, channel)
738                 efx_remove_tx_queue(tx_queue);
739         efx_remove_eventq(channel);
740         channel->type->post_remove(channel);
741 }
742
743 static void efx_remove_channels(struct efx_nic *efx)
744 {
745         struct efx_channel *channel;
746
747         efx_for_each_channel(channel, efx)
748                 efx_remove_channel(channel);
749 }
750
751 int
752 efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
753 {
754         struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
755         u32 old_rxq_entries, old_txq_entries;
756         unsigned i, next_buffer_table = 0;
757         int rc, rc2;
758
759         rc = efx_check_disabled(efx);
760         if (rc)
761                 return rc;
762
763         /* Not all channels should be reallocated. We must avoid
764          * reallocating their buffer table entries.
765          */
766         efx_for_each_channel(channel, efx) {
767                 struct efx_rx_queue *rx_queue;
768                 struct efx_tx_queue *tx_queue;
769
770                 if (channel->type->copy)
771                         continue;
772                 next_buffer_table = max(next_buffer_table,
773                                         channel->eventq.index +
774                                         channel->eventq.entries);
775                 efx_for_each_channel_rx_queue(rx_queue, channel)
776                         next_buffer_table = max(next_buffer_table,
777                                                 rx_queue->rxd.index +
778                                                 rx_queue->rxd.entries);
779                 efx_for_each_channel_tx_queue(tx_queue, channel)
780                         next_buffer_table = max(next_buffer_table,
781                                                 tx_queue->txd.index +
782                                                 tx_queue->txd.entries);
783         }
784
785         efx_device_detach_sync(efx);
786         efx_stop_all(efx);
787         efx_soft_disable_interrupts(efx);
788
789         /* Clone channels (where possible) */
790         memset(other_channel, 0, sizeof(other_channel));
791         for (i = 0; i < efx->n_channels; i++) {
792                 channel = efx->channel[i];
793                 if (channel->type->copy)
794                         channel = channel->type->copy(channel);
795                 if (!channel) {
796                         rc = -ENOMEM;
797                         goto out;
798                 }
799                 other_channel[i] = channel;
800         }
801
802         /* Swap entry counts and channel pointers */
803         old_rxq_entries = efx->rxq_entries;
804         old_txq_entries = efx->txq_entries;
805         efx->rxq_entries = rxq_entries;
806         efx->txq_entries = txq_entries;
807         for (i = 0; i < efx->n_channels; i++) {
808                 channel = efx->channel[i];
809                 efx->channel[i] = other_channel[i];
810                 other_channel[i] = channel;
811         }
812
813         /* Restart buffer table allocation */
814         efx->next_buffer_table = next_buffer_table;
815
816         for (i = 0; i < efx->n_channels; i++) {
817                 channel = efx->channel[i];
818                 if (!channel->type->copy)
819                         continue;
820                 rc = efx_probe_channel(channel);
821                 if (rc)
822                         goto rollback;
823                 efx_init_napi_channel(efx->channel[i]);
824         }
825
826 out:
827         /* Destroy unused channel structures */
828         for (i = 0; i < efx->n_channels; i++) {
829                 channel = other_channel[i];
830                 if (channel && channel->type->copy) {
831                         efx_fini_napi_channel(channel);
832                         efx_remove_channel(channel);
833                         kfree(channel);
834                 }
835         }
836
837         rc2 = efx_soft_enable_interrupts(efx);
838         if (rc2) {
839                 rc = rc ? rc : rc2;
840                 netif_err(efx, drv, efx->net_dev,
841                           "unable to restart interrupts on channel reallocation\n");
842                 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
843         } else {
844                 efx_start_all(efx);
845                 netif_device_attach(efx->net_dev);
846         }
847         return rc;
848
849 rollback:
850         /* Swap back */
851         efx->rxq_entries = old_rxq_entries;
852         efx->txq_entries = old_txq_entries;
853         for (i = 0; i < efx->n_channels; i++) {
854                 channel = efx->channel[i];
855                 efx->channel[i] = other_channel[i];
856                 other_channel[i] = channel;
857         }
858         goto out;
859 }
860
861 void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
862 {
863         mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
864 }
865
866 static const struct efx_channel_type efx_default_channel_type = {
867         .pre_probe              = efx_channel_dummy_op_int,
868         .post_remove            = efx_channel_dummy_op_void,
869         .get_name               = efx_get_channel_name,
870         .copy                   = efx_copy_channel,
871         .keep_eventq            = false,
872 };
873
874 int efx_channel_dummy_op_int(struct efx_channel *channel)
875 {
876         return 0;
877 }
878
879 void efx_channel_dummy_op_void(struct efx_channel *channel)
880 {
881 }
882
883 /**************************************************************************
884  *
885  * Port handling
886  *
887  **************************************************************************/
888
889 /* This ensures that the kernel is kept informed (via
890  * netif_carrier_on/off) of the link status, and also maintains the
891  * link status's stop on the port's TX queue.
892  */
893 void efx_link_status_changed(struct efx_nic *efx)
894 {
895         struct efx_link_state *link_state = &efx->link_state;
896
897         /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
898          * that no events are triggered between unregister_netdev() and the
899          * driver unloading. A more general condition is that NETDEV_CHANGE
900          * can only be generated between NETDEV_UP and NETDEV_DOWN */
901         if (!netif_running(efx->net_dev))
902                 return;
903
904         if (link_state->up != netif_carrier_ok(efx->net_dev)) {
905                 efx->n_link_state_changes++;
906
907                 if (link_state->up)
908                         netif_carrier_on(efx->net_dev);
909                 else
910                         netif_carrier_off(efx->net_dev);
911         }
912
913         /* Status message for kernel log */
914         if (link_state->up)
915                 netif_info(efx, link, efx->net_dev,
916                            "link up at %uMbps %s-duplex (MTU %d)\n",
917                            link_state->speed, link_state->fd ? "full" : "half",
918                            efx->net_dev->mtu);
919         else
920                 netif_info(efx, link, efx->net_dev, "link down\n");
921 }
922
923 void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
924 {
925         efx->link_advertising = advertising;
926         if (advertising) {
927                 if (advertising & ADVERTISED_Pause)
928                         efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
929                 else
930                         efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
931                 if (advertising & ADVERTISED_Asym_Pause)
932                         efx->wanted_fc ^= EFX_FC_TX;
933         }
934 }
935
936 void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
937 {
938         efx->wanted_fc = wanted_fc;
939         if (efx->link_advertising) {
940                 if (wanted_fc & EFX_FC_RX)
941                         efx->link_advertising |= (ADVERTISED_Pause |
942                                                   ADVERTISED_Asym_Pause);
943                 else
944                         efx->link_advertising &= ~(ADVERTISED_Pause |
945                                                    ADVERTISED_Asym_Pause);
946                 if (wanted_fc & EFX_FC_TX)
947                         efx->link_advertising ^= ADVERTISED_Asym_Pause;
948         }
949 }
950
951 static void efx_fini_port(struct efx_nic *efx);
952
953 /* We assume that efx->type->reconfigure_mac will always try to sync RX
954  * filters and therefore needs to read-lock the filter table against freeing
955  */
956 void efx_mac_reconfigure(struct efx_nic *efx)
957 {
958         down_read(&efx->filter_sem);
959         efx->type->reconfigure_mac(efx);
960         up_read(&efx->filter_sem);
961 }
962
963 /* Push loopback/power/transmit disable settings to the PHY, and reconfigure
964  * the MAC appropriately. All other PHY configuration changes are pushed
965  * through phy_op->set_settings(), and pushed asynchronously to the MAC
966  * through efx_monitor().
967  *
968  * Callers must hold the mac_lock
969  */
970 int __efx_reconfigure_port(struct efx_nic *efx)
971 {
972         enum efx_phy_mode phy_mode;
973         int rc;
974
975         WARN_ON(!mutex_is_locked(&efx->mac_lock));
976
977         /* Disable PHY transmit in mac level loopbacks */
978         phy_mode = efx->phy_mode;
979         if (LOOPBACK_INTERNAL(efx))
980                 efx->phy_mode |= PHY_MODE_TX_DISABLED;
981         else
982                 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
983
984         rc = efx->type->reconfigure_port(efx);
985
986         if (rc)
987                 efx->phy_mode = phy_mode;
988
989         return rc;
990 }
991
992 /* Reinitialise the MAC to pick up new PHY settings, even if the port is
993  * disabled. */
994 int efx_reconfigure_port(struct efx_nic *efx)
995 {
996         int rc;
997
998         EFX_ASSERT_RESET_SERIALISED(efx);
999
1000         mutex_lock(&efx->mac_lock);
1001         rc = __efx_reconfigure_port(efx);
1002         mutex_unlock(&efx->mac_lock);
1003
1004         return rc;
1005 }
1006
1007 /* Asynchronous work item for changing MAC promiscuity and multicast
1008  * hash.  Avoid a drain/rx_ingress enable by reconfiguring the current
1009  * MAC directly. */
1010 static void efx_mac_work(struct work_struct *data)
1011 {
1012         struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
1013
1014         mutex_lock(&efx->mac_lock);
1015         if (efx->port_enabled)
1016                 efx_mac_reconfigure(efx);
1017         mutex_unlock(&efx->mac_lock);
1018 }
1019
1020 static int efx_probe_port(struct efx_nic *efx)
1021 {
1022         int rc;
1023
1024         netif_dbg(efx, probe, efx->net_dev, "create port\n");
1025
1026         if (phy_flash_cfg)
1027                 efx->phy_mode = PHY_MODE_SPECIAL;
1028
1029         /* Connect up MAC/PHY operations table */
1030         rc = efx->type->probe_port(efx);
1031         if (rc)
1032                 return rc;
1033
1034         /* Initialise MAC address to permanent address */
1035         ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr);
1036
1037         return 0;
1038 }
1039
1040 static int efx_init_port(struct efx_nic *efx)
1041 {
1042         int rc;
1043
1044         netif_dbg(efx, drv, efx->net_dev, "init port\n");
1045
1046         mutex_lock(&efx->mac_lock);
1047
1048         rc = efx->phy_op->init(efx);
1049         if (rc)
1050                 goto fail1;
1051
1052         efx->port_initialized = true;
1053
1054         /* Reconfigure the MAC before creating dma queues (required for
1055          * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
1056         efx_mac_reconfigure(efx);
1057
1058         /* Ensure the PHY advertises the correct flow control settings */
1059         rc = efx->phy_op->reconfigure(efx);
1060         if (rc && rc != -EPERM)
1061                 goto fail2;
1062
1063         mutex_unlock(&efx->mac_lock);
1064         return 0;
1065
1066 fail2:
1067         efx->phy_op->fini(efx);
1068 fail1:
1069         mutex_unlock(&efx->mac_lock);
1070         return rc;
1071 }
1072
1073 static void efx_start_port(struct efx_nic *efx)
1074 {
1075         netif_dbg(efx, ifup, efx->net_dev, "start port\n");
1076         BUG_ON(efx->port_enabled);
1077
1078         mutex_lock(&efx->mac_lock);
1079         efx->port_enabled = true;
1080
1081         /* Ensure MAC ingress/egress is enabled */
1082         efx_mac_reconfigure(efx);
1083
1084         mutex_unlock(&efx->mac_lock);
1085 }
1086
1087 /* Cancel work for MAC reconfiguration, periodic hardware monitoring
1088  * and the async self-test, wait for them to finish and prevent them
1089  * being scheduled again.  This doesn't cover online resets, which
1090  * should only be cancelled when removing the device.
1091  */
1092 static void efx_stop_port(struct efx_nic *efx)
1093 {
1094         netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
1095
1096         EFX_ASSERT_RESET_SERIALISED(efx);
1097
1098         mutex_lock(&efx->mac_lock);
1099         efx->port_enabled = false;
1100         mutex_unlock(&efx->mac_lock);
1101
1102         /* Serialise against efx_set_multicast_list() */
1103         netif_addr_lock_bh(efx->net_dev);
1104         netif_addr_unlock_bh(efx->net_dev);
1105
1106         cancel_delayed_work_sync(&efx->monitor_work);
1107         efx_selftest_async_cancel(efx);
1108         cancel_work_sync(&efx->mac_work);
1109 }
1110
1111 static void efx_fini_port(struct efx_nic *efx)
1112 {
1113         netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
1114
1115         if (!efx->port_initialized)
1116                 return;
1117
1118         efx->phy_op->fini(efx);
1119         efx->port_initialized = false;
1120
1121         efx->link_state.up = false;
1122         efx_link_status_changed(efx);
1123 }
1124
1125 static void efx_remove_port(struct efx_nic *efx)
1126 {
1127         netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
1128
1129         efx->type->remove_port(efx);
1130 }
1131
1132 /**************************************************************************
1133  *
1134  * NIC handling
1135  *
1136  **************************************************************************/
1137
1138 static LIST_HEAD(efx_primary_list);
1139 static LIST_HEAD(efx_unassociated_list);
1140
1141 static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right)
1142 {
1143         return left->type == right->type &&
1144                 left->vpd_sn && right->vpd_sn &&
1145                 !strcmp(left->vpd_sn, right->vpd_sn);
1146 }
1147
1148 static void efx_associate(struct efx_nic *efx)
1149 {
1150         struct efx_nic *other, *next;
1151
1152         if (efx->primary == efx) {
1153                 /* Adding primary function; look for secondaries */
1154
1155                 netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n");
1156                 list_add_tail(&efx->node, &efx_primary_list);
1157
1158                 list_for_each_entry_safe(other, next, &efx_unassociated_list,
1159                                          node) {
1160                         if (efx_same_controller(efx, other)) {
1161                                 list_del(&other->node);
1162                                 netif_dbg(other, probe, other->net_dev,
1163                                           "moving to secondary list of %s %s\n",
1164                                           pci_name(efx->pci_dev),
1165                                           efx->net_dev->name);
1166                                 list_add_tail(&other->node,
1167                                               &efx->secondary_list);
1168                                 other->primary = efx;
1169                         }
1170                 }
1171         } else {
1172                 /* Adding secondary function; look for primary */
1173
1174                 list_for_each_entry(other, &efx_primary_list, node) {
1175                         if (efx_same_controller(efx, other)) {
1176                                 netif_dbg(efx, probe, efx->net_dev,
1177                                           "adding to secondary list of %s %s\n",
1178                                           pci_name(other->pci_dev),
1179                                           other->net_dev->name);
1180                                 list_add_tail(&efx->node,
1181                                               &other->secondary_list);
1182                                 efx->primary = other;
1183                                 return;
1184                         }
1185                 }
1186
1187                 netif_dbg(efx, probe, efx->net_dev,
1188                           "adding to unassociated list\n");
1189                 list_add_tail(&efx->node, &efx_unassociated_list);
1190         }
1191 }
1192
1193 static void efx_dissociate(struct efx_nic *efx)
1194 {
1195         struct efx_nic *other, *next;
1196
1197         list_del(&efx->node);
1198         efx->primary = NULL;
1199
1200         list_for_each_entry_safe(other, next, &efx->secondary_list, node) {
1201                 list_del(&other->node);
1202                 netif_dbg(other, probe, other->net_dev,
1203                           "moving to unassociated list\n");
1204                 list_add_tail(&other->node, &efx_unassociated_list);
1205                 other->primary = NULL;
1206         }
1207 }
1208
1209 /* This configures the PCI device to enable I/O and DMA. */
1210 static int efx_init_io(struct efx_nic *efx)
1211 {
1212         struct pci_dev *pci_dev = efx->pci_dev;
1213         dma_addr_t dma_mask = efx->type->max_dma_mask;
1214         unsigned int mem_map_size = efx->type->mem_map_size(efx);
1215         int rc, bar;
1216
1217         netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
1218
1219         bar = efx->type->mem_bar;
1220
1221         rc = pci_enable_device(pci_dev);
1222         if (rc) {
1223                 netif_err(efx, probe, efx->net_dev,
1224                           "failed to enable PCI device\n");
1225                 goto fail1;
1226         }
1227
1228         pci_set_master(pci_dev);
1229
1230         /* Set the PCI DMA mask.  Try all possibilities from our
1231          * genuine mask down to 32 bits, because some architectures
1232          * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1233          * masks event though they reject 46 bit masks.
1234          */
1235         while (dma_mask > 0x7fffffffUL) {
1236                 if (dma_supported(&pci_dev->dev, dma_mask)) {
1237                         rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
1238                         if (rc == 0)
1239                                 break;
1240                 }
1241                 dma_mask >>= 1;
1242         }
1243         if (rc) {
1244                 netif_err(efx, probe, efx->net_dev,
1245                           "could not find a suitable DMA mask\n");
1246                 goto fail2;
1247         }
1248         netif_dbg(efx, probe, efx->net_dev,
1249                   "using DMA mask %llx\n", (unsigned long long) dma_mask);
1250
1251         efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
1252         rc = pci_request_region(pci_dev, bar, "sfc");
1253         if (rc) {
1254                 netif_err(efx, probe, efx->net_dev,
1255                           "request for memory BAR failed\n");
1256                 rc = -EIO;
1257                 goto fail3;
1258         }
1259         efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
1260         if (!efx->membase) {
1261                 netif_err(efx, probe, efx->net_dev,
1262                           "could not map memory BAR at %llx+%x\n",
1263                           (unsigned long long)efx->membase_phys, mem_map_size);
1264                 rc = -ENOMEM;
1265                 goto fail4;
1266         }
1267         netif_dbg(efx, probe, efx->net_dev,
1268                   "memory BAR at %llx+%x (virtual %p)\n",
1269                   (unsigned long long)efx->membase_phys, mem_map_size,
1270                   efx->membase);
1271
1272         return 0;
1273
1274  fail4:
1275         pci_release_region(efx->pci_dev, bar);
1276  fail3:
1277         efx->membase_phys = 0;
1278  fail2:
1279         pci_disable_device(efx->pci_dev);
1280  fail1:
1281         return rc;
1282 }
1283
1284 static void efx_fini_io(struct efx_nic *efx)
1285 {
1286         int bar;
1287
1288         netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
1289
1290         if (efx->membase) {
1291                 iounmap(efx->membase);
1292                 efx->membase = NULL;
1293         }
1294
1295         if (efx->membase_phys) {
1296                 bar = efx->type->mem_bar;
1297                 pci_release_region(efx->pci_dev, bar);
1298                 efx->membase_phys = 0;
1299         }
1300
1301         pci_disable_device(efx->pci_dev);
1302 }
1303
1304 void efx_set_default_rx_indir_table(struct efx_nic *efx)
1305 {
1306         size_t i;
1307
1308         for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
1309                 efx->rx_indir_table[i] =
1310                         ethtool_rxfh_indir_default(i, efx->rss_spread);
1311 }
1312
1313 static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
1314 {
1315         cpumask_var_t thread_mask;
1316         unsigned int count;
1317         int cpu;
1318
1319         if (rss_cpus) {
1320                 count = rss_cpus;
1321         } else {
1322                 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1323                         netif_warn(efx, probe, efx->net_dev,
1324                                    "RSS disabled due to allocation failure\n");
1325                         return 1;
1326                 }
1327
1328                 count = 0;
1329                 for_each_online_cpu(cpu) {
1330                         if (!cpumask_test_cpu(cpu, thread_mask)) {
1331                                 ++count;
1332                                 cpumask_or(thread_mask, thread_mask,
1333                                            topology_thread_cpumask(cpu));
1334                         }
1335                 }
1336
1337                 free_cpumask_var(thread_mask);
1338         }
1339
1340         /* If RSS is requested for the PF *and* VFs then we can't write RSS
1341          * table entries that are inaccessible to VFs
1342          */
1343 #ifdef CONFIG_SFC_SRIOV
1344         if (efx->type->sriov_wanted) {
1345                 if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1346                     count > efx_vf_size(efx)) {
1347                         netif_warn(efx, probe, efx->net_dev,
1348                                    "Reducing number of RSS channels from %u to %u for "
1349                                    "VF support. Increase vf-msix-limit to use more "
1350                                    "channels on the PF.\n",
1351                                    count, efx_vf_size(efx));
1352                         count = efx_vf_size(efx);
1353                 }
1354         }
1355 #endif
1356
1357         return count;
1358 }
1359
1360 /* Probe the number and type of interrupts we are able to obtain, and
1361  * the resulting numbers of channels and RX queues.
1362  */
1363 static int efx_probe_interrupts(struct efx_nic *efx)
1364 {
1365         unsigned int extra_channels = 0;
1366         unsigned int i, j;
1367         int rc;
1368
1369         for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1370                 if (efx->extra_channel_type[i])
1371                         ++extra_channels;
1372
1373         if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
1374                 struct msix_entry xentries[EFX_MAX_CHANNELS];
1375                 unsigned int n_channels;
1376
1377                 n_channels = efx_wanted_parallelism(efx);
1378                 if (separate_tx_channels)
1379                         n_channels *= 2;
1380                 n_channels += extra_channels;
1381                 n_channels = min(n_channels, efx->max_channels);
1382
1383                 for (i = 0; i < n_channels; i++)
1384                         xentries[i].entry = i;
1385                 rc = pci_enable_msix_range(efx->pci_dev,
1386                                            xentries, 1, n_channels);
1387                 if (rc < 0) {
1388                         /* Fall back to single channel MSI */
1389                         efx->interrupt_mode = EFX_INT_MODE_MSI;
1390                         netif_err(efx, drv, efx->net_dev,
1391                                   "could not enable MSI-X\n");
1392                 } else if (rc < n_channels) {
1393                         netif_err(efx, drv, efx->net_dev,
1394                                   "WARNING: Insufficient MSI-X vectors"
1395                                   " available (%d < %u).\n", rc, n_channels);
1396                         netif_err(efx, drv, efx->net_dev,
1397                                   "WARNING: Performance may be reduced.\n");
1398                         n_channels = rc;
1399                 }
1400
1401                 if (rc > 0) {
1402                         efx->n_channels = n_channels;
1403                         if (n_channels > extra_channels)
1404                                 n_channels -= extra_channels;
1405                         if (separate_tx_channels) {
1406                                 efx->n_tx_channels = max(n_channels / 2, 1U);
1407                                 efx->n_rx_channels = max(n_channels -
1408                                                          efx->n_tx_channels,
1409                                                          1U);
1410                         } else {
1411                                 efx->n_tx_channels = n_channels;
1412                                 efx->n_rx_channels = n_channels;
1413                         }
1414                         for (i = 0; i < efx->n_channels; i++)
1415                                 efx_get_channel(efx, i)->irq =
1416                                         xentries[i].vector;
1417                 }
1418         }
1419
1420         /* Try single interrupt MSI */
1421         if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
1422                 efx->n_channels = 1;
1423                 efx->n_rx_channels = 1;
1424                 efx->n_tx_channels = 1;
1425                 rc = pci_enable_msi(efx->pci_dev);
1426                 if (rc == 0) {
1427                         efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
1428                 } else {
1429                         netif_err(efx, drv, efx->net_dev,
1430                                   "could not enable MSI\n");
1431                         efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1432                 }
1433         }
1434
1435         /* Assume legacy interrupts */
1436         if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
1437                 efx->n_channels = 1 + (separate_tx_channels ? 1 : 0);
1438                 efx->n_rx_channels = 1;
1439                 efx->n_tx_channels = 1;
1440                 efx->legacy_irq = efx->pci_dev->irq;
1441         }
1442
1443         /* Assign extra channels if possible */
1444         j = efx->n_channels;
1445         for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1446                 if (!efx->extra_channel_type[i])
1447                         continue;
1448                 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1449                     efx->n_channels <= extra_channels) {
1450                         efx->extra_channel_type[i]->handle_no_channel(efx);
1451                 } else {
1452                         --j;
1453                         efx_get_channel(efx, j)->type =
1454                                 efx->extra_channel_type[i];
1455                 }
1456         }
1457
1458         /* RSS might be usable on VFs even if it is disabled on the PF */
1459 #ifdef CONFIG_SFC_SRIOV
1460         if (efx->type->sriov_wanted) {
1461                 efx->rss_spread = ((efx->n_rx_channels > 1 ||
1462                                     !efx->type->sriov_wanted(efx)) ?
1463                                    efx->n_rx_channels : efx_vf_size(efx));
1464                 return 0;
1465         }
1466 #endif
1467         efx->rss_spread = efx->n_rx_channels;
1468
1469         return 0;
1470 }
1471
1472 static int efx_soft_enable_interrupts(struct efx_nic *efx)
1473 {
1474         struct efx_channel *channel, *end_channel;
1475         int rc;
1476
1477         BUG_ON(efx->state == STATE_DISABLED);
1478
1479         efx->irq_soft_enabled = true;
1480         smp_wmb();
1481
1482         efx_for_each_channel(channel, efx) {
1483                 if (!channel->type->keep_eventq) {
1484                         rc = efx_init_eventq(channel);
1485                         if (rc)
1486                                 goto fail;
1487                 }
1488                 efx_start_eventq(channel);
1489         }
1490
1491         efx_mcdi_mode_event(efx);
1492
1493         return 0;
1494 fail:
1495         end_channel = channel;
1496         efx_for_each_channel(channel, efx) {
1497                 if (channel == end_channel)
1498                         break;
1499                 efx_stop_eventq(channel);
1500                 if (!channel->type->keep_eventq)
1501                         efx_fini_eventq(channel);
1502         }
1503
1504         return rc;
1505 }
1506
1507 static void efx_soft_disable_interrupts(struct efx_nic *efx)
1508 {
1509         struct efx_channel *channel;
1510
1511         if (efx->state == STATE_DISABLED)
1512                 return;
1513
1514         efx_mcdi_mode_poll(efx);
1515
1516         efx->irq_soft_enabled = false;
1517         smp_wmb();
1518
1519         if (efx->legacy_irq)
1520                 synchronize_irq(efx->legacy_irq);
1521
1522         efx_for_each_channel(channel, efx) {
1523                 if (channel->irq)
1524                         synchronize_irq(channel->irq);
1525
1526                 efx_stop_eventq(channel);
1527                 if (!channel->type->keep_eventq)
1528                         efx_fini_eventq(channel);
1529         }
1530
1531         /* Flush the asynchronous MCDI request queue */
1532         efx_mcdi_flush_async(efx);
1533 }
1534
1535 static int efx_enable_interrupts(struct efx_nic *efx)
1536 {
1537         struct efx_channel *channel, *end_channel;
1538         int rc;
1539
1540         BUG_ON(efx->state == STATE_DISABLED);
1541
1542         if (efx->eeh_disabled_legacy_irq) {
1543                 enable_irq(efx->legacy_irq);
1544                 efx->eeh_disabled_legacy_irq = false;
1545         }
1546
1547         efx->type->irq_enable_master(efx);
1548
1549         efx_for_each_channel(channel, efx) {
1550                 if (channel->type->keep_eventq) {
1551                         rc = efx_init_eventq(channel);
1552                         if (rc)
1553                                 goto fail;
1554                 }
1555         }
1556
1557         rc = efx_soft_enable_interrupts(efx);
1558         if (rc)
1559                 goto fail;
1560
1561         return 0;
1562
1563 fail:
1564         end_channel = channel;
1565         efx_for_each_channel(channel, efx) {
1566                 if (channel == end_channel)
1567                         break;
1568                 if (channel->type->keep_eventq)
1569                         efx_fini_eventq(channel);
1570         }
1571
1572         efx->type->irq_disable_non_ev(efx);
1573
1574         return rc;
1575 }
1576
1577 static void efx_disable_interrupts(struct efx_nic *efx)
1578 {
1579         struct efx_channel *channel;
1580
1581         efx_soft_disable_interrupts(efx);
1582
1583         efx_for_each_channel(channel, efx) {
1584                 if (channel->type->keep_eventq)
1585                         efx_fini_eventq(channel);
1586         }
1587
1588         efx->type->irq_disable_non_ev(efx);
1589 }
1590
1591 static void efx_remove_interrupts(struct efx_nic *efx)
1592 {
1593         struct efx_channel *channel;
1594
1595         /* Remove MSI/MSI-X interrupts */
1596         efx_for_each_channel(channel, efx)
1597                 channel->irq = 0;
1598         pci_disable_msi(efx->pci_dev);
1599         pci_disable_msix(efx->pci_dev);
1600
1601         /* Remove legacy interrupt */
1602         efx->legacy_irq = 0;
1603 }
1604
1605 static void efx_set_channels(struct efx_nic *efx)
1606 {
1607         struct efx_channel *channel;
1608         struct efx_tx_queue *tx_queue;
1609
1610         efx->tx_channel_offset =
1611                 separate_tx_channels ? efx->n_channels - efx->n_tx_channels : 0;
1612
1613         /* We need to mark which channels really have RX and TX
1614          * queues, and adjust the TX queue numbers if we have separate
1615          * RX-only and TX-only channels.
1616          */
1617         efx_for_each_channel(channel, efx) {
1618                 if (channel->channel < efx->n_rx_channels)
1619                         channel->rx_queue.core_index = channel->channel;
1620                 else
1621                         channel->rx_queue.core_index = -1;
1622
1623                 efx_for_each_channel_tx_queue(tx_queue, channel)
1624                         tx_queue->queue -= (efx->tx_channel_offset *
1625                                             EFX_TXQ_TYPES);
1626         }
1627 }
1628
1629 static int efx_probe_nic(struct efx_nic *efx)
1630 {
1631         int rc;
1632
1633         netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
1634
1635         /* Carry out hardware-type specific initialisation */
1636         rc = efx->type->probe(efx);
1637         if (rc)
1638                 return rc;
1639
1640         /* Determine the number of channels and queues by trying to hook
1641          * in MSI-X interrupts. */
1642         rc = efx_probe_interrupts(efx);
1643         if (rc)
1644                 goto fail1;
1645
1646         efx_set_channels(efx);
1647
1648         rc = efx->type->dimension_resources(efx);
1649         if (rc)
1650                 goto fail2;
1651
1652         if (efx->n_channels > 1)
1653                 netdev_rss_key_fill(&efx->rx_hash_key,
1654                                     sizeof(efx->rx_hash_key));
1655         efx_set_default_rx_indir_table(efx);
1656
1657         netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1658         netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
1659
1660         /* Initialise the interrupt moderation settings */
1661         efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1662                                 true);
1663
1664         return 0;
1665
1666 fail2:
1667         efx_remove_interrupts(efx);
1668 fail1:
1669         efx->type->remove(efx);
1670         return rc;
1671 }
1672
1673 static void efx_remove_nic(struct efx_nic *efx)
1674 {
1675         netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
1676
1677         efx_remove_interrupts(efx);
1678         efx->type->remove(efx);
1679 }
1680
1681 static int efx_probe_filters(struct efx_nic *efx)
1682 {
1683         int rc;
1684
1685         spin_lock_init(&efx->filter_lock);
1686         init_rwsem(&efx->filter_sem);
1687         down_write(&efx->filter_sem);
1688         rc = efx->type->filter_table_probe(efx);
1689         if (rc)
1690                 goto out_unlock;
1691
1692 #ifdef CONFIG_RFS_ACCEL
1693         if (efx->type->offload_features & NETIF_F_NTUPLE) {
1694                 efx->rps_flow_id = kcalloc(efx->type->max_rx_ip_filters,
1695                                            sizeof(*efx->rps_flow_id),
1696                                            GFP_KERNEL);
1697                 if (!efx->rps_flow_id) {
1698                         efx->type->filter_table_remove(efx);
1699                         rc = -ENOMEM;
1700                         goto out_unlock;
1701                 }
1702         }
1703 #endif
1704 out_unlock:
1705         up_write(&efx->filter_sem);
1706         return rc;
1707 }
1708
1709 static void efx_remove_filters(struct efx_nic *efx)
1710 {
1711 #ifdef CONFIG_RFS_ACCEL
1712         kfree(efx->rps_flow_id);
1713 #endif
1714         down_write(&efx->filter_sem);
1715         efx->type->filter_table_remove(efx);
1716         up_write(&efx->filter_sem);
1717 }
1718
1719 static void efx_restore_filters(struct efx_nic *efx)
1720 {
1721         down_read(&efx->filter_sem);
1722         efx->type->filter_table_restore(efx);
1723         up_read(&efx->filter_sem);
1724 }
1725
1726 /**************************************************************************
1727  *
1728  * NIC startup/shutdown
1729  *
1730  *************************************************************************/
1731
1732 static int efx_probe_all(struct efx_nic *efx)
1733 {
1734         int rc;
1735
1736         rc = efx_probe_nic(efx);
1737         if (rc) {
1738                 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
1739                 goto fail1;
1740         }
1741
1742         rc = efx_probe_port(efx);
1743         if (rc) {
1744                 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
1745                 goto fail2;
1746         }
1747
1748         BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
1749         if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
1750                 rc = -EINVAL;
1751                 goto fail3;
1752         }
1753         efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
1754
1755 #ifdef CONFIG_SFC_SRIOV
1756         rc = efx->type->vswitching_probe(efx);
1757         if (rc) /* not fatal; the PF will still work fine */
1758                 netif_warn(efx, probe, efx->net_dev,
1759                            "failed to setup vswitching rc=%d;"
1760                            " VFs may not function\n", rc);
1761 #endif
1762
1763         rc = efx_probe_filters(efx);
1764         if (rc) {
1765                 netif_err(efx, probe, efx->net_dev,
1766                           "failed to create filter tables\n");
1767                 goto fail4;
1768         }
1769
1770         rc = efx_probe_channels(efx);
1771         if (rc)
1772                 goto fail5;
1773
1774         return 0;
1775
1776  fail5:
1777         efx_remove_filters(efx);
1778  fail4:
1779 #ifdef CONFIG_SFC_SRIOV
1780         efx->type->vswitching_remove(efx);
1781 #endif
1782  fail3:
1783         efx_remove_port(efx);
1784  fail2:
1785         efx_remove_nic(efx);
1786  fail1:
1787         return rc;
1788 }
1789
1790 /* If the interface is supposed to be running but is not, start
1791  * the hardware and software data path, regular activity for the port
1792  * (MAC statistics, link polling, etc.) and schedule the port to be
1793  * reconfigured.  Interrupts must already be enabled.  This function
1794  * is safe to call multiple times, so long as the NIC is not disabled.
1795  * Requires the RTNL lock.
1796  */
1797 static void efx_start_all(struct efx_nic *efx)
1798 {
1799         EFX_ASSERT_RESET_SERIALISED(efx);
1800         BUG_ON(efx->state == STATE_DISABLED);
1801
1802         /* Check that it is appropriate to restart the interface. All
1803          * of these flags are safe to read under just the rtnl lock */
1804         if (efx->port_enabled || !netif_running(efx->net_dev) ||
1805             efx->reset_pending)
1806                 return;
1807
1808         efx_start_port(efx);
1809         efx_start_datapath(efx);
1810
1811         /* Start the hardware monitor if there is one */
1812         if (efx->type->monitor != NULL)
1813                 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1814                                    efx_monitor_interval);
1815
1816         /* If link state detection is normally event-driven, we have
1817          * to poll now because we could have missed a change
1818          */
1819         if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) {
1820                 mutex_lock(&efx->mac_lock);
1821                 if (efx->phy_op->poll(efx))
1822                         efx_link_status_changed(efx);
1823                 mutex_unlock(&efx->mac_lock);
1824         }
1825
1826         efx->type->start_stats(efx);
1827         efx->type->pull_stats(efx);
1828         spin_lock_bh(&efx->stats_lock);
1829         efx->type->update_stats(efx, NULL, NULL);
1830         spin_unlock_bh(&efx->stats_lock);
1831 }
1832
1833 /* Quiesce the hardware and software data path, and regular activity
1834  * for the port without bringing the link down.  Safe to call multiple
1835  * times with the NIC in almost any state, but interrupts should be
1836  * enabled.  Requires the RTNL lock.
1837  */
1838 static void efx_stop_all(struct efx_nic *efx)
1839 {
1840         EFX_ASSERT_RESET_SERIALISED(efx);
1841
1842         /* port_enabled can be read safely under the rtnl lock */
1843         if (!efx->port_enabled)
1844                 return;
1845
1846         /* update stats before we go down so we can accurately count
1847          * rx_nodesc_drops
1848          */
1849         efx->type->pull_stats(efx);
1850         spin_lock_bh(&efx->stats_lock);
1851         efx->type->update_stats(efx, NULL, NULL);
1852         spin_unlock_bh(&efx->stats_lock);
1853         efx->type->stop_stats(efx);
1854         efx_stop_port(efx);
1855
1856         /* Stop the kernel transmit interface.  This is only valid if
1857          * the device is stopped or detached; otherwise the watchdog
1858          * may fire immediately.
1859          */
1860         WARN_ON(netif_running(efx->net_dev) &&
1861                 netif_device_present(efx->net_dev));
1862         netif_tx_disable(efx->net_dev);
1863
1864         efx_stop_datapath(efx);
1865 }
1866
1867 static void efx_remove_all(struct efx_nic *efx)
1868 {
1869         efx_remove_channels(efx);
1870         efx_remove_filters(efx);
1871 #ifdef CONFIG_SFC_SRIOV
1872         efx->type->vswitching_remove(efx);
1873 #endif
1874         efx_remove_port(efx);
1875         efx_remove_nic(efx);
1876 }
1877
1878 /**************************************************************************
1879  *
1880  * Interrupt moderation
1881  *
1882  **************************************************************************/
1883
1884 static unsigned int irq_mod_ticks(unsigned int usecs, unsigned int quantum_ns)
1885 {
1886         if (usecs == 0)
1887                 return 0;
1888         if (usecs * 1000 < quantum_ns)
1889                 return 1; /* never round down to 0 */
1890         return usecs * 1000 / quantum_ns;
1891 }
1892
1893 /* Set interrupt moderation parameters */
1894 int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1895                             unsigned int rx_usecs, bool rx_adaptive,
1896                             bool rx_may_override_tx)
1897 {
1898         struct efx_channel *channel;
1899         unsigned int irq_mod_max = DIV_ROUND_UP(efx->type->timer_period_max *
1900                                                 efx->timer_quantum_ns,
1901                                                 1000);
1902         unsigned int tx_ticks;
1903         unsigned int rx_ticks;
1904
1905         EFX_ASSERT_RESET_SERIALISED(efx);
1906
1907         if (tx_usecs > irq_mod_max || rx_usecs > irq_mod_max)
1908                 return -EINVAL;
1909
1910         tx_ticks = irq_mod_ticks(tx_usecs, efx->timer_quantum_ns);
1911         rx_ticks = irq_mod_ticks(rx_usecs, efx->timer_quantum_ns);
1912
1913         if (tx_ticks != rx_ticks && efx->tx_channel_offset == 0 &&
1914             !rx_may_override_tx) {
1915                 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1916                           "RX and TX IRQ moderation must be equal\n");
1917                 return -EINVAL;
1918         }
1919
1920         efx->irq_rx_adaptive = rx_adaptive;
1921         efx->irq_rx_moderation = rx_ticks;
1922         efx_for_each_channel(channel, efx) {
1923                 if (efx_channel_has_rx_queue(channel))
1924                         channel->irq_moderation = rx_ticks;
1925                 else if (efx_channel_has_tx_queues(channel))
1926                         channel->irq_moderation = tx_ticks;
1927         }
1928
1929         return 0;
1930 }
1931
1932 void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
1933                             unsigned int *rx_usecs, bool *rx_adaptive)
1934 {
1935         /* We must round up when converting ticks to microseconds
1936          * because we round down when converting the other way.
1937          */
1938
1939         *rx_adaptive = efx->irq_rx_adaptive;
1940         *rx_usecs = DIV_ROUND_UP(efx->irq_rx_moderation *
1941                                  efx->timer_quantum_ns,
1942                                  1000);
1943
1944         /* If channels are shared between RX and TX, so is IRQ
1945          * moderation.  Otherwise, IRQ moderation is the same for all
1946          * TX channels and is not adaptive.
1947          */
1948         if (efx->tx_channel_offset == 0)
1949                 *tx_usecs = *rx_usecs;
1950         else
1951                 *tx_usecs = DIV_ROUND_UP(
1952                         efx->channel[efx->tx_channel_offset]->irq_moderation *
1953                         efx->timer_quantum_ns,
1954                         1000);
1955 }
1956
1957 /**************************************************************************
1958  *
1959  * Hardware monitor
1960  *
1961  **************************************************************************/
1962
1963 /* Run periodically off the general workqueue */
1964 static void efx_monitor(struct work_struct *data)
1965 {
1966         struct efx_nic *efx = container_of(data, struct efx_nic,
1967                                            monitor_work.work);
1968
1969         netif_vdbg(efx, timer, efx->net_dev,
1970                    "hardware monitor executing on CPU %d\n",
1971                    raw_smp_processor_id());
1972         BUG_ON(efx->type->monitor == NULL);
1973
1974         /* If the mac_lock is already held then it is likely a port
1975          * reconfiguration is already in place, which will likely do
1976          * most of the work of monitor() anyway. */
1977         if (mutex_trylock(&efx->mac_lock)) {
1978                 if (efx->port_enabled)
1979                         efx->type->monitor(efx);
1980                 mutex_unlock(&efx->mac_lock);
1981         }
1982
1983         queue_delayed_work(efx->workqueue, &efx->monitor_work,
1984                            efx_monitor_interval);
1985 }
1986
1987 /**************************************************************************
1988  *
1989  * ioctls
1990  *
1991  *************************************************************************/
1992
1993 /* Net device ioctl
1994  * Context: process, rtnl_lock() held.
1995  */
1996 static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
1997 {
1998         struct efx_nic *efx = netdev_priv(net_dev);
1999         struct mii_ioctl_data *data = if_mii(ifr);
2000
2001         if (cmd == SIOCSHWTSTAMP)
2002                 return efx_ptp_set_ts_config(efx, ifr);
2003         if (cmd == SIOCGHWTSTAMP)
2004                 return efx_ptp_get_ts_config(efx, ifr);
2005
2006         /* Convert phy_id from older PRTAD/DEVAD format */
2007         if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
2008             (data->phy_id & 0xfc00) == 0x0400)
2009                 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
2010
2011         return mdio_mii_ioctl(&efx->mdio, data, cmd);
2012 }
2013
2014 /**************************************************************************
2015  *
2016  * NAPI interface
2017  *
2018  **************************************************************************/
2019
2020 static void efx_init_napi_channel(struct efx_channel *channel)
2021 {
2022         struct efx_nic *efx = channel->efx;
2023
2024         channel->napi_dev = efx->net_dev;
2025         netif_napi_add(channel->napi_dev, &channel->napi_str,
2026                        efx_poll, napi_weight);
2027         napi_hash_add(&channel->napi_str);
2028         efx_channel_init_lock(channel);
2029 }
2030
2031 static void efx_init_napi(struct efx_nic *efx)
2032 {
2033         struct efx_channel *channel;
2034
2035         efx_for_each_channel(channel, efx)
2036                 efx_init_napi_channel(channel);
2037 }
2038
2039 static void efx_fini_napi_channel(struct efx_channel *channel)
2040 {
2041         if (channel->napi_dev) {
2042                 netif_napi_del(&channel->napi_str);
2043                 napi_hash_del(&channel->napi_str);
2044         }
2045         channel->napi_dev = NULL;
2046 }
2047
2048 static void efx_fini_napi(struct efx_nic *efx)
2049 {
2050         struct efx_channel *channel;
2051
2052         efx_for_each_channel(channel, efx)
2053                 efx_fini_napi_channel(channel);
2054 }
2055
2056 /**************************************************************************
2057  *
2058  * Kernel netpoll interface
2059  *
2060  *************************************************************************/
2061
2062 #ifdef CONFIG_NET_POLL_CONTROLLER
2063
2064 /* Although in the common case interrupts will be disabled, this is not
2065  * guaranteed. However, all our work happens inside the NAPI callback,
2066  * so no locking is required.
2067  */
2068 static void efx_netpoll(struct net_device *net_dev)
2069 {
2070         struct efx_nic *efx = netdev_priv(net_dev);
2071         struct efx_channel *channel;
2072
2073         efx_for_each_channel(channel, efx)
2074                 efx_schedule_channel(channel);
2075 }
2076
2077 #endif
2078
2079 #ifdef CONFIG_NET_RX_BUSY_POLL
2080 static int efx_busy_poll(struct napi_struct *napi)
2081 {
2082         struct efx_channel *channel =
2083                 container_of(napi, struct efx_channel, napi_str);
2084         struct efx_nic *efx = channel->efx;
2085         int budget = 4;
2086         int old_rx_packets, rx_packets;
2087
2088         if (!netif_running(efx->net_dev))
2089                 return LL_FLUSH_FAILED;
2090
2091         if (!efx_channel_lock_poll(channel))
2092                 return LL_FLUSH_BUSY;
2093
2094         old_rx_packets = channel->rx_queue.rx_packets;
2095         efx_process_channel(channel, budget);
2096
2097         rx_packets = channel->rx_queue.rx_packets - old_rx_packets;
2098
2099         /* There is no race condition with NAPI here.
2100          * NAPI will automatically be rescheduled if it yielded during busy
2101          * polling, because it was not able to take the lock and thus returned
2102          * the full budget.
2103          */
2104         efx_channel_unlock_poll(channel);
2105
2106         return rx_packets;
2107 }
2108 #endif
2109
2110 /**************************************************************************
2111  *
2112  * Kernel net device interface
2113  *
2114  *************************************************************************/
2115
2116 /* Context: process, rtnl_lock() held. */
2117 int efx_net_open(struct net_device *net_dev)
2118 {
2119         struct efx_nic *efx = netdev_priv(net_dev);
2120         int rc;
2121
2122         netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
2123                   raw_smp_processor_id());
2124
2125         rc = efx_check_disabled(efx);
2126         if (rc)
2127                 return rc;
2128         if (efx->phy_mode & PHY_MODE_SPECIAL)
2129                 return -EBUSY;
2130         if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
2131                 return -EIO;
2132
2133         /* Notify the kernel of the link state polled during driver load,
2134          * before the monitor starts running */
2135         efx_link_status_changed(efx);
2136
2137         efx_start_all(efx);
2138         efx_selftest_async_start(efx);
2139         return 0;
2140 }
2141
2142 /* Context: process, rtnl_lock() held.
2143  * Note that the kernel will ignore our return code; this method
2144  * should really be a void.
2145  */
2146 int efx_net_stop(struct net_device *net_dev)
2147 {
2148         struct efx_nic *efx = netdev_priv(net_dev);
2149
2150         netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
2151                   raw_smp_processor_id());
2152
2153         /* Stop the device and flush all the channels */
2154         efx_stop_all(efx);
2155
2156         return 0;
2157 }
2158
2159 /* Context: process, dev_base_lock or RTNL held, non-blocking. */
2160 static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev,
2161                                                struct rtnl_link_stats64 *stats)
2162 {
2163         struct efx_nic *efx = netdev_priv(net_dev);
2164
2165         spin_lock_bh(&efx->stats_lock);
2166         efx->type->update_stats(efx, NULL, stats);
2167         spin_unlock_bh(&efx->stats_lock);
2168
2169         return stats;
2170 }
2171
2172 /* Context: netif_tx_lock held, BHs disabled. */
2173 static void efx_watchdog(struct net_device *net_dev)
2174 {
2175         struct efx_nic *efx = netdev_priv(net_dev);
2176
2177         netif_err(efx, tx_err, efx->net_dev,
2178                   "TX stuck with port_enabled=%d: resetting channels\n",
2179                   efx->port_enabled);
2180
2181         efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
2182 }
2183
2184
2185 /* Context: process, rtnl_lock() held. */
2186 static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2187 {
2188         struct efx_nic *efx = netdev_priv(net_dev);
2189         int rc;
2190
2191         rc = efx_check_disabled(efx);
2192         if (rc)
2193                 return rc;
2194         if (new_mtu > EFX_MAX_MTU)
2195                 return -EINVAL;
2196
2197         netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
2198
2199         efx_device_detach_sync(efx);
2200         efx_stop_all(efx);
2201
2202         mutex_lock(&efx->mac_lock);
2203         net_dev->mtu = new_mtu;
2204         efx_mac_reconfigure(efx);
2205         mutex_unlock(&efx->mac_lock);
2206
2207         efx_start_all(efx);
2208         netif_device_attach(efx->net_dev);
2209         return 0;
2210 }
2211
2212 static int efx_set_mac_address(struct net_device *net_dev, void *data)
2213 {
2214         struct efx_nic *efx = netdev_priv(net_dev);
2215         struct sockaddr *addr = data;
2216         u8 *new_addr = addr->sa_data;
2217         u8 old_addr[6];
2218         int rc;
2219
2220         if (!is_valid_ether_addr(new_addr)) {
2221                 netif_err(efx, drv, efx->net_dev,
2222                           "invalid ethernet MAC address requested: %pM\n",
2223                           new_addr);
2224                 return -EADDRNOTAVAIL;
2225         }
2226
2227         /* save old address */
2228         ether_addr_copy(old_addr, net_dev->dev_addr);
2229         ether_addr_copy(net_dev->dev_addr, new_addr);
2230         if (efx->type->sriov_mac_address_changed) {
2231                 rc = efx->type->sriov_mac_address_changed(efx);
2232                 if (rc) {
2233                         ether_addr_copy(net_dev->dev_addr, old_addr);
2234                         return rc;
2235                 }
2236         }
2237
2238         /* Reconfigure the MAC */
2239         mutex_lock(&efx->mac_lock);
2240         efx_mac_reconfigure(efx);
2241         mutex_unlock(&efx->mac_lock);
2242
2243         return 0;
2244 }
2245
2246 /* Context: netif_addr_lock held, BHs disabled. */
2247 static void efx_set_rx_mode(struct net_device *net_dev)
2248 {
2249         struct efx_nic *efx = netdev_priv(net_dev);
2250
2251         if (efx->port_enabled)
2252                 queue_work(efx->workqueue, &efx->mac_work);
2253         /* Otherwise efx_start_port() will do this */
2254 }
2255
2256 static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
2257 {
2258         struct efx_nic *efx = netdev_priv(net_dev);
2259
2260         /* If disabling RX n-tuple filtering, clear existing filters */
2261         if (net_dev->features & ~data & NETIF_F_NTUPLE)
2262                 return efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
2263
2264         return 0;
2265 }
2266
2267 static const struct net_device_ops efx_netdev_ops = {
2268         .ndo_open               = efx_net_open,
2269         .ndo_stop               = efx_net_stop,
2270         .ndo_get_stats64        = efx_net_stats,
2271         .ndo_tx_timeout         = efx_watchdog,
2272         .ndo_start_xmit         = efx_hard_start_xmit,
2273         .ndo_validate_addr      = eth_validate_addr,
2274         .ndo_do_ioctl           = efx_ioctl,
2275         .ndo_change_mtu         = efx_change_mtu,
2276         .ndo_set_mac_address    = efx_set_mac_address,
2277         .ndo_set_rx_mode        = efx_set_rx_mode,
2278         .ndo_set_features       = efx_set_features,
2279 #ifdef CONFIG_SFC_SRIOV
2280         .ndo_set_vf_mac         = efx_sriov_set_vf_mac,
2281         .ndo_set_vf_vlan        = efx_sriov_set_vf_vlan,
2282         .ndo_set_vf_spoofchk    = efx_sriov_set_vf_spoofchk,
2283         .ndo_get_vf_config      = efx_sriov_get_vf_config,
2284         .ndo_set_vf_link_state  = efx_sriov_set_vf_link_state,
2285 #endif
2286 #ifdef CONFIG_NET_POLL_CONTROLLER
2287         .ndo_poll_controller = efx_netpoll,
2288 #endif
2289         .ndo_setup_tc           = efx_setup_tc,
2290 #ifdef CONFIG_NET_RX_BUSY_POLL
2291         .ndo_busy_poll          = efx_busy_poll,
2292 #endif
2293 #ifdef CONFIG_RFS_ACCEL
2294         .ndo_rx_flow_steer      = efx_filter_rfs,
2295 #endif
2296 };
2297
2298 static void efx_update_name(struct efx_nic *efx)
2299 {
2300         strcpy(efx->name, efx->net_dev->name);
2301         efx_mtd_rename(efx);
2302         efx_set_channel_names(efx);
2303 }
2304
2305 static int efx_netdev_event(struct notifier_block *this,
2306                             unsigned long event, void *ptr)
2307 {
2308         struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
2309
2310         if ((net_dev->netdev_ops == &efx_netdev_ops) &&
2311             event == NETDEV_CHANGENAME)
2312                 efx_update_name(netdev_priv(net_dev));
2313
2314         return NOTIFY_DONE;
2315 }
2316
2317 static struct notifier_block efx_netdev_notifier = {
2318         .notifier_call = efx_netdev_event,
2319 };
2320
2321 static ssize_t
2322 show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2323 {
2324         struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2325         return sprintf(buf, "%d\n", efx->phy_type);
2326 }
2327 static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
2328
2329 static int efx_register_netdev(struct efx_nic *efx)
2330 {
2331         struct net_device *net_dev = efx->net_dev;
2332         struct efx_channel *channel;
2333         int rc;
2334
2335         net_dev->watchdog_timeo = 5 * HZ;
2336         net_dev->irq = efx->pci_dev->irq;
2337         net_dev->netdev_ops = &efx_netdev_ops;
2338         if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0)
2339                 net_dev->priv_flags |= IFF_UNICAST_FLT;
2340         net_dev->ethtool_ops = &efx_ethtool_ops;
2341         net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
2342
2343         rtnl_lock();
2344
2345         /* Enable resets to be scheduled and check whether any were
2346          * already requested.  If so, the NIC is probably hosed so we
2347          * abort.
2348          */
2349         efx->state = STATE_READY;
2350         smp_mb(); /* ensure we change state before checking reset_pending */
2351         if (efx->reset_pending) {
2352                 netif_err(efx, probe, efx->net_dev,
2353                           "aborting probe due to scheduled reset\n");
2354                 rc = -EIO;
2355                 goto fail_locked;
2356         }
2357
2358         rc = dev_alloc_name(net_dev, net_dev->name);
2359         if (rc < 0)
2360                 goto fail_locked;
2361         efx_update_name(efx);
2362
2363         /* Always start with carrier off; PHY events will detect the link */
2364         netif_carrier_off(net_dev);
2365
2366         rc = register_netdevice(net_dev);
2367         if (rc)
2368                 goto fail_locked;
2369
2370         efx_for_each_channel(channel, efx) {
2371                 struct efx_tx_queue *tx_queue;
2372                 efx_for_each_channel_tx_queue(tx_queue, channel)
2373                         efx_init_tx_queue_core_txq(tx_queue);
2374         }
2375
2376         efx_associate(efx);
2377
2378         rtnl_unlock();
2379
2380         rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2381         if (rc) {
2382                 netif_err(efx, drv, efx->net_dev,
2383                           "failed to init net dev attributes\n");
2384                 goto fail_registered;
2385         }
2386
2387         return 0;
2388
2389 fail_registered:
2390         rtnl_lock();
2391         efx_dissociate(efx);
2392         unregister_netdevice(net_dev);
2393 fail_locked:
2394         efx->state = STATE_UNINIT;
2395         rtnl_unlock();
2396         netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
2397         return rc;
2398 }
2399
2400 static void efx_unregister_netdev(struct efx_nic *efx)
2401 {
2402         if (!efx->net_dev)
2403                 return;
2404
2405         BUG_ON(netdev_priv(efx->net_dev) != efx);
2406
2407         strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2408         device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2409
2410         rtnl_lock();
2411         unregister_netdevice(efx->net_dev);
2412         efx->state = STATE_UNINIT;
2413         rtnl_unlock();
2414 }
2415
2416 /**************************************************************************
2417  *
2418  * Device reset and suspend
2419  *
2420  **************************************************************************/
2421
2422 /* Tears down the entire software state and most of the hardware state
2423  * before reset.  */
2424 void efx_reset_down(struct efx_nic *efx, enum reset_type method)
2425 {
2426         EFX_ASSERT_RESET_SERIALISED(efx);
2427
2428         if (method == RESET_TYPE_MCDI_TIMEOUT)
2429                 efx->type->prepare_flr(efx);
2430
2431         efx_stop_all(efx);
2432         efx_disable_interrupts(efx);
2433
2434         mutex_lock(&efx->mac_lock);
2435         if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2436             method != RESET_TYPE_DATAPATH)
2437                 efx->phy_op->fini(efx);
2438         efx->type->fini(efx);
2439 }
2440
2441 /* This function will always ensure that the locks acquired in
2442  * efx_reset_down() are released. A failure return code indicates
2443  * that we were unable to reinitialise the hardware, and the
2444  * driver should be disabled. If ok is false, then the rx and tx
2445  * engines are not restarted, pending a RESET_DISABLE. */
2446 int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
2447 {
2448         int rc;
2449
2450         EFX_ASSERT_RESET_SERIALISED(efx);
2451
2452         if (method == RESET_TYPE_MCDI_TIMEOUT)
2453                 efx->type->finish_flr(efx);
2454
2455         /* Ensure that SRAM is initialised even if we're disabling the device */
2456         rc = efx->type->init(efx);
2457         if (rc) {
2458                 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
2459                 goto fail;
2460         }
2461
2462         if (!ok)
2463                 goto fail;
2464
2465         if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2466             method != RESET_TYPE_DATAPATH) {
2467                 rc = efx->phy_op->init(efx);
2468                 if (rc)
2469                         goto fail;
2470                 rc = efx->phy_op->reconfigure(efx);
2471                 if (rc && rc != -EPERM)
2472                         netif_err(efx, drv, efx->net_dev,
2473                                   "could not restore PHY settings\n");
2474         }
2475
2476         rc = efx_enable_interrupts(efx);
2477         if (rc)
2478                 goto fail;
2479
2480 #ifdef CONFIG_SFC_SRIOV
2481         rc = efx->type->vswitching_restore(efx);
2482         if (rc) /* not fatal; the PF will still work fine */
2483                 netif_warn(efx, probe, efx->net_dev,
2484                            "failed to restore vswitching rc=%d;"
2485                            " VFs may not function\n", rc);
2486 #endif
2487
2488         down_read(&efx->filter_sem);
2489         efx_restore_filters(efx);
2490         up_read(&efx->filter_sem);
2491         if (efx->type->sriov_reset)
2492                 efx->type->sriov_reset(efx);
2493
2494         mutex_unlock(&efx->mac_lock);
2495
2496         efx_start_all(efx);
2497
2498         return 0;
2499
2500 fail:
2501         efx->port_initialized = false;
2502
2503         mutex_unlock(&efx->mac_lock);
2504
2505         return rc;
2506 }
2507
2508 /* Reset the NIC using the specified method.  Note that the reset may
2509  * fail, in which case the card will be left in an unusable state.
2510  *
2511  * Caller must hold the rtnl_lock.
2512  */
2513 int efx_reset(struct efx_nic *efx, enum reset_type method)
2514 {
2515         int rc, rc2;
2516         bool disabled;
2517
2518         netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2519                    RESET_TYPE(method));
2520
2521         efx_device_detach_sync(efx);
2522         efx_reset_down(efx, method);
2523
2524         rc = efx->type->reset(efx, method);
2525         if (rc) {
2526                 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
2527                 goto out;
2528         }
2529
2530         /* Clear flags for the scopes we covered.  We assume the NIC and
2531          * driver are now quiescent so that there is no race here.
2532          */
2533         if (method < RESET_TYPE_MAX_METHOD)
2534                 efx->reset_pending &= -(1 << (method + 1));
2535         else /* it doesn't fit into the well-ordered scope hierarchy */
2536                 __clear_bit(method, &efx->reset_pending);
2537
2538         /* Reinitialise bus-mastering, which may have been turned off before
2539          * the reset was scheduled. This is still appropriate, even in the
2540          * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2541          * can respond to requests. */
2542         pci_set_master(efx->pci_dev);
2543
2544 out:
2545         /* Leave device stopped if necessary */
2546         disabled = rc ||
2547                 method == RESET_TYPE_DISABLE ||
2548                 method == RESET_TYPE_RECOVER_OR_DISABLE;
2549         rc2 = efx_reset_up(efx, method, !disabled);
2550         if (rc2) {
2551                 disabled = true;
2552                 if (!rc)
2553                         rc = rc2;
2554         }
2555
2556         if (disabled) {
2557                 dev_close(efx->net_dev);
2558                 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
2559                 efx->state = STATE_DISABLED;
2560         } else {
2561                 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
2562                 netif_device_attach(efx->net_dev);
2563         }
2564         return rc;
2565 }
2566
2567 /* Try recovery mechanisms.
2568  * For now only EEH is supported.
2569  * Returns 0 if the recovery mechanisms are unsuccessful.
2570  * Returns a non-zero value otherwise.
2571  */
2572 int efx_try_recovery(struct efx_nic *efx)
2573 {
2574 #ifdef CONFIG_EEH
2575         /* A PCI error can occur and not be seen by EEH because nothing
2576          * happens on the PCI bus. In this case the driver may fail and
2577          * schedule a 'recover or reset', leading to this recovery handler.
2578          * Manually call the eeh failure check function.
2579          */
2580         struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev);
2581         if (eeh_dev_check_failure(eehdev)) {
2582                 /* The EEH mechanisms will handle the error and reset the
2583                  * device if necessary.
2584                  */
2585                 return 1;
2586         }
2587 #endif
2588         return 0;
2589 }
2590
2591 static void efx_wait_for_bist_end(struct efx_nic *efx)
2592 {
2593         int i;
2594
2595         for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
2596                 if (efx_mcdi_poll_reboot(efx))
2597                         goto out;
2598                 msleep(BIST_WAIT_DELAY_MS);
2599         }
2600
2601         netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
2602 out:
2603         /* Either way unset the BIST flag. If we found no reboot we probably
2604          * won't recover, but we should try.
2605          */
2606         efx->mc_bist_for_other_fn = false;
2607 }
2608
2609 /* The worker thread exists so that code that cannot sleep can
2610  * schedule a reset for later.
2611  */
2612 static void efx_reset_work(struct work_struct *data)
2613 {
2614         struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
2615         unsigned long pending;
2616         enum reset_type method;
2617
2618         pending = ACCESS_ONCE(efx->reset_pending);
2619         method = fls(pending) - 1;
2620
2621         if (method == RESET_TYPE_MC_BIST)
2622                 efx_wait_for_bist_end(efx);
2623
2624         if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
2625              method == RESET_TYPE_RECOVER_OR_ALL) &&
2626             efx_try_recovery(efx))
2627                 return;
2628
2629         if (!pending)
2630                 return;
2631
2632         rtnl_lock();
2633
2634         /* We checked the state in efx_schedule_reset() but it may
2635          * have changed by now.  Now that we have the RTNL lock,
2636          * it cannot change again.
2637          */
2638         if (efx->state == STATE_READY)
2639                 (void)efx_reset(efx, method);
2640
2641         rtnl_unlock();
2642 }
2643
2644 void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2645 {
2646         enum reset_type method;
2647
2648         if (efx->state == STATE_RECOVERY) {
2649                 netif_dbg(efx, drv, efx->net_dev,
2650                           "recovering: skip scheduling %s reset\n",
2651                           RESET_TYPE(type));
2652                 return;
2653         }
2654
2655         switch (type) {
2656         case RESET_TYPE_INVISIBLE:
2657         case RESET_TYPE_ALL:
2658         case RESET_TYPE_RECOVER_OR_ALL:
2659         case RESET_TYPE_WORLD:
2660         case RESET_TYPE_DISABLE:
2661         case RESET_TYPE_RECOVER_OR_DISABLE:
2662         case RESET_TYPE_DATAPATH:
2663         case RESET_TYPE_MC_BIST:
2664         case RESET_TYPE_MCDI_TIMEOUT:
2665                 method = type;
2666                 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2667                           RESET_TYPE(method));
2668                 break;
2669         default:
2670                 method = efx->type->map_reset_reason(type);
2671                 netif_dbg(efx, drv, efx->net_dev,
2672                           "scheduling %s reset for %s\n",
2673                           RESET_TYPE(method), RESET_TYPE(type));
2674                 break;
2675         }
2676
2677         set_bit(method, &efx->reset_pending);
2678         smp_mb(); /* ensure we change reset_pending before checking state */
2679
2680         /* If we're not READY then just leave the flags set as the cue
2681          * to abort probing or reschedule the reset later.
2682          */
2683         if (ACCESS_ONCE(efx->state) != STATE_READY)
2684                 return;
2685
2686         /* efx_process_channel() will no longer read events once a
2687          * reset is scheduled. So switch back to poll'd MCDI completions. */
2688         efx_mcdi_mode_poll(efx);
2689
2690         queue_work(reset_workqueue, &efx->reset_work);
2691 }
2692
2693 /**************************************************************************
2694  *
2695  * List of NICs we support
2696  *
2697  **************************************************************************/
2698
2699 /* PCI device ID table */
2700 static const struct pci_device_id efx_pci_table[] = {
2701         {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2702                     PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
2703          .driver_data = (unsigned long) &falcon_a1_nic_type},
2704         {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2705                     PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
2706          .driver_data = (unsigned long) &falcon_b0_nic_type},
2707         {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803),  /* SFC9020 */
2708          .driver_data = (unsigned long) &siena_a0_nic_type},
2709         {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813),  /* SFL9021 */
2710          .driver_data = (unsigned long) &siena_a0_nic_type},
2711         {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903),  /* SFC9120 PF */
2712          .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
2713         {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1903),  /* SFC9120 VF */
2714          .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
2715         {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923),  /* SFC9140 PF */
2716          .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
2717         {0}                     /* end of list */
2718 };
2719
2720 /**************************************************************************
2721  *
2722  * Dummy PHY/MAC operations
2723  *
2724  * Can be used for some unimplemented operations
2725  * Needed so all function pointers are valid and do not have to be tested
2726  * before use
2727  *
2728  **************************************************************************/
2729 int efx_port_dummy_op_int(struct efx_nic *efx)
2730 {
2731         return 0;
2732 }
2733 void efx_port_dummy_op_void(struct efx_nic *efx) {}
2734
2735 static bool efx_port_dummy_op_poll(struct efx_nic *efx)
2736 {
2737         return false;
2738 }
2739
2740 static const struct efx_phy_operations efx_dummy_phy_operations = {
2741         .init            = efx_port_dummy_op_int,
2742         .reconfigure     = efx_port_dummy_op_int,
2743         .poll            = efx_port_dummy_op_poll,
2744         .fini            = efx_port_dummy_op_void,
2745 };
2746
2747 /**************************************************************************
2748  *
2749  * Data housekeeping
2750  *
2751  **************************************************************************/
2752
2753 /* This zeroes out and then fills in the invariants in a struct
2754  * efx_nic (including all sub-structures).
2755  */
2756 static int efx_init_struct(struct efx_nic *efx,
2757                            struct pci_dev *pci_dev, struct net_device *net_dev)
2758 {
2759         int i;
2760
2761         /* Initialise common structures */
2762         INIT_LIST_HEAD(&efx->node);
2763         INIT_LIST_HEAD(&efx->secondary_list);
2764         spin_lock_init(&efx->biu_lock);
2765 #ifdef CONFIG_SFC_MTD
2766         INIT_LIST_HEAD(&efx->mtd_list);
2767 #endif
2768         INIT_WORK(&efx->reset_work, efx_reset_work);
2769         INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
2770         INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
2771         efx->pci_dev = pci_dev;
2772         efx->msg_enable = debug;
2773         efx->state = STATE_UNINIT;
2774         strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
2775
2776         efx->net_dev = net_dev;
2777         efx->rx_prefix_size = efx->type->rx_prefix_size;
2778         efx->rx_ip_align =
2779                 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
2780         efx->rx_packet_hash_offset =
2781                 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
2782         efx->rx_packet_ts_offset =
2783                 efx->type->rx_ts_offset - efx->type->rx_prefix_size;
2784         spin_lock_init(&efx->stats_lock);
2785         mutex_init(&efx->mac_lock);
2786         efx->phy_op = &efx_dummy_phy_operations;
2787         efx->mdio.dev = net_dev;
2788         INIT_WORK(&efx->mac_work, efx_mac_work);
2789         init_waitqueue_head(&efx->flush_wq);
2790
2791         for (i = 0; i < EFX_MAX_CHANNELS; i++) {
2792                 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2793                 if (!efx->channel[i])
2794                         goto fail;
2795                 efx->msi_context[i].efx = efx;
2796                 efx->msi_context[i].index = i;
2797         }
2798
2799         /* Higher numbered interrupt modes are less capable! */
2800         efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2801                                   interrupt_mode);
2802
2803         /* Would be good to use the net_dev name, but we're too early */
2804         snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2805                  pci_name(pci_dev));
2806         efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
2807         if (!efx->workqueue)
2808                 goto fail;
2809
2810         return 0;
2811
2812 fail:
2813         efx_fini_struct(efx);
2814         return -ENOMEM;
2815 }
2816
2817 static void efx_fini_struct(struct efx_nic *efx)
2818 {
2819         int i;
2820
2821         for (i = 0; i < EFX_MAX_CHANNELS; i++)
2822                 kfree(efx->channel[i]);
2823
2824         kfree(efx->vpd_sn);
2825
2826         if (efx->workqueue) {
2827                 destroy_workqueue(efx->workqueue);
2828                 efx->workqueue = NULL;
2829         }
2830 }
2831
2832 void efx_update_sw_stats(struct efx_nic *efx, u64 *stats)
2833 {
2834         u64 n_rx_nodesc_trunc = 0;
2835         struct efx_channel *channel;
2836
2837         efx_for_each_channel(channel, efx)
2838                 n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc;
2839         stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc;
2840         stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops);
2841 }
2842
2843 /**************************************************************************
2844  *
2845  * PCI interface
2846  *
2847  **************************************************************************/
2848
2849 /* Main body of final NIC shutdown code
2850  * This is called only at module unload (or hotplug removal).
2851  */
2852 static void efx_pci_remove_main(struct efx_nic *efx)
2853 {
2854         /* Flush reset_work. It can no longer be scheduled since we
2855          * are not READY.
2856          */
2857         BUG_ON(efx->state == STATE_READY);
2858         cancel_work_sync(&efx->reset_work);
2859
2860         efx_disable_interrupts(efx);
2861         efx_nic_fini_interrupt(efx);
2862         efx_fini_port(efx);
2863         efx->type->fini(efx);
2864         efx_fini_napi(efx);
2865         efx_remove_all(efx);
2866 }
2867
2868 /* Final NIC shutdown
2869  * This is called only at module unload (or hotplug removal).
2870  */
2871 static void efx_pci_remove(struct pci_dev *pci_dev)
2872 {
2873         struct efx_nic *efx;
2874
2875         efx = pci_get_drvdata(pci_dev);
2876         if (!efx)
2877                 return;
2878
2879         /* Mark the NIC as fini, then stop the interface */
2880         rtnl_lock();
2881         efx_dissociate(efx);
2882         dev_close(efx->net_dev);
2883         efx_disable_interrupts(efx);
2884         rtnl_unlock();
2885
2886         if (efx->type->sriov_fini)
2887                 efx->type->sriov_fini(efx);
2888
2889         efx_unregister_netdev(efx);
2890
2891         efx_mtd_remove(efx);
2892
2893         efx_pci_remove_main(efx);
2894
2895         efx_fini_io(efx);
2896         netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
2897
2898         efx_fini_struct(efx);
2899         free_netdev(efx->net_dev);
2900
2901         pci_disable_pcie_error_reporting(pci_dev);
2902 };
2903
2904 /* NIC VPD information
2905  * Called during probe to display the part number of the
2906  * installed NIC.  VPD is potentially very large but this should
2907  * always appear within the first 512 bytes.
2908  */
2909 #define SFC_VPD_LEN 512
2910 static void efx_probe_vpd_strings(struct efx_nic *efx)
2911 {
2912         struct pci_dev *dev = efx->pci_dev;
2913         char vpd_data[SFC_VPD_LEN];
2914         ssize_t vpd_size;
2915         int ro_start, ro_size, i, j;
2916
2917         /* Get the vpd data from the device */
2918         vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
2919         if (vpd_size <= 0) {
2920                 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
2921                 return;
2922         }
2923
2924         /* Get the Read only section */
2925         ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
2926         if (ro_start < 0) {
2927                 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
2928                 return;
2929         }
2930
2931         ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
2932         j = ro_size;
2933         i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
2934         if (i + j > vpd_size)
2935                 j = vpd_size - i;
2936
2937         /* Get the Part number */
2938         i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
2939         if (i < 0) {
2940                 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
2941                 return;
2942         }
2943
2944         j = pci_vpd_info_field_size(&vpd_data[i]);
2945         i += PCI_VPD_INFO_FLD_HDR_SIZE;
2946         if (i + j > vpd_size) {
2947                 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
2948                 return;
2949         }
2950
2951         netif_info(efx, drv, efx->net_dev,
2952                    "Part Number : %.*s\n", j, &vpd_data[i]);
2953
2954         i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
2955         j = ro_size;
2956         i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN");
2957         if (i < 0) {
2958                 netif_err(efx, drv, efx->net_dev, "Serial number not found\n");
2959                 return;
2960         }
2961
2962         j = pci_vpd_info_field_size(&vpd_data[i]);
2963         i += PCI_VPD_INFO_FLD_HDR_SIZE;
2964         if (i + j > vpd_size) {
2965                 netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n");
2966                 return;
2967         }
2968
2969         efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL);
2970         if (!efx->vpd_sn)
2971                 return;
2972
2973         snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]);
2974 }
2975
2976
2977 /* Main body of NIC initialisation
2978  * This is called at module load (or hotplug insertion, theoretically).
2979  */
2980 static int efx_pci_probe_main(struct efx_nic *efx)
2981 {
2982         int rc;
2983
2984         /* Do start-of-day initialisation */
2985         rc = efx_probe_all(efx);
2986         if (rc)
2987                 goto fail1;
2988
2989         efx_init_napi(efx);
2990
2991         rc = efx->type->init(efx);
2992         if (rc) {
2993                 netif_err(efx, probe, efx->net_dev,
2994                           "failed to initialise NIC\n");
2995                 goto fail3;
2996         }
2997
2998         rc = efx_init_port(efx);
2999         if (rc) {
3000                 netif_err(efx, probe, efx->net_dev,
3001                           "failed to initialise port\n");
3002                 goto fail4;
3003         }
3004
3005         rc = efx_nic_init_interrupt(efx);
3006         if (rc)
3007                 goto fail5;
3008         rc = efx_enable_interrupts(efx);
3009         if (rc)
3010                 goto fail6;
3011
3012         return 0;
3013
3014  fail6:
3015         efx_nic_fini_interrupt(efx);
3016  fail5:
3017         efx_fini_port(efx);
3018  fail4:
3019         efx->type->fini(efx);
3020  fail3:
3021         efx_fini_napi(efx);
3022         efx_remove_all(efx);
3023  fail1:
3024         return rc;
3025 }
3026
3027 /* NIC initialisation
3028  *
3029  * This is called at module load (or hotplug insertion,
3030  * theoretically).  It sets up PCI mappings, resets the NIC,
3031  * sets up and registers the network devices with the kernel and hooks
3032  * the interrupt service routine.  It does not prepare the device for
3033  * transmission; this is left to the first time one of the network
3034  * interfaces is brought up (i.e. efx_net_open).
3035  */
3036 static int efx_pci_probe(struct pci_dev *pci_dev,
3037                          const struct pci_device_id *entry)
3038 {
3039         struct net_device *net_dev;
3040         struct efx_nic *efx;
3041         int rc;
3042
3043         /* Allocate and initialise a struct net_device and struct efx_nic */
3044         net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
3045                                      EFX_MAX_RX_QUEUES);
3046         if (!net_dev)
3047                 return -ENOMEM;
3048         efx = netdev_priv(net_dev);
3049         efx->type = (const struct efx_nic_type *) entry->driver_data;
3050         net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
3051                               NETIF_F_HIGHDMA | NETIF_F_TSO |
3052                               NETIF_F_RXCSUM);
3053         if (efx->type->offload_features & NETIF_F_V6_CSUM)
3054                 net_dev->features |= NETIF_F_TSO6;
3055         /* Mask for features that also apply to VLAN devices */
3056         net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
3057                                    NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
3058                                    NETIF_F_RXCSUM);
3059         /* All offloads can be toggled */
3060         net_dev->hw_features = net_dev->features & ~NETIF_F_HIGHDMA;
3061         pci_set_drvdata(pci_dev, efx);
3062         SET_NETDEV_DEV(net_dev, &pci_dev->dev);
3063         rc = efx_init_struct(efx, pci_dev, net_dev);
3064         if (rc)
3065                 goto fail1;
3066
3067         netif_info(efx, probe, efx->net_dev,
3068                    "Solarflare NIC detected\n");
3069
3070         if (!efx->type->is_vf)
3071                 efx_probe_vpd_strings(efx);
3072
3073         /* Set up basic I/O (BAR mappings etc) */
3074         rc = efx_init_io(efx);
3075         if (rc)
3076                 goto fail2;
3077
3078         rc = efx_pci_probe_main(efx);
3079         if (rc)
3080                 goto fail3;
3081
3082         rc = efx_register_netdev(efx);
3083         if (rc)
3084                 goto fail4;
3085
3086         if (efx->type->sriov_init) {
3087                 rc = efx->type->sriov_init(efx);
3088                 if (rc)
3089                         netif_err(efx, probe, efx->net_dev,
3090                                   "SR-IOV can't be enabled rc %d\n", rc);
3091         }
3092
3093         netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
3094
3095         /* Try to create MTDs, but allow this to fail */
3096         rtnl_lock();
3097         rc = efx_mtd_probe(efx);
3098         rtnl_unlock();
3099         if (rc)
3100                 netif_warn(efx, probe, efx->net_dev,
3101                            "failed to create MTDs (%d)\n", rc);
3102
3103         rc = pci_enable_pcie_error_reporting(pci_dev);
3104         if (rc && rc != -EINVAL)
3105                 netif_warn(efx, probe, efx->net_dev,
3106                            "pci_enable_pcie_error_reporting failed (%d)\n", rc);
3107
3108         return 0;
3109
3110  fail4:
3111         efx_pci_remove_main(efx);
3112  fail3:
3113         efx_fini_io(efx);
3114  fail2:
3115         efx_fini_struct(efx);
3116  fail1:
3117         WARN_ON(rc > 0);
3118         netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
3119         free_netdev(net_dev);
3120         return rc;
3121 }
3122
3123 /* efx_pci_sriov_configure returns the actual number of Virtual Functions
3124  * enabled on success
3125  */
3126 #ifdef CONFIG_SFC_SRIOV
3127 static int efx_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
3128 {
3129         int rc;
3130         struct efx_nic *efx = pci_get_drvdata(dev);
3131
3132         if (efx->type->sriov_configure) {
3133                 rc = efx->type->sriov_configure(efx, num_vfs);
3134                 if (rc)
3135                         return rc;
3136                 else
3137                         return num_vfs;
3138         } else
3139                 return -EOPNOTSUPP;
3140 }
3141 #endif
3142
3143 static int efx_pm_freeze(struct device *dev)
3144 {
3145         struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3146
3147         rtnl_lock();
3148
3149         if (efx->state != STATE_DISABLED) {
3150                 efx->state = STATE_UNINIT;
3151
3152                 efx_device_detach_sync(efx);
3153
3154                 efx_stop_all(efx);
3155                 efx_disable_interrupts(efx);
3156         }
3157
3158         rtnl_unlock();
3159
3160         return 0;
3161 }
3162
3163 static int efx_pm_thaw(struct device *dev)
3164 {
3165         int rc;
3166         struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3167
3168         rtnl_lock();
3169
3170         if (efx->state != STATE_DISABLED) {
3171                 rc = efx_enable_interrupts(efx);
3172                 if (rc)
3173                         goto fail;
3174
3175                 mutex_lock(&efx->mac_lock);
3176                 efx->phy_op->reconfigure(efx);
3177                 mutex_unlock(&efx->mac_lock);
3178
3179                 efx_start_all(efx);
3180
3181                 netif_device_attach(efx->net_dev);
3182
3183                 efx->state = STATE_READY;
3184
3185                 efx->type->resume_wol(efx);
3186         }
3187
3188         rtnl_unlock();
3189
3190         /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
3191         queue_work(reset_workqueue, &efx->reset_work);
3192
3193         return 0;
3194
3195 fail:
3196         rtnl_unlock();
3197
3198         return rc;
3199 }
3200
3201 static int efx_pm_poweroff(struct device *dev)
3202 {
3203         struct pci_dev *pci_dev = to_pci_dev(dev);
3204         struct efx_nic *efx = pci_get_drvdata(pci_dev);
3205
3206         efx->type->fini(efx);
3207
3208         efx->reset_pending = 0;
3209
3210         pci_save_state(pci_dev);
3211         return pci_set_power_state(pci_dev, PCI_D3hot);
3212 }
3213
3214 /* Used for both resume and restore */
3215 static int efx_pm_resume(struct device *dev)
3216 {
3217         struct pci_dev *pci_dev = to_pci_dev(dev);
3218         struct efx_nic *efx = pci_get_drvdata(pci_dev);
3219         int rc;
3220
3221         rc = pci_set_power_state(pci_dev, PCI_D0);
3222         if (rc)
3223                 return rc;
3224         pci_restore_state(pci_dev);
3225         rc = pci_enable_device(pci_dev);
3226         if (rc)
3227                 return rc;
3228         pci_set_master(efx->pci_dev);
3229         rc = efx->type->reset(efx, RESET_TYPE_ALL);
3230         if (rc)
3231                 return rc;
3232         rc = efx->type->init(efx);
3233         if (rc)
3234                 return rc;
3235         rc = efx_pm_thaw(dev);
3236         return rc;
3237 }
3238
3239 static int efx_pm_suspend(struct device *dev)
3240 {
3241         int rc;
3242
3243         efx_pm_freeze(dev);
3244         rc = efx_pm_poweroff(dev);
3245         if (rc)
3246                 efx_pm_resume(dev);
3247         return rc;
3248 }
3249
3250 static const struct dev_pm_ops efx_pm_ops = {
3251         .suspend        = efx_pm_suspend,
3252         .resume         = efx_pm_resume,
3253         .freeze         = efx_pm_freeze,
3254         .thaw           = efx_pm_thaw,
3255         .poweroff       = efx_pm_poweroff,
3256         .restore        = efx_pm_resume,
3257 };
3258
3259 /* A PCI error affecting this device was detected.
3260  * At this point MMIO and DMA may be disabled.
3261  * Stop the software path and request a slot reset.
3262  */
3263 static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3264                                               enum pci_channel_state state)
3265 {
3266         pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3267         struct efx_nic *efx = pci_get_drvdata(pdev);
3268
3269         if (state == pci_channel_io_perm_failure)
3270                 return PCI_ERS_RESULT_DISCONNECT;
3271
3272         rtnl_lock();
3273
3274         if (efx->state != STATE_DISABLED) {
3275                 efx->state = STATE_RECOVERY;
3276                 efx->reset_pending = 0;
3277
3278                 efx_device_detach_sync(efx);
3279
3280                 efx_stop_all(efx);
3281                 efx_disable_interrupts(efx);
3282
3283                 status = PCI_ERS_RESULT_NEED_RESET;
3284         } else {
3285                 /* If the interface is disabled we don't want to do anything
3286                  * with it.
3287                  */
3288                 status = PCI_ERS_RESULT_RECOVERED;
3289         }
3290
3291         rtnl_unlock();
3292
3293         pci_disable_device(pdev);
3294
3295         return status;
3296 }
3297
3298 /* Fake a successful reset, which will be performed later in efx_io_resume. */
3299 static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
3300 {
3301         struct efx_nic *efx = pci_get_drvdata(pdev);
3302         pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3303         int rc;
3304
3305         if (pci_enable_device(pdev)) {
3306                 netif_err(efx, hw, efx->net_dev,
3307                           "Cannot re-enable PCI device after reset.\n");
3308                 status =  PCI_ERS_RESULT_DISCONNECT;
3309         }
3310
3311         rc = pci_cleanup_aer_uncorrect_error_status(pdev);
3312         if (rc) {
3313                 netif_err(efx, hw, efx->net_dev,
3314                 "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc);
3315                 /* Non-fatal error. Continue. */
3316         }
3317
3318         return status;
3319 }
3320
3321 /* Perform the actual reset and resume I/O operations. */
3322 static void efx_io_resume(struct pci_dev *pdev)
3323 {
3324         struct efx_nic *efx = pci_get_drvdata(pdev);
3325         int rc;
3326
3327         rtnl_lock();
3328
3329         if (efx->state == STATE_DISABLED)
3330                 goto out;
3331
3332         rc = efx_reset(efx, RESET_TYPE_ALL);
3333         if (rc) {
3334                 netif_err(efx, hw, efx->net_dev,
3335                           "efx_reset failed after PCI error (%d)\n", rc);
3336         } else {
3337                 efx->state = STATE_READY;
3338                 netif_dbg(efx, hw, efx->net_dev,
3339                           "Done resetting and resuming IO after PCI error.\n");
3340         }
3341
3342 out:
3343         rtnl_unlock();
3344 }
3345
3346 /* For simplicity and reliability, we always require a slot reset and try to
3347  * reset the hardware when a pci error affecting the device is detected.
3348  * We leave both the link_reset and mmio_enabled callback unimplemented:
3349  * with our request for slot reset the mmio_enabled callback will never be
3350  * called, and the link_reset callback is not used by AER or EEH mechanisms.
3351  */
3352 static struct pci_error_handlers efx_err_handlers = {
3353         .error_detected = efx_io_error_detected,
3354         .slot_reset     = efx_io_slot_reset,
3355         .resume         = efx_io_resume,
3356 };
3357
3358 static struct pci_driver efx_pci_driver = {
3359         .name           = KBUILD_MODNAME,
3360         .id_table       = efx_pci_table,
3361         .probe          = efx_pci_probe,
3362         .remove         = efx_pci_remove,
3363         .driver.pm      = &efx_pm_ops,
3364         .err_handler    = &efx_err_handlers,
3365 #ifdef CONFIG_SFC_SRIOV
3366         .sriov_configure = efx_pci_sriov_configure,
3367 #endif
3368 };
3369
3370 /**************************************************************************
3371  *
3372  * Kernel module interface
3373  *
3374  *************************************************************************/
3375
3376 module_param(interrupt_mode, uint, 0444);
3377 MODULE_PARM_DESC(interrupt_mode,
3378                  "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
3379
3380 static int __init efx_init_module(void)
3381 {
3382         int rc;
3383
3384         printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
3385
3386         rc = register_netdevice_notifier(&efx_netdev_notifier);
3387         if (rc)
3388                 goto err_notifier;
3389
3390 #ifdef CONFIG_SFC_SRIOV
3391         rc = efx_init_sriov();
3392         if (rc)
3393                 goto err_sriov;
3394 #endif
3395
3396         reset_workqueue = create_singlethread_workqueue("sfc_reset");
3397         if (!reset_workqueue) {
3398                 rc = -ENOMEM;
3399                 goto err_reset;
3400         }
3401
3402         rc = pci_register_driver(&efx_pci_driver);
3403         if (rc < 0)
3404                 goto err_pci;
3405
3406         return 0;
3407
3408  err_pci:
3409         destroy_workqueue(reset_workqueue);
3410  err_reset:
3411 #ifdef CONFIG_SFC_SRIOV
3412         efx_fini_sriov();
3413  err_sriov:
3414 #endif
3415         unregister_netdevice_notifier(&efx_netdev_notifier);
3416  err_notifier:
3417         return rc;
3418 }
3419
3420 static void __exit efx_exit_module(void)
3421 {
3422         printk(KERN_INFO "Solarflare NET driver unloading\n");
3423
3424         pci_unregister_driver(&efx_pci_driver);
3425         destroy_workqueue(reset_workqueue);
3426 #ifdef CONFIG_SFC_SRIOV
3427         efx_fini_sriov();
3428 #endif
3429         unregister_netdevice_notifier(&efx_netdev_notifier);
3430
3431 }
3432
3433 module_init(efx_init_module);
3434 module_exit(efx_exit_module);
3435
3436 MODULE_AUTHOR("Solarflare Communications and "
3437               "Michael Brown <mbrown@fensystems.co.uk>");
3438 MODULE_DESCRIPTION("Solarflare network driver");
3439 MODULE_LICENSE("GPL");
3440 MODULE_DEVICE_TABLE(pci, efx_pci_table);