blob: 72514005c2a3adf87badf67eddd23a8c34d60441 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchings906bb262009-11-29 15:16:19 +00004 * Copyright 2005-2009 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01005 *
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>
Ben Hutchingsaa6ef272008-07-18 19:03:10 +010022#include <linux/topology.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/gfp.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010024#include "net_driver.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010025#include "efx.h"
26#include "mdio_10g.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000027#include "nic.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010028
Ben Hutchings8880f4e2009-11-29 15:15:41 +000029#include "mcdi.h"
Steve Hodgsonfd371e32010-06-01 11:17:51 +000030#include "workarounds.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000031
Ben Hutchingsc4593022009-11-23 16:08:17 +000032/**************************************************************************
33 *
34 * Type name strings
35 *
36 **************************************************************************
37 */
38
39/* Loopback mode names (see LOOPBACK_MODE()) */
40const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
41const char *efx_loopback_mode_names[] = {
42 [LOOPBACK_NONE] = "NONE",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000043 [LOOPBACK_DATA] = "DATAPATH",
Ben Hutchingsc4593022009-11-23 16:08:17 +000044 [LOOPBACK_GMAC] = "GMAC",
45 [LOOPBACK_XGMII] = "XGMII",
46 [LOOPBACK_XGXS] = "XGXS",
47 [LOOPBACK_XAUI] = "XAUI",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000048 [LOOPBACK_GMII] = "GMII",
49 [LOOPBACK_SGMII] = "SGMII",
50 [LOOPBACK_XGBR] = "XGBR",
51 [LOOPBACK_XFI] = "XFI",
52 [LOOPBACK_XAUI_FAR] = "XAUI_FAR",
53 [LOOPBACK_GMII_FAR] = "GMII_FAR",
54 [LOOPBACK_SGMII_FAR] = "SGMII_FAR",
55 [LOOPBACK_XFI_FAR] = "XFI_FAR",
Ben Hutchingsc4593022009-11-23 16:08:17 +000056 [LOOPBACK_GPHY] = "GPHY",
57 [LOOPBACK_PHYXS] = "PHYXS",
58 [LOOPBACK_PCS] = "PCS",
59 [LOOPBACK_PMAPMD] = "PMA/PMD",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000060 [LOOPBACK_XPORT] = "XPORT",
61 [LOOPBACK_XGMII_WS] = "XGMII_WS",
62 [LOOPBACK_XAUI_WS] = "XAUI_WS",
63 [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR",
64 [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
65 [LOOPBACK_GMII_WS] = "GMII_WS",
66 [LOOPBACK_XFI_WS] = "XFI_WS",
67 [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR",
68 [LOOPBACK_PHYXS_WS] = "PHYXS_WS",
Ben Hutchingsc4593022009-11-23 16:08:17 +000069};
70
71/* Interrupt mode names (see INT_MODE())) */
72const unsigned int efx_interrupt_mode_max = EFX_INT_MODE_MAX;
73const char *efx_interrupt_mode_names[] = {
74 [EFX_INT_MODE_MSIX] = "MSI-X",
75 [EFX_INT_MODE_MSI] = "MSI",
76 [EFX_INT_MODE_LEGACY] = "legacy",
77};
78
79const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
80const char *efx_reset_type_names[] = {
81 [RESET_TYPE_INVISIBLE] = "INVISIBLE",
82 [RESET_TYPE_ALL] = "ALL",
83 [RESET_TYPE_WORLD] = "WORLD",
84 [RESET_TYPE_DISABLE] = "DISABLE",
85 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
86 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
87 [RESET_TYPE_RX_RECOVERY] = "RX_RECOVERY",
88 [RESET_TYPE_RX_DESC_FETCH] = "RX_DESC_FETCH",
89 [RESET_TYPE_TX_DESC_FETCH] = "TX_DESC_FETCH",
90 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
Ben Hutchings8880f4e2009-11-29 15:15:41 +000091 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
Ben Hutchingsc4593022009-11-23 16:08:17 +000092};
93
Ben Hutchings8ceee662008-04-27 12:55:59 +010094#define EFX_MAX_MTU (9 * 1024)
95
Steve Hodgson1ab00622008-12-12 21:33:02 -080096/* Reset workqueue. If any NIC has a hardware failure then a reset will be
97 * queued onto this work queue. This is not a per-nic work queue, because
98 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
99 */
100static struct workqueue_struct *reset_workqueue;
101
Ben Hutchings8ceee662008-04-27 12:55:59 +0100102/**************************************************************************
103 *
104 * Configurable values
105 *
106 *************************************************************************/
107
108/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100109 * Use separate channels for TX and RX events
110 *
Neil Turton28b581a2008-12-12 21:41:06 -0800111 * Set this to 1 to use separate channels for TX and RX. It allows us
112 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100113 *
Neil Turton28b581a2008-12-12 21:41:06 -0800114 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100115 */
Neil Turton28b581a2008-12-12 21:41:06 -0800116static unsigned int separate_tx_channels;
117module_param(separate_tx_channels, uint, 0644);
118MODULE_PARM_DESC(separate_tx_channels,
119 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100120
121/* This is the weight assigned to each of the (per-channel) virtual
122 * NAPI devices.
123 */
124static int napi_weight = 64;
125
126/* This is the time (in jiffies) between invocations of the hardware
127 * monitor, which checks for known hardware bugs and resets the
128 * hardware and driver as necessary.
129 */
130unsigned int efx_monitor_interval = 1 * HZ;
131
Ben Hutchings8ceee662008-04-27 12:55:59 +0100132/* This controls whether or not the driver will initialise devices
133 * with invalid MAC addresses stored in the EEPROM or flash. If true,
134 * such devices will be initialised with a random locally-generated
135 * MAC address. This allows for loading the sfc_mtd driver to
136 * reprogram the flash, even if the flash contents (including the MAC
137 * address) have previously been erased.
138 */
139static unsigned int allow_bad_hwaddr;
140
141/* Initial interrupt moderation settings. They can be modified after
142 * module load with ethtool.
143 *
144 * The default for RX should strike a balance between increasing the
145 * round-trip latency and reducing overhead.
146 */
147static unsigned int rx_irq_mod_usec = 60;
148
149/* Initial interrupt moderation settings. They can be modified after
150 * module load with ethtool.
151 *
152 * This default is chosen to ensure that a 10G link does not go idle
153 * while a TX queue is stopped after it has become full. A queue is
154 * restarted when it drops below half full. The time this takes (assuming
155 * worst case 3 descriptors per packet and 1024 descriptors) is
156 * 512 / 3 * 1.2 = 205 usec.
157 */
158static unsigned int tx_irq_mod_usec = 150;
159
160/* This is the first interrupt mode to try out of:
161 * 0 => MSI-X
162 * 1 => MSI
163 * 2 => legacy
164 */
165static unsigned int interrupt_mode;
166
167/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
168 * i.e. the number of CPUs among which we may distribute simultaneous
169 * interrupt handling.
170 *
171 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
172 * The default (0) means to assign an interrupt to each package (level II cache)
173 */
174static unsigned int rss_cpus;
175module_param(rss_cpus, uint, 0444);
176MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
177
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800178static int phy_flash_cfg;
179module_param(phy_flash_cfg, int, 0644);
180MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
181
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000182static unsigned irq_adapt_low_thresh = 10000;
183module_param(irq_adapt_low_thresh, uint, 0644);
184MODULE_PARM_DESC(irq_adapt_low_thresh,
185 "Threshold score for reducing IRQ moderation");
186
187static unsigned irq_adapt_high_thresh = 20000;
188module_param(irq_adapt_high_thresh, uint, 0644);
189MODULE_PARM_DESC(irq_adapt_high_thresh,
190 "Threshold score for increasing IRQ moderation");
191
Ben Hutchings62776d02010-06-23 11:30:07 +0000192static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
193 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
194 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
195 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
196module_param(debug, uint, 0);
197MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
198
Ben Hutchings8ceee662008-04-27 12:55:59 +0100199/**************************************************************************
200 *
201 * Utility functions and prototypes
202 *
203 *************************************************************************/
204static void efx_remove_channel(struct efx_channel *channel);
205static void efx_remove_port(struct efx_nic *efx);
206static void efx_fini_napi(struct efx_nic *efx);
207static void efx_fini_channels(struct efx_nic *efx);
208
209#define EFX_ASSERT_RESET_SERIALISED(efx) \
210 do { \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000211 if ((efx->state == STATE_RUNNING) || \
212 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100213 ASSERT_RTNL(); \
214 } while (0)
215
216/**************************************************************************
217 *
218 * Event queue processing
219 *
220 *************************************************************************/
221
222/* Process channel's event queue
223 *
224 * This function is responsible for processing the event queue of a
225 * single channel. The caller must guarantee that this function will
226 * never be concurrently called more than once on the same channel,
227 * though different channels may be being processed concurrently.
228 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000229static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100230{
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100231 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000232 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100233
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100234 if (unlikely(efx->reset_pending != RESET_TYPE_NONE ||
Ben Hutchings8ceee662008-04-27 12:55:59 +0100235 !channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100236 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100237
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000238 spent = efx_nic_process_eventq(channel, budget);
239 if (spent == 0)
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100240 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100241
242 /* Deliver last RX packet. */
243 if (channel->rx_pkt) {
244 __efx_rx_packet(channel, channel->rx_pkt,
245 channel->rx_pkt_csummed);
246 channel->rx_pkt = NULL;
247 }
248
Ben Hutchings8ceee662008-04-27 12:55:59 +0100249 efx_rx_strategy(channel);
250
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100251 efx_fast_push_rx_descriptors(&efx->rx_queue[channel->channel]);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100252
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000253 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100254}
255
256/* Mark channel as finished processing
257 *
258 * Note that since we will not receive further interrupts for this
259 * channel before we finish processing and call the eventq_read_ack()
260 * method, there is no need to use the interrupt hold-off timers.
261 */
262static inline void efx_channel_processed(struct efx_channel *channel)
263{
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100264 /* The interrupt handler for this channel may set work_pending
265 * as soon as we acknowledge the events we've seen. Make sure
266 * it's cleared before then. */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100267 channel->work_pending = false;
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100268 smp_wmb();
269
Ben Hutchings152b6a62009-11-29 03:43:56 +0000270 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100271}
272
273/* NAPI poll handler
274 *
275 * NAPI guarantees serialisation of polls of the same device, which
276 * provides the guarantee required by efx_process_channel().
277 */
278static int efx_poll(struct napi_struct *napi, int budget)
279{
280 struct efx_channel *channel =
281 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000282 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000283 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100284
Ben Hutchings62776d02010-06-23 11:30:07 +0000285 netif_vdbg(efx, intr, efx->net_dev,
286 "channel %d NAPI poll executing on CPU %d\n",
287 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100288
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000289 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100290
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000291 if (spent < budget) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000292 if (channel->channel < efx->n_rx_channels &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000293 efx->irq_rx_adaptive &&
294 unlikely(++channel->irq_count == 1000)) {
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000295 if (unlikely(channel->irq_mod_score <
296 irq_adapt_low_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000297 if (channel->irq_moderation > 1) {
298 channel->irq_moderation -= 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000299 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000300 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000301 } else if (unlikely(channel->irq_mod_score >
302 irq_adapt_high_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000303 if (channel->irq_moderation <
304 efx->irq_rx_moderation) {
305 channel->irq_moderation += 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000306 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000307 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000308 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000309 channel->irq_count = 0;
310 channel->irq_mod_score = 0;
311 }
312
Ben Hutchings8ceee662008-04-27 12:55:59 +0100313 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800314 * only wait for napi_complete(), this isn't a problem
Ben Hutchings8ceee662008-04-27 12:55:59 +0100315 * since efx_channel_processed() will have no effect if
316 * interrupts have already been disabled.
317 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800318 napi_complete(napi);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100319 efx_channel_processed(channel);
320 }
321
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000322 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100323}
324
325/* Process the eventq of the specified channel immediately on this CPU
326 *
327 * Disable hardware generated interrupts, wait for any existing
328 * processing to finish, then directly poll (and ack ) the eventq.
329 * Finally reenable NAPI and interrupts.
330 *
331 * Since we are touching interrupts the caller should hold the suspend lock
332 */
333void efx_process_channel_now(struct efx_channel *channel)
334{
335 struct efx_nic *efx = channel->efx;
336
Ben Hutchings8ceee662008-04-27 12:55:59 +0100337 BUG_ON(!channel->enabled);
338
339 /* Disable interrupts and wait for ISRs to complete */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000340 efx_nic_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100341 if (efx->legacy_irq)
342 synchronize_irq(efx->legacy_irq);
Ben Hutchings64ee3122008-09-01 12:47:38 +0100343 if (channel->irq)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100344 synchronize_irq(channel->irq);
345
346 /* Wait for any NAPI processing to complete */
347 napi_disable(&channel->napi_str);
348
349 /* Poll the channel */
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000350 efx_process_channel(channel, EFX_EVQ_SIZE);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100351
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);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000357 efx_nic_enable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100358}
359
360/* Create event queue
361 * Event queue memory allocations are done only once. If the channel
362 * is reset, the memory buffer will be reused; this guards against
363 * errors during channel reset and also simplifies interrupt handling.
364 */
365static int efx_probe_eventq(struct efx_channel *channel)
366{
Ben Hutchings62776d02010-06-23 11:30:07 +0000367 netif_dbg(channel->efx, probe, channel->efx->net_dev,
368 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100369
Ben Hutchings152b6a62009-11-29 03:43:56 +0000370 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100371}
372
373/* Prepare channel's event queue */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100374static void efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100375{
Ben Hutchings62776d02010-06-23 11:30:07 +0000376 netif_dbg(channel->efx, drv, channel->efx->net_dev,
377 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100378
379 channel->eventq_read_ptr = 0;
380
Ben Hutchings152b6a62009-11-29 03:43:56 +0000381 efx_nic_init_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100382}
383
384static void efx_fini_eventq(struct efx_channel *channel)
385{
Ben Hutchings62776d02010-06-23 11:30:07 +0000386 netif_dbg(channel->efx, drv, channel->efx->net_dev,
387 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100388
Ben Hutchings152b6a62009-11-29 03:43:56 +0000389 efx_nic_fini_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100390}
391
392static void efx_remove_eventq(struct efx_channel *channel)
393{
Ben Hutchings62776d02010-06-23 11:30:07 +0000394 netif_dbg(channel->efx, drv, channel->efx->net_dev,
395 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100396
Ben Hutchings152b6a62009-11-29 03:43:56 +0000397 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100398}
399
400/**************************************************************************
401 *
402 * Channel handling
403 *
404 *************************************************************************/
405
Ben Hutchings8ceee662008-04-27 12:55:59 +0100406static int efx_probe_channel(struct efx_channel *channel)
407{
408 struct efx_tx_queue *tx_queue;
409 struct efx_rx_queue *rx_queue;
410 int rc;
411
Ben Hutchings62776d02010-06-23 11:30:07 +0000412 netif_dbg(channel->efx, probe, channel->efx->net_dev,
413 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100414
415 rc = efx_probe_eventq(channel);
416 if (rc)
417 goto fail1;
418
419 efx_for_each_channel_tx_queue(tx_queue, channel) {
420 rc = efx_probe_tx_queue(tx_queue);
421 if (rc)
422 goto fail2;
423 }
424
425 efx_for_each_channel_rx_queue(rx_queue, channel) {
426 rc = efx_probe_rx_queue(rx_queue);
427 if (rc)
428 goto fail3;
429 }
430
431 channel->n_rx_frm_trunc = 0;
432
433 return 0;
434
435 fail3:
436 efx_for_each_channel_rx_queue(rx_queue, channel)
437 efx_remove_rx_queue(rx_queue);
438 fail2:
439 efx_for_each_channel_tx_queue(tx_queue, channel)
440 efx_remove_tx_queue(tx_queue);
441 fail1:
442 return rc;
443}
444
445
Ben Hutchings56536e92008-12-12 21:37:02 -0800446static void efx_set_channel_names(struct efx_nic *efx)
447{
448 struct efx_channel *channel;
449 const char *type = "";
450 int number;
451
452 efx_for_each_channel(channel, efx) {
453 number = channel->channel;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000454 if (efx->n_channels > efx->n_rx_channels) {
455 if (channel->channel < efx->n_rx_channels) {
Ben Hutchings56536e92008-12-12 21:37:02 -0800456 type = "-rx";
457 } else {
458 type = "-tx";
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000459 number -= efx->n_rx_channels;
Ben Hutchings56536e92008-12-12 21:37:02 -0800460 }
461 }
462 snprintf(channel->name, sizeof(channel->name),
463 "%s%s-%d", efx->name, type, number);
464 }
465}
466
Ben Hutchings8ceee662008-04-27 12:55:59 +0100467/* Channels are shutdown and reinitialised whilst the NIC is running
468 * to propagate configuration changes (mtu, checksum offload), or
469 * to clear hardware error conditions
470 */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100471static void efx_init_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100472{
473 struct efx_tx_queue *tx_queue;
474 struct efx_rx_queue *rx_queue;
475 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100476
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100477 /* Calculate the rx buffer allocation parameters required to
478 * support the current MTU, including padding for header
479 * alignment and overruns.
480 */
481 efx->rx_buffer_len = (max(EFX_PAGE_IP_ALIGN, NET_IP_ALIGN) +
482 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
483 efx->type->rx_buffer_padding);
Steve Hodgson62b330b2010-06-01 11:20:53 +0000484 efx->rx_buffer_order = get_order(efx->rx_buffer_len +
485 sizeof(struct efx_rx_page_state));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100486
487 /* Initialise the channels */
488 efx_for_each_channel(channel, efx) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000489 netif_dbg(channel->efx, drv, channel->efx->net_dev,
490 "init chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100491
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100492 efx_init_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100493
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100494 efx_for_each_channel_tx_queue(tx_queue, channel)
495 efx_init_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100496
497 /* The rx buffer allocation strategy is MTU dependent */
498 efx_rx_strategy(channel);
499
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100500 efx_for_each_channel_rx_queue(rx_queue, channel)
501 efx_init_rx_queue(rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100502
503 WARN_ON(channel->rx_pkt != NULL);
504 efx_rx_strategy(channel);
505 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100506}
507
508/* This enables event queue processing and packet transmission.
509 *
510 * Note that this function is not allowed to fail, since that would
511 * introduce too much complexity into the suspend/resume path.
512 */
513static void efx_start_channel(struct efx_channel *channel)
514{
515 struct efx_rx_queue *rx_queue;
516
Ben Hutchings62776d02010-06-23 11:30:07 +0000517 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
518 "starting chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100519
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100520 /* The interrupt handler for this channel may set work_pending
521 * as soon as we enable it. Make sure it's cleared before
522 * then. Similarly, make sure it sees the enabled flag set. */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100523 channel->work_pending = false;
524 channel->enabled = true;
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100525 smp_wmb();
Ben Hutchings8ceee662008-04-27 12:55:59 +0100526
Steve Hodgson90d683a2010-06-01 11:19:39 +0000527 /* Fill the queues before enabling NAPI */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100528 efx_for_each_channel_rx_queue(rx_queue, channel)
529 efx_fast_push_rx_descriptors(rx_queue);
Steve Hodgson90d683a2010-06-01 11:19:39 +0000530
531 napi_enable(&channel->napi_str);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100532}
533
534/* This disables event queue processing and packet transmission.
535 * This function does not guarantee that all queue processing
536 * (e.g. RX refill) is complete.
537 */
538static void efx_stop_channel(struct efx_channel *channel)
539{
Ben Hutchings8ceee662008-04-27 12:55:59 +0100540 if (!channel->enabled)
541 return;
542
Ben Hutchings62776d02010-06-23 11:30:07 +0000543 netif_dbg(channel->efx, ifdown, channel->efx->net_dev,
544 "stop chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100545
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100546 channel->enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100547 napi_disable(&channel->napi_str);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100548}
549
550static void efx_fini_channels(struct efx_nic *efx)
551{
552 struct efx_channel *channel;
553 struct efx_tx_queue *tx_queue;
554 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100555 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100556
557 EFX_ASSERT_RESET_SERIALISED(efx);
558 BUG_ON(efx->port_enabled);
559
Ben Hutchings152b6a62009-11-29 03:43:56 +0000560 rc = efx_nic_flush_queues(efx);
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000561 if (rc && EFX_WORKAROUND_7803(efx)) {
562 /* Schedule a reset to recover from the flush failure. The
563 * descriptor caches reference memory we're about to free,
564 * but falcon_reconfigure_mac_wrapper() won't reconnect
565 * the MACs because of the pending reset. */
Ben Hutchings62776d02010-06-23 11:30:07 +0000566 netif_err(efx, drv, efx->net_dev,
567 "Resetting to recover from flush failure\n");
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000568 efx_schedule_reset(efx, RESET_TYPE_ALL);
569 } else if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000570 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000571 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000572 netif_dbg(efx, drv, efx->net_dev,
573 "successfully flushed all queues\n");
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000574 }
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100575
Ben Hutchings8ceee662008-04-27 12:55:59 +0100576 efx_for_each_channel(channel, efx) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000577 netif_dbg(channel->efx, drv, channel->efx->net_dev,
578 "shut down chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100579
580 efx_for_each_channel_rx_queue(rx_queue, channel)
581 efx_fini_rx_queue(rx_queue);
582 efx_for_each_channel_tx_queue(tx_queue, channel)
583 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100584 efx_fini_eventq(channel);
585 }
586}
587
588static void efx_remove_channel(struct efx_channel *channel)
589{
590 struct efx_tx_queue *tx_queue;
591 struct efx_rx_queue *rx_queue;
592
Ben Hutchings62776d02010-06-23 11:30:07 +0000593 netif_dbg(channel->efx, drv, channel->efx->net_dev,
594 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100595
596 efx_for_each_channel_rx_queue(rx_queue, channel)
597 efx_remove_rx_queue(rx_queue);
598 efx_for_each_channel_tx_queue(tx_queue, channel)
599 efx_remove_tx_queue(tx_queue);
600 efx_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100601}
602
Steve Hodgson90d683a2010-06-01 11:19:39 +0000603void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100604{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000605 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100606}
607
608/**************************************************************************
609 *
610 * Port handling
611 *
612 **************************************************************************/
613
614/* This ensures that the kernel is kept informed (via
615 * netif_carrier_on/off) of the link status, and also maintains the
616 * link status's stop on the port's TX queue.
617 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000618void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100619{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000620 struct efx_link_state *link_state = &efx->link_state;
621
Ben Hutchings8ceee662008-04-27 12:55:59 +0100622 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
623 * that no events are triggered between unregister_netdev() and the
624 * driver unloading. A more general condition is that NETDEV_CHANGE
625 * can only be generated between NETDEV_UP and NETDEV_DOWN */
626 if (!netif_running(efx->net_dev))
627 return;
628
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100629 if (efx->port_inhibited) {
630 netif_carrier_off(efx->net_dev);
631 return;
632 }
633
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000634 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100635 efx->n_link_state_changes++;
636
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000637 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100638 netif_carrier_on(efx->net_dev);
639 else
640 netif_carrier_off(efx->net_dev);
641 }
642
643 /* Status message for kernel log */
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000644 if (link_state->up) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000645 netif_info(efx, link, efx->net_dev,
646 "link up at %uMbps %s-duplex (MTU %d)%s\n",
647 link_state->speed, link_state->fd ? "full" : "half",
648 efx->net_dev->mtu,
649 (efx->promiscuous ? " [PROMISC]" : ""));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100650 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000651 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100652 }
653
654}
655
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000656void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
657{
658 efx->link_advertising = advertising;
659 if (advertising) {
660 if (advertising & ADVERTISED_Pause)
661 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
662 else
663 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
664 if (advertising & ADVERTISED_Asym_Pause)
665 efx->wanted_fc ^= EFX_FC_TX;
666 }
667}
668
669void efx_link_set_wanted_fc(struct efx_nic *efx, enum efx_fc_type wanted_fc)
670{
671 efx->wanted_fc = wanted_fc;
672 if (efx->link_advertising) {
673 if (wanted_fc & EFX_FC_RX)
674 efx->link_advertising |= (ADVERTISED_Pause |
675 ADVERTISED_Asym_Pause);
676 else
677 efx->link_advertising &= ~(ADVERTISED_Pause |
678 ADVERTISED_Asym_Pause);
679 if (wanted_fc & EFX_FC_TX)
680 efx->link_advertising ^= ADVERTISED_Asym_Pause;
681 }
682}
683
Ben Hutchings115122a2009-03-04 09:52:52 +0000684static void efx_fini_port(struct efx_nic *efx);
685
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000686/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
687 * the MAC appropriately. All other PHY configuration changes are pushed
688 * through phy_op->set_settings(), and pushed asynchronously to the MAC
689 * through efx_monitor().
690 *
691 * Callers must hold the mac_lock
692 */
693int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100694{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000695 enum efx_phy_mode phy_mode;
696 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100697
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000698 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100699
Ben Hutchingsa816f752008-09-01 12:49:12 +0100700 /* Serialise the promiscuous flag with efx_set_multicast_list. */
701 if (efx_dev_registered(efx)) {
702 netif_addr_lock_bh(efx->net_dev);
703 netif_addr_unlock_bh(efx->net_dev);
704 }
705
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000706 /* Disable PHY transmit in mac level loopbacks */
707 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800708 if (LOOPBACK_INTERNAL(efx))
709 efx->phy_mode |= PHY_MODE_TX_DISABLED;
710 else
711 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800712
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000713 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800714
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000715 if (rc)
716 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100717
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000718 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100719}
720
721/* Reinitialise the MAC to pick up new PHY settings, even if the port is
722 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000723int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100724{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000725 int rc;
726
Ben Hutchings8ceee662008-04-27 12:55:59 +0100727 EFX_ASSERT_RESET_SERIALISED(efx);
728
729 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000730 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100731 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000732
733 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100734}
735
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000736/* Asynchronous work item for changing MAC promiscuity and multicast
737 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
738 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800739static void efx_mac_work(struct work_struct *data)
740{
741 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
742
743 mutex_lock(&efx->mac_lock);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000744 if (efx->port_enabled) {
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000745 efx->type->push_multicast_hash(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000746 efx->mac_op->reconfigure(efx);
747 }
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800748 mutex_unlock(&efx->mac_lock);
749}
750
Ben Hutchings8ceee662008-04-27 12:55:59 +0100751static int efx_probe_port(struct efx_nic *efx)
752{
753 int rc;
754
Ben Hutchings62776d02010-06-23 11:30:07 +0000755 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100756
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000757 if (phy_flash_cfg)
758 efx->phy_mode = PHY_MODE_SPECIAL;
759
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000760 /* Connect up MAC/PHY operations table */
761 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100762 if (rc)
763 goto err;
764
765 /* Sanity check MAC address */
766 if (is_valid_ether_addr(efx->mac_address)) {
767 memcpy(efx->net_dev->dev_addr, efx->mac_address, ETH_ALEN);
768 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000769 netif_err(efx, probe, efx->net_dev, "invalid MAC address %pM\n",
770 efx->mac_address);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100771 if (!allow_bad_hwaddr) {
772 rc = -EINVAL;
773 goto err;
774 }
775 random_ether_addr(efx->net_dev->dev_addr);
Ben Hutchings62776d02010-06-23 11:30:07 +0000776 netif_info(efx, probe, efx->net_dev,
777 "using locally-generated MAC %pM\n",
778 efx->net_dev->dev_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100779 }
780
781 return 0;
782
783 err:
784 efx_remove_port(efx);
785 return rc;
786}
787
788static int efx_init_port(struct efx_nic *efx)
789{
790 int rc;
791
Ben Hutchings62776d02010-06-23 11:30:07 +0000792 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100793
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000794 mutex_lock(&efx->mac_lock);
795
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800796 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100797 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000798 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100799
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100800 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000801
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000802 /* Reconfigure the MAC before creating dma queues (required for
803 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
804 efx->mac_op->reconfigure(efx);
805
806 /* Ensure the PHY advertises the correct flow control settings */
807 rc = efx->phy_op->reconfigure(efx);
808 if (rc)
809 goto fail2;
810
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000811 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100812 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800813
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000814fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800815 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000816fail1:
817 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800818 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100819}
820
Ben Hutchings8ceee662008-04-27 12:55:59 +0100821static void efx_start_port(struct efx_nic *efx)
822{
Ben Hutchings62776d02010-06-23 11:30:07 +0000823 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100824 BUG_ON(efx->port_enabled);
825
826 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100827 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000828
829 /* efx_mac_work() might have been scheduled after efx_stop_port(),
830 * and then cancelled by efx_flush_all() */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000831 efx->type->push_multicast_hash(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000832 efx->mac_op->reconfigure(efx);
833
Ben Hutchings8ceee662008-04-27 12:55:59 +0100834 mutex_unlock(&efx->mac_lock);
835}
836
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000837/* Prevent efx_mac_work() and efx_monitor() from working */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100838static void efx_stop_port(struct efx_nic *efx)
839{
Ben Hutchings62776d02010-06-23 11:30:07 +0000840 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100841
842 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100843 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100844 mutex_unlock(&efx->mac_lock);
845
846 /* Serialise against efx_set_multicast_list() */
Ben Hutchings55668612008-05-16 21:16:10 +0100847 if (efx_dev_registered(efx)) {
David S. Millerb9e40852008-07-15 00:15:08 -0700848 netif_addr_lock_bh(efx->net_dev);
849 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100850 }
851}
852
853static void efx_fini_port(struct efx_nic *efx)
854{
Ben Hutchings62776d02010-06-23 11:30:07 +0000855 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100856
857 if (!efx->port_initialized)
858 return;
859
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800860 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100861 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100862
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000863 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100864 efx_link_status_changed(efx);
865}
866
867static void efx_remove_port(struct efx_nic *efx)
868{
Ben Hutchings62776d02010-06-23 11:30:07 +0000869 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100870
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000871 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100872}
873
874/**************************************************************************
875 *
876 * NIC handling
877 *
878 **************************************************************************/
879
880/* This configures the PCI device to enable I/O and DMA. */
881static int efx_init_io(struct efx_nic *efx)
882{
883 struct pci_dev *pci_dev = efx->pci_dev;
884 dma_addr_t dma_mask = efx->type->max_dma_mask;
885 int rc;
886
Ben Hutchings62776d02010-06-23 11:30:07 +0000887 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100888
889 rc = pci_enable_device(pci_dev);
890 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000891 netif_err(efx, probe, efx->net_dev,
892 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100893 goto fail1;
894 }
895
896 pci_set_master(pci_dev);
897
898 /* Set the PCI DMA mask. Try all possibilities from our
899 * genuine mask down to 32 bits, because some architectures
900 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
901 * masks event though they reject 46 bit masks.
902 */
903 while (dma_mask > 0x7fffffffUL) {
904 if (pci_dma_supported(pci_dev, dma_mask) &&
905 ((rc = pci_set_dma_mask(pci_dev, dma_mask)) == 0))
906 break;
907 dma_mask >>= 1;
908 }
909 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000910 netif_err(efx, probe, efx->net_dev,
911 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100912 goto fail2;
913 }
Ben Hutchings62776d02010-06-23 11:30:07 +0000914 netif_dbg(efx, probe, efx->net_dev,
915 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100916 rc = pci_set_consistent_dma_mask(pci_dev, dma_mask);
917 if (rc) {
918 /* pci_set_consistent_dma_mask() is not *allowed* to
919 * fail with a mask that pci_set_dma_mask() accepted,
920 * but just in case...
921 */
Ben Hutchings62776d02010-06-23 11:30:07 +0000922 netif_err(efx, probe, efx->net_dev,
923 "failed to set consistent DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100924 goto fail2;
925 }
926
Ben Hutchingsdc803df2009-10-23 08:32:33 +0000927 efx->membase_phys = pci_resource_start(efx->pci_dev, EFX_MEM_BAR);
928 rc = pci_request_region(pci_dev, EFX_MEM_BAR, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100929 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000930 netif_err(efx, probe, efx->net_dev,
931 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100932 rc = -EIO;
933 goto fail3;
934 }
935 efx->membase = ioremap_nocache(efx->membase_phys,
936 efx->type->mem_map_size);
937 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000938 netif_err(efx, probe, efx->net_dev,
939 "could not map memory BAR at %llx+%x\n",
940 (unsigned long long)efx->membase_phys,
941 efx->type->mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100942 rc = -ENOMEM;
943 goto fail4;
944 }
Ben Hutchings62776d02010-06-23 11:30:07 +0000945 netif_dbg(efx, probe, efx->net_dev,
946 "memory BAR at %llx+%x (virtual %p)\n",
947 (unsigned long long)efx->membase_phys,
948 efx->type->mem_map_size, efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100949
950 return 0;
951
952 fail4:
Ben Hutchingsdc803df2009-10-23 08:32:33 +0000953 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100954 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +0100955 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100956 fail2:
957 pci_disable_device(efx->pci_dev);
958 fail1:
959 return rc;
960}
961
962static void efx_fini_io(struct efx_nic *efx)
963{
Ben Hutchings62776d02010-06-23 11:30:07 +0000964 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100965
966 if (efx->membase) {
967 iounmap(efx->membase);
968 efx->membase = NULL;
969 }
970
971 if (efx->membase_phys) {
Ben Hutchingsdc803df2009-10-23 08:32:33 +0000972 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings2c118e02008-05-16 21:15:29 +0100973 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100974 }
975
976 pci_disable_device(efx->pci_dev);
977}
978
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000979/* Get number of channels wanted. Each channel will have its own IRQ,
980 * 1 RX queue and/or 2 TX queues. */
981static int efx_wanted_channels(void)
Ben Hutchings46123d02008-09-01 12:47:33 +0100982{
Rusty Russell2f8975f2009-01-10 21:58:09 -0800983 cpumask_var_t core_mask;
Ben Hutchings46123d02008-09-01 12:47:33 +0100984 int count;
985 int cpu;
986
Li Zefan79f55992009-06-15 14:58:26 +0800987 if (unlikely(!zalloc_cpumask_var(&core_mask, GFP_KERNEL))) {
Rusty Russell2f8975f2009-01-10 21:58:09 -0800988 printk(KERN_WARNING
Mike Travis3977d032009-05-12 10:48:36 +0000989 "sfc: RSS disabled due to allocation failure\n");
Rusty Russell2f8975f2009-01-10 21:58:09 -0800990 return 1;
991 }
992
Ben Hutchings46123d02008-09-01 12:47:33 +0100993 count = 0;
994 for_each_online_cpu(cpu) {
Rusty Russell2f8975f2009-01-10 21:58:09 -0800995 if (!cpumask_test_cpu(cpu, core_mask)) {
Ben Hutchings46123d02008-09-01 12:47:33 +0100996 ++count;
Rusty Russell2f8975f2009-01-10 21:58:09 -0800997 cpumask_or(core_mask, core_mask,
Rusty Russellfbd59a82009-01-10 21:58:08 -0800998 topology_core_cpumask(cpu));
Ben Hutchings46123d02008-09-01 12:47:33 +0100999 }
1000 }
1001
Rusty Russell2f8975f2009-01-10 21:58:09 -08001002 free_cpumask_var(core_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001003 return count;
1004}
1005
1006/* Probe the number and type of interrupts we are able to obtain, and
1007 * the resulting numbers of channels and RX queues.
1008 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001009static void efx_probe_interrupts(struct efx_nic *efx)
1010{
Ben Hutchings46123d02008-09-01 12:47:33 +01001011 int max_channels =
1012 min_t(int, efx->type->phys_addr_channels, EFX_MAX_CHANNELS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001013 int rc, i;
1014
1015 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001016 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001017 int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001018
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001019 n_channels = efx_wanted_channels();
1020 if (separate_tx_channels)
1021 n_channels *= 2;
1022 n_channels = min(n_channels, max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001023
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001024 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001025 xentries[i].entry = i;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001026 rc = pci_enable_msix(efx->pci_dev, xentries, n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001027 if (rc > 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001028 netif_err(efx, drv, efx->net_dev,
1029 "WARNING: Insufficient MSI-X vectors"
1030 " available (%d < %d).\n", rc, n_channels);
1031 netif_err(efx, drv, efx->net_dev,
1032 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001033 EFX_BUG_ON_PARANOID(rc >= n_channels);
1034 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001035 rc = pci_enable_msix(efx->pci_dev, xentries,
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001036 n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001037 }
1038
1039 if (rc == 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001040 efx->n_channels = n_channels;
1041 if (separate_tx_channels) {
1042 efx->n_tx_channels =
1043 max(efx->n_channels / 2, 1U);
1044 efx->n_rx_channels =
1045 max(efx->n_channels -
1046 efx->n_tx_channels, 1U);
1047 } else {
1048 efx->n_tx_channels = efx->n_channels;
1049 efx->n_rx_channels = efx->n_channels;
1050 }
1051 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001052 efx->channel[i].irq = xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001053 } else {
1054 /* Fall back to single channel MSI */
1055 efx->interrupt_mode = EFX_INT_MODE_MSI;
Ben Hutchings62776d02010-06-23 11:30:07 +00001056 netif_err(efx, drv, efx->net_dev,
1057 "could not enable MSI-X\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001058 }
1059 }
1060
1061 /* Try single interrupt MSI */
1062 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001063 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001064 efx->n_rx_channels = 1;
1065 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001066 rc = pci_enable_msi(efx->pci_dev);
1067 if (rc == 0) {
1068 efx->channel[0].irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001069 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001070 netif_err(efx, drv, efx->net_dev,
1071 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001072 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1073 }
1074 }
1075
1076 /* Assume legacy interrupts */
1077 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Neil Turton28b581a2008-12-12 21:41:06 -08001078 efx->n_channels = 1 + (separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001079 efx->n_rx_channels = 1;
1080 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001081 efx->legacy_irq = efx->pci_dev->irq;
1082 }
1083}
1084
1085static void efx_remove_interrupts(struct efx_nic *efx)
1086{
1087 struct efx_channel *channel;
1088
1089 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001090 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001091 channel->irq = 0;
1092 pci_disable_msi(efx->pci_dev);
1093 pci_disable_msix(efx->pci_dev);
1094
1095 /* Remove legacy interrupt */
1096 efx->legacy_irq = 0;
1097}
1098
Ben Hutchings8831da72008-09-01 12:47:48 +01001099static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001100{
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001101 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001102 struct efx_tx_queue *tx_queue;
1103 struct efx_rx_queue *rx_queue;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001104 unsigned tx_channel_offset =
1105 separate_tx_channels ? efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001106
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001107 efx_for_each_channel(channel, efx) {
1108 if (channel->channel - tx_channel_offset < efx->n_tx_channels) {
1109 channel->tx_queue = &efx->tx_queue[
1110 (channel->channel - tx_channel_offset) *
1111 EFX_TXQ_TYPES];
1112 efx_for_each_channel_tx_queue(tx_queue, channel)
1113 tx_queue->channel = channel;
1114 }
Ben Hutchings60ac1062008-09-01 12:44:59 +01001115 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001116
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001117 efx_for_each_rx_queue(rx_queue, efx)
Ben Hutchings8831da72008-09-01 12:47:48 +01001118 rx_queue->channel = &efx->channel[rx_queue->queue];
Ben Hutchings8ceee662008-04-27 12:55:59 +01001119}
1120
1121static int efx_probe_nic(struct efx_nic *efx)
1122{
1123 int rc;
1124
Ben Hutchings62776d02010-06-23 11:30:07 +00001125 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001126
1127 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001128 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001129 if (rc)
1130 return rc;
1131
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001132 /* Determine the number of channels and queues by trying to hook
Ben Hutchings8ceee662008-04-27 12:55:59 +01001133 * in MSI-X interrupts. */
1134 efx_probe_interrupts(efx);
1135
Ben Hutchings8831da72008-09-01 12:47:48 +01001136 efx_set_channels(efx);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001137 efx->net_dev->real_num_tx_queues = efx->n_tx_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001138
1139 /* Initialise the interrupt moderation settings */
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001140 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001141
1142 return 0;
1143}
1144
1145static void efx_remove_nic(struct efx_nic *efx)
1146{
Ben Hutchings62776d02010-06-23 11:30:07 +00001147 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001148
1149 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001150 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001151}
1152
1153/**************************************************************************
1154 *
1155 * NIC startup/shutdown
1156 *
1157 *************************************************************************/
1158
1159static int efx_probe_all(struct efx_nic *efx)
1160{
1161 struct efx_channel *channel;
1162 int rc;
1163
1164 /* Create NIC */
1165 rc = efx_probe_nic(efx);
1166 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001167 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001168 goto fail1;
1169 }
1170
1171 /* Create port */
1172 rc = efx_probe_port(efx);
1173 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001174 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001175 goto fail2;
1176 }
1177
1178 /* Create channels */
1179 efx_for_each_channel(channel, efx) {
1180 rc = efx_probe_channel(channel);
1181 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001182 netif_err(efx, probe, efx->net_dev,
1183 "failed to create channel %d\n",
1184 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001185 goto fail3;
1186 }
1187 }
Ben Hutchings56536e92008-12-12 21:37:02 -08001188 efx_set_channel_names(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001189
1190 return 0;
1191
1192 fail3:
1193 efx_for_each_channel(channel, efx)
1194 efx_remove_channel(channel);
1195 efx_remove_port(efx);
1196 fail2:
1197 efx_remove_nic(efx);
1198 fail1:
1199 return rc;
1200}
1201
1202/* Called after previous invocation(s) of efx_stop_all, restarts the
1203 * port, kernel transmit queue, NAPI processing and hardware interrupts,
1204 * and ensures that the port is scheduled to be reconfigured.
1205 * This function is safe to call multiple times when the NIC is in any
1206 * state. */
1207static void efx_start_all(struct efx_nic *efx)
1208{
1209 struct efx_channel *channel;
1210
1211 EFX_ASSERT_RESET_SERIALISED(efx);
1212
1213 /* Check that it is appropriate to restart the interface. All
1214 * of these flags are safe to read under just the rtnl lock */
1215 if (efx->port_enabled)
1216 return;
1217 if ((efx->state != STATE_RUNNING) && (efx->state != STATE_INIT))
1218 return;
Ben Hutchings55668612008-05-16 21:16:10 +01001219 if (efx_dev_registered(efx) && !netif_running(efx->net_dev))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001220 return;
1221
1222 /* Mark the port as enabled so port reconfigurations can start, then
1223 * restart the transmit interface early so the watchdog timer stops */
1224 efx_start_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001225
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001226 efx_for_each_channel(channel, efx) {
1227 if (efx_dev_registered(efx))
1228 efx_wake_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001229 efx_start_channel(channel);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001230 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001231
Ben Hutchings152b6a62009-11-29 03:43:56 +00001232 efx_nic_enable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001233
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001234 /* Switch to event based MCDI completions after enabling interrupts.
1235 * If a reset has been scheduled, then we need to stay in polled mode.
1236 * Rather than serialising efx_mcdi_mode_event() [which sleeps] and
1237 * reset_pending [modified from an atomic context], we instead guarantee
1238 * that efx_mcdi_mode_poll() isn't reverted erroneously */
1239 efx_mcdi_mode_event(efx);
1240 if (efx->reset_pending != RESET_TYPE_NONE)
1241 efx_mcdi_mode_poll(efx);
1242
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001243 /* Start the hardware monitor if there is one. Otherwise (we're link
1244 * event driven), we have to poll the PHY because after an event queue
1245 * flush, we could have a missed a link state change */
1246 if (efx->type->monitor != NULL) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001247 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1248 efx_monitor_interval);
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001249 } else {
1250 mutex_lock(&efx->mac_lock);
1251 if (efx->phy_op->poll(efx))
1252 efx_link_status_changed(efx);
1253 mutex_unlock(&efx->mac_lock);
1254 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001255
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001256 efx->type->start_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001257}
1258
1259/* Flush all delayed work. Should only be called when no more delayed work
1260 * will be scheduled. This doesn't flush pending online resets (efx_reset),
1261 * since we're holding the rtnl_lock at this point. */
1262static void efx_flush_all(struct efx_nic *efx)
1263{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001264 /* Make sure the hardware monitor is stopped */
1265 cancel_delayed_work_sync(&efx->monitor_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001266 /* Stop scheduled port reconfigurations */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001267 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001268}
1269
1270/* Quiesce hardware and software without bringing the link down.
1271 * Safe to call multiple times, when the nic and interface is in any
1272 * state. The caller is guaranteed to subsequently be in a position
1273 * to modify any hardware and software state they see fit without
1274 * taking locks. */
1275static void efx_stop_all(struct efx_nic *efx)
1276{
1277 struct efx_channel *channel;
1278
1279 EFX_ASSERT_RESET_SERIALISED(efx);
1280
1281 /* port_enabled can be read safely under the rtnl lock */
1282 if (!efx->port_enabled)
1283 return;
1284
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001285 efx->type->stop_stats(efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001286
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001287 /* Switch to MCDI polling on Siena before disabling interrupts */
1288 efx_mcdi_mode_poll(efx);
1289
Ben Hutchings8ceee662008-04-27 12:55:59 +01001290 /* Disable interrupts and wait for ISR to complete */
Ben Hutchings152b6a62009-11-29 03:43:56 +00001291 efx_nic_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001292 if (efx->legacy_irq)
1293 synchronize_irq(efx->legacy_irq);
Ben Hutchings64ee3122008-09-01 12:47:38 +01001294 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001295 if (channel->irq)
1296 synchronize_irq(channel->irq);
Ben Hutchingsb3475642008-05-16 21:15:49 +01001297 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001298
1299 /* Stop all NAPI processing and synchronous rx refills */
1300 efx_for_each_channel(channel, efx)
1301 efx_stop_channel(channel);
1302
1303 /* Stop all asynchronous port reconfigurations. Since all
1304 * event processing has already been stopped, there is no
1305 * window to loose phy events */
1306 efx_stop_port(efx);
1307
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00001308 /* Flush efx_mac_work(), refill_workqueue, monitor_work */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001309 efx_flush_all(efx);
1310
Ben Hutchings8ceee662008-04-27 12:55:59 +01001311 /* Stop the kernel transmit interface late, so the watchdog
1312 * timer isn't ticking over the flush */
Ben Hutchings55668612008-05-16 21:16:10 +01001313 if (efx_dev_registered(efx)) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001314 struct efx_channel *channel;
1315 efx_for_each_channel(channel, efx)
1316 efx_stop_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001317 netif_tx_lock_bh(efx->net_dev);
1318 netif_tx_unlock_bh(efx->net_dev);
1319 }
1320}
1321
1322static void efx_remove_all(struct efx_nic *efx)
1323{
1324 struct efx_channel *channel;
1325
1326 efx_for_each_channel(channel, efx)
1327 efx_remove_channel(channel);
1328 efx_remove_port(efx);
1329 efx_remove_nic(efx);
1330}
1331
Ben Hutchings8ceee662008-04-27 12:55:59 +01001332/**************************************************************************
1333 *
1334 * Interrupt moderation
1335 *
1336 **************************************************************************/
1337
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001338static unsigned irq_mod_ticks(int usecs, int resolution)
1339{
1340 if (usecs <= 0)
1341 return 0; /* cannot receive interrupts ahead of time :-) */
1342 if (usecs < resolution)
1343 return 1; /* never round down to 0 */
1344 return usecs / resolution;
1345}
1346
Ben Hutchings8ceee662008-04-27 12:55:59 +01001347/* Set interrupt moderation parameters */
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001348void efx_init_irq_moderation(struct efx_nic *efx, int tx_usecs, int rx_usecs,
1349 bool rx_adaptive)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001350{
1351 struct efx_tx_queue *tx_queue;
1352 struct efx_rx_queue *rx_queue;
Ben Hutchings152b6a62009-11-29 03:43:56 +00001353 unsigned tx_ticks = irq_mod_ticks(tx_usecs, EFX_IRQ_MOD_RESOLUTION);
1354 unsigned rx_ticks = irq_mod_ticks(rx_usecs, EFX_IRQ_MOD_RESOLUTION);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001355
1356 EFX_ASSERT_RESET_SERIALISED(efx);
1357
1358 efx_for_each_tx_queue(tx_queue, efx)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001359 tx_queue->channel->irq_moderation = tx_ticks;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001360
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001361 efx->irq_rx_adaptive = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001362 efx->irq_rx_moderation = rx_ticks;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001363 efx_for_each_rx_queue(rx_queue, efx)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001364 rx_queue->channel->irq_moderation = rx_ticks;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001365}
1366
1367/**************************************************************************
1368 *
1369 * Hardware monitor
1370 *
1371 **************************************************************************/
1372
1373/* Run periodically off the general workqueue. Serialised against
1374 * efx_reconfigure_port via the mac_lock */
1375static void efx_monitor(struct work_struct *data)
1376{
1377 struct efx_nic *efx = container_of(data, struct efx_nic,
1378 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001379
Ben Hutchings62776d02010-06-23 11:30:07 +00001380 netif_vdbg(efx, timer, efx->net_dev,
1381 "hardware monitor executing on CPU %d\n",
1382 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001383 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001384
Ben Hutchings8ceee662008-04-27 12:55:59 +01001385 /* If the mac_lock is already held then it is likely a port
1386 * reconfiguration is already in place, which will likely do
1387 * most of the work of check_hw() anyway. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001388 if (!mutex_trylock(&efx->mac_lock))
1389 goto out_requeue;
1390 if (!efx->port_enabled)
1391 goto out_unlock;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001392 efx->type->monitor(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001393
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001394out_unlock:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001395 mutex_unlock(&efx->mac_lock);
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001396out_requeue:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001397 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1398 efx_monitor_interval);
1399}
1400
1401/**************************************************************************
1402 *
1403 * ioctls
1404 *
1405 *************************************************************************/
1406
1407/* Net device ioctl
1408 * Context: process, rtnl_lock() held.
1409 */
1410static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
1411{
Ben Hutchings767e4682008-09-01 12:43:14 +01001412 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00001413 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001414
1415 EFX_ASSERT_RESET_SERIALISED(efx);
1416
Ben Hutchings68e7f452009-04-29 08:05:08 +00001417 /* Convert phy_id from older PRTAD/DEVAD format */
1418 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
1419 (data->phy_id & 0xfc00) == 0x0400)
1420 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
1421
1422 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001423}
1424
1425/**************************************************************************
1426 *
1427 * NAPI interface
1428 *
1429 **************************************************************************/
1430
1431static int efx_init_napi(struct efx_nic *efx)
1432{
1433 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001434
1435 efx_for_each_channel(channel, efx) {
1436 channel->napi_dev = efx->net_dev;
Ben Hutchings718cff12009-04-14 19:47:46 -07001437 netif_napi_add(channel->napi_dev, &channel->napi_str,
1438 efx_poll, napi_weight);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001439 }
1440 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001441}
1442
1443static void efx_fini_napi(struct efx_nic *efx)
1444{
1445 struct efx_channel *channel;
1446
1447 efx_for_each_channel(channel, efx) {
Ben Hutchings718cff12009-04-14 19:47:46 -07001448 if (channel->napi_dev)
1449 netif_napi_del(&channel->napi_str);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001450 channel->napi_dev = NULL;
1451 }
1452}
1453
1454/**************************************************************************
1455 *
1456 * Kernel netpoll interface
1457 *
1458 *************************************************************************/
1459
1460#ifdef CONFIG_NET_POLL_CONTROLLER
1461
1462/* Although in the common case interrupts will be disabled, this is not
1463 * guaranteed. However, all our work happens inside the NAPI callback,
1464 * so no locking is required.
1465 */
1466static void efx_netpoll(struct net_device *net_dev)
1467{
Ben Hutchings767e4682008-09-01 12:43:14 +01001468 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001469 struct efx_channel *channel;
1470
Ben Hutchings64ee3122008-09-01 12:47:38 +01001471 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001472 efx_schedule_channel(channel);
1473}
1474
1475#endif
1476
1477/**************************************************************************
1478 *
1479 * Kernel net device interface
1480 *
1481 *************************************************************************/
1482
1483/* Context: process, rtnl_lock() held. */
1484static int efx_net_open(struct net_device *net_dev)
1485{
Ben Hutchings767e4682008-09-01 12:43:14 +01001486 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001487 EFX_ASSERT_RESET_SERIALISED(efx);
1488
Ben Hutchings62776d02010-06-23 11:30:07 +00001489 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
1490 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01001491
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08001492 if (efx->state == STATE_DISABLED)
1493 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01001494 if (efx->phy_mode & PHY_MODE_SPECIAL)
1495 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001496 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
1497 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01001498
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001499 /* Notify the kernel of the link state polled during driver load,
1500 * before the monitor starts running */
1501 efx_link_status_changed(efx);
1502
Ben Hutchings8ceee662008-04-27 12:55:59 +01001503 efx_start_all(efx);
1504 return 0;
1505}
1506
1507/* Context: process, rtnl_lock() held.
1508 * Note that the kernel will ignore our return code; this method
1509 * should really be a void.
1510 */
1511static int efx_net_stop(struct net_device *net_dev)
1512{
Ben Hutchings767e4682008-09-01 12:43:14 +01001513 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001514
Ben Hutchings62776d02010-06-23 11:30:07 +00001515 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
1516 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01001517
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08001518 if (efx->state != STATE_DISABLED) {
1519 /* Stop the device and flush all the channels */
1520 efx_stop_all(efx);
1521 efx_fini_channels(efx);
1522 efx_init_channels(efx);
1523 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001524
1525 return 0;
1526}
1527
Ben Hutchings5b9e2072008-05-16 21:18:14 +01001528/* Context: process, dev_base_lock or RTNL held, non-blocking. */
Ben Hutchings44727022010-06-08 07:21:12 +00001529static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001530{
Ben Hutchings767e4682008-09-01 12:43:14 +01001531 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001532 struct efx_mac_stats *mac_stats = &efx->mac_stats;
Ben Hutchings44727022010-06-08 07:21:12 +00001533 struct rtnl_link_stats64 *stats = &net_dev->stats64;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001534
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001535 spin_lock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001536 efx->type->update_stats(efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001537 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001538
1539 stats->rx_packets = mac_stats->rx_packets;
1540 stats->tx_packets = mac_stats->tx_packets;
1541 stats->rx_bytes = mac_stats->rx_bytes;
1542 stats->tx_bytes = mac_stats->tx_bytes;
1543 stats->multicast = mac_stats->rx_multicast;
1544 stats->collisions = mac_stats->tx_collision;
1545 stats->rx_length_errors = (mac_stats->rx_gtjumbo +
1546 mac_stats->rx_length_error);
1547 stats->rx_over_errors = efx->n_rx_nodesc_drop_cnt;
1548 stats->rx_crc_errors = mac_stats->rx_bad;
1549 stats->rx_frame_errors = mac_stats->rx_align_error;
1550 stats->rx_fifo_errors = mac_stats->rx_overflow;
1551 stats->rx_missed_errors = mac_stats->rx_missed;
1552 stats->tx_window_errors = mac_stats->tx_late_collision;
1553
1554 stats->rx_errors = (stats->rx_length_errors +
Ben Hutchings8ceee662008-04-27 12:55:59 +01001555 stats->rx_crc_errors +
1556 stats->rx_frame_errors +
Ben Hutchings8ceee662008-04-27 12:55:59 +01001557 mac_stats->rx_symbol_error);
1558 stats->tx_errors = (stats->tx_window_errors +
1559 mac_stats->tx_bad);
1560
1561 return stats;
1562}
1563
1564/* Context: netif_tx_lock held, BHs disabled. */
1565static void efx_watchdog(struct net_device *net_dev)
1566{
Ben Hutchings767e4682008-09-01 12:43:14 +01001567 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001568
Ben Hutchings62776d02010-06-23 11:30:07 +00001569 netif_err(efx, tx_err, efx->net_dev,
1570 "TX stuck with port_enabled=%d: resetting channels\n",
1571 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001572
Ben Hutchings739bb23d2008-11-04 20:35:36 +00001573 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001574}
1575
1576
1577/* Context: process, rtnl_lock() held. */
1578static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
1579{
Ben Hutchings767e4682008-09-01 12:43:14 +01001580 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001581 int rc = 0;
1582
1583 EFX_ASSERT_RESET_SERIALISED(efx);
1584
1585 if (new_mtu > EFX_MAX_MTU)
1586 return -EINVAL;
1587
1588 efx_stop_all(efx);
1589
Ben Hutchings62776d02010-06-23 11:30:07 +00001590 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001591
1592 efx_fini_channels(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001593
1594 mutex_lock(&efx->mac_lock);
1595 /* Reconfigure the MAC before enabling the dma queues so that
1596 * the RX buffers don't overflow */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001597 net_dev->mtu = new_mtu;
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001598 efx->mac_op->reconfigure(efx);
1599 mutex_unlock(&efx->mac_lock);
1600
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01001601 efx_init_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001602
1603 efx_start_all(efx);
1604 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001605}
1606
1607static int efx_set_mac_address(struct net_device *net_dev, void *data)
1608{
Ben Hutchings767e4682008-09-01 12:43:14 +01001609 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001610 struct sockaddr *addr = data;
1611 char *new_addr = addr->sa_data;
1612
1613 EFX_ASSERT_RESET_SERIALISED(efx);
1614
1615 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001616 netif_err(efx, drv, efx->net_dev,
1617 "invalid ethernet MAC address requested: %pM\n",
1618 new_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001619 return -EINVAL;
1620 }
1621
1622 memcpy(net_dev->dev_addr, new_addr, net_dev->addr_len);
1623
1624 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001625 mutex_lock(&efx->mac_lock);
1626 efx->mac_op->reconfigure(efx);
1627 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001628
1629 return 0;
1630}
1631
Ben Hutchingsa816f752008-09-01 12:49:12 +01001632/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001633static void efx_set_multicast_list(struct net_device *net_dev)
1634{
Ben Hutchings767e4682008-09-01 12:43:14 +01001635 struct efx_nic *efx = netdev_priv(net_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001636 struct netdev_hw_addr *ha;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001637 union efx_multicast_hash *mc_hash = &efx->multicast_hash;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001638 u32 crc;
1639 int bit;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001640
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001641 efx->promiscuous = !!(net_dev->flags & IFF_PROMISC);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001642
1643 /* Build multicast hash table */
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001644 if (efx->promiscuous || (net_dev->flags & IFF_ALLMULTI)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001645 memset(mc_hash, 0xff, sizeof(*mc_hash));
1646 } else {
1647 memset(mc_hash, 0x00, sizeof(*mc_hash));
Jiri Pirko22bedad32010-04-01 21:22:57 +00001648 netdev_for_each_mc_addr(ha, net_dev) {
1649 crc = ether_crc_le(ETH_ALEN, ha->addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001650 bit = crc & (EFX_MCAST_HASH_ENTRIES - 1);
1651 set_bit_le(bit, mc_hash->byte);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001652 }
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001653
1654 /* Broadcast packets go through the multicast hash filter.
1655 * ether_crc_le() of the broadcast address is 0xbe2612ff
1656 * so we always add bit 0xff to the mask.
1657 */
1658 set_bit_le(0xff, mc_hash->byte);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001659 }
1660
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001661 if (efx->port_enabled)
1662 queue_work(efx->workqueue, &efx->mac_work);
1663 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001664}
1665
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001666static const struct net_device_ops efx_netdev_ops = {
1667 .ndo_open = efx_net_open,
1668 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00001669 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001670 .ndo_tx_timeout = efx_watchdog,
1671 .ndo_start_xmit = efx_hard_start_xmit,
1672 .ndo_validate_addr = eth_validate_addr,
1673 .ndo_do_ioctl = efx_ioctl,
1674 .ndo_change_mtu = efx_change_mtu,
1675 .ndo_set_mac_address = efx_set_mac_address,
1676 .ndo_set_multicast_list = efx_set_multicast_list,
1677#ifdef CONFIG_NET_POLL_CONTROLLER
1678 .ndo_poll_controller = efx_netpoll,
1679#endif
1680};
1681
Ben Hutchings7dde5962008-12-12 22:09:38 -08001682static void efx_update_name(struct efx_nic *efx)
1683{
1684 strcpy(efx->name, efx->net_dev->name);
1685 efx_mtd_rename(efx);
1686 efx_set_channel_names(efx);
1687}
1688
Ben Hutchings8ceee662008-04-27 12:55:59 +01001689static int efx_netdev_event(struct notifier_block *this,
1690 unsigned long event, void *ptr)
1691{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001692 struct net_device *net_dev = ptr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001693
Ben Hutchings7dde5962008-12-12 22:09:38 -08001694 if (net_dev->netdev_ops == &efx_netdev_ops &&
1695 event == NETDEV_CHANGENAME)
1696 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001697
1698 return NOTIFY_DONE;
1699}
1700
1701static struct notifier_block efx_netdev_notifier = {
1702 .notifier_call = efx_netdev_event,
1703};
1704
Ben Hutchings06d5e192008-12-12 21:47:23 -08001705static ssize_t
1706show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
1707{
1708 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
1709 return sprintf(buf, "%d\n", efx->phy_type);
1710}
1711static DEVICE_ATTR(phy_type, 0644, show_phy_type, NULL);
1712
Ben Hutchings8ceee662008-04-27 12:55:59 +01001713static int efx_register_netdev(struct efx_nic *efx)
1714{
1715 struct net_device *net_dev = efx->net_dev;
1716 int rc;
1717
1718 net_dev->watchdog_timeo = 5 * HZ;
1719 net_dev->irq = efx->pci_dev->irq;
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001720 net_dev->netdev_ops = &efx_netdev_ops;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001721 SET_ETHTOOL_OPS(net_dev, &efx_ethtool_ops);
1722
Ben Hutchings8ceee662008-04-27 12:55:59 +01001723 /* Clear MAC statistics */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001724 efx->mac_op->update_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001725 memset(&efx->mac_stats, 0, sizeof(efx->mac_stats));
1726
Ben Hutchings7dde5962008-12-12 22:09:38 -08001727 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00001728
1729 rc = dev_alloc_name(net_dev, net_dev->name);
1730 if (rc < 0)
1731 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08001732 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00001733
1734 rc = register_netdevice(net_dev);
1735 if (rc)
1736 goto fail_locked;
1737
1738 /* Always start with carrier off; PHY events will detect the link */
1739 netif_carrier_off(efx->net_dev);
1740
Ben Hutchings7dde5962008-12-12 22:09:38 -08001741 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01001742
Ben Hutchings06d5e192008-12-12 21:47:23 -08001743 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
1744 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001745 netif_err(efx, drv, efx->net_dev,
1746 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08001747 goto fail_registered;
1748 }
1749
Ben Hutchings8ceee662008-04-27 12:55:59 +01001750 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08001751
Ben Hutchingsaed06282009-08-26 08:16:27 +00001752fail_locked:
1753 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00001754 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00001755 return rc;
1756
Ben Hutchings06d5e192008-12-12 21:47:23 -08001757fail_registered:
1758 unregister_netdev(net_dev);
1759 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001760}
1761
1762static void efx_unregister_netdev(struct efx_nic *efx)
1763{
1764 struct efx_tx_queue *tx_queue;
1765
1766 if (!efx->net_dev)
1767 return;
1768
Ben Hutchings767e4682008-09-01 12:43:14 +01001769 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001770
1771 /* Free up any skbs still remaining. This has to happen before
1772 * we try to unregister the netdev as running their destructors
1773 * may be needed to get the device ref. count to 0. */
1774 efx_for_each_tx_queue(tx_queue, efx)
1775 efx_release_tx_buffers(tx_queue);
1776
Ben Hutchings55668612008-05-16 21:16:10 +01001777 if (efx_dev_registered(efx)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001778 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
Ben Hutchings06d5e192008-12-12 21:47:23 -08001779 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001780 unregister_netdev(efx->net_dev);
1781 }
1782}
1783
1784/**************************************************************************
1785 *
1786 * Device reset and suspend
1787 *
1788 **************************************************************************/
1789
Ben Hutchings2467ca42008-09-01 12:48:50 +01001790/* Tears down the entire software state and most of the hardware state
1791 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001792void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001793{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001794 EFX_ASSERT_RESET_SERIALISED(efx);
1795
Ben Hutchings2467ca42008-09-01 12:48:50 +01001796 efx_stop_all(efx);
1797 mutex_lock(&efx->mac_lock);
Ben Hutchingsf4150722008-11-04 20:34:28 +00001798 mutex_lock(&efx->spi_lock);
Ben Hutchings2467ca42008-09-01 12:48:50 +01001799
Ben Hutchings8ceee662008-04-27 12:55:59 +01001800 efx_fini_channels(efx);
Steve Hodgson4b988282009-01-29 17:50:51 +00001801 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE)
1802 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001803 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001804}
1805
Ben Hutchings2467ca42008-09-01 12:48:50 +01001806/* This function will always ensure that the locks acquired in
1807 * efx_reset_down() are released. A failure return code indicates
1808 * that we were unable to reinitialise the hardware, and the
1809 * driver should be disabled. If ok is false, then the rx and tx
1810 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001811int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001812{
1813 int rc;
1814
Ben Hutchings2467ca42008-09-01 12:48:50 +01001815 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001816
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001817 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001818 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001819 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001820 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001821 }
1822
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001823 if (!ok)
1824 goto fail;
1825
Steve Hodgson4b988282009-01-29 17:50:51 +00001826 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001827 rc = efx->phy_op->init(efx);
1828 if (rc)
1829 goto fail;
1830 if (efx->phy_op->reconfigure(efx))
Ben Hutchings62776d02010-06-23 11:30:07 +00001831 netif_err(efx, drv, efx->net_dev,
1832 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00001833 }
1834
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001835 efx->mac_op->reconfigure(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001836
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001837 efx_init_channels(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01001838
Ben Hutchingsf4150722008-11-04 20:34:28 +00001839 mutex_unlock(&efx->spi_lock);
Ben Hutchings2467ca42008-09-01 12:48:50 +01001840 mutex_unlock(&efx->mac_lock);
1841
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001842 efx_start_all(efx);
1843
1844 return 0;
1845
1846fail:
1847 efx->port_initialized = false;
1848
1849 mutex_unlock(&efx->spi_lock);
1850 mutex_unlock(&efx->mac_lock);
1851
Ben Hutchings8ceee662008-04-27 12:55:59 +01001852 return rc;
1853}
1854
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001855/* Reset the NIC using the specified method. Note that the reset may
1856 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01001857 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001858 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01001859 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001860int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001861{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001862 int rc, rc2;
1863 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001864
Ben Hutchings62776d02010-06-23 11:30:07 +00001865 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
1866 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001867
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001868 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001869
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001870 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001871 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001872 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001873 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001874 }
1875
1876 /* Allow resets to be rescheduled. */
1877 efx->reset_pending = RESET_TYPE_NONE;
1878
1879 /* Reinitialise bus-mastering, which may have been turned off before
1880 * the reset was scheduled. This is still appropriate, even in the
1881 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
1882 * can respond to requests. */
1883 pci_set_master(efx->pci_dev);
1884
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001885out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001886 /* Leave device stopped if necessary */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001887 disabled = rc || method == RESET_TYPE_DISABLE;
1888 rc2 = efx_reset_up(efx, method, !disabled);
1889 if (rc2) {
1890 disabled = true;
1891 if (!rc)
1892 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001893 }
1894
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001895 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00001896 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00001897 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08001898 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08001899 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001900 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08001901 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001902 return rc;
1903}
1904
1905/* The worker thread exists so that code that cannot sleep can
1906 * schedule a reset for later.
1907 */
1908static void efx_reset_work(struct work_struct *data)
1909{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001910 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001911
Steve Hodgson319ba642010-06-01 11:17:24 +00001912 if (efx->reset_pending == RESET_TYPE_NONE)
1913 return;
1914
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001915 /* If we're not RUNNING then don't reset. Leave the reset_pending
1916 * flag set so that efx_pci_probe_main will be retried */
1917 if (efx->state != STATE_RUNNING) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001918 netif_info(efx, drv, efx->net_dev,
1919 "scheduled reset quenched. NIC not RUNNING\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001920 return;
1921 }
1922
1923 rtnl_lock();
Ben Hutchingsf49a4582010-04-28 09:01:33 +00001924 (void)efx_reset(efx, efx->reset_pending);
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001925 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01001926}
1927
1928void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
1929{
1930 enum reset_type method;
1931
1932 if (efx->reset_pending != RESET_TYPE_NONE) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001933 netif_info(efx, drv, efx->net_dev,
1934 "quenching already scheduled reset\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001935 return;
1936 }
1937
1938 switch (type) {
1939 case RESET_TYPE_INVISIBLE:
1940 case RESET_TYPE_ALL:
1941 case RESET_TYPE_WORLD:
1942 case RESET_TYPE_DISABLE:
1943 method = type;
1944 break;
1945 case RESET_TYPE_RX_RECOVERY:
1946 case RESET_TYPE_RX_DESC_FETCH:
1947 case RESET_TYPE_TX_DESC_FETCH:
1948 case RESET_TYPE_TX_SKIP:
1949 method = RESET_TYPE_INVISIBLE;
1950 break;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001951 case RESET_TYPE_MC_FAILURE:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001952 default:
1953 method = RESET_TYPE_ALL;
1954 break;
1955 }
1956
1957 if (method != type)
Ben Hutchings62776d02010-06-23 11:30:07 +00001958 netif_dbg(efx, drv, efx->net_dev,
1959 "scheduling %s reset for %s\n",
1960 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001961 else
Ben Hutchings62776d02010-06-23 11:30:07 +00001962 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
1963 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001964
1965 efx->reset_pending = method;
1966
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001967 /* efx_process_channel() will no longer read events once a
1968 * reset is scheduled. So switch back to poll'd MCDI completions. */
1969 efx_mcdi_mode_poll(efx);
1970
Steve Hodgson1ab00622008-12-12 21:33:02 -08001971 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001972}
1973
1974/**************************************************************************
1975 *
1976 * List of NICs we support
1977 *
1978 **************************************************************************/
1979
1980/* PCI device ID table */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00001981static DEFINE_PCI_DEVICE_TABLE(efx_pci_table) = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001982 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_A_P_DEVID),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00001983 .driver_data = (unsigned long) &falcon_a1_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01001984 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_B_P_DEVID),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00001985 .driver_data = (unsigned long) &falcon_b0_nic_type},
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001986 {PCI_DEVICE(EFX_VENDID_SFC, BETHPAGE_A_P_DEVID),
1987 .driver_data = (unsigned long) &siena_a0_nic_type},
1988 {PCI_DEVICE(EFX_VENDID_SFC, SIENA_A_P_DEVID),
1989 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01001990 {0} /* end of list */
1991};
1992
1993/**************************************************************************
1994 *
Ben Hutchings37594332009-11-23 16:05:45 +00001995 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01001996 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01001997 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01001998 * Needed so all function pointers are valid and do not have to be tested
1999 * before use
2000 *
2001 **************************************************************************/
2002int efx_port_dummy_op_int(struct efx_nic *efx)
2003{
2004 return 0;
2005}
2006void efx_port_dummy_op_void(struct efx_nic *efx) {}
Ben Hutchings398468e2009-11-23 16:03:45 +00002007void efx_port_dummy_op_set_id_led(struct efx_nic *efx, enum efx_led_mode mode)
2008{
2009}
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002010bool efx_port_dummy_op_poll(struct efx_nic *efx)
2011{
2012 return false;
2013}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002014
2015static struct efx_phy_operations efx_dummy_phy_operations = {
2016 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002017 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002018 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002019 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002020};
2021
Ben Hutchings8ceee662008-04-27 12:55:59 +01002022/**************************************************************************
2023 *
2024 * Data housekeeping
2025 *
2026 **************************************************************************/
2027
2028/* This zeroes out and then fills in the invariants in a struct
2029 * efx_nic (including all sub-structures).
2030 */
2031static int efx_init_struct(struct efx_nic *efx, struct efx_nic_type *type,
2032 struct pci_dev *pci_dev, struct net_device *net_dev)
2033{
2034 struct efx_channel *channel;
2035 struct efx_tx_queue *tx_queue;
2036 struct efx_rx_queue *rx_queue;
Steve Hodgson1ab00622008-12-12 21:33:02 -08002037 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002038
2039 /* Initialise common structures */
2040 memset(efx, 0, sizeof(*efx));
2041 spin_lock_init(&efx->biu_lock);
Steve Hodgsonab867462009-11-28 05:34:44 +00002042 mutex_init(&efx->mdio_lock);
Ben Hutchingsf4150722008-11-04 20:34:28 +00002043 mutex_init(&efx->spi_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002044#ifdef CONFIG_SFC_MTD
2045 INIT_LIST_HEAD(&efx->mtd_list);
2046#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002047 INIT_WORK(&efx->reset_work, efx_reset_work);
2048 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
2049 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002050 efx->msg_enable = debug;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002051 efx->state = STATE_INIT;
2052 efx->reset_pending = RESET_TYPE_NONE;
2053 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002054
2055 efx->net_dev = net_dev;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01002056 efx->rx_checksum_enabled = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002057 spin_lock_init(&efx->stats_lock);
2058 mutex_init(&efx->mac_lock);
Steve Hodgsonb895d732009-11-28 05:35:00 +00002059 efx->mac_op = type->default_mac_ops;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002060 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002061 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002062 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002063
2064 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
2065 channel = &efx->channel[i];
2066 channel->efx = efx;
2067 channel->channel = i;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01002068 channel->work_pending = false;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00002069 spin_lock_init(&channel->tx_stop_lock);
2070 atomic_set(&channel->tx_stop_count, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002071 }
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00002072 for (i = 0; i < EFX_MAX_TX_QUEUES; i++) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002073 tx_queue = &efx->tx_queue[i];
2074 tx_queue->efx = efx;
2075 tx_queue->queue = i;
2076 tx_queue->buffer = NULL;
2077 tx_queue->channel = &efx->channel[0]; /* for safety */
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01002078 tx_queue->tso_headers_free = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002079 }
2080 for (i = 0; i < EFX_MAX_RX_QUEUES; i++) {
2081 rx_queue = &efx->rx_queue[i];
2082 rx_queue->efx = efx;
2083 rx_queue->queue = i;
2084 rx_queue->channel = &efx->channel[0]; /* for safety */
2085 rx_queue->buffer = NULL;
Steve Hodgson90d683a2010-06-01 11:19:39 +00002086 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
2087 (unsigned long)rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002088 }
2089
2090 efx->type = type;
2091
Ben Hutchings8ceee662008-04-27 12:55:59 +01002092 /* As close as we can get to guaranteeing that we don't overflow */
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00002093 BUILD_BUG_ON(EFX_EVQ_SIZE < EFX_TXQ_SIZE + EFX_RXQ_SIZE);
2094
Ben Hutchings8ceee662008-04-27 12:55:59 +01002095 EFX_BUG_ON_PARANOID(efx->type->phys_addr_channels > EFX_MAX_CHANNELS);
2096
2097 /* Higher numbered interrupt modes are less capable! */
2098 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2099 interrupt_mode);
2100
Ben Hutchings6977dc62008-12-26 13:44:39 -08002101 /* Would be good to use the net_dev name, but we're too early */
2102 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2103 pci_name(pci_dev));
2104 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002105 if (!efx->workqueue)
2106 return -ENOMEM;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002107
Ben Hutchings8ceee662008-04-27 12:55:59 +01002108 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002109}
2110
2111static void efx_fini_struct(struct efx_nic *efx)
2112{
2113 if (efx->workqueue) {
2114 destroy_workqueue(efx->workqueue);
2115 efx->workqueue = NULL;
2116 }
2117}
2118
2119/**************************************************************************
2120 *
2121 * PCI interface
2122 *
2123 **************************************************************************/
2124
2125/* Main body of final NIC shutdown code
2126 * This is called only at module unload (or hotplug removal).
2127 */
2128static void efx_pci_remove_main(struct efx_nic *efx)
2129{
Ben Hutchings152b6a62009-11-29 03:43:56 +00002130 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002131 efx_fini_channels(efx);
2132 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002133 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002134 efx_fini_napi(efx);
2135 efx_remove_all(efx);
2136}
2137
2138/* Final NIC shutdown
2139 * This is called only at module unload (or hotplug removal).
2140 */
2141static void efx_pci_remove(struct pci_dev *pci_dev)
2142{
2143 struct efx_nic *efx;
2144
2145 efx = pci_get_drvdata(pci_dev);
2146 if (!efx)
2147 return;
2148
2149 /* Mark the NIC as fini, then stop the interface */
2150 rtnl_lock();
2151 efx->state = STATE_FINI;
2152 dev_close(efx->net_dev);
2153
2154 /* Allow any queued efx_resets() to complete */
2155 rtnl_unlock();
2156
Ben Hutchings8ceee662008-04-27 12:55:59 +01002157 efx_unregister_netdev(efx);
2158
Ben Hutchings7dde5962008-12-12 22:09:38 -08002159 efx_mtd_remove(efx);
2160
Ben Hutchings8ceee662008-04-27 12:55:59 +01002161 /* Wait for any scheduled resets to complete. No more will be
2162 * scheduled from this point because efx_stop_all() has been
2163 * called, we are no longer registered with driverlink, and
2164 * the net_device's have been removed. */
Steve Hodgson1ab00622008-12-12 21:33:02 -08002165 cancel_work_sync(&efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002166
2167 efx_pci_remove_main(efx);
2168
Ben Hutchings8ceee662008-04-27 12:55:59 +01002169 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002170 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002171
2172 pci_set_drvdata(pci_dev, NULL);
2173 efx_fini_struct(efx);
2174 free_netdev(efx->net_dev);
2175};
2176
2177/* Main body of NIC initialisation
2178 * This is called at module load (or hotplug insertion, theoretically).
2179 */
2180static int efx_pci_probe_main(struct efx_nic *efx)
2181{
2182 int rc;
2183
2184 /* Do start-of-day initialisation */
2185 rc = efx_probe_all(efx);
2186 if (rc)
2187 goto fail1;
2188
2189 rc = efx_init_napi(efx);
2190 if (rc)
2191 goto fail2;
2192
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002193 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002194 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002195 netif_err(efx, probe, efx->net_dev,
2196 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002197 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002198 }
2199
2200 rc = efx_init_port(efx);
2201 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002202 netif_err(efx, probe, efx->net_dev,
2203 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002204 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002205 }
2206
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01002207 efx_init_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002208
Ben Hutchings152b6a62009-11-29 03:43:56 +00002209 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002210 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00002211 goto fail5;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002212
2213 return 0;
2214
Ben Hutchings278c0622009-11-23 16:05:12 +00002215 fail5:
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01002216 efx_fini_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002217 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002218 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002219 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002220 fail3:
2221 efx_fini_napi(efx);
2222 fail2:
2223 efx_remove_all(efx);
2224 fail1:
2225 return rc;
2226}
2227
2228/* NIC initialisation
2229 *
2230 * This is called at module load (or hotplug insertion,
2231 * theoretically). It sets up PCI mappings, tests and resets the NIC,
2232 * sets up and registers the network devices with the kernel and hooks
2233 * the interrupt service routine. It does not prepare the device for
2234 * transmission; this is left to the first time one of the network
2235 * interfaces is brought up (i.e. efx_net_open).
2236 */
2237static int __devinit efx_pci_probe(struct pci_dev *pci_dev,
2238 const struct pci_device_id *entry)
2239{
2240 struct efx_nic_type *type = (struct efx_nic_type *) entry->driver_data;
2241 struct net_device *net_dev;
2242 struct efx_nic *efx;
2243 int i, rc;
2244
2245 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00002246 net_dev = alloc_etherdev_mq(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002247 if (!net_dev)
2248 return -ENOMEM;
Ben Hutchingsc383b532009-11-29 15:11:02 +00002249 net_dev->features |= (type->offload_features | NETIF_F_SG |
Ben Hutchings97bc5412009-05-19 16:19:08 -07002250 NETIF_F_HIGHDMA | NETIF_F_TSO |
2251 NETIF_F_GRO);
Ben Hutchings738a8f42009-11-29 15:16:05 +00002252 if (type->offload_features & NETIF_F_V6_CSUM)
2253 net_dev->features |= NETIF_F_TSO6;
Ben Hutchings285065632008-09-01 12:46:54 +01002254 /* Mask for features that also apply to VLAN devices */
2255 net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
Ben Hutchings740847d2008-09-01 12:48:23 +01002256 NETIF_F_HIGHDMA | NETIF_F_TSO);
Ben Hutchings767e4682008-09-01 12:43:14 +01002257 efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002258 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002259 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002260 rc = efx_init_struct(efx, type, pci_dev, net_dev);
2261 if (rc)
2262 goto fail1;
2263
Ben Hutchings62776d02010-06-23 11:30:07 +00002264 netif_info(efx, probe, efx->net_dev,
2265 "Solarflare Communications NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002266
2267 /* Set up basic I/O (BAR mappings etc) */
2268 rc = efx_init_io(efx);
2269 if (rc)
2270 goto fail2;
2271
2272 /* No serialisation is required with the reset path because
2273 * we're in STATE_INIT. */
2274 for (i = 0; i < 5; i++) {
2275 rc = efx_pci_probe_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002276
2277 /* Serialise against efx_reset(). No more resets will be
2278 * scheduled since efx_stop_all() has been called, and we
2279 * have not and never have been registered with either
2280 * the rtnetlink or driverlink layers. */
Steve Hodgson1ab00622008-12-12 21:33:02 -08002281 cancel_work_sync(&efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002282
Steve Hodgsonfa402b22008-12-12 22:08:16 -08002283 if (rc == 0) {
2284 if (efx->reset_pending != RESET_TYPE_NONE) {
2285 /* If there was a scheduled reset during
2286 * probe, the NIC is probably hosed anyway */
2287 efx_pci_remove_main(efx);
2288 rc = -EIO;
2289 } else {
2290 break;
2291 }
2292 }
2293
Ben Hutchings8ceee662008-04-27 12:55:59 +01002294 /* Retry if a recoverably reset event has been scheduled */
2295 if ((efx->reset_pending != RESET_TYPE_INVISIBLE) &&
2296 (efx->reset_pending != RESET_TYPE_ALL))
2297 goto fail3;
2298
2299 efx->reset_pending = RESET_TYPE_NONE;
2300 }
2301
2302 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002303 netif_err(efx, probe, efx->net_dev, "Could not reset NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002304 goto fail4;
2305 }
2306
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002307 /* Switch to the running state before we expose the device to the OS,
2308 * so that dev_open()|efx_start_all() will actually start the device */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002309 efx->state = STATE_RUNNING;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002310
Ben Hutchings8ceee662008-04-27 12:55:59 +01002311 rc = efx_register_netdev(efx);
2312 if (rc)
2313 goto fail5;
2314
Ben Hutchings62776d02010-06-23 11:30:07 +00002315 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00002316
2317 rtnl_lock();
2318 efx_mtd_probe(efx); /* allowed to fail */
2319 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002320 return 0;
2321
2322 fail5:
2323 efx_pci_remove_main(efx);
2324 fail4:
2325 fail3:
2326 efx_fini_io(efx);
2327 fail2:
2328 efx_fini_struct(efx);
2329 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08002330 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00002331 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002332 free_netdev(net_dev);
2333 return rc;
2334}
2335
Ben Hutchings89c758f2009-11-29 03:43:07 +00002336static int efx_pm_freeze(struct device *dev)
2337{
2338 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2339
2340 efx->state = STATE_FINI;
2341
2342 netif_device_detach(efx->net_dev);
2343
2344 efx_stop_all(efx);
2345 efx_fini_channels(efx);
2346
2347 return 0;
2348}
2349
2350static int efx_pm_thaw(struct device *dev)
2351{
2352 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2353
2354 efx->state = STATE_INIT;
2355
2356 efx_init_channels(efx);
2357
2358 mutex_lock(&efx->mac_lock);
2359 efx->phy_op->reconfigure(efx);
2360 mutex_unlock(&efx->mac_lock);
2361
2362 efx_start_all(efx);
2363
2364 netif_device_attach(efx->net_dev);
2365
2366 efx->state = STATE_RUNNING;
2367
2368 efx->type->resume_wol(efx);
2369
Steve Hodgson319ba642010-06-01 11:17:24 +00002370 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
2371 queue_work(reset_workqueue, &efx->reset_work);
2372
Ben Hutchings89c758f2009-11-29 03:43:07 +00002373 return 0;
2374}
2375
2376static int efx_pm_poweroff(struct device *dev)
2377{
2378 struct pci_dev *pci_dev = to_pci_dev(dev);
2379 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2380
2381 efx->type->fini(efx);
2382
2383 efx->reset_pending = RESET_TYPE_NONE;
2384
2385 pci_save_state(pci_dev);
2386 return pci_set_power_state(pci_dev, PCI_D3hot);
2387}
2388
2389/* Used for both resume and restore */
2390static int efx_pm_resume(struct device *dev)
2391{
2392 struct pci_dev *pci_dev = to_pci_dev(dev);
2393 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2394 int rc;
2395
2396 rc = pci_set_power_state(pci_dev, PCI_D0);
2397 if (rc)
2398 return rc;
2399 pci_restore_state(pci_dev);
2400 rc = pci_enable_device(pci_dev);
2401 if (rc)
2402 return rc;
2403 pci_set_master(efx->pci_dev);
2404 rc = efx->type->reset(efx, RESET_TYPE_ALL);
2405 if (rc)
2406 return rc;
2407 rc = efx->type->init(efx);
2408 if (rc)
2409 return rc;
2410 efx_pm_thaw(dev);
2411 return 0;
2412}
2413
2414static int efx_pm_suspend(struct device *dev)
2415{
2416 int rc;
2417
2418 efx_pm_freeze(dev);
2419 rc = efx_pm_poweroff(dev);
2420 if (rc)
2421 efx_pm_resume(dev);
2422 return rc;
2423}
2424
2425static struct dev_pm_ops efx_pm_ops = {
2426 .suspend = efx_pm_suspend,
2427 .resume = efx_pm_resume,
2428 .freeze = efx_pm_freeze,
2429 .thaw = efx_pm_thaw,
2430 .poweroff = efx_pm_poweroff,
2431 .restore = efx_pm_resume,
2432};
2433
Ben Hutchings8ceee662008-04-27 12:55:59 +01002434static struct pci_driver efx_pci_driver = {
2435 .name = EFX_DRIVER_NAME,
2436 .id_table = efx_pci_table,
2437 .probe = efx_pci_probe,
2438 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00002439 .driver.pm = &efx_pm_ops,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002440};
2441
2442/**************************************************************************
2443 *
2444 * Kernel module interface
2445 *
2446 *************************************************************************/
2447
2448module_param(interrupt_mode, uint, 0444);
2449MODULE_PARM_DESC(interrupt_mode,
2450 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
2451
2452static int __init efx_init_module(void)
2453{
2454 int rc;
2455
2456 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
2457
2458 rc = register_netdevice_notifier(&efx_netdev_notifier);
2459 if (rc)
2460 goto err_notifier;
2461
Steve Hodgson1ab00622008-12-12 21:33:02 -08002462 reset_workqueue = create_singlethread_workqueue("sfc_reset");
2463 if (!reset_workqueue) {
2464 rc = -ENOMEM;
2465 goto err_reset;
2466 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002467
2468 rc = pci_register_driver(&efx_pci_driver);
2469 if (rc < 0)
2470 goto err_pci;
2471
2472 return 0;
2473
2474 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08002475 destroy_workqueue(reset_workqueue);
2476 err_reset:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002477 unregister_netdevice_notifier(&efx_netdev_notifier);
2478 err_notifier:
2479 return rc;
2480}
2481
2482static void __exit efx_exit_module(void)
2483{
2484 printk(KERN_INFO "Solarflare NET driver unloading\n");
2485
2486 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002487 destroy_workqueue(reset_workqueue);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002488 unregister_netdevice_notifier(&efx_netdev_notifier);
2489
2490}
2491
2492module_init(efx_init_module);
2493module_exit(efx_exit_module);
2494
Ben Hutchings906bb262009-11-29 15:16:19 +00002495MODULE_AUTHOR("Solarflare Communications and "
2496 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002497MODULE_DESCRIPTION("Solarflare Communications network driver");
2498MODULE_LICENSE("GPL");
2499MODULE_DEVICE_TABLE(pci, efx_pci_table);