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