blob: ce07aa516cd2d7bd7df23472464507621142abe3 [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 Hutchings0a6f40c2011-02-25 00:01:34 +00004 * Copyright 2005-2011 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 Hutchings64d8ad62011-01-05 00:50:41 +000024#include <linux/cpu_rmap.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010025#include "net_driver.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010026#include "efx.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000027#include "nic.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010028
Ben Hutchings8880f4e2009-11-29 15:15:41 +000029#include "mcdi.h"
Steve Hodgsonfd371e32010-06-01 11:17:51 +000030#include "workarounds.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000031
Ben Hutchingsc4593022009-11-23 16:08:17 +000032/**************************************************************************
33 *
34 * Type name strings
35 *
36 **************************************************************************
37 */
38
39/* Loopback mode names (see LOOPBACK_MODE()) */
40const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000041const char *const efx_loopback_mode_names[] = {
Ben Hutchingsc4593022009-11-23 16:08:17 +000042 [LOOPBACK_NONE] = "NONE",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000043 [LOOPBACK_DATA] = "DATAPATH",
Ben Hutchingsc4593022009-11-23 16:08:17 +000044 [LOOPBACK_GMAC] = "GMAC",
45 [LOOPBACK_XGMII] = "XGMII",
46 [LOOPBACK_XGXS] = "XGXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000047 [LOOPBACK_XAUI] = "XAUI",
48 [LOOPBACK_GMII] = "GMII",
49 [LOOPBACK_SGMII] = "SGMII",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000050 [LOOPBACK_XGBR] = "XGBR",
51 [LOOPBACK_XFI] = "XFI",
52 [LOOPBACK_XAUI_FAR] = "XAUI_FAR",
53 [LOOPBACK_GMII_FAR] = "GMII_FAR",
54 [LOOPBACK_SGMII_FAR] = "SGMII_FAR",
55 [LOOPBACK_XFI_FAR] = "XFI_FAR",
Ben Hutchingsc4593022009-11-23 16:08:17 +000056 [LOOPBACK_GPHY] = "GPHY",
57 [LOOPBACK_PHYXS] = "PHYXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000058 [LOOPBACK_PCS] = "PCS",
59 [LOOPBACK_PMAPMD] = "PMA/PMD",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000060 [LOOPBACK_XPORT] = "XPORT",
61 [LOOPBACK_XGMII_WS] = "XGMII_WS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000062 [LOOPBACK_XAUI_WS] = "XAUI_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000063 [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR",
64 [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000065 [LOOPBACK_GMII_WS] = "GMII_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000066 [LOOPBACK_XFI_WS] = "XFI_WS",
67 [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000068 [LOOPBACK_PHYXS_WS] = "PHYXS_WS",
Ben Hutchingsc4593022009-11-23 16:08:17 +000069};
70
Ben Hutchingsc4593022009-11-23 16:08:17 +000071const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000072const char *const efx_reset_type_names[] = {
Ben Hutchingsc4593022009-11-23 16:08:17 +000073 [RESET_TYPE_INVISIBLE] = "INVISIBLE",
74 [RESET_TYPE_ALL] = "ALL",
75 [RESET_TYPE_WORLD] = "WORLD",
76 [RESET_TYPE_DISABLE] = "DISABLE",
77 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
78 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
79 [RESET_TYPE_RX_RECOVERY] = "RX_RECOVERY",
80 [RESET_TYPE_RX_DESC_FETCH] = "RX_DESC_FETCH",
81 [RESET_TYPE_TX_DESC_FETCH] = "TX_DESC_FETCH",
82 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
Ben Hutchings8880f4e2009-11-29 15:15:41 +000083 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
Ben Hutchingsc4593022009-11-23 16:08:17 +000084};
85
Ben Hutchings8ceee662008-04-27 12:55:59 +010086#define EFX_MAX_MTU (9 * 1024)
87
Steve Hodgson1ab00622008-12-12 21:33:02 -080088/* Reset workqueue. If any NIC has a hardware failure then a reset will be
89 * queued onto this work queue. This is not a per-nic work queue, because
90 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
91 */
92static struct workqueue_struct *reset_workqueue;
93
Ben Hutchings8ceee662008-04-27 12:55:59 +010094/**************************************************************************
95 *
96 * Configurable values
97 *
98 *************************************************************************/
99
100/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100101 * Use separate channels for TX and RX events
102 *
Neil Turton28b581a2008-12-12 21:41:06 -0800103 * Set this to 1 to use separate channels for TX and RX. It allows us
104 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100105 *
Neil Turton28b581a2008-12-12 21:41:06 -0800106 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100107 */
Neil Turton28b581a2008-12-12 21:41:06 -0800108static unsigned int separate_tx_channels;
Ben Hutchings8313aca2010-09-10 06:41:57 +0000109module_param(separate_tx_channels, uint, 0444);
Neil Turton28b581a2008-12-12 21:41:06 -0800110MODULE_PARM_DESC(separate_tx_channels,
111 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100112
113/* This is the weight assigned to each of the (per-channel) virtual
114 * NAPI devices.
115 */
116static int napi_weight = 64;
117
118/* This is the time (in jiffies) between invocations of the hardware
Ben Hutchingse254c272010-09-20 08:44:10 +0000119 * monitor. On Falcon-based NICs, this will:
120 * - Check the on-board hardware monitor;
121 * - Poll the link state and reconfigure the hardware as necessary.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100122 */
stephen hemmingerd2156972010-10-18 05:27:31 +0000123static unsigned int efx_monitor_interval = 1 * HZ;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100124
Ben Hutchings8ceee662008-04-27 12:55:59 +0100125/* Initial interrupt moderation settings. They can be modified after
126 * module load with ethtool.
127 *
128 * The default for RX should strike a balance between increasing the
129 * round-trip latency and reducing overhead.
130 */
131static unsigned int rx_irq_mod_usec = 60;
132
133/* Initial interrupt moderation settings. They can be modified after
134 * module load with ethtool.
135 *
136 * This default is chosen to ensure that a 10G link does not go idle
137 * while a TX queue is stopped after it has become full. A queue is
138 * restarted when it drops below half full. The time this takes (assuming
139 * worst case 3 descriptors per packet and 1024 descriptors) is
140 * 512 / 3 * 1.2 = 205 usec.
141 */
142static unsigned int tx_irq_mod_usec = 150;
143
144/* This is the first interrupt mode to try out of:
145 * 0 => MSI-X
146 * 1 => MSI
147 * 2 => legacy
148 */
149static unsigned int interrupt_mode;
150
151/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
152 * i.e. the number of CPUs among which we may distribute simultaneous
153 * interrupt handling.
154 *
155 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
Ben Hutchingscdb08f82011-12-20 01:08:05 +0000156 * The default (0) means to assign an interrupt to each core.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100157 */
158static unsigned int rss_cpus;
159module_param(rss_cpus, uint, 0444);
160MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
161
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800162static int phy_flash_cfg;
163module_param(phy_flash_cfg, int, 0644);
164MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
165
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000166static unsigned irq_adapt_low_thresh = 10000;
167module_param(irq_adapt_low_thresh, uint, 0644);
168MODULE_PARM_DESC(irq_adapt_low_thresh,
169 "Threshold score for reducing IRQ moderation");
170
171static unsigned irq_adapt_high_thresh = 20000;
172module_param(irq_adapt_high_thresh, uint, 0644);
173MODULE_PARM_DESC(irq_adapt_high_thresh,
174 "Threshold score for increasing IRQ moderation");
175
Ben Hutchings62776d02010-06-23 11:30:07 +0000176static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
177 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
178 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
179 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
180module_param(debug, uint, 0);
181MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
182
Ben Hutchings8ceee662008-04-27 12:55:59 +0100183/**************************************************************************
184 *
185 * Utility functions and prototypes
186 *
187 *************************************************************************/
Ben Hutchings46426102010-09-10 06:42:33 +0000188
189static void efx_remove_channels(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100190static void efx_remove_port(struct efx_nic *efx);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000191static void efx_init_napi(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100192static void efx_fini_napi(struct efx_nic *efx);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000193static void efx_fini_napi_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000194static void efx_fini_struct(struct efx_nic *efx);
195static void efx_start_all(struct efx_nic *efx);
196static void efx_stop_all(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100197
198#define EFX_ASSERT_RESET_SERIALISED(efx) \
199 do { \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000200 if ((efx->state == STATE_RUNNING) || \
201 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100202 ASSERT_RTNL(); \
203 } while (0)
204
205/**************************************************************************
206 *
207 * Event queue processing
208 *
209 *************************************************************************/
210
211/* Process channel's event queue
212 *
213 * This function is responsible for processing the event queue of a
214 * single channel. The caller must guarantee that this function will
215 * never be concurrently called more than once on the same channel,
216 * though different channels may be being processed concurrently.
217 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000218static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100219{
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100220 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000221 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100222
Ben Hutchingsa7d529a2011-06-24 20:46:31 +0100223 if (unlikely(efx->reset_pending || !channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100224 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100225
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000226 spent = efx_nic_process_eventq(channel, budget);
Ben Hutchingsd9ab7002012-02-13 23:29:16 +0000227 if (spent && efx_channel_has_rx_queue(channel)) {
228 struct efx_rx_queue *rx_queue =
229 efx_channel_get_rx_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100230
Ben Hutchingsd9ab7002012-02-13 23:29:16 +0000231 /* Deliver last RX packet. */
232 if (channel->rx_pkt) {
233 __efx_rx_packet(channel, channel->rx_pkt);
234 channel->rx_pkt = NULL;
235 }
236
237 efx_rx_strategy(channel);
238 efx_fast_push_rx_descriptors(rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100239 }
240
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000241 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100242}
243
244/* Mark channel as finished processing
245 *
246 * Note that since we will not receive further interrupts for this
247 * channel before we finish processing and call the eventq_read_ack()
248 * method, there is no need to use the interrupt hold-off timers.
249 */
250static inline void efx_channel_processed(struct efx_channel *channel)
251{
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100252 /* The interrupt handler for this channel may set work_pending
253 * as soon as we acknowledge the events we've seen. Make sure
254 * it's cleared before then. */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100255 channel->work_pending = false;
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100256 smp_wmb();
257
Ben Hutchings152b6a62009-11-29 03:43:56 +0000258 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100259}
260
261/* NAPI poll handler
262 *
263 * NAPI guarantees serialisation of polls of the same device, which
264 * provides the guarantee required by efx_process_channel().
265 */
266static int efx_poll(struct napi_struct *napi, int budget)
267{
268 struct efx_channel *channel =
269 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000270 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000271 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100272
Ben Hutchings62776d02010-06-23 11:30:07 +0000273 netif_vdbg(efx, intr, efx->net_dev,
274 "channel %d NAPI poll executing on CPU %d\n",
275 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100276
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000277 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100278
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000279 if (spent < budget) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000280 if (channel->channel < efx->n_rx_channels &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000281 efx->irq_rx_adaptive &&
282 unlikely(++channel->irq_count == 1000)) {
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000283 if (unlikely(channel->irq_mod_score <
284 irq_adapt_low_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000285 if (channel->irq_moderation > 1) {
286 channel->irq_moderation -= 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000287 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000288 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000289 } else if (unlikely(channel->irq_mod_score >
290 irq_adapt_high_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000291 if (channel->irq_moderation <
292 efx->irq_rx_moderation) {
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 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000297 channel->irq_count = 0;
298 channel->irq_mod_score = 0;
299 }
300
Ben Hutchings64d8ad62011-01-05 00:50:41 +0000301 efx_filter_rfs_expire(channel);
302
Ben Hutchings8ceee662008-04-27 12:55:59 +0100303 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800304 * only wait for napi_complete(), this isn't a problem
Ben Hutchings8ceee662008-04-27 12:55:59 +0100305 * since efx_channel_processed() will have no effect if
306 * interrupts have already been disabled.
307 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800308 napi_complete(napi);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100309 efx_channel_processed(channel);
310 }
311
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000312 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100313}
314
315/* Process the eventq of the specified channel immediately on this CPU
316 *
317 * Disable hardware generated interrupts, wait for any existing
318 * processing to finish, then directly poll (and ack ) the eventq.
319 * Finally reenable NAPI and interrupts.
320 *
Ben Hutchingsd4fabcc2011-04-04 14:22:11 +0100321 * This is for use only during a loopback self-test. It must not
322 * deliver any packets up the stack as this can result in deadlock.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100323 */
324void efx_process_channel_now(struct efx_channel *channel)
325{
326 struct efx_nic *efx = channel->efx;
327
Ben Hutchings8313aca2010-09-10 06:41:57 +0000328 BUG_ON(channel->channel >= efx->n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100329 BUG_ON(!channel->enabled);
Ben Hutchingsd4fabcc2011-04-04 14:22:11 +0100330 BUG_ON(!efx->loopback_selftest);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100331
332 /* Disable interrupts and wait for ISRs to complete */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000333 efx_nic_disable_interrupts(efx);
Ben Hutchings94dec6a2010-12-07 19:24:45 +0000334 if (efx->legacy_irq) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100335 synchronize_irq(efx->legacy_irq);
Ben Hutchings94dec6a2010-12-07 19:24:45 +0000336 efx->legacy_irq_enabled = false;
337 }
Ben Hutchings64ee3122008-09-01 12:47:38 +0100338 if (channel->irq)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100339 synchronize_irq(channel->irq);
340
341 /* Wait for any NAPI processing to complete */
342 napi_disable(&channel->napi_str);
343
344 /* Poll the channel */
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000345 efx_process_channel(channel, channel->eventq_mask + 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100346
347 /* Ack the eventq. This may cause an interrupt to be generated
348 * when they are reenabled */
349 efx_channel_processed(channel);
350
351 napi_enable(&channel->napi_str);
Ben Hutchings94dec6a2010-12-07 19:24:45 +0000352 if (efx->legacy_irq)
353 efx->legacy_irq_enabled = true;
Ben Hutchings152b6a62009-11-29 03:43:56 +0000354 efx_nic_enable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100355}
356
357/* Create event queue
358 * Event queue memory allocations are done only once. If the channel
359 * is reset, the memory buffer will be reused; this guards against
360 * errors during channel reset and also simplifies interrupt handling.
361 */
362static int efx_probe_eventq(struct efx_channel *channel)
363{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000364 struct efx_nic *efx = channel->efx;
365 unsigned long entries;
366
Ben Hutchings86ee5302012-01-09 19:51:22 +0000367 netif_dbg(efx, probe, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000368 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100369
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000370 /* Build an event queue with room for one event per tx and rx buffer,
371 * plus some extra for link state events and MCDI completions. */
372 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
373 EFX_BUG_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
374 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
375
Ben Hutchings152b6a62009-11-29 03:43:56 +0000376 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100377}
378
379/* Prepare channel's event queue */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100380static void efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100381{
Ben Hutchings62776d02010-06-23 11:30:07 +0000382 netif_dbg(channel->efx, drv, channel->efx->net_dev,
383 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100384
385 channel->eventq_read_ptr = 0;
386
Ben Hutchings152b6a62009-11-29 03:43:56 +0000387 efx_nic_init_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100388}
389
390static void efx_fini_eventq(struct efx_channel *channel)
391{
Ben Hutchings62776d02010-06-23 11:30:07 +0000392 netif_dbg(channel->efx, drv, channel->efx->net_dev,
393 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100394
Ben Hutchings152b6a62009-11-29 03:43:56 +0000395 efx_nic_fini_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100396}
397
398static void efx_remove_eventq(struct efx_channel *channel)
399{
Ben Hutchings62776d02010-06-23 11:30:07 +0000400 netif_dbg(channel->efx, drv, channel->efx->net_dev,
401 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100402
Ben Hutchings152b6a62009-11-29 03:43:56 +0000403 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100404}
405
406/**************************************************************************
407 *
408 * Channel handling
409 *
410 *************************************************************************/
411
Ben Hutchings46426102010-09-10 06:42:33 +0000412/* Allocate and initialise a channel structure, optionally copying
413 * parameters (but not resources) from an old channel structure. */
414static struct efx_channel *
415efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
416{
417 struct efx_channel *channel;
418 struct efx_rx_queue *rx_queue;
419 struct efx_tx_queue *tx_queue;
420 int j;
421
422 if (old_channel) {
423 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
424 if (!channel)
425 return NULL;
426
427 *channel = *old_channel;
428
Ben Hutchingse8f14992010-12-07 19:47:34 +0000429 channel->napi_dev = NULL;
Ben Hutchings46426102010-09-10 06:42:33 +0000430 memset(&channel->eventq, 0, sizeof(channel->eventq));
431
432 rx_queue = &channel->rx_queue;
433 rx_queue->buffer = NULL;
434 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
435
436 for (j = 0; j < EFX_TXQ_TYPES; j++) {
437 tx_queue = &channel->tx_queue[j];
438 if (tx_queue->channel)
439 tx_queue->channel = channel;
440 tx_queue->buffer = NULL;
441 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
442 }
443 } else {
444 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
445 if (!channel)
446 return NULL;
447
448 channel->efx = efx;
449 channel->channel = i;
450
451 for (j = 0; j < EFX_TXQ_TYPES; j++) {
452 tx_queue = &channel->tx_queue[j];
453 tx_queue->efx = efx;
454 tx_queue->queue = i * EFX_TXQ_TYPES + j;
455 tx_queue->channel = channel;
456 }
457 }
458
Ben Hutchings46426102010-09-10 06:42:33 +0000459 rx_queue = &channel->rx_queue;
460 rx_queue->efx = efx;
461 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
462 (unsigned long)rx_queue);
463
464 return channel;
465}
466
Ben Hutchings8ceee662008-04-27 12:55:59 +0100467static int efx_probe_channel(struct efx_channel *channel)
468{
469 struct efx_tx_queue *tx_queue;
470 struct efx_rx_queue *rx_queue;
471 int rc;
472
Ben Hutchings62776d02010-06-23 11:30:07 +0000473 netif_dbg(channel->efx, probe, channel->efx->net_dev,
474 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100475
476 rc = efx_probe_eventq(channel);
477 if (rc)
478 goto fail1;
479
480 efx_for_each_channel_tx_queue(tx_queue, channel) {
481 rc = efx_probe_tx_queue(tx_queue);
482 if (rc)
483 goto fail2;
484 }
485
486 efx_for_each_channel_rx_queue(rx_queue, channel) {
487 rc = efx_probe_rx_queue(rx_queue);
488 if (rc)
489 goto fail3;
490 }
491
492 channel->n_rx_frm_trunc = 0;
493
494 return 0;
495
496 fail3:
497 efx_for_each_channel_rx_queue(rx_queue, channel)
498 efx_remove_rx_queue(rx_queue);
499 fail2:
500 efx_for_each_channel_tx_queue(tx_queue, channel)
501 efx_remove_tx_queue(tx_queue);
502 fail1:
503 return rc;
504}
505
506
Ben Hutchings56536e92008-12-12 21:37:02 -0800507static void efx_set_channel_names(struct efx_nic *efx)
508{
509 struct efx_channel *channel;
510 const char *type = "";
511 int number;
512
513 efx_for_each_channel(channel, efx) {
514 number = channel->channel;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000515 if (efx->n_channels > efx->n_rx_channels) {
516 if (channel->channel < efx->n_rx_channels) {
Ben Hutchings56536e92008-12-12 21:37:02 -0800517 type = "-rx";
518 } else {
519 type = "-tx";
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000520 number -= efx->n_rx_channels;
Ben Hutchings56536e92008-12-12 21:37:02 -0800521 }
522 }
Ben Hutchings46426102010-09-10 06:42:33 +0000523 snprintf(efx->channel_name[channel->channel],
524 sizeof(efx->channel_name[0]),
Ben Hutchings56536e92008-12-12 21:37:02 -0800525 "%s%s-%d", efx->name, type, number);
526 }
527}
528
Ben Hutchings46426102010-09-10 06:42:33 +0000529static int efx_probe_channels(struct efx_nic *efx)
530{
531 struct efx_channel *channel;
532 int rc;
533
534 /* Restart special buffer allocation */
535 efx->next_buffer_table = 0;
536
537 efx_for_each_channel(channel, efx) {
538 rc = efx_probe_channel(channel);
539 if (rc) {
540 netif_err(efx, probe, efx->net_dev,
541 "failed to create channel %d\n",
542 channel->channel);
543 goto fail;
544 }
545 }
546 efx_set_channel_names(efx);
547
548 return 0;
549
550fail:
551 efx_remove_channels(efx);
552 return rc;
553}
554
Ben Hutchings8ceee662008-04-27 12:55:59 +0100555/* Channels are shutdown and reinitialised whilst the NIC is running
556 * to propagate configuration changes (mtu, checksum offload), or
557 * to clear hardware error conditions
558 */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100559static void efx_init_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100560{
561 struct efx_tx_queue *tx_queue;
562 struct efx_rx_queue *rx_queue;
563 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100564
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100565 /* Calculate the rx buffer allocation parameters required to
566 * support the current MTU, including padding for header
567 * alignment and overruns.
568 */
569 efx->rx_buffer_len = (max(EFX_PAGE_IP_ALIGN, NET_IP_ALIGN) +
570 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
Ben Hutchings39c9cf02010-06-23 11:31:28 +0000571 efx->type->rx_buffer_hash_size +
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100572 efx->type->rx_buffer_padding);
Steve Hodgson62b330b2010-06-01 11:20:53 +0000573 efx->rx_buffer_order = get_order(efx->rx_buffer_len +
574 sizeof(struct efx_rx_page_state));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100575
576 /* Initialise the channels */
577 efx_for_each_channel(channel, efx) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000578 netif_dbg(channel->efx, drv, channel->efx->net_dev,
579 "init chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100580
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100581 efx_init_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100582
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100583 efx_for_each_channel_tx_queue(tx_queue, channel)
584 efx_init_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100585
586 /* The rx buffer allocation strategy is MTU dependent */
587 efx_rx_strategy(channel);
588
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100589 efx_for_each_channel_rx_queue(rx_queue, channel)
590 efx_init_rx_queue(rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100591
592 WARN_ON(channel->rx_pkt != NULL);
593 efx_rx_strategy(channel);
594 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100595}
596
597/* This enables event queue processing and packet transmission.
598 *
599 * Note that this function is not allowed to fail, since that would
600 * introduce too much complexity into the suspend/resume path.
601 */
602static void efx_start_channel(struct efx_channel *channel)
603{
604 struct efx_rx_queue *rx_queue;
605
Ben Hutchings62776d02010-06-23 11:30:07 +0000606 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
607 "starting chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100608
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100609 /* The interrupt handler for this channel may set work_pending
610 * as soon as we enable it. Make sure it's cleared before
611 * then. Similarly, make sure it sees the enabled flag set. */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100612 channel->work_pending = false;
613 channel->enabled = true;
Ben Hutchings5b9e2072008-05-16 21:18:14 +0100614 smp_wmb();
Ben Hutchings8ceee662008-04-27 12:55:59 +0100615
Steve Hodgson90d683a2010-06-01 11:19:39 +0000616 /* Fill the queues before enabling NAPI */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100617 efx_for_each_channel_rx_queue(rx_queue, channel)
618 efx_fast_push_rx_descriptors(rx_queue);
Steve Hodgson90d683a2010-06-01 11:19:39 +0000619
620 napi_enable(&channel->napi_str);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100621}
622
623/* This disables event queue processing and packet transmission.
624 * This function does not guarantee that all queue processing
625 * (e.g. RX refill) is complete.
626 */
627static void efx_stop_channel(struct efx_channel *channel)
628{
Ben Hutchings8ceee662008-04-27 12:55:59 +0100629 if (!channel->enabled)
630 return;
631
Ben Hutchings62776d02010-06-23 11:30:07 +0000632 netif_dbg(channel->efx, ifdown, channel->efx->net_dev,
633 "stop chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100634
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100635 channel->enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100636 napi_disable(&channel->napi_str);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100637}
638
639static void efx_fini_channels(struct efx_nic *efx)
640{
641 struct efx_channel *channel;
642 struct efx_tx_queue *tx_queue;
643 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100644 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100645
646 EFX_ASSERT_RESET_SERIALISED(efx);
647 BUG_ON(efx->port_enabled);
648
Ben Hutchings152b6a62009-11-29 03:43:56 +0000649 rc = efx_nic_flush_queues(efx);
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000650 if (rc && EFX_WORKAROUND_7803(efx)) {
651 /* Schedule a reset to recover from the flush failure. The
652 * descriptor caches reference memory we're about to free,
653 * but falcon_reconfigure_mac_wrapper() won't reconnect
654 * the MACs because of the pending reset. */
Ben Hutchings62776d02010-06-23 11:30:07 +0000655 netif_err(efx, drv, efx->net_dev,
656 "Resetting to recover from flush failure\n");
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000657 efx_schedule_reset(efx, RESET_TYPE_ALL);
658 } else if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000659 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000660 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000661 netif_dbg(efx, drv, efx->net_dev,
662 "successfully flushed all queues\n");
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000663 }
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100664
Ben Hutchings8ceee662008-04-27 12:55:59 +0100665 efx_for_each_channel(channel, efx) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000666 netif_dbg(channel->efx, drv, channel->efx->net_dev,
667 "shut down chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100668
669 efx_for_each_channel_rx_queue(rx_queue, channel)
670 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000671 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100672 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100673 efx_fini_eventq(channel);
674 }
675}
676
677static void efx_remove_channel(struct efx_channel *channel)
678{
679 struct efx_tx_queue *tx_queue;
680 struct efx_rx_queue *rx_queue;
681
Ben Hutchings62776d02010-06-23 11:30:07 +0000682 netif_dbg(channel->efx, drv, channel->efx->net_dev,
683 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100684
685 efx_for_each_channel_rx_queue(rx_queue, channel)
686 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000687 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100688 efx_remove_tx_queue(tx_queue);
689 efx_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100690}
691
Ben Hutchings46426102010-09-10 06:42:33 +0000692static void efx_remove_channels(struct efx_nic *efx)
693{
694 struct efx_channel *channel;
695
696 efx_for_each_channel(channel, efx)
697 efx_remove_channel(channel);
698}
699
700int
701efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
702{
703 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
704 u32 old_rxq_entries, old_txq_entries;
705 unsigned i;
706 int rc;
707
708 efx_stop_all(efx);
709 efx_fini_channels(efx);
710
711 /* Clone channels */
712 memset(other_channel, 0, sizeof(other_channel));
713 for (i = 0; i < efx->n_channels; i++) {
714 channel = efx_alloc_channel(efx, i, efx->channel[i]);
715 if (!channel) {
716 rc = -ENOMEM;
717 goto out;
718 }
719 other_channel[i] = channel;
720 }
721
722 /* Swap entry counts and channel pointers */
723 old_rxq_entries = efx->rxq_entries;
724 old_txq_entries = efx->txq_entries;
725 efx->rxq_entries = rxq_entries;
726 efx->txq_entries = txq_entries;
727 for (i = 0; i < efx->n_channels; i++) {
728 channel = efx->channel[i];
729 efx->channel[i] = other_channel[i];
730 other_channel[i] = channel;
731 }
732
733 rc = efx_probe_channels(efx);
734 if (rc)
735 goto rollback;
736
Ben Hutchingse8f14992010-12-07 19:47:34 +0000737 efx_init_napi(efx);
738
Ben Hutchings46426102010-09-10 06:42:33 +0000739 /* Destroy old channels */
Ben Hutchingse8f14992010-12-07 19:47:34 +0000740 for (i = 0; i < efx->n_channels; i++) {
741 efx_fini_napi_channel(other_channel[i]);
Ben Hutchings46426102010-09-10 06:42:33 +0000742 efx_remove_channel(other_channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000743 }
Ben Hutchings46426102010-09-10 06:42:33 +0000744out:
745 /* Free unused channel structures */
746 for (i = 0; i < efx->n_channels; i++)
747 kfree(other_channel[i]);
748
749 efx_init_channels(efx);
750 efx_start_all(efx);
751 return rc;
752
753rollback:
754 /* Swap back */
755 efx->rxq_entries = old_rxq_entries;
756 efx->txq_entries = old_txq_entries;
757 for (i = 0; i < efx->n_channels; i++) {
758 channel = efx->channel[i];
759 efx->channel[i] = other_channel[i];
760 other_channel[i] = channel;
761 }
762 goto out;
763}
764
Steve Hodgson90d683a2010-06-01 11:19:39 +0000765void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100766{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000767 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100768}
769
770/**************************************************************************
771 *
772 * Port handling
773 *
774 **************************************************************************/
775
776/* This ensures that the kernel is kept informed (via
777 * netif_carrier_on/off) of the link status, and also maintains the
778 * link status's stop on the port's TX queue.
779 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000780void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100781{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000782 struct efx_link_state *link_state = &efx->link_state;
783
Ben Hutchings8ceee662008-04-27 12:55:59 +0100784 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
785 * that no events are triggered between unregister_netdev() and the
786 * driver unloading. A more general condition is that NETDEV_CHANGE
787 * can only be generated between NETDEV_UP and NETDEV_DOWN */
788 if (!netif_running(efx->net_dev))
789 return;
790
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000791 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100792 efx->n_link_state_changes++;
793
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000794 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100795 netif_carrier_on(efx->net_dev);
796 else
797 netif_carrier_off(efx->net_dev);
798 }
799
800 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000801 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000802 netif_info(efx, link, efx->net_dev,
803 "link up at %uMbps %s-duplex (MTU %d)%s\n",
804 link_state->speed, link_state->fd ? "full" : "half",
805 efx->net_dev->mtu,
806 (efx->promiscuous ? " [PROMISC]" : ""));
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000807 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000808 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100809}
810
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000811void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
812{
813 efx->link_advertising = advertising;
814 if (advertising) {
815 if (advertising & ADVERTISED_Pause)
816 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
817 else
818 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
819 if (advertising & ADVERTISED_Asym_Pause)
820 efx->wanted_fc ^= EFX_FC_TX;
821 }
822}
823
David S. Millerb56269462011-05-17 17:53:22 -0400824void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000825{
826 efx->wanted_fc = wanted_fc;
827 if (efx->link_advertising) {
828 if (wanted_fc & EFX_FC_RX)
829 efx->link_advertising |= (ADVERTISED_Pause |
830 ADVERTISED_Asym_Pause);
831 else
832 efx->link_advertising &= ~(ADVERTISED_Pause |
833 ADVERTISED_Asym_Pause);
834 if (wanted_fc & EFX_FC_TX)
835 efx->link_advertising ^= ADVERTISED_Asym_Pause;
836 }
837}
838
Ben Hutchings115122a2009-03-04 09:52:52 +0000839static void efx_fini_port(struct efx_nic *efx);
840
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000841/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
842 * the MAC appropriately. All other PHY configuration changes are pushed
843 * through phy_op->set_settings(), and pushed asynchronously to the MAC
844 * through efx_monitor().
845 *
846 * Callers must hold the mac_lock
847 */
848int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100849{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000850 enum efx_phy_mode phy_mode;
851 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100852
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000853 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100854
Ben Hutchings0fca8c92012-01-09 19:54:44 +0000855 /* Serialise the promiscuous flag with efx_set_rx_mode. */
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000856 netif_addr_lock_bh(efx->net_dev);
857 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchingsa816f752008-09-01 12:49:12 +0100858
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000859 /* Disable PHY transmit in mac level loopbacks */
860 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800861 if (LOOPBACK_INTERNAL(efx))
862 efx->phy_mode |= PHY_MODE_TX_DISABLED;
863 else
864 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800865
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000866 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800867
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000868 if (rc)
869 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100870
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000871 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100872}
873
874/* Reinitialise the MAC to pick up new PHY settings, even if the port is
875 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000876int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100877{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000878 int rc;
879
Ben Hutchings8ceee662008-04-27 12:55:59 +0100880 EFX_ASSERT_RESET_SERIALISED(efx);
881
882 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000883 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100884 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000885
886 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100887}
888
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000889/* Asynchronous work item for changing MAC promiscuity and multicast
890 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
891 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800892static void efx_mac_work(struct work_struct *data)
893{
894 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
895
896 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +0100897 if (efx->port_enabled)
Ben Hutchings710b2082011-09-03 00:15:00 +0100898 efx->type->reconfigure_mac(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800899 mutex_unlock(&efx->mac_lock);
900}
901
Ben Hutchings8ceee662008-04-27 12:55:59 +0100902static int efx_probe_port(struct efx_nic *efx)
903{
904 int rc;
905
Ben Hutchings62776d02010-06-23 11:30:07 +0000906 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100907
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000908 if (phy_flash_cfg)
909 efx->phy_mode = PHY_MODE_SPECIAL;
910
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000911 /* Connect up MAC/PHY operations table */
912 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100913 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +0000914 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100915
Ben Hutchingse332bcb2011-12-20 01:22:51 +0000916 /* Initialise MAC address to permanent address */
917 memcpy(efx->net_dev->dev_addr, efx->net_dev->perm_addr, ETH_ALEN);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100918
919 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100920}
921
922static int efx_init_port(struct efx_nic *efx)
923{
924 int rc;
925
Ben Hutchings62776d02010-06-23 11:30:07 +0000926 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100927
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000928 mutex_lock(&efx->mac_lock);
929
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800930 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100931 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000932 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100933
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100934 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000935
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000936 /* Reconfigure the MAC before creating dma queues (required for
937 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Ben Hutchings710b2082011-09-03 00:15:00 +0100938 efx->type->reconfigure_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000939
940 /* Ensure the PHY advertises the correct flow control settings */
941 rc = efx->phy_op->reconfigure(efx);
942 if (rc)
943 goto fail2;
944
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000945 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100946 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800947
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000948fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800949 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +0000950fail1:
951 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800952 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100953}
954
Ben Hutchings8ceee662008-04-27 12:55:59 +0100955static void efx_start_port(struct efx_nic *efx)
956{
Ben Hutchings62776d02010-06-23 11:30:07 +0000957 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100958 BUG_ON(efx->port_enabled);
959
960 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100961 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000962
963 /* efx_mac_work() might have been scheduled after efx_stop_port(),
964 * and then cancelled by efx_flush_all() */
Ben Hutchings710b2082011-09-03 00:15:00 +0100965 efx->type->reconfigure_mac(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000966
Ben Hutchings8ceee662008-04-27 12:55:59 +0100967 mutex_unlock(&efx->mac_lock);
968}
969
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000970/* Prevent efx_mac_work() and efx_monitor() from working */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100971static void efx_stop_port(struct efx_nic *efx)
972{
Ben Hutchings62776d02010-06-23 11:30:07 +0000973 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100974
975 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100976 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100977 mutex_unlock(&efx->mac_lock);
978
979 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000980 netif_addr_lock_bh(efx->net_dev);
981 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100982}
983
984static void efx_fini_port(struct efx_nic *efx)
985{
Ben Hutchings62776d02010-06-23 11:30:07 +0000986 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100987
988 if (!efx->port_initialized)
989 return;
990
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800991 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100992 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100993
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000994 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100995 efx_link_status_changed(efx);
996}
997
998static void efx_remove_port(struct efx_nic *efx)
999{
Ben Hutchings62776d02010-06-23 11:30:07 +00001000 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001001
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001002 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001003}
1004
1005/**************************************************************************
1006 *
1007 * NIC handling
1008 *
1009 **************************************************************************/
1010
1011/* This configures the PCI device to enable I/O and DMA. */
1012static int efx_init_io(struct efx_nic *efx)
1013{
1014 struct pci_dev *pci_dev = efx->pci_dev;
1015 dma_addr_t dma_mask = efx->type->max_dma_mask;
1016 int rc;
1017
Ben Hutchings62776d02010-06-23 11:30:07 +00001018 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001019
1020 rc = pci_enable_device(pci_dev);
1021 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001022 netif_err(efx, probe, efx->net_dev,
1023 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001024 goto fail1;
1025 }
1026
1027 pci_set_master(pci_dev);
1028
1029 /* Set the PCI DMA mask. Try all possibilities from our
1030 * genuine mask down to 32 bits, because some architectures
1031 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1032 * masks event though they reject 46 bit masks.
1033 */
1034 while (dma_mask > 0x7fffffffUL) {
Ben Hutchingse9e01842012-01-05 18:50:29 +00001035 if (pci_dma_supported(pci_dev, dma_mask)) {
1036 rc = pci_set_dma_mask(pci_dev, dma_mask);
1037 if (rc == 0)
1038 break;
1039 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001040 dma_mask >>= 1;
1041 }
1042 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001043 netif_err(efx, probe, efx->net_dev,
1044 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001045 goto fail2;
1046 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001047 netif_dbg(efx, probe, efx->net_dev,
1048 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001049 rc = pci_set_consistent_dma_mask(pci_dev, dma_mask);
1050 if (rc) {
1051 /* pci_set_consistent_dma_mask() is not *allowed* to
1052 * fail with a mask that pci_set_dma_mask() accepted,
1053 * but just in case...
1054 */
Ben Hutchings62776d02010-06-23 11:30:07 +00001055 netif_err(efx, probe, efx->net_dev,
1056 "failed to set consistent DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001057 goto fail2;
1058 }
1059
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001060 efx->membase_phys = pci_resource_start(efx->pci_dev, EFX_MEM_BAR);
1061 rc = pci_request_region(pci_dev, EFX_MEM_BAR, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001062 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001063 netif_err(efx, probe, efx->net_dev,
1064 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001065 rc = -EIO;
1066 goto fail3;
1067 }
David S. Miller8decf862011-09-22 03:23:13 -04001068 efx->membase = ioremap_nocache(efx->membase_phys,
1069 efx->type->mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001070 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001071 netif_err(efx, probe, efx->net_dev,
1072 "could not map memory BAR at %llx+%x\n",
1073 (unsigned long long)efx->membase_phys,
1074 efx->type->mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001075 rc = -ENOMEM;
1076 goto fail4;
1077 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001078 netif_dbg(efx, probe, efx->net_dev,
1079 "memory BAR at %llx+%x (virtual %p)\n",
1080 (unsigned long long)efx->membase_phys,
1081 efx->type->mem_map_size, efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001082
1083 return 0;
1084
1085 fail4:
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001086 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001087 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001088 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001089 fail2:
1090 pci_disable_device(efx->pci_dev);
1091 fail1:
1092 return rc;
1093}
1094
1095static void efx_fini_io(struct efx_nic *efx)
1096{
Ben Hutchings62776d02010-06-23 11:30:07 +00001097 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001098
1099 if (efx->membase) {
1100 iounmap(efx->membase);
1101 efx->membase = NULL;
1102 }
1103
1104 if (efx->membase_phys) {
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001105 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001106 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001107 }
1108
1109 pci_disable_device(efx->pci_dev);
1110}
1111
Ben Hutchingsfa142b92011-12-20 01:15:30 +00001112static int efx_wanted_parallelism(void)
Ben Hutchings46123d02008-09-01 12:47:33 +01001113{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001114 cpumask_var_t thread_mask;
Ben Hutchings46123d02008-09-01 12:47:33 +01001115 int count;
1116 int cpu;
1117
Ben Hutchings5b874e22011-01-12 19:11:05 +00001118 if (rss_cpus)
1119 return rss_cpus;
1120
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001121 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
Rusty Russell2f8975f2009-01-10 21:58:09 -08001122 printk(KERN_WARNING
Mike Travis3977d032009-05-12 10:48:36 +00001123 "sfc: RSS disabled due to allocation failure\n");
Rusty Russell2f8975f2009-01-10 21:58:09 -08001124 return 1;
1125 }
1126
Ben Hutchings46123d02008-09-01 12:47:33 +01001127 count = 0;
1128 for_each_online_cpu(cpu) {
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001129 if (!cpumask_test_cpu(cpu, thread_mask)) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001130 ++count;
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001131 cpumask_or(thread_mask, thread_mask,
1132 topology_thread_cpumask(cpu));
Ben Hutchings46123d02008-09-01 12:47:33 +01001133 }
1134 }
1135
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001136 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001137 return count;
1138}
1139
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001140static int
1141efx_init_rx_cpu_rmap(struct efx_nic *efx, struct msix_entry *xentries)
1142{
1143#ifdef CONFIG_RFS_ACCEL
1144 int i, rc;
1145
1146 efx->net_dev->rx_cpu_rmap = alloc_irq_cpu_rmap(efx->n_rx_channels);
1147 if (!efx->net_dev->rx_cpu_rmap)
1148 return -ENOMEM;
1149 for (i = 0; i < efx->n_rx_channels; i++) {
1150 rc = irq_cpu_rmap_add(efx->net_dev->rx_cpu_rmap,
1151 xentries[i].vector);
1152 if (rc) {
1153 free_irq_cpu_rmap(efx->net_dev->rx_cpu_rmap);
1154 efx->net_dev->rx_cpu_rmap = NULL;
1155 return rc;
1156 }
1157 }
1158#endif
1159 return 0;
1160}
1161
Ben Hutchings46123d02008-09-01 12:47:33 +01001162/* Probe the number and type of interrupts we are able to obtain, and
1163 * the resulting numbers of channels and RX queues.
1164 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001165static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001166{
Ben Hutchings46123d02008-09-01 12:47:33 +01001167 int max_channels =
1168 min_t(int, efx->type->phys_addr_channels, EFX_MAX_CHANNELS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001169 int rc, i;
1170
1171 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001172 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001173 int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001174
Ben Hutchingsfa142b92011-12-20 01:15:30 +00001175 n_channels = efx_wanted_parallelism();
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001176 if (separate_tx_channels)
1177 n_channels *= 2;
1178 n_channels = min(n_channels, max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001179
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001180 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001181 xentries[i].entry = i;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001182 rc = pci_enable_msix(efx->pci_dev, xentries, n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001183 if (rc > 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001184 netif_err(efx, drv, efx->net_dev,
1185 "WARNING: Insufficient MSI-X vectors"
1186 " available (%d < %d).\n", rc, n_channels);
1187 netif_err(efx, drv, efx->net_dev,
1188 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001189 EFX_BUG_ON_PARANOID(rc >= n_channels);
1190 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001191 rc = pci_enable_msix(efx->pci_dev, xentries,
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001192 n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001193 }
1194
1195 if (rc == 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001196 efx->n_channels = n_channels;
1197 if (separate_tx_channels) {
1198 efx->n_tx_channels =
1199 max(efx->n_channels / 2, 1U);
1200 efx->n_rx_channels =
1201 max(efx->n_channels -
1202 efx->n_tx_channels, 1U);
1203 } else {
1204 efx->n_tx_channels = efx->n_channels;
1205 efx->n_rx_channels = efx->n_channels;
1206 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001207 rc = efx_init_rx_cpu_rmap(efx, xentries);
1208 if (rc) {
1209 pci_disable_msix(efx->pci_dev);
1210 return rc;
1211 }
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001212 for (i = 0; i < n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001213 efx_get_channel(efx, i)->irq =
1214 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001215 } else {
1216 /* Fall back to single channel MSI */
1217 efx->interrupt_mode = EFX_INT_MODE_MSI;
Ben Hutchings62776d02010-06-23 11:30:07 +00001218 netif_err(efx, drv, efx->net_dev,
1219 "could not enable MSI-X\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001220 }
1221 }
1222
1223 /* Try single interrupt MSI */
1224 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001225 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001226 efx->n_rx_channels = 1;
1227 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001228 rc = pci_enable_msi(efx->pci_dev);
1229 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001230 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001231 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001232 netif_err(efx, drv, efx->net_dev,
1233 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001234 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1235 }
1236 }
1237
1238 /* Assume legacy interrupts */
1239 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Neil Turton28b581a2008-12-12 21:41:06 -08001240 efx->n_channels = 1 + (separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001241 efx->n_rx_channels = 1;
1242 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001243 efx->legacy_irq = efx->pci_dev->irq;
1244 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001245
1246 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001247}
1248
1249static void efx_remove_interrupts(struct efx_nic *efx)
1250{
1251 struct efx_channel *channel;
1252
1253 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001254 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001255 channel->irq = 0;
1256 pci_disable_msi(efx->pci_dev);
1257 pci_disable_msix(efx->pci_dev);
1258
1259 /* Remove legacy interrupt */
1260 efx->legacy_irq = 0;
1261}
1262
Ben Hutchings8831da72008-09-01 12:47:48 +01001263static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001264{
Ben Hutchings602a5322011-05-16 17:32:39 +01001265 struct efx_channel *channel;
1266 struct efx_tx_queue *tx_queue;
1267
Ben Hutchings97653432011-01-12 18:26:56 +00001268 efx->tx_channel_offset =
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001269 separate_tx_channels ? efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001270
1271 /* We need to adjust the TX queue numbers if we have separate
1272 * RX-only and TX-only channels.
1273 */
1274 efx_for_each_channel(channel, efx) {
1275 efx_for_each_channel_tx_queue(tx_queue, channel)
1276 tx_queue->queue -= (efx->tx_channel_offset *
1277 EFX_TXQ_TYPES);
1278 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001279}
1280
1281static int efx_probe_nic(struct efx_nic *efx)
1282{
Ben Hutchings765c9f42010-06-30 05:06:28 +00001283 size_t i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001284 int rc;
1285
Ben Hutchings62776d02010-06-23 11:30:07 +00001286 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001287
1288 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001289 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001290 if (rc)
1291 return rc;
1292
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001293 /* Determine the number of channels and queues by trying to hook
Ben Hutchings8ceee662008-04-27 12:55:59 +01001294 * in MSI-X interrupts. */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001295 rc = efx_probe_interrupts(efx);
1296 if (rc)
1297 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001298
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001299 if (efx->n_channels > 1)
1300 get_random_bytes(&efx->rx_hash_key, sizeof(efx->rx_hash_key));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001301 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
Ben Hutchings278bc422011-12-15 13:56:49 +00001302 efx->rx_indir_table[i] =
1303 ethtool_rxfh_indir_default(i, efx->n_rx_channels);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001304
Ben Hutchings8831da72008-09-01 12:47:48 +01001305 efx_set_channels(efx);
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001306 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1307 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001308
1309 /* Initialise the interrupt moderation settings */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001310 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1311 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001312
1313 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001314
1315fail:
1316 efx->type->remove(efx);
1317 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001318}
1319
1320static void efx_remove_nic(struct efx_nic *efx)
1321{
Ben Hutchings62776d02010-06-23 11:30:07 +00001322 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001323
1324 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001325 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001326}
1327
1328/**************************************************************************
1329 *
1330 * NIC startup/shutdown
1331 *
1332 *************************************************************************/
1333
1334static int efx_probe_all(struct efx_nic *efx)
1335{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001336 int rc;
1337
Ben Hutchings8ceee662008-04-27 12:55:59 +01001338 rc = efx_probe_nic(efx);
1339 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001340 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001341 goto fail1;
1342 }
1343
Ben Hutchings8ceee662008-04-27 12:55:59 +01001344 rc = efx_probe_port(efx);
1345 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001346 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001347 goto fail2;
1348 }
1349
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001350 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings46426102010-09-10 06:42:33 +00001351 rc = efx_probe_channels(efx);
1352 if (rc)
1353 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001354
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001355 rc = efx_probe_filters(efx);
1356 if (rc) {
1357 netif_err(efx, probe, efx->net_dev,
1358 "failed to create filter tables\n");
1359 goto fail4;
1360 }
1361
Ben Hutchings8ceee662008-04-27 12:55:59 +01001362 return 0;
1363
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001364 fail4:
1365 efx_remove_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001366 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001367 efx_remove_port(efx);
1368 fail2:
1369 efx_remove_nic(efx);
1370 fail1:
1371 return rc;
1372}
1373
1374/* Called after previous invocation(s) of efx_stop_all, restarts the
1375 * port, kernel transmit queue, NAPI processing and hardware interrupts,
1376 * and ensures that the port is scheduled to be reconfigured.
1377 * This function is safe to call multiple times when the NIC is in any
1378 * state. */
1379static void efx_start_all(struct efx_nic *efx)
1380{
1381 struct efx_channel *channel;
1382
1383 EFX_ASSERT_RESET_SERIALISED(efx);
1384
1385 /* Check that it is appropriate to restart the interface. All
1386 * of these flags are safe to read under just the rtnl lock */
1387 if (efx->port_enabled)
1388 return;
1389 if ((efx->state != STATE_RUNNING) && (efx->state != STATE_INIT))
1390 return;
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001391 if (!netif_running(efx->net_dev))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001392 return;
1393
1394 /* Mark the port as enabled so port reconfigurations can start, then
1395 * restart the transmit interface early so the watchdog timer stops */
1396 efx_start_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001397
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001398 if (netif_device_present(efx->net_dev))
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00001399 netif_tx_wake_all_queues(efx->net_dev);
1400
1401 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001402 efx_start_channel(channel);
1403
Ben Hutchings94dec6a2010-12-07 19:24:45 +00001404 if (efx->legacy_irq)
1405 efx->legacy_irq_enabled = true;
Ben Hutchings152b6a62009-11-29 03:43:56 +00001406 efx_nic_enable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001407
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001408 /* Switch to event based MCDI completions after enabling interrupts.
1409 * If a reset has been scheduled, then we need to stay in polled mode.
1410 * Rather than serialising efx_mcdi_mode_event() [which sleeps] and
1411 * reset_pending [modified from an atomic context], we instead guarantee
1412 * that efx_mcdi_mode_poll() isn't reverted erroneously */
1413 efx_mcdi_mode_event(efx);
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01001414 if (efx->reset_pending)
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001415 efx_mcdi_mode_poll(efx);
1416
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001417 /* Start the hardware monitor if there is one. Otherwise (we're link
1418 * event driven), we have to poll the PHY because after an event queue
1419 * flush, we could have a missed a link state change */
1420 if (efx->type->monitor != NULL) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001421 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1422 efx_monitor_interval);
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001423 } else {
1424 mutex_lock(&efx->mac_lock);
1425 if (efx->phy_op->poll(efx))
1426 efx_link_status_changed(efx);
1427 mutex_unlock(&efx->mac_lock);
1428 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001429
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001430 efx->type->start_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001431}
1432
1433/* Flush all delayed work. Should only be called when no more delayed work
1434 * will be scheduled. This doesn't flush pending online resets (efx_reset),
1435 * since we're holding the rtnl_lock at this point. */
1436static void efx_flush_all(struct efx_nic *efx)
1437{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001438 /* Make sure the hardware monitor is stopped */
1439 cancel_delayed_work_sync(&efx->monitor_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001440 /* Stop scheduled port reconfigurations */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001441 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001442}
1443
1444/* Quiesce hardware and software without bringing the link down.
1445 * Safe to call multiple times, when the nic and interface is in any
1446 * state. The caller is guaranteed to subsequently be in a position
1447 * to modify any hardware and software state they see fit without
1448 * taking locks. */
1449static void efx_stop_all(struct efx_nic *efx)
1450{
1451 struct efx_channel *channel;
1452
1453 EFX_ASSERT_RESET_SERIALISED(efx);
1454
1455 /* port_enabled can be read safely under the rtnl lock */
1456 if (!efx->port_enabled)
1457 return;
1458
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001459 efx->type->stop_stats(efx);
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001460
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001461 /* Switch to MCDI polling on Siena before disabling interrupts */
1462 efx_mcdi_mode_poll(efx);
1463
Ben Hutchings8ceee662008-04-27 12:55:59 +01001464 /* Disable interrupts and wait for ISR to complete */
Ben Hutchings152b6a62009-11-29 03:43:56 +00001465 efx_nic_disable_interrupts(efx);
Ben Hutchings94dec6a2010-12-07 19:24:45 +00001466 if (efx->legacy_irq) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001467 synchronize_irq(efx->legacy_irq);
Ben Hutchings94dec6a2010-12-07 19:24:45 +00001468 efx->legacy_irq_enabled = false;
1469 }
Ben Hutchings64ee3122008-09-01 12:47:38 +01001470 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001471 if (channel->irq)
1472 synchronize_irq(channel->irq);
Ben Hutchingsb3475642008-05-16 21:15:49 +01001473 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001474
1475 /* Stop all NAPI processing and synchronous rx refills */
1476 efx_for_each_channel(channel, efx)
1477 efx_stop_channel(channel);
1478
1479 /* Stop all asynchronous port reconfigurations. Since all
1480 * event processing has already been stopped, there is no
1481 * window to loose phy events */
1482 efx_stop_port(efx);
1483
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00001484 /* Flush efx_mac_work(), refill_workqueue, monitor_work */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001485 efx_flush_all(efx);
1486
Ben Hutchings8ceee662008-04-27 12:55:59 +01001487 /* Stop the kernel transmit interface late, so the watchdog
1488 * timer isn't ticking over the flush */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001489 netif_tx_stop_all_queues(efx->net_dev);
1490 netif_tx_lock_bh(efx->net_dev);
1491 netif_tx_unlock_bh(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001492}
1493
1494static void efx_remove_all(struct efx_nic *efx)
1495{
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001496 efx_remove_filters(efx);
Ben Hutchings46426102010-09-10 06:42:33 +00001497 efx_remove_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001498 efx_remove_port(efx);
1499 efx_remove_nic(efx);
1500}
1501
Ben Hutchings8ceee662008-04-27 12:55:59 +01001502/**************************************************************************
1503 *
1504 * Interrupt moderation
1505 *
1506 **************************************************************************/
1507
Ben Hutchingscc180b62011-12-08 19:51:47 +00001508static unsigned int irq_mod_ticks(unsigned int usecs, unsigned int quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001509{
Ben Hutchingsb548f972011-09-05 07:41:44 +00001510 if (usecs == 0)
1511 return 0;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001512 if (usecs * 1000 < quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001513 return 1; /* never round down to 0 */
Ben Hutchingscc180b62011-12-08 19:51:47 +00001514 return usecs * 1000 / quantum_ns;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001515}
1516
Ben Hutchings8ceee662008-04-27 12:55:59 +01001517/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001518int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1519 unsigned int rx_usecs, bool rx_adaptive,
1520 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001521{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001522 struct efx_channel *channel;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001523 unsigned int irq_mod_max = DIV_ROUND_UP(efx->type->timer_period_max *
1524 efx->timer_quantum_ns,
1525 1000);
1526 unsigned int tx_ticks;
1527 unsigned int rx_ticks;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001528
1529 EFX_ASSERT_RESET_SERIALISED(efx);
1530
Ben Hutchingscc180b62011-12-08 19:51:47 +00001531 if (tx_usecs > irq_mod_max || rx_usecs > irq_mod_max)
Ben Hutchings9e393b32011-09-05 07:43:04 +00001532 return -EINVAL;
1533
Ben Hutchingscc180b62011-12-08 19:51:47 +00001534 tx_ticks = irq_mod_ticks(tx_usecs, efx->timer_quantum_ns);
1535 rx_ticks = irq_mod_ticks(rx_usecs, efx->timer_quantum_ns);
1536
Ben Hutchings9e393b32011-09-05 07:43:04 +00001537 if (tx_ticks != rx_ticks && efx->tx_channel_offset == 0 &&
1538 !rx_may_override_tx) {
1539 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1540 "RX and TX IRQ moderation must be equal\n");
1541 return -EINVAL;
1542 }
1543
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001544 efx->irq_rx_adaptive = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001545 efx->irq_rx_moderation = rx_ticks;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001546 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00001547 if (efx_channel_has_rx_queue(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001548 channel->irq_moderation = rx_ticks;
Ben Hutchings525da902011-02-07 23:04:38 +00001549 else if (efx_channel_has_tx_queues(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001550 channel->irq_moderation = tx_ticks;
1551 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00001552
1553 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001554}
1555
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001556void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
1557 unsigned int *rx_usecs, bool *rx_adaptive)
1558{
Ben Hutchingscc180b62011-12-08 19:51:47 +00001559 /* We must round up when converting ticks to microseconds
1560 * because we round down when converting the other way.
1561 */
1562
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001563 *rx_adaptive = efx->irq_rx_adaptive;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001564 *rx_usecs = DIV_ROUND_UP(efx->irq_rx_moderation *
1565 efx->timer_quantum_ns,
1566 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001567
1568 /* If channels are shared between RX and TX, so is IRQ
1569 * moderation. Otherwise, IRQ moderation is the same for all
1570 * TX channels and is not adaptive.
1571 */
1572 if (efx->tx_channel_offset == 0)
1573 *tx_usecs = *rx_usecs;
1574 else
Ben Hutchingscc180b62011-12-08 19:51:47 +00001575 *tx_usecs = DIV_ROUND_UP(
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001576 efx->channel[efx->tx_channel_offset]->irq_moderation *
Ben Hutchingscc180b62011-12-08 19:51:47 +00001577 efx->timer_quantum_ns,
1578 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001579}
1580
Ben Hutchings8ceee662008-04-27 12:55:59 +01001581/**************************************************************************
1582 *
1583 * Hardware monitor
1584 *
1585 **************************************************************************/
1586
Ben Hutchingse254c272010-09-20 08:44:10 +00001587/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001588static void efx_monitor(struct work_struct *data)
1589{
1590 struct efx_nic *efx = container_of(data, struct efx_nic,
1591 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001592
Ben Hutchings62776d02010-06-23 11:30:07 +00001593 netif_vdbg(efx, timer, efx->net_dev,
1594 "hardware monitor executing on CPU %d\n",
1595 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001596 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001597
Ben Hutchings8ceee662008-04-27 12:55:59 +01001598 /* If the mac_lock is already held then it is likely a port
1599 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00001600 * most of the work of monitor() anyway. */
1601 if (mutex_trylock(&efx->mac_lock)) {
1602 if (efx->port_enabled)
1603 efx->type->monitor(efx);
1604 mutex_unlock(&efx->mac_lock);
1605 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001606
Ben Hutchings8ceee662008-04-27 12:55:59 +01001607 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1608 efx_monitor_interval);
1609}
1610
1611/**************************************************************************
1612 *
1613 * ioctls
1614 *
1615 *************************************************************************/
1616
1617/* Net device ioctl
1618 * Context: process, rtnl_lock() held.
1619 */
1620static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
1621{
Ben Hutchings767e4682008-09-01 12:43:14 +01001622 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00001623 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001624
1625 EFX_ASSERT_RESET_SERIALISED(efx);
1626
Ben Hutchings68e7f452009-04-29 08:05:08 +00001627 /* Convert phy_id from older PRTAD/DEVAD format */
1628 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
1629 (data->phy_id & 0xfc00) == 0x0400)
1630 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
1631
1632 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001633}
1634
1635/**************************************************************************
1636 *
1637 * NAPI interface
1638 *
1639 **************************************************************************/
1640
Ben Hutchingse8f14992010-12-07 19:47:34 +00001641static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001642{
1643 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001644
1645 efx_for_each_channel(channel, efx) {
1646 channel->napi_dev = efx->net_dev;
Ben Hutchings718cff12009-04-14 19:47:46 -07001647 netif_napi_add(channel->napi_dev, &channel->napi_str,
1648 efx_poll, napi_weight);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001649 }
Ben Hutchingse8f14992010-12-07 19:47:34 +00001650}
1651
1652static void efx_fini_napi_channel(struct efx_channel *channel)
1653{
1654 if (channel->napi_dev)
1655 netif_napi_del(&channel->napi_str);
1656 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001657}
1658
1659static void efx_fini_napi(struct efx_nic *efx)
1660{
1661 struct efx_channel *channel;
1662
Ben Hutchingse8f14992010-12-07 19:47:34 +00001663 efx_for_each_channel(channel, efx)
1664 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001665}
1666
1667/**************************************************************************
1668 *
1669 * Kernel netpoll interface
1670 *
1671 *************************************************************************/
1672
1673#ifdef CONFIG_NET_POLL_CONTROLLER
1674
1675/* Although in the common case interrupts will be disabled, this is not
1676 * guaranteed. However, all our work happens inside the NAPI callback,
1677 * so no locking is required.
1678 */
1679static void efx_netpoll(struct net_device *net_dev)
1680{
Ben Hutchings767e4682008-09-01 12:43:14 +01001681 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001682 struct efx_channel *channel;
1683
Ben Hutchings64ee3122008-09-01 12:47:38 +01001684 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001685 efx_schedule_channel(channel);
1686}
1687
1688#endif
1689
1690/**************************************************************************
1691 *
1692 * Kernel net device interface
1693 *
1694 *************************************************************************/
1695
1696/* Context: process, rtnl_lock() held. */
1697static int efx_net_open(struct net_device *net_dev)
1698{
Ben Hutchings767e4682008-09-01 12:43:14 +01001699 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001700 EFX_ASSERT_RESET_SERIALISED(efx);
1701
Ben Hutchings62776d02010-06-23 11:30:07 +00001702 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
1703 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01001704
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08001705 if (efx->state == STATE_DISABLED)
1706 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01001707 if (efx->phy_mode & PHY_MODE_SPECIAL)
1708 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001709 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
1710 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01001711
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001712 /* Notify the kernel of the link state polled during driver load,
1713 * before the monitor starts running */
1714 efx_link_status_changed(efx);
1715
Ben Hutchings8ceee662008-04-27 12:55:59 +01001716 efx_start_all(efx);
1717 return 0;
1718}
1719
1720/* Context: process, rtnl_lock() held.
1721 * Note that the kernel will ignore our return code; this method
1722 * should really be a void.
1723 */
1724static int efx_net_stop(struct net_device *net_dev)
1725{
Ben Hutchings767e4682008-09-01 12:43:14 +01001726 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001727
Ben Hutchings62776d02010-06-23 11:30:07 +00001728 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
1729 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01001730
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08001731 if (efx->state != STATE_DISABLED) {
1732 /* Stop the device and flush all the channels */
1733 efx_stop_all(efx);
1734 efx_fini_channels(efx);
1735 efx_init_channels(efx);
1736 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001737
1738 return 0;
1739}
1740
Ben Hutchings5b9e2072008-05-16 21:18:14 +01001741/* Context: process, dev_base_lock or RTNL held, non-blocking. */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +00001742static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev,
1743 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001744{
Ben Hutchings767e4682008-09-01 12:43:14 +01001745 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001746 struct efx_mac_stats *mac_stats = &efx->mac_stats;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001747
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001748 spin_lock_bh(&efx->stats_lock);
Ben Hutchings1cb34522011-09-02 23:23:00 +01001749
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001750 efx->type->update_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001751
1752 stats->rx_packets = mac_stats->rx_packets;
1753 stats->tx_packets = mac_stats->tx_packets;
1754 stats->rx_bytes = mac_stats->rx_bytes;
1755 stats->tx_bytes = mac_stats->tx_bytes;
Ben Hutchings80485d32010-09-10 06:41:06 +00001756 stats->rx_dropped = efx->n_rx_nodesc_drop_cnt;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001757 stats->multicast = mac_stats->rx_multicast;
1758 stats->collisions = mac_stats->tx_collision;
1759 stats->rx_length_errors = (mac_stats->rx_gtjumbo +
1760 mac_stats->rx_length_error);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001761 stats->rx_crc_errors = mac_stats->rx_bad;
1762 stats->rx_frame_errors = mac_stats->rx_align_error;
1763 stats->rx_fifo_errors = mac_stats->rx_overflow;
1764 stats->rx_missed_errors = mac_stats->rx_missed;
1765 stats->tx_window_errors = mac_stats->tx_late_collision;
1766
1767 stats->rx_errors = (stats->rx_length_errors +
Ben Hutchings8ceee662008-04-27 12:55:59 +01001768 stats->rx_crc_errors +
1769 stats->rx_frame_errors +
Ben Hutchings8ceee662008-04-27 12:55:59 +01001770 mac_stats->rx_symbol_error);
1771 stats->tx_errors = (stats->tx_window_errors +
1772 mac_stats->tx_bad);
1773
Ben Hutchings1cb34522011-09-02 23:23:00 +01001774 spin_unlock_bh(&efx->stats_lock);
1775
Ben Hutchings8ceee662008-04-27 12:55:59 +01001776 return stats;
1777}
1778
1779/* Context: netif_tx_lock held, BHs disabled. */
1780static void efx_watchdog(struct net_device *net_dev)
1781{
Ben Hutchings767e4682008-09-01 12:43:14 +01001782 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001783
Ben Hutchings62776d02010-06-23 11:30:07 +00001784 netif_err(efx, tx_err, efx->net_dev,
1785 "TX stuck with port_enabled=%d: resetting channels\n",
1786 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001787
Ben Hutchings739bb23d2008-11-04 20:35:36 +00001788 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001789}
1790
1791
1792/* Context: process, rtnl_lock() held. */
1793static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
1794{
Ben Hutchings767e4682008-09-01 12:43:14 +01001795 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001796
1797 EFX_ASSERT_RESET_SERIALISED(efx);
1798
1799 if (new_mtu > EFX_MAX_MTU)
1800 return -EINVAL;
1801
1802 efx_stop_all(efx);
1803
Ben Hutchings62776d02010-06-23 11:30:07 +00001804 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001805
1806 efx_fini_channels(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001807
1808 mutex_lock(&efx->mac_lock);
1809 /* Reconfigure the MAC before enabling the dma queues so that
1810 * the RX buffers don't overflow */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001811 net_dev->mtu = new_mtu;
Ben Hutchings710b2082011-09-03 00:15:00 +01001812 efx->type->reconfigure_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001813 mutex_unlock(&efx->mac_lock);
1814
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01001815 efx_init_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001816
1817 efx_start_all(efx);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00001818 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001819}
1820
1821static int efx_set_mac_address(struct net_device *net_dev, void *data)
1822{
Ben Hutchings767e4682008-09-01 12:43:14 +01001823 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001824 struct sockaddr *addr = data;
1825 char *new_addr = addr->sa_data;
1826
1827 EFX_ASSERT_RESET_SERIALISED(efx);
1828
1829 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001830 netif_err(efx, drv, efx->net_dev,
1831 "invalid ethernet MAC address requested: %pM\n",
1832 new_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001833 return -EINVAL;
1834 }
1835
1836 memcpy(net_dev->dev_addr, new_addr, net_dev->addr_len);
1837
1838 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001839 mutex_lock(&efx->mac_lock);
Ben Hutchings710b2082011-09-03 00:15:00 +01001840 efx->type->reconfigure_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001841 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001842
1843 return 0;
1844}
1845
Ben Hutchingsa816f752008-09-01 12:49:12 +01001846/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00001847static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001848{
Ben Hutchings767e4682008-09-01 12:43:14 +01001849 struct efx_nic *efx = netdev_priv(net_dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00001850 struct netdev_hw_addr *ha;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001851 union efx_multicast_hash *mc_hash = &efx->multicast_hash;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001852 u32 crc;
1853 int bit;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001854
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001855 efx->promiscuous = !!(net_dev->flags & IFF_PROMISC);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001856
1857 /* Build multicast hash table */
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001858 if (efx->promiscuous || (net_dev->flags & IFF_ALLMULTI)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001859 memset(mc_hash, 0xff, sizeof(*mc_hash));
1860 } else {
1861 memset(mc_hash, 0x00, sizeof(*mc_hash));
Jiri Pirko22bedad32010-04-01 21:22:57 +00001862 netdev_for_each_mc_addr(ha, net_dev) {
1863 crc = ether_crc_le(ETH_ALEN, ha->addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001864 bit = crc & (EFX_MCAST_HASH_ENTRIES - 1);
1865 set_bit_le(bit, mc_hash->byte);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001866 }
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001867
1868 /* Broadcast packets go through the multicast hash filter.
1869 * ether_crc_le() of the broadcast address is 0xbe2612ff
1870 * so we always add bit 0xff to the mask.
1871 */
1872 set_bit_le(0xff, mc_hash->byte);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001873 }
1874
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001875 if (efx->port_enabled)
1876 queue_work(efx->workqueue, &efx->mac_work);
1877 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001878}
1879
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001880static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01001881{
1882 struct efx_nic *efx = netdev_priv(net_dev);
1883
1884 /* If disabling RX n-tuple filtering, clear existing filters */
1885 if (net_dev->features & ~data & NETIF_F_NTUPLE)
1886 efx_filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
1887
1888 return 0;
1889}
1890
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001891static const struct net_device_ops efx_netdev_ops = {
1892 .ndo_open = efx_net_open,
1893 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00001894 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001895 .ndo_tx_timeout = efx_watchdog,
1896 .ndo_start_xmit = efx_hard_start_xmit,
1897 .ndo_validate_addr = eth_validate_addr,
1898 .ndo_do_ioctl = efx_ioctl,
1899 .ndo_change_mtu = efx_change_mtu,
1900 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00001901 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01001902 .ndo_set_features = efx_set_features,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001903#ifdef CONFIG_NET_POLL_CONTROLLER
1904 .ndo_poll_controller = efx_netpoll,
1905#endif
Ben Hutchings94b274b2011-01-10 21:18:20 +00001906 .ndo_setup_tc = efx_setup_tc,
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001907#ifdef CONFIG_RFS_ACCEL
1908 .ndo_rx_flow_steer = efx_filter_rfs,
1909#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001910};
1911
Ben Hutchings7dde5962008-12-12 22:09:38 -08001912static void efx_update_name(struct efx_nic *efx)
1913{
1914 strcpy(efx->name, efx->net_dev->name);
1915 efx_mtd_rename(efx);
1916 efx_set_channel_names(efx);
1917}
1918
Ben Hutchings8ceee662008-04-27 12:55:59 +01001919static int efx_netdev_event(struct notifier_block *this,
1920 unsigned long event, void *ptr)
1921{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001922 struct net_device *net_dev = ptr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001923
Ben Hutchings7dde5962008-12-12 22:09:38 -08001924 if (net_dev->netdev_ops == &efx_netdev_ops &&
1925 event == NETDEV_CHANGENAME)
1926 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001927
1928 return NOTIFY_DONE;
1929}
1930
1931static struct notifier_block efx_netdev_notifier = {
1932 .notifier_call = efx_netdev_event,
1933};
1934
Ben Hutchings06d5e192008-12-12 21:47:23 -08001935static ssize_t
1936show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
1937{
1938 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
1939 return sprintf(buf, "%d\n", efx->phy_type);
1940}
1941static DEVICE_ATTR(phy_type, 0644, show_phy_type, NULL);
1942
Ben Hutchings8ceee662008-04-27 12:55:59 +01001943static int efx_register_netdev(struct efx_nic *efx)
1944{
1945 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00001946 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001947 int rc;
1948
1949 net_dev->watchdog_timeo = 5 * HZ;
1950 net_dev->irq = efx->pci_dev->irq;
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08001951 net_dev->netdev_ops = &efx_netdev_ops;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001952 SET_ETHTOOL_OPS(net_dev, &efx_ethtool_ops);
1953
Ben Hutchings7dde5962008-12-12 22:09:38 -08001954 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00001955
1956 rc = dev_alloc_name(net_dev, net_dev->name);
1957 if (rc < 0)
1958 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08001959 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00001960
1961 rc = register_netdevice(net_dev);
1962 if (rc)
1963 goto fail_locked;
1964
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00001965 efx_for_each_channel(channel, efx) {
1966 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00001967 efx_for_each_channel_tx_queue(tx_queue, channel)
1968 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00001969 }
1970
Ben Hutchingsaed06282009-08-26 08:16:27 +00001971 /* Always start with carrier off; PHY events will detect the link */
Ben Hutchings86ee5302012-01-09 19:51:22 +00001972 netif_carrier_off(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00001973
Ben Hutchings7dde5962008-12-12 22:09:38 -08001974 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01001975
Ben Hutchings06d5e192008-12-12 21:47:23 -08001976 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
1977 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001978 netif_err(efx, drv, efx->net_dev,
1979 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08001980 goto fail_registered;
1981 }
1982
Ben Hutchings8ceee662008-04-27 12:55:59 +01001983 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08001984
Ben Hutchingsaed06282009-08-26 08:16:27 +00001985fail_locked:
1986 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00001987 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00001988 return rc;
1989
Ben Hutchings06d5e192008-12-12 21:47:23 -08001990fail_registered:
1991 unregister_netdev(net_dev);
1992 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001993}
1994
1995static void efx_unregister_netdev(struct efx_nic *efx)
1996{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001997 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001998 struct efx_tx_queue *tx_queue;
1999
2000 if (!efx->net_dev)
2001 return;
2002
Ben Hutchings767e4682008-09-01 12:43:14 +01002003 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002004
2005 /* Free up any skbs still remaining. This has to happen before
2006 * we try to unregister the netdev as running their destructors
2007 * may be needed to get the device ref. count to 0. */
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00002008 efx_for_each_channel(channel, efx) {
2009 efx_for_each_channel_tx_queue(tx_queue, channel)
2010 efx_release_tx_buffers(tx_queue);
2011 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002012
Ben Hutchings73ba7b62012-01-09 19:47:08 +00002013 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2014 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2015 unregister_netdev(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002016}
2017
2018/**************************************************************************
2019 *
2020 * Device reset and suspend
2021 *
2022 **************************************************************************/
2023
Ben Hutchings2467ca42008-09-01 12:48:50 +01002024/* Tears down the entire software state and most of the hardware state
2025 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002026void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002027{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002028 EFX_ASSERT_RESET_SERIALISED(efx);
2029
Ben Hutchings2467ca42008-09-01 12:48:50 +01002030 efx_stop_all(efx);
2031 mutex_lock(&efx->mac_lock);
2032
Ben Hutchings8ceee662008-04-27 12:55:59 +01002033 efx_fini_channels(efx);
Steve Hodgson4b988282009-01-29 17:50:51 +00002034 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE)
2035 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002036 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002037}
2038
Ben Hutchings2467ca42008-09-01 12:48:50 +01002039/* This function will always ensure that the locks acquired in
2040 * efx_reset_down() are released. A failure return code indicates
2041 * that we were unable to reinitialise the hardware, and the
2042 * driver should be disabled. If ok is false, then the rx and tx
2043 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002044int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002045{
2046 int rc;
2047
Ben Hutchings2467ca42008-09-01 12:48:50 +01002048 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002049
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002050 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002051 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002052 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002053 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002054 }
2055
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002056 if (!ok)
2057 goto fail;
2058
Steve Hodgson4b988282009-01-29 17:50:51 +00002059 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002060 rc = efx->phy_op->init(efx);
2061 if (rc)
2062 goto fail;
2063 if (efx->phy_op->reconfigure(efx))
Ben Hutchings62776d02010-06-23 11:30:07 +00002064 netif_err(efx, drv, efx->net_dev,
2065 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002066 }
2067
Ben Hutchings710b2082011-09-03 00:15:00 +01002068 efx->type->reconfigure_mac(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002069
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002070 efx_init_channels(efx);
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002071 efx_restore_filters(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002072
2073 mutex_unlock(&efx->mac_lock);
2074
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002075 efx_start_all(efx);
2076
2077 return 0;
2078
2079fail:
2080 efx->port_initialized = false;
2081
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002082 mutex_unlock(&efx->mac_lock);
2083
Ben Hutchings8ceee662008-04-27 12:55:59 +01002084 return rc;
2085}
2086
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002087/* Reset the NIC using the specified method. Note that the reset may
2088 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002089 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002090 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002091 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002092int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002093{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002094 int rc, rc2;
2095 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002096
Ben Hutchings62776d02010-06-23 11:30:07 +00002097 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2098 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002099
Ben Hutchingse4abce82011-05-16 18:51:24 +01002100 netif_device_detach(efx->net_dev);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002101 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002102
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002103 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002104 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002105 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002106 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002107 }
2108
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002109 /* Clear flags for the scopes we covered. We assume the NIC and
2110 * driver are now quiescent so that there is no race here.
2111 */
2112 efx->reset_pending &= -(1 << (method + 1));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002113
2114 /* Reinitialise bus-mastering, which may have been turned off before
2115 * the reset was scheduled. This is still appropriate, even in the
2116 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2117 * can respond to requests. */
2118 pci_set_master(efx->pci_dev);
2119
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002120out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002121 /* Leave device stopped if necessary */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002122 disabled = rc || method == RESET_TYPE_DISABLE;
2123 rc2 = efx_reset_up(efx, method, !disabled);
2124 if (rc2) {
2125 disabled = true;
2126 if (!rc)
2127 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002128 }
2129
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002130 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002131 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002132 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002133 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002134 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002135 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingse4abce82011-05-16 18:51:24 +01002136 netif_device_attach(efx->net_dev);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002137 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002138 return rc;
2139}
2140
2141/* The worker thread exists so that code that cannot sleep can
2142 * schedule a reset for later.
2143 */
2144static void efx_reset_work(struct work_struct *data)
2145{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002146 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002147 unsigned long pending = ACCESS_ONCE(efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002148
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002149 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00002150 return;
2151
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002152 /* If we're not RUNNING then don't reset. Leave the reset_pending
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002153 * flags set so that efx_pci_probe_main will be retried */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002154 if (efx->state != STATE_RUNNING) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002155 netif_info(efx, drv, efx->net_dev,
2156 "scheduled reset quenched. NIC not RUNNING\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002157 return;
2158 }
2159
2160 rtnl_lock();
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002161 (void)efx_reset(efx, fls(pending) - 1);
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002162 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002163}
2164
2165void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2166{
2167 enum reset_type method;
2168
Ben Hutchings8ceee662008-04-27 12:55:59 +01002169 switch (type) {
2170 case RESET_TYPE_INVISIBLE:
2171 case RESET_TYPE_ALL:
2172 case RESET_TYPE_WORLD:
2173 case RESET_TYPE_DISABLE:
2174 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002175 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2176 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002177 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002178 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002179 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00002180 netif_dbg(efx, drv, efx->net_dev,
2181 "scheduling %s reset for %s\n",
2182 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002183 break;
2184 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002185
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002186 set_bit(method, &efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002187
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002188 /* efx_process_channel() will no longer read events once a
2189 * reset is scheduled. So switch back to poll'd MCDI completions. */
2190 efx_mcdi_mode_poll(efx);
2191
Steve Hodgson1ab00622008-12-12 21:33:02 -08002192 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002193}
2194
2195/**************************************************************************
2196 *
2197 * List of NICs we support
2198 *
2199 **************************************************************************/
2200
2201/* PCI device ID table */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00002202static DEFINE_PCI_DEVICE_TABLE(efx_pci_table) = {
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002203 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2204 PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002205 .driver_data = (unsigned long) &falcon_a1_nic_type},
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002206 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2207 PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002208 .driver_data = (unsigned long) &falcon_b0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002209 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002210 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002211 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002212 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002213 {0} /* end of list */
2214};
2215
2216/**************************************************************************
2217 *
Ben Hutchings37594332009-11-23 16:05:45 +00002218 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002219 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002220 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002221 * Needed so all function pointers are valid and do not have to be tested
2222 * before use
2223 *
2224 **************************************************************************/
2225int efx_port_dummy_op_int(struct efx_nic *efx)
2226{
2227 return 0;
2228}
2229void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002230
2231static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002232{
2233 return false;
2234}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002235
stephen hemminger6c8c2512011-04-14 05:50:12 +00002236static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002237 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002238 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002239 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002240 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002241};
2242
Ben Hutchings8ceee662008-04-27 12:55:59 +01002243/**************************************************************************
2244 *
2245 * Data housekeeping
2246 *
2247 **************************************************************************/
2248
2249/* This zeroes out and then fills in the invariants in a struct
2250 * efx_nic (including all sub-structures).
2251 */
stephen hemminger6c8c2512011-04-14 05:50:12 +00002252static int efx_init_struct(struct efx_nic *efx, const struct efx_nic_type *type,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002253 struct pci_dev *pci_dev, struct net_device *net_dev)
2254{
Ben Hutchings46426102010-09-10 06:42:33 +00002255 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002256
2257 /* Initialise common structures */
2258 memset(efx, 0, sizeof(*efx));
2259 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002260#ifdef CONFIG_SFC_MTD
2261 INIT_LIST_HEAD(&efx->mtd_list);
2262#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002263 INIT_WORK(&efx->reset_work, efx_reset_work);
2264 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
2265 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002266 efx->msg_enable = debug;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002267 efx->state = STATE_INIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002268 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002269
2270 efx->net_dev = net_dev;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002271 spin_lock_init(&efx->stats_lock);
2272 mutex_init(&efx->mac_lock);
2273 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002274 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002275 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002276
2277 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002278 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2279 if (!efx->channel[i])
2280 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002281 }
2282
2283 efx->type = type;
2284
Ben Hutchings8ceee662008-04-27 12:55:59 +01002285 EFX_BUG_ON_PARANOID(efx->type->phys_addr_channels > EFX_MAX_CHANNELS);
2286
2287 /* Higher numbered interrupt modes are less capable! */
2288 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2289 interrupt_mode);
2290
Ben Hutchings6977dc62008-12-26 13:44:39 -08002291 /* Would be good to use the net_dev name, but we're too early */
2292 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2293 pci_name(pci_dev));
2294 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002295 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00002296 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002297
Ben Hutchings8ceee662008-04-27 12:55:59 +01002298 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00002299
2300fail:
2301 efx_fini_struct(efx);
2302 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002303}
2304
2305static void efx_fini_struct(struct efx_nic *efx)
2306{
Ben Hutchings8313aca2010-09-10 06:41:57 +00002307 int i;
2308
2309 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2310 kfree(efx->channel[i]);
2311
Ben Hutchings8ceee662008-04-27 12:55:59 +01002312 if (efx->workqueue) {
2313 destroy_workqueue(efx->workqueue);
2314 efx->workqueue = NULL;
2315 }
2316}
2317
2318/**************************************************************************
2319 *
2320 * PCI interface
2321 *
2322 **************************************************************************/
2323
2324/* Main body of final NIC shutdown code
2325 * This is called only at module unload (or hotplug removal).
2326 */
2327static void efx_pci_remove_main(struct efx_nic *efx)
2328{
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002329#ifdef CONFIG_RFS_ACCEL
2330 free_irq_cpu_rmap(efx->net_dev->rx_cpu_rmap);
2331 efx->net_dev->rx_cpu_rmap = NULL;
2332#endif
Ben Hutchings152b6a62009-11-29 03:43:56 +00002333 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002334 efx_fini_channels(efx);
2335 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002336 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002337 efx_fini_napi(efx);
2338 efx_remove_all(efx);
2339}
2340
2341/* Final NIC shutdown
2342 * This is called only at module unload (or hotplug removal).
2343 */
2344static void efx_pci_remove(struct pci_dev *pci_dev)
2345{
2346 struct efx_nic *efx;
2347
2348 efx = pci_get_drvdata(pci_dev);
2349 if (!efx)
2350 return;
2351
2352 /* Mark the NIC as fini, then stop the interface */
2353 rtnl_lock();
2354 efx->state = STATE_FINI;
2355 dev_close(efx->net_dev);
2356
2357 /* Allow any queued efx_resets() to complete */
2358 rtnl_unlock();
2359
Ben Hutchings8ceee662008-04-27 12:55:59 +01002360 efx_unregister_netdev(efx);
2361
Ben Hutchings7dde5962008-12-12 22:09:38 -08002362 efx_mtd_remove(efx);
2363
Ben Hutchings8ceee662008-04-27 12:55:59 +01002364 /* Wait for any scheduled resets to complete. No more will be
2365 * scheduled from this point because efx_stop_all() has been
2366 * called, we are no longer registered with driverlink, and
2367 * the net_device's have been removed. */
Steve Hodgson1ab00622008-12-12 21:33:02 -08002368 cancel_work_sync(&efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002369
2370 efx_pci_remove_main(efx);
2371
Ben Hutchings8ceee662008-04-27 12:55:59 +01002372 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002373 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002374
2375 pci_set_drvdata(pci_dev, NULL);
2376 efx_fini_struct(efx);
2377 free_netdev(efx->net_dev);
2378};
2379
2380/* Main body of NIC initialisation
2381 * This is called at module load (or hotplug insertion, theoretically).
2382 */
2383static int efx_pci_probe_main(struct efx_nic *efx)
2384{
2385 int rc;
2386
2387 /* Do start-of-day initialisation */
2388 rc = efx_probe_all(efx);
2389 if (rc)
2390 goto fail1;
2391
Ben Hutchingse8f14992010-12-07 19:47:34 +00002392 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002393
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002394 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002395 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002396 netif_err(efx, probe, efx->net_dev,
2397 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002398 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002399 }
2400
2401 rc = efx_init_port(efx);
2402 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002403 netif_err(efx, probe, efx->net_dev,
2404 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002405 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002406 }
2407
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01002408 efx_init_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002409
Ben Hutchings152b6a62009-11-29 03:43:56 +00002410 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002411 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00002412 goto fail5;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002413
2414 return 0;
2415
Ben Hutchings278c0622009-11-23 16:05:12 +00002416 fail5:
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01002417 efx_fini_channels(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002418 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002419 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002420 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002421 fail3:
2422 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002423 efx_remove_all(efx);
2424 fail1:
2425 return rc;
2426}
2427
2428/* NIC initialisation
2429 *
2430 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00002431 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002432 * sets up and registers the network devices with the kernel and hooks
2433 * the interrupt service routine. It does not prepare the device for
2434 * transmission; this is left to the first time one of the network
2435 * interfaces is brought up (i.e. efx_net_open).
2436 */
2437static int __devinit efx_pci_probe(struct pci_dev *pci_dev,
2438 const struct pci_device_id *entry)
2439{
stephen hemminger6c8c2512011-04-14 05:50:12 +00002440 const struct efx_nic_type *type = (const struct efx_nic_type *) entry->driver_data;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002441 struct net_device *net_dev;
2442 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002443 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002444
2445 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00002446 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
2447 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002448 if (!net_dev)
2449 return -ENOMEM;
Ben Hutchingsc383b532009-11-29 15:11:02 +00002450 net_dev->features |= (type->offload_features | NETIF_F_SG |
Ben Hutchings97bc5412009-05-19 16:19:08 -07002451 NETIF_F_HIGHDMA | NETIF_F_TSO |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002452 NETIF_F_RXCSUM);
Ben Hutchings738a8f42009-11-29 15:16:05 +00002453 if (type->offload_features & NETIF_F_V6_CSUM)
2454 net_dev->features |= NETIF_F_TSO6;
Ben Hutchings285065632008-09-01 12:46:54 +01002455 /* Mask for features that also apply to VLAN devices */
2456 net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002457 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
2458 NETIF_F_RXCSUM);
2459 /* All offloads can be toggled */
2460 net_dev->hw_features = net_dev->features & ~NETIF_F_HIGHDMA;
Ben Hutchings767e4682008-09-01 12:43:14 +01002461 efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002462 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002463 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002464 rc = efx_init_struct(efx, type, pci_dev, net_dev);
2465 if (rc)
2466 goto fail1;
2467
Ben Hutchings62776d02010-06-23 11:30:07 +00002468 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01002469 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002470
2471 /* Set up basic I/O (BAR mappings etc) */
2472 rc = efx_init_io(efx);
2473 if (rc)
2474 goto fail2;
2475
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002476 rc = efx_pci_probe_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002477
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002478 /* Serialise against efx_reset(). No more resets will be
2479 * scheduled since efx_stop_all() has been called, and we have
2480 * not and never have been registered.
2481 */
2482 cancel_work_sync(&efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002483
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002484 if (rc)
2485 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08002486
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002487 /* If there was a scheduled reset during probe, the NIC is
2488 * probably hosed anyway.
2489 */
2490 if (efx->reset_pending) {
2491 rc = -EIO;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002492 goto fail4;
2493 }
2494
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002495 /* Switch to the running state before we expose the device to the OS,
2496 * so that dev_open()|efx_start_all() will actually start the device */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002497 efx->state = STATE_RUNNING;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002498
Ben Hutchings8ceee662008-04-27 12:55:59 +01002499 rc = efx_register_netdev(efx);
2500 if (rc)
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002501 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002502
Ben Hutchings62776d02010-06-23 11:30:07 +00002503 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00002504
Ben Hutchings7c431612012-01-27 17:23:58 +00002505 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00002506 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00002507 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00002508 rtnl_unlock();
Ben Hutchings7c431612012-01-27 17:23:58 +00002509 if (rc)
2510 netif_warn(efx, probe, efx->net_dev,
2511 "failed to create MTDs (%d)\n", rc);
2512
Ben Hutchings8ceee662008-04-27 12:55:59 +01002513 return 0;
2514
Ben Hutchings8ceee662008-04-27 12:55:59 +01002515 fail4:
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002516 efx_pci_remove_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002517 fail3:
2518 efx_fini_io(efx);
2519 fail2:
2520 efx_fini_struct(efx);
2521 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08002522 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00002523 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002524 free_netdev(net_dev);
2525 return rc;
2526}
2527
Ben Hutchings89c758f2009-11-29 03:43:07 +00002528static int efx_pm_freeze(struct device *dev)
2529{
2530 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2531
2532 efx->state = STATE_FINI;
2533
2534 netif_device_detach(efx->net_dev);
2535
2536 efx_stop_all(efx);
2537 efx_fini_channels(efx);
2538
2539 return 0;
2540}
2541
2542static int efx_pm_thaw(struct device *dev)
2543{
2544 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2545
2546 efx->state = STATE_INIT;
2547
2548 efx_init_channels(efx);
2549
2550 mutex_lock(&efx->mac_lock);
2551 efx->phy_op->reconfigure(efx);
2552 mutex_unlock(&efx->mac_lock);
2553
2554 efx_start_all(efx);
2555
2556 netif_device_attach(efx->net_dev);
2557
2558 efx->state = STATE_RUNNING;
2559
2560 efx->type->resume_wol(efx);
2561
Steve Hodgson319ba642010-06-01 11:17:24 +00002562 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
2563 queue_work(reset_workqueue, &efx->reset_work);
2564
Ben Hutchings89c758f2009-11-29 03:43:07 +00002565 return 0;
2566}
2567
2568static int efx_pm_poweroff(struct device *dev)
2569{
2570 struct pci_dev *pci_dev = to_pci_dev(dev);
2571 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2572
2573 efx->type->fini(efx);
2574
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002575 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00002576
2577 pci_save_state(pci_dev);
2578 return pci_set_power_state(pci_dev, PCI_D3hot);
2579}
2580
2581/* Used for both resume and restore */
2582static int efx_pm_resume(struct device *dev)
2583{
2584 struct pci_dev *pci_dev = to_pci_dev(dev);
2585 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2586 int rc;
2587
2588 rc = pci_set_power_state(pci_dev, PCI_D0);
2589 if (rc)
2590 return rc;
2591 pci_restore_state(pci_dev);
2592 rc = pci_enable_device(pci_dev);
2593 if (rc)
2594 return rc;
2595 pci_set_master(efx->pci_dev);
2596 rc = efx->type->reset(efx, RESET_TYPE_ALL);
2597 if (rc)
2598 return rc;
2599 rc = efx->type->init(efx);
2600 if (rc)
2601 return rc;
2602 efx_pm_thaw(dev);
2603 return 0;
2604}
2605
2606static int efx_pm_suspend(struct device *dev)
2607{
2608 int rc;
2609
2610 efx_pm_freeze(dev);
2611 rc = efx_pm_poweroff(dev);
2612 if (rc)
2613 efx_pm_resume(dev);
2614 return rc;
2615}
2616
Ben Hutchings18e83e42012-01-05 19:05:20 +00002617static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00002618 .suspend = efx_pm_suspend,
2619 .resume = efx_pm_resume,
2620 .freeze = efx_pm_freeze,
2621 .thaw = efx_pm_thaw,
2622 .poweroff = efx_pm_poweroff,
2623 .restore = efx_pm_resume,
2624};
2625
Ben Hutchings8ceee662008-04-27 12:55:59 +01002626static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00002627 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002628 .id_table = efx_pci_table,
2629 .probe = efx_pci_probe,
2630 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00002631 .driver.pm = &efx_pm_ops,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002632};
2633
2634/**************************************************************************
2635 *
2636 * Kernel module interface
2637 *
2638 *************************************************************************/
2639
2640module_param(interrupt_mode, uint, 0444);
2641MODULE_PARM_DESC(interrupt_mode,
2642 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
2643
2644static int __init efx_init_module(void)
2645{
2646 int rc;
2647
2648 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
2649
2650 rc = register_netdevice_notifier(&efx_netdev_notifier);
2651 if (rc)
2652 goto err_notifier;
2653
Steve Hodgson1ab00622008-12-12 21:33:02 -08002654 reset_workqueue = create_singlethread_workqueue("sfc_reset");
2655 if (!reset_workqueue) {
2656 rc = -ENOMEM;
2657 goto err_reset;
2658 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002659
2660 rc = pci_register_driver(&efx_pci_driver);
2661 if (rc < 0)
2662 goto err_pci;
2663
2664 return 0;
2665
2666 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08002667 destroy_workqueue(reset_workqueue);
2668 err_reset:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002669 unregister_netdevice_notifier(&efx_netdev_notifier);
2670 err_notifier:
2671 return rc;
2672}
2673
2674static void __exit efx_exit_module(void)
2675{
2676 printk(KERN_INFO "Solarflare NET driver unloading\n");
2677
2678 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002679 destroy_workqueue(reset_workqueue);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002680 unregister_netdevice_notifier(&efx_netdev_notifier);
2681
2682}
2683
2684module_init(efx_init_module);
2685module_exit(efx_exit_module);
2686
Ben Hutchings906bb262009-11-29 15:16:19 +00002687MODULE_AUTHOR("Solarflare Communications and "
2688 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002689MODULE_DESCRIPTION("Solarflare Communications network driver");
2690MODULE_LICENSE("GPL");
2691MODULE_DEVICE_TABLE(pci, efx_pci_table);