blob: 7e820d90e6baa2c783c64067842352c40dff223a [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"
Ben Hutchings744093c2009-11-29 15:12:08 +000026#include "nic.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010027
Ben Hutchings8880f4e2009-11-29 15:15:41 +000028#include "mcdi.h"
Steve Hodgsonfd371e32010-06-01 11:17:51 +000029#include "workarounds.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000030
Ben Hutchingsc4593022009-11-23 16:08:17 +000031/**************************************************************************
32 *
33 * Type name strings
34 *
35 **************************************************************************
36 */
37
38/* Loopback mode names (see LOOPBACK_MODE()) */
39const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
40const char *efx_loopback_mode_names[] = {
41 [LOOPBACK_NONE] = "NONE",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000042 [LOOPBACK_DATA] = "DATAPATH",
Ben Hutchingsc4593022009-11-23 16:08:17 +000043 [LOOPBACK_GMAC] = "GMAC",
44 [LOOPBACK_XGMII] = "XGMII",
45 [LOOPBACK_XGXS] = "XGXS",
46 [LOOPBACK_XAUI] = "XAUI",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000047 [LOOPBACK_GMII] = "GMII",
48 [LOOPBACK_SGMII] = "SGMII",
49 [LOOPBACK_XGBR] = "XGBR",
50 [LOOPBACK_XFI] = "XFI",
51 [LOOPBACK_XAUI_FAR] = "XAUI_FAR",
52 [LOOPBACK_GMII_FAR] = "GMII_FAR",
53 [LOOPBACK_SGMII_FAR] = "SGMII_FAR",
54 [LOOPBACK_XFI_FAR] = "XFI_FAR",
Ben Hutchingsc4593022009-11-23 16:08:17 +000055 [LOOPBACK_GPHY] = "GPHY",
56 [LOOPBACK_PHYXS] = "PHYXS",
57 [LOOPBACK_PCS] = "PCS",
58 [LOOPBACK_PMAPMD] = "PMA/PMD",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000059 [LOOPBACK_XPORT] = "XPORT",
60 [LOOPBACK_XGMII_WS] = "XGMII_WS",
61 [LOOPBACK_XAUI_WS] = "XAUI_WS",
62 [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR",
63 [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
64 [LOOPBACK_GMII_WS] = "GMII_WS",
65 [LOOPBACK_XFI_WS] = "XFI_WS",
66 [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR",
67 [LOOPBACK_PHYXS_WS] = "PHYXS_WS",
Ben Hutchingsc4593022009-11-23 16:08:17 +000068};
69
Ben Hutchingsc4593022009-11-23 16:08:17 +000070const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
71const char *efx_reset_type_names[] = {
72 [RESET_TYPE_INVISIBLE] = "INVISIBLE",
73 [RESET_TYPE_ALL] = "ALL",
74 [RESET_TYPE_WORLD] = "WORLD",
75 [RESET_TYPE_DISABLE] = "DISABLE",
76 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
77 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
78 [RESET_TYPE_RX_RECOVERY] = "RX_RECOVERY",
79 [RESET_TYPE_RX_DESC_FETCH] = "RX_DESC_FETCH",
80 [RESET_TYPE_TX_DESC_FETCH] = "TX_DESC_FETCH",
81 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
Ben Hutchings8880f4e2009-11-29 15:15:41 +000082 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
Ben Hutchingsc4593022009-11-23 16:08:17 +000083};
84
Ben Hutchings8ceee662008-04-27 12:55:59 +010085#define EFX_MAX_MTU (9 * 1024)
86
Steve Hodgson1ab00622008-12-12 21:33:02 -080087/* Reset workqueue. If any NIC has a hardware failure then a reset will be
88 * queued onto this work queue. This is not a per-nic work queue, because
89 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
90 */
91static struct workqueue_struct *reset_workqueue;
92
Ben Hutchings8ceee662008-04-27 12:55:59 +010093/**************************************************************************
94 *
95 * Configurable values
96 *
97 *************************************************************************/
98
99/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100100 * Use separate channels for TX and RX events
101 *
Neil Turton28b581a2008-12-12 21:41:06 -0800102 * Set this to 1 to use separate channels for TX and RX. It allows us
103 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100104 *
Neil Turton28b581a2008-12-12 21:41:06 -0800105 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100106 */
Neil Turton28b581a2008-12-12 21:41:06 -0800107static unsigned int separate_tx_channels;
Ben Hutchings8313aca2010-09-10 06:41:57 +0000108module_param(separate_tx_channels, uint, 0444);
Neil Turton28b581a2008-12-12 21:41:06 -0800109MODULE_PARM_DESC(separate_tx_channels,
110 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100111
112/* This is the weight assigned to each of the (per-channel) virtual
113 * NAPI devices.
114 */
115static int napi_weight = 64;
116
117/* This is the time (in jiffies) between invocations of the hardware
Ben Hutchingse254c272010-09-20 08:44:10 +0000118 * monitor. On Falcon-based NICs, this will:
119 * - Check the on-board hardware monitor;
120 * - Poll the link state and reconfigure the hardware as necessary.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100121 */
stephen hemmingerd2156972010-10-18 05:27:31 +0000122static unsigned int efx_monitor_interval = 1 * HZ;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100123
Ben Hutchings8ceee662008-04-27 12:55:59 +0100124/* This controls whether or not the driver will initialise devices
125 * with invalid MAC addresses stored in the EEPROM or flash. If true,
126 * such devices will be initialised with a random locally-generated
127 * MAC address. This allows for loading the sfc_mtd driver to
128 * reprogram the flash, even if the flash contents (including the MAC
129 * address) have previously been erased.
130 */
131static unsigned int allow_bad_hwaddr;
132
133/* Initial interrupt moderation settings. They can be modified after
134 * module load with ethtool.
135 *
136 * The default for RX should strike a balance between increasing the
137 * round-trip latency and reducing overhead.
138 */
139static unsigned int rx_irq_mod_usec = 60;
140
141/* Initial interrupt moderation settings. They can be modified after
142 * module load with ethtool.
143 *
144 * This default is chosen to ensure that a 10G link does not go idle
145 * while a TX queue is stopped after it has become full. A queue is
146 * restarted when it drops below half full. The time this takes (assuming
147 * worst case 3 descriptors per packet and 1024 descriptors) is
148 * 512 / 3 * 1.2 = 205 usec.
149 */
150static unsigned int tx_irq_mod_usec = 150;
151
152/* This is the first interrupt mode to try out of:
153 * 0 => MSI-X
154 * 1 => MSI
155 * 2 => legacy
156 */
157static unsigned int interrupt_mode;
158
159/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
160 * i.e. the number of CPUs among which we may distribute simultaneous
161 * interrupt handling.
162 *
163 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
164 * The default (0) means to assign an interrupt to each package (level II cache)
165 */
166static unsigned int rss_cpus;
167module_param(rss_cpus, uint, 0444);
168MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
169
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800170static int phy_flash_cfg;
171module_param(phy_flash_cfg, int, 0644);
172MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
173
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000174static unsigned irq_adapt_low_thresh = 10000;
175module_param(irq_adapt_low_thresh, uint, 0644);
176MODULE_PARM_DESC(irq_adapt_low_thresh,
177 "Threshold score for reducing IRQ moderation");
178
179static unsigned irq_adapt_high_thresh = 20000;
180module_param(irq_adapt_high_thresh, uint, 0644);
181MODULE_PARM_DESC(irq_adapt_high_thresh,
182 "Threshold score for increasing IRQ moderation");
183
Ben Hutchings62776d02010-06-23 11:30:07 +0000184static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
185 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
186 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
187 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
188module_param(debug, uint, 0);
189MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
190
Ben Hutchings8ceee662008-04-27 12:55:59 +0100191/**************************************************************************
192 *
193 * Utility functions and prototypes
194 *
195 *************************************************************************/
Ben Hutchings46426102010-09-10 06:42:33 +0000196
197static void efx_remove_channels(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100198static void efx_remove_port(struct efx_nic *efx);
199static void efx_fini_napi(struct efx_nic *efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000200static void efx_fini_struct(struct efx_nic *efx);
201static void efx_start_all(struct efx_nic *efx);
202static void efx_stop_all(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100203
204#define EFX_ASSERT_RESET_SERIALISED(efx) \
205 do { \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000206 if ((efx->state == STATE_RUNNING) || \
207 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100208 ASSERT_RTNL(); \
209 } while (0)
210
211/**************************************************************************
212 *
213 * Event queue processing
214 *
215 *************************************************************************/
216
217/* Process channel's event queue
218 *
219 * This function is responsible for processing the event queue of a
220 * single channel. The caller must guarantee that this function will
221 * never be concurrently called more than once on the same channel,
222 * though different channels may be being processed concurrently.
223 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000224static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100225{
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100226 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000227 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100228
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100229 if (unlikely(efx->reset_pending != RESET_TYPE_NONE ||
Ben Hutchings8ceee662008-04-27 12:55:59 +0100230 !channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100231 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100232
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000233 spent = efx_nic_process_eventq(channel, budget);
234 if (spent == 0)
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100235 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100236
237 /* Deliver last RX packet. */
238 if (channel->rx_pkt) {
239 __efx_rx_packet(channel, channel->rx_pkt,
240 channel->rx_pkt_csummed);
241 channel->rx_pkt = NULL;
242 }
243
Ben Hutchings8ceee662008-04-27 12:55:59 +0100244 efx_rx_strategy(channel);
245
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000246 efx_fast_push_rx_descriptors(efx_channel_get_rx_queue(channel));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100247
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000248 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100249}
250
251/* Mark channel as finished processing
252 *
253 * Note that since we will not receive further interrupts for this
254 * channel before we finish processing and call the eventq_read_ack()
255 * method, there is no need to use the interrupt hold-off timers.
256 */
257static inline void efx_channel_processed(struct efx_channel *channel)
258{
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100259 /* The interrupt handler for this channel may set work_pending
260 * as soon as we acknowledge the events we've seen. Make sure
261 * it's cleared before then. */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100262 channel->work_pending = false;
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100263 smp_wmb();
264
Ben Hutchings152b6a62009-11-29 03:43:56 +0000265 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100266}
267
268/* NAPI poll handler
269 *
270 * NAPI guarantees serialisation of polls of the same device, which
271 * provides the guarantee required by efx_process_channel().
272 */
273static int efx_poll(struct napi_struct *napi, int budget)
274{
275 struct efx_channel *channel =
276 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000277 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000278 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100279
Ben Hutchings62776d02010-06-23 11:30:07 +0000280 netif_vdbg(efx, intr, efx->net_dev,
281 "channel %d NAPI poll executing on CPU %d\n",
282 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100283
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000284 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100285
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000286 if (spent < budget) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000287 if (channel->channel < efx->n_rx_channels &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000288 efx->irq_rx_adaptive &&
289 unlikely(++channel->irq_count == 1000)) {
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000290 if (unlikely(channel->irq_mod_score <
291 irq_adapt_low_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000292 if (channel->irq_moderation > 1) {
293 channel->irq_moderation -= 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000294 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000295 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000296 } else if (unlikely(channel->irq_mod_score >
297 irq_adapt_high_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000298 if (channel->irq_moderation <
299 efx->irq_rx_moderation) {
300 channel->irq_moderation += 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000301 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000302 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000303 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000304 channel->irq_count = 0;
305 channel->irq_mod_score = 0;
306 }
307
Ben Hutchings8ceee662008-04-27 12:55:59 +0100308 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800309 * only wait for napi_complete(), this isn't a problem
Ben Hutchings8ceee662008-04-27 12:55:59 +0100310 * since efx_channel_processed() will have no effect if
311 * interrupts have already been disabled.
312 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800313 napi_complete(napi);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100314 efx_channel_processed(channel);
315 }
316
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000317 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100318}
319
320/* Process the eventq of the specified channel immediately on this CPU
321 *
322 * Disable hardware generated interrupts, wait for any existing
323 * processing to finish, then directly poll (and ack ) the eventq.
324 * Finally reenable NAPI and interrupts.
325 *
326 * Since we are touching interrupts the caller should hold the suspend lock
327 */
328void efx_process_channel_now(struct efx_channel *channel)
329{
330 struct efx_nic *efx = channel->efx;
331
Ben Hutchings8313aca2010-09-10 06:41:57 +0000332 BUG_ON(channel->channel >= efx->n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100333 BUG_ON(!channel->enabled);
334
335 /* Disable interrupts and wait for ISRs to complete */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000336 efx_nic_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100337 if (efx->legacy_irq)
338 synchronize_irq(efx->legacy_irq);
Ben Hutchings64ee3122008-09-01 12:47:38 +0100339 if (channel->irq)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100340 synchronize_irq(channel->irq);
341
342 /* Wait for any NAPI processing to complete */
343 napi_disable(&channel->napi_str);
344
345 /* Poll the channel */
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000346 efx_process_channel(channel, channel->eventq_mask + 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100347
348 /* Ack the eventq. This may cause an interrupt to be generated
349 * when they are reenabled */
350 efx_channel_processed(channel);
351
352 napi_enable(&channel->napi_str);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000353 efx_nic_enable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100354}
355
356/* Create event queue
357 * Event queue memory allocations are done only once. If the channel
358 * is reset, the memory buffer will be reused; this guards against
359 * errors during channel reset and also simplifies interrupt handling.
360 */
361static int efx_probe_eventq(struct efx_channel *channel)
362{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000363 struct efx_nic *efx = channel->efx;
364 unsigned long entries;
365
Ben Hutchings62776d02010-06-23 11:30:07 +0000366 netif_dbg(channel->efx, probe, channel->efx->net_dev,
367 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100368
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000369 /* Build an event queue with room for one event per tx and rx buffer,
370 * plus some extra for link state events and MCDI completions. */
371 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
372 EFX_BUG_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
373 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
374
Ben Hutchings152b6a62009-11-29 03:43:56 +0000375 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100376}
377
378/* Prepare channel's event queue */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100379static void efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100380{
Ben Hutchings62776d02010-06-23 11:30:07 +0000381 netif_dbg(channel->efx, drv, channel->efx->net_dev,
382 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100383
384 channel->eventq_read_ptr = 0;
385
Ben Hutchings152b6a62009-11-29 03:43:56 +0000386 efx_nic_init_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100387}
388
389static void efx_fini_eventq(struct efx_channel *channel)
390{
Ben Hutchings62776d02010-06-23 11:30:07 +0000391 netif_dbg(channel->efx, drv, channel->efx->net_dev,
392 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100393
Ben Hutchings152b6a62009-11-29 03:43:56 +0000394 efx_nic_fini_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100395}
396
397static void efx_remove_eventq(struct efx_channel *channel)
398{
Ben Hutchings62776d02010-06-23 11:30:07 +0000399 netif_dbg(channel->efx, drv, channel->efx->net_dev,
400 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100401
Ben Hutchings152b6a62009-11-29 03:43:56 +0000402 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100403}
404
405/**************************************************************************
406 *
407 * Channel handling
408 *
409 *************************************************************************/
410
Ben Hutchings46426102010-09-10 06:42:33 +0000411/* Allocate and initialise a channel structure, optionally copying
412 * parameters (but not resources) from an old channel structure. */
413static struct efx_channel *
414efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
415{
416 struct efx_channel *channel;
417 struct efx_rx_queue *rx_queue;
418 struct efx_tx_queue *tx_queue;
419 int j;
420
421 if (old_channel) {
422 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
423 if (!channel)
424 return NULL;
425
426 *channel = *old_channel;
427
428 memset(&channel->eventq, 0, sizeof(channel->eventq));
429
430 rx_queue = &channel->rx_queue;
431 rx_queue->buffer = NULL;
432 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
433
434 for (j = 0; j < EFX_TXQ_TYPES; j++) {
435 tx_queue = &channel->tx_queue[j];
436 if (tx_queue->channel)
437 tx_queue->channel = channel;
438 tx_queue->buffer = NULL;
439 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
440 }
441 } else {
442 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
443 if (!channel)
444 return NULL;
445
446 channel->efx = efx;
447 channel->channel = i;
448
449 for (j = 0; j < EFX_TXQ_TYPES; j++) {
450 tx_queue = &channel->tx_queue[j];
451 tx_queue->efx = efx;
452 tx_queue->queue = i * EFX_TXQ_TYPES + j;
453 tx_queue->channel = channel;
454 }
455 }
456
457 spin_lock_init(&channel->tx_stop_lock);
458 atomic_set(&channel->tx_stop_count, 1);
459
460 rx_queue = &channel->rx_queue;
461 rx_queue->efx = efx;
462 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
463 (unsigned long)rx_queue);
464
465 return channel;
466}
467
Ben Hutchings8ceee662008-04-27 12:55:59 +0100468static int efx_probe_channel(struct efx_channel *channel)
469{
470 struct efx_tx_queue *tx_queue;
471 struct efx_rx_queue *rx_queue;
472 int rc;
473
Ben Hutchings62776d02010-06-23 11:30:07 +0000474 netif_dbg(channel->efx, probe, channel->efx->net_dev,
475 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100476
477 rc = efx_probe_eventq(channel);
478 if (rc)
479 goto fail1;
480
481 efx_for_each_channel_tx_queue(tx_queue, channel) {
482 rc = efx_probe_tx_queue(tx_queue);
483 if (rc)
484 goto fail2;
485 }
486
487 efx_for_each_channel_rx_queue(rx_queue, channel) {
488 rc = efx_probe_rx_queue(rx_queue);
489 if (rc)
490 goto fail3;
491 }
492
493 channel->n_rx_frm_trunc = 0;
494
495 return 0;
496
497 fail3:
498 efx_for_each_channel_rx_queue(rx_queue, channel)
499 efx_remove_rx_queue(rx_queue);
500 fail2:
501 efx_for_each_channel_tx_queue(tx_queue, channel)
502 efx_remove_tx_queue(tx_queue);
503 fail1:
504 return rc;
505}
506
507
Ben Hutchings56536e92008-12-12 21:37:02 -0800508static void efx_set_channel_names(struct efx_nic *efx)
509{
510 struct efx_channel *channel;
511 const char *type = "";
512 int number;
513
514 efx_for_each_channel(channel, efx) {
515 number = channel->channel;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000516 if (efx->n_channels > efx->n_rx_channels) {
517 if (channel->channel < efx->n_rx_channels) {
Ben Hutchings56536e92008-12-12 21:37:02 -0800518 type = "-rx";
519 } else {
520 type = "-tx";
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000521 number -= efx->n_rx_channels;
Ben Hutchings56536e92008-12-12 21:37:02 -0800522 }
523 }
Ben Hutchings46426102010-09-10 06:42:33 +0000524 snprintf(efx->channel_name[channel->channel],
525 sizeof(efx->channel_name[0]),
Ben Hutchings56536e92008-12-12 21:37:02 -0800526 "%s%s-%d", efx->name, type, number);
527 }
528}
529
Ben Hutchings46426102010-09-10 06:42:33 +0000530static int efx_probe_channels(struct efx_nic *efx)
531{
532 struct efx_channel *channel;
533 int rc;
534
535 /* Restart special buffer allocation */
536 efx->next_buffer_table = 0;
537
538 efx_for_each_channel(channel, efx) {
539 rc = efx_probe_channel(channel);
540 if (rc) {
541 netif_err(efx, probe, efx->net_dev,
542 "failed to create channel %d\n",
543 channel->channel);
544 goto fail;
545 }
546 }
547 efx_set_channel_names(efx);
548
549 return 0;
550
551fail:
552 efx_remove_channels(efx);
553 return rc;
554}
555
Ben Hutchings8ceee662008-04-27 12:55:59 +0100556/* Channels are shutdown and reinitialised whilst the NIC is running
557 * to propagate configuration changes (mtu, checksum offload), or
558 * to clear hardware error conditions
559 */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100560static void efx_init_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100561{
562 struct efx_tx_queue *tx_queue;
563 struct efx_rx_queue *rx_queue;
564 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100565
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100566 /* Calculate the rx buffer allocation parameters required to
567 * support the current MTU, including padding for header
568 * alignment and overruns.
569 */
570 efx->rx_buffer_len = (max(EFX_PAGE_IP_ALIGN, NET_IP_ALIGN) +
571 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000572 efx->type->rx_buffer_hash_size +
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100573 efx->type->rx_buffer_padding);
Steve Hodgson62b330b2010-06-01 11:20:53 +0000574 efx->rx_buffer_order = get_order(efx->rx_buffer_len +
575 sizeof(struct efx_rx_page_state));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100576
577 /* Initialise the channels */
578 efx_for_each_channel(channel, efx) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000579 netif_dbg(channel->efx, drv, channel->efx->net_dev,
580 "init chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100581
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100582 efx_init_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100583
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100584 efx_for_each_channel_tx_queue(tx_queue, channel)
585 efx_init_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100586
587 /* The rx buffer allocation strategy is MTU dependent */
588 efx_rx_strategy(channel);
589
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100590 efx_for_each_channel_rx_queue(rx_queue, channel)
591 efx_init_rx_queue(rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100592
593 WARN_ON(channel->rx_pkt != NULL);
594 efx_rx_strategy(channel);
595 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100596}
597
598/* This enables event queue processing and packet transmission.
599 *
600 * Note that this function is not allowed to fail, since that would
601 * introduce too much complexity into the suspend/resume path.
602 */
603static void efx_start_channel(struct efx_channel *channel)
604{
605 struct efx_rx_queue *rx_queue;
606
Ben Hutchings62776d02010-06-23 11:30:07 +0000607 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
608 "starting chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100609
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100610 /* The interrupt handler for this channel may set work_pending
611 * as soon as we enable it. Make sure it's cleared before
612 * then. Similarly, make sure it sees the enabled flag set. */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100613 channel->work_pending = false;
614 channel->enabled = true;
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100615 smp_wmb();
Ben Hutchings8ceee662008-04-27 12:55:59 +0100616
Steve Hodgson90d683a2010-06-01 11:19:39 +0000617 /* Fill the queues before enabling NAPI */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100618 efx_for_each_channel_rx_queue(rx_queue, channel)
619 efx_fast_push_rx_descriptors(rx_queue);
Steve Hodgson90d683a2010-06-01 11:19:39 +0000620
621 napi_enable(&channel->napi_str);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100622}
623
624/* This disables event queue processing and packet transmission.
625 * This function does not guarantee that all queue processing
626 * (e.g. RX refill) is complete.
627 */
628static void efx_stop_channel(struct efx_channel *channel)
629{
Ben Hutchings8ceee662008-04-27 12:55:59 +0100630 if (!channel->enabled)
631 return;
632
Ben Hutchings62776d02010-06-23 11:30:07 +0000633 netif_dbg(channel->efx, ifdown, channel->efx->net_dev,
634 "stop chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100635
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100636 channel->enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100637 napi_disable(&channel->napi_str);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100638}
639
640static void efx_fini_channels(struct efx_nic *efx)
641{
642 struct efx_channel *channel;
643 struct efx_tx_queue *tx_queue;
644 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100645 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100646
647 EFX_ASSERT_RESET_SERIALISED(efx);
648 BUG_ON(efx->port_enabled);
649
Ben Hutchings152b6a62009-11-29 03:43:56 +0000650 rc = efx_nic_flush_queues(efx);
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000651 if (rc && EFX_WORKAROUND_7803(efx)) {
652 /* Schedule a reset to recover from the flush failure. The
653 * descriptor caches reference memory we're about to free,
654 * but falcon_reconfigure_mac_wrapper() won't reconnect
655 * the MACs because of the pending reset. */
Ben Hutchings62776d02010-06-23 11:30:07 +0000656 netif_err(efx, drv, efx->net_dev,
657 "Resetting to recover from flush failure\n");
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000658 efx_schedule_reset(efx, RESET_TYPE_ALL);
659 } else if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000660 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000661 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000662 netif_dbg(efx, drv, efx->net_dev,
663 "successfully flushed all queues\n");
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000664 }
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100665
Ben Hutchings8ceee662008-04-27 12:55:59 +0100666 efx_for_each_channel(channel, efx) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000667 netif_dbg(channel->efx, drv, channel->efx->net_dev,
668 "shut down chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100669
670 efx_for_each_channel_rx_queue(rx_queue, channel)
671 efx_fini_rx_queue(rx_queue);
672 efx_for_each_channel_tx_queue(tx_queue, channel)
673 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100674 efx_fini_eventq(channel);
675 }
676}
677
678static void efx_remove_channel(struct efx_channel *channel)
679{
680 struct efx_tx_queue *tx_queue;
681 struct efx_rx_queue *rx_queue;
682
Ben Hutchings62776d02010-06-23 11:30:07 +0000683 netif_dbg(channel->efx, drv, channel->efx->net_dev,
684 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100685
686 efx_for_each_channel_rx_queue(rx_queue, channel)
687 efx_remove_rx_queue(rx_queue);
688 efx_for_each_channel_tx_queue(tx_queue, channel)
689 efx_remove_tx_queue(tx_queue);
690 efx_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100691}
692
Ben Hutchings46426102010-09-10 06:42:33 +0000693static void efx_remove_channels(struct efx_nic *efx)
694{
695 struct efx_channel *channel;
696
697 efx_for_each_channel(channel, efx)
698 efx_remove_channel(channel);
699}
700
701int
702efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
703{
704 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
705 u32 old_rxq_entries, old_txq_entries;
706 unsigned i;
707 int rc;
708
709 efx_stop_all(efx);
710 efx_fini_channels(efx);
711
712 /* Clone channels */
713 memset(other_channel, 0, sizeof(other_channel));
714 for (i = 0; i < efx->n_channels; i++) {
715 channel = efx_alloc_channel(efx, i, efx->channel[i]);
716 if (!channel) {
717 rc = -ENOMEM;
718 goto out;
719 }
720 other_channel[i] = channel;
721 }
722
723 /* Swap entry counts and channel pointers */
724 old_rxq_entries = efx->rxq_entries;
725 old_txq_entries = efx->txq_entries;
726 efx->rxq_entries = rxq_entries;
727 efx->txq_entries = txq_entries;
728 for (i = 0; i < efx->n_channels; i++) {
729 channel = efx->channel[i];
730 efx->channel[i] = other_channel[i];
731 other_channel[i] = channel;
732 }
733
734 rc = efx_probe_channels(efx);
735 if (rc)
736 goto rollback;
737
738 /* Destroy old channels */
739 for (i = 0; i < efx->n_channels; i++)
740 efx_remove_channel(other_channel[i]);
741out:
742 /* Free unused channel structures */
743 for (i = 0; i < efx->n_channels; i++)
744 kfree(other_channel[i]);
745
746 efx_init_channels(efx);
747 efx_start_all(efx);
748 return rc;
749
750rollback:
751 /* Swap back */
752 efx->rxq_entries = old_rxq_entries;
753 efx->txq_entries = old_txq_entries;
754 for (i = 0; i < efx->n_channels; i++) {
755 channel = efx->channel[i];
756 efx->channel[i] = other_channel[i];
757 other_channel[i] = channel;
758 }
759 goto out;
760}
761
Steve Hodgson90d683a2010-06-01 11:19:39 +0000762void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100763{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000764 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100765}
766
767/**************************************************************************
768 *
769 * Port handling
770 *
771 **************************************************************************/
772
773/* This ensures that the kernel is kept informed (via
774 * netif_carrier_on/off) of the link status, and also maintains the
775 * link status's stop on the port's TX queue.
776 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000777void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100778{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000779 struct efx_link_state *link_state = &efx->link_state;
780
Ben Hutchings8ceee662008-04-27 12:55:59 +0100781 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
782 * that no events are triggered between unregister_netdev() and the
783 * driver unloading. A more general condition is that NETDEV_CHANGE
784 * can only be generated between NETDEV_UP and NETDEV_DOWN */
785 if (!netif_running(efx->net_dev))
786 return;
787
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100788 if (efx->port_inhibited) {
789 netif_carrier_off(efx->net_dev);
790 return;
791 }
792
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000793 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100794 efx->n_link_state_changes++;
795
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000796 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100797 netif_carrier_on(efx->net_dev);
798 else
799 netif_carrier_off(efx->net_dev);
800 }
801
802 /* Status message for kernel log */
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000803 if (link_state->up) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000804 netif_info(efx, link, efx->net_dev,
805 "link up at %uMbps %s-duplex (MTU %d)%s\n",
806 link_state->speed, link_state->fd ? "full" : "half",
807 efx->net_dev->mtu,
808 (efx->promiscuous ? " [PROMISC]" : ""));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100809 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000810 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100811 }
812
813}
814
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000815void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
816{
817 efx->link_advertising = advertising;
818 if (advertising) {
819 if (advertising & ADVERTISED_Pause)
820 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
821 else
822 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
823 if (advertising & ADVERTISED_Asym_Pause)
824 efx->wanted_fc ^= EFX_FC_TX;
825 }
826}
827
828void efx_link_set_wanted_fc(struct efx_nic *efx, enum efx_fc_type wanted_fc)
829{
830 efx->wanted_fc = wanted_fc;
831 if (efx->link_advertising) {
832 if (wanted_fc & EFX_FC_RX)
833 efx->link_advertising |= (ADVERTISED_Pause |
834 ADVERTISED_Asym_Pause);
835 else
836 efx->link_advertising &= ~(ADVERTISED_Pause |
837 ADVERTISED_Asym_Pause);
838 if (wanted_fc & EFX_FC_TX)
839 efx->link_advertising ^= ADVERTISED_Asym_Pause;
840 }
841}
842
Ben Hutchings115122a2009-03-04 09:52:52 +0000843static void efx_fini_port(struct efx_nic *efx);
844
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000845/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
846 * the MAC appropriately. All other PHY configuration changes are pushed
847 * through phy_op->set_settings(), and pushed asynchronously to the MAC
848 * through efx_monitor().
849 *
850 * Callers must hold the mac_lock
851 */
852int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100853{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000854 enum efx_phy_mode phy_mode;
855 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100856
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000857 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100858
Ben Hutchingsa816f752008-09-01 12:49:12 +0100859 /* Serialise the promiscuous flag with efx_set_multicast_list. */
860 if (efx_dev_registered(efx)) {
861 netif_addr_lock_bh(efx->net_dev);
862 netif_addr_unlock_bh(efx->net_dev);
863 }
864
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000865 /* Disable PHY transmit in mac level loopbacks */
866 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800867 if (LOOPBACK_INTERNAL(efx))
868 efx->phy_mode |= PHY_MODE_TX_DISABLED;
869 else
870 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800871
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000872 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800873
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000874 if (rc)
875 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100876
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000877 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100878}
879
880/* Reinitialise the MAC to pick up new PHY settings, even if the port is
881 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000882int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100883{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000884 int rc;
885
Ben Hutchings8ceee662008-04-27 12:55:59 +0100886 EFX_ASSERT_RESET_SERIALISED(efx);
887
888 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000889 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100890 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000891
892 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100893}
894
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000895/* Asynchronous work item for changing MAC promiscuity and multicast
896 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
897 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800898static void efx_mac_work(struct work_struct *data)
899{
900 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
901
902 mutex_lock(&efx->mac_lock);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000903 if (efx->port_enabled) {
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000904 efx->type->push_multicast_hash(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000905 efx->mac_op->reconfigure(efx);
906 }
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800907 mutex_unlock(&efx->mac_lock);
908}
909
Ben Hutchings8ceee662008-04-27 12:55:59 +0100910static int efx_probe_port(struct efx_nic *efx)
911{
912 int rc;
913
Ben Hutchings62776d02010-06-23 11:30:07 +0000914 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100915
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000916 if (phy_flash_cfg)
917 efx->phy_mode = PHY_MODE_SPECIAL;
918
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000919 /* Connect up MAC/PHY operations table */
920 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100921 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +0000922 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100923
924 /* Sanity check MAC address */
925 if (is_valid_ether_addr(efx->mac_address)) {
926 memcpy(efx->net_dev->dev_addr, efx->mac_address, ETH_ALEN);
927 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000928 netif_err(efx, probe, efx->net_dev, "invalid MAC address %pM\n",
929 efx->mac_address);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100930 if (!allow_bad_hwaddr) {
931 rc = -EINVAL;
932 goto err;
933 }
934 random_ether_addr(efx->net_dev->dev_addr);
Ben Hutchings62776d02010-06-23 11:30:07 +0000935 netif_info(efx, probe, efx->net_dev,
936 "using locally-generated MAC %pM\n",
937 efx->net_dev->dev_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100938 }
939
940 return 0;
941
942 err:
Ben Hutchingse42de262010-09-10 06:41:19 +0000943 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100944 return rc;
945}
946
947static int efx_init_port(struct efx_nic *efx)
948{
949 int rc;
950
Ben Hutchings62776d02010-06-23 11:30:07 +0000951 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100952
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000953 mutex_lock(&efx->mac_lock);
954
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800955 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100956 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000957 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100958
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100959 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000960
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000961 /* Reconfigure the MAC before creating dma queues (required for
962 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
963 efx->mac_op->reconfigure(efx);
964
965 /* Ensure the PHY advertises the correct flow control settings */
966 rc = efx->phy_op->reconfigure(efx);
967 if (rc)
968 goto fail2;
969
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000970 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100971 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800972
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000973fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800974 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000975fail1:
976 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800977 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100978}
979
Ben Hutchings8ceee662008-04-27 12:55:59 +0100980static void efx_start_port(struct efx_nic *efx)
981{
Ben Hutchings62776d02010-06-23 11:30:07 +0000982 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100983 BUG_ON(efx->port_enabled);
984
985 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100986 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000987
988 /* efx_mac_work() might have been scheduled after efx_stop_port(),
989 * and then cancelled by efx_flush_all() */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000990 efx->type->push_multicast_hash(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000991 efx->mac_op->reconfigure(efx);
992
Ben Hutchings8ceee662008-04-27 12:55:59 +0100993 mutex_unlock(&efx->mac_lock);
994}
995
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000996/* Prevent efx_mac_work() and efx_monitor() from working */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100997static void efx_stop_port(struct efx_nic *efx)
998{
Ben Hutchings62776d02010-06-23 11:30:07 +0000999 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001000
1001 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001002 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001003 mutex_unlock(&efx->mac_lock);
1004
1005 /* Serialise against efx_set_multicast_list() */
Ben Hutchings55668612008-05-16 21:16:10 +01001006 if (efx_dev_registered(efx)) {
David S. Millerb9e40852008-07-15 00:15:08 -07001007 netif_addr_lock_bh(efx->net_dev);
1008 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001009 }
1010}
1011
1012static void efx_fini_port(struct efx_nic *efx)
1013{
Ben Hutchings62776d02010-06-23 11:30:07 +00001014 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001015
1016 if (!efx->port_initialized)
1017 return;
1018
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001019 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001020 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001021
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001022 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001023 efx_link_status_changed(efx);
1024}
1025
1026static void efx_remove_port(struct efx_nic *efx)
1027{
Ben Hutchings62776d02010-06-23 11:30:07 +00001028 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001029
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001030 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001031}
1032
1033/**************************************************************************
1034 *
1035 * NIC handling
1036 *
1037 **************************************************************************/
1038
1039/* This configures the PCI device to enable I/O and DMA. */
1040static int efx_init_io(struct efx_nic *efx)
1041{
1042 struct pci_dev *pci_dev = efx->pci_dev;
1043 dma_addr_t dma_mask = efx->type->max_dma_mask;
1044 int rc;
1045
Ben Hutchings62776d02010-06-23 11:30:07 +00001046 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001047
1048 rc = pci_enable_device(pci_dev);
1049 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001050 netif_err(efx, probe, efx->net_dev,
1051 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001052 goto fail1;
1053 }
1054
1055 pci_set_master(pci_dev);
1056
1057 /* Set the PCI DMA mask. Try all possibilities from our
1058 * genuine mask down to 32 bits, because some architectures
1059 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1060 * masks event though they reject 46 bit masks.
1061 */
1062 while (dma_mask > 0x7fffffffUL) {
1063 if (pci_dma_supported(pci_dev, dma_mask) &&
1064 ((rc = pci_set_dma_mask(pci_dev, dma_mask)) == 0))
1065 break;
1066 dma_mask >>= 1;
1067 }
1068 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001069 netif_err(efx, probe, efx->net_dev,
1070 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001071 goto fail2;
1072 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001073 netif_dbg(efx, probe, efx->net_dev,
1074 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001075 rc = pci_set_consistent_dma_mask(pci_dev, dma_mask);
1076 if (rc) {
1077 /* pci_set_consistent_dma_mask() is not *allowed* to
1078 * fail with a mask that pci_set_dma_mask() accepted,
1079 * but just in case...
1080 */
Ben Hutchings62776d02010-06-23 11:30:07 +00001081 netif_err(efx, probe, efx->net_dev,
1082 "failed to set consistent DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001083 goto fail2;
1084 }
1085
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001086 efx->membase_phys = pci_resource_start(efx->pci_dev, EFX_MEM_BAR);
1087 rc = pci_request_region(pci_dev, EFX_MEM_BAR, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001088 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001089 netif_err(efx, probe, efx->net_dev,
1090 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001091 rc = -EIO;
1092 goto fail3;
1093 }
1094 efx->membase = ioremap_nocache(efx->membase_phys,
1095 efx->type->mem_map_size);
1096 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001097 netif_err(efx, probe, efx->net_dev,
1098 "could not map memory BAR at %llx+%x\n",
1099 (unsigned long long)efx->membase_phys,
1100 efx->type->mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001101 rc = -ENOMEM;
1102 goto fail4;
1103 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001104 netif_dbg(efx, probe, efx->net_dev,
1105 "memory BAR at %llx+%x (virtual %p)\n",
1106 (unsigned long long)efx->membase_phys,
1107 efx->type->mem_map_size, efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001108
1109 return 0;
1110
1111 fail4:
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001112 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001113 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001114 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001115 fail2:
1116 pci_disable_device(efx->pci_dev);
1117 fail1:
1118 return rc;
1119}
1120
1121static void efx_fini_io(struct efx_nic *efx)
1122{
Ben Hutchings62776d02010-06-23 11:30:07 +00001123 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001124
1125 if (efx->membase) {
1126 iounmap(efx->membase);
1127 efx->membase = NULL;
1128 }
1129
1130 if (efx->membase_phys) {
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001131 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001132 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001133 }
1134
1135 pci_disable_device(efx->pci_dev);
1136}
1137
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001138/* Get number of channels wanted. Each channel will have its own IRQ,
1139 * 1 RX queue and/or 2 TX queues. */
1140static int efx_wanted_channels(void)
Ben Hutchings46123d02008-09-01 12:47:33 +01001141{
Rusty Russell2f8975f2009-01-10 21:58:09 -08001142 cpumask_var_t core_mask;
Ben Hutchings46123d02008-09-01 12:47:33 +01001143 int count;
1144 int cpu;
1145
Li Zefan79f55992009-06-15 14:58:26 +08001146 if (unlikely(!zalloc_cpumask_var(&core_mask, GFP_KERNEL))) {
Rusty Russell2f8975f2009-01-10 21:58:09 -08001147 printk(KERN_WARNING
Mike Travis3977d032009-05-12 10:48:36 +00001148 "sfc: RSS disabled due to allocation failure\n");
Rusty Russell2f8975f2009-01-10 21:58:09 -08001149 return 1;
1150 }
1151
Ben Hutchings46123d02008-09-01 12:47:33 +01001152 count = 0;
1153 for_each_online_cpu(cpu) {
Rusty Russell2f8975f2009-01-10 21:58:09 -08001154 if (!cpumask_test_cpu(cpu, core_mask)) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001155 ++count;
Rusty Russell2f8975f2009-01-10 21:58:09 -08001156 cpumask_or(core_mask, core_mask,
Rusty Russellfbd59a82009-01-10 21:58:08 -08001157 topology_core_cpumask(cpu));
Ben Hutchings46123d02008-09-01 12:47:33 +01001158 }
1159 }
1160
Rusty Russell2f8975f2009-01-10 21:58:09 -08001161 free_cpumask_var(core_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001162 return count;
1163}
1164
1165/* Probe the number and type of interrupts we are able to obtain, and
1166 * the resulting numbers of channels and RX queues.
1167 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001168static void efx_probe_interrupts(struct efx_nic *efx)
1169{
Ben Hutchings46123d02008-09-01 12:47:33 +01001170 int max_channels =
1171 min_t(int, efx->type->phys_addr_channels, EFX_MAX_CHANNELS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001172 int rc, i;
1173
1174 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001175 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001176 int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001177
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001178 n_channels = efx_wanted_channels();
1179 if (separate_tx_channels)
1180 n_channels *= 2;
1181 n_channels = min(n_channels, max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001182
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001183 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001184 xentries[i].entry = i;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001185 rc = pci_enable_msix(efx->pci_dev, xentries, n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001186 if (rc > 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001187 netif_err(efx, drv, efx->net_dev,
1188 "WARNING: Insufficient MSI-X vectors"
1189 " available (%d < %d).\n", rc, n_channels);
1190 netif_err(efx, drv, efx->net_dev,
1191 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001192 EFX_BUG_ON_PARANOID(rc >= n_channels);
1193 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001194 rc = pci_enable_msix(efx->pci_dev, xentries,
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001195 n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001196 }
1197
1198 if (rc == 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001199 efx->n_channels = n_channels;
1200 if (separate_tx_channels) {
1201 efx->n_tx_channels =
1202 max(efx->n_channels / 2, 1U);
1203 efx->n_rx_channels =
1204 max(efx->n_channels -
1205 efx->n_tx_channels, 1U);
1206 } else {
1207 efx->n_tx_channels = efx->n_channels;
1208 efx->n_rx_channels = efx->n_channels;
1209 }
1210 for (i = 0; i < n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001211 efx_get_channel(efx, i)->irq =
1212 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001213 } else {
1214 /* Fall back to single channel MSI */
1215 efx->interrupt_mode = EFX_INT_MODE_MSI;
Ben Hutchings62776d02010-06-23 11:30:07 +00001216 netif_err(efx, drv, efx->net_dev,
1217 "could not enable MSI-X\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001218 }
1219 }
1220
1221 /* Try single interrupt MSI */
1222 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001223 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001224 efx->n_rx_channels = 1;
1225 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001226 rc = pci_enable_msi(efx->pci_dev);
1227 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001228 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001229 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001230 netif_err(efx, drv, efx->net_dev,
1231 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001232 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1233 }
1234 }
1235
1236 /* Assume legacy interrupts */
1237 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Neil Turton28b581a2008-12-12 21:41:06 -08001238 efx->n_channels = 1 + (separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001239 efx->n_rx_channels = 1;
1240 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001241 efx->legacy_irq = efx->pci_dev->irq;
1242 }
1243}
1244
1245static void efx_remove_interrupts(struct efx_nic *efx)
1246{
1247 struct efx_channel *channel;
1248
1249 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001250 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001251 channel->irq = 0;
1252 pci_disable_msi(efx->pci_dev);
1253 pci_disable_msix(efx->pci_dev);
1254
1255 /* Remove legacy interrupt */
1256 efx->legacy_irq = 0;
1257}
1258
Ben Hutchings8313aca2010-09-10 06:41:57 +00001259struct efx_tx_queue *
1260efx_get_tx_queue(struct efx_nic *efx, unsigned index, unsigned type)
1261{
1262 unsigned tx_channel_offset =
1263 separate_tx_channels ? efx->n_channels - efx->n_tx_channels : 0;
1264 EFX_BUG_ON_PARANOID(index >= efx->n_tx_channels ||
1265 type >= EFX_TXQ_TYPES);
1266 return &efx->channel[tx_channel_offset + index]->tx_queue[type];
1267}
1268
Ben Hutchings8831da72008-09-01 12:47:48 +01001269static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001270{
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001271 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001272 struct efx_tx_queue *tx_queue;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001273 unsigned tx_channel_offset =
1274 separate_tx_channels ? efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001275
Ben Hutchings8313aca2010-09-10 06:41:57 +00001276 /* Channel pointers were set in efx_init_struct() but we now
1277 * need to clear them for TX queues in any RX-only channels. */
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001278 efx_for_each_channel(channel, efx) {
Ben Hutchings8313aca2010-09-10 06:41:57 +00001279 if (channel->channel - tx_channel_offset >=
1280 efx->n_tx_channels) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001281 efx_for_each_channel_tx_queue(tx_queue, channel)
Ben Hutchings8313aca2010-09-10 06:41:57 +00001282 tx_queue->channel = NULL;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001283 }
Ben Hutchings60ac1062008-09-01 12:44:59 +01001284 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001285}
1286
1287static int efx_probe_nic(struct efx_nic *efx)
1288{
Ben Hutchings765c9f42010-06-30 05:06:28 +00001289 size_t i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001290 int rc;
1291
Ben Hutchings62776d02010-06-23 11:30:07 +00001292 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001293
1294 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001295 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001296 if (rc)
1297 return rc;
1298
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001299 /* Determine the number of channels and queues by trying to hook
Ben Hutchings8ceee662008-04-27 12:55:59 +01001300 * in MSI-X interrupts. */
1301 efx_probe_interrupts(efx);
1302
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001303 if (efx->n_channels > 1)
1304 get_random_bytes(&efx->rx_hash_key, sizeof(efx->rx_hash_key));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001305 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
1306 efx->rx_indir_table[i] = i % efx->n_rx_channels;
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001307
Ben Hutchings8831da72008-09-01 12:47:48 +01001308 efx_set_channels(efx);
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001309 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1310 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001311
1312 /* Initialise the interrupt moderation settings */
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001313 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001314
1315 return 0;
1316}
1317
1318static void efx_remove_nic(struct efx_nic *efx)
1319{
Ben Hutchings62776d02010-06-23 11:30:07 +00001320 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001321
1322 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001323 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001324}
1325
1326/**************************************************************************
1327 *
1328 * NIC startup/shutdown
1329 *
1330 *************************************************************************/
1331
1332static int efx_probe_all(struct efx_nic *efx)
1333{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001334 int rc;
1335
Ben Hutchings8ceee662008-04-27 12:55:59 +01001336 rc = efx_probe_nic(efx);
1337 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001338 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001339 goto fail1;
1340 }
1341
Ben Hutchings8ceee662008-04-27 12:55:59 +01001342 rc = efx_probe_port(efx);
1343 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001344 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001345 goto fail2;
1346 }
1347
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001348 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings46426102010-09-10 06:42:33 +00001349 rc = efx_probe_channels(efx);
1350 if (rc)
1351 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001352
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001353 rc = efx_probe_filters(efx);
1354 if (rc) {
1355 netif_err(efx, probe, efx->net_dev,
1356 "failed to create filter tables\n");
1357 goto fail4;
1358 }
1359
Ben Hutchings8ceee662008-04-27 12:55:59 +01001360 return 0;
1361
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001362 fail4:
1363 efx_remove_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001364 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001365 efx_remove_port(efx);
1366 fail2:
1367 efx_remove_nic(efx);
1368 fail1:
1369 return rc;
1370}
1371
1372/* Called after previous invocation(s) of efx_stop_all, restarts the
1373 * port, kernel transmit queue, NAPI processing and hardware interrupts,
1374 * and ensures that the port is scheduled to be reconfigured.
1375 * This function is safe to call multiple times when the NIC is in any
1376 * state. */
1377static void efx_start_all(struct efx_nic *efx)
1378{
1379 struct efx_channel *channel;
1380
1381 EFX_ASSERT_RESET_SERIALISED(efx);
1382
1383 /* Check that it is appropriate to restart the interface. All
1384 * of these flags are safe to read under just the rtnl lock */
1385 if (efx->port_enabled)
1386 return;
1387 if ((efx->state != STATE_RUNNING) && (efx->state != STATE_INIT))
1388 return;
Ben Hutchings55668612008-05-16 21:16:10 +01001389 if (efx_dev_registered(efx) && !netif_running(efx->net_dev))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001390 return;
1391
1392 /* Mark the port as enabled so port reconfigurations can start, then
1393 * restart the transmit interface early so the watchdog timer stops */
1394 efx_start_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001395
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001396 efx_for_each_channel(channel, efx) {
1397 if (efx_dev_registered(efx))
1398 efx_wake_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001399 efx_start_channel(channel);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001400 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001401
Ben Hutchings152b6a62009-11-29 03:43:56 +00001402 efx_nic_enable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001403
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001404 /* Switch to event based MCDI completions after enabling interrupts.
1405 * If a reset has been scheduled, then we need to stay in polled mode.
1406 * Rather than serialising efx_mcdi_mode_event() [which sleeps] and
1407 * reset_pending [modified from an atomic context], we instead guarantee
1408 * that efx_mcdi_mode_poll() isn't reverted erroneously */
1409 efx_mcdi_mode_event(efx);
1410 if (efx->reset_pending != RESET_TYPE_NONE)
1411 efx_mcdi_mode_poll(efx);
1412
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001413 /* Start the hardware monitor if there is one. Otherwise (we're link
1414 * event driven), we have to poll the PHY because after an event queue
1415 * flush, we could have a missed a link state change */
1416 if (efx->type->monitor != NULL) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001417 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1418 efx_monitor_interval);
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001419 } else {
1420 mutex_lock(&efx->mac_lock);
1421 if (efx->phy_op->poll(efx))
1422 efx_link_status_changed(efx);
1423 mutex_unlock(&efx->mac_lock);
1424 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001425
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001426 efx->type->start_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001427}
1428
1429/* Flush all delayed work. Should only be called when no more delayed work
1430 * will be scheduled. This doesn't flush pending online resets (efx_reset),
1431 * since we're holding the rtnl_lock at this point. */
1432static void efx_flush_all(struct efx_nic *efx)
1433{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001434 /* Make sure the hardware monitor is stopped */
1435 cancel_delayed_work_sync(&efx->monitor_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001436 /* Stop scheduled port reconfigurations */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001437 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001438}
1439
1440/* Quiesce hardware and software without bringing the link down.
1441 * Safe to call multiple times, when the nic and interface is in any
1442 * state. The caller is guaranteed to subsequently be in a position
1443 * to modify any hardware and software state they see fit without
1444 * taking locks. */
1445static void efx_stop_all(struct efx_nic *efx)
1446{
1447 struct efx_channel *channel;
1448
1449 EFX_ASSERT_RESET_SERIALISED(efx);
1450
1451 /* port_enabled can be read safely under the rtnl lock */
1452 if (!efx->port_enabled)
1453 return;
1454
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001455 efx->type->stop_stats(efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001456
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001457 /* Switch to MCDI polling on Siena before disabling interrupts */
1458 efx_mcdi_mode_poll(efx);
1459
Ben Hutchings8ceee662008-04-27 12:55:59 +01001460 /* Disable interrupts and wait for ISR to complete */
Ben Hutchings152b6a62009-11-29 03:43:56 +00001461 efx_nic_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001462 if (efx->legacy_irq)
1463 synchronize_irq(efx->legacy_irq);
Ben Hutchings64ee3122008-09-01 12:47:38 +01001464 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001465 if (channel->irq)
1466 synchronize_irq(channel->irq);
Ben Hutchingsb3475642008-05-16 21:15:49 +01001467 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001468
1469 /* Stop all NAPI processing and synchronous rx refills */
1470 efx_for_each_channel(channel, efx)
1471 efx_stop_channel(channel);
1472
1473 /* Stop all asynchronous port reconfigurations. Since all
1474 * event processing has already been stopped, there is no
1475 * window to loose phy events */
1476 efx_stop_port(efx);
1477
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00001478 /* Flush efx_mac_work(), refill_workqueue, monitor_work */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001479 efx_flush_all(efx);
1480
Ben Hutchings8ceee662008-04-27 12:55:59 +01001481 /* Stop the kernel transmit interface late, so the watchdog
1482 * timer isn't ticking over the flush */
Ben Hutchings55668612008-05-16 21:16:10 +01001483 if (efx_dev_registered(efx)) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001484 struct efx_channel *channel;
1485 efx_for_each_channel(channel, efx)
1486 efx_stop_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001487 netif_tx_lock_bh(efx->net_dev);
1488 netif_tx_unlock_bh(efx->net_dev);
1489 }
1490}
1491
1492static void efx_remove_all(struct efx_nic *efx)
1493{
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001494 efx_remove_filters(efx);
Ben Hutchings46426102010-09-10 06:42:33 +00001495 efx_remove_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001496 efx_remove_port(efx);
1497 efx_remove_nic(efx);
1498}
1499
Ben Hutchings8ceee662008-04-27 12:55:59 +01001500/**************************************************************************
1501 *
1502 * Interrupt moderation
1503 *
1504 **************************************************************************/
1505
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001506static unsigned irq_mod_ticks(int usecs, int resolution)
1507{
1508 if (usecs <= 0)
1509 return 0; /* cannot receive interrupts ahead of time :-) */
1510 if (usecs < resolution)
1511 return 1; /* never round down to 0 */
1512 return usecs / resolution;
1513}
1514
Ben Hutchings8ceee662008-04-27 12:55:59 +01001515/* Set interrupt moderation parameters */
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001516void efx_init_irq_moderation(struct efx_nic *efx, int tx_usecs, int rx_usecs,
1517 bool rx_adaptive)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001518{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001519 struct efx_channel *channel;
Ben Hutchings152b6a62009-11-29 03:43:56 +00001520 unsigned tx_ticks = irq_mod_ticks(tx_usecs, EFX_IRQ_MOD_RESOLUTION);
1521 unsigned rx_ticks = irq_mod_ticks(rx_usecs, EFX_IRQ_MOD_RESOLUTION);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001522
1523 EFX_ASSERT_RESET_SERIALISED(efx);
1524
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001525 efx->irq_rx_adaptive = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001526 efx->irq_rx_moderation = rx_ticks;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001527 efx_for_each_channel(channel, efx) {
1528 if (efx_channel_get_rx_queue(channel))
1529 channel->irq_moderation = rx_ticks;
1530 else if (efx_channel_get_tx_queue(channel, 0))
1531 channel->irq_moderation = tx_ticks;
1532 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001533}
1534
1535/**************************************************************************
1536 *
1537 * Hardware monitor
1538 *
1539 **************************************************************************/
1540
Ben Hutchingse254c272010-09-20 08:44:10 +00001541/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001542static void efx_monitor(struct work_struct *data)
1543{
1544 struct efx_nic *efx = container_of(data, struct efx_nic,
1545 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001546
Ben Hutchings62776d02010-06-23 11:30:07 +00001547 netif_vdbg(efx, timer, efx->net_dev,
1548 "hardware monitor executing on CPU %d\n",
1549 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001550 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001551
Ben Hutchings8ceee662008-04-27 12:55:59 +01001552 /* If the mac_lock is already held then it is likely a port
1553 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00001554 * most of the work of monitor() anyway. */
1555 if (mutex_trylock(&efx->mac_lock)) {
1556 if (efx->port_enabled)
1557 efx->type->monitor(efx);
1558 mutex_unlock(&efx->mac_lock);
1559 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001560
Ben Hutchings8ceee662008-04-27 12:55:59 +01001561 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1562 efx_monitor_interval);
1563}
1564
1565/**************************************************************************
1566 *
1567 * ioctls
1568 *
1569 *************************************************************************/
1570
1571/* Net device ioctl
1572 * Context: process, rtnl_lock() held.
1573 */
1574static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
1575{
Ben Hutchings767e4682008-09-01 12:43:14 +01001576 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00001577 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001578
1579 EFX_ASSERT_RESET_SERIALISED(efx);
1580
Ben Hutchings68e7f452009-04-29 08:05:08 +00001581 /* Convert phy_id from older PRTAD/DEVAD format */
1582 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
1583 (data->phy_id & 0xfc00) == 0x0400)
1584 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
1585
1586 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001587}
1588
1589/**************************************************************************
1590 *
1591 * NAPI interface
1592 *
1593 **************************************************************************/
1594
1595static int efx_init_napi(struct efx_nic *efx)
1596{
1597 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001598
1599 efx_for_each_channel(channel, efx) {
1600 channel->napi_dev = efx->net_dev;
Ben Hutchings718cff12009-04-14 19:47:46 -07001601 netif_napi_add(channel->napi_dev, &channel->napi_str,
1602 efx_poll, napi_weight);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001603 }
1604 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001605}
1606
1607static void efx_fini_napi(struct efx_nic *efx)
1608{
1609 struct efx_channel *channel;
1610
1611 efx_for_each_channel(channel, efx) {
Ben Hutchings718cff12009-04-14 19:47:46 -07001612 if (channel->napi_dev)
1613 netif_napi_del(&channel->napi_str);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001614 channel->napi_dev = NULL;
1615 }
1616}
1617
1618/**************************************************************************
1619 *
1620 * Kernel netpoll interface
1621 *
1622 *************************************************************************/
1623
1624#ifdef CONFIG_NET_POLL_CONTROLLER
1625
1626/* Although in the common case interrupts will be disabled, this is not
1627 * guaranteed. However, all our work happens inside the NAPI callback,
1628 * so no locking is required.
1629 */
1630static void efx_netpoll(struct net_device *net_dev)
1631{
Ben Hutchings767e4682008-09-01 12:43:14 +01001632 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001633 struct efx_channel *channel;
1634
Ben Hutchings64ee3122008-09-01 12:47:38 +01001635 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001636 efx_schedule_channel(channel);
1637}
1638
1639#endif
1640
1641/**************************************************************************
1642 *
1643 * Kernel net device interface
1644 *
1645 *************************************************************************/
1646
1647/* Context: process, rtnl_lock() held. */
1648static int efx_net_open(struct net_device *net_dev)
1649{
Ben Hutchings767e4682008-09-01 12:43:14 +01001650 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001651 EFX_ASSERT_RESET_SERIALISED(efx);
1652
Ben Hutchings62776d02010-06-23 11:30:07 +00001653 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
1654 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01001655
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08001656 if (efx->state == STATE_DISABLED)
1657 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01001658 if (efx->phy_mode & PHY_MODE_SPECIAL)
1659 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001660 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
1661 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01001662
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001663 /* Notify the kernel of the link state polled during driver load,
1664 * before the monitor starts running */
1665 efx_link_status_changed(efx);
1666
Ben Hutchings8ceee662008-04-27 12:55:59 +01001667 efx_start_all(efx);
1668 return 0;
1669}
1670
1671/* Context: process, rtnl_lock() held.
1672 * Note that the kernel will ignore our return code; this method
1673 * should really be a void.
1674 */
1675static int efx_net_stop(struct net_device *net_dev)
1676{
Ben Hutchings767e4682008-09-01 12:43:14 +01001677 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001678
Ben Hutchings62776d02010-06-23 11:30:07 +00001679 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
1680 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01001681
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08001682 if (efx->state != STATE_DISABLED) {
1683 /* Stop the device and flush all the channels */
1684 efx_stop_all(efx);
1685 efx_fini_channels(efx);
1686 efx_init_channels(efx);
1687 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001688
1689 return 0;
1690}
1691
Ben Hutchings5b9e2072008-05-16 21:18:14 +01001692/* Context: process, dev_base_lock or RTNL held, non-blocking. */
Eric Dumazet28172732010-07-07 14:58:56 -07001693static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev, struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001694{
Ben Hutchings767e4682008-09-01 12:43:14 +01001695 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001696 struct efx_mac_stats *mac_stats = &efx->mac_stats;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001697
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001698 spin_lock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001699 efx->type->update_stats(efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001700 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001701
1702 stats->rx_packets = mac_stats->rx_packets;
1703 stats->tx_packets = mac_stats->tx_packets;
1704 stats->rx_bytes = mac_stats->rx_bytes;
1705 stats->tx_bytes = mac_stats->tx_bytes;
Ben Hutchings80485d32010-09-10 06:41:06 +00001706 stats->rx_dropped = efx->n_rx_nodesc_drop_cnt;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001707 stats->multicast = mac_stats->rx_multicast;
1708 stats->collisions = mac_stats->tx_collision;
1709 stats->rx_length_errors = (mac_stats->rx_gtjumbo +
1710 mac_stats->rx_length_error);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001711 stats->rx_crc_errors = mac_stats->rx_bad;
1712 stats->rx_frame_errors = mac_stats->rx_align_error;
1713 stats->rx_fifo_errors = mac_stats->rx_overflow;
1714 stats->rx_missed_errors = mac_stats->rx_missed;
1715 stats->tx_window_errors = mac_stats->tx_late_collision;
1716
1717 stats->rx_errors = (stats->rx_length_errors +
Ben Hutchings8ceee662008-04-27 12:55:59 +01001718 stats->rx_crc_errors +
1719 stats->rx_frame_errors +
Ben Hutchings8ceee662008-04-27 12:55:59 +01001720 mac_stats->rx_symbol_error);
1721 stats->tx_errors = (stats->tx_window_errors +
1722 mac_stats->tx_bad);
1723
1724 return stats;
1725}
1726
1727/* Context: netif_tx_lock held, BHs disabled. */
1728static void efx_watchdog(struct net_device *net_dev)
1729{
Ben Hutchings767e4682008-09-01 12:43:14 +01001730 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001731
Ben Hutchings62776d02010-06-23 11:30:07 +00001732 netif_err(efx, tx_err, efx->net_dev,
1733 "TX stuck with port_enabled=%d: resetting channels\n",
1734 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001735
Ben Hutchings739bb23d2008-11-04 20:35:36 +00001736 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001737}
1738
1739
1740/* Context: process, rtnl_lock() held. */
1741static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
1742{
Ben Hutchings767e4682008-09-01 12:43:14 +01001743 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001744 int rc = 0;
1745
1746 EFX_ASSERT_RESET_SERIALISED(efx);
1747
1748 if (new_mtu > EFX_MAX_MTU)
1749 return -EINVAL;
1750
1751 efx_stop_all(efx);
1752
Ben Hutchings62776d02010-06-23 11:30:07 +00001753 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001754
1755 efx_fini_channels(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001756
1757 mutex_lock(&efx->mac_lock);
1758 /* Reconfigure the MAC before enabling the dma queues so that
1759 * the RX buffers don't overflow */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001760 net_dev->mtu = new_mtu;
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001761 efx->mac_op->reconfigure(efx);
1762 mutex_unlock(&efx->mac_lock);
1763
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01001764 efx_init_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001765
1766 efx_start_all(efx);
1767 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001768}
1769
1770static int efx_set_mac_address(struct net_device *net_dev, void *data)
1771{
Ben Hutchings767e4682008-09-01 12:43:14 +01001772 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001773 struct sockaddr *addr = data;
1774 char *new_addr = addr->sa_data;
1775
1776 EFX_ASSERT_RESET_SERIALISED(efx);
1777
1778 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001779 netif_err(efx, drv, efx->net_dev,
1780 "invalid ethernet MAC address requested: %pM\n",
1781 new_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001782 return -EINVAL;
1783 }
1784
1785 memcpy(net_dev->dev_addr, new_addr, net_dev->addr_len);
1786
1787 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001788 mutex_lock(&efx->mac_lock);
1789 efx->mac_op->reconfigure(efx);
1790 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001791
1792 return 0;
1793}
1794
Ben Hutchingsa816f752008-09-01 12:49:12 +01001795/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001796static void efx_set_multicast_list(struct net_device *net_dev)
1797{
Ben Hutchings767e4682008-09-01 12:43:14 +01001798 struct efx_nic *efx = netdev_priv(net_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001799 struct netdev_hw_addr *ha;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001800 union efx_multicast_hash *mc_hash = &efx->multicast_hash;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001801 u32 crc;
1802 int bit;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001803
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001804 efx->promiscuous = !!(net_dev->flags & IFF_PROMISC);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001805
1806 /* Build multicast hash table */
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001807 if (efx->promiscuous || (net_dev->flags & IFF_ALLMULTI)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001808 memset(mc_hash, 0xff, sizeof(*mc_hash));
1809 } else {
1810 memset(mc_hash, 0x00, sizeof(*mc_hash));
Jiri Pirko22bedad32010-04-01 21:22:57 +00001811 netdev_for_each_mc_addr(ha, net_dev) {
1812 crc = ether_crc_le(ETH_ALEN, ha->addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001813 bit = crc & (EFX_MCAST_HASH_ENTRIES - 1);
1814 set_bit_le(bit, mc_hash->byte);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001815 }
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001816
1817 /* Broadcast packets go through the multicast hash filter.
1818 * ether_crc_le() of the broadcast address is 0xbe2612ff
1819 * so we always add bit 0xff to the mask.
1820 */
1821 set_bit_le(0xff, mc_hash->byte);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001822 }
1823
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001824 if (efx->port_enabled)
1825 queue_work(efx->workqueue, &efx->mac_work);
1826 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001827}
1828
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001829static const struct net_device_ops efx_netdev_ops = {
1830 .ndo_open = efx_net_open,
1831 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00001832 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001833 .ndo_tx_timeout = efx_watchdog,
1834 .ndo_start_xmit = efx_hard_start_xmit,
1835 .ndo_validate_addr = eth_validate_addr,
1836 .ndo_do_ioctl = efx_ioctl,
1837 .ndo_change_mtu = efx_change_mtu,
1838 .ndo_set_mac_address = efx_set_mac_address,
1839 .ndo_set_multicast_list = efx_set_multicast_list,
1840#ifdef CONFIG_NET_POLL_CONTROLLER
1841 .ndo_poll_controller = efx_netpoll,
1842#endif
1843};
1844
Ben Hutchings7dde5962008-12-12 22:09:38 -08001845static void efx_update_name(struct efx_nic *efx)
1846{
1847 strcpy(efx->name, efx->net_dev->name);
1848 efx_mtd_rename(efx);
1849 efx_set_channel_names(efx);
1850}
1851
Ben Hutchings8ceee662008-04-27 12:55:59 +01001852static int efx_netdev_event(struct notifier_block *this,
1853 unsigned long event, void *ptr)
1854{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001855 struct net_device *net_dev = ptr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001856
Ben Hutchings7dde5962008-12-12 22:09:38 -08001857 if (net_dev->netdev_ops == &efx_netdev_ops &&
1858 event == NETDEV_CHANGENAME)
1859 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001860
1861 return NOTIFY_DONE;
1862}
1863
1864static struct notifier_block efx_netdev_notifier = {
1865 .notifier_call = efx_netdev_event,
1866};
1867
Ben Hutchings06d5e192008-12-12 21:47:23 -08001868static ssize_t
1869show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
1870{
1871 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
1872 return sprintf(buf, "%d\n", efx->phy_type);
1873}
1874static DEVICE_ATTR(phy_type, 0644, show_phy_type, NULL);
1875
Ben Hutchings8ceee662008-04-27 12:55:59 +01001876static int efx_register_netdev(struct efx_nic *efx)
1877{
1878 struct net_device *net_dev = efx->net_dev;
1879 int rc;
1880
1881 net_dev->watchdog_timeo = 5 * HZ;
1882 net_dev->irq = efx->pci_dev->irq;
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001883 net_dev->netdev_ops = &efx_netdev_ops;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001884 SET_ETHTOOL_OPS(net_dev, &efx_ethtool_ops);
1885
Ben Hutchings8ceee662008-04-27 12:55:59 +01001886 /* Clear MAC statistics */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001887 efx->mac_op->update_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001888 memset(&efx->mac_stats, 0, sizeof(efx->mac_stats));
1889
Ben Hutchings7dde5962008-12-12 22:09:38 -08001890 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00001891
1892 rc = dev_alloc_name(net_dev, net_dev->name);
1893 if (rc < 0)
1894 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08001895 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00001896
1897 rc = register_netdevice(net_dev);
1898 if (rc)
1899 goto fail_locked;
1900
1901 /* Always start with carrier off; PHY events will detect the link */
1902 netif_carrier_off(efx->net_dev);
1903
Ben Hutchings7dde5962008-12-12 22:09:38 -08001904 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01001905
Ben Hutchings06d5e192008-12-12 21:47:23 -08001906 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
1907 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001908 netif_err(efx, drv, efx->net_dev,
1909 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08001910 goto fail_registered;
1911 }
1912
Ben Hutchings8ceee662008-04-27 12:55:59 +01001913 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08001914
Ben Hutchingsaed06282009-08-26 08:16:27 +00001915fail_locked:
1916 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00001917 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00001918 return rc;
1919
Ben Hutchings06d5e192008-12-12 21:47:23 -08001920fail_registered:
1921 unregister_netdev(net_dev);
1922 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001923}
1924
1925static void efx_unregister_netdev(struct efx_nic *efx)
1926{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001927 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001928 struct efx_tx_queue *tx_queue;
1929
1930 if (!efx->net_dev)
1931 return;
1932
Ben Hutchings767e4682008-09-01 12:43:14 +01001933 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001934
1935 /* Free up any skbs still remaining. This has to happen before
1936 * we try to unregister the netdev as running their destructors
1937 * may be needed to get the device ref. count to 0. */
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001938 efx_for_each_channel(channel, efx) {
1939 efx_for_each_channel_tx_queue(tx_queue, channel)
1940 efx_release_tx_buffers(tx_queue);
1941 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001942
Ben Hutchings55668612008-05-16 21:16:10 +01001943 if (efx_dev_registered(efx)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001944 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
Ben Hutchings06d5e192008-12-12 21:47:23 -08001945 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001946 unregister_netdev(efx->net_dev);
1947 }
1948}
1949
1950/**************************************************************************
1951 *
1952 * Device reset and suspend
1953 *
1954 **************************************************************************/
1955
Ben Hutchings2467ca42008-09-01 12:48:50 +01001956/* Tears down the entire software state and most of the hardware state
1957 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001958void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001959{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001960 EFX_ASSERT_RESET_SERIALISED(efx);
1961
Ben Hutchings2467ca42008-09-01 12:48:50 +01001962 efx_stop_all(efx);
1963 mutex_lock(&efx->mac_lock);
1964
Ben Hutchings8ceee662008-04-27 12:55:59 +01001965 efx_fini_channels(efx);
Steve Hodgson4b988282009-01-29 17:50:51 +00001966 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE)
1967 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001968 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001969}
1970
Ben Hutchings2467ca42008-09-01 12:48:50 +01001971/* This function will always ensure that the locks acquired in
1972 * efx_reset_down() are released. A failure return code indicates
1973 * that we were unable to reinitialise the hardware, and the
1974 * driver should be disabled. If ok is false, then the rx and tx
1975 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001976int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001977{
1978 int rc;
1979
Ben Hutchings2467ca42008-09-01 12:48:50 +01001980 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001981
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001982 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001983 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001984 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001985 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001986 }
1987
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001988 if (!ok)
1989 goto fail;
1990
Steve Hodgson4b988282009-01-29 17:50:51 +00001991 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001992 rc = efx->phy_op->init(efx);
1993 if (rc)
1994 goto fail;
1995 if (efx->phy_op->reconfigure(efx))
Ben Hutchings62776d02010-06-23 11:30:07 +00001996 netif_err(efx, drv, efx->net_dev,
1997 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00001998 }
1999
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002000 efx->mac_op->reconfigure(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002001
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002002 efx_init_channels(efx);
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002003 efx_restore_filters(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002004
2005 mutex_unlock(&efx->mac_lock);
2006
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002007 efx_start_all(efx);
2008
2009 return 0;
2010
2011fail:
2012 efx->port_initialized = false;
2013
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002014 mutex_unlock(&efx->mac_lock);
2015
Ben Hutchings8ceee662008-04-27 12:55:59 +01002016 return rc;
2017}
2018
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002019/* Reset the NIC using the specified method. Note that the reset may
2020 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002021 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002022 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002023 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002024int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002025{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002026 int rc, rc2;
2027 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002028
Ben Hutchings62776d02010-06-23 11:30:07 +00002029 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2030 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002031
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002032 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002033
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002034 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002035 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002036 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002037 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002038 }
2039
2040 /* Allow resets to be rescheduled. */
2041 efx->reset_pending = RESET_TYPE_NONE;
2042
2043 /* Reinitialise bus-mastering, which may have been turned off before
2044 * the reset was scheduled. This is still appropriate, even in the
2045 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2046 * can respond to requests. */
2047 pci_set_master(efx->pci_dev);
2048
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002049out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002050 /* Leave device stopped if necessary */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002051 disabled = rc || method == RESET_TYPE_DISABLE;
2052 rc2 = efx_reset_up(efx, method, !disabled);
2053 if (rc2) {
2054 disabled = true;
2055 if (!rc)
2056 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002057 }
2058
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002059 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002060 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002061 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002062 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002063 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002064 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002065 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002066 return rc;
2067}
2068
2069/* The worker thread exists so that code that cannot sleep can
2070 * schedule a reset for later.
2071 */
2072static void efx_reset_work(struct work_struct *data)
2073{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002074 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002075
Steve Hodgson319ba642010-06-01 11:17:24 +00002076 if (efx->reset_pending == RESET_TYPE_NONE)
2077 return;
2078
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002079 /* If we're not RUNNING then don't reset. Leave the reset_pending
2080 * flag set so that efx_pci_probe_main will be retried */
2081 if (efx->state != STATE_RUNNING) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002082 netif_info(efx, drv, efx->net_dev,
2083 "scheduled reset quenched. NIC not RUNNING\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002084 return;
2085 }
2086
2087 rtnl_lock();
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002088 (void)efx_reset(efx, efx->reset_pending);
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002089 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002090}
2091
2092void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2093{
2094 enum reset_type method;
2095
2096 if (efx->reset_pending != RESET_TYPE_NONE) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002097 netif_info(efx, drv, efx->net_dev,
2098 "quenching already scheduled reset\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002099 return;
2100 }
2101
2102 switch (type) {
2103 case RESET_TYPE_INVISIBLE:
2104 case RESET_TYPE_ALL:
2105 case RESET_TYPE_WORLD:
2106 case RESET_TYPE_DISABLE:
2107 method = type;
2108 break;
2109 case RESET_TYPE_RX_RECOVERY:
2110 case RESET_TYPE_RX_DESC_FETCH:
2111 case RESET_TYPE_TX_DESC_FETCH:
2112 case RESET_TYPE_TX_SKIP:
2113 method = RESET_TYPE_INVISIBLE;
2114 break;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002115 case RESET_TYPE_MC_FAILURE:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002116 default:
2117 method = RESET_TYPE_ALL;
2118 break;
2119 }
2120
2121 if (method != type)
Ben Hutchings62776d02010-06-23 11:30:07 +00002122 netif_dbg(efx, drv, efx->net_dev,
2123 "scheduling %s reset for %s\n",
2124 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002125 else
Ben Hutchings62776d02010-06-23 11:30:07 +00002126 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2127 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002128
2129 efx->reset_pending = method;
2130
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002131 /* efx_process_channel() will no longer read events once a
2132 * reset is scheduled. So switch back to poll'd MCDI completions. */
2133 efx_mcdi_mode_poll(efx);
2134
Steve Hodgson1ab00622008-12-12 21:33:02 -08002135 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002136}
2137
2138/**************************************************************************
2139 *
2140 * List of NICs we support
2141 *
2142 **************************************************************************/
2143
2144/* PCI device ID table */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00002145static DEFINE_PCI_DEVICE_TABLE(efx_pci_table) = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002146 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_A_P_DEVID),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002147 .driver_data = (unsigned long) &falcon_a1_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002148 {PCI_DEVICE(EFX_VENDID_SFC, FALCON_B_P_DEVID),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002149 .driver_data = (unsigned long) &falcon_b0_nic_type},
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002150 {PCI_DEVICE(EFX_VENDID_SFC, BETHPAGE_A_P_DEVID),
2151 .driver_data = (unsigned long) &siena_a0_nic_type},
2152 {PCI_DEVICE(EFX_VENDID_SFC, SIENA_A_P_DEVID),
2153 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002154 {0} /* end of list */
2155};
2156
2157/**************************************************************************
2158 *
Ben Hutchings37594332009-11-23 16:05:45 +00002159 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002160 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002161 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002162 * Needed so all function pointers are valid and do not have to be tested
2163 * before use
2164 *
2165 **************************************************************************/
2166int efx_port_dummy_op_int(struct efx_nic *efx)
2167{
2168 return 0;
2169}
2170void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002171
2172static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002173{
2174 return false;
2175}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002176
2177static struct efx_phy_operations efx_dummy_phy_operations = {
2178 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002179 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002180 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002181 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002182};
2183
Ben Hutchings8ceee662008-04-27 12:55:59 +01002184/**************************************************************************
2185 *
2186 * Data housekeeping
2187 *
2188 **************************************************************************/
2189
2190/* This zeroes out and then fills in the invariants in a struct
2191 * efx_nic (including all sub-structures).
2192 */
2193static int efx_init_struct(struct efx_nic *efx, struct efx_nic_type *type,
2194 struct pci_dev *pci_dev, struct net_device *net_dev)
2195{
Ben Hutchings46426102010-09-10 06:42:33 +00002196 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002197
2198 /* Initialise common structures */
2199 memset(efx, 0, sizeof(*efx));
2200 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002201#ifdef CONFIG_SFC_MTD
2202 INIT_LIST_HEAD(&efx->mtd_list);
2203#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002204 INIT_WORK(&efx->reset_work, efx_reset_work);
2205 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
2206 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002207 efx->msg_enable = debug;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002208 efx->state = STATE_INIT;
2209 efx->reset_pending = RESET_TYPE_NONE;
2210 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002211
2212 efx->net_dev = net_dev;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01002213 efx->rx_checksum_enabled = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002214 spin_lock_init(&efx->stats_lock);
2215 mutex_init(&efx->mac_lock);
Steve Hodgsonb895d732009-11-28 05:35:00 +00002216 efx->mac_op = type->default_mac_ops;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002217 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002218 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002219 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002220
2221 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002222 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2223 if (!efx->channel[i])
2224 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002225 }
2226
2227 efx->type = type;
2228
Ben Hutchings8ceee662008-04-27 12:55:59 +01002229 EFX_BUG_ON_PARANOID(efx->type->phys_addr_channels > EFX_MAX_CHANNELS);
2230
2231 /* Higher numbered interrupt modes are less capable! */
2232 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2233 interrupt_mode);
2234
Ben Hutchings6977dc62008-12-26 13:44:39 -08002235 /* Would be good to use the net_dev name, but we're too early */
2236 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2237 pci_name(pci_dev));
2238 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002239 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00002240 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002241
Ben Hutchings8ceee662008-04-27 12:55:59 +01002242 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00002243
2244fail:
2245 efx_fini_struct(efx);
2246 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002247}
2248
2249static void efx_fini_struct(struct efx_nic *efx)
2250{
Ben Hutchings8313aca2010-09-10 06:41:57 +00002251 int i;
2252
2253 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2254 kfree(efx->channel[i]);
2255
Ben Hutchings8ceee662008-04-27 12:55:59 +01002256 if (efx->workqueue) {
2257 destroy_workqueue(efx->workqueue);
2258 efx->workqueue = NULL;
2259 }
2260}
2261
2262/**************************************************************************
2263 *
2264 * PCI interface
2265 *
2266 **************************************************************************/
2267
2268/* Main body of final NIC shutdown code
2269 * This is called only at module unload (or hotplug removal).
2270 */
2271static void efx_pci_remove_main(struct efx_nic *efx)
2272{
Ben Hutchings152b6a62009-11-29 03:43:56 +00002273 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002274 efx_fini_channels(efx);
2275 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002276 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002277 efx_fini_napi(efx);
2278 efx_remove_all(efx);
2279}
2280
2281/* Final NIC shutdown
2282 * This is called only at module unload (or hotplug removal).
2283 */
2284static void efx_pci_remove(struct pci_dev *pci_dev)
2285{
2286 struct efx_nic *efx;
2287
2288 efx = pci_get_drvdata(pci_dev);
2289 if (!efx)
2290 return;
2291
2292 /* Mark the NIC as fini, then stop the interface */
2293 rtnl_lock();
2294 efx->state = STATE_FINI;
2295 dev_close(efx->net_dev);
2296
2297 /* Allow any queued efx_resets() to complete */
2298 rtnl_unlock();
2299
Ben Hutchings8ceee662008-04-27 12:55:59 +01002300 efx_unregister_netdev(efx);
2301
Ben Hutchings7dde5962008-12-12 22:09:38 -08002302 efx_mtd_remove(efx);
2303
Ben Hutchings8ceee662008-04-27 12:55:59 +01002304 /* Wait for any scheduled resets to complete. No more will be
2305 * scheduled from this point because efx_stop_all() has been
2306 * called, we are no longer registered with driverlink, and
2307 * the net_device's have been removed. */
Steve Hodgson1ab00622008-12-12 21:33:02 -08002308 cancel_work_sync(&efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002309
2310 efx_pci_remove_main(efx);
2311
Ben Hutchings8ceee662008-04-27 12:55:59 +01002312 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002313 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002314
2315 pci_set_drvdata(pci_dev, NULL);
2316 efx_fini_struct(efx);
2317 free_netdev(efx->net_dev);
2318};
2319
2320/* Main body of NIC initialisation
2321 * This is called at module load (or hotplug insertion, theoretically).
2322 */
2323static int efx_pci_probe_main(struct efx_nic *efx)
2324{
2325 int rc;
2326
2327 /* Do start-of-day initialisation */
2328 rc = efx_probe_all(efx);
2329 if (rc)
2330 goto fail1;
2331
2332 rc = efx_init_napi(efx);
2333 if (rc)
2334 goto fail2;
2335
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002336 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002337 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002338 netif_err(efx, probe, efx->net_dev,
2339 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002340 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002341 }
2342
2343 rc = efx_init_port(efx);
2344 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002345 netif_err(efx, probe, efx->net_dev,
2346 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002347 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002348 }
2349
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01002350 efx_init_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002351
Ben Hutchings152b6a62009-11-29 03:43:56 +00002352 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002353 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00002354 goto fail5;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002355
2356 return 0;
2357
Ben Hutchings278c0622009-11-23 16:05:12 +00002358 fail5:
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01002359 efx_fini_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002360 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002361 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002362 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002363 fail3:
2364 efx_fini_napi(efx);
2365 fail2:
2366 efx_remove_all(efx);
2367 fail1:
2368 return rc;
2369}
2370
2371/* NIC initialisation
2372 *
2373 * This is called at module load (or hotplug insertion,
2374 * theoretically). It sets up PCI mappings, tests and resets the NIC,
2375 * sets up and registers the network devices with the kernel and hooks
2376 * the interrupt service routine. It does not prepare the device for
2377 * transmission; this is left to the first time one of the network
2378 * interfaces is brought up (i.e. efx_net_open).
2379 */
2380static int __devinit efx_pci_probe(struct pci_dev *pci_dev,
2381 const struct pci_device_id *entry)
2382{
2383 struct efx_nic_type *type = (struct efx_nic_type *) entry->driver_data;
2384 struct net_device *net_dev;
2385 struct efx_nic *efx;
2386 int i, rc;
2387
2388 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00002389 net_dev = alloc_etherdev_mq(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002390 if (!net_dev)
2391 return -ENOMEM;
Ben Hutchingsc383b532009-11-29 15:11:02 +00002392 net_dev->features |= (type->offload_features | NETIF_F_SG |
Ben Hutchings97bc5412009-05-19 16:19:08 -07002393 NETIF_F_HIGHDMA | NETIF_F_TSO |
2394 NETIF_F_GRO);
Ben Hutchings738a8f42009-11-29 15:16:05 +00002395 if (type->offload_features & NETIF_F_V6_CSUM)
2396 net_dev->features |= NETIF_F_TSO6;
Ben Hutchings285065632008-09-01 12:46:54 +01002397 /* Mask for features that also apply to VLAN devices */
2398 net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
Ben Hutchings740847d2008-09-01 12:48:23 +01002399 NETIF_F_HIGHDMA | NETIF_F_TSO);
Ben Hutchings767e4682008-09-01 12:43:14 +01002400 efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002401 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002402 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002403 rc = efx_init_struct(efx, type, pci_dev, net_dev);
2404 if (rc)
2405 goto fail1;
2406
Ben Hutchings62776d02010-06-23 11:30:07 +00002407 netif_info(efx, probe, efx->net_dev,
2408 "Solarflare Communications NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002409
2410 /* Set up basic I/O (BAR mappings etc) */
2411 rc = efx_init_io(efx);
2412 if (rc)
2413 goto fail2;
2414
2415 /* No serialisation is required with the reset path because
2416 * we're in STATE_INIT. */
2417 for (i = 0; i < 5; i++) {
2418 rc = efx_pci_probe_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002419
2420 /* Serialise against efx_reset(). No more resets will be
2421 * scheduled since efx_stop_all() has been called, and we
2422 * have not and never have been registered with either
2423 * the rtnetlink or driverlink layers. */
Steve Hodgson1ab00622008-12-12 21:33:02 -08002424 cancel_work_sync(&efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002425
Steve Hodgsonfa402b22008-12-12 22:08:16 -08002426 if (rc == 0) {
2427 if (efx->reset_pending != RESET_TYPE_NONE) {
2428 /* If there was a scheduled reset during
2429 * probe, the NIC is probably hosed anyway */
2430 efx_pci_remove_main(efx);
2431 rc = -EIO;
2432 } else {
2433 break;
2434 }
2435 }
2436
Ben Hutchings8ceee662008-04-27 12:55:59 +01002437 /* Retry if a recoverably reset event has been scheduled */
2438 if ((efx->reset_pending != RESET_TYPE_INVISIBLE) &&
2439 (efx->reset_pending != RESET_TYPE_ALL))
2440 goto fail3;
2441
2442 efx->reset_pending = RESET_TYPE_NONE;
2443 }
2444
2445 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002446 netif_err(efx, probe, efx->net_dev, "Could not reset NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002447 goto fail4;
2448 }
2449
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002450 /* Switch to the running state before we expose the device to the OS,
2451 * so that dev_open()|efx_start_all() will actually start the device */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002452 efx->state = STATE_RUNNING;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002453
Ben Hutchings8ceee662008-04-27 12:55:59 +01002454 rc = efx_register_netdev(efx);
2455 if (rc)
2456 goto fail5;
2457
Ben Hutchings62776d02010-06-23 11:30:07 +00002458 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00002459
2460 rtnl_lock();
2461 efx_mtd_probe(efx); /* allowed to fail */
2462 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002463 return 0;
2464
2465 fail5:
2466 efx_pci_remove_main(efx);
2467 fail4:
2468 fail3:
2469 efx_fini_io(efx);
2470 fail2:
2471 efx_fini_struct(efx);
2472 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08002473 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00002474 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002475 free_netdev(net_dev);
2476 return rc;
2477}
2478
Ben Hutchings89c758f2009-11-29 03:43:07 +00002479static int efx_pm_freeze(struct device *dev)
2480{
2481 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2482
2483 efx->state = STATE_FINI;
2484
2485 netif_device_detach(efx->net_dev);
2486
2487 efx_stop_all(efx);
2488 efx_fini_channels(efx);
2489
2490 return 0;
2491}
2492
2493static int efx_pm_thaw(struct device *dev)
2494{
2495 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2496
2497 efx->state = STATE_INIT;
2498
2499 efx_init_channels(efx);
2500
2501 mutex_lock(&efx->mac_lock);
2502 efx->phy_op->reconfigure(efx);
2503 mutex_unlock(&efx->mac_lock);
2504
2505 efx_start_all(efx);
2506
2507 netif_device_attach(efx->net_dev);
2508
2509 efx->state = STATE_RUNNING;
2510
2511 efx->type->resume_wol(efx);
2512
Steve Hodgson319ba642010-06-01 11:17:24 +00002513 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
2514 queue_work(reset_workqueue, &efx->reset_work);
2515
Ben Hutchings89c758f2009-11-29 03:43:07 +00002516 return 0;
2517}
2518
2519static int efx_pm_poweroff(struct device *dev)
2520{
2521 struct pci_dev *pci_dev = to_pci_dev(dev);
2522 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2523
2524 efx->type->fini(efx);
2525
2526 efx->reset_pending = RESET_TYPE_NONE;
2527
2528 pci_save_state(pci_dev);
2529 return pci_set_power_state(pci_dev, PCI_D3hot);
2530}
2531
2532/* Used for both resume and restore */
2533static int efx_pm_resume(struct device *dev)
2534{
2535 struct pci_dev *pci_dev = to_pci_dev(dev);
2536 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2537 int rc;
2538
2539 rc = pci_set_power_state(pci_dev, PCI_D0);
2540 if (rc)
2541 return rc;
2542 pci_restore_state(pci_dev);
2543 rc = pci_enable_device(pci_dev);
2544 if (rc)
2545 return rc;
2546 pci_set_master(efx->pci_dev);
2547 rc = efx->type->reset(efx, RESET_TYPE_ALL);
2548 if (rc)
2549 return rc;
2550 rc = efx->type->init(efx);
2551 if (rc)
2552 return rc;
2553 efx_pm_thaw(dev);
2554 return 0;
2555}
2556
2557static int efx_pm_suspend(struct device *dev)
2558{
2559 int rc;
2560
2561 efx_pm_freeze(dev);
2562 rc = efx_pm_poweroff(dev);
2563 if (rc)
2564 efx_pm_resume(dev);
2565 return rc;
2566}
2567
2568static struct dev_pm_ops efx_pm_ops = {
2569 .suspend = efx_pm_suspend,
2570 .resume = efx_pm_resume,
2571 .freeze = efx_pm_freeze,
2572 .thaw = efx_pm_thaw,
2573 .poweroff = efx_pm_poweroff,
2574 .restore = efx_pm_resume,
2575};
2576
Ben Hutchings8ceee662008-04-27 12:55:59 +01002577static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00002578 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002579 .id_table = efx_pci_table,
2580 .probe = efx_pci_probe,
2581 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00002582 .driver.pm = &efx_pm_ops,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002583};
2584
2585/**************************************************************************
2586 *
2587 * Kernel module interface
2588 *
2589 *************************************************************************/
2590
2591module_param(interrupt_mode, uint, 0444);
2592MODULE_PARM_DESC(interrupt_mode,
2593 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
2594
2595static int __init efx_init_module(void)
2596{
2597 int rc;
2598
2599 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
2600
2601 rc = register_netdevice_notifier(&efx_netdev_notifier);
2602 if (rc)
2603 goto err_notifier;
2604
Steve Hodgson1ab00622008-12-12 21:33:02 -08002605 reset_workqueue = create_singlethread_workqueue("sfc_reset");
2606 if (!reset_workqueue) {
2607 rc = -ENOMEM;
2608 goto err_reset;
2609 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002610
2611 rc = pci_register_driver(&efx_pci_driver);
2612 if (rc < 0)
2613 goto err_pci;
2614
2615 return 0;
2616
2617 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08002618 destroy_workqueue(reset_workqueue);
2619 err_reset:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002620 unregister_netdevice_notifier(&efx_netdev_notifier);
2621 err_notifier:
2622 return rc;
2623}
2624
2625static void __exit efx_exit_module(void)
2626{
2627 printk(KERN_INFO "Solarflare NET driver unloading\n");
2628
2629 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002630 destroy_workqueue(reset_workqueue);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002631 unregister_netdevice_notifier(&efx_netdev_notifier);
2632
2633}
2634
2635module_init(efx_init_module);
2636module_exit(efx_exit_module);
2637
Ben Hutchings906bb262009-11-29 15:16:19 +00002638MODULE_AUTHOR("Solarflare Communications and "
2639 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002640MODULE_DESCRIPTION("Solarflare Communications network driver");
2641MODULE_LICENSE("GPL");
2642MODULE_DEVICE_TABLE(pci, efx_pci_table);