blob: 62b2139734336d6542f72d528d125968d1e8d387 [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",
Jon Cooper087e9022015-05-20 11:11:35 +010080 [RESET_TYPE_DATAPATH] = "DATAPATH",
Edward Creee2835462014-04-16 19:27:48 +010081 [RESET_TYPE_MC_BIST] = "MC_BIST",
Alexandre Rames626950d2013-01-14 17:20:22 +000082 [RESET_TYPE_DISABLE] = "DISABLE",
83 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
84 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
85 [RESET_TYPE_RX_RECOVERY] = "RX_RECOVERY",
Alexandre Rames3de82b92013-06-13 11:36:15 +010086 [RESET_TYPE_DMA_ERROR] = "DMA_ERROR",
Alexandre Rames626950d2013-01-14 17:20:22 +000087 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
88 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
Edward Creee2835462014-04-16 19:27:48 +010089 [RESET_TYPE_MCDI_TIMEOUT] = "MCDI_TIMEOUT (FLR)",
Ben Hutchingsc4593022009-11-23 16:08:17 +000090};
91
Steve Hodgson1ab00622008-12-12 21:33:02 -080092/* Reset workqueue. If any NIC has a hardware failure then a reset will be
93 * queued onto this work queue. This is not a per-nic work queue, because
94 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
95 */
96static struct workqueue_struct *reset_workqueue;
97
Jon Cooper74cd60a2013-09-16 14:18:51 +010098/* How often and how many times to poll for a reset while waiting for a
99 * BIST that another function started to complete.
100 */
101#define BIST_WAIT_DELAY_MS 100
102#define BIST_WAIT_DELAY_COUNT 100
103
Ben Hutchings8ceee662008-04-27 12:55:59 +0100104/**************************************************************************
105 *
106 * Configurable values
107 *
108 *************************************************************************/
109
110/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100111 * Use separate channels for TX and RX events
112 *
Neil Turton28b581a2008-12-12 21:41:06 -0800113 * Set this to 1 to use separate channels for TX and RX. It allows us
114 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100115 *
Neil Turton28b581a2008-12-12 21:41:06 -0800116 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100117 */
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000118static bool separate_tx_channels;
119module_param(separate_tx_channels, bool, 0444);
Neil Turton28b581a2008-12-12 21:41:06 -0800120MODULE_PARM_DESC(separate_tx_channels,
121 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100122
123/* This is the weight assigned to each of the (per-channel) virtual
124 * NAPI devices.
125 */
126static int napi_weight = 64;
127
128/* This is the time (in jiffies) between invocations of the hardware
Alexandre Rames626950d2013-01-14 17:20:22 +0000129 * monitor.
130 * On Falcon-based NICs, this will:
Ben Hutchingse254c272010-09-20 08:44:10 +0000131 * - Check the on-board hardware monitor;
132 * - Poll the link state and reconfigure the hardware as necessary.
Alexandre Rames626950d2013-01-14 17:20:22 +0000133 * On Siena-based NICs for power systems with EEH support, this will give EEH a
134 * chance to start.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100135 */
stephen hemmingerd2156972010-10-18 05:27:31 +0000136static unsigned int efx_monitor_interval = 1 * HZ;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100137
Ben Hutchings8ceee662008-04-27 12:55:59 +0100138/* Initial interrupt moderation settings. They can be modified after
139 * module load with ethtool.
140 *
141 * The default for RX should strike a balance between increasing the
142 * round-trip latency and reducing overhead.
143 */
144static unsigned int rx_irq_mod_usec = 60;
145
146/* Initial interrupt moderation settings. They can be modified after
147 * module load with ethtool.
148 *
149 * This default is chosen to ensure that a 10G link does not go idle
150 * while a TX queue is stopped after it has become full. A queue is
151 * restarted when it drops below half full. The time this takes (assuming
152 * worst case 3 descriptors per packet and 1024 descriptors) is
153 * 512 / 3 * 1.2 = 205 usec.
154 */
155static unsigned int tx_irq_mod_usec = 150;
156
157/* This is the first interrupt mode to try out of:
158 * 0 => MSI-X
159 * 1 => MSI
160 * 2 => legacy
161 */
162static unsigned int interrupt_mode;
163
164/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
165 * i.e. the number of CPUs among which we may distribute simultaneous
166 * interrupt handling.
167 *
168 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
Ben Hutchingscdb08f82011-12-20 01:08:05 +0000169 * The default (0) means to assign an interrupt to each core.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100170 */
171static unsigned int rss_cpus;
172module_param(rss_cpus, uint, 0444);
173MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
174
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000175static bool phy_flash_cfg;
176module_param(phy_flash_cfg, bool, 0644);
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800177MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
178
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000179static unsigned irq_adapt_low_thresh = 8000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000180module_param(irq_adapt_low_thresh, uint, 0644);
181MODULE_PARM_DESC(irq_adapt_low_thresh,
182 "Threshold score for reducing IRQ moderation");
183
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000184static unsigned irq_adapt_high_thresh = 16000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000185module_param(irq_adapt_high_thresh, uint, 0644);
186MODULE_PARM_DESC(irq_adapt_high_thresh,
187 "Threshold score for increasing IRQ moderation");
188
Ben Hutchings62776d02010-06-23 11:30:07 +0000189static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
190 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
191 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
192 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
193module_param(debug, uint, 0);
194MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
195
Ben Hutchings8ceee662008-04-27 12:55:59 +0100196/**************************************************************************
197 *
198 * Utility functions and prototypes
199 *
200 *************************************************************************/
Ben Hutchings46426102010-09-10 06:42:33 +0000201
Jon Cooper261e4d92013-04-15 18:51:54 +0100202static int efx_soft_enable_interrupts(struct efx_nic *efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100203static void efx_soft_disable_interrupts(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000204static void efx_remove_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000205static void efx_remove_channels(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000206static const struct efx_channel_type efx_default_channel_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100207static void efx_remove_port(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000208static void efx_init_napi_channel(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100209static void efx_fini_napi(struct efx_nic *efx);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000210static void efx_fini_napi_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000211static void efx_fini_struct(struct efx_nic *efx);
212static void efx_start_all(struct efx_nic *efx);
213static void efx_stop_all(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100214
215#define EFX_ASSERT_RESET_SERIALISED(efx) \
216 do { \
Ben Hutchingsf16aeea2012-07-27 19:31:16 +0100217 if ((efx->state == STATE_READY) || \
Alexandre Rames626950d2013-01-14 17:20:22 +0000218 (efx->state == STATE_RECOVERY) || \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000219 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100220 ASSERT_RTNL(); \
221 } while (0)
222
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100223static int efx_check_disabled(struct efx_nic *efx)
224{
Alexandre Rames626950d2013-01-14 17:20:22 +0000225 if (efx->state == STATE_DISABLED || efx->state == STATE_RECOVERY) {
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100226 netif_err(efx, drv, efx->net_dev,
227 "device is disabled due to earlier errors\n");
228 return -EIO;
229 }
230 return 0;
231}
232
Ben Hutchings8ceee662008-04-27 12:55:59 +0100233/**************************************************************************
234 *
235 * Event queue processing
236 *
237 *************************************************************************/
238
239/* Process channel's event queue
240 *
241 * This function is responsible for processing the event queue of a
242 * single channel. The caller must guarantee that this function will
243 * never be concurrently called more than once on the same channel,
244 * though different channels may be being processed concurrently.
245 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000246static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100247{
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000248 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100249
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000250 if (unlikely(!channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100251 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100252
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000253 spent = efx_nic_process_eventq(channel, budget);
Ben Hutchingsd9ab7002012-02-13 23:29:16 +0000254 if (spent && efx_channel_has_rx_queue(channel)) {
255 struct efx_rx_queue *rx_queue =
256 efx_channel_get_rx_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100257
Ben Hutchingsff734ef2013-01-29 23:33:14 +0000258 efx_rx_flush_packet(channel);
Jon Coopercce28792013-10-02 11:04:14 +0100259 efx_fast_push_rx_descriptors(rx_queue, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100260 }
261
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000262 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100263}
264
Ben Hutchings8ceee662008-04-27 12:55:59 +0100265/* NAPI poll handler
266 *
267 * NAPI guarantees serialisation of polls of the same device, which
268 * provides the guarantee required by efx_process_channel().
269 */
270static int efx_poll(struct napi_struct *napi, int budget)
271{
272 struct efx_channel *channel =
273 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000274 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000275 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100276
Alexandre Rames36763262014-07-22 14:03:25 +0100277 if (!efx_channel_lock_napi(channel))
278 return budget;
279
Ben Hutchings62776d02010-06-23 11:30:07 +0000280 netif_vdbg(efx, intr, efx->net_dev,
281 "channel %d NAPI poll executing on CPU %d\n",
282 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100283
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000284 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100285
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000286 if (spent < budget) {
Ben Hutchings9d9a6972012-02-10 23:01:48 +0000287 if (efx_channel_has_rx_queue(channel) &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000288 efx->irq_rx_adaptive &&
289 unlikely(++channel->irq_count == 1000)) {
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000290 if (unlikely(channel->irq_mod_score <
291 irq_adapt_low_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000292 if (channel->irq_moderation > 1) {
293 channel->irq_moderation -= 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000294 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000295 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000296 } else if (unlikely(channel->irq_mod_score >
297 irq_adapt_high_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000298 if (channel->irq_moderation <
299 efx->irq_rx_moderation) {
300 channel->irq_moderation += 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000301 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000302 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000303 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000304 channel->irq_count = 0;
305 channel->irq_mod_score = 0;
306 }
307
Ben Hutchings64d8ad62011-01-05 00:50:41 +0000308 efx_filter_rfs_expire(channel);
309
Ben Hutchings8ceee662008-04-27 12:55:59 +0100310 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800311 * only wait for napi_complete(), this isn't a problem
Ben Hutchings514bedb2012-10-05 19:30:16 +0100312 * since efx_nic_eventq_read_ack() will have no effect if
Ben Hutchings8ceee662008-04-27 12:55:59 +0100313 * interrupts have already been disabled.
314 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800315 napi_complete(napi);
Ben Hutchings514bedb2012-10-05 19:30:16 +0100316 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100317 }
318
Alexandre Rames36763262014-07-22 14:03:25 +0100319 efx_channel_unlock_napi(channel);
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000320 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100321}
322
Ben Hutchings8ceee662008-04-27 12:55:59 +0100323/* Create event queue
324 * Event queue memory allocations are done only once. If the channel
325 * is reset, the memory buffer will be reused; this guards against
326 * errors during channel reset and also simplifies interrupt handling.
327 */
328static int efx_probe_eventq(struct efx_channel *channel)
329{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000330 struct efx_nic *efx = channel->efx;
331 unsigned long entries;
332
Ben Hutchings86ee5302012-01-09 19:51:22 +0000333 netif_dbg(efx, probe, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000334 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100335
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000336 /* Build an event queue with room for one event per tx and rx buffer,
337 * plus some extra for link state events and MCDI completions. */
338 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
339 EFX_BUG_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
340 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
341
Ben Hutchings152b6a62009-11-29 03:43:56 +0000342 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100343}
344
345/* Prepare channel's event queue */
Jon Cooper261e4d92013-04-15 18:51:54 +0100346static int efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100347{
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100348 struct efx_nic *efx = channel->efx;
Jon Cooper261e4d92013-04-15 18:51:54 +0100349 int rc;
350
351 EFX_WARN_ON_PARANOID(channel->eventq_init);
352
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100353 netif_dbg(efx, drv, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000354 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100355
Jon Cooper261e4d92013-04-15 18:51:54 +0100356 rc = efx_nic_init_eventq(channel);
357 if (rc == 0) {
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100358 efx->type->push_irq_moderation(channel);
Jon Cooper261e4d92013-04-15 18:51:54 +0100359 channel->eventq_read_ptr = 0;
360 channel->eventq_init = true;
361 }
362 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100363}
364
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000365/* Enable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100366void efx_start_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000367{
368 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
369 "chan %d start event queue\n", channel->channel);
370
Ben Hutchings514bedb2012-10-05 19:30:16 +0100371 /* Make sure the NAPI handler sees the enabled flag set */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000372 channel->enabled = true;
373 smp_wmb();
374
Alexandre Rames36763262014-07-22 14:03:25 +0100375 efx_channel_enable(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000376 napi_enable(&channel->napi_str);
377 efx_nic_eventq_read_ack(channel);
378}
379
380/* Disable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100381void efx_stop_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000382{
383 if (!channel->enabled)
384 return;
385
386 napi_disable(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +0100387 while (!efx_channel_disable(channel))
388 usleep_range(1000, 20000);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000389 channel->enabled = false;
390}
391
Ben Hutchings8ceee662008-04-27 12:55:59 +0100392static void efx_fini_eventq(struct efx_channel *channel)
393{
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100394 if (!channel->eventq_init)
395 return;
396
Ben Hutchings62776d02010-06-23 11:30:07 +0000397 netif_dbg(channel->efx, drv, channel->efx->net_dev,
398 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100399
Ben Hutchings152b6a62009-11-29 03:43:56 +0000400 efx_nic_fini_eventq(channel);
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100401 channel->eventq_init = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100402}
403
404static void efx_remove_eventq(struct efx_channel *channel)
405{
Ben Hutchings62776d02010-06-23 11:30:07 +0000406 netif_dbg(channel->efx, drv, channel->efx->net_dev,
407 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100408
Ben Hutchings152b6a62009-11-29 03:43:56 +0000409 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100410}
411
412/**************************************************************************
413 *
414 * Channel handling
415 *
416 *************************************************************************/
417
Ben Hutchings7f967c02012-02-13 23:45:02 +0000418/* Allocate and initialise a channel structure. */
Ben Hutchings46426102010-09-10 06:42:33 +0000419static struct efx_channel *
420efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
421{
422 struct efx_channel *channel;
423 struct efx_rx_queue *rx_queue;
424 struct efx_tx_queue *tx_queue;
425 int j;
426
Ben Hutchings7f967c02012-02-13 23:45:02 +0000427 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
428 if (!channel)
429 return NULL;
Ben Hutchings46426102010-09-10 06:42:33 +0000430
Ben Hutchings7f967c02012-02-13 23:45:02 +0000431 channel->efx = efx;
432 channel->channel = i;
433 channel->type = &efx_default_channel_type;
Ben Hutchings46426102010-09-10 06:42:33 +0000434
Ben Hutchings7f967c02012-02-13 23:45:02 +0000435 for (j = 0; j < EFX_TXQ_TYPES; j++) {
436 tx_queue = &channel->tx_queue[j];
437 tx_queue->efx = efx;
438 tx_queue->queue = i * EFX_TXQ_TYPES + j;
439 tx_queue->channel = channel;
Ben Hutchings46426102010-09-10 06:42:33 +0000440 }
441
Ben Hutchings46426102010-09-10 06:42:33 +0000442 rx_queue = &channel->rx_queue;
443 rx_queue->efx = efx;
444 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
445 (unsigned long)rx_queue);
446
447 return channel;
448}
449
Ben Hutchings7f967c02012-02-13 23:45:02 +0000450/* Allocate and initialise a channel structure, copying parameters
451 * (but not resources) from an old channel structure.
452 */
453static struct efx_channel *
454efx_copy_channel(const struct efx_channel *old_channel)
455{
456 struct efx_channel *channel;
457 struct efx_rx_queue *rx_queue;
458 struct efx_tx_queue *tx_queue;
459 int j;
460
461 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
462 if (!channel)
463 return NULL;
464
465 *channel = *old_channel;
466
467 channel->napi_dev = NULL;
468 memset(&channel->eventq, 0, sizeof(channel->eventq));
469
470 for (j = 0; j < EFX_TXQ_TYPES; j++) {
471 tx_queue = &channel->tx_queue[j];
472 if (tx_queue->channel)
473 tx_queue->channel = channel;
474 tx_queue->buffer = NULL;
475 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
476 }
477
478 rx_queue = &channel->rx_queue;
479 rx_queue->buffer = NULL;
480 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
481 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
482 (unsigned long)rx_queue);
483
484 return channel;
485}
486
Ben Hutchings8ceee662008-04-27 12:55:59 +0100487static int efx_probe_channel(struct efx_channel *channel)
488{
489 struct efx_tx_queue *tx_queue;
490 struct efx_rx_queue *rx_queue;
491 int rc;
492
Ben Hutchings62776d02010-06-23 11:30:07 +0000493 netif_dbg(channel->efx, probe, channel->efx->net_dev,
494 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100495
Ben Hutchings7f967c02012-02-13 23:45:02 +0000496 rc = channel->type->pre_probe(channel);
497 if (rc)
498 goto fail;
499
Ben Hutchings8ceee662008-04-27 12:55:59 +0100500 rc = efx_probe_eventq(channel);
501 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000502 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100503
504 efx_for_each_channel_tx_queue(tx_queue, channel) {
505 rc = efx_probe_tx_queue(tx_queue);
506 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000507 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100508 }
509
510 efx_for_each_channel_rx_queue(rx_queue, channel) {
511 rc = efx_probe_rx_queue(rx_queue);
512 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000513 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100514 }
515
Ben Hutchings8ceee662008-04-27 12:55:59 +0100516 return 0;
517
Ben Hutchings7f967c02012-02-13 23:45:02 +0000518fail:
519 efx_remove_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100520 return rc;
521}
522
Ben Hutchings7f967c02012-02-13 23:45:02 +0000523static void
524efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
525{
526 struct efx_nic *efx = channel->efx;
527 const char *type;
528 int number;
529
530 number = channel->channel;
531 if (efx->tx_channel_offset == 0) {
532 type = "";
533 } else if (channel->channel < efx->tx_channel_offset) {
534 type = "-rx";
535 } else {
536 type = "-tx";
537 number -= efx->tx_channel_offset;
538 }
539 snprintf(buf, len, "%s%s-%d", efx->name, type, number);
540}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100541
Ben Hutchings56536e92008-12-12 21:37:02 -0800542static void efx_set_channel_names(struct efx_nic *efx)
543{
544 struct efx_channel *channel;
Ben Hutchings56536e92008-12-12 21:37:02 -0800545
Ben Hutchings7f967c02012-02-13 23:45:02 +0000546 efx_for_each_channel(channel, efx)
547 channel->type->get_name(channel,
Ben Hutchingsd8291182012-10-05 23:35:41 +0100548 efx->msi_context[channel->channel].name,
549 sizeof(efx->msi_context[0].name));
Ben Hutchings56536e92008-12-12 21:37:02 -0800550}
551
Ben Hutchings46426102010-09-10 06:42:33 +0000552static int efx_probe_channels(struct efx_nic *efx)
553{
554 struct efx_channel *channel;
555 int rc;
556
557 /* Restart special buffer allocation */
558 efx->next_buffer_table = 0;
559
Ben Hutchingsc92aaff2012-02-21 23:22:00 +0000560 /* Probe channels in reverse, so that any 'extra' channels
561 * use the start of the buffer table. This allows the traffic
562 * channels to be resized without moving them or wasting the
563 * entries before them.
564 */
565 efx_for_each_channel_rev(channel, efx) {
Ben Hutchings46426102010-09-10 06:42:33 +0000566 rc = efx_probe_channel(channel);
567 if (rc) {
568 netif_err(efx, probe, efx->net_dev,
569 "failed to create channel %d\n",
570 channel->channel);
571 goto fail;
572 }
573 }
574 efx_set_channel_names(efx);
575
576 return 0;
577
578fail:
579 efx_remove_channels(efx);
580 return rc;
581}
582
Ben Hutchings8ceee662008-04-27 12:55:59 +0100583/* Channels are shutdown and reinitialised whilst the NIC is running
584 * to propagate configuration changes (mtu, checksum offload), or
585 * to clear hardware error conditions
586 */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000587static void efx_start_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100588{
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000589 bool old_rx_scatter = efx->rx_scatter;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100590 struct efx_tx_queue *tx_queue;
591 struct efx_rx_queue *rx_queue;
592 struct efx_channel *channel;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000593 size_t rx_buf_len;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100594
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100595 /* Calculate the rx buffer allocation parameters required to
596 * support the current MTU, including padding for header
597 * alignment and overruns.
598 */
Jon Cooper43a37392012-10-18 15:49:54 +0100599 efx->rx_dma_len = (efx->rx_prefix_size +
Ben Hutchings272baee2013-01-29 23:33:14 +0000600 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
601 efx->type->rx_buffer_padding);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000602 rx_buf_len = (sizeof(struct efx_rx_page_state) +
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400603 efx->rx_ip_align + efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000604 if (rx_buf_len <= PAGE_SIZE) {
Jon Coopere8c68c02013-03-08 10:18:28 +0000605 efx->rx_scatter = efx->type->always_rx_scatter;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000606 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000607 } else if (efx->type->can_rx_scatter) {
Ben Hutchings950c54d2013-05-13 12:01:22 +0000608 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000609 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
Ben Hutchings950c54d2013-05-13 12:01:22 +0000610 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
611 EFX_RX_BUF_ALIGNMENT) >
612 PAGE_SIZE);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000613 efx->rx_scatter = true;
614 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
615 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000616 } else {
617 efx->rx_scatter = false;
618 efx->rx_buffer_order = get_order(rx_buf_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000619 }
620
Daniel Pieczko1648a232013-02-13 10:54:41 +0000621 efx_rx_config_page_split(efx);
622 if (efx->rx_buffer_order)
623 netif_dbg(efx, drv, efx->net_dev,
624 "RX buf len=%u; page order=%u batch=%u\n",
625 efx->rx_dma_len, efx->rx_buffer_order,
626 efx->rx_pages_per_batch);
627 else
628 netif_dbg(efx, drv, efx->net_dev,
629 "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
630 efx->rx_dma_len, efx->rx_page_buf_step,
631 efx->rx_bufs_per_page, efx->rx_pages_per_batch);
Daniel Pieczko27689352013-02-13 10:54:41 +0000632
Jon Coopere8c68c02013-03-08 10:18:28 +0000633 /* RX filters may also have scatter-enabled flags */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000634 if (efx->rx_scatter != old_rx_scatter)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000635 efx->type->filter_update_rx_scatter(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100636
Ben Hutchings14bf7182012-05-22 01:27:58 +0100637 /* We must keep at least one descriptor in a TX ring empty.
638 * We could avoid this when the queue size does not exactly
639 * match the hardware ring size, but it's not that important.
640 * Therefore we stop the queue when one more skb might fill
641 * the ring completely. We wake it when half way back to
642 * empty.
643 */
644 efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
645 efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
646
Ben Hutchings8ceee662008-04-27 12:55:59 +0100647 /* Initialise the channels */
648 efx_for_each_channel(channel, efx) {
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100649 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100650 efx_init_tx_queue(tx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100651 atomic_inc(&efx->active_queues);
652 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100653
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000654 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100655 efx_init_rx_queue(rx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100656 atomic_inc(&efx->active_queues);
Jon Coopercce28792013-10-02 11:04:14 +0100657 efx_stop_eventq(channel);
658 efx_fast_push_rx_descriptors(rx_queue, false);
659 efx_start_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000660 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100661
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000662 WARN_ON(channel->rx_pkt_n_frags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100663 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000664
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000665 efx_ptp_start_datapath(efx);
666
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000667 if (netif_device_present(efx->net_dev))
668 netif_tx_wake_all_queues(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100669}
670
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000671static void efx_stop_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100672{
673 struct efx_channel *channel;
674 struct efx_tx_queue *tx_queue;
675 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100676 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100677
678 EFX_ASSERT_RESET_SERIALISED(efx);
679 BUG_ON(efx->port_enabled);
680
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000681 efx_ptp_stop_datapath(efx);
682
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100683 /* Stop RX refill */
684 efx_for_each_channel(channel, efx) {
685 efx_for_each_channel_rx_queue(rx_queue, channel)
686 rx_queue->refill_enabled = false;
687 }
688
Ben Hutchings8ceee662008-04-27 12:55:59 +0100689 efx_for_each_channel(channel, efx) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000690 /* RX packet processing is pipelined, so wait for the
691 * NAPI handler to complete. At least event queue 0
692 * might be kept active by non-data events, so don't
693 * use napi_synchronize() but actually disable NAPI
694 * temporarily.
695 */
696 if (efx_channel_has_rx_queue(channel)) {
697 efx_stop_eventq(channel);
698 efx_start_eventq(channel);
699 }
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100700 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100701
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100702 rc = efx->type->fini_dmaq(efx);
703 if (rc && EFX_WORKAROUND_7803(efx)) {
704 /* Schedule a reset to recover from the flush failure. The
705 * descriptor caches reference memory we're about to free,
706 * but falcon_reconfigure_mac_wrapper() won't reconnect
707 * the MACs because of the pending reset.
708 */
709 netif_err(efx, drv, efx->net_dev,
710 "Resetting to recover from flush failure\n");
711 efx_schedule_reset(efx, RESET_TYPE_ALL);
712 } else if (rc) {
713 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
714 } else {
715 netif_dbg(efx, drv, efx->net_dev,
716 "successfully flushed all queues\n");
717 }
718
719 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100720 efx_for_each_channel_rx_queue(rx_queue, channel)
721 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000722 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100723 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100724 }
725}
726
727static void efx_remove_channel(struct efx_channel *channel)
728{
729 struct efx_tx_queue *tx_queue;
730 struct efx_rx_queue *rx_queue;
731
Ben Hutchings62776d02010-06-23 11:30:07 +0000732 netif_dbg(channel->efx, drv, channel->efx->net_dev,
733 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100734
735 efx_for_each_channel_rx_queue(rx_queue, channel)
736 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000737 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100738 efx_remove_tx_queue(tx_queue);
739 efx_remove_eventq(channel);
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100740 channel->type->post_remove(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100741}
742
Ben Hutchings46426102010-09-10 06:42:33 +0000743static void efx_remove_channels(struct efx_nic *efx)
744{
745 struct efx_channel *channel;
746
747 efx_for_each_channel(channel, efx)
748 efx_remove_channel(channel);
749}
750
751int
752efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
753{
754 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
755 u32 old_rxq_entries, old_txq_entries;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000756 unsigned i, next_buffer_table = 0;
Jon Cooper261e4d92013-04-15 18:51:54 +0100757 int rc, rc2;
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100758
759 rc = efx_check_disabled(efx);
760 if (rc)
761 return rc;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000762
763 /* Not all channels should be reallocated. We must avoid
764 * reallocating their buffer table entries.
765 */
766 efx_for_each_channel(channel, efx) {
767 struct efx_rx_queue *rx_queue;
768 struct efx_tx_queue *tx_queue;
769
770 if (channel->type->copy)
771 continue;
772 next_buffer_table = max(next_buffer_table,
773 channel->eventq.index +
774 channel->eventq.entries);
775 efx_for_each_channel_rx_queue(rx_queue, channel)
776 next_buffer_table = max(next_buffer_table,
777 rx_queue->rxd.index +
778 rx_queue->rxd.entries);
779 efx_for_each_channel_tx_queue(tx_queue, channel)
780 next_buffer_table = max(next_buffer_table,
781 tx_queue->txd.index +
782 tx_queue->txd.entries);
783 }
Ben Hutchings46426102010-09-10 06:42:33 +0000784
Ben Hutchings29c69a42013-01-28 19:01:06 +0000785 efx_device_detach_sync(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000786 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100787 efx_soft_disable_interrupts(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000788
Ben Hutchings7f967c02012-02-13 23:45:02 +0000789 /* Clone channels (where possible) */
Ben Hutchings46426102010-09-10 06:42:33 +0000790 memset(other_channel, 0, sizeof(other_channel));
791 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000792 channel = efx->channel[i];
793 if (channel->type->copy)
794 channel = channel->type->copy(channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000795 if (!channel) {
796 rc = -ENOMEM;
797 goto out;
798 }
799 other_channel[i] = channel;
800 }
801
802 /* Swap entry counts and channel pointers */
803 old_rxq_entries = efx->rxq_entries;
804 old_txq_entries = efx->txq_entries;
805 efx->rxq_entries = rxq_entries;
806 efx->txq_entries = txq_entries;
807 for (i = 0; i < efx->n_channels; i++) {
808 channel = efx->channel[i];
809 efx->channel[i] = other_channel[i];
810 other_channel[i] = channel;
811 }
812
Ben Hutchings7f967c02012-02-13 23:45:02 +0000813 /* Restart buffer table allocation */
814 efx->next_buffer_table = next_buffer_table;
Ben Hutchings46426102010-09-10 06:42:33 +0000815
Ben Hutchingse8f14992010-12-07 19:47:34 +0000816 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000817 channel = efx->channel[i];
818 if (!channel->type->copy)
819 continue;
820 rc = efx_probe_channel(channel);
821 if (rc)
822 goto rollback;
823 efx_init_napi_channel(efx->channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000824 }
Ben Hutchings46426102010-09-10 06:42:33 +0000825
Ben Hutchings7f967c02012-02-13 23:45:02 +0000826out:
827 /* Destroy unused channel structures */
828 for (i = 0; i < efx->n_channels; i++) {
829 channel = other_channel[i];
830 if (channel && channel->type->copy) {
831 efx_fini_napi_channel(channel);
832 efx_remove_channel(channel);
833 kfree(channel);
834 }
835 }
836
Jon Cooper261e4d92013-04-15 18:51:54 +0100837 rc2 = efx_soft_enable_interrupts(efx);
838 if (rc2) {
839 rc = rc ? rc : rc2;
840 netif_err(efx, drv, efx->net_dev,
841 "unable to restart interrupts on channel reallocation\n");
842 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
843 } else {
844 efx_start_all(efx);
845 netif_device_attach(efx->net_dev);
846 }
Ben Hutchings46426102010-09-10 06:42:33 +0000847 return rc;
848
849rollback:
850 /* Swap back */
851 efx->rxq_entries = old_rxq_entries;
852 efx->txq_entries = old_txq_entries;
853 for (i = 0; i < efx->n_channels; i++) {
854 channel = efx->channel[i];
855 efx->channel[i] = other_channel[i];
856 other_channel[i] = channel;
857 }
858 goto out;
859}
860
Steve Hodgson90d683a2010-06-01 11:19:39 +0000861void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100862{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000863 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100864}
865
Ben Hutchings7f967c02012-02-13 23:45:02 +0000866static const struct efx_channel_type efx_default_channel_type = {
867 .pre_probe = efx_channel_dummy_op_int,
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100868 .post_remove = efx_channel_dummy_op_void,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000869 .get_name = efx_get_channel_name,
870 .copy = efx_copy_channel,
871 .keep_eventq = false,
872};
873
874int efx_channel_dummy_op_int(struct efx_channel *channel)
875{
876 return 0;
877}
878
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100879void efx_channel_dummy_op_void(struct efx_channel *channel)
880{
881}
882
Ben Hutchings8ceee662008-04-27 12:55:59 +0100883/**************************************************************************
884 *
885 * Port handling
886 *
887 **************************************************************************/
888
889/* This ensures that the kernel is kept informed (via
890 * netif_carrier_on/off) of the link status, and also maintains the
891 * link status's stop on the port's TX queue.
892 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000893void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100894{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000895 struct efx_link_state *link_state = &efx->link_state;
896
Ben Hutchings8ceee662008-04-27 12:55:59 +0100897 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
898 * that no events are triggered between unregister_netdev() and the
899 * driver unloading. A more general condition is that NETDEV_CHANGE
900 * can only be generated between NETDEV_UP and NETDEV_DOWN */
901 if (!netif_running(efx->net_dev))
902 return;
903
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000904 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100905 efx->n_link_state_changes++;
906
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000907 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100908 netif_carrier_on(efx->net_dev);
909 else
910 netif_carrier_off(efx->net_dev);
911 }
912
913 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000914 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000915 netif_info(efx, link, efx->net_dev,
Ben Hutchings964e6132012-11-19 23:08:22 +0000916 "link up at %uMbps %s-duplex (MTU %d)\n",
Ben Hutchings62776d02010-06-23 11:30:07 +0000917 link_state->speed, link_state->fd ? "full" : "half",
Ben Hutchings964e6132012-11-19 23:08:22 +0000918 efx->net_dev->mtu);
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000919 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000920 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100921}
922
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000923void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
924{
925 efx->link_advertising = advertising;
926 if (advertising) {
927 if (advertising & ADVERTISED_Pause)
928 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
929 else
930 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
931 if (advertising & ADVERTISED_Asym_Pause)
932 efx->wanted_fc ^= EFX_FC_TX;
933 }
934}
935
David S. Millerb56269462011-05-17 17:53:22 -0400936void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000937{
938 efx->wanted_fc = wanted_fc;
939 if (efx->link_advertising) {
940 if (wanted_fc & EFX_FC_RX)
941 efx->link_advertising |= (ADVERTISED_Pause |
942 ADVERTISED_Asym_Pause);
943 else
944 efx->link_advertising &= ~(ADVERTISED_Pause |
945 ADVERTISED_Asym_Pause);
946 if (wanted_fc & EFX_FC_TX)
947 efx->link_advertising ^= ADVERTISED_Asym_Pause;
948 }
949}
950
Ben Hutchings115122a2009-03-04 09:52:52 +0000951static void efx_fini_port(struct efx_nic *efx);
952
Edward Cree0d322412015-05-20 11:10:03 +0100953/* We assume that efx->type->reconfigure_mac will always try to sync RX
954 * filters and therefore needs to read-lock the filter table against freeing
955 */
956void efx_mac_reconfigure(struct efx_nic *efx)
957{
958 down_read(&efx->filter_sem);
959 efx->type->reconfigure_mac(efx);
960 up_read(&efx->filter_sem);
961}
962
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000963/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
964 * the MAC appropriately. All other PHY configuration changes are pushed
965 * through phy_op->set_settings(), and pushed asynchronously to the MAC
966 * through efx_monitor().
967 *
968 * Callers must hold the mac_lock
969 */
970int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100971{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000972 enum efx_phy_mode phy_mode;
973 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100974
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000975 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100976
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000977 /* Disable PHY transmit in mac level loopbacks */
978 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800979 if (LOOPBACK_INTERNAL(efx))
980 efx->phy_mode |= PHY_MODE_TX_DISABLED;
981 else
982 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800983
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000984 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800985
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000986 if (rc)
987 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100988
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000989 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100990}
991
992/* Reinitialise the MAC to pick up new PHY settings, even if the port is
993 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000994int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100995{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000996 int rc;
997
Ben Hutchings8ceee662008-04-27 12:55:59 +0100998 EFX_ASSERT_RESET_SERIALISED(efx);
999
1000 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001001 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001002 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001003
1004 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001005}
1006
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001007/* Asynchronous work item for changing MAC promiscuity and multicast
1008 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
1009 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001010static void efx_mac_work(struct work_struct *data)
1011{
1012 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
1013
1014 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +01001015 if (efx->port_enabled)
Edward Cree0d322412015-05-20 11:10:03 +01001016 efx_mac_reconfigure(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001017 mutex_unlock(&efx->mac_lock);
1018}
1019
Ben Hutchings8ceee662008-04-27 12:55:59 +01001020static int efx_probe_port(struct efx_nic *efx)
1021{
1022 int rc;
1023
Ben Hutchings62776d02010-06-23 11:30:07 +00001024 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001025
Steve Hodgsonff3b00a2009-12-23 13:46:36 +00001026 if (phy_flash_cfg)
1027 efx->phy_mode = PHY_MODE_SPECIAL;
1028
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001029 /* Connect up MAC/PHY operations table */
1030 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001031 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +00001032 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001033
Ben Hutchingse332bcb2011-12-20 01:22:51 +00001034 /* Initialise MAC address to permanent address */
Edward Creecd84ff42014-03-07 18:27:41 +00001035 ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001036
1037 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001038}
1039
1040static int efx_init_port(struct efx_nic *efx)
1041{
1042 int rc;
1043
Ben Hutchings62776d02010-06-23 11:30:07 +00001044 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001045
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001046 mutex_lock(&efx->mac_lock);
1047
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001048 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001049 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001050 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001051
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001052 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001053
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001054 /* Reconfigure the MAC before creating dma queues (required for
1055 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Edward Cree0d322412015-05-20 11:10:03 +01001056 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001057
1058 /* Ensure the PHY advertises the correct flow control settings */
1059 rc = efx->phy_op->reconfigure(efx);
Edward Cree267d9d72015-05-06 00:59:18 +01001060 if (rc && rc != -EPERM)
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001061 goto fail2;
1062
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001063 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001064 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001065
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001066fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001067 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001068fail1:
1069 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001070 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001071}
1072
Ben Hutchings8ceee662008-04-27 12:55:59 +01001073static void efx_start_port(struct efx_nic *efx)
1074{
Ben Hutchings62776d02010-06-23 11:30:07 +00001075 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001076 BUG_ON(efx->port_enabled);
1077
1078 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001079 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001080
Ben Hutchingsd615c032013-10-08 17:33:20 +01001081 /* Ensure MAC ingress/egress is enabled */
Edward Cree0d322412015-05-20 11:10:03 +01001082 efx_mac_reconfigure(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001083
Ben Hutchings8ceee662008-04-27 12:55:59 +01001084 mutex_unlock(&efx->mac_lock);
1085}
1086
Ben Hutchingsd615c032013-10-08 17:33:20 +01001087/* Cancel work for MAC reconfiguration, periodic hardware monitoring
1088 * and the async self-test, wait for them to finish and prevent them
1089 * being scheduled again. This doesn't cover online resets, which
1090 * should only be cancelled when removing the device.
1091 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001092static void efx_stop_port(struct efx_nic *efx)
1093{
Ben Hutchings62776d02010-06-23 11:30:07 +00001094 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001095
Ben Hutchingsd615c032013-10-08 17:33:20 +01001096 EFX_ASSERT_RESET_SERIALISED(efx);
1097
Ben Hutchings8ceee662008-04-27 12:55:59 +01001098 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001099 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001100 mutex_unlock(&efx->mac_lock);
1101
1102 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001103 netif_addr_lock_bh(efx->net_dev);
1104 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchingsd615c032013-10-08 17:33:20 +01001105
1106 cancel_delayed_work_sync(&efx->monitor_work);
1107 efx_selftest_async_cancel(efx);
1108 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001109}
1110
1111static void efx_fini_port(struct efx_nic *efx)
1112{
Ben Hutchings62776d02010-06-23 11:30:07 +00001113 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001114
1115 if (!efx->port_initialized)
1116 return;
1117
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001118 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001119 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001120
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001121 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001122 efx_link_status_changed(efx);
1123}
1124
1125static void efx_remove_port(struct efx_nic *efx)
1126{
Ben Hutchings62776d02010-06-23 11:30:07 +00001127 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001128
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001129 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001130}
1131
1132/**************************************************************************
1133 *
1134 * NIC handling
1135 *
1136 **************************************************************************/
1137
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01001138static LIST_HEAD(efx_primary_list);
1139static LIST_HEAD(efx_unassociated_list);
1140
1141static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right)
1142{
1143 return left->type == right->type &&
1144 left->vpd_sn && right->vpd_sn &&
1145 !strcmp(left->vpd_sn, right->vpd_sn);
1146}
1147
1148static void efx_associate(struct efx_nic *efx)
1149{
1150 struct efx_nic *other, *next;
1151
1152 if (efx->primary == efx) {
1153 /* Adding primary function; look for secondaries */
1154
1155 netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n");
1156 list_add_tail(&efx->node, &efx_primary_list);
1157
1158 list_for_each_entry_safe(other, next, &efx_unassociated_list,
1159 node) {
1160 if (efx_same_controller(efx, other)) {
1161 list_del(&other->node);
1162 netif_dbg(other, probe, other->net_dev,
1163 "moving to secondary list of %s %s\n",
1164 pci_name(efx->pci_dev),
1165 efx->net_dev->name);
1166 list_add_tail(&other->node,
1167 &efx->secondary_list);
1168 other->primary = efx;
1169 }
1170 }
1171 } else {
1172 /* Adding secondary function; look for primary */
1173
1174 list_for_each_entry(other, &efx_primary_list, node) {
1175 if (efx_same_controller(efx, other)) {
1176 netif_dbg(efx, probe, efx->net_dev,
1177 "adding to secondary list of %s %s\n",
1178 pci_name(other->pci_dev),
1179 other->net_dev->name);
1180 list_add_tail(&efx->node,
1181 &other->secondary_list);
1182 efx->primary = other;
1183 return;
1184 }
1185 }
1186
1187 netif_dbg(efx, probe, efx->net_dev,
1188 "adding to unassociated list\n");
1189 list_add_tail(&efx->node, &efx_unassociated_list);
1190 }
1191}
1192
1193static void efx_dissociate(struct efx_nic *efx)
1194{
1195 struct efx_nic *other, *next;
1196
1197 list_del(&efx->node);
1198 efx->primary = NULL;
1199
1200 list_for_each_entry_safe(other, next, &efx->secondary_list, node) {
1201 list_del(&other->node);
1202 netif_dbg(other, probe, other->net_dev,
1203 "moving to unassociated list\n");
1204 list_add_tail(&other->node, &efx_unassociated_list);
1205 other->primary = NULL;
1206 }
1207}
1208
Ben Hutchings8ceee662008-04-27 12:55:59 +01001209/* This configures the PCI device to enable I/O and DMA. */
1210static int efx_init_io(struct efx_nic *efx)
1211{
1212 struct pci_dev *pci_dev = efx->pci_dev;
1213 dma_addr_t dma_mask = efx->type->max_dma_mask;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001214 unsigned int mem_map_size = efx->type->mem_map_size(efx);
Shradha Shah02246a72015-05-06 00:58:14 +01001215 int rc, bar;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001216
Ben Hutchings62776d02010-06-23 11:30:07 +00001217 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001218
Shradha Shah02246a72015-05-06 00:58:14 +01001219 bar = efx->type->mem_bar;
1220
Ben Hutchings8ceee662008-04-27 12:55:59 +01001221 rc = pci_enable_device(pci_dev);
1222 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001223 netif_err(efx, probe, efx->net_dev,
1224 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001225 goto fail1;
1226 }
1227
1228 pci_set_master(pci_dev);
1229
1230 /* Set the PCI DMA mask. Try all possibilities from our
1231 * genuine mask down to 32 bits, because some architectures
1232 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1233 * masks event though they reject 46 bit masks.
1234 */
1235 while (dma_mask > 0x7fffffffUL) {
Ben Hutchings0e33d872012-05-17 17:46:55 +01001236 if (dma_supported(&pci_dev->dev, dma_mask)) {
Russell King9663ded2013-06-26 23:49:11 +01001237 rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
Ben Hutchingse9e01842012-01-05 18:50:29 +00001238 if (rc == 0)
1239 break;
1240 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001241 dma_mask >>= 1;
1242 }
1243 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001244 netif_err(efx, probe, efx->net_dev,
1245 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001246 goto fail2;
1247 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001248 netif_dbg(efx, probe, efx->net_dev,
1249 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001250
Shradha Shah02246a72015-05-06 00:58:14 +01001251 efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
1252 rc = pci_request_region(pci_dev, bar, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001253 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001254 netif_err(efx, probe, efx->net_dev,
1255 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001256 rc = -EIO;
1257 goto fail3;
1258 }
Ben Hutchingsb1057982012-09-19 00:56:47 +01001259 efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001260 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001261 netif_err(efx, probe, efx->net_dev,
1262 "could not map memory BAR at %llx+%x\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001263 (unsigned long long)efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001264 rc = -ENOMEM;
1265 goto fail4;
1266 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001267 netif_dbg(efx, probe, efx->net_dev,
1268 "memory BAR at %llx+%x (virtual %p)\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001269 (unsigned long long)efx->membase_phys, mem_map_size,
1270 efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001271
1272 return 0;
1273
1274 fail4:
Shradha Shah02246a72015-05-06 00:58:14 +01001275 pci_release_region(efx->pci_dev, bar);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001276 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001277 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001278 fail2:
1279 pci_disable_device(efx->pci_dev);
1280 fail1:
1281 return rc;
1282}
1283
1284static void efx_fini_io(struct efx_nic *efx)
1285{
Shradha Shah02246a72015-05-06 00:58:14 +01001286 int bar;
1287
Ben Hutchings62776d02010-06-23 11:30:07 +00001288 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001289
1290 if (efx->membase) {
1291 iounmap(efx->membase);
1292 efx->membase = NULL;
1293 }
1294
1295 if (efx->membase_phys) {
Shradha Shah02246a72015-05-06 00:58:14 +01001296 bar = efx->type->mem_bar;
1297 pci_release_region(efx->pci_dev, bar);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001298 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001299 }
1300
1301 pci_disable_device(efx->pci_dev);
1302}
1303
Jon Cooper267c0152015-05-06 00:59:38 +01001304void efx_set_default_rx_indir_table(struct efx_nic *efx)
1305{
1306 size_t i;
1307
1308 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
1309 efx->rx_indir_table[i] =
1310 ethtool_rxfh_indir_default(i, efx->rss_spread);
1311}
1312
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001313static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
Ben Hutchings46123d02008-09-01 12:47:33 +01001314{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001315 cpumask_var_t thread_mask;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001316 unsigned int count;
Ben Hutchings46123d02008-09-01 12:47:33 +01001317 int cpu;
1318
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001319 if (rss_cpus) {
1320 count = rss_cpus;
1321 } else {
1322 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1323 netif_warn(efx, probe, efx->net_dev,
1324 "RSS disabled due to allocation failure\n");
1325 return 1;
Ben Hutchings46123d02008-09-01 12:47:33 +01001326 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001327
1328 count = 0;
1329 for_each_online_cpu(cpu) {
1330 if (!cpumask_test_cpu(cpu, thread_mask)) {
1331 ++count;
1332 cpumask_or(thread_mask, thread_mask,
1333 topology_thread_cpumask(cpu));
1334 }
1335 }
1336
1337 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001338 }
1339
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001340 /* If RSS is requested for the PF *and* VFs then we can't write RSS
1341 * table entries that are inaccessible to VFs
1342 */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001343#ifdef CONFIG_SFC_SRIOV
1344 if (efx->type->sriov_wanted) {
1345 if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1346 count > efx_vf_size(efx)) {
1347 netif_warn(efx, probe, efx->net_dev,
1348 "Reducing number of RSS channels from %u to %u for "
1349 "VF support. Increase vf-msix-limit to use more "
1350 "channels on the PF.\n",
1351 count, efx_vf_size(efx));
1352 count = efx_vf_size(efx);
1353 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001354 }
Shradha Shah7fa8d542015-05-06 00:55:13 +01001355#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001356
Ben Hutchings46123d02008-09-01 12:47:33 +01001357 return count;
1358}
1359
1360/* Probe the number and type of interrupts we are able to obtain, and
1361 * the resulting numbers of channels and RX queues.
1362 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001363static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001364{
Ben Hutchings7f967c02012-02-13 23:45:02 +00001365 unsigned int extra_channels = 0;
1366 unsigned int i, j;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001367 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001368
Ben Hutchings7f967c02012-02-13 23:45:02 +00001369 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1370 if (efx->extra_channel_type[i])
1371 ++extra_channels;
1372
Ben Hutchings8ceee662008-04-27 12:55:59 +01001373 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001374 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001375 unsigned int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001376
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001377 n_channels = efx_wanted_parallelism(efx);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001378 if (separate_tx_channels)
1379 n_channels *= 2;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001380 n_channels += extra_channels;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001381 n_channels = min(n_channels, efx->max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001382
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001383 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001384 xentries[i].entry = i;
Alexander Gordeev184603d2014-02-18 11:12:00 +01001385 rc = pci_enable_msix_range(efx->pci_dev,
1386 xentries, 1, n_channels);
1387 if (rc < 0) {
1388 /* Fall back to single channel MSI */
1389 efx->interrupt_mode = EFX_INT_MODE_MSI;
1390 netif_err(efx, drv, efx->net_dev,
1391 "could not enable MSI-X\n");
1392 } else if (rc < n_channels) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001393 netif_err(efx, drv, efx->net_dev,
1394 "WARNING: Insufficient MSI-X vectors"
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001395 " available (%d < %u).\n", rc, n_channels);
Ben Hutchings62776d02010-06-23 11:30:07 +00001396 netif_err(efx, drv, efx->net_dev,
1397 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001398 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001399 }
1400
Alexander Gordeev184603d2014-02-18 11:12:00 +01001401 if (rc > 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001402 efx->n_channels = n_channels;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001403 if (n_channels > extra_channels)
1404 n_channels -= extra_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001405 if (separate_tx_channels) {
Ben Hutchings7f967c02012-02-13 23:45:02 +00001406 efx->n_tx_channels = max(n_channels / 2, 1U);
1407 efx->n_rx_channels = max(n_channels -
1408 efx->n_tx_channels,
1409 1U);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001410 } else {
Ben Hutchings7f967c02012-02-13 23:45:02 +00001411 efx->n_tx_channels = n_channels;
1412 efx->n_rx_channels = n_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001413 }
Ben Hutchings7f967c02012-02-13 23:45:02 +00001414 for (i = 0; i < efx->n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001415 efx_get_channel(efx, i)->irq =
1416 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001417 }
1418 }
1419
1420 /* Try single interrupt MSI */
1421 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001422 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001423 efx->n_rx_channels = 1;
1424 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001425 rc = pci_enable_msi(efx->pci_dev);
1426 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001427 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001428 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001429 netif_err(efx, drv, efx->net_dev,
1430 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001431 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1432 }
1433 }
1434
1435 /* Assume legacy interrupts */
1436 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Neil Turton28b581a2008-12-12 21:41:06 -08001437 efx->n_channels = 1 + (separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001438 efx->n_rx_channels = 1;
1439 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001440 efx->legacy_irq = efx->pci_dev->irq;
1441 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001442
Ben Hutchings7f967c02012-02-13 23:45:02 +00001443 /* Assign extra channels if possible */
1444 j = efx->n_channels;
1445 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1446 if (!efx->extra_channel_type[i])
1447 continue;
1448 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1449 efx->n_channels <= extra_channels) {
1450 efx->extra_channel_type[i]->handle_no_channel(efx);
1451 } else {
1452 --j;
1453 efx_get_channel(efx, j)->type =
1454 efx->extra_channel_type[i];
1455 }
1456 }
1457
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001458 /* RSS might be usable on VFs even if it is disabled on the PF */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001459#ifdef CONFIG_SFC_SRIOV
1460 if (efx->type->sriov_wanted) {
1461 efx->rss_spread = ((efx->n_rx_channels > 1 ||
1462 !efx->type->sriov_wanted(efx)) ?
1463 efx->n_rx_channels : efx_vf_size(efx));
1464 return 0;
1465 }
1466#endif
1467 efx->rss_spread = efx->n_rx_channels;
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01001468
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001469 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001470}
1471
Jon Cooper261e4d92013-04-15 18:51:54 +01001472static int efx_soft_enable_interrupts(struct efx_nic *efx)
Ben Hutchingsd8291182012-10-05 23:35:41 +01001473{
Jon Cooper261e4d92013-04-15 18:51:54 +01001474 struct efx_channel *channel, *end_channel;
1475 int rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001476
1477 BUG_ON(efx->state == STATE_DISABLED);
1478
1479 efx->irq_soft_enabled = true;
1480 smp_wmb();
1481
1482 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001483 if (!channel->type->keep_eventq) {
1484 rc = efx_init_eventq(channel);
1485 if (rc)
1486 goto fail;
1487 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001488 efx_start_eventq(channel);
1489 }
1490
1491 efx_mcdi_mode_event(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01001492
1493 return 0;
1494fail:
1495 end_channel = channel;
1496 efx_for_each_channel(channel, efx) {
1497 if (channel == end_channel)
1498 break;
1499 efx_stop_eventq(channel);
1500 if (!channel->type->keep_eventq)
1501 efx_fini_eventq(channel);
1502 }
1503
1504 return rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001505}
1506
1507static void efx_soft_disable_interrupts(struct efx_nic *efx)
1508{
1509 struct efx_channel *channel;
1510
1511 if (efx->state == STATE_DISABLED)
1512 return;
1513
1514 efx_mcdi_mode_poll(efx);
1515
1516 efx->irq_soft_enabled = false;
1517 smp_wmb();
1518
1519 if (efx->legacy_irq)
1520 synchronize_irq(efx->legacy_irq);
1521
1522 efx_for_each_channel(channel, efx) {
1523 if (channel->irq)
1524 synchronize_irq(channel->irq);
1525
1526 efx_stop_eventq(channel);
1527 if (!channel->type->keep_eventq)
1528 efx_fini_eventq(channel);
1529 }
Ben Hutchingscade7152013-08-27 23:12:31 +01001530
1531 /* Flush the asynchronous MCDI request queue */
1532 efx_mcdi_flush_async(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01001533}
1534
Jon Cooper261e4d92013-04-15 18:51:54 +01001535static int efx_enable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001536{
Jon Cooper261e4d92013-04-15 18:51:54 +01001537 struct efx_channel *channel, *end_channel;
1538 int rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001539
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001540 BUG_ON(efx->state == STATE_DISABLED);
1541
Alexandre Ramesb28405b2013-03-21 16:41:43 +00001542 if (efx->eeh_disabled_legacy_irq) {
1543 enable_irq(efx->legacy_irq);
1544 efx->eeh_disabled_legacy_irq = false;
1545 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001546
Ben Hutchings86094f72013-08-21 19:51:04 +01001547 efx->type->irq_enable_master(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001548
1549 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001550 if (channel->type->keep_eventq) {
1551 rc = efx_init_eventq(channel);
1552 if (rc)
1553 goto fail;
1554 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001555 }
1556
Jon Cooper261e4d92013-04-15 18:51:54 +01001557 rc = efx_soft_enable_interrupts(efx);
1558 if (rc)
1559 goto fail;
1560
1561 return 0;
1562
1563fail:
1564 end_channel = channel;
1565 efx_for_each_channel(channel, efx) {
1566 if (channel == end_channel)
1567 break;
1568 if (channel->type->keep_eventq)
1569 efx_fini_eventq(channel);
1570 }
1571
1572 efx->type->irq_disable_non_ev(efx);
1573
1574 return rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001575}
1576
Ben Hutchingsd8291182012-10-05 23:35:41 +01001577static void efx_disable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001578{
1579 struct efx_channel *channel;
1580
Ben Hutchingsd8291182012-10-05 23:35:41 +01001581 efx_soft_disable_interrupts(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001582
1583 efx_for_each_channel(channel, efx) {
Ben Hutchingsd8291182012-10-05 23:35:41 +01001584 if (channel->type->keep_eventq)
Ben Hutchings7f967c02012-02-13 23:45:02 +00001585 efx_fini_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001586 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001587
Ben Hutchings86094f72013-08-21 19:51:04 +01001588 efx->type->irq_disable_non_ev(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001589}
1590
Ben Hutchings8ceee662008-04-27 12:55:59 +01001591static void efx_remove_interrupts(struct efx_nic *efx)
1592{
1593 struct efx_channel *channel;
1594
1595 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001596 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001597 channel->irq = 0;
1598 pci_disable_msi(efx->pci_dev);
1599 pci_disable_msix(efx->pci_dev);
1600
1601 /* Remove legacy interrupt */
1602 efx->legacy_irq = 0;
1603}
1604
Ben Hutchings8831da72008-09-01 12:47:48 +01001605static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001606{
Ben Hutchings602a5322011-05-16 17:32:39 +01001607 struct efx_channel *channel;
1608 struct efx_tx_queue *tx_queue;
1609
Ben Hutchings97653432011-01-12 18:26:56 +00001610 efx->tx_channel_offset =
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001611 separate_tx_channels ? efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001612
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001613 /* We need to mark which channels really have RX and TX
1614 * queues, and adjust the TX queue numbers if we have separate
Ben Hutchings602a5322011-05-16 17:32:39 +01001615 * RX-only and TX-only channels.
1616 */
1617 efx_for_each_channel(channel, efx) {
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001618 if (channel->channel < efx->n_rx_channels)
1619 channel->rx_queue.core_index = channel->channel;
1620 else
1621 channel->rx_queue.core_index = -1;
1622
Ben Hutchings602a5322011-05-16 17:32:39 +01001623 efx_for_each_channel_tx_queue(tx_queue, channel)
1624 tx_queue->queue -= (efx->tx_channel_offset *
1625 EFX_TXQ_TYPES);
1626 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001627}
1628
1629static int efx_probe_nic(struct efx_nic *efx)
1630{
1631 int rc;
1632
Ben Hutchings62776d02010-06-23 11:30:07 +00001633 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001634
1635 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001636 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001637 if (rc)
1638 return rc;
1639
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001640 /* Determine the number of channels and queues by trying to hook
Ben Hutchings8ceee662008-04-27 12:55:59 +01001641 * in MSI-X interrupts. */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001642 rc = efx_probe_interrupts(efx);
1643 if (rc)
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001644 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001645
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001646 efx_set_channels(efx);
1647
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001648 rc = efx->type->dimension_resources(efx);
1649 if (rc)
1650 goto fail2;
Ben Hutchings28e47c42012-02-15 01:58:49 +00001651
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001652 if (efx->n_channels > 1)
Jon Cooper267c0152015-05-06 00:59:38 +01001653 netdev_rss_key_fill(&efx->rx_hash_key,
1654 sizeof(efx->rx_hash_key));
1655 efx_set_default_rx_indir_table(efx);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001656
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001657 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1658 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001659
1660 /* Initialise the interrupt moderation settings */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001661 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1662 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001663
1664 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001665
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001666fail2:
1667 efx_remove_interrupts(efx);
1668fail1:
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001669 efx->type->remove(efx);
1670 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001671}
1672
1673static void efx_remove_nic(struct efx_nic *efx)
1674{
Ben Hutchings62776d02010-06-23 11:30:07 +00001675 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001676
1677 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001678 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001679}
1680
Ben Hutchingsadd72472012-11-08 01:46:53 +00001681static int efx_probe_filters(struct efx_nic *efx)
1682{
1683 int rc;
1684
1685 spin_lock_init(&efx->filter_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001686 init_rwsem(&efx->filter_sem);
1687 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001688 rc = efx->type->filter_table_probe(efx);
1689 if (rc)
Edward Cree0d322412015-05-20 11:10:03 +01001690 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001691
1692#ifdef CONFIG_RFS_ACCEL
1693 if (efx->type->offload_features & NETIF_F_NTUPLE) {
1694 efx->rps_flow_id = kcalloc(efx->type->max_rx_ip_filters,
1695 sizeof(*efx->rps_flow_id),
1696 GFP_KERNEL);
1697 if (!efx->rps_flow_id) {
1698 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001699 rc = -ENOMEM;
1700 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001701 }
1702 }
1703#endif
Edward Cree0d322412015-05-20 11:10:03 +01001704out_unlock:
1705 up_write(&efx->filter_sem);
1706 return rc;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001707}
1708
1709static void efx_remove_filters(struct efx_nic *efx)
1710{
1711#ifdef CONFIG_RFS_ACCEL
1712 kfree(efx->rps_flow_id);
1713#endif
Edward Cree0d322412015-05-20 11:10:03 +01001714 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001715 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001716 up_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001717}
1718
1719static void efx_restore_filters(struct efx_nic *efx)
1720{
Edward Cree0d322412015-05-20 11:10:03 +01001721 down_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001722 efx->type->filter_table_restore(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001723 up_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001724}
1725
Ben Hutchings8ceee662008-04-27 12:55:59 +01001726/**************************************************************************
1727 *
1728 * NIC startup/shutdown
1729 *
1730 *************************************************************************/
1731
1732static int efx_probe_all(struct efx_nic *efx)
1733{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001734 int rc;
1735
Ben Hutchings8ceee662008-04-27 12:55:59 +01001736 rc = efx_probe_nic(efx);
1737 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001738 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001739 goto fail1;
1740 }
1741
Ben Hutchings8ceee662008-04-27 12:55:59 +01001742 rc = efx_probe_port(efx);
1743 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001744 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001745 goto fail2;
1746 }
1747
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00001748 BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
1749 if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
1750 rc = -EINVAL;
1751 goto fail3;
1752 }
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001753 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001754
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001755#ifdef CONFIG_SFC_SRIOV
1756 rc = efx->type->vswitching_probe(efx);
1757 if (rc) /* not fatal; the PF will still work fine */
1758 netif_warn(efx, probe, efx->net_dev,
1759 "failed to setup vswitching rc=%d;"
1760 " VFs may not function\n", rc);
1761#endif
1762
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001763 rc = efx_probe_filters(efx);
1764 if (rc) {
1765 netif_err(efx, probe, efx->net_dev,
1766 "failed to create filter tables\n");
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001767 goto fail4;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001768 }
1769
Ben Hutchings7f967c02012-02-13 23:45:02 +00001770 rc = efx_probe_channels(efx);
1771 if (rc)
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001772 goto fail5;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001773
Ben Hutchings8ceee662008-04-27 12:55:59 +01001774 return 0;
1775
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001776 fail5:
Ben Hutchings7f967c02012-02-13 23:45:02 +00001777 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001778 fail4:
1779#ifdef CONFIG_SFC_SRIOV
1780 efx->type->vswitching_remove(efx);
1781#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001782 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001783 efx_remove_port(efx);
1784 fail2:
1785 efx_remove_nic(efx);
1786 fail1:
1787 return rc;
1788}
1789
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001790/* If the interface is supposed to be running but is not, start
1791 * the hardware and software data path, regular activity for the port
1792 * (MAC statistics, link polling, etc.) and schedule the port to be
1793 * reconfigured. Interrupts must already be enabled. This function
1794 * is safe to call multiple times, so long as the NIC is not disabled.
1795 * Requires the RTNL lock.
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001796 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001797static void efx_start_all(struct efx_nic *efx)
1798{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001799 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001800 BUG_ON(efx->state == STATE_DISABLED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001801
1802 /* Check that it is appropriate to restart the interface. All
1803 * of these flags are safe to read under just the rtnl lock */
Edward Creee2835462014-04-16 19:27:48 +01001804 if (efx->port_enabled || !netif_running(efx->net_dev) ||
1805 efx->reset_pending)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001806 return;
1807
Ben Hutchings8ceee662008-04-27 12:55:59 +01001808 efx_start_port(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001809 efx_start_datapath(efx);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001810
Alexandre Rames626950d2013-01-14 17:20:22 +00001811 /* Start the hardware monitor if there is one */
1812 if (efx->type->monitor != NULL)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001813 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1814 efx_monitor_interval);
Alexandre Rames626950d2013-01-14 17:20:22 +00001815
1816 /* If link state detection is normally event-driven, we have
1817 * to poll now because we could have missed a change
1818 */
1819 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) {
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001820 mutex_lock(&efx->mac_lock);
1821 if (efx->phy_op->poll(efx))
1822 efx_link_status_changed(efx);
1823 mutex_unlock(&efx->mac_lock);
1824 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001825
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001826 efx->type->start_stats(efx);
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001827 efx->type->pull_stats(efx);
1828 spin_lock_bh(&efx->stats_lock);
1829 efx->type->update_stats(efx, NULL, NULL);
1830 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001831}
1832
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001833/* Quiesce the hardware and software data path, and regular activity
1834 * for the port without bringing the link down. Safe to call multiple
1835 * times with the NIC in almost any state, but interrupts should be
1836 * enabled. Requires the RTNL lock.
1837 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001838static void efx_stop_all(struct efx_nic *efx)
1839{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001840 EFX_ASSERT_RESET_SERIALISED(efx);
1841
1842 /* port_enabled can be read safely under the rtnl lock */
1843 if (!efx->port_enabled)
1844 return;
1845
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001846 /* update stats before we go down so we can accurately count
1847 * rx_nodesc_drops
1848 */
1849 efx->type->pull_stats(efx);
1850 spin_lock_bh(&efx->stats_lock);
1851 efx->type->update_stats(efx, NULL, NULL);
1852 spin_unlock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001853 efx->type->stop_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001854 efx_stop_port(efx);
1855
Ben Hutchings29c69a42013-01-28 19:01:06 +00001856 /* Stop the kernel transmit interface. This is only valid if
1857 * the device is stopped or detached; otherwise the watchdog
1858 * may fire immediately.
1859 */
1860 WARN_ON(netif_running(efx->net_dev) &&
1861 netif_device_present(efx->net_dev));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001862 netif_tx_disable(efx->net_dev);
1863
1864 efx_stop_datapath(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001865}
1866
1867static void efx_remove_all(struct efx_nic *efx)
1868{
Ben Hutchings46426102010-09-10 06:42:33 +00001869 efx_remove_channels(efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001870 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001871#ifdef CONFIG_SFC_SRIOV
1872 efx->type->vswitching_remove(efx);
1873#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001874 efx_remove_port(efx);
1875 efx_remove_nic(efx);
1876}
1877
Ben Hutchings8ceee662008-04-27 12:55:59 +01001878/**************************************************************************
1879 *
1880 * Interrupt moderation
1881 *
1882 **************************************************************************/
1883
Ben Hutchingscc180b62011-12-08 19:51:47 +00001884static unsigned int irq_mod_ticks(unsigned int usecs, unsigned int quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001885{
Ben Hutchingsb548f972011-09-05 07:41:44 +00001886 if (usecs == 0)
1887 return 0;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001888 if (usecs * 1000 < quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001889 return 1; /* never round down to 0 */
Ben Hutchingscc180b62011-12-08 19:51:47 +00001890 return usecs * 1000 / quantum_ns;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001891}
1892
Ben Hutchings8ceee662008-04-27 12:55:59 +01001893/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001894int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1895 unsigned int rx_usecs, bool rx_adaptive,
1896 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001897{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001898 struct efx_channel *channel;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001899 unsigned int irq_mod_max = DIV_ROUND_UP(efx->type->timer_period_max *
1900 efx->timer_quantum_ns,
1901 1000);
1902 unsigned int tx_ticks;
1903 unsigned int rx_ticks;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001904
1905 EFX_ASSERT_RESET_SERIALISED(efx);
1906
Ben Hutchingscc180b62011-12-08 19:51:47 +00001907 if (tx_usecs > irq_mod_max || rx_usecs > irq_mod_max)
Ben Hutchings9e393b32011-09-05 07:43:04 +00001908 return -EINVAL;
1909
Ben Hutchingscc180b62011-12-08 19:51:47 +00001910 tx_ticks = irq_mod_ticks(tx_usecs, efx->timer_quantum_ns);
1911 rx_ticks = irq_mod_ticks(rx_usecs, efx->timer_quantum_ns);
1912
Ben Hutchings9e393b32011-09-05 07:43:04 +00001913 if (tx_ticks != rx_ticks && efx->tx_channel_offset == 0 &&
1914 !rx_may_override_tx) {
1915 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1916 "RX and TX IRQ moderation must be equal\n");
1917 return -EINVAL;
1918 }
1919
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001920 efx->irq_rx_adaptive = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001921 efx->irq_rx_moderation = rx_ticks;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001922 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00001923 if (efx_channel_has_rx_queue(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001924 channel->irq_moderation = rx_ticks;
Ben Hutchings525da902011-02-07 23:04:38 +00001925 else if (efx_channel_has_tx_queues(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001926 channel->irq_moderation = tx_ticks;
1927 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00001928
1929 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001930}
1931
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001932void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
1933 unsigned int *rx_usecs, bool *rx_adaptive)
1934{
Ben Hutchingscc180b62011-12-08 19:51:47 +00001935 /* We must round up when converting ticks to microseconds
1936 * because we round down when converting the other way.
1937 */
1938
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001939 *rx_adaptive = efx->irq_rx_adaptive;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001940 *rx_usecs = DIV_ROUND_UP(efx->irq_rx_moderation *
1941 efx->timer_quantum_ns,
1942 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001943
1944 /* If channels are shared between RX and TX, so is IRQ
1945 * moderation. Otherwise, IRQ moderation is the same for all
1946 * TX channels and is not adaptive.
1947 */
1948 if (efx->tx_channel_offset == 0)
1949 *tx_usecs = *rx_usecs;
1950 else
Ben Hutchingscc180b62011-12-08 19:51:47 +00001951 *tx_usecs = DIV_ROUND_UP(
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001952 efx->channel[efx->tx_channel_offset]->irq_moderation *
Ben Hutchingscc180b62011-12-08 19:51:47 +00001953 efx->timer_quantum_ns,
1954 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001955}
1956
Ben Hutchings8ceee662008-04-27 12:55:59 +01001957/**************************************************************************
1958 *
1959 * Hardware monitor
1960 *
1961 **************************************************************************/
1962
Ben Hutchingse254c272010-09-20 08:44:10 +00001963/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001964static void efx_monitor(struct work_struct *data)
1965{
1966 struct efx_nic *efx = container_of(data, struct efx_nic,
1967 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001968
Ben Hutchings62776d02010-06-23 11:30:07 +00001969 netif_vdbg(efx, timer, efx->net_dev,
1970 "hardware monitor executing on CPU %d\n",
1971 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001972 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001973
Ben Hutchings8ceee662008-04-27 12:55:59 +01001974 /* If the mac_lock is already held then it is likely a port
1975 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00001976 * most of the work of monitor() anyway. */
1977 if (mutex_trylock(&efx->mac_lock)) {
1978 if (efx->port_enabled)
1979 efx->type->monitor(efx);
1980 mutex_unlock(&efx->mac_lock);
1981 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001982
Ben Hutchings8ceee662008-04-27 12:55:59 +01001983 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1984 efx_monitor_interval);
1985}
1986
1987/**************************************************************************
1988 *
1989 * ioctls
1990 *
1991 *************************************************************************/
1992
1993/* Net device ioctl
1994 * Context: process, rtnl_lock() held.
1995 */
1996static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
1997{
Ben Hutchings767e4682008-09-01 12:43:14 +01001998 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00001999 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002000
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002001 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings433dc9b2013-11-14 01:26:21 +00002002 return efx_ptp_set_ts_config(efx, ifr);
2003 if (cmd == SIOCGHWTSTAMP)
2004 return efx_ptp_get_ts_config(efx, ifr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002005
Ben Hutchings68e7f452009-04-29 08:05:08 +00002006 /* Convert phy_id from older PRTAD/DEVAD format */
2007 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
2008 (data->phy_id & 0xfc00) == 0x0400)
2009 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
2010
2011 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002012}
2013
2014/**************************************************************************
2015 *
2016 * NAPI interface
2017 *
2018 **************************************************************************/
2019
Ben Hutchings7f967c02012-02-13 23:45:02 +00002020static void efx_init_napi_channel(struct efx_channel *channel)
2021{
2022 struct efx_nic *efx = channel->efx;
2023
2024 channel->napi_dev = efx->net_dev;
2025 netif_napi_add(channel->napi_dev, &channel->napi_str,
2026 efx_poll, napi_weight);
Alexandre Rames36763262014-07-22 14:03:25 +01002027 napi_hash_add(&channel->napi_str);
2028 efx_channel_init_lock(channel);
Ben Hutchings7f967c02012-02-13 23:45:02 +00002029}
2030
Ben Hutchingse8f14992010-12-07 19:47:34 +00002031static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002032{
2033 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002034
Ben Hutchings7f967c02012-02-13 23:45:02 +00002035 efx_for_each_channel(channel, efx)
2036 efx_init_napi_channel(channel);
Ben Hutchingse8f14992010-12-07 19:47:34 +00002037}
2038
2039static void efx_fini_napi_channel(struct efx_channel *channel)
2040{
Alexandre Rames36763262014-07-22 14:03:25 +01002041 if (channel->napi_dev) {
Ben Hutchingse8f14992010-12-07 19:47:34 +00002042 netif_napi_del(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +01002043 napi_hash_del(&channel->napi_str);
2044 }
Ben Hutchingse8f14992010-12-07 19:47:34 +00002045 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002046}
2047
2048static void efx_fini_napi(struct efx_nic *efx)
2049{
2050 struct efx_channel *channel;
2051
Ben Hutchingse8f14992010-12-07 19:47:34 +00002052 efx_for_each_channel(channel, efx)
2053 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002054}
2055
2056/**************************************************************************
2057 *
2058 * Kernel netpoll interface
2059 *
2060 *************************************************************************/
2061
2062#ifdef CONFIG_NET_POLL_CONTROLLER
2063
2064/* Although in the common case interrupts will be disabled, this is not
2065 * guaranteed. However, all our work happens inside the NAPI callback,
2066 * so no locking is required.
2067 */
2068static void efx_netpoll(struct net_device *net_dev)
2069{
Ben Hutchings767e4682008-09-01 12:43:14 +01002070 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002071 struct efx_channel *channel;
2072
Ben Hutchings64ee3122008-09-01 12:47:38 +01002073 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002074 efx_schedule_channel(channel);
2075}
2076
2077#endif
2078
Alexandre Rames36763262014-07-22 14:03:25 +01002079#ifdef CONFIG_NET_RX_BUSY_POLL
2080static int efx_busy_poll(struct napi_struct *napi)
2081{
2082 struct efx_channel *channel =
2083 container_of(napi, struct efx_channel, napi_str);
2084 struct efx_nic *efx = channel->efx;
2085 int budget = 4;
2086 int old_rx_packets, rx_packets;
2087
2088 if (!netif_running(efx->net_dev))
2089 return LL_FLUSH_FAILED;
2090
2091 if (!efx_channel_lock_poll(channel))
2092 return LL_FLUSH_BUSY;
2093
2094 old_rx_packets = channel->rx_queue.rx_packets;
2095 efx_process_channel(channel, budget);
2096
2097 rx_packets = channel->rx_queue.rx_packets - old_rx_packets;
2098
2099 /* There is no race condition with NAPI here.
2100 * NAPI will automatically be rescheduled if it yielded during busy
2101 * polling, because it was not able to take the lock and thus returned
2102 * the full budget.
2103 */
2104 efx_channel_unlock_poll(channel);
2105
2106 return rx_packets;
2107}
2108#endif
2109
Ben Hutchings8ceee662008-04-27 12:55:59 +01002110/**************************************************************************
2111 *
2112 * Kernel net device interface
2113 *
2114 *************************************************************************/
2115
2116/* Context: process, rtnl_lock() held. */
Shradha Shahe340be92015-05-20 11:11:03 +01002117int efx_net_open(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002118{
Ben Hutchings767e4682008-09-01 12:43:14 +01002119 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002120 int rc;
2121
Ben Hutchings62776d02010-06-23 11:30:07 +00002122 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
2123 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002124
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002125 rc = efx_check_disabled(efx);
2126 if (rc)
2127 return rc;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002128 if (efx->phy_mode & PHY_MODE_SPECIAL)
2129 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002130 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
2131 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002132
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00002133 /* Notify the kernel of the link state polled during driver load,
2134 * before the monitor starts running */
2135 efx_link_status_changed(efx);
2136
Ben Hutchings8ceee662008-04-27 12:55:59 +01002137 efx_start_all(efx);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002138 efx_selftest_async_start(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002139 return 0;
2140}
2141
2142/* Context: process, rtnl_lock() held.
2143 * Note that the kernel will ignore our return code; this method
2144 * should really be a void.
2145 */
Shradha Shahe340be92015-05-20 11:11:03 +01002146int efx_net_stop(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002147{
Ben Hutchings767e4682008-09-01 12:43:14 +01002148 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002149
Ben Hutchings62776d02010-06-23 11:30:07 +00002150 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
2151 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002152
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002153 /* Stop the device and flush all the channels */
2154 efx_stop_all(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002155
2156 return 0;
2157}
2158
Ben Hutchings5b9e2072008-05-16 21:18:14 +01002159/* Context: process, dev_base_lock or RTNL held, non-blocking. */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +00002160static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev,
2161 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002162{
Ben Hutchings767e4682008-09-01 12:43:14 +01002163 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002164
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002165 spin_lock_bh(&efx->stats_lock);
Ben Hutchingscd0ecc92012-12-14 21:52:56 +00002166 efx->type->update_stats(efx, NULL, stats);
Ben Hutchings1cb34522011-09-02 23:23:00 +01002167 spin_unlock_bh(&efx->stats_lock);
2168
Ben Hutchings8ceee662008-04-27 12:55:59 +01002169 return stats;
2170}
2171
2172/* Context: netif_tx_lock held, BHs disabled. */
2173static void efx_watchdog(struct net_device *net_dev)
2174{
Ben Hutchings767e4682008-09-01 12:43:14 +01002175 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002176
Ben Hutchings62776d02010-06-23 11:30:07 +00002177 netif_err(efx, tx_err, efx->net_dev,
2178 "TX stuck with port_enabled=%d: resetting channels\n",
2179 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002180
Ben Hutchings739bb23d2008-11-04 20:35:36 +00002181 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002182}
2183
2184
2185/* Context: process, rtnl_lock() held. */
2186static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2187{
Ben Hutchings767e4682008-09-01 12:43:14 +01002188 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002189 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002190
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002191 rc = efx_check_disabled(efx);
2192 if (rc)
2193 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002194 if (new_mtu > EFX_MAX_MTU)
2195 return -EINVAL;
2196
Ben Hutchings62776d02010-06-23 11:30:07 +00002197 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002198
Ben Hutchings29c69a42013-01-28 19:01:06 +00002199 efx_device_detach_sync(efx);
2200 efx_stop_all(efx);
2201
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002202 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002203 net_dev->mtu = new_mtu;
Edward Cree0d322412015-05-20 11:10:03 +01002204 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002205 mutex_unlock(&efx->mac_lock);
2206
Ben Hutchings8ceee662008-04-27 12:55:59 +01002207 efx_start_all(efx);
Ben Hutchings29c69a42013-01-28 19:01:06 +00002208 netif_device_attach(efx->net_dev);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00002209 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002210}
2211
2212static int efx_set_mac_address(struct net_device *net_dev, void *data)
2213{
Ben Hutchings767e4682008-09-01 12:43:14 +01002214 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002215 struct sockaddr *addr = data;
Ben Hutchingse0b3ae32014-02-12 18:59:54 +00002216 u8 *new_addr = addr->sa_data;
Shradha Shahcfc77c22015-05-20 11:09:30 +01002217 u8 old_addr[6];
2218 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002219
Ben Hutchings8ceee662008-04-27 12:55:59 +01002220 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002221 netif_err(efx, drv, efx->net_dev,
2222 "invalid ethernet MAC address requested: %pM\n",
2223 new_addr);
Danny Kukawka504f9b52012-02-21 02:07:49 +00002224 return -EADDRNOTAVAIL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002225 }
2226
Shradha Shahcfc77c22015-05-20 11:09:30 +01002227 /* save old address */
2228 ether_addr_copy(old_addr, net_dev->dev_addr);
Edward Creecd84ff42014-03-07 18:27:41 +00002229 ether_addr_copy(net_dev->dev_addr, new_addr);
Shradha Shah910c8782015-05-20 11:12:48 +01002230 if (efx->type->set_mac_address) {
2231 rc = efx->type->set_mac_address(efx);
Shradha Shahcfc77c22015-05-20 11:09:30 +01002232 if (rc) {
2233 ether_addr_copy(net_dev->dev_addr, old_addr);
2234 return rc;
2235 }
2236 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002237
2238 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002239 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01002240 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002241 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002242
2243 return 0;
2244}
2245
Ben Hutchingsa816f752008-09-01 12:49:12 +01002246/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002247static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002248{
Ben Hutchings767e4682008-09-01 12:43:14 +01002249 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002250
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00002251 if (efx->port_enabled)
2252 queue_work(efx->workqueue, &efx->mac_work);
2253 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002254}
2255
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002256static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002257{
2258 struct efx_nic *efx = netdev_priv(net_dev);
2259
2260 /* If disabling RX n-tuple filtering, clear existing filters */
2261 if (net_dev->features & ~data & NETIF_F_NTUPLE)
Ben Hutchingsfbd79122013-11-21 19:15:03 +00002262 return efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002263
2264 return 0;
2265}
2266
Shradha Shah7fa8d542015-05-06 00:55:13 +01002267static const struct net_device_ops efx_netdev_ops = {
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002268 .ndo_open = efx_net_open,
2269 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00002270 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002271 .ndo_tx_timeout = efx_watchdog,
2272 .ndo_start_xmit = efx_hard_start_xmit,
2273 .ndo_validate_addr = eth_validate_addr,
2274 .ndo_do_ioctl = efx_ioctl,
2275 .ndo_change_mtu = efx_change_mtu,
2276 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002277 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002278 .ndo_set_features = efx_set_features,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002279#ifdef CONFIG_SFC_SRIOV
Shradha Shah7fa8d542015-05-06 00:55:13 +01002280 .ndo_set_vf_mac = efx_sriov_set_vf_mac,
2281 .ndo_set_vf_vlan = efx_sriov_set_vf_vlan,
2282 .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk,
2283 .ndo_get_vf_config = efx_sriov_get_vf_config,
Edward Cree4392dc62015-05-20 11:12:13 +01002284 .ndo_set_vf_link_state = efx_sriov_set_vf_link_state,
Shradha Shah1d051e02015-06-02 11:38:16 +01002285 .ndo_get_phys_port_id = efx_sriov_get_phys_port_id,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002286#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002287#ifdef CONFIG_NET_POLL_CONTROLLER
2288 .ndo_poll_controller = efx_netpoll,
2289#endif
Ben Hutchings94b274b2011-01-10 21:18:20 +00002290 .ndo_setup_tc = efx_setup_tc,
Alexandre Rames36763262014-07-22 14:03:25 +01002291#ifdef CONFIG_NET_RX_BUSY_POLL
2292 .ndo_busy_poll = efx_busy_poll,
2293#endif
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002294#ifdef CONFIG_RFS_ACCEL
2295 .ndo_rx_flow_steer = efx_filter_rfs,
2296#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002297};
2298
Ben Hutchings7dde5962008-12-12 22:09:38 -08002299static void efx_update_name(struct efx_nic *efx)
2300{
2301 strcpy(efx->name, efx->net_dev->name);
2302 efx_mtd_rename(efx);
2303 efx_set_channel_names(efx);
2304}
2305
Ben Hutchings8ceee662008-04-27 12:55:59 +01002306static int efx_netdev_event(struct notifier_block *this,
2307 unsigned long event, void *ptr)
2308{
Jiri Pirko351638e2013-05-28 01:30:21 +00002309 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002310
Shradha Shah7fa8d542015-05-06 00:55:13 +01002311 if ((net_dev->netdev_ops == &efx_netdev_ops) &&
Ben Hutchings7dde5962008-12-12 22:09:38 -08002312 event == NETDEV_CHANGENAME)
2313 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002314
2315 return NOTIFY_DONE;
2316}
2317
2318static struct notifier_block efx_netdev_notifier = {
2319 .notifier_call = efx_netdev_event,
2320};
2321
Ben Hutchings06d5e192008-12-12 21:47:23 -08002322static ssize_t
2323show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2324{
2325 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2326 return sprintf(buf, "%d\n", efx->phy_type);
2327}
Ben Hutchings776fbcc2013-06-18 17:45:40 +01002328static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002329
Edward Creee7fef9b2015-05-27 13:14:01 +01002330#ifdef CONFIG_SFC_MCDI_LOGGING
2331static ssize_t show_mcdi_log(struct device *dev, struct device_attribute *attr,
2332 char *buf)
2333{
2334 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2335 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2336
2337 return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled);
2338}
2339static ssize_t set_mcdi_log(struct device *dev, struct device_attribute *attr,
2340 const char *buf, size_t count)
2341{
2342 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2343 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2344 bool enable = count > 0 && *buf != '0';
2345
2346 mcdi->logging_enabled = enable;
2347 return count;
2348}
2349static DEVICE_ATTR(mcdi_logging, 0644, show_mcdi_log, set_mcdi_log);
2350#endif
2351
Ben Hutchings8ceee662008-04-27 12:55:59 +01002352static int efx_register_netdev(struct efx_nic *efx)
2353{
2354 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002355 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002356 int rc;
2357
2358 net_dev->watchdog_timeo = 5 * HZ;
2359 net_dev->irq = efx->pci_dev->irq;
Shradha Shah7fa8d542015-05-06 00:55:13 +01002360 net_dev->netdev_ops = &efx_netdev_ops;
2361 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0)
Ben Hutchings8127d662013-08-29 19:19:29 +01002362 net_dev->priv_flags |= IFF_UNICAST_FLT;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002363 net_dev->ethtool_ops = &efx_ethtool_ops;
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002364 net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002365
Ben Hutchings7dde5962008-12-12 22:09:38 -08002366 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00002367
Ben Hutchings7153f622012-07-27 20:50:52 +01002368 /* Enable resets to be scheduled and check whether any were
2369 * already requested. If so, the NIC is probably hosed so we
2370 * abort.
2371 */
2372 efx->state = STATE_READY;
2373 smp_mb(); /* ensure we change state before checking reset_pending */
2374 if (efx->reset_pending) {
2375 netif_err(efx, probe, efx->net_dev,
2376 "aborting probe due to scheduled reset\n");
2377 rc = -EIO;
2378 goto fail_locked;
2379 }
2380
Ben Hutchingsaed06282009-08-26 08:16:27 +00002381 rc = dev_alloc_name(net_dev, net_dev->name);
2382 if (rc < 0)
2383 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002384 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002385
Ben Hutchings8f8b3d52012-08-24 18:04:38 +01002386 /* Always start with carrier off; PHY events will detect the link */
2387 netif_carrier_off(net_dev);
2388
Ben Hutchingsaed06282009-08-26 08:16:27 +00002389 rc = register_netdevice(net_dev);
2390 if (rc)
2391 goto fail_locked;
2392
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002393 efx_for_each_channel(channel, efx) {
2394 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00002395 efx_for_each_channel_tx_queue(tx_queue, channel)
2396 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002397 }
2398
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002399 efx_associate(efx);
2400
Ben Hutchings7dde5962008-12-12 22:09:38 -08002401 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002402
Ben Hutchings06d5e192008-12-12 21:47:23 -08002403 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2404 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002405 netif_err(efx, drv, efx->net_dev,
2406 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08002407 goto fail_registered;
2408 }
Edward Creee7fef9b2015-05-27 13:14:01 +01002409#ifdef CONFIG_SFC_MCDI_LOGGING
2410 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2411 if (rc) {
2412 netif_err(efx, drv, efx->net_dev,
2413 "failed to init net dev attributes\n");
2414 goto fail_attr_mcdi_logging;
2415 }
2416#endif
Ben Hutchings06d5e192008-12-12 21:47:23 -08002417
Ben Hutchings8ceee662008-04-27 12:55:59 +01002418 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08002419
Edward Creee7fef9b2015-05-27 13:14:01 +01002420#ifdef CONFIG_SFC_MCDI_LOGGING
2421fail_attr_mcdi_logging:
2422 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2423#endif
Ben Hutchings7153f622012-07-27 20:50:52 +01002424fail_registered:
2425 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002426 efx_dissociate(efx);
Ben Hutchings7153f622012-07-27 20:50:52 +01002427 unregister_netdevice(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002428fail_locked:
Ben Hutchings7153f622012-07-27 20:50:52 +01002429 efx->state = STATE_UNINIT;
Ben Hutchingsaed06282009-08-26 08:16:27 +00002430 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00002431 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00002432 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002433}
2434
2435static void efx_unregister_netdev(struct efx_nic *efx)
2436{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002437 if (!efx->net_dev)
2438 return;
2439
Ben Hutchings767e4682008-09-01 12:43:14 +01002440 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002441
Edward Creee7fef9b2015-05-27 13:14:01 +01002442 if (efx_dev_registered(efx)) {
2443 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2444#ifdef CONFIG_SFC_MCDI_LOGGING
2445 device_remove_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2446#endif
2447 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2448 unregister_netdev(efx->net_dev);
2449 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002450}
2451
2452/**************************************************************************
2453 *
2454 * Device reset and suspend
2455 *
2456 **************************************************************************/
2457
Ben Hutchings2467ca42008-09-01 12:48:50 +01002458/* Tears down the entire software state and most of the hardware state
2459 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002460void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002461{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002462 EFX_ASSERT_RESET_SERIALISED(efx);
2463
Edward Creee2835462014-04-16 19:27:48 +01002464 if (method == RESET_TYPE_MCDI_TIMEOUT)
2465 efx->type->prepare_flr(efx);
2466
Ben Hutchings2467ca42008-09-01 12:48:50 +01002467 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002468 efx_disable_interrupts(efx);
Ben Hutchings5642cee2012-07-27 19:35:52 +01002469
2470 mutex_lock(&efx->mac_lock);
Jon Cooper087e9022015-05-20 11:11:35 +01002471 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2472 method != RESET_TYPE_DATAPATH)
Steve Hodgson4b988282009-01-29 17:50:51 +00002473 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002474 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002475}
2476
Ben Hutchings2467ca42008-09-01 12:48:50 +01002477/* This function will always ensure that the locks acquired in
2478 * efx_reset_down() are released. A failure return code indicates
2479 * that we were unable to reinitialise the hardware, and the
2480 * driver should be disabled. If ok is false, then the rx and tx
2481 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002482int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002483{
2484 int rc;
2485
Ben Hutchings2467ca42008-09-01 12:48:50 +01002486 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002487
Edward Creee2835462014-04-16 19:27:48 +01002488 if (method == RESET_TYPE_MCDI_TIMEOUT)
2489 efx->type->finish_flr(efx);
2490
2491 /* Ensure that SRAM is initialised even if we're disabling the device */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002492 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002493 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002494 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002495 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002496 }
2497
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002498 if (!ok)
2499 goto fail;
2500
Jon Cooper087e9022015-05-20 11:11:35 +01002501 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2502 method != RESET_TYPE_DATAPATH) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002503 rc = efx->phy_op->init(efx);
2504 if (rc)
2505 goto fail;
Edward Cree267d9d72015-05-06 00:59:18 +01002506 rc = efx->phy_op->reconfigure(efx);
2507 if (rc && rc != -EPERM)
Ben Hutchings62776d02010-06-23 11:30:07 +00002508 netif_err(efx, drv, efx->net_dev,
2509 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002510 }
2511
Jon Cooper261e4d92013-04-15 18:51:54 +01002512 rc = efx_enable_interrupts(efx);
2513 if (rc)
2514 goto fail;
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002515
2516#ifdef CONFIG_SFC_SRIOV
2517 rc = efx->type->vswitching_restore(efx);
2518 if (rc) /* not fatal; the PF will still work fine */
2519 netif_warn(efx, probe, efx->net_dev,
2520 "failed to restore vswitching rc=%d;"
2521 " VFs may not function\n", rc);
2522#endif
2523
Edward Cree0d322412015-05-20 11:10:03 +01002524 down_read(&efx->filter_sem);
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002525 efx_restore_filters(efx);
Edward Cree0d322412015-05-20 11:10:03 +01002526 up_read(&efx->filter_sem);
Shradha Shah7fa8d542015-05-06 00:55:13 +01002527 if (efx->type->sriov_reset)
2528 efx->type->sriov_reset(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002529
2530 mutex_unlock(&efx->mac_lock);
2531
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002532 efx_start_all(efx);
2533
2534 return 0;
2535
2536fail:
2537 efx->port_initialized = false;
2538
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002539 mutex_unlock(&efx->mac_lock);
2540
Ben Hutchings8ceee662008-04-27 12:55:59 +01002541 return rc;
2542}
2543
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002544/* Reset the NIC using the specified method. Note that the reset may
2545 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002546 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002547 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002548 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002549int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002550{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002551 int rc, rc2;
2552 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002553
Ben Hutchings62776d02010-06-23 11:30:07 +00002554 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2555 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002556
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002557 efx_device_detach_sync(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002558 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002559
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002560 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002561 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002562 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002563 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002564 }
2565
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002566 /* Clear flags for the scopes we covered. We assume the NIC and
2567 * driver are now quiescent so that there is no race here.
2568 */
Edward Creee2835462014-04-16 19:27:48 +01002569 if (method < RESET_TYPE_MAX_METHOD)
2570 efx->reset_pending &= -(1 << (method + 1));
2571 else /* it doesn't fit into the well-ordered scope hierarchy */
2572 __clear_bit(method, &efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002573
2574 /* Reinitialise bus-mastering, which may have been turned off before
2575 * the reset was scheduled. This is still appropriate, even in the
2576 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2577 * can respond to requests. */
2578 pci_set_master(efx->pci_dev);
2579
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002580out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002581 /* Leave device stopped if necessary */
Alexandre Rames626950d2013-01-14 17:20:22 +00002582 disabled = rc ||
2583 method == RESET_TYPE_DISABLE ||
2584 method == RESET_TYPE_RECOVER_OR_DISABLE;
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002585 rc2 = efx_reset_up(efx, method, !disabled);
2586 if (rc2) {
2587 disabled = true;
2588 if (!rc)
2589 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002590 }
2591
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002592 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002593 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002594 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002595 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002596 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002597 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingse4abce82011-05-16 18:51:24 +01002598 netif_device_attach(efx->net_dev);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002599 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002600 return rc;
2601}
2602
Alexandre Rames626950d2013-01-14 17:20:22 +00002603/* Try recovery mechanisms.
2604 * For now only EEH is supported.
2605 * Returns 0 if the recovery mechanisms are unsuccessful.
2606 * Returns a non-zero value otherwise.
2607 */
Alexandre Ramesb28405b2013-03-21 16:41:43 +00002608int efx_try_recovery(struct efx_nic *efx)
Alexandre Rames626950d2013-01-14 17:20:22 +00002609{
2610#ifdef CONFIG_EEH
2611 /* A PCI error can occur and not be seen by EEH because nothing
2612 * happens on the PCI bus. In this case the driver may fail and
2613 * schedule a 'recover or reset', leading to this recovery handler.
2614 * Manually call the eeh failure check function.
2615 */
Benjamin Herrenschmidt12a89db2015-03-23 14:00:47 +11002616 struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002617 if (eeh_dev_check_failure(eehdev)) {
2618 /* The EEH mechanisms will handle the error and reset the
2619 * device if necessary.
2620 */
2621 return 1;
2622 }
2623#endif
2624 return 0;
2625}
2626
Jon Cooper74cd60a2013-09-16 14:18:51 +01002627static void efx_wait_for_bist_end(struct efx_nic *efx)
2628{
2629 int i;
2630
2631 for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
2632 if (efx_mcdi_poll_reboot(efx))
2633 goto out;
2634 msleep(BIST_WAIT_DELAY_MS);
2635 }
2636
2637 netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
2638out:
2639 /* Either way unset the BIST flag. If we found no reboot we probably
2640 * won't recover, but we should try.
2641 */
2642 efx->mc_bist_for_other_fn = false;
2643}
2644
Ben Hutchings8ceee662008-04-27 12:55:59 +01002645/* The worker thread exists so that code that cannot sleep can
2646 * schedule a reset for later.
2647 */
2648static void efx_reset_work(struct work_struct *data)
2649{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002650 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Alexandre Rames626950d2013-01-14 17:20:22 +00002651 unsigned long pending;
2652 enum reset_type method;
2653
2654 pending = ACCESS_ONCE(efx->reset_pending);
2655 method = fls(pending) - 1;
2656
Jon Cooper74cd60a2013-09-16 14:18:51 +01002657 if (method == RESET_TYPE_MC_BIST)
2658 efx_wait_for_bist_end(efx);
2659
Alexandre Rames626950d2013-01-14 17:20:22 +00002660 if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
2661 method == RESET_TYPE_RECOVER_OR_ALL) &&
2662 efx_try_recovery(efx))
2663 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002664
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002665 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00002666 return;
2667
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002668 rtnl_lock();
Ben Hutchings7153f622012-07-27 20:50:52 +01002669
2670 /* We checked the state in efx_schedule_reset() but it may
2671 * have changed by now. Now that we have the RTNL lock,
2672 * it cannot change again.
2673 */
2674 if (efx->state == STATE_READY)
Alexandre Rames626950d2013-01-14 17:20:22 +00002675 (void)efx_reset(efx, method);
Ben Hutchings7153f622012-07-27 20:50:52 +01002676
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002677 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002678}
2679
2680void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2681{
2682 enum reset_type method;
2683
Alexandre Rames626950d2013-01-14 17:20:22 +00002684 if (efx->state == STATE_RECOVERY) {
2685 netif_dbg(efx, drv, efx->net_dev,
2686 "recovering: skip scheduling %s reset\n",
2687 RESET_TYPE(type));
2688 return;
2689 }
2690
Ben Hutchings8ceee662008-04-27 12:55:59 +01002691 switch (type) {
2692 case RESET_TYPE_INVISIBLE:
2693 case RESET_TYPE_ALL:
Alexandre Rames626950d2013-01-14 17:20:22 +00002694 case RESET_TYPE_RECOVER_OR_ALL:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002695 case RESET_TYPE_WORLD:
2696 case RESET_TYPE_DISABLE:
Alexandre Rames626950d2013-01-14 17:20:22 +00002697 case RESET_TYPE_RECOVER_OR_DISABLE:
Jon Cooper087e9022015-05-20 11:11:35 +01002698 case RESET_TYPE_DATAPATH:
Jon Cooper74cd60a2013-09-16 14:18:51 +01002699 case RESET_TYPE_MC_BIST:
Edward Creee2835462014-04-16 19:27:48 +01002700 case RESET_TYPE_MCDI_TIMEOUT:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002701 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002702 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2703 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002704 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002705 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002706 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00002707 netif_dbg(efx, drv, efx->net_dev,
2708 "scheduling %s reset for %s\n",
2709 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002710 break;
2711 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002712
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002713 set_bit(method, &efx->reset_pending);
Ben Hutchings7153f622012-07-27 20:50:52 +01002714 smp_mb(); /* ensure we change reset_pending before checking state */
2715
2716 /* If we're not READY then just leave the flags set as the cue
2717 * to abort probing or reschedule the reset later.
2718 */
2719 if (ACCESS_ONCE(efx->state) != STATE_READY)
2720 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002721
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002722 /* efx_process_channel() will no longer read events once a
2723 * reset is scheduled. So switch back to poll'd MCDI completions. */
2724 efx_mcdi_mode_poll(efx);
2725
Steve Hodgson1ab00622008-12-12 21:33:02 -08002726 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002727}
2728
2729/**************************************************************************
2730 *
2731 * List of NICs we support
2732 *
2733 **************************************************************************/
2734
2735/* PCI device ID table */
Benoit Taine9baa3c32014-08-08 15:56:03 +02002736static const struct pci_device_id efx_pci_table[] = {
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002737 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2738 PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002739 .driver_data = (unsigned long) &falcon_a1_nic_type},
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002740 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2741 PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002742 .driver_data = (unsigned long) &falcon_b0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002743 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002744 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002745 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002746 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8127d662013-08-29 19:19:29 +01002747 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */
2748 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01002749 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1903), /* SFC9120 VF */
2750 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Mateusz Wrzesinski3b06a002014-07-14 08:38:49 +01002751 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923), /* SFC9140 PF */
2752 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002753 {0} /* end of list */
2754};
2755
2756/**************************************************************************
2757 *
Ben Hutchings37594332009-11-23 16:05:45 +00002758 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002759 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002760 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002761 * Needed so all function pointers are valid and do not have to be tested
2762 * before use
2763 *
2764 **************************************************************************/
2765int efx_port_dummy_op_int(struct efx_nic *efx)
2766{
2767 return 0;
2768}
2769void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002770
2771static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002772{
2773 return false;
2774}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002775
stephen hemminger6c8c2512011-04-14 05:50:12 +00002776static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002777 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002778 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002779 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002780 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002781};
2782
Ben Hutchings8ceee662008-04-27 12:55:59 +01002783/**************************************************************************
2784 *
2785 * Data housekeeping
2786 *
2787 **************************************************************************/
2788
2789/* This zeroes out and then fills in the invariants in a struct
2790 * efx_nic (including all sub-structures).
2791 */
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002792static int efx_init_struct(struct efx_nic *efx,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002793 struct pci_dev *pci_dev, struct net_device *net_dev)
2794{
Ben Hutchings46426102010-09-10 06:42:33 +00002795 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002796
2797 /* Initialise common structures */
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002798 INIT_LIST_HEAD(&efx->node);
2799 INIT_LIST_HEAD(&efx->secondary_list);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002800 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002801#ifdef CONFIG_SFC_MTD
2802 INIT_LIST_HEAD(&efx->mtd_list);
2803#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002804 INIT_WORK(&efx->reset_work, efx_reset_work);
2805 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002806 INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002807 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002808 efx->msg_enable = debug;
Ben Hutchingsf16aeea2012-07-27 19:31:16 +01002809 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002810 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002811
2812 efx->net_dev = net_dev;
Jon Cooper43a37392012-10-18 15:49:54 +01002813 efx->rx_prefix_size = efx->type->rx_prefix_size;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +04002814 efx->rx_ip_align =
2815 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
Jon Cooper43a37392012-10-18 15:49:54 +01002816 efx->rx_packet_hash_offset =
2817 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
Jon Cooperbd9a2652013-11-18 12:54:41 +00002818 efx->rx_packet_ts_offset =
2819 efx->type->rx_ts_offset - efx->type->rx_prefix_size;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002820 spin_lock_init(&efx->stats_lock);
2821 mutex_init(&efx->mac_lock);
2822 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002823 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002824 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002825 init_waitqueue_head(&efx->flush_wq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002826
2827 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002828 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2829 if (!efx->channel[i])
2830 goto fail;
Ben Hutchingsd8291182012-10-05 23:35:41 +01002831 efx->msi_context[i].efx = efx;
2832 efx->msi_context[i].index = i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002833 }
2834
Ben Hutchings8ceee662008-04-27 12:55:59 +01002835 /* Higher numbered interrupt modes are less capable! */
2836 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2837 interrupt_mode);
2838
Ben Hutchings6977dc62008-12-26 13:44:39 -08002839 /* Would be good to use the net_dev name, but we're too early */
2840 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2841 pci_name(pci_dev));
2842 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002843 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00002844 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002845
Ben Hutchings8ceee662008-04-27 12:55:59 +01002846 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00002847
2848fail:
2849 efx_fini_struct(efx);
2850 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002851}
2852
2853static void efx_fini_struct(struct efx_nic *efx)
2854{
Ben Hutchings8313aca2010-09-10 06:41:57 +00002855 int i;
2856
2857 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2858 kfree(efx->channel[i]);
2859
Ben Hutchingsef215e62013-12-05 20:13:22 +00002860 kfree(efx->vpd_sn);
2861
Ben Hutchings8ceee662008-04-27 12:55:59 +01002862 if (efx->workqueue) {
2863 destroy_workqueue(efx->workqueue);
2864 efx->workqueue = NULL;
2865 }
2866}
2867
Edward Creee4d112e2014-07-15 11:58:12 +01002868void efx_update_sw_stats(struct efx_nic *efx, u64 *stats)
2869{
2870 u64 n_rx_nodesc_trunc = 0;
2871 struct efx_channel *channel;
2872
2873 efx_for_each_channel(channel, efx)
2874 n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc;
2875 stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc;
2876 stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops);
2877}
2878
Ben Hutchings8ceee662008-04-27 12:55:59 +01002879/**************************************************************************
2880 *
2881 * PCI interface
2882 *
2883 **************************************************************************/
2884
2885/* Main body of final NIC shutdown code
2886 * This is called only at module unload (or hotplug removal).
2887 */
2888static void efx_pci_remove_main(struct efx_nic *efx)
2889{
Ben Hutchings7153f622012-07-27 20:50:52 +01002890 /* Flush reset_work. It can no longer be scheduled since we
2891 * are not READY.
2892 */
2893 BUG_ON(efx->state == STATE_READY);
2894 cancel_work_sync(&efx->reset_work);
2895
Ben Hutchingsd8291182012-10-05 23:35:41 +01002896 efx_disable_interrupts(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00002897 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002898 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002899 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002900 efx_fini_napi(efx);
2901 efx_remove_all(efx);
2902}
2903
2904/* Final NIC shutdown
Daniel Pieczko2a3fc312015-06-02 11:40:46 +01002905 * This is called only at module unload (or hotplug removal). A PF can call
2906 * this on its VFs to ensure they are unbound first.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002907 */
2908static void efx_pci_remove(struct pci_dev *pci_dev)
2909{
2910 struct efx_nic *efx;
2911
2912 efx = pci_get_drvdata(pci_dev);
2913 if (!efx)
2914 return;
2915
2916 /* Mark the NIC as fini, then stop the interface */
2917 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002918 efx_dissociate(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002919 dev_close(efx->net_dev);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002920 efx_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002921 rtnl_unlock();
2922
Shradha Shah7fa8d542015-05-06 00:55:13 +01002923 if (efx->type->sriov_fini)
2924 efx->type->sriov_fini(efx);
2925
Ben Hutchings8ceee662008-04-27 12:55:59 +01002926 efx_unregister_netdev(efx);
2927
Ben Hutchings7dde5962008-12-12 22:09:38 -08002928 efx_mtd_remove(efx);
2929
Ben Hutchings8ceee662008-04-27 12:55:59 +01002930 efx_pci_remove_main(efx);
2931
Ben Hutchings8ceee662008-04-27 12:55:59 +01002932 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002933 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002934
Ben Hutchings8ceee662008-04-27 12:55:59 +01002935 efx_fini_struct(efx);
2936 free_netdev(efx->net_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002937
2938 pci_disable_pcie_error_reporting(pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002939};
2940
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002941/* NIC VPD information
2942 * Called during probe to display the part number of the
2943 * installed NIC. VPD is potentially very large but this should
2944 * always appear within the first 512 bytes.
2945 */
2946#define SFC_VPD_LEN 512
Ben Hutchingsef215e62013-12-05 20:13:22 +00002947static void efx_probe_vpd_strings(struct efx_nic *efx)
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002948{
2949 struct pci_dev *dev = efx->pci_dev;
2950 char vpd_data[SFC_VPD_LEN];
2951 ssize_t vpd_size;
Ben Hutchingsef215e62013-12-05 20:13:22 +00002952 int ro_start, ro_size, i, j;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002953
2954 /* Get the vpd data from the device */
2955 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
2956 if (vpd_size <= 0) {
2957 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
2958 return;
2959 }
2960
2961 /* Get the Read only section */
Ben Hutchingsef215e62013-12-05 20:13:22 +00002962 ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
2963 if (ro_start < 0) {
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002964 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
2965 return;
2966 }
2967
Ben Hutchingsef215e62013-12-05 20:13:22 +00002968 ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
2969 j = ro_size;
2970 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002971 if (i + j > vpd_size)
2972 j = vpd_size - i;
2973
2974 /* Get the Part number */
2975 i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
2976 if (i < 0) {
2977 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
2978 return;
2979 }
2980
2981 j = pci_vpd_info_field_size(&vpd_data[i]);
2982 i += PCI_VPD_INFO_FLD_HDR_SIZE;
2983 if (i + j > vpd_size) {
2984 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
2985 return;
2986 }
2987
2988 netif_info(efx, drv, efx->net_dev,
2989 "Part Number : %.*s\n", j, &vpd_data[i]);
Ben Hutchingsef215e62013-12-05 20:13:22 +00002990
2991 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
2992 j = ro_size;
2993 i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN");
2994 if (i < 0) {
2995 netif_err(efx, drv, efx->net_dev, "Serial number not found\n");
2996 return;
2997 }
2998
2999 j = pci_vpd_info_field_size(&vpd_data[i]);
3000 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3001 if (i + j > vpd_size) {
3002 netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n");
3003 return;
3004 }
3005
3006 efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL);
3007 if (!efx->vpd_sn)
3008 return;
3009
3010 snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003011}
3012
3013
Ben Hutchings8ceee662008-04-27 12:55:59 +01003014/* Main body of NIC initialisation
3015 * This is called at module load (or hotplug insertion, theoretically).
3016 */
3017static int efx_pci_probe_main(struct efx_nic *efx)
3018{
3019 int rc;
3020
3021 /* Do start-of-day initialisation */
3022 rc = efx_probe_all(efx);
3023 if (rc)
3024 goto fail1;
3025
Ben Hutchingse8f14992010-12-07 19:47:34 +00003026 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003027
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003028 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003029 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003030 netif_err(efx, probe, efx->net_dev,
3031 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003032 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003033 }
3034
3035 rc = efx_init_port(efx);
3036 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003037 netif_err(efx, probe, efx->net_dev,
3038 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003039 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003040 }
3041
Ben Hutchings152b6a62009-11-29 03:43:56 +00003042 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003043 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00003044 goto fail5;
Jon Cooper261e4d92013-04-15 18:51:54 +01003045 rc = efx_enable_interrupts(efx);
3046 if (rc)
3047 goto fail6;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003048
3049 return 0;
3050
Jon Cooper261e4d92013-04-15 18:51:54 +01003051 fail6:
3052 efx_nic_fini_interrupt(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00003053 fail5:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003054 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003055 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003056 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003057 fail3:
3058 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003059 efx_remove_all(efx);
3060 fail1:
3061 return rc;
3062}
3063
3064/* NIC initialisation
3065 *
3066 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00003067 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003068 * sets up and registers the network devices with the kernel and hooks
3069 * the interrupt service routine. It does not prepare the device for
3070 * transmission; this is left to the first time one of the network
3071 * interfaces is brought up (i.e. efx_net_open).
3072 */
Bill Pemberton87d1fc12012-12-03 09:23:32 -05003073static int efx_pci_probe(struct pci_dev *pci_dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00003074 const struct pci_device_id *entry)
Ben Hutchings8ceee662008-04-27 12:55:59 +01003075{
Ben Hutchings8ceee662008-04-27 12:55:59 +01003076 struct net_device *net_dev;
3077 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003078 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003079
3080 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00003081 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
3082 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003083 if (!net_dev)
3084 return -ENOMEM;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003085 efx = netdev_priv(net_dev);
3086 efx->type = (const struct efx_nic_type *) entry->driver_data;
3087 net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
Ben Hutchings97bc5412009-05-19 16:19:08 -07003088 NETIF_F_HIGHDMA | NETIF_F_TSO |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01003089 NETIF_F_RXCSUM);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003090 if (efx->type->offload_features & NETIF_F_V6_CSUM)
Ben Hutchings738a8f42009-11-29 15:16:05 +00003091 net_dev->features |= NETIF_F_TSO6;
Ben Hutchings285065632008-09-01 12:46:54 +01003092 /* Mask for features that also apply to VLAN devices */
3093 net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01003094 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
3095 NETIF_F_RXCSUM);
3096 /* All offloads can be toggled */
3097 net_dev->hw_features = net_dev->features & ~NETIF_F_HIGHDMA;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003098 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003099 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003100 rc = efx_init_struct(efx, pci_dev, net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003101 if (rc)
3102 goto fail1;
3103
Ben Hutchings62776d02010-06-23 11:30:07 +00003104 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01003105 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003106
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01003107 if (!efx->type->is_vf)
3108 efx_probe_vpd_strings(efx);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003109
Ben Hutchings8ceee662008-04-27 12:55:59 +01003110 /* Set up basic I/O (BAR mappings etc) */
3111 rc = efx_init_io(efx);
3112 if (rc)
3113 goto fail2;
3114
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003115 rc = efx_pci_probe_main(efx);
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003116 if (rc)
3117 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08003118
Ben Hutchings8ceee662008-04-27 12:55:59 +01003119 rc = efx_register_netdev(efx);
3120 if (rc)
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003121 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003122
Shradha Shah7fa8d542015-05-06 00:55:13 +01003123 if (efx->type->sriov_init) {
3124 rc = efx->type->sriov_init(efx);
3125 if (rc)
3126 netif_err(efx, probe, efx->net_dev,
3127 "SR-IOV can't be enabled rc %d\n", rc);
3128 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003129
Ben Hutchings62776d02010-06-23 11:30:07 +00003130 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003131
Ben Hutchings7c431612012-01-27 17:23:58 +00003132 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003133 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003134 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003135 rtnl_unlock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003136 if (rc)
3137 netif_warn(efx, probe, efx->net_dev,
3138 "failed to create MTDs (%d)\n", rc);
3139
Alexandre Rames626950d2013-01-14 17:20:22 +00003140 rc = pci_enable_pcie_error_reporting(pci_dev);
3141 if (rc && rc != -EINVAL)
3142 netif_warn(efx, probe, efx->net_dev,
3143 "pci_enable_pcie_error_reporting failed (%d)\n", rc);
3144
Ben Hutchings8ceee662008-04-27 12:55:59 +01003145 return 0;
3146
Ben Hutchings8ceee662008-04-27 12:55:59 +01003147 fail4:
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003148 efx_pci_remove_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003149 fail3:
3150 efx_fini_io(efx);
3151 fail2:
3152 efx_fini_struct(efx);
3153 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08003154 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00003155 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003156 free_netdev(net_dev);
3157 return rc;
3158}
3159
Shradha Shah834e23d2015-05-06 00:55:58 +01003160/* efx_pci_sriov_configure returns the actual number of Virtual Functions
3161 * enabled on success
3162 */
3163#ifdef CONFIG_SFC_SRIOV
3164static int efx_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
3165{
3166 int rc;
3167 struct efx_nic *efx = pci_get_drvdata(dev);
3168
3169 if (efx->type->sriov_configure) {
3170 rc = efx->type->sriov_configure(efx, num_vfs);
3171 if (rc)
3172 return rc;
3173 else
3174 return num_vfs;
3175 } else
3176 return -EOPNOTSUPP;
3177}
3178#endif
3179
Ben Hutchings89c758f2009-11-29 03:43:07 +00003180static int efx_pm_freeze(struct device *dev)
3181{
3182 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3183
Ben Hutchings61da0262012-07-27 19:35:39 +01003184 rtnl_lock();
3185
Ben Hutchings6032fb52012-07-27 19:35:47 +01003186 if (efx->state != STATE_DISABLED) {
3187 efx->state = STATE_UNINIT;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003188
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01003189 efx_device_detach_sync(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003190
Ben Hutchings6032fb52012-07-27 19:35:47 +01003191 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003192 efx_disable_interrupts(efx);
Ben Hutchings6032fb52012-07-27 19:35:47 +01003193 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003194
Ben Hutchings61da0262012-07-27 19:35:39 +01003195 rtnl_unlock();
3196
Ben Hutchings89c758f2009-11-29 03:43:07 +00003197 return 0;
3198}
3199
3200static int efx_pm_thaw(struct device *dev)
3201{
Jon Cooper261e4d92013-04-15 18:51:54 +01003202 int rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003203 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3204
Ben Hutchings61da0262012-07-27 19:35:39 +01003205 rtnl_lock();
3206
Ben Hutchings6032fb52012-07-27 19:35:47 +01003207 if (efx->state != STATE_DISABLED) {
Jon Cooper261e4d92013-04-15 18:51:54 +01003208 rc = efx_enable_interrupts(efx);
3209 if (rc)
3210 goto fail;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003211
Ben Hutchings6032fb52012-07-27 19:35:47 +01003212 mutex_lock(&efx->mac_lock);
3213 efx->phy_op->reconfigure(efx);
3214 mutex_unlock(&efx->mac_lock);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003215
Ben Hutchings6032fb52012-07-27 19:35:47 +01003216 efx_start_all(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003217
Ben Hutchings6032fb52012-07-27 19:35:47 +01003218 netif_device_attach(efx->net_dev);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003219
Ben Hutchings6032fb52012-07-27 19:35:47 +01003220 efx->state = STATE_READY;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003221
Ben Hutchings6032fb52012-07-27 19:35:47 +01003222 efx->type->resume_wol(efx);
3223 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003224
Ben Hutchings61da0262012-07-27 19:35:39 +01003225 rtnl_unlock();
3226
Steve Hodgson319ba642010-06-01 11:17:24 +00003227 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
3228 queue_work(reset_workqueue, &efx->reset_work);
3229
Ben Hutchings89c758f2009-11-29 03:43:07 +00003230 return 0;
Jon Cooper261e4d92013-04-15 18:51:54 +01003231
3232fail:
3233 rtnl_unlock();
3234
3235 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003236}
3237
3238static int efx_pm_poweroff(struct device *dev)
3239{
3240 struct pci_dev *pci_dev = to_pci_dev(dev);
3241 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3242
3243 efx->type->fini(efx);
3244
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003245 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003246
3247 pci_save_state(pci_dev);
3248 return pci_set_power_state(pci_dev, PCI_D3hot);
3249}
3250
3251/* Used for both resume and restore */
3252static int efx_pm_resume(struct device *dev)
3253{
3254 struct pci_dev *pci_dev = to_pci_dev(dev);
3255 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3256 int rc;
3257
3258 rc = pci_set_power_state(pci_dev, PCI_D0);
3259 if (rc)
3260 return rc;
3261 pci_restore_state(pci_dev);
3262 rc = pci_enable_device(pci_dev);
3263 if (rc)
3264 return rc;
3265 pci_set_master(efx->pci_dev);
3266 rc = efx->type->reset(efx, RESET_TYPE_ALL);
3267 if (rc)
3268 return rc;
3269 rc = efx->type->init(efx);
3270 if (rc)
3271 return rc;
Jon Cooper261e4d92013-04-15 18:51:54 +01003272 rc = efx_pm_thaw(dev);
3273 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003274}
3275
3276static int efx_pm_suspend(struct device *dev)
3277{
3278 int rc;
3279
3280 efx_pm_freeze(dev);
3281 rc = efx_pm_poweroff(dev);
3282 if (rc)
3283 efx_pm_resume(dev);
3284 return rc;
3285}
3286
Ben Hutchings18e83e42012-01-05 19:05:20 +00003287static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00003288 .suspend = efx_pm_suspend,
3289 .resume = efx_pm_resume,
3290 .freeze = efx_pm_freeze,
3291 .thaw = efx_pm_thaw,
3292 .poweroff = efx_pm_poweroff,
3293 .restore = efx_pm_resume,
3294};
3295
Alexandre Rames626950d2013-01-14 17:20:22 +00003296/* A PCI error affecting this device was detected.
3297 * At this point MMIO and DMA may be disabled.
3298 * Stop the software path and request a slot reset.
3299 */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003300static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3301 enum pci_channel_state state)
Alexandre Rames626950d2013-01-14 17:20:22 +00003302{
3303 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3304 struct efx_nic *efx = pci_get_drvdata(pdev);
3305
3306 if (state == pci_channel_io_perm_failure)
3307 return PCI_ERS_RESULT_DISCONNECT;
3308
3309 rtnl_lock();
3310
3311 if (efx->state != STATE_DISABLED) {
3312 efx->state = STATE_RECOVERY;
3313 efx->reset_pending = 0;
3314
3315 efx_device_detach_sync(efx);
3316
3317 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003318 efx_disable_interrupts(efx);
Alexandre Rames626950d2013-01-14 17:20:22 +00003319
3320 status = PCI_ERS_RESULT_NEED_RESET;
3321 } else {
3322 /* If the interface is disabled we don't want to do anything
3323 * with it.
3324 */
3325 status = PCI_ERS_RESULT_RECOVERED;
3326 }
3327
3328 rtnl_unlock();
3329
3330 pci_disable_device(pdev);
3331
3332 return status;
3333}
3334
Joe Perchesdbedd442015-03-06 20:49:12 -08003335/* Fake a successful reset, which will be performed later in efx_io_resume. */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003336static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
Alexandre Rames626950d2013-01-14 17:20:22 +00003337{
3338 struct efx_nic *efx = pci_get_drvdata(pdev);
3339 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3340 int rc;
3341
3342 if (pci_enable_device(pdev)) {
3343 netif_err(efx, hw, efx->net_dev,
3344 "Cannot re-enable PCI device after reset.\n");
3345 status = PCI_ERS_RESULT_DISCONNECT;
3346 }
3347
3348 rc = pci_cleanup_aer_uncorrect_error_status(pdev);
3349 if (rc) {
3350 netif_err(efx, hw, efx->net_dev,
3351 "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc);
3352 /* Non-fatal error. Continue. */
3353 }
3354
3355 return status;
3356}
3357
3358/* Perform the actual reset and resume I/O operations. */
3359static void efx_io_resume(struct pci_dev *pdev)
3360{
3361 struct efx_nic *efx = pci_get_drvdata(pdev);
3362 int rc;
3363
3364 rtnl_lock();
3365
3366 if (efx->state == STATE_DISABLED)
3367 goto out;
3368
3369 rc = efx_reset(efx, RESET_TYPE_ALL);
3370 if (rc) {
3371 netif_err(efx, hw, efx->net_dev,
3372 "efx_reset failed after PCI error (%d)\n", rc);
3373 } else {
3374 efx->state = STATE_READY;
3375 netif_dbg(efx, hw, efx->net_dev,
3376 "Done resetting and resuming IO after PCI error.\n");
3377 }
3378
3379out:
3380 rtnl_unlock();
3381}
3382
3383/* For simplicity and reliability, we always require a slot reset and try to
3384 * reset the hardware when a pci error affecting the device is detected.
3385 * We leave both the link_reset and mmio_enabled callback unimplemented:
3386 * with our request for slot reset the mmio_enabled callback will never be
3387 * called, and the link_reset callback is not used by AER or EEH mechanisms.
3388 */
3389static struct pci_error_handlers efx_err_handlers = {
3390 .error_detected = efx_io_error_detected,
3391 .slot_reset = efx_io_slot_reset,
3392 .resume = efx_io_resume,
3393};
3394
Ben Hutchings8ceee662008-04-27 12:55:59 +01003395static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00003396 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003397 .id_table = efx_pci_table,
3398 .probe = efx_pci_probe,
3399 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00003400 .driver.pm = &efx_pm_ops,
Alexandre Rames626950d2013-01-14 17:20:22 +00003401 .err_handler = &efx_err_handlers,
Shradha Shah834e23d2015-05-06 00:55:58 +01003402#ifdef CONFIG_SFC_SRIOV
3403 .sriov_configure = efx_pci_sriov_configure,
3404#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003405};
3406
3407/**************************************************************************
3408 *
3409 * Kernel module interface
3410 *
3411 *************************************************************************/
3412
3413module_param(interrupt_mode, uint, 0444);
3414MODULE_PARM_DESC(interrupt_mode,
3415 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
3416
3417static int __init efx_init_module(void)
3418{
3419 int rc;
3420
3421 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
3422
3423 rc = register_netdevice_notifier(&efx_netdev_notifier);
3424 if (rc)
3425 goto err_notifier;
3426
Shradha Shah7fa8d542015-05-06 00:55:13 +01003427#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003428 rc = efx_init_sriov();
3429 if (rc)
3430 goto err_sriov;
Shradha Shah7fa8d542015-05-06 00:55:13 +01003431#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003432
Steve Hodgson1ab00622008-12-12 21:33:02 -08003433 reset_workqueue = create_singlethread_workqueue("sfc_reset");
3434 if (!reset_workqueue) {
3435 rc = -ENOMEM;
3436 goto err_reset;
3437 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003438
3439 rc = pci_register_driver(&efx_pci_driver);
3440 if (rc < 0)
3441 goto err_pci;
3442
3443 return 0;
3444
3445 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08003446 destroy_workqueue(reset_workqueue);
3447 err_reset:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003448#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003449 efx_fini_sriov();
3450 err_sriov:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003451#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003452 unregister_netdevice_notifier(&efx_netdev_notifier);
3453 err_notifier:
3454 return rc;
3455}
3456
3457static void __exit efx_exit_module(void)
3458{
3459 printk(KERN_INFO "Solarflare NET driver unloading\n");
3460
3461 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003462 destroy_workqueue(reset_workqueue);
Shradha Shah7fa8d542015-05-06 00:55:13 +01003463#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003464 efx_fini_sriov();
Shradha Shah7fa8d542015-05-06 00:55:13 +01003465#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003466 unregister_netdevice_notifier(&efx_netdev_notifier);
3467
3468}
3469
3470module_init(efx_init_module);
3471module_exit(efx_exit_module);
3472
Ben Hutchings906bb262009-11-29 15:16:19 +00003473MODULE_AUTHOR("Solarflare Communications and "
3474 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings6a350fd2014-02-12 19:00:07 +00003475MODULE_DESCRIPTION("Solarflare network driver");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003476MODULE_LICENSE("GPL");
3477MODULE_DEVICE_TABLE(pci, efx_pci_table);