blob: fe8fe20eaa7731f61f5482b0a00a7de9f3b85633 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01002 * Driver for Solarflare network controllers and boards
Ben Hutchings8ceee662008-04-27 12:55:59 +01003 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01004 * Copyright 2005-2013 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>
Ben Hutchings8ceee662008-04-27 12:55:59 +010020#include <linux/ethtool.h>
Ben Hutchingsaa6ef272008-07-18 19:03:10 +010021#include <linux/topology.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
Alexandre Rames626950d2013-01-14 17:20:22 +000023#include <linux/aer.h>
Alexandre Ramesb28405b2013-03-21 16:41:43 +000024#include <linux/interrupt.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 Hutchingsdd407812012-02-28 23:40:21 +000028#include "selftest.h"
Shradha Shah7fa8d542015-05-06 00:55:13 +010029#include "sriov.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010030
Ben Hutchings8880f4e2009-11-29 15:15:41 +000031#include "mcdi.h"
Steve Hodgsonfd371e32010-06-01 11:17:51 +000032#include "workarounds.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000033
Ben Hutchingsc4593022009-11-23 16:08:17 +000034/**************************************************************************
35 *
36 * Type name strings
37 *
38 **************************************************************************
39 */
40
41/* Loopback mode names (see LOOPBACK_MODE()) */
42const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000043const char *const efx_loopback_mode_names[] = {
Ben Hutchingsc4593022009-11-23 16:08:17 +000044 [LOOPBACK_NONE] = "NONE",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000045 [LOOPBACK_DATA] = "DATAPATH",
Ben Hutchingsc4593022009-11-23 16:08:17 +000046 [LOOPBACK_GMAC] = "GMAC",
47 [LOOPBACK_XGMII] = "XGMII",
48 [LOOPBACK_XGXS] = "XGXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000049 [LOOPBACK_XAUI] = "XAUI",
50 [LOOPBACK_GMII] = "GMII",
51 [LOOPBACK_SGMII] = "SGMII",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000052 [LOOPBACK_XGBR] = "XGBR",
53 [LOOPBACK_XFI] = "XFI",
54 [LOOPBACK_XAUI_FAR] = "XAUI_FAR",
55 [LOOPBACK_GMII_FAR] = "GMII_FAR",
56 [LOOPBACK_SGMII_FAR] = "SGMII_FAR",
57 [LOOPBACK_XFI_FAR] = "XFI_FAR",
Ben Hutchingsc4593022009-11-23 16:08:17 +000058 [LOOPBACK_GPHY] = "GPHY",
59 [LOOPBACK_PHYXS] = "PHYXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000060 [LOOPBACK_PCS] = "PCS",
61 [LOOPBACK_PMAPMD] = "PMA/PMD",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000062 [LOOPBACK_XPORT] = "XPORT",
63 [LOOPBACK_XGMII_WS] = "XGMII_WS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000064 [LOOPBACK_XAUI_WS] = "XAUI_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000065 [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR",
66 [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000067 [LOOPBACK_GMII_WS] = "GMII_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000068 [LOOPBACK_XFI_WS] = "XFI_WS",
69 [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000070 [LOOPBACK_PHYXS_WS] = "PHYXS_WS",
Ben Hutchingsc4593022009-11-23 16:08:17 +000071};
72
Ben Hutchingsc4593022009-11-23 16:08:17 +000073const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000074const char *const efx_reset_type_names[] = {
Alexandre Rames626950d2013-01-14 17:20:22 +000075 [RESET_TYPE_INVISIBLE] = "INVISIBLE",
76 [RESET_TYPE_ALL] = "ALL",
77 [RESET_TYPE_RECOVER_OR_ALL] = "RECOVER_OR_ALL",
78 [RESET_TYPE_WORLD] = "WORLD",
79 [RESET_TYPE_RECOVER_OR_DISABLE] = "RECOVER_OR_DISABLE",
Edward Creee2835462014-04-16 19:27:48 +010080 [RESET_TYPE_MC_BIST] = "MC_BIST",
Alexandre Rames626950d2013-01-14 17:20:22 +000081 [RESET_TYPE_DISABLE] = "DISABLE",
82 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
83 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
84 [RESET_TYPE_RX_RECOVERY] = "RX_RECOVERY",
Alexandre Rames3de82b92013-06-13 11:36:15 +010085 [RESET_TYPE_DMA_ERROR] = "DMA_ERROR",
Alexandre Rames626950d2013-01-14 17:20:22 +000086 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
87 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
Edward Creee2835462014-04-16 19:27:48 +010088 [RESET_TYPE_MCDI_TIMEOUT] = "MCDI_TIMEOUT (FLR)",
Ben Hutchingsc4593022009-11-23 16:08:17 +000089};
90
Steve Hodgson1ab00622008-12-12 21:33:02 -080091/* Reset workqueue. If any NIC has a hardware failure then a reset will be
92 * queued onto this work queue. This is not a per-nic work queue, because
93 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
94 */
95static struct workqueue_struct *reset_workqueue;
96
Jon Cooper74cd60a2013-09-16 14:18:51 +010097/* How often and how many times to poll for a reset while waiting for a
98 * BIST that another function started to complete.
99 */
100#define BIST_WAIT_DELAY_MS 100
101#define BIST_WAIT_DELAY_COUNT 100
102
Ben Hutchings8ceee662008-04-27 12:55:59 +0100103/**************************************************************************
104 *
105 * Configurable values
106 *
107 *************************************************************************/
108
109/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100110 * Use separate channels for TX and RX events
111 *
Neil Turton28b581a2008-12-12 21:41:06 -0800112 * Set this to 1 to use separate channels for TX and RX. It allows us
113 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100114 *
Neil Turton28b581a2008-12-12 21:41:06 -0800115 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100116 */
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000117static bool separate_tx_channels;
118module_param(separate_tx_channels, bool, 0444);
Neil Turton28b581a2008-12-12 21:41:06 -0800119MODULE_PARM_DESC(separate_tx_channels,
120 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100121
122/* This is the weight assigned to each of the (per-channel) virtual
123 * NAPI devices.
124 */
125static int napi_weight = 64;
126
127/* This is the time (in jiffies) between invocations of the hardware
Alexandre Rames626950d2013-01-14 17:20:22 +0000128 * monitor.
129 * On Falcon-based NICs, this will:
Ben Hutchingse254c272010-09-20 08:44:10 +0000130 * - Check the on-board hardware monitor;
131 * - Poll the link state and reconfigure the hardware as necessary.
Alexandre Rames626950d2013-01-14 17:20:22 +0000132 * On Siena-based NICs for power systems with EEH support, this will give EEH a
133 * chance to start.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100134 */
stephen hemmingerd2156972010-10-18 05:27:31 +0000135static unsigned int efx_monitor_interval = 1 * HZ;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100136
Ben Hutchings8ceee662008-04-27 12:55:59 +0100137/* Initial interrupt moderation settings. They can be modified after
138 * module load with ethtool.
139 *
140 * The default for RX should strike a balance between increasing the
141 * round-trip latency and reducing overhead.
142 */
143static unsigned int rx_irq_mod_usec = 60;
144
145/* Initial interrupt moderation settings. They can be modified after
146 * module load with ethtool.
147 *
148 * This default is chosen to ensure that a 10G link does not go idle
149 * while a TX queue is stopped after it has become full. A queue is
150 * restarted when it drops below half full. The time this takes (assuming
151 * worst case 3 descriptors per packet and 1024 descriptors) is
152 * 512 / 3 * 1.2 = 205 usec.
153 */
154static unsigned int tx_irq_mod_usec = 150;
155
156/* This is the first interrupt mode to try out of:
157 * 0 => MSI-X
158 * 1 => MSI
159 * 2 => legacy
160 */
161static unsigned int interrupt_mode;
162
163/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
164 * i.e. the number of CPUs among which we may distribute simultaneous
165 * interrupt handling.
166 *
167 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
Ben Hutchingscdb08f82011-12-20 01:08:05 +0000168 * The default (0) means to assign an interrupt to each core.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100169 */
170static unsigned int rss_cpus;
171module_param(rss_cpus, uint, 0444);
172MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
173
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000174static bool phy_flash_cfg;
175module_param(phy_flash_cfg, bool, 0644);
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800176MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
177
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000178static unsigned irq_adapt_low_thresh = 8000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000179module_param(irq_adapt_low_thresh, uint, 0644);
180MODULE_PARM_DESC(irq_adapt_low_thresh,
181 "Threshold score for reducing IRQ moderation");
182
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000183static unsigned irq_adapt_high_thresh = 16000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000184module_param(irq_adapt_high_thresh, uint, 0644);
185MODULE_PARM_DESC(irq_adapt_high_thresh,
186 "Threshold score for increasing IRQ moderation");
187
Ben Hutchings62776d02010-06-23 11:30:07 +0000188static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
189 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
190 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
191 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
192module_param(debug, uint, 0);
193MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
194
Ben Hutchings8ceee662008-04-27 12:55:59 +0100195/**************************************************************************
196 *
197 * Utility functions and prototypes
198 *
199 *************************************************************************/
Ben Hutchings46426102010-09-10 06:42:33 +0000200
Jon Cooper261e4d92013-04-15 18:51:54 +0100201static int efx_soft_enable_interrupts(struct efx_nic *efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100202static void efx_soft_disable_interrupts(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000203static void efx_remove_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000204static void efx_remove_channels(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000205static const struct efx_channel_type efx_default_channel_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100206static void efx_remove_port(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000207static void efx_init_napi_channel(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100208static void efx_fini_napi(struct efx_nic *efx);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000209static void efx_fini_napi_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000210static void efx_fini_struct(struct efx_nic *efx);
211static void efx_start_all(struct efx_nic *efx);
212static void efx_stop_all(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100213
214#define EFX_ASSERT_RESET_SERIALISED(efx) \
215 do { \
Ben Hutchingsf16aeea2012-07-27 19:31:16 +0100216 if ((efx->state == STATE_READY) || \
Alexandre Rames626950d2013-01-14 17:20:22 +0000217 (efx->state == STATE_RECOVERY) || \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000218 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100219 ASSERT_RTNL(); \
220 } while (0)
221
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100222static int efx_check_disabled(struct efx_nic *efx)
223{
Alexandre Rames626950d2013-01-14 17:20:22 +0000224 if (efx->state == STATE_DISABLED || efx->state == STATE_RECOVERY) {
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100225 netif_err(efx, drv, efx->net_dev,
226 "device is disabled due to earlier errors\n");
227 return -EIO;
228 }
229 return 0;
230}
231
Ben Hutchings8ceee662008-04-27 12:55:59 +0100232/**************************************************************************
233 *
234 * Event queue processing
235 *
236 *************************************************************************/
237
238/* Process channel's event queue
239 *
240 * This function is responsible for processing the event queue of a
241 * single channel. The caller must guarantee that this function will
242 * never be concurrently called more than once on the same channel,
243 * though different channels may be being processed concurrently.
244 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000245static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100246{
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000247 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100248
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000249 if (unlikely(!channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100250 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100251
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000252 spent = efx_nic_process_eventq(channel, budget);
Ben Hutchingsd9ab7002012-02-13 23:29:16 +0000253 if (spent && efx_channel_has_rx_queue(channel)) {
254 struct efx_rx_queue *rx_queue =
255 efx_channel_get_rx_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100256
Ben Hutchingsff734ef2013-01-29 23:33:14 +0000257 efx_rx_flush_packet(channel);
Jon Coopercce28792013-10-02 11:04:14 +0100258 efx_fast_push_rx_descriptors(rx_queue, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100259 }
260
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000261 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100262}
263
Ben Hutchings8ceee662008-04-27 12:55:59 +0100264/* NAPI poll handler
265 *
266 * NAPI guarantees serialisation of polls of the same device, which
267 * provides the guarantee required by efx_process_channel().
268 */
269static int efx_poll(struct napi_struct *napi, int budget)
270{
271 struct efx_channel *channel =
272 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000273 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000274 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100275
Alexandre Rames36763262014-07-22 14:03:25 +0100276 if (!efx_channel_lock_napi(channel))
277 return budget;
278
Ben Hutchings62776d02010-06-23 11:30:07 +0000279 netif_vdbg(efx, intr, efx->net_dev,
280 "channel %d NAPI poll executing on CPU %d\n",
281 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100282
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000283 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100284
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000285 if (spent < budget) {
Ben Hutchings9d9a6972012-02-10 23:01:48 +0000286 if (efx_channel_has_rx_queue(channel) &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000287 efx->irq_rx_adaptive &&
288 unlikely(++channel->irq_count == 1000)) {
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000289 if (unlikely(channel->irq_mod_score <
290 irq_adapt_low_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000291 if (channel->irq_moderation > 1) {
292 channel->irq_moderation -= 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000293 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000294 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000295 } else if (unlikely(channel->irq_mod_score >
296 irq_adapt_high_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000297 if (channel->irq_moderation <
298 efx->irq_rx_moderation) {
299 channel->irq_moderation += 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000300 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000301 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000302 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000303 channel->irq_count = 0;
304 channel->irq_mod_score = 0;
305 }
306
Ben Hutchings64d8ad62011-01-05 00:50:41 +0000307 efx_filter_rfs_expire(channel);
308
Ben Hutchings8ceee662008-04-27 12:55:59 +0100309 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800310 * only wait for napi_complete(), this isn't a problem
Ben Hutchings514bedb2012-10-05 19:30:16 +0100311 * since efx_nic_eventq_read_ack() will have no effect if
Ben Hutchings8ceee662008-04-27 12:55:59 +0100312 * interrupts have already been disabled.
313 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800314 napi_complete(napi);
Ben Hutchings514bedb2012-10-05 19:30:16 +0100315 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100316 }
317
Alexandre Rames36763262014-07-22 14:03:25 +0100318 efx_channel_unlock_napi(channel);
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000319 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100320}
321
Ben Hutchings8ceee662008-04-27 12:55:59 +0100322/* Create event queue
323 * Event queue memory allocations are done only once. If the channel
324 * is reset, the memory buffer will be reused; this guards against
325 * errors during channel reset and also simplifies interrupt handling.
326 */
327static int efx_probe_eventq(struct efx_channel *channel)
328{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000329 struct efx_nic *efx = channel->efx;
330 unsigned long entries;
331
Ben Hutchings86ee5302012-01-09 19:51:22 +0000332 netif_dbg(efx, probe, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000333 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100334
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000335 /* Build an event queue with room for one event per tx and rx buffer,
336 * plus some extra for link state events and MCDI completions. */
337 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
338 EFX_BUG_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
339 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
340
Ben Hutchings152b6a62009-11-29 03:43:56 +0000341 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100342}
343
344/* Prepare channel's event queue */
Jon Cooper261e4d92013-04-15 18:51:54 +0100345static int efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100346{
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100347 struct efx_nic *efx = channel->efx;
Jon Cooper261e4d92013-04-15 18:51:54 +0100348 int rc;
349
350 EFX_WARN_ON_PARANOID(channel->eventq_init);
351
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100352 netif_dbg(efx, drv, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000353 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100354
Jon Cooper261e4d92013-04-15 18:51:54 +0100355 rc = efx_nic_init_eventq(channel);
356 if (rc == 0) {
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100357 efx->type->push_irq_moderation(channel);
Jon Cooper261e4d92013-04-15 18:51:54 +0100358 channel->eventq_read_ptr = 0;
359 channel->eventq_init = true;
360 }
361 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100362}
363
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000364/* Enable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100365void efx_start_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000366{
367 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
368 "chan %d start event queue\n", channel->channel);
369
Ben Hutchings514bedb2012-10-05 19:30:16 +0100370 /* Make sure the NAPI handler sees the enabled flag set */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000371 channel->enabled = true;
372 smp_wmb();
373
Alexandre Rames36763262014-07-22 14:03:25 +0100374 efx_channel_enable(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000375 napi_enable(&channel->napi_str);
376 efx_nic_eventq_read_ack(channel);
377}
378
379/* Disable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100380void efx_stop_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000381{
382 if (!channel->enabled)
383 return;
384
385 napi_disable(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +0100386 while (!efx_channel_disable(channel))
387 usleep_range(1000, 20000);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000388 channel->enabled = false;
389}
390
Ben Hutchings8ceee662008-04-27 12:55:59 +0100391static void efx_fini_eventq(struct efx_channel *channel)
392{
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100393 if (!channel->eventq_init)
394 return;
395
Ben Hutchings62776d02010-06-23 11:30:07 +0000396 netif_dbg(channel->efx, drv, channel->efx->net_dev,
397 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100398
Ben Hutchings152b6a62009-11-29 03:43:56 +0000399 efx_nic_fini_eventq(channel);
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100400 channel->eventq_init = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100401}
402
403static void efx_remove_eventq(struct efx_channel *channel)
404{
Ben Hutchings62776d02010-06-23 11:30:07 +0000405 netif_dbg(channel->efx, drv, channel->efx->net_dev,
406 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100407
Ben Hutchings152b6a62009-11-29 03:43:56 +0000408 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100409}
410
411/**************************************************************************
412 *
413 * Channel handling
414 *
415 *************************************************************************/
416
Ben Hutchings7f967c02012-02-13 23:45:02 +0000417/* Allocate and initialise a channel structure. */
Ben Hutchings46426102010-09-10 06:42:33 +0000418static struct efx_channel *
419efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
420{
421 struct efx_channel *channel;
422 struct efx_rx_queue *rx_queue;
423 struct efx_tx_queue *tx_queue;
424 int j;
425
Ben Hutchings7f967c02012-02-13 23:45:02 +0000426 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
427 if (!channel)
428 return NULL;
Ben Hutchings46426102010-09-10 06:42:33 +0000429
Ben Hutchings7f967c02012-02-13 23:45:02 +0000430 channel->efx = efx;
431 channel->channel = i;
432 channel->type = &efx_default_channel_type;
Ben Hutchings46426102010-09-10 06:42:33 +0000433
Ben Hutchings7f967c02012-02-13 23:45:02 +0000434 for (j = 0; j < EFX_TXQ_TYPES; j++) {
435 tx_queue = &channel->tx_queue[j];
436 tx_queue->efx = efx;
437 tx_queue->queue = i * EFX_TXQ_TYPES + j;
438 tx_queue->channel = channel;
Ben Hutchings46426102010-09-10 06:42:33 +0000439 }
440
Ben Hutchings46426102010-09-10 06:42:33 +0000441 rx_queue = &channel->rx_queue;
442 rx_queue->efx = efx;
443 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
444 (unsigned long)rx_queue);
445
446 return channel;
447}
448
Ben Hutchings7f967c02012-02-13 23:45:02 +0000449/* Allocate and initialise a channel structure, copying parameters
450 * (but not resources) from an old channel structure.
451 */
452static struct efx_channel *
453efx_copy_channel(const struct efx_channel *old_channel)
454{
455 struct efx_channel *channel;
456 struct efx_rx_queue *rx_queue;
457 struct efx_tx_queue *tx_queue;
458 int j;
459
460 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
461 if (!channel)
462 return NULL;
463
464 *channel = *old_channel;
465
466 channel->napi_dev = NULL;
467 memset(&channel->eventq, 0, sizeof(channel->eventq));
468
469 for (j = 0; j < EFX_TXQ_TYPES; j++) {
470 tx_queue = &channel->tx_queue[j];
471 if (tx_queue->channel)
472 tx_queue->channel = channel;
473 tx_queue->buffer = NULL;
474 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
475 }
476
477 rx_queue = &channel->rx_queue;
478 rx_queue->buffer = NULL;
479 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
480 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
481 (unsigned long)rx_queue);
482
483 return channel;
484}
485
Ben Hutchings8ceee662008-04-27 12:55:59 +0100486static int efx_probe_channel(struct efx_channel *channel)
487{
488 struct efx_tx_queue *tx_queue;
489 struct efx_rx_queue *rx_queue;
490 int rc;
491
Ben Hutchings62776d02010-06-23 11:30:07 +0000492 netif_dbg(channel->efx, probe, channel->efx->net_dev,
493 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100494
Ben Hutchings7f967c02012-02-13 23:45:02 +0000495 rc = channel->type->pre_probe(channel);
496 if (rc)
497 goto fail;
498
Ben Hutchings8ceee662008-04-27 12:55:59 +0100499 rc = efx_probe_eventq(channel);
500 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000501 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100502
503 efx_for_each_channel_tx_queue(tx_queue, channel) {
504 rc = efx_probe_tx_queue(tx_queue);
505 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000506 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100507 }
508
509 efx_for_each_channel_rx_queue(rx_queue, channel) {
510 rc = efx_probe_rx_queue(rx_queue);
511 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000512 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100513 }
514
Ben Hutchings8ceee662008-04-27 12:55:59 +0100515 return 0;
516
Ben Hutchings7f967c02012-02-13 23:45:02 +0000517fail:
518 efx_remove_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100519 return rc;
520}
521
Ben Hutchings7f967c02012-02-13 23:45:02 +0000522static void
523efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
524{
525 struct efx_nic *efx = channel->efx;
526 const char *type;
527 int number;
528
529 number = channel->channel;
530 if (efx->tx_channel_offset == 0) {
531 type = "";
532 } else if (channel->channel < efx->tx_channel_offset) {
533 type = "-rx";
534 } else {
535 type = "-tx";
536 number -= efx->tx_channel_offset;
537 }
538 snprintf(buf, len, "%s%s-%d", efx->name, type, number);
539}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100540
Ben Hutchings56536e92008-12-12 21:37:02 -0800541static void efx_set_channel_names(struct efx_nic *efx)
542{
543 struct efx_channel *channel;
Ben Hutchings56536e92008-12-12 21:37:02 -0800544
Ben Hutchings7f967c02012-02-13 23:45:02 +0000545 efx_for_each_channel(channel, efx)
546 channel->type->get_name(channel,
Ben Hutchingsd8291182012-10-05 23:35:41 +0100547 efx->msi_context[channel->channel].name,
548 sizeof(efx->msi_context[0].name));
Ben Hutchings56536e92008-12-12 21:37:02 -0800549}
550
Ben Hutchings46426102010-09-10 06:42:33 +0000551static int efx_probe_channels(struct efx_nic *efx)
552{
553 struct efx_channel *channel;
554 int rc;
555
556 /* Restart special buffer allocation */
557 efx->next_buffer_table = 0;
558
Ben Hutchingsc92aaff2012-02-21 23:22:00 +0000559 /* Probe channels in reverse, so that any 'extra' channels
560 * use the start of the buffer table. This allows the traffic
561 * channels to be resized without moving them or wasting the
562 * entries before them.
563 */
564 efx_for_each_channel_rev(channel, efx) {
Ben Hutchings46426102010-09-10 06:42:33 +0000565 rc = efx_probe_channel(channel);
566 if (rc) {
567 netif_err(efx, probe, efx->net_dev,
568 "failed to create channel %d\n",
569 channel->channel);
570 goto fail;
571 }
572 }
573 efx_set_channel_names(efx);
574
575 return 0;
576
577fail:
578 efx_remove_channels(efx);
579 return rc;
580}
581
Ben Hutchings8ceee662008-04-27 12:55:59 +0100582/* Channels are shutdown and reinitialised whilst the NIC is running
583 * to propagate configuration changes (mtu, checksum offload), or
584 * to clear hardware error conditions
585 */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000586static void efx_start_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100587{
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000588 bool old_rx_scatter = efx->rx_scatter;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100589 struct efx_tx_queue *tx_queue;
590 struct efx_rx_queue *rx_queue;
591 struct efx_channel *channel;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000592 size_t rx_buf_len;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100593
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100594 /* Calculate the rx buffer allocation parameters required to
595 * support the current MTU, including padding for header
596 * alignment and overruns.
597 */
Jon Cooper43a37392012-10-18 15:49:54 +0100598 efx->rx_dma_len = (efx->rx_prefix_size +
Ben Hutchings272baee2013-01-29 23:33:14 +0000599 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
600 efx->type->rx_buffer_padding);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000601 rx_buf_len = (sizeof(struct efx_rx_page_state) +
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400602 efx->rx_ip_align + efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000603 if (rx_buf_len <= PAGE_SIZE) {
Jon Coopere8c68c02013-03-08 10:18:28 +0000604 efx->rx_scatter = efx->type->always_rx_scatter;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000605 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000606 } else if (efx->type->can_rx_scatter) {
Ben Hutchings950c54d2013-05-13 12:01:22 +0000607 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000608 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
Ben Hutchings950c54d2013-05-13 12:01:22 +0000609 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
610 EFX_RX_BUF_ALIGNMENT) >
611 PAGE_SIZE);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000612 efx->rx_scatter = true;
613 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
614 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000615 } else {
616 efx->rx_scatter = false;
617 efx->rx_buffer_order = get_order(rx_buf_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000618 }
619
Daniel Pieczko1648a232013-02-13 10:54:41 +0000620 efx_rx_config_page_split(efx);
621 if (efx->rx_buffer_order)
622 netif_dbg(efx, drv, efx->net_dev,
623 "RX buf len=%u; page order=%u batch=%u\n",
624 efx->rx_dma_len, efx->rx_buffer_order,
625 efx->rx_pages_per_batch);
626 else
627 netif_dbg(efx, drv, efx->net_dev,
628 "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
629 efx->rx_dma_len, efx->rx_page_buf_step,
630 efx->rx_bufs_per_page, efx->rx_pages_per_batch);
Daniel Pieczko27689352013-02-13 10:54:41 +0000631
Jon Coopere8c68c02013-03-08 10:18:28 +0000632 /* RX filters may also have scatter-enabled flags */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000633 if (efx->rx_scatter != old_rx_scatter)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000634 efx->type->filter_update_rx_scatter(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100635
Ben Hutchings14bf7182012-05-22 01:27:58 +0100636 /* We must keep at least one descriptor in a TX ring empty.
637 * We could avoid this when the queue size does not exactly
638 * match the hardware ring size, but it's not that important.
639 * Therefore we stop the queue when one more skb might fill
640 * the ring completely. We wake it when half way back to
641 * empty.
642 */
643 efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
644 efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
645
Ben Hutchings8ceee662008-04-27 12:55:59 +0100646 /* Initialise the channels */
647 efx_for_each_channel(channel, efx) {
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100648 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100649 efx_init_tx_queue(tx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100650 atomic_inc(&efx->active_queues);
651 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100652
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000653 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100654 efx_init_rx_queue(rx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100655 atomic_inc(&efx->active_queues);
Jon Coopercce28792013-10-02 11:04:14 +0100656 efx_stop_eventq(channel);
657 efx_fast_push_rx_descriptors(rx_queue, false);
658 efx_start_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000659 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100660
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000661 WARN_ON(channel->rx_pkt_n_frags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100662 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000663
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000664 efx_ptp_start_datapath(efx);
665
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000666 if (netif_device_present(efx->net_dev))
667 netif_tx_wake_all_queues(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100668}
669
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000670static void efx_stop_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100671{
672 struct efx_channel *channel;
673 struct efx_tx_queue *tx_queue;
674 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100675 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100676
677 EFX_ASSERT_RESET_SERIALISED(efx);
678 BUG_ON(efx->port_enabled);
679
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000680 efx_ptp_stop_datapath(efx);
681
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100682 /* Stop RX refill */
683 efx_for_each_channel(channel, efx) {
684 efx_for_each_channel_rx_queue(rx_queue, channel)
685 rx_queue->refill_enabled = false;
686 }
687
Ben Hutchings8ceee662008-04-27 12:55:59 +0100688 efx_for_each_channel(channel, efx) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000689 /* RX packet processing is pipelined, so wait for the
690 * NAPI handler to complete. At least event queue 0
691 * might be kept active by non-data events, so don't
692 * use napi_synchronize() but actually disable NAPI
693 * temporarily.
694 */
695 if (efx_channel_has_rx_queue(channel)) {
696 efx_stop_eventq(channel);
697 efx_start_eventq(channel);
698 }
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100699 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100700
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100701 rc = efx->type->fini_dmaq(efx);
702 if (rc && EFX_WORKAROUND_7803(efx)) {
703 /* Schedule a reset to recover from the flush failure. The
704 * descriptor caches reference memory we're about to free,
705 * but falcon_reconfigure_mac_wrapper() won't reconnect
706 * the MACs because of the pending reset.
707 */
708 netif_err(efx, drv, efx->net_dev,
709 "Resetting to recover from flush failure\n");
710 efx_schedule_reset(efx, RESET_TYPE_ALL);
711 } else if (rc) {
712 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
713 } else {
714 netif_dbg(efx, drv, efx->net_dev,
715 "successfully flushed all queues\n");
716 }
717
718 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100719 efx_for_each_channel_rx_queue(rx_queue, channel)
720 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000721 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100722 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100723 }
724}
725
726static void efx_remove_channel(struct efx_channel *channel)
727{
728 struct efx_tx_queue *tx_queue;
729 struct efx_rx_queue *rx_queue;
730
Ben Hutchings62776d02010-06-23 11:30:07 +0000731 netif_dbg(channel->efx, drv, channel->efx->net_dev,
732 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100733
734 efx_for_each_channel_rx_queue(rx_queue, channel)
735 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000736 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100737 efx_remove_tx_queue(tx_queue);
738 efx_remove_eventq(channel);
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100739 channel->type->post_remove(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100740}
741
Ben Hutchings46426102010-09-10 06:42:33 +0000742static void efx_remove_channels(struct efx_nic *efx)
743{
744 struct efx_channel *channel;
745
746 efx_for_each_channel(channel, efx)
747 efx_remove_channel(channel);
748}
749
750int
751efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
752{
753 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
754 u32 old_rxq_entries, old_txq_entries;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000755 unsigned i, next_buffer_table = 0;
Jon Cooper261e4d92013-04-15 18:51:54 +0100756 int rc, rc2;
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100757
758 rc = efx_check_disabled(efx);
759 if (rc)
760 return rc;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000761
762 /* Not all channels should be reallocated. We must avoid
763 * reallocating their buffer table entries.
764 */
765 efx_for_each_channel(channel, efx) {
766 struct efx_rx_queue *rx_queue;
767 struct efx_tx_queue *tx_queue;
768
769 if (channel->type->copy)
770 continue;
771 next_buffer_table = max(next_buffer_table,
772 channel->eventq.index +
773 channel->eventq.entries);
774 efx_for_each_channel_rx_queue(rx_queue, channel)
775 next_buffer_table = max(next_buffer_table,
776 rx_queue->rxd.index +
777 rx_queue->rxd.entries);
778 efx_for_each_channel_tx_queue(tx_queue, channel)
779 next_buffer_table = max(next_buffer_table,
780 tx_queue->txd.index +
781 tx_queue->txd.entries);
782 }
Ben Hutchings46426102010-09-10 06:42:33 +0000783
Ben Hutchings29c69a42013-01-28 19:01:06 +0000784 efx_device_detach_sync(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000785 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100786 efx_soft_disable_interrupts(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000787
Ben Hutchings7f967c02012-02-13 23:45:02 +0000788 /* Clone channels (where possible) */
Ben Hutchings46426102010-09-10 06:42:33 +0000789 memset(other_channel, 0, sizeof(other_channel));
790 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000791 channel = efx->channel[i];
792 if (channel->type->copy)
793 channel = channel->type->copy(channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000794 if (!channel) {
795 rc = -ENOMEM;
796 goto out;
797 }
798 other_channel[i] = channel;
799 }
800
801 /* Swap entry counts and channel pointers */
802 old_rxq_entries = efx->rxq_entries;
803 old_txq_entries = efx->txq_entries;
804 efx->rxq_entries = rxq_entries;
805 efx->txq_entries = txq_entries;
806 for (i = 0; i < efx->n_channels; i++) {
807 channel = efx->channel[i];
808 efx->channel[i] = other_channel[i];
809 other_channel[i] = channel;
810 }
811
Ben Hutchings7f967c02012-02-13 23:45:02 +0000812 /* Restart buffer table allocation */
813 efx->next_buffer_table = next_buffer_table;
Ben Hutchings46426102010-09-10 06:42:33 +0000814
Ben Hutchingse8f14992010-12-07 19:47:34 +0000815 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000816 channel = efx->channel[i];
817 if (!channel->type->copy)
818 continue;
819 rc = efx_probe_channel(channel);
820 if (rc)
821 goto rollback;
822 efx_init_napi_channel(efx->channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000823 }
Ben Hutchings46426102010-09-10 06:42:33 +0000824
Ben Hutchings7f967c02012-02-13 23:45:02 +0000825out:
826 /* Destroy unused channel structures */
827 for (i = 0; i < efx->n_channels; i++) {
828 channel = other_channel[i];
829 if (channel && channel->type->copy) {
830 efx_fini_napi_channel(channel);
831 efx_remove_channel(channel);
832 kfree(channel);
833 }
834 }
835
Jon Cooper261e4d92013-04-15 18:51:54 +0100836 rc2 = efx_soft_enable_interrupts(efx);
837 if (rc2) {
838 rc = rc ? rc : rc2;
839 netif_err(efx, drv, efx->net_dev,
840 "unable to restart interrupts on channel reallocation\n");
841 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
842 } else {
843 efx_start_all(efx);
844 netif_device_attach(efx->net_dev);
845 }
Ben Hutchings46426102010-09-10 06:42:33 +0000846 return rc;
847
848rollback:
849 /* Swap back */
850 efx->rxq_entries = old_rxq_entries;
851 efx->txq_entries = old_txq_entries;
852 for (i = 0; i < efx->n_channels; i++) {
853 channel = efx->channel[i];
854 efx->channel[i] = other_channel[i];
855 other_channel[i] = channel;
856 }
857 goto out;
858}
859
Steve Hodgson90d683a2010-06-01 11:19:39 +0000860void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100861{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000862 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100863}
864
Ben Hutchings7f967c02012-02-13 23:45:02 +0000865static const struct efx_channel_type efx_default_channel_type = {
866 .pre_probe = efx_channel_dummy_op_int,
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100867 .post_remove = efx_channel_dummy_op_void,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000868 .get_name = efx_get_channel_name,
869 .copy = efx_copy_channel,
870 .keep_eventq = false,
871};
872
873int efx_channel_dummy_op_int(struct efx_channel *channel)
874{
875 return 0;
876}
877
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100878void efx_channel_dummy_op_void(struct efx_channel *channel)
879{
880}
881
Ben Hutchings8ceee662008-04-27 12:55:59 +0100882/**************************************************************************
883 *
884 * Port handling
885 *
886 **************************************************************************/
887
888/* This ensures that the kernel is kept informed (via
889 * netif_carrier_on/off) of the link status, and also maintains the
890 * link status's stop on the port's TX queue.
891 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000892void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100893{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000894 struct efx_link_state *link_state = &efx->link_state;
895
Ben Hutchings8ceee662008-04-27 12:55:59 +0100896 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
897 * that no events are triggered between unregister_netdev() and the
898 * driver unloading. A more general condition is that NETDEV_CHANGE
899 * can only be generated between NETDEV_UP and NETDEV_DOWN */
900 if (!netif_running(efx->net_dev))
901 return;
902
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000903 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100904 efx->n_link_state_changes++;
905
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000906 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100907 netif_carrier_on(efx->net_dev);
908 else
909 netif_carrier_off(efx->net_dev);
910 }
911
912 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000913 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000914 netif_info(efx, link, efx->net_dev,
Ben Hutchings964e6132012-11-19 23:08:22 +0000915 "link up at %uMbps %s-duplex (MTU %d)\n",
Ben Hutchings62776d02010-06-23 11:30:07 +0000916 link_state->speed, link_state->fd ? "full" : "half",
Ben Hutchings964e6132012-11-19 23:08:22 +0000917 efx->net_dev->mtu);
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000918 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000919 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100920}
921
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000922void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
923{
924 efx->link_advertising = advertising;
925 if (advertising) {
926 if (advertising & ADVERTISED_Pause)
927 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
928 else
929 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
930 if (advertising & ADVERTISED_Asym_Pause)
931 efx->wanted_fc ^= EFX_FC_TX;
932 }
933}
934
David S. Millerb56269462011-05-17 17:53:22 -0400935void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000936{
937 efx->wanted_fc = wanted_fc;
938 if (efx->link_advertising) {
939 if (wanted_fc & EFX_FC_RX)
940 efx->link_advertising |= (ADVERTISED_Pause |
941 ADVERTISED_Asym_Pause);
942 else
943 efx->link_advertising &= ~(ADVERTISED_Pause |
944 ADVERTISED_Asym_Pause);
945 if (wanted_fc & EFX_FC_TX)
946 efx->link_advertising ^= ADVERTISED_Asym_Pause;
947 }
948}
949
Ben Hutchings115122a2009-03-04 09:52:52 +0000950static void efx_fini_port(struct efx_nic *efx);
951
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000952/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
953 * the MAC appropriately. All other PHY configuration changes are pushed
954 * through phy_op->set_settings(), and pushed asynchronously to the MAC
955 * through efx_monitor().
956 *
957 * Callers must hold the mac_lock
958 */
959int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100960{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000961 enum efx_phy_mode phy_mode;
962 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100963
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000964 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100965
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000966 /* Disable PHY transmit in mac level loopbacks */
967 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800968 if (LOOPBACK_INTERNAL(efx))
969 efx->phy_mode |= PHY_MODE_TX_DISABLED;
970 else
971 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800972
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000973 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800974
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000975 if (rc)
976 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100977
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000978 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100979}
980
981/* Reinitialise the MAC to pick up new PHY settings, even if the port is
982 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000983int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100984{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000985 int rc;
986
Ben Hutchings8ceee662008-04-27 12:55:59 +0100987 EFX_ASSERT_RESET_SERIALISED(efx);
988
989 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000990 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100991 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000992
993 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100994}
995
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000996/* Asynchronous work item for changing MAC promiscuity and multicast
997 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
998 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800999static void efx_mac_work(struct work_struct *data)
1000{
1001 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
1002
1003 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +01001004 if (efx->port_enabled)
Ben Hutchings710b2082011-09-03 00:15:00 +01001005 efx->type->reconfigure_mac(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001006 mutex_unlock(&efx->mac_lock);
1007}
1008
Ben Hutchings8ceee662008-04-27 12:55:59 +01001009static int efx_probe_port(struct efx_nic *efx)
1010{
1011 int rc;
1012
Ben Hutchings62776d02010-06-23 11:30:07 +00001013 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001014
Steve Hodgsonff3b00a2009-12-23 13:46:36 +00001015 if (phy_flash_cfg)
1016 efx->phy_mode = PHY_MODE_SPECIAL;
1017
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001018 /* Connect up MAC/PHY operations table */
1019 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001020 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +00001021 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001022
Ben Hutchingse332bcb2011-12-20 01:22:51 +00001023 /* Initialise MAC address to permanent address */
Edward Creecd84ff42014-03-07 18:27:41 +00001024 ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001025
1026 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001027}
1028
1029static int efx_init_port(struct efx_nic *efx)
1030{
1031 int rc;
1032
Ben Hutchings62776d02010-06-23 11:30:07 +00001033 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001034
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001035 mutex_lock(&efx->mac_lock);
1036
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001037 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001038 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001039 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001040
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001041 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001042
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001043 /* Reconfigure the MAC before creating dma queues (required for
1044 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Ben Hutchings710b2082011-09-03 00:15:00 +01001045 efx->type->reconfigure_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001046
1047 /* Ensure the PHY advertises the correct flow control settings */
1048 rc = efx->phy_op->reconfigure(efx);
1049 if (rc)
1050 goto fail2;
1051
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001052 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001053 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001054
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001055fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001056 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001057fail1:
1058 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001059 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001060}
1061
Ben Hutchings8ceee662008-04-27 12:55:59 +01001062static void efx_start_port(struct efx_nic *efx)
1063{
Ben Hutchings62776d02010-06-23 11:30:07 +00001064 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001065 BUG_ON(efx->port_enabled);
1066
1067 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001068 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001069
Ben Hutchingsd615c032013-10-08 17:33:20 +01001070 /* Ensure MAC ingress/egress is enabled */
Ben Hutchings710b2082011-09-03 00:15:00 +01001071 efx->type->reconfigure_mac(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001072
Ben Hutchings8ceee662008-04-27 12:55:59 +01001073 mutex_unlock(&efx->mac_lock);
1074}
1075
Ben Hutchingsd615c032013-10-08 17:33:20 +01001076/* Cancel work for MAC reconfiguration, periodic hardware monitoring
1077 * and the async self-test, wait for them to finish and prevent them
1078 * being scheduled again. This doesn't cover online resets, which
1079 * should only be cancelled when removing the device.
1080 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001081static void efx_stop_port(struct efx_nic *efx)
1082{
Ben Hutchings62776d02010-06-23 11:30:07 +00001083 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001084
Ben Hutchingsd615c032013-10-08 17:33:20 +01001085 EFX_ASSERT_RESET_SERIALISED(efx);
1086
Ben Hutchings8ceee662008-04-27 12:55:59 +01001087 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001088 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001089 mutex_unlock(&efx->mac_lock);
1090
1091 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001092 netif_addr_lock_bh(efx->net_dev);
1093 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchingsd615c032013-10-08 17:33:20 +01001094
1095 cancel_delayed_work_sync(&efx->monitor_work);
1096 efx_selftest_async_cancel(efx);
1097 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001098}
1099
1100static void efx_fini_port(struct efx_nic *efx)
1101{
Ben Hutchings62776d02010-06-23 11:30:07 +00001102 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001103
1104 if (!efx->port_initialized)
1105 return;
1106
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001107 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001108 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001109
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001110 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001111 efx_link_status_changed(efx);
1112}
1113
1114static void efx_remove_port(struct efx_nic *efx)
1115{
Ben Hutchings62776d02010-06-23 11:30:07 +00001116 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001117
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001118 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001119}
1120
1121/**************************************************************************
1122 *
1123 * NIC handling
1124 *
1125 **************************************************************************/
1126
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01001127static LIST_HEAD(efx_primary_list);
1128static LIST_HEAD(efx_unassociated_list);
1129
1130static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right)
1131{
1132 return left->type == right->type &&
1133 left->vpd_sn && right->vpd_sn &&
1134 !strcmp(left->vpd_sn, right->vpd_sn);
1135}
1136
1137static void efx_associate(struct efx_nic *efx)
1138{
1139 struct efx_nic *other, *next;
1140
1141 if (efx->primary == efx) {
1142 /* Adding primary function; look for secondaries */
1143
1144 netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n");
1145 list_add_tail(&efx->node, &efx_primary_list);
1146
1147 list_for_each_entry_safe(other, next, &efx_unassociated_list,
1148 node) {
1149 if (efx_same_controller(efx, other)) {
1150 list_del(&other->node);
1151 netif_dbg(other, probe, other->net_dev,
1152 "moving to secondary list of %s %s\n",
1153 pci_name(efx->pci_dev),
1154 efx->net_dev->name);
1155 list_add_tail(&other->node,
1156 &efx->secondary_list);
1157 other->primary = efx;
1158 }
1159 }
1160 } else {
1161 /* Adding secondary function; look for primary */
1162
1163 list_for_each_entry(other, &efx_primary_list, node) {
1164 if (efx_same_controller(efx, other)) {
1165 netif_dbg(efx, probe, efx->net_dev,
1166 "adding to secondary list of %s %s\n",
1167 pci_name(other->pci_dev),
1168 other->net_dev->name);
1169 list_add_tail(&efx->node,
1170 &other->secondary_list);
1171 efx->primary = other;
1172 return;
1173 }
1174 }
1175
1176 netif_dbg(efx, probe, efx->net_dev,
1177 "adding to unassociated list\n");
1178 list_add_tail(&efx->node, &efx_unassociated_list);
1179 }
1180}
1181
1182static void efx_dissociate(struct efx_nic *efx)
1183{
1184 struct efx_nic *other, *next;
1185
1186 list_del(&efx->node);
1187 efx->primary = NULL;
1188
1189 list_for_each_entry_safe(other, next, &efx->secondary_list, node) {
1190 list_del(&other->node);
1191 netif_dbg(other, probe, other->net_dev,
1192 "moving to unassociated list\n");
1193 list_add_tail(&other->node, &efx_unassociated_list);
1194 other->primary = NULL;
1195 }
1196}
1197
Ben Hutchings8ceee662008-04-27 12:55:59 +01001198/* This configures the PCI device to enable I/O and DMA. */
1199static int efx_init_io(struct efx_nic *efx)
1200{
1201 struct pci_dev *pci_dev = efx->pci_dev;
1202 dma_addr_t dma_mask = efx->type->max_dma_mask;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001203 unsigned int mem_map_size = efx->type->mem_map_size(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001204 int rc;
1205
Ben Hutchings62776d02010-06-23 11:30:07 +00001206 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001207
1208 rc = pci_enable_device(pci_dev);
1209 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001210 netif_err(efx, probe, efx->net_dev,
1211 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001212 goto fail1;
1213 }
1214
1215 pci_set_master(pci_dev);
1216
1217 /* Set the PCI DMA mask. Try all possibilities from our
1218 * genuine mask down to 32 bits, because some architectures
1219 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1220 * masks event though they reject 46 bit masks.
1221 */
1222 while (dma_mask > 0x7fffffffUL) {
Ben Hutchings0e33d872012-05-17 17:46:55 +01001223 if (dma_supported(&pci_dev->dev, dma_mask)) {
Russell King9663ded2013-06-26 23:49:11 +01001224 rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
Ben Hutchingse9e01842012-01-05 18:50:29 +00001225 if (rc == 0)
1226 break;
1227 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001228 dma_mask >>= 1;
1229 }
1230 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001231 netif_err(efx, probe, efx->net_dev,
1232 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001233 goto fail2;
1234 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001235 netif_dbg(efx, probe, efx->net_dev,
1236 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001237
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001238 efx->membase_phys = pci_resource_start(efx->pci_dev, EFX_MEM_BAR);
1239 rc = pci_request_region(pci_dev, EFX_MEM_BAR, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001240 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001241 netif_err(efx, probe, efx->net_dev,
1242 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001243 rc = -EIO;
1244 goto fail3;
1245 }
Ben Hutchingsb1057982012-09-19 00:56:47 +01001246 efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001247 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001248 netif_err(efx, probe, efx->net_dev,
1249 "could not map memory BAR at %llx+%x\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001250 (unsigned long long)efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001251 rc = -ENOMEM;
1252 goto fail4;
1253 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001254 netif_dbg(efx, probe, efx->net_dev,
1255 "memory BAR at %llx+%x (virtual %p)\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001256 (unsigned long long)efx->membase_phys, mem_map_size,
1257 efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001258
1259 return 0;
1260
1261 fail4:
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001262 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001263 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001264 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001265 fail2:
1266 pci_disable_device(efx->pci_dev);
1267 fail1:
1268 return rc;
1269}
1270
1271static void efx_fini_io(struct efx_nic *efx)
1272{
Ben Hutchings62776d02010-06-23 11:30:07 +00001273 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001274
1275 if (efx->membase) {
1276 iounmap(efx->membase);
1277 efx->membase = NULL;
1278 }
1279
1280 if (efx->membase_phys) {
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001281 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001282 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001283 }
1284
1285 pci_disable_device(efx->pci_dev);
1286}
1287
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001288static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
Ben Hutchings46123d02008-09-01 12:47:33 +01001289{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001290 cpumask_var_t thread_mask;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001291 unsigned int count;
Ben Hutchings46123d02008-09-01 12:47:33 +01001292 int cpu;
1293
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001294 if (rss_cpus) {
1295 count = rss_cpus;
1296 } else {
1297 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1298 netif_warn(efx, probe, efx->net_dev,
1299 "RSS disabled due to allocation failure\n");
1300 return 1;
Ben Hutchings46123d02008-09-01 12:47:33 +01001301 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001302
1303 count = 0;
1304 for_each_online_cpu(cpu) {
1305 if (!cpumask_test_cpu(cpu, thread_mask)) {
1306 ++count;
1307 cpumask_or(thread_mask, thread_mask,
1308 topology_thread_cpumask(cpu));
1309 }
1310 }
1311
1312 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001313 }
1314
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001315 /* If RSS is requested for the PF *and* VFs then we can't write RSS
1316 * table entries that are inaccessible to VFs
1317 */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001318#ifdef CONFIG_SFC_SRIOV
1319 if (efx->type->sriov_wanted) {
1320 if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1321 count > efx_vf_size(efx)) {
1322 netif_warn(efx, probe, efx->net_dev,
1323 "Reducing number of RSS channels from %u to %u for "
1324 "VF support. Increase vf-msix-limit to use more "
1325 "channels on the PF.\n",
1326 count, efx_vf_size(efx));
1327 count = efx_vf_size(efx);
1328 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001329 }
Shradha Shah7fa8d542015-05-06 00:55:13 +01001330#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001331
Ben Hutchings46123d02008-09-01 12:47:33 +01001332 return count;
1333}
1334
1335/* Probe the number and type of interrupts we are able to obtain, and
1336 * the resulting numbers of channels and RX queues.
1337 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001338static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001339{
Ben Hutchings7f967c02012-02-13 23:45:02 +00001340 unsigned int extra_channels = 0;
1341 unsigned int i, j;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001342 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001343
Ben Hutchings7f967c02012-02-13 23:45:02 +00001344 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1345 if (efx->extra_channel_type[i])
1346 ++extra_channels;
1347
Ben Hutchings8ceee662008-04-27 12:55:59 +01001348 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001349 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001350 unsigned int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001351
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001352 n_channels = efx_wanted_parallelism(efx);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001353 if (separate_tx_channels)
1354 n_channels *= 2;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001355 n_channels += extra_channels;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001356 n_channels = min(n_channels, efx->max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001357
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001358 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001359 xentries[i].entry = i;
Alexander Gordeev184603d2014-02-18 11:12:00 +01001360 rc = pci_enable_msix_range(efx->pci_dev,
1361 xentries, 1, n_channels);
1362 if (rc < 0) {
1363 /* Fall back to single channel MSI */
1364 efx->interrupt_mode = EFX_INT_MODE_MSI;
1365 netif_err(efx, drv, efx->net_dev,
1366 "could not enable MSI-X\n");
1367 } else if (rc < n_channels) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001368 netif_err(efx, drv, efx->net_dev,
1369 "WARNING: Insufficient MSI-X vectors"
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001370 " available (%d < %u).\n", rc, n_channels);
Ben Hutchings62776d02010-06-23 11:30:07 +00001371 netif_err(efx, drv, efx->net_dev,
1372 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001373 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001374 }
1375
Alexander Gordeev184603d2014-02-18 11:12:00 +01001376 if (rc > 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001377 efx->n_channels = n_channels;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001378 if (n_channels > extra_channels)
1379 n_channels -= extra_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001380 if (separate_tx_channels) {
Ben Hutchings7f967c02012-02-13 23:45:02 +00001381 efx->n_tx_channels = max(n_channels / 2, 1U);
1382 efx->n_rx_channels = max(n_channels -
1383 efx->n_tx_channels,
1384 1U);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001385 } else {
Ben Hutchings7f967c02012-02-13 23:45:02 +00001386 efx->n_tx_channels = n_channels;
1387 efx->n_rx_channels = n_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001388 }
Ben Hutchings7f967c02012-02-13 23:45:02 +00001389 for (i = 0; i < efx->n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001390 efx_get_channel(efx, i)->irq =
1391 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001392 }
1393 }
1394
1395 /* Try single interrupt MSI */
1396 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001397 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001398 efx->n_rx_channels = 1;
1399 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001400 rc = pci_enable_msi(efx->pci_dev);
1401 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001402 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001403 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001404 netif_err(efx, drv, efx->net_dev,
1405 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001406 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1407 }
1408 }
1409
1410 /* Assume legacy interrupts */
1411 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Neil Turton28b581a2008-12-12 21:41:06 -08001412 efx->n_channels = 1 + (separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001413 efx->n_rx_channels = 1;
1414 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001415 efx->legacy_irq = efx->pci_dev->irq;
1416 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001417
Ben Hutchings7f967c02012-02-13 23:45:02 +00001418 /* Assign extra channels if possible */
1419 j = efx->n_channels;
1420 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1421 if (!efx->extra_channel_type[i])
1422 continue;
1423 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1424 efx->n_channels <= extra_channels) {
1425 efx->extra_channel_type[i]->handle_no_channel(efx);
1426 } else {
1427 --j;
1428 efx_get_channel(efx, j)->type =
1429 efx->extra_channel_type[i];
1430 }
1431 }
1432
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001433 /* RSS might be usable on VFs even if it is disabled on the PF */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001434#ifdef CONFIG_SFC_SRIOV
1435 if (efx->type->sriov_wanted) {
1436 efx->rss_spread = ((efx->n_rx_channels > 1 ||
1437 !efx->type->sriov_wanted(efx)) ?
1438 efx->n_rx_channels : efx_vf_size(efx));
1439 return 0;
1440 }
1441#endif
1442 efx->rss_spread = efx->n_rx_channels;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001443 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001444}
1445
Jon Cooper261e4d92013-04-15 18:51:54 +01001446static int efx_soft_enable_interrupts(struct efx_nic *efx)
Ben Hutchingsd8291182012-10-05 23:35:41 +01001447{
Jon Cooper261e4d92013-04-15 18:51:54 +01001448 struct efx_channel *channel, *end_channel;
1449 int rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001450
1451 BUG_ON(efx->state == STATE_DISABLED);
1452
1453 efx->irq_soft_enabled = true;
1454 smp_wmb();
1455
1456 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001457 if (!channel->type->keep_eventq) {
1458 rc = efx_init_eventq(channel);
1459 if (rc)
1460 goto fail;
1461 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001462 efx_start_eventq(channel);
1463 }
1464
1465 efx_mcdi_mode_event(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01001466
1467 return 0;
1468fail:
1469 end_channel = channel;
1470 efx_for_each_channel(channel, efx) {
1471 if (channel == end_channel)
1472 break;
1473 efx_stop_eventq(channel);
1474 if (!channel->type->keep_eventq)
1475 efx_fini_eventq(channel);
1476 }
1477
1478 return rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001479}
1480
1481static void efx_soft_disable_interrupts(struct efx_nic *efx)
1482{
1483 struct efx_channel *channel;
1484
1485 if (efx->state == STATE_DISABLED)
1486 return;
1487
1488 efx_mcdi_mode_poll(efx);
1489
1490 efx->irq_soft_enabled = false;
1491 smp_wmb();
1492
1493 if (efx->legacy_irq)
1494 synchronize_irq(efx->legacy_irq);
1495
1496 efx_for_each_channel(channel, efx) {
1497 if (channel->irq)
1498 synchronize_irq(channel->irq);
1499
1500 efx_stop_eventq(channel);
1501 if (!channel->type->keep_eventq)
1502 efx_fini_eventq(channel);
1503 }
Ben Hutchingscade7152013-08-27 23:12:31 +01001504
1505 /* Flush the asynchronous MCDI request queue */
1506 efx_mcdi_flush_async(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01001507}
1508
Jon Cooper261e4d92013-04-15 18:51:54 +01001509static int efx_enable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001510{
Jon Cooper261e4d92013-04-15 18:51:54 +01001511 struct efx_channel *channel, *end_channel;
1512 int rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001513
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001514 BUG_ON(efx->state == STATE_DISABLED);
1515
Alexandre Ramesb28405b2013-03-21 16:41:43 +00001516 if (efx->eeh_disabled_legacy_irq) {
1517 enable_irq(efx->legacy_irq);
1518 efx->eeh_disabled_legacy_irq = false;
1519 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001520
Ben Hutchings86094f72013-08-21 19:51:04 +01001521 efx->type->irq_enable_master(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001522
1523 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001524 if (channel->type->keep_eventq) {
1525 rc = efx_init_eventq(channel);
1526 if (rc)
1527 goto fail;
1528 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001529 }
1530
Jon Cooper261e4d92013-04-15 18:51:54 +01001531 rc = efx_soft_enable_interrupts(efx);
1532 if (rc)
1533 goto fail;
1534
1535 return 0;
1536
1537fail:
1538 end_channel = channel;
1539 efx_for_each_channel(channel, efx) {
1540 if (channel == end_channel)
1541 break;
1542 if (channel->type->keep_eventq)
1543 efx_fini_eventq(channel);
1544 }
1545
1546 efx->type->irq_disable_non_ev(efx);
1547
1548 return rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001549}
1550
Ben Hutchingsd8291182012-10-05 23:35:41 +01001551static void efx_disable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001552{
1553 struct efx_channel *channel;
1554
Ben Hutchingsd8291182012-10-05 23:35:41 +01001555 efx_soft_disable_interrupts(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001556
1557 efx_for_each_channel(channel, efx) {
Ben Hutchingsd8291182012-10-05 23:35:41 +01001558 if (channel->type->keep_eventq)
Ben Hutchings7f967c02012-02-13 23:45:02 +00001559 efx_fini_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001560 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001561
Ben Hutchings86094f72013-08-21 19:51:04 +01001562 efx->type->irq_disable_non_ev(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001563}
1564
Ben Hutchings8ceee662008-04-27 12:55:59 +01001565static void efx_remove_interrupts(struct efx_nic *efx)
1566{
1567 struct efx_channel *channel;
1568
1569 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001570 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001571 channel->irq = 0;
1572 pci_disable_msi(efx->pci_dev);
1573 pci_disable_msix(efx->pci_dev);
1574
1575 /* Remove legacy interrupt */
1576 efx->legacy_irq = 0;
1577}
1578
Ben Hutchings8831da72008-09-01 12:47:48 +01001579static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001580{
Ben Hutchings602a5322011-05-16 17:32:39 +01001581 struct efx_channel *channel;
1582 struct efx_tx_queue *tx_queue;
1583
Ben Hutchings97653432011-01-12 18:26:56 +00001584 efx->tx_channel_offset =
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001585 separate_tx_channels ? efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001586
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001587 /* We need to mark which channels really have RX and TX
1588 * queues, and adjust the TX queue numbers if we have separate
Ben Hutchings602a5322011-05-16 17:32:39 +01001589 * RX-only and TX-only channels.
1590 */
1591 efx_for_each_channel(channel, efx) {
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001592 if (channel->channel < efx->n_rx_channels)
1593 channel->rx_queue.core_index = channel->channel;
1594 else
1595 channel->rx_queue.core_index = -1;
1596
Ben Hutchings602a5322011-05-16 17:32:39 +01001597 efx_for_each_channel_tx_queue(tx_queue, channel)
1598 tx_queue->queue -= (efx->tx_channel_offset *
1599 EFX_TXQ_TYPES);
1600 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001601}
1602
1603static int efx_probe_nic(struct efx_nic *efx)
1604{
Ben Hutchings765c9f42010-06-30 05:06:28 +00001605 size_t i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001606 int rc;
1607
Ben Hutchings62776d02010-06-23 11:30:07 +00001608 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001609
1610 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001611 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001612 if (rc)
1613 return rc;
1614
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001615 /* Determine the number of channels and queues by trying to hook
Ben Hutchings8ceee662008-04-27 12:55:59 +01001616 * in MSI-X interrupts. */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001617 rc = efx_probe_interrupts(efx);
1618 if (rc)
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001619 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001620
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001621 efx_set_channels(efx);
1622
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001623 rc = efx->type->dimension_resources(efx);
1624 if (rc)
1625 goto fail2;
Ben Hutchings28e47c42012-02-15 01:58:49 +00001626
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001627 if (efx->n_channels > 1)
Eric Dumazet7a20db32014-11-16 06:23:17 -08001628 netdev_rss_key_fill(&efx->rx_hash_key, sizeof(efx->rx_hash_key));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001629 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
Ben Hutchings278bc422011-12-15 13:56:49 +00001630 efx->rx_indir_table[i] =
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001631 ethtool_rxfh_indir_default(i, efx->rss_spread);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001632
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001633 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1634 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001635
1636 /* Initialise the interrupt moderation settings */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001637 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1638 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001639
1640 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001641
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001642fail2:
1643 efx_remove_interrupts(efx);
1644fail1:
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001645 efx->type->remove(efx);
1646 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001647}
1648
1649static void efx_remove_nic(struct efx_nic *efx)
1650{
Ben Hutchings62776d02010-06-23 11:30:07 +00001651 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001652
1653 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001654 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001655}
1656
Ben Hutchingsadd72472012-11-08 01:46:53 +00001657static int efx_probe_filters(struct efx_nic *efx)
1658{
1659 int rc;
1660
1661 spin_lock_init(&efx->filter_lock);
1662
1663 rc = efx->type->filter_table_probe(efx);
1664 if (rc)
1665 return rc;
1666
1667#ifdef CONFIG_RFS_ACCEL
1668 if (efx->type->offload_features & NETIF_F_NTUPLE) {
1669 efx->rps_flow_id = kcalloc(efx->type->max_rx_ip_filters,
1670 sizeof(*efx->rps_flow_id),
1671 GFP_KERNEL);
1672 if (!efx->rps_flow_id) {
1673 efx->type->filter_table_remove(efx);
1674 return -ENOMEM;
1675 }
1676 }
1677#endif
1678
1679 return 0;
1680}
1681
1682static void efx_remove_filters(struct efx_nic *efx)
1683{
1684#ifdef CONFIG_RFS_ACCEL
1685 kfree(efx->rps_flow_id);
1686#endif
1687 efx->type->filter_table_remove(efx);
1688}
1689
1690static void efx_restore_filters(struct efx_nic *efx)
1691{
1692 efx->type->filter_table_restore(efx);
1693}
1694
Ben Hutchings8ceee662008-04-27 12:55:59 +01001695/**************************************************************************
1696 *
1697 * NIC startup/shutdown
1698 *
1699 *************************************************************************/
1700
1701static int efx_probe_all(struct efx_nic *efx)
1702{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001703 int rc;
1704
Ben Hutchings8ceee662008-04-27 12:55:59 +01001705 rc = efx_probe_nic(efx);
1706 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001707 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001708 goto fail1;
1709 }
1710
Ben Hutchings8ceee662008-04-27 12:55:59 +01001711 rc = efx_probe_port(efx);
1712 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001713 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001714 goto fail2;
1715 }
1716
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00001717 BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
1718 if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
1719 rc = -EINVAL;
1720 goto fail3;
1721 }
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001722 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001723
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001724 rc = efx_probe_filters(efx);
1725 if (rc) {
1726 netif_err(efx, probe, efx->net_dev,
1727 "failed to create filter tables\n");
Ben Hutchings7f967c02012-02-13 23:45:02 +00001728 goto fail3;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001729 }
1730
Ben Hutchings7f967c02012-02-13 23:45:02 +00001731 rc = efx_probe_channels(efx);
1732 if (rc)
1733 goto fail4;
1734
Ben Hutchings8ceee662008-04-27 12:55:59 +01001735 return 0;
1736
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001737 fail4:
Ben Hutchings7f967c02012-02-13 23:45:02 +00001738 efx_remove_filters(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001739 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001740 efx_remove_port(efx);
1741 fail2:
1742 efx_remove_nic(efx);
1743 fail1:
1744 return rc;
1745}
1746
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001747/* If the interface is supposed to be running but is not, start
1748 * the hardware and software data path, regular activity for the port
1749 * (MAC statistics, link polling, etc.) and schedule the port to be
1750 * reconfigured. Interrupts must already be enabled. This function
1751 * is safe to call multiple times, so long as the NIC is not disabled.
1752 * Requires the RTNL lock.
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001753 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001754static void efx_start_all(struct efx_nic *efx)
1755{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001756 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001757 BUG_ON(efx->state == STATE_DISABLED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001758
1759 /* Check that it is appropriate to restart the interface. All
1760 * of these flags are safe to read under just the rtnl lock */
Edward Creee2835462014-04-16 19:27:48 +01001761 if (efx->port_enabled || !netif_running(efx->net_dev) ||
1762 efx->reset_pending)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001763 return;
1764
Ben Hutchings8ceee662008-04-27 12:55:59 +01001765 efx_start_port(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001766 efx_start_datapath(efx);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001767
Alexandre Rames626950d2013-01-14 17:20:22 +00001768 /* Start the hardware monitor if there is one */
1769 if (efx->type->monitor != NULL)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001770 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1771 efx_monitor_interval);
Alexandre Rames626950d2013-01-14 17:20:22 +00001772
1773 /* If link state detection is normally event-driven, we have
1774 * to poll now because we could have missed a change
1775 */
1776 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) {
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001777 mutex_lock(&efx->mac_lock);
1778 if (efx->phy_op->poll(efx))
1779 efx_link_status_changed(efx);
1780 mutex_unlock(&efx->mac_lock);
1781 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001782
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001783 efx->type->start_stats(efx);
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001784 efx->type->pull_stats(efx);
1785 spin_lock_bh(&efx->stats_lock);
1786 efx->type->update_stats(efx, NULL, NULL);
1787 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001788}
1789
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001790/* Quiesce the hardware and software data path, and regular activity
1791 * for the port without bringing the link down. Safe to call multiple
1792 * times with the NIC in almost any state, but interrupts should be
1793 * enabled. Requires the RTNL lock.
1794 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001795static void efx_stop_all(struct efx_nic *efx)
1796{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001797 EFX_ASSERT_RESET_SERIALISED(efx);
1798
1799 /* port_enabled can be read safely under the rtnl lock */
1800 if (!efx->port_enabled)
1801 return;
1802
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001803 /* update stats before we go down so we can accurately count
1804 * rx_nodesc_drops
1805 */
1806 efx->type->pull_stats(efx);
1807 spin_lock_bh(&efx->stats_lock);
1808 efx->type->update_stats(efx, NULL, NULL);
1809 spin_unlock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001810 efx->type->stop_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001811 efx_stop_port(efx);
1812
Ben Hutchings29c69a42013-01-28 19:01:06 +00001813 /* Stop the kernel transmit interface. This is only valid if
1814 * the device is stopped or detached; otherwise the watchdog
1815 * may fire immediately.
1816 */
1817 WARN_ON(netif_running(efx->net_dev) &&
1818 netif_device_present(efx->net_dev));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001819 netif_tx_disable(efx->net_dev);
1820
1821 efx_stop_datapath(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001822}
1823
1824static void efx_remove_all(struct efx_nic *efx)
1825{
Ben Hutchings46426102010-09-10 06:42:33 +00001826 efx_remove_channels(efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001827 efx_remove_filters(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001828 efx_remove_port(efx);
1829 efx_remove_nic(efx);
1830}
1831
Ben Hutchings8ceee662008-04-27 12:55:59 +01001832/**************************************************************************
1833 *
1834 * Interrupt moderation
1835 *
1836 **************************************************************************/
1837
Ben Hutchingscc180b62011-12-08 19:51:47 +00001838static unsigned int irq_mod_ticks(unsigned int usecs, unsigned int quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001839{
Ben Hutchingsb548f972011-09-05 07:41:44 +00001840 if (usecs == 0)
1841 return 0;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001842 if (usecs * 1000 < quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001843 return 1; /* never round down to 0 */
Ben Hutchingscc180b62011-12-08 19:51:47 +00001844 return usecs * 1000 / quantum_ns;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001845}
1846
Ben Hutchings8ceee662008-04-27 12:55:59 +01001847/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001848int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1849 unsigned int rx_usecs, bool rx_adaptive,
1850 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001851{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001852 struct efx_channel *channel;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001853 unsigned int irq_mod_max = DIV_ROUND_UP(efx->type->timer_period_max *
1854 efx->timer_quantum_ns,
1855 1000);
1856 unsigned int tx_ticks;
1857 unsigned int rx_ticks;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001858
1859 EFX_ASSERT_RESET_SERIALISED(efx);
1860
Ben Hutchingscc180b62011-12-08 19:51:47 +00001861 if (tx_usecs > irq_mod_max || rx_usecs > irq_mod_max)
Ben Hutchings9e393b32011-09-05 07:43:04 +00001862 return -EINVAL;
1863
Ben Hutchingscc180b62011-12-08 19:51:47 +00001864 tx_ticks = irq_mod_ticks(tx_usecs, efx->timer_quantum_ns);
1865 rx_ticks = irq_mod_ticks(rx_usecs, efx->timer_quantum_ns);
1866
Ben Hutchings9e393b32011-09-05 07:43:04 +00001867 if (tx_ticks != rx_ticks && efx->tx_channel_offset == 0 &&
1868 !rx_may_override_tx) {
1869 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1870 "RX and TX IRQ moderation must be equal\n");
1871 return -EINVAL;
1872 }
1873
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001874 efx->irq_rx_adaptive = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001875 efx->irq_rx_moderation = rx_ticks;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001876 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00001877 if (efx_channel_has_rx_queue(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001878 channel->irq_moderation = rx_ticks;
Ben Hutchings525da902011-02-07 23:04:38 +00001879 else if (efx_channel_has_tx_queues(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001880 channel->irq_moderation = tx_ticks;
1881 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00001882
1883 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001884}
1885
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001886void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
1887 unsigned int *rx_usecs, bool *rx_adaptive)
1888{
Ben Hutchingscc180b62011-12-08 19:51:47 +00001889 /* We must round up when converting ticks to microseconds
1890 * because we round down when converting the other way.
1891 */
1892
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001893 *rx_adaptive = efx->irq_rx_adaptive;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001894 *rx_usecs = DIV_ROUND_UP(efx->irq_rx_moderation *
1895 efx->timer_quantum_ns,
1896 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001897
1898 /* If channels are shared between RX and TX, so is IRQ
1899 * moderation. Otherwise, IRQ moderation is the same for all
1900 * TX channels and is not adaptive.
1901 */
1902 if (efx->tx_channel_offset == 0)
1903 *tx_usecs = *rx_usecs;
1904 else
Ben Hutchingscc180b62011-12-08 19:51:47 +00001905 *tx_usecs = DIV_ROUND_UP(
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001906 efx->channel[efx->tx_channel_offset]->irq_moderation *
Ben Hutchingscc180b62011-12-08 19:51:47 +00001907 efx->timer_quantum_ns,
1908 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001909}
1910
Ben Hutchings8ceee662008-04-27 12:55:59 +01001911/**************************************************************************
1912 *
1913 * Hardware monitor
1914 *
1915 **************************************************************************/
1916
Ben Hutchingse254c272010-09-20 08:44:10 +00001917/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001918static void efx_monitor(struct work_struct *data)
1919{
1920 struct efx_nic *efx = container_of(data, struct efx_nic,
1921 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001922
Ben Hutchings62776d02010-06-23 11:30:07 +00001923 netif_vdbg(efx, timer, efx->net_dev,
1924 "hardware monitor executing on CPU %d\n",
1925 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001926 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001927
Ben Hutchings8ceee662008-04-27 12:55:59 +01001928 /* If the mac_lock is already held then it is likely a port
1929 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00001930 * most of the work of monitor() anyway. */
1931 if (mutex_trylock(&efx->mac_lock)) {
1932 if (efx->port_enabled)
1933 efx->type->monitor(efx);
1934 mutex_unlock(&efx->mac_lock);
1935 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001936
Ben Hutchings8ceee662008-04-27 12:55:59 +01001937 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1938 efx_monitor_interval);
1939}
1940
1941/**************************************************************************
1942 *
1943 * ioctls
1944 *
1945 *************************************************************************/
1946
1947/* Net device ioctl
1948 * Context: process, rtnl_lock() held.
1949 */
1950static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
1951{
Ben Hutchings767e4682008-09-01 12:43:14 +01001952 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00001953 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001954
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001955 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings433dc9b2013-11-14 01:26:21 +00001956 return efx_ptp_set_ts_config(efx, ifr);
1957 if (cmd == SIOCGHWTSTAMP)
1958 return efx_ptp_get_ts_config(efx, ifr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001959
Ben Hutchings68e7f452009-04-29 08:05:08 +00001960 /* Convert phy_id from older PRTAD/DEVAD format */
1961 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
1962 (data->phy_id & 0xfc00) == 0x0400)
1963 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
1964
1965 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001966}
1967
1968/**************************************************************************
1969 *
1970 * NAPI interface
1971 *
1972 **************************************************************************/
1973
Ben Hutchings7f967c02012-02-13 23:45:02 +00001974static void efx_init_napi_channel(struct efx_channel *channel)
1975{
1976 struct efx_nic *efx = channel->efx;
1977
1978 channel->napi_dev = efx->net_dev;
1979 netif_napi_add(channel->napi_dev, &channel->napi_str,
1980 efx_poll, napi_weight);
Alexandre Rames36763262014-07-22 14:03:25 +01001981 napi_hash_add(&channel->napi_str);
1982 efx_channel_init_lock(channel);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001983}
1984
Ben Hutchingse8f14992010-12-07 19:47:34 +00001985static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001986{
1987 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001988
Ben Hutchings7f967c02012-02-13 23:45:02 +00001989 efx_for_each_channel(channel, efx)
1990 efx_init_napi_channel(channel);
Ben Hutchingse8f14992010-12-07 19:47:34 +00001991}
1992
1993static void efx_fini_napi_channel(struct efx_channel *channel)
1994{
Alexandre Rames36763262014-07-22 14:03:25 +01001995 if (channel->napi_dev) {
Ben Hutchingse8f14992010-12-07 19:47:34 +00001996 netif_napi_del(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +01001997 napi_hash_del(&channel->napi_str);
1998 }
Ben Hutchingse8f14992010-12-07 19:47:34 +00001999 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002000}
2001
2002static void efx_fini_napi(struct efx_nic *efx)
2003{
2004 struct efx_channel *channel;
2005
Ben Hutchingse8f14992010-12-07 19:47:34 +00002006 efx_for_each_channel(channel, efx)
2007 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002008}
2009
2010/**************************************************************************
2011 *
2012 * Kernel netpoll interface
2013 *
2014 *************************************************************************/
2015
2016#ifdef CONFIG_NET_POLL_CONTROLLER
2017
2018/* Although in the common case interrupts will be disabled, this is not
2019 * guaranteed. However, all our work happens inside the NAPI callback,
2020 * so no locking is required.
2021 */
2022static void efx_netpoll(struct net_device *net_dev)
2023{
Ben Hutchings767e4682008-09-01 12:43:14 +01002024 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002025 struct efx_channel *channel;
2026
Ben Hutchings64ee3122008-09-01 12:47:38 +01002027 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002028 efx_schedule_channel(channel);
2029}
2030
2031#endif
2032
Alexandre Rames36763262014-07-22 14:03:25 +01002033#ifdef CONFIG_NET_RX_BUSY_POLL
2034static int efx_busy_poll(struct napi_struct *napi)
2035{
2036 struct efx_channel *channel =
2037 container_of(napi, struct efx_channel, napi_str);
2038 struct efx_nic *efx = channel->efx;
2039 int budget = 4;
2040 int old_rx_packets, rx_packets;
2041
2042 if (!netif_running(efx->net_dev))
2043 return LL_FLUSH_FAILED;
2044
2045 if (!efx_channel_lock_poll(channel))
2046 return LL_FLUSH_BUSY;
2047
2048 old_rx_packets = channel->rx_queue.rx_packets;
2049 efx_process_channel(channel, budget);
2050
2051 rx_packets = channel->rx_queue.rx_packets - old_rx_packets;
2052
2053 /* There is no race condition with NAPI here.
2054 * NAPI will automatically be rescheduled if it yielded during busy
2055 * polling, because it was not able to take the lock and thus returned
2056 * the full budget.
2057 */
2058 efx_channel_unlock_poll(channel);
2059
2060 return rx_packets;
2061}
2062#endif
2063
Ben Hutchings8ceee662008-04-27 12:55:59 +01002064/**************************************************************************
2065 *
2066 * Kernel net device interface
2067 *
2068 *************************************************************************/
2069
2070/* Context: process, rtnl_lock() held. */
2071static int efx_net_open(struct net_device *net_dev)
2072{
Ben Hutchings767e4682008-09-01 12:43:14 +01002073 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002074 int rc;
2075
Ben Hutchings62776d02010-06-23 11:30:07 +00002076 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
2077 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002078
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002079 rc = efx_check_disabled(efx);
2080 if (rc)
2081 return rc;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002082 if (efx->phy_mode & PHY_MODE_SPECIAL)
2083 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002084 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
2085 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002086
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00002087 /* Notify the kernel of the link state polled during driver load,
2088 * before the monitor starts running */
2089 efx_link_status_changed(efx);
2090
Ben Hutchings8ceee662008-04-27 12:55:59 +01002091 efx_start_all(efx);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002092 efx_selftest_async_start(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002093 return 0;
2094}
2095
2096/* Context: process, rtnl_lock() held.
2097 * Note that the kernel will ignore our return code; this method
2098 * should really be a void.
2099 */
2100static int efx_net_stop(struct net_device *net_dev)
2101{
Ben Hutchings767e4682008-09-01 12:43:14 +01002102 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002103
Ben Hutchings62776d02010-06-23 11:30:07 +00002104 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
2105 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002106
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002107 /* Stop the device and flush all the channels */
2108 efx_stop_all(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002109
2110 return 0;
2111}
2112
Ben Hutchings5b9e2072008-05-16 21:18:14 +01002113/* Context: process, dev_base_lock or RTNL held, non-blocking. */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +00002114static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev,
2115 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002116{
Ben Hutchings767e4682008-09-01 12:43:14 +01002117 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002118
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002119 spin_lock_bh(&efx->stats_lock);
Ben Hutchingscd0ecc92012-12-14 21:52:56 +00002120 efx->type->update_stats(efx, NULL, stats);
Ben Hutchings1cb34522011-09-02 23:23:00 +01002121 spin_unlock_bh(&efx->stats_lock);
2122
Ben Hutchings8ceee662008-04-27 12:55:59 +01002123 return stats;
2124}
2125
2126/* Context: netif_tx_lock held, BHs disabled. */
2127static void efx_watchdog(struct net_device *net_dev)
2128{
Ben Hutchings767e4682008-09-01 12:43:14 +01002129 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002130
Ben Hutchings62776d02010-06-23 11:30:07 +00002131 netif_err(efx, tx_err, efx->net_dev,
2132 "TX stuck with port_enabled=%d: resetting channels\n",
2133 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002134
Ben Hutchings739bb23d2008-11-04 20:35:36 +00002135 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002136}
2137
2138
2139/* Context: process, rtnl_lock() held. */
2140static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2141{
Ben Hutchings767e4682008-09-01 12:43:14 +01002142 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002143 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002144
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002145 rc = efx_check_disabled(efx);
2146 if (rc)
2147 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002148 if (new_mtu > EFX_MAX_MTU)
2149 return -EINVAL;
2150
Ben Hutchings62776d02010-06-23 11:30:07 +00002151 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002152
Ben Hutchings29c69a42013-01-28 19:01:06 +00002153 efx_device_detach_sync(efx);
2154 efx_stop_all(efx);
2155
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002156 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002157 net_dev->mtu = new_mtu;
Ben Hutchings710b2082011-09-03 00:15:00 +01002158 efx->type->reconfigure_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002159 mutex_unlock(&efx->mac_lock);
2160
Ben Hutchings8ceee662008-04-27 12:55:59 +01002161 efx_start_all(efx);
Ben Hutchings29c69a42013-01-28 19:01:06 +00002162 netif_device_attach(efx->net_dev);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00002163 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002164}
2165
2166static int efx_set_mac_address(struct net_device *net_dev, void *data)
2167{
Ben Hutchings767e4682008-09-01 12:43:14 +01002168 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002169 struct sockaddr *addr = data;
Ben Hutchingse0b3ae32014-02-12 18:59:54 +00002170 u8 *new_addr = addr->sa_data;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002171
Ben Hutchings8ceee662008-04-27 12:55:59 +01002172 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002173 netif_err(efx, drv, efx->net_dev,
2174 "invalid ethernet MAC address requested: %pM\n",
2175 new_addr);
Danny Kukawka504f9b52012-02-21 02:07:49 +00002176 return -EADDRNOTAVAIL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002177 }
2178
Edward Creecd84ff42014-03-07 18:27:41 +00002179 ether_addr_copy(net_dev->dev_addr, new_addr);
Shradha Shah7fa8d542015-05-06 00:55:13 +01002180 if (efx->type->sriov_mac_address_changed)
2181 efx->type->sriov_mac_address_changed(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002182
2183 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002184 mutex_lock(&efx->mac_lock);
Ben Hutchings710b2082011-09-03 00:15:00 +01002185 efx->type->reconfigure_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002186 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002187
2188 return 0;
2189}
2190
Ben Hutchingsa816f752008-09-01 12:49:12 +01002191/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002192static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002193{
Ben Hutchings767e4682008-09-01 12:43:14 +01002194 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002195
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00002196 if (efx->port_enabled)
2197 queue_work(efx->workqueue, &efx->mac_work);
2198 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002199}
2200
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002201static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002202{
2203 struct efx_nic *efx = netdev_priv(net_dev);
2204
2205 /* If disabling RX n-tuple filtering, clear existing filters */
2206 if (net_dev->features & ~data & NETIF_F_NTUPLE)
Ben Hutchingsfbd79122013-11-21 19:15:03 +00002207 return efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002208
2209 return 0;
2210}
2211
Shradha Shah7fa8d542015-05-06 00:55:13 +01002212static const struct net_device_ops efx_netdev_ops = {
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002213 .ndo_open = efx_net_open,
2214 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00002215 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002216 .ndo_tx_timeout = efx_watchdog,
2217 .ndo_start_xmit = efx_hard_start_xmit,
2218 .ndo_validate_addr = eth_validate_addr,
2219 .ndo_do_ioctl = efx_ioctl,
2220 .ndo_change_mtu = efx_change_mtu,
2221 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002222 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002223 .ndo_set_features = efx_set_features,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002224#ifdef CONFIG_SFC_SRIOV
Shradha Shah7fa8d542015-05-06 00:55:13 +01002225 .ndo_set_vf_mac = efx_sriov_set_vf_mac,
2226 .ndo_set_vf_vlan = efx_sriov_set_vf_vlan,
2227 .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk,
2228 .ndo_get_vf_config = efx_sriov_get_vf_config,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002229#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002230#ifdef CONFIG_NET_POLL_CONTROLLER
2231 .ndo_poll_controller = efx_netpoll,
2232#endif
Ben Hutchings94b274b2011-01-10 21:18:20 +00002233 .ndo_setup_tc = efx_setup_tc,
Alexandre Rames36763262014-07-22 14:03:25 +01002234#ifdef CONFIG_NET_RX_BUSY_POLL
2235 .ndo_busy_poll = efx_busy_poll,
2236#endif
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002237#ifdef CONFIG_RFS_ACCEL
2238 .ndo_rx_flow_steer = efx_filter_rfs,
2239#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002240};
2241
Ben Hutchings7dde5962008-12-12 22:09:38 -08002242static void efx_update_name(struct efx_nic *efx)
2243{
2244 strcpy(efx->name, efx->net_dev->name);
2245 efx_mtd_rename(efx);
2246 efx_set_channel_names(efx);
2247}
2248
Ben Hutchings8ceee662008-04-27 12:55:59 +01002249static int efx_netdev_event(struct notifier_block *this,
2250 unsigned long event, void *ptr)
2251{
Jiri Pirko351638e2013-05-28 01:30:21 +00002252 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002253
Shradha Shah7fa8d542015-05-06 00:55:13 +01002254 if ((net_dev->netdev_ops == &efx_netdev_ops) &&
Ben Hutchings7dde5962008-12-12 22:09:38 -08002255 event == NETDEV_CHANGENAME)
2256 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002257
2258 return NOTIFY_DONE;
2259}
2260
2261static struct notifier_block efx_netdev_notifier = {
2262 .notifier_call = efx_netdev_event,
2263};
2264
Ben Hutchings06d5e192008-12-12 21:47:23 -08002265static ssize_t
2266show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2267{
2268 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2269 return sprintf(buf, "%d\n", efx->phy_type);
2270}
Ben Hutchings776fbcc2013-06-18 17:45:40 +01002271static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002272
Ben Hutchings8ceee662008-04-27 12:55:59 +01002273static int efx_register_netdev(struct efx_nic *efx)
2274{
2275 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002276 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002277 int rc;
2278
2279 net_dev->watchdog_timeo = 5 * HZ;
2280 net_dev->irq = efx->pci_dev->irq;
Shradha Shah7fa8d542015-05-06 00:55:13 +01002281 net_dev->netdev_ops = &efx_netdev_ops;
2282 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0)
Ben Hutchings8127d662013-08-29 19:19:29 +01002283 net_dev->priv_flags |= IFF_UNICAST_FLT;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002284 net_dev->ethtool_ops = &efx_ethtool_ops;
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002285 net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002286
Ben Hutchings7dde5962008-12-12 22:09:38 -08002287 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00002288
Ben Hutchings7153f622012-07-27 20:50:52 +01002289 /* Enable resets to be scheduled and check whether any were
2290 * already requested. If so, the NIC is probably hosed so we
2291 * abort.
2292 */
2293 efx->state = STATE_READY;
2294 smp_mb(); /* ensure we change state before checking reset_pending */
2295 if (efx->reset_pending) {
2296 netif_err(efx, probe, efx->net_dev,
2297 "aborting probe due to scheduled reset\n");
2298 rc = -EIO;
2299 goto fail_locked;
2300 }
2301
Ben Hutchingsaed06282009-08-26 08:16:27 +00002302 rc = dev_alloc_name(net_dev, net_dev->name);
2303 if (rc < 0)
2304 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002305 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002306
Ben Hutchings8f8b3d52012-08-24 18:04:38 +01002307 /* Always start with carrier off; PHY events will detect the link */
2308 netif_carrier_off(net_dev);
2309
Ben Hutchingsaed06282009-08-26 08:16:27 +00002310 rc = register_netdevice(net_dev);
2311 if (rc)
2312 goto fail_locked;
2313
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002314 efx_for_each_channel(channel, efx) {
2315 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00002316 efx_for_each_channel_tx_queue(tx_queue, channel)
2317 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002318 }
2319
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002320 efx_associate(efx);
2321
Ben Hutchings7dde5962008-12-12 22:09:38 -08002322 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002323
Ben Hutchings06d5e192008-12-12 21:47:23 -08002324 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2325 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002326 netif_err(efx, drv, efx->net_dev,
2327 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08002328 goto fail_registered;
2329 }
2330
Ben Hutchings8ceee662008-04-27 12:55:59 +01002331 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08002332
Ben Hutchings7153f622012-07-27 20:50:52 +01002333fail_registered:
2334 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002335 efx_dissociate(efx);
Ben Hutchings7153f622012-07-27 20:50:52 +01002336 unregister_netdevice(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002337fail_locked:
Ben Hutchings7153f622012-07-27 20:50:52 +01002338 efx->state = STATE_UNINIT;
Ben Hutchingsaed06282009-08-26 08:16:27 +00002339 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00002340 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00002341 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002342}
2343
2344static void efx_unregister_netdev(struct efx_nic *efx)
2345{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002346 if (!efx->net_dev)
2347 return;
2348
Ben Hutchings767e4682008-09-01 12:43:14 +01002349 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002350
Ben Hutchings73ba7b62012-01-09 19:47:08 +00002351 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2352 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
Ben Hutchings7153f622012-07-27 20:50:52 +01002353
2354 rtnl_lock();
2355 unregister_netdevice(efx->net_dev);
2356 efx->state = STATE_UNINIT;
2357 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002358}
2359
2360/**************************************************************************
2361 *
2362 * Device reset and suspend
2363 *
2364 **************************************************************************/
2365
Ben Hutchings2467ca42008-09-01 12:48:50 +01002366/* Tears down the entire software state and most of the hardware state
2367 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002368void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002369{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002370 EFX_ASSERT_RESET_SERIALISED(efx);
2371
Edward Creee2835462014-04-16 19:27:48 +01002372 if (method == RESET_TYPE_MCDI_TIMEOUT)
2373 efx->type->prepare_flr(efx);
2374
Ben Hutchings2467ca42008-09-01 12:48:50 +01002375 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002376 efx_disable_interrupts(efx);
Ben Hutchings5642cee2012-07-27 19:35:52 +01002377
2378 mutex_lock(&efx->mac_lock);
Steve Hodgson4b988282009-01-29 17:50:51 +00002379 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE)
2380 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002381 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002382}
2383
Ben Hutchings2467ca42008-09-01 12:48:50 +01002384/* This function will always ensure that the locks acquired in
2385 * efx_reset_down() are released. A failure return code indicates
2386 * that we were unable to reinitialise the hardware, and the
2387 * driver should be disabled. If ok is false, then the rx and tx
2388 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002389int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002390{
2391 int rc;
2392
Ben Hutchings2467ca42008-09-01 12:48:50 +01002393 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002394
Edward Creee2835462014-04-16 19:27:48 +01002395 if (method == RESET_TYPE_MCDI_TIMEOUT)
2396 efx->type->finish_flr(efx);
2397
2398 /* Ensure that SRAM is initialised even if we're disabling the device */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002399 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002400 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002401 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002402 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002403 }
2404
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002405 if (!ok)
2406 goto fail;
2407
Steve Hodgson4b988282009-01-29 17:50:51 +00002408 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002409 rc = efx->phy_op->init(efx);
2410 if (rc)
2411 goto fail;
2412 if (efx->phy_op->reconfigure(efx))
Ben Hutchings62776d02010-06-23 11:30:07 +00002413 netif_err(efx, drv, efx->net_dev,
2414 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002415 }
2416
Jon Cooper261e4d92013-04-15 18:51:54 +01002417 rc = efx_enable_interrupts(efx);
2418 if (rc)
2419 goto fail;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002420 efx_restore_filters(efx);
Shradha Shah7fa8d542015-05-06 00:55:13 +01002421 if (efx->type->sriov_reset)
2422 efx->type->sriov_reset(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002423
2424 mutex_unlock(&efx->mac_lock);
2425
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002426 efx_start_all(efx);
2427
2428 return 0;
2429
2430fail:
2431 efx->port_initialized = false;
2432
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002433 mutex_unlock(&efx->mac_lock);
2434
Ben Hutchings8ceee662008-04-27 12:55:59 +01002435 return rc;
2436}
2437
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002438/* Reset the NIC using the specified method. Note that the reset may
2439 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002440 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002441 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002442 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002443int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002444{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002445 int rc, rc2;
2446 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002447
Ben Hutchings62776d02010-06-23 11:30:07 +00002448 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2449 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002450
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002451 efx_device_detach_sync(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002452 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002453
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002454 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002455 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002456 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002457 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002458 }
2459
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002460 /* Clear flags for the scopes we covered. We assume the NIC and
2461 * driver are now quiescent so that there is no race here.
2462 */
Edward Creee2835462014-04-16 19:27:48 +01002463 if (method < RESET_TYPE_MAX_METHOD)
2464 efx->reset_pending &= -(1 << (method + 1));
2465 else /* it doesn't fit into the well-ordered scope hierarchy */
2466 __clear_bit(method, &efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002467
2468 /* Reinitialise bus-mastering, which may have been turned off before
2469 * the reset was scheduled. This is still appropriate, even in the
2470 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2471 * can respond to requests. */
2472 pci_set_master(efx->pci_dev);
2473
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002474out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002475 /* Leave device stopped if necessary */
Alexandre Rames626950d2013-01-14 17:20:22 +00002476 disabled = rc ||
2477 method == RESET_TYPE_DISABLE ||
2478 method == RESET_TYPE_RECOVER_OR_DISABLE;
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002479 rc2 = efx_reset_up(efx, method, !disabled);
2480 if (rc2) {
2481 disabled = true;
2482 if (!rc)
2483 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002484 }
2485
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002486 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002487 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002488 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002489 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002490 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002491 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingse4abce82011-05-16 18:51:24 +01002492 netif_device_attach(efx->net_dev);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002493 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002494 return rc;
2495}
2496
Alexandre Rames626950d2013-01-14 17:20:22 +00002497/* Try recovery mechanisms.
2498 * For now only EEH is supported.
2499 * Returns 0 if the recovery mechanisms are unsuccessful.
2500 * Returns a non-zero value otherwise.
2501 */
Alexandre Ramesb28405b2013-03-21 16:41:43 +00002502int efx_try_recovery(struct efx_nic *efx)
Alexandre Rames626950d2013-01-14 17:20:22 +00002503{
2504#ifdef CONFIG_EEH
2505 /* A PCI error can occur and not be seen by EEH because nothing
2506 * happens on the PCI bus. In this case the driver may fail and
2507 * schedule a 'recover or reset', leading to this recovery handler.
2508 * Manually call the eeh failure check function.
2509 */
Benjamin Herrenschmidt12a89db2015-03-23 14:00:47 +11002510 struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002511 if (eeh_dev_check_failure(eehdev)) {
2512 /* The EEH mechanisms will handle the error and reset the
2513 * device if necessary.
2514 */
2515 return 1;
2516 }
2517#endif
2518 return 0;
2519}
2520
Jon Cooper74cd60a2013-09-16 14:18:51 +01002521static void efx_wait_for_bist_end(struct efx_nic *efx)
2522{
2523 int i;
2524
2525 for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
2526 if (efx_mcdi_poll_reboot(efx))
2527 goto out;
2528 msleep(BIST_WAIT_DELAY_MS);
2529 }
2530
2531 netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
2532out:
2533 /* Either way unset the BIST flag. If we found no reboot we probably
2534 * won't recover, but we should try.
2535 */
2536 efx->mc_bist_for_other_fn = false;
2537}
2538
Ben Hutchings8ceee662008-04-27 12:55:59 +01002539/* The worker thread exists so that code that cannot sleep can
2540 * schedule a reset for later.
2541 */
2542static void efx_reset_work(struct work_struct *data)
2543{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002544 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Alexandre Rames626950d2013-01-14 17:20:22 +00002545 unsigned long pending;
2546 enum reset_type method;
2547
2548 pending = ACCESS_ONCE(efx->reset_pending);
2549 method = fls(pending) - 1;
2550
Jon Cooper74cd60a2013-09-16 14:18:51 +01002551 if (method == RESET_TYPE_MC_BIST)
2552 efx_wait_for_bist_end(efx);
2553
Alexandre Rames626950d2013-01-14 17:20:22 +00002554 if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
2555 method == RESET_TYPE_RECOVER_OR_ALL) &&
2556 efx_try_recovery(efx))
2557 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002558
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002559 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00002560 return;
2561
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002562 rtnl_lock();
Ben Hutchings7153f622012-07-27 20:50:52 +01002563
2564 /* We checked the state in efx_schedule_reset() but it may
2565 * have changed by now. Now that we have the RTNL lock,
2566 * it cannot change again.
2567 */
2568 if (efx->state == STATE_READY)
Alexandre Rames626950d2013-01-14 17:20:22 +00002569 (void)efx_reset(efx, method);
Ben Hutchings7153f622012-07-27 20:50:52 +01002570
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002571 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002572}
2573
2574void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2575{
2576 enum reset_type method;
2577
Alexandre Rames626950d2013-01-14 17:20:22 +00002578 if (efx->state == STATE_RECOVERY) {
2579 netif_dbg(efx, drv, efx->net_dev,
2580 "recovering: skip scheduling %s reset\n",
2581 RESET_TYPE(type));
2582 return;
2583 }
2584
Ben Hutchings8ceee662008-04-27 12:55:59 +01002585 switch (type) {
2586 case RESET_TYPE_INVISIBLE:
2587 case RESET_TYPE_ALL:
Alexandre Rames626950d2013-01-14 17:20:22 +00002588 case RESET_TYPE_RECOVER_OR_ALL:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002589 case RESET_TYPE_WORLD:
2590 case RESET_TYPE_DISABLE:
Alexandre Rames626950d2013-01-14 17:20:22 +00002591 case RESET_TYPE_RECOVER_OR_DISABLE:
Jon Cooper74cd60a2013-09-16 14:18:51 +01002592 case RESET_TYPE_MC_BIST:
Edward Creee2835462014-04-16 19:27:48 +01002593 case RESET_TYPE_MCDI_TIMEOUT:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002594 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002595 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2596 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002597 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002598 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002599 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00002600 netif_dbg(efx, drv, efx->net_dev,
2601 "scheduling %s reset for %s\n",
2602 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002603 break;
2604 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002605
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002606 set_bit(method, &efx->reset_pending);
Ben Hutchings7153f622012-07-27 20:50:52 +01002607 smp_mb(); /* ensure we change reset_pending before checking state */
2608
2609 /* If we're not READY then just leave the flags set as the cue
2610 * to abort probing or reschedule the reset later.
2611 */
2612 if (ACCESS_ONCE(efx->state) != STATE_READY)
2613 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002614
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002615 /* efx_process_channel() will no longer read events once a
2616 * reset is scheduled. So switch back to poll'd MCDI completions. */
2617 efx_mcdi_mode_poll(efx);
2618
Steve Hodgson1ab00622008-12-12 21:33:02 -08002619 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002620}
2621
2622/**************************************************************************
2623 *
2624 * List of NICs we support
2625 *
2626 **************************************************************************/
2627
2628/* PCI device ID table */
Benoit Taine9baa3c32014-08-08 15:56:03 +02002629static const struct pci_device_id efx_pci_table[] = {
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002630 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2631 PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002632 .driver_data = (unsigned long) &falcon_a1_nic_type},
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002633 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2634 PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002635 .driver_data = (unsigned long) &falcon_b0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002636 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002637 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002638 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002639 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8127d662013-08-29 19:19:29 +01002640 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */
2641 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Mateusz Wrzesinski3b06a002014-07-14 08:38:49 +01002642 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923), /* SFC9140 PF */
2643 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002644 {0} /* end of list */
2645};
2646
2647/**************************************************************************
2648 *
Ben Hutchings37594332009-11-23 16:05:45 +00002649 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002650 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002651 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002652 * Needed so all function pointers are valid and do not have to be tested
2653 * before use
2654 *
2655 **************************************************************************/
2656int efx_port_dummy_op_int(struct efx_nic *efx)
2657{
2658 return 0;
2659}
2660void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002661
2662static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002663{
2664 return false;
2665}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002666
stephen hemminger6c8c2512011-04-14 05:50:12 +00002667static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002668 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002669 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002670 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002671 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002672};
2673
Ben Hutchings8ceee662008-04-27 12:55:59 +01002674/**************************************************************************
2675 *
2676 * Data housekeeping
2677 *
2678 **************************************************************************/
2679
2680/* This zeroes out and then fills in the invariants in a struct
2681 * efx_nic (including all sub-structures).
2682 */
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002683static int efx_init_struct(struct efx_nic *efx,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002684 struct pci_dev *pci_dev, struct net_device *net_dev)
2685{
Ben Hutchings46426102010-09-10 06:42:33 +00002686 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002687
2688 /* Initialise common structures */
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002689 INIT_LIST_HEAD(&efx->node);
2690 INIT_LIST_HEAD(&efx->secondary_list);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002691 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002692#ifdef CONFIG_SFC_MTD
2693 INIT_LIST_HEAD(&efx->mtd_list);
2694#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002695 INIT_WORK(&efx->reset_work, efx_reset_work);
2696 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002697 INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002698 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002699 efx->msg_enable = debug;
Ben Hutchingsf16aeea2012-07-27 19:31:16 +01002700 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002701 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002702
2703 efx->net_dev = net_dev;
Jon Cooper43a37392012-10-18 15:49:54 +01002704 efx->rx_prefix_size = efx->type->rx_prefix_size;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +04002705 efx->rx_ip_align =
2706 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
Jon Cooper43a37392012-10-18 15:49:54 +01002707 efx->rx_packet_hash_offset =
2708 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
Jon Cooperbd9a2652013-11-18 12:54:41 +00002709 efx->rx_packet_ts_offset =
2710 efx->type->rx_ts_offset - efx->type->rx_prefix_size;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002711 spin_lock_init(&efx->stats_lock);
2712 mutex_init(&efx->mac_lock);
2713 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002714 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002715 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002716 init_waitqueue_head(&efx->flush_wq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002717
2718 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002719 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2720 if (!efx->channel[i])
2721 goto fail;
Ben Hutchingsd8291182012-10-05 23:35:41 +01002722 efx->msi_context[i].efx = efx;
2723 efx->msi_context[i].index = i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002724 }
2725
Ben Hutchings8ceee662008-04-27 12:55:59 +01002726 /* Higher numbered interrupt modes are less capable! */
2727 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2728 interrupt_mode);
2729
Ben Hutchings6977dc62008-12-26 13:44:39 -08002730 /* Would be good to use the net_dev name, but we're too early */
2731 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2732 pci_name(pci_dev));
2733 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002734 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00002735 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002736
Ben Hutchings8ceee662008-04-27 12:55:59 +01002737 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00002738
2739fail:
2740 efx_fini_struct(efx);
2741 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002742}
2743
2744static void efx_fini_struct(struct efx_nic *efx)
2745{
Ben Hutchings8313aca2010-09-10 06:41:57 +00002746 int i;
2747
2748 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2749 kfree(efx->channel[i]);
2750
Ben Hutchingsef215e62013-12-05 20:13:22 +00002751 kfree(efx->vpd_sn);
2752
Ben Hutchings8ceee662008-04-27 12:55:59 +01002753 if (efx->workqueue) {
2754 destroy_workqueue(efx->workqueue);
2755 efx->workqueue = NULL;
2756 }
2757}
2758
Edward Creee4d112e2014-07-15 11:58:12 +01002759void efx_update_sw_stats(struct efx_nic *efx, u64 *stats)
2760{
2761 u64 n_rx_nodesc_trunc = 0;
2762 struct efx_channel *channel;
2763
2764 efx_for_each_channel(channel, efx)
2765 n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc;
2766 stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc;
2767 stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops);
2768}
2769
Ben Hutchings8ceee662008-04-27 12:55:59 +01002770/**************************************************************************
2771 *
2772 * PCI interface
2773 *
2774 **************************************************************************/
2775
2776/* Main body of final NIC shutdown code
2777 * This is called only at module unload (or hotplug removal).
2778 */
2779static void efx_pci_remove_main(struct efx_nic *efx)
2780{
Ben Hutchings7153f622012-07-27 20:50:52 +01002781 /* Flush reset_work. It can no longer be scheduled since we
2782 * are not READY.
2783 */
2784 BUG_ON(efx->state == STATE_READY);
2785 cancel_work_sync(&efx->reset_work);
2786
Ben Hutchingsd8291182012-10-05 23:35:41 +01002787 efx_disable_interrupts(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00002788 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002789 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002790 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002791 efx_fini_napi(efx);
2792 efx_remove_all(efx);
2793}
2794
2795/* Final NIC shutdown
2796 * This is called only at module unload (or hotplug removal).
2797 */
2798static void efx_pci_remove(struct pci_dev *pci_dev)
2799{
2800 struct efx_nic *efx;
2801
2802 efx = pci_get_drvdata(pci_dev);
2803 if (!efx)
2804 return;
2805
2806 /* Mark the NIC as fini, then stop the interface */
2807 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002808 efx_dissociate(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002809 dev_close(efx->net_dev);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002810 efx_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002811 rtnl_unlock();
2812
Shradha Shah7fa8d542015-05-06 00:55:13 +01002813 if (efx->type->sriov_fini)
2814 efx->type->sriov_fini(efx);
2815
Ben Hutchings8ceee662008-04-27 12:55:59 +01002816 efx_unregister_netdev(efx);
2817
Ben Hutchings7dde5962008-12-12 22:09:38 -08002818 efx_mtd_remove(efx);
2819
Ben Hutchings8ceee662008-04-27 12:55:59 +01002820 efx_pci_remove_main(efx);
2821
Ben Hutchings8ceee662008-04-27 12:55:59 +01002822 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002823 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002824
Ben Hutchings8ceee662008-04-27 12:55:59 +01002825 efx_fini_struct(efx);
2826 free_netdev(efx->net_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002827
2828 pci_disable_pcie_error_reporting(pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002829};
2830
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002831/* NIC VPD information
2832 * Called during probe to display the part number of the
2833 * installed NIC. VPD is potentially very large but this should
2834 * always appear within the first 512 bytes.
2835 */
2836#define SFC_VPD_LEN 512
Ben Hutchingsef215e62013-12-05 20:13:22 +00002837static void efx_probe_vpd_strings(struct efx_nic *efx)
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002838{
2839 struct pci_dev *dev = efx->pci_dev;
2840 char vpd_data[SFC_VPD_LEN];
2841 ssize_t vpd_size;
Ben Hutchingsef215e62013-12-05 20:13:22 +00002842 int ro_start, ro_size, i, j;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002843
2844 /* Get the vpd data from the device */
2845 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
2846 if (vpd_size <= 0) {
2847 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
2848 return;
2849 }
2850
2851 /* Get the Read only section */
Ben Hutchingsef215e62013-12-05 20:13:22 +00002852 ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
2853 if (ro_start < 0) {
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002854 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
2855 return;
2856 }
2857
Ben Hutchingsef215e62013-12-05 20:13:22 +00002858 ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
2859 j = ro_size;
2860 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002861 if (i + j > vpd_size)
2862 j = vpd_size - i;
2863
2864 /* Get the Part number */
2865 i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
2866 if (i < 0) {
2867 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
2868 return;
2869 }
2870
2871 j = pci_vpd_info_field_size(&vpd_data[i]);
2872 i += PCI_VPD_INFO_FLD_HDR_SIZE;
2873 if (i + j > vpd_size) {
2874 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
2875 return;
2876 }
2877
2878 netif_info(efx, drv, efx->net_dev,
2879 "Part Number : %.*s\n", j, &vpd_data[i]);
Ben Hutchingsef215e62013-12-05 20:13:22 +00002880
2881 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
2882 j = ro_size;
2883 i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN");
2884 if (i < 0) {
2885 netif_err(efx, drv, efx->net_dev, "Serial number not found\n");
2886 return;
2887 }
2888
2889 j = pci_vpd_info_field_size(&vpd_data[i]);
2890 i += PCI_VPD_INFO_FLD_HDR_SIZE;
2891 if (i + j > vpd_size) {
2892 netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n");
2893 return;
2894 }
2895
2896 efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL);
2897 if (!efx->vpd_sn)
2898 return;
2899
2900 snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002901}
2902
2903
Ben Hutchings8ceee662008-04-27 12:55:59 +01002904/* Main body of NIC initialisation
2905 * This is called at module load (or hotplug insertion, theoretically).
2906 */
2907static int efx_pci_probe_main(struct efx_nic *efx)
2908{
2909 int rc;
2910
2911 /* Do start-of-day initialisation */
2912 rc = efx_probe_all(efx);
2913 if (rc)
2914 goto fail1;
2915
Ben Hutchingse8f14992010-12-07 19:47:34 +00002916 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002917
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002918 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002919 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002920 netif_err(efx, probe, efx->net_dev,
2921 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002922 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002923 }
2924
2925 rc = efx_init_port(efx);
2926 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002927 netif_err(efx, probe, efx->net_dev,
2928 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002929 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002930 }
2931
Ben Hutchings152b6a62009-11-29 03:43:56 +00002932 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002933 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00002934 goto fail5;
Jon Cooper261e4d92013-04-15 18:51:54 +01002935 rc = efx_enable_interrupts(efx);
2936 if (rc)
2937 goto fail6;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002938
2939 return 0;
2940
Jon Cooper261e4d92013-04-15 18:51:54 +01002941 fail6:
2942 efx_nic_fini_interrupt(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00002943 fail5:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002944 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002945 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002946 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002947 fail3:
2948 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002949 efx_remove_all(efx);
2950 fail1:
2951 return rc;
2952}
2953
2954/* NIC initialisation
2955 *
2956 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00002957 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002958 * sets up and registers the network devices with the kernel and hooks
2959 * the interrupt service routine. It does not prepare the device for
2960 * transmission; this is left to the first time one of the network
2961 * interfaces is brought up (i.e. efx_net_open).
2962 */
Bill Pemberton87d1fc12012-12-03 09:23:32 -05002963static int efx_pci_probe(struct pci_dev *pci_dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00002964 const struct pci_device_id *entry)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002965{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002966 struct net_device *net_dev;
2967 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002968 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002969
2970 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00002971 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
2972 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002973 if (!net_dev)
2974 return -ENOMEM;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002975 efx = netdev_priv(net_dev);
2976 efx->type = (const struct efx_nic_type *) entry->driver_data;
2977 net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
Ben Hutchings97bc5412009-05-19 16:19:08 -07002978 NETIF_F_HIGHDMA | NETIF_F_TSO |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002979 NETIF_F_RXCSUM);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002980 if (efx->type->offload_features & NETIF_F_V6_CSUM)
Ben Hutchings738a8f42009-11-29 15:16:05 +00002981 net_dev->features |= NETIF_F_TSO6;
Ben Hutchings285065632008-09-01 12:46:54 +01002982 /* Mask for features that also apply to VLAN devices */
2983 net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002984 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
2985 NETIF_F_RXCSUM);
2986 /* All offloads can be toggled */
2987 net_dev->hw_features = net_dev->features & ~NETIF_F_HIGHDMA;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002988 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002989 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002990 rc = efx_init_struct(efx, pci_dev, net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002991 if (rc)
2992 goto fail1;
2993
Ben Hutchings62776d02010-06-23 11:30:07 +00002994 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01002995 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002996
Ben Hutchingsef215e62013-12-05 20:13:22 +00002997 efx_probe_vpd_strings(efx);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002998
Ben Hutchings8ceee662008-04-27 12:55:59 +01002999 /* Set up basic I/O (BAR mappings etc) */
3000 rc = efx_init_io(efx);
3001 if (rc)
3002 goto fail2;
3003
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003004 rc = efx_pci_probe_main(efx);
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003005 if (rc)
3006 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08003007
Ben Hutchings8ceee662008-04-27 12:55:59 +01003008 rc = efx_register_netdev(efx);
3009 if (rc)
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003010 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003011
Shradha Shah7fa8d542015-05-06 00:55:13 +01003012 if (efx->type->sriov_init) {
3013 rc = efx->type->sriov_init(efx);
3014 if (rc)
3015 netif_err(efx, probe, efx->net_dev,
3016 "SR-IOV can't be enabled rc %d\n", rc);
3017 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003018
Ben Hutchings62776d02010-06-23 11:30:07 +00003019 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003020
Ben Hutchings7c431612012-01-27 17:23:58 +00003021 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003022 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003023 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003024 rtnl_unlock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003025 if (rc)
3026 netif_warn(efx, probe, efx->net_dev,
3027 "failed to create MTDs (%d)\n", rc);
3028
Alexandre Rames626950d2013-01-14 17:20:22 +00003029 rc = pci_enable_pcie_error_reporting(pci_dev);
3030 if (rc && rc != -EINVAL)
3031 netif_warn(efx, probe, efx->net_dev,
3032 "pci_enable_pcie_error_reporting failed (%d)\n", rc);
3033
Ben Hutchings8ceee662008-04-27 12:55:59 +01003034 return 0;
3035
Ben Hutchings8ceee662008-04-27 12:55:59 +01003036 fail4:
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003037 efx_pci_remove_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003038 fail3:
3039 efx_fini_io(efx);
3040 fail2:
3041 efx_fini_struct(efx);
3042 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08003043 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00003044 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003045 free_netdev(net_dev);
3046 return rc;
3047}
3048
Ben Hutchings89c758f2009-11-29 03:43:07 +00003049static int efx_pm_freeze(struct device *dev)
3050{
3051 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3052
Ben Hutchings61da0262012-07-27 19:35:39 +01003053 rtnl_lock();
3054
Ben Hutchings6032fb52012-07-27 19:35:47 +01003055 if (efx->state != STATE_DISABLED) {
3056 efx->state = STATE_UNINIT;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003057
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01003058 efx_device_detach_sync(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003059
Ben Hutchings6032fb52012-07-27 19:35:47 +01003060 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003061 efx_disable_interrupts(efx);
Ben Hutchings6032fb52012-07-27 19:35:47 +01003062 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003063
Ben Hutchings61da0262012-07-27 19:35:39 +01003064 rtnl_unlock();
3065
Ben Hutchings89c758f2009-11-29 03:43:07 +00003066 return 0;
3067}
3068
3069static int efx_pm_thaw(struct device *dev)
3070{
Jon Cooper261e4d92013-04-15 18:51:54 +01003071 int rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003072 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3073
Ben Hutchings61da0262012-07-27 19:35:39 +01003074 rtnl_lock();
3075
Ben Hutchings6032fb52012-07-27 19:35:47 +01003076 if (efx->state != STATE_DISABLED) {
Jon Cooper261e4d92013-04-15 18:51:54 +01003077 rc = efx_enable_interrupts(efx);
3078 if (rc)
3079 goto fail;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003080
Ben Hutchings6032fb52012-07-27 19:35:47 +01003081 mutex_lock(&efx->mac_lock);
3082 efx->phy_op->reconfigure(efx);
3083 mutex_unlock(&efx->mac_lock);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003084
Ben Hutchings6032fb52012-07-27 19:35:47 +01003085 efx_start_all(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003086
Ben Hutchings6032fb52012-07-27 19:35:47 +01003087 netif_device_attach(efx->net_dev);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003088
Ben Hutchings6032fb52012-07-27 19:35:47 +01003089 efx->state = STATE_READY;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003090
Ben Hutchings6032fb52012-07-27 19:35:47 +01003091 efx->type->resume_wol(efx);
3092 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003093
Ben Hutchings61da0262012-07-27 19:35:39 +01003094 rtnl_unlock();
3095
Steve Hodgson319ba642010-06-01 11:17:24 +00003096 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
3097 queue_work(reset_workqueue, &efx->reset_work);
3098
Ben Hutchings89c758f2009-11-29 03:43:07 +00003099 return 0;
Jon Cooper261e4d92013-04-15 18:51:54 +01003100
3101fail:
3102 rtnl_unlock();
3103
3104 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003105}
3106
3107static int efx_pm_poweroff(struct device *dev)
3108{
3109 struct pci_dev *pci_dev = to_pci_dev(dev);
3110 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3111
3112 efx->type->fini(efx);
3113
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003114 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003115
3116 pci_save_state(pci_dev);
3117 return pci_set_power_state(pci_dev, PCI_D3hot);
3118}
3119
3120/* Used for both resume and restore */
3121static int efx_pm_resume(struct device *dev)
3122{
3123 struct pci_dev *pci_dev = to_pci_dev(dev);
3124 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3125 int rc;
3126
3127 rc = pci_set_power_state(pci_dev, PCI_D0);
3128 if (rc)
3129 return rc;
3130 pci_restore_state(pci_dev);
3131 rc = pci_enable_device(pci_dev);
3132 if (rc)
3133 return rc;
3134 pci_set_master(efx->pci_dev);
3135 rc = efx->type->reset(efx, RESET_TYPE_ALL);
3136 if (rc)
3137 return rc;
3138 rc = efx->type->init(efx);
3139 if (rc)
3140 return rc;
Jon Cooper261e4d92013-04-15 18:51:54 +01003141 rc = efx_pm_thaw(dev);
3142 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003143}
3144
3145static int efx_pm_suspend(struct device *dev)
3146{
3147 int rc;
3148
3149 efx_pm_freeze(dev);
3150 rc = efx_pm_poweroff(dev);
3151 if (rc)
3152 efx_pm_resume(dev);
3153 return rc;
3154}
3155
Ben Hutchings18e83e42012-01-05 19:05:20 +00003156static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00003157 .suspend = efx_pm_suspend,
3158 .resume = efx_pm_resume,
3159 .freeze = efx_pm_freeze,
3160 .thaw = efx_pm_thaw,
3161 .poweroff = efx_pm_poweroff,
3162 .restore = efx_pm_resume,
3163};
3164
Alexandre Rames626950d2013-01-14 17:20:22 +00003165/* A PCI error affecting this device was detected.
3166 * At this point MMIO and DMA may be disabled.
3167 * Stop the software path and request a slot reset.
3168 */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003169static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3170 enum pci_channel_state state)
Alexandre Rames626950d2013-01-14 17:20:22 +00003171{
3172 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3173 struct efx_nic *efx = pci_get_drvdata(pdev);
3174
3175 if (state == pci_channel_io_perm_failure)
3176 return PCI_ERS_RESULT_DISCONNECT;
3177
3178 rtnl_lock();
3179
3180 if (efx->state != STATE_DISABLED) {
3181 efx->state = STATE_RECOVERY;
3182 efx->reset_pending = 0;
3183
3184 efx_device_detach_sync(efx);
3185
3186 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003187 efx_disable_interrupts(efx);
Alexandre Rames626950d2013-01-14 17:20:22 +00003188
3189 status = PCI_ERS_RESULT_NEED_RESET;
3190 } else {
3191 /* If the interface is disabled we don't want to do anything
3192 * with it.
3193 */
3194 status = PCI_ERS_RESULT_RECOVERED;
3195 }
3196
3197 rtnl_unlock();
3198
3199 pci_disable_device(pdev);
3200
3201 return status;
3202}
3203
Joe Perchesdbedd442015-03-06 20:49:12 -08003204/* Fake a successful reset, which will be performed later in efx_io_resume. */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003205static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
Alexandre Rames626950d2013-01-14 17:20:22 +00003206{
3207 struct efx_nic *efx = pci_get_drvdata(pdev);
3208 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3209 int rc;
3210
3211 if (pci_enable_device(pdev)) {
3212 netif_err(efx, hw, efx->net_dev,
3213 "Cannot re-enable PCI device after reset.\n");
3214 status = PCI_ERS_RESULT_DISCONNECT;
3215 }
3216
3217 rc = pci_cleanup_aer_uncorrect_error_status(pdev);
3218 if (rc) {
3219 netif_err(efx, hw, efx->net_dev,
3220 "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc);
3221 /* Non-fatal error. Continue. */
3222 }
3223
3224 return status;
3225}
3226
3227/* Perform the actual reset and resume I/O operations. */
3228static void efx_io_resume(struct pci_dev *pdev)
3229{
3230 struct efx_nic *efx = pci_get_drvdata(pdev);
3231 int rc;
3232
3233 rtnl_lock();
3234
3235 if (efx->state == STATE_DISABLED)
3236 goto out;
3237
3238 rc = efx_reset(efx, RESET_TYPE_ALL);
3239 if (rc) {
3240 netif_err(efx, hw, efx->net_dev,
3241 "efx_reset failed after PCI error (%d)\n", rc);
3242 } else {
3243 efx->state = STATE_READY;
3244 netif_dbg(efx, hw, efx->net_dev,
3245 "Done resetting and resuming IO after PCI error.\n");
3246 }
3247
3248out:
3249 rtnl_unlock();
3250}
3251
3252/* For simplicity and reliability, we always require a slot reset and try to
3253 * reset the hardware when a pci error affecting the device is detected.
3254 * We leave both the link_reset and mmio_enabled callback unimplemented:
3255 * with our request for slot reset the mmio_enabled callback will never be
3256 * called, and the link_reset callback is not used by AER or EEH mechanisms.
3257 */
3258static struct pci_error_handlers efx_err_handlers = {
3259 .error_detected = efx_io_error_detected,
3260 .slot_reset = efx_io_slot_reset,
3261 .resume = efx_io_resume,
3262};
3263
Ben Hutchings8ceee662008-04-27 12:55:59 +01003264static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00003265 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003266 .id_table = efx_pci_table,
3267 .probe = efx_pci_probe,
3268 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00003269 .driver.pm = &efx_pm_ops,
Alexandre Rames626950d2013-01-14 17:20:22 +00003270 .err_handler = &efx_err_handlers,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003271};
3272
3273/**************************************************************************
3274 *
3275 * Kernel module interface
3276 *
3277 *************************************************************************/
3278
3279module_param(interrupt_mode, uint, 0444);
3280MODULE_PARM_DESC(interrupt_mode,
3281 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
3282
3283static int __init efx_init_module(void)
3284{
3285 int rc;
3286
3287 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
3288
3289 rc = register_netdevice_notifier(&efx_netdev_notifier);
3290 if (rc)
3291 goto err_notifier;
3292
Shradha Shah7fa8d542015-05-06 00:55:13 +01003293#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003294 rc = efx_init_sriov();
3295 if (rc)
3296 goto err_sriov;
Shradha Shah7fa8d542015-05-06 00:55:13 +01003297#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003298
Steve Hodgson1ab00622008-12-12 21:33:02 -08003299 reset_workqueue = create_singlethread_workqueue("sfc_reset");
3300 if (!reset_workqueue) {
3301 rc = -ENOMEM;
3302 goto err_reset;
3303 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003304
3305 rc = pci_register_driver(&efx_pci_driver);
3306 if (rc < 0)
3307 goto err_pci;
3308
3309 return 0;
3310
3311 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08003312 destroy_workqueue(reset_workqueue);
3313 err_reset:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003314#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003315 efx_fini_sriov();
3316 err_sriov:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003317#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003318 unregister_netdevice_notifier(&efx_netdev_notifier);
3319 err_notifier:
3320 return rc;
3321}
3322
3323static void __exit efx_exit_module(void)
3324{
3325 printk(KERN_INFO "Solarflare NET driver unloading\n");
3326
3327 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003328 destroy_workqueue(reset_workqueue);
Shradha Shah7fa8d542015-05-06 00:55:13 +01003329#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003330 efx_fini_sriov();
Shradha Shah7fa8d542015-05-06 00:55:13 +01003331#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003332 unregister_netdevice_notifier(&efx_netdev_notifier);
3333
3334}
3335
3336module_init(efx_init_module);
3337module_exit(efx_exit_module);
3338
Ben Hutchings906bb262009-11-29 15:16:19 +00003339MODULE_AUTHOR("Solarflare Communications and "
3340 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings6a350fd2014-02-12 19:00:07 +00003341MODULE_DESCRIPTION("Solarflare network driver");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003342MODULE_LICENSE("GPL");
3343MODULE_DEVICE_TABLE(pci, efx_pci_table);