blob: 033907e6fdb03e848fb135ad14e2c96fc810de97 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Ben Hutchings8ceee662008-04-27 12:55:59 +01002/****************************************************************************
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01003 * Driver for Solarflare network controllers and boards
Ben Hutchings8ceee662008-04-27 12:55:59 +01004 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01005 * Copyright 2005-2013 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01006 */
7
8#include <linux/module.h>
9#include <linux/pci.h>
10#include <linux/netdevice.h>
11#include <linux/etherdevice.h>
12#include <linux/delay.h>
13#include <linux/notifier.h>
14#include <linux/ip.h>
15#include <linux/tcp.h>
16#include <linux/in.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010017#include <linux/ethtool.h>
Ben Hutchingsaa6ef272008-07-18 19:03:10 +010018#include <linux/topology.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/gfp.h>
Alexandre Rames626950d2013-01-14 17:20:22 +000020#include <linux/aer.h>
Alexandre Ramesb28405b2013-03-21 16:41:43 +000021#include <linux/interrupt.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010022#include "net_driver.h"
Jon Coopere5fbd972017-02-08 16:52:10 +000023#include <net/gre.h>
24#include <net/udp_tunnel.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010025#include "efx.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000026#include "nic.h"
Edward Cree71827442017-12-18 16:56:19 +000027#include "io.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"
Jon Coopere5fbd972017-02-08 16:52:10 +000032#include "mcdi_pcol.h"
Steve Hodgsonfd371e32010-06-01 11:17:51 +000033#include "workarounds.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000034
Ben Hutchingsc4593022009-11-23 16:08:17 +000035/**************************************************************************
36 *
37 * Type name strings
38 *
39 **************************************************************************
40 */
41
42/* Loopback mode names (see LOOPBACK_MODE()) */
43const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000044const char *const efx_loopback_mode_names[] = {
Ben Hutchingsc4593022009-11-23 16:08:17 +000045 [LOOPBACK_NONE] = "NONE",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000046 [LOOPBACK_DATA] = "DATAPATH",
Ben Hutchingsc4593022009-11-23 16:08:17 +000047 [LOOPBACK_GMAC] = "GMAC",
48 [LOOPBACK_XGMII] = "XGMII",
49 [LOOPBACK_XGXS] = "XGXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000050 [LOOPBACK_XAUI] = "XAUI",
51 [LOOPBACK_GMII] = "GMII",
52 [LOOPBACK_SGMII] = "SGMII",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000053 [LOOPBACK_XGBR] = "XGBR",
54 [LOOPBACK_XFI] = "XFI",
55 [LOOPBACK_XAUI_FAR] = "XAUI_FAR",
56 [LOOPBACK_GMII_FAR] = "GMII_FAR",
57 [LOOPBACK_SGMII_FAR] = "SGMII_FAR",
58 [LOOPBACK_XFI_FAR] = "XFI_FAR",
Ben Hutchingsc4593022009-11-23 16:08:17 +000059 [LOOPBACK_GPHY] = "GPHY",
60 [LOOPBACK_PHYXS] = "PHYXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000061 [LOOPBACK_PCS] = "PCS",
62 [LOOPBACK_PMAPMD] = "PMA/PMD",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000063 [LOOPBACK_XPORT] = "XPORT",
64 [LOOPBACK_XGMII_WS] = "XGMII_WS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000065 [LOOPBACK_XAUI_WS] = "XAUI_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000066 [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR",
67 [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000068 [LOOPBACK_GMII_WS] = "GMII_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000069 [LOOPBACK_XFI_WS] = "XFI_WS",
70 [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000071 [LOOPBACK_PHYXS_WS] = "PHYXS_WS",
Ben Hutchingsc4593022009-11-23 16:08:17 +000072};
73
Ben Hutchingsc4593022009-11-23 16:08:17 +000074const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000075const char *const efx_reset_type_names[] = {
Alexandre Rames626950d2013-01-14 17:20:22 +000076 [RESET_TYPE_INVISIBLE] = "INVISIBLE",
77 [RESET_TYPE_ALL] = "ALL",
78 [RESET_TYPE_RECOVER_OR_ALL] = "RECOVER_OR_ALL",
79 [RESET_TYPE_WORLD] = "WORLD",
80 [RESET_TYPE_RECOVER_OR_DISABLE] = "RECOVER_OR_DISABLE",
Jon Cooper087e9022015-05-20 11:11:35 +010081 [RESET_TYPE_DATAPATH] = "DATAPATH",
Edward Creee2835462014-04-16 19:27:48 +010082 [RESET_TYPE_MC_BIST] = "MC_BIST",
Alexandre Rames626950d2013-01-14 17:20:22 +000083 [RESET_TYPE_DISABLE] = "DISABLE",
84 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
85 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
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
Jon Coopere5fbd972017-02-08 16:52:10 +000092/* UDP tunnel type names */
93static const char *const efx_udp_tunnel_type_names[] = {
94 [TUNNEL_ENCAP_UDP_PORT_ENTRY_VXLAN] = "vxlan",
95 [TUNNEL_ENCAP_UDP_PORT_ENTRY_GENEVE] = "geneve",
96};
97
98void efx_get_udp_tunnel_type_name(u16 type, char *buf, size_t buflen)
99{
100 if (type < ARRAY_SIZE(efx_udp_tunnel_type_names) &&
101 efx_udp_tunnel_type_names[type] != NULL)
102 snprintf(buf, buflen, "%s", efx_udp_tunnel_type_names[type]);
103 else
104 snprintf(buf, buflen, "type %d", type);
105}
106
Steve Hodgson1ab00622008-12-12 21:33:02 -0800107/* Reset workqueue. If any NIC has a hardware failure then a reset will be
108 * queued onto this work queue. This is not a per-nic work queue, because
109 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
110 */
111static struct workqueue_struct *reset_workqueue;
112
Jon Cooper74cd60a2013-09-16 14:18:51 +0100113/* How often and how many times to poll for a reset while waiting for a
114 * BIST that another function started to complete.
115 */
116#define BIST_WAIT_DELAY_MS 100
117#define BIST_WAIT_DELAY_COUNT 100
118
Ben Hutchings8ceee662008-04-27 12:55:59 +0100119/**************************************************************************
120 *
121 * Configurable values
122 *
123 *************************************************************************/
124
125/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100126 * Use separate channels for TX and RX events
127 *
Neil Turton28b581a2008-12-12 21:41:06 -0800128 * Set this to 1 to use separate channels for TX and RX. It allows us
129 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100130 *
Neil Turton28b581a2008-12-12 21:41:06 -0800131 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100132 */
Shradha Shahb0fbdae2015-08-28 10:55:42 +0100133bool efx_separate_tx_channels;
134module_param(efx_separate_tx_channels, bool, 0444);
135MODULE_PARM_DESC(efx_separate_tx_channels,
Neil Turton28b581a2008-12-12 21:41:06 -0800136 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100137
138/* This is the weight assigned to each of the (per-channel) virtual
139 * NAPI devices.
140 */
141static int napi_weight = 64;
142
143/* This is the time (in jiffies) between invocations of the hardware
Alexandre Rames626950d2013-01-14 17:20:22 +0000144 * monitor.
145 * On Falcon-based NICs, this will:
Ben Hutchingse254c272010-09-20 08:44:10 +0000146 * - Check the on-board hardware monitor;
147 * - Poll the link state and reconfigure the hardware as necessary.
Alexandre Rames626950d2013-01-14 17:20:22 +0000148 * On Siena-based NICs for power systems with EEH support, this will give EEH a
149 * chance to start.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100150 */
stephen hemmingerd2156972010-10-18 05:27:31 +0000151static unsigned int efx_monitor_interval = 1 * HZ;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100152
Ben Hutchings8ceee662008-04-27 12:55:59 +0100153/* Initial interrupt moderation settings. They can be modified after
154 * module load with ethtool.
155 *
156 * The default for RX should strike a balance between increasing the
157 * round-trip latency and reducing overhead.
158 */
159static unsigned int rx_irq_mod_usec = 60;
160
161/* Initial interrupt moderation settings. They can be modified after
162 * module load with ethtool.
163 *
164 * This default is chosen to ensure that a 10G link does not go idle
165 * while a TX queue is stopped after it has become full. A queue is
166 * restarted when it drops below half full. The time this takes (assuming
167 * worst case 3 descriptors per packet and 1024 descriptors) is
168 * 512 / 3 * 1.2 = 205 usec.
169 */
170static unsigned int tx_irq_mod_usec = 150;
171
172/* This is the first interrupt mode to try out of:
173 * 0 => MSI-X
174 * 1 => MSI
175 * 2 => legacy
176 */
177static unsigned int interrupt_mode;
178
179/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
180 * i.e. the number of CPUs among which we may distribute simultaneous
181 * interrupt handling.
182 *
183 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
Ben Hutchingscdb08f82011-12-20 01:08:05 +0000184 * The default (0) means to assign an interrupt to each core.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100185 */
186static unsigned int rss_cpus;
187module_param(rss_cpus, uint, 0444);
188MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
189
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000190static bool phy_flash_cfg;
191module_param(phy_flash_cfg, bool, 0644);
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800192MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
193
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000194static unsigned irq_adapt_low_thresh = 8000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000195module_param(irq_adapt_low_thresh, uint, 0644);
196MODULE_PARM_DESC(irq_adapt_low_thresh,
197 "Threshold score for reducing IRQ moderation");
198
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000199static unsigned irq_adapt_high_thresh = 16000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000200module_param(irq_adapt_high_thresh, uint, 0644);
201MODULE_PARM_DESC(irq_adapt_high_thresh,
202 "Threshold score for increasing IRQ moderation");
203
Ben Hutchings62776d02010-06-23 11:30:07 +0000204static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
205 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
206 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
207 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
208module_param(debug, uint, 0);
209MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
210
Ben Hutchings8ceee662008-04-27 12:55:59 +0100211/**************************************************************************
212 *
213 * Utility functions and prototypes
214 *
215 *************************************************************************/
Ben Hutchings46426102010-09-10 06:42:33 +0000216
Jon Cooper261e4d92013-04-15 18:51:54 +0100217static int efx_soft_enable_interrupts(struct efx_nic *efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100218static void efx_soft_disable_interrupts(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000219static void efx_remove_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000220static void efx_remove_channels(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000221static const struct efx_channel_type efx_default_channel_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100222static void efx_remove_port(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000223static void efx_init_napi_channel(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100224static void efx_fini_napi(struct efx_nic *efx);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000225static void efx_fini_napi_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000226static void efx_fini_struct(struct efx_nic *efx);
227static void efx_start_all(struct efx_nic *efx);
228static void efx_stop_all(struct efx_nic *efx);
Charles McLachlane45a4fe2019-10-31 10:23:37 +0000229static int efx_xdp_setup_prog(struct efx_nic *efx, struct bpf_prog *prog);
230static int efx_xdp(struct net_device *dev, struct netdev_bpf *xdp);
Charles McLachlandfe44c12019-10-31 10:24:12 +0000231static int efx_xdp_xmit(struct net_device *dev, int n, struct xdp_frame **xdpfs,
232 u32 flags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100233
234#define EFX_ASSERT_RESET_SERIALISED(efx) \
235 do { \
Ben Hutchingsf16aeea2012-07-27 19:31:16 +0100236 if ((efx->state == STATE_READY) || \
Alexandre Rames626950d2013-01-14 17:20:22 +0000237 (efx->state == STATE_RECOVERY) || \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000238 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100239 ASSERT_RTNL(); \
240 } while (0)
241
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100242static int efx_check_disabled(struct efx_nic *efx)
243{
Alexandre Rames626950d2013-01-14 17:20:22 +0000244 if (efx->state == STATE_DISABLED || efx->state == STATE_RECOVERY) {
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100245 netif_err(efx, drv, efx->net_dev,
246 "device is disabled due to earlier errors\n");
247 return -EIO;
248 }
249 return 0;
250}
251
Ben Hutchings8ceee662008-04-27 12:55:59 +0100252/**************************************************************************
253 *
254 * Event queue processing
255 *
256 *************************************************************************/
257
258/* Process channel's event queue
259 *
260 * This function is responsible for processing the event queue of a
261 * single channel. The caller must guarantee that this function will
262 * never be concurrently called more than once on the same channel,
263 * though different channels may be being processed concurrently.
264 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000265static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100266{
Peter Dunningc9368352015-07-08 10:05:10 +0100267 struct efx_tx_queue *tx_queue;
Edward Creee090bfb2018-07-02 16:12:53 +0100268 struct list_head rx_list;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000269 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100270
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000271 if (unlikely(!channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100272 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100273
Edward Creee090bfb2018-07-02 16:12:53 +0100274 /* Prepare the batch receive list */
275 EFX_WARN_ON_PARANOID(channel->rx_list != NULL);
276 INIT_LIST_HEAD(&rx_list);
277 channel->rx_list = &rx_list;
278
Peter Dunningc9368352015-07-08 10:05:10 +0100279 efx_for_each_channel_tx_queue(tx_queue, channel) {
280 tx_queue->pkts_compl = 0;
281 tx_queue->bytes_compl = 0;
282 }
283
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000284 spent = efx_nic_process_eventq(channel, budget);
Ben Hutchingsd9ab7002012-02-13 23:29:16 +0000285 if (spent && efx_channel_has_rx_queue(channel)) {
286 struct efx_rx_queue *rx_queue =
287 efx_channel_get_rx_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100288
Ben Hutchingsff734ef2013-01-29 23:33:14 +0000289 efx_rx_flush_packet(channel);
Jon Coopercce28792013-10-02 11:04:14 +0100290 efx_fast_push_rx_descriptors(rx_queue, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100291 }
292
Peter Dunningc9368352015-07-08 10:05:10 +0100293 /* Update BQL */
294 efx_for_each_channel_tx_queue(tx_queue, channel) {
295 if (tx_queue->bytes_compl) {
296 netdev_tx_completed_queue(tx_queue->core_txq,
297 tx_queue->pkts_compl, tx_queue->bytes_compl);
298 }
299 }
300
Edward Creee090bfb2018-07-02 16:12:53 +0100301 /* Receive any packets we queued up */
302 netif_receive_skb_list(channel->rx_list);
303 channel->rx_list = NULL;
304
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000305 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100306}
307
Ben Hutchings8ceee662008-04-27 12:55:59 +0100308/* NAPI poll handler
309 *
310 * NAPI guarantees serialisation of polls of the same device, which
311 * provides the guarantee required by efx_process_channel().
312 */
Bert Kenward539de7c2016-08-11 13:02:09 +0100313static void efx_update_irq_mod(struct efx_nic *efx, struct efx_channel *channel)
314{
315 int step = efx->irq_mod_step_us;
316
317 if (channel->irq_mod_score < irq_adapt_low_thresh) {
318 if (channel->irq_moderation_us > step) {
319 channel->irq_moderation_us -= step;
320 efx->type->push_irq_moderation(channel);
321 }
322 } else if (channel->irq_mod_score > irq_adapt_high_thresh) {
323 if (channel->irq_moderation_us <
324 efx->irq_rx_moderation_us) {
325 channel->irq_moderation_us += step;
326 efx->type->push_irq_moderation(channel);
327 }
328 }
329
330 channel->irq_count = 0;
331 channel->irq_mod_score = 0;
332}
333
Ben Hutchings8ceee662008-04-27 12:55:59 +0100334static int efx_poll(struct napi_struct *napi, int budget)
335{
336 struct efx_channel *channel =
337 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000338 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000339 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100340
Ben Hutchings62776d02010-06-23 11:30:07 +0000341 netif_vdbg(efx, intr, efx->net_dev,
342 "channel %d NAPI poll executing on CPU %d\n",
343 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100344
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000345 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100346
Charles McLachlaneb9a36b2019-10-31 10:23:23 +0000347 xdp_do_flush_map();
348
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000349 if (spent < budget) {
Ben Hutchings9d9a6972012-02-10 23:01:48 +0000350 if (efx_channel_has_rx_queue(channel) &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000351 efx->irq_rx_adaptive &&
352 unlikely(++channel->irq_count == 1000)) {
Bert Kenward539de7c2016-08-11 13:02:09 +0100353 efx_update_irq_mod(efx, channel);
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000354 }
355
Edward Cree3af0f342018-03-27 17:41:59 +0100356#ifdef CONFIG_RFS_ACCEL
357 /* Perhaps expire some ARFS filters */
Edward Cree6fbc05e2019-11-22 17:57:40 +0000358 mod_delayed_work(system_wq, &channel->filter_work, 0);
Edward Cree3af0f342018-03-27 17:41:59 +0100359#endif
Ben Hutchings64d8ad62011-01-05 00:50:41 +0000360
Ben Hutchings8ceee662008-04-27 12:55:59 +0100361 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800362 * only wait for napi_complete(), this isn't a problem
Ben Hutchings514bedb2012-10-05 19:30:16 +0100363 * since efx_nic_eventq_read_ack() will have no effect if
Ben Hutchings8ceee662008-04-27 12:55:59 +0100364 * interrupts have already been disabled.
365 */
Bert Kenwardf820c0a2017-02-06 16:50:55 +0000366 if (napi_complete_done(napi, spent))
367 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100368 }
369
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000370 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100371}
372
Ben Hutchings8ceee662008-04-27 12:55:59 +0100373/* Create event queue
374 * Event queue memory allocations are done only once. If the channel
375 * is reset, the memory buffer will be reused; this guards against
376 * errors during channel reset and also simplifies interrupt handling.
377 */
378static int efx_probe_eventq(struct efx_channel *channel)
379{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000380 struct efx_nic *efx = channel->efx;
381 unsigned long entries;
382
Ben Hutchings86ee5302012-01-09 19:51:22 +0000383 netif_dbg(efx, probe, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000384 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100385
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000386 /* Build an event queue with room for one event per tx and rx buffer,
387 * plus some extra for link state events and MCDI completions. */
388 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
Edward Creee01b16a2016-12-02 15:51:33 +0000389 EFX_WARN_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000390 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
391
Ben Hutchings152b6a62009-11-29 03:43:56 +0000392 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100393}
394
395/* Prepare channel's event queue */
Jon Cooper261e4d92013-04-15 18:51:54 +0100396static int efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100397{
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100398 struct efx_nic *efx = channel->efx;
Jon Cooper261e4d92013-04-15 18:51:54 +0100399 int rc;
400
401 EFX_WARN_ON_PARANOID(channel->eventq_init);
402
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100403 netif_dbg(efx, drv, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000404 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100405
Jon Cooper261e4d92013-04-15 18:51:54 +0100406 rc = efx_nic_init_eventq(channel);
407 if (rc == 0) {
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100408 efx->type->push_irq_moderation(channel);
Jon Cooper261e4d92013-04-15 18:51:54 +0100409 channel->eventq_read_ptr = 0;
410 channel->eventq_init = true;
411 }
412 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100413}
414
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000415/* Enable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100416void efx_start_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000417{
418 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
419 "chan %d start event queue\n", channel->channel);
420
Ben Hutchings514bedb2012-10-05 19:30:16 +0100421 /* Make sure the NAPI handler sees the enabled flag set */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000422 channel->enabled = true;
423 smp_wmb();
424
425 napi_enable(&channel->napi_str);
426 efx_nic_eventq_read_ack(channel);
427}
428
429/* Disable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100430void efx_stop_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000431{
432 if (!channel->enabled)
433 return;
434
435 napi_disable(&channel->napi_str);
436 channel->enabled = false;
437}
438
Ben Hutchings8ceee662008-04-27 12:55:59 +0100439static void efx_fini_eventq(struct efx_channel *channel)
440{
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100441 if (!channel->eventq_init)
442 return;
443
Ben Hutchings62776d02010-06-23 11:30:07 +0000444 netif_dbg(channel->efx, drv, channel->efx->net_dev,
445 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100446
Ben Hutchings152b6a62009-11-29 03:43:56 +0000447 efx_nic_fini_eventq(channel);
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100448 channel->eventq_init = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100449}
450
451static void efx_remove_eventq(struct efx_channel *channel)
452{
Ben Hutchings62776d02010-06-23 11:30:07 +0000453 netif_dbg(channel->efx, drv, channel->efx->net_dev,
454 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100455
Ben Hutchings152b6a62009-11-29 03:43:56 +0000456 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100457}
458
459/**************************************************************************
460 *
461 * Channel handling
462 *
463 *************************************************************************/
464
Ben Hutchings7f967c02012-02-13 23:45:02 +0000465/* Allocate and initialise a channel structure. */
Ben Hutchings46426102010-09-10 06:42:33 +0000466static struct efx_channel *
467efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
468{
469 struct efx_channel *channel;
470 struct efx_rx_queue *rx_queue;
471 struct efx_tx_queue *tx_queue;
472 int j;
473
Ben Hutchings7f967c02012-02-13 23:45:02 +0000474 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
475 if (!channel)
476 return NULL;
Ben Hutchings46426102010-09-10 06:42:33 +0000477
Ben Hutchings7f967c02012-02-13 23:45:02 +0000478 channel->efx = efx;
479 channel->channel = i;
480 channel->type = &efx_default_channel_type;
Ben Hutchings46426102010-09-10 06:42:33 +0000481
Ben Hutchings7f967c02012-02-13 23:45:02 +0000482 for (j = 0; j < EFX_TXQ_TYPES; j++) {
483 tx_queue = &channel->tx_queue[j];
484 tx_queue->efx = efx;
485 tx_queue->queue = i * EFX_TXQ_TYPES + j;
486 tx_queue->channel = channel;
Ben Hutchings46426102010-09-10 06:42:33 +0000487 }
488
Edward Cree3af0f342018-03-27 17:41:59 +0100489#ifdef CONFIG_RFS_ACCEL
Edward Cree6fbc05e2019-11-22 17:57:40 +0000490 INIT_DELAYED_WORK(&channel->filter_work, efx_filter_rfs_expire);
Edward Cree3af0f342018-03-27 17:41:59 +0100491#endif
492
Ben Hutchings46426102010-09-10 06:42:33 +0000493 rx_queue = &channel->rx_queue;
494 rx_queue->efx = efx;
Kees Cook7aa14022017-10-24 01:45:59 -0700495 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0);
Ben Hutchings46426102010-09-10 06:42:33 +0000496
497 return channel;
498}
499
Ben Hutchings7f967c02012-02-13 23:45:02 +0000500/* Allocate and initialise a channel structure, copying parameters
501 * (but not resources) from an old channel structure.
502 */
503static struct efx_channel *
504efx_copy_channel(const struct efx_channel *old_channel)
505{
506 struct efx_channel *channel;
507 struct efx_rx_queue *rx_queue;
508 struct efx_tx_queue *tx_queue;
509 int j;
510
511 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
512 if (!channel)
513 return NULL;
514
515 *channel = *old_channel;
516
517 channel->napi_dev = NULL;
Bert Kenward46d054f2016-11-11 15:56:51 +0000518 INIT_HLIST_NODE(&channel->napi_str.napi_hash_node);
519 channel->napi_str.napi_id = 0;
520 channel->napi_str.state = 0;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000521 memset(&channel->eventq, 0, sizeof(channel->eventq));
522
523 for (j = 0; j < EFX_TXQ_TYPES; j++) {
524 tx_queue = &channel->tx_queue[j];
525 if (tx_queue->channel)
526 tx_queue->channel = channel;
527 tx_queue->buffer = NULL;
528 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
529 }
530
531 rx_queue = &channel->rx_queue;
532 rx_queue->buffer = NULL;
533 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
Kees Cook7aa14022017-10-24 01:45:59 -0700534 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0);
Edward Cree3af0f342018-03-27 17:41:59 +0100535#ifdef CONFIG_RFS_ACCEL
Edward Cree6fbc05e2019-11-22 17:57:40 +0000536 INIT_DELAYED_WORK(&channel->filter_work, efx_filter_rfs_expire);
Edward Cree3af0f342018-03-27 17:41:59 +0100537#endif
Ben Hutchings7f967c02012-02-13 23:45:02 +0000538
539 return channel;
540}
541
Ben Hutchings8ceee662008-04-27 12:55:59 +0100542static int efx_probe_channel(struct efx_channel *channel)
543{
544 struct efx_tx_queue *tx_queue;
545 struct efx_rx_queue *rx_queue;
546 int rc;
547
Ben Hutchings62776d02010-06-23 11:30:07 +0000548 netif_dbg(channel->efx, probe, channel->efx->net_dev,
549 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100550
Ben Hutchings7f967c02012-02-13 23:45:02 +0000551 rc = channel->type->pre_probe(channel);
552 if (rc)
553 goto fail;
554
Ben Hutchings8ceee662008-04-27 12:55:59 +0100555 rc = efx_probe_eventq(channel);
556 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000557 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100558
559 efx_for_each_channel_tx_queue(tx_queue, channel) {
560 rc = efx_probe_tx_queue(tx_queue);
561 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000562 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100563 }
564
565 efx_for_each_channel_rx_queue(rx_queue, channel) {
566 rc = efx_probe_rx_queue(rx_queue);
567 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000568 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100569 }
570
Edward Creee090bfb2018-07-02 16:12:53 +0100571 channel->rx_list = NULL;
572
Ben Hutchings8ceee662008-04-27 12:55:59 +0100573 return 0;
574
Ben Hutchings7f967c02012-02-13 23:45:02 +0000575fail:
576 efx_remove_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100577 return rc;
578}
579
Ben Hutchings7f967c02012-02-13 23:45:02 +0000580static void
581efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
582{
583 struct efx_nic *efx = channel->efx;
584 const char *type;
585 int number;
586
587 number = channel->channel;
Charles McLachlan3990a8f2019-10-31 10:23:49 +0000588
589 if (number >= efx->xdp_channel_offset &&
590 !WARN_ON_ONCE(!efx->n_xdp_channels)) {
591 type = "-xdp";
592 number -= efx->xdp_channel_offset;
593 } else if (efx->tx_channel_offset == 0) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000594 type = "";
Charles McLachlan3990a8f2019-10-31 10:23:49 +0000595 } else if (number < efx->tx_channel_offset) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000596 type = "-rx";
597 } else {
598 type = "-tx";
599 number -= efx->tx_channel_offset;
600 }
601 snprintf(buf, len, "%s%s-%d", efx->name, type, number);
602}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100603
Ben Hutchings56536e92008-12-12 21:37:02 -0800604static void efx_set_channel_names(struct efx_nic *efx)
605{
606 struct efx_channel *channel;
Ben Hutchings56536e92008-12-12 21:37:02 -0800607
Ben Hutchings7f967c02012-02-13 23:45:02 +0000608 efx_for_each_channel(channel, efx)
609 channel->type->get_name(channel,
Ben Hutchingsd8291182012-10-05 23:35:41 +0100610 efx->msi_context[channel->channel].name,
611 sizeof(efx->msi_context[0].name));
Ben Hutchings56536e92008-12-12 21:37:02 -0800612}
613
Ben Hutchings46426102010-09-10 06:42:33 +0000614static int efx_probe_channels(struct efx_nic *efx)
615{
616 struct efx_channel *channel;
617 int rc;
618
619 /* Restart special buffer allocation */
620 efx->next_buffer_table = 0;
621
Ben Hutchingsc92aaff2012-02-21 23:22:00 +0000622 /* Probe channels in reverse, so that any 'extra' channels
623 * use the start of the buffer table. This allows the traffic
624 * channels to be resized without moving them or wasting the
625 * entries before them.
626 */
627 efx_for_each_channel_rev(channel, efx) {
Ben Hutchings46426102010-09-10 06:42:33 +0000628 rc = efx_probe_channel(channel);
629 if (rc) {
630 netif_err(efx, probe, efx->net_dev,
631 "failed to create channel %d\n",
632 channel->channel);
633 goto fail;
634 }
635 }
636 efx_set_channel_names(efx);
637
638 return 0;
639
640fail:
641 efx_remove_channels(efx);
642 return rc;
643}
644
Ben Hutchings8ceee662008-04-27 12:55:59 +0100645/* Channels are shutdown and reinitialised whilst the NIC is running
646 * to propagate configuration changes (mtu, checksum offload), or
647 * to clear hardware error conditions
648 */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000649static void efx_start_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100650{
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100651 netdev_features_t old_features = efx->net_dev->features;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000652 bool old_rx_scatter = efx->rx_scatter;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100653 struct efx_tx_queue *tx_queue;
654 struct efx_rx_queue *rx_queue;
655 struct efx_channel *channel;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000656 size_t rx_buf_len;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100657
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100658 /* Calculate the rx buffer allocation parameters required to
659 * support the current MTU, including padding for header
660 * alignment and overruns.
661 */
Jon Cooper43a37392012-10-18 15:49:54 +0100662 efx->rx_dma_len = (efx->rx_prefix_size +
Ben Hutchings272baee2013-01-29 23:33:14 +0000663 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
664 efx->type->rx_buffer_padding);
Charles McLachlaneb9a36b2019-10-31 10:23:23 +0000665 rx_buf_len = (sizeof(struct efx_rx_page_state) + XDP_PACKET_HEADROOM +
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400666 efx->rx_ip_align + efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000667 if (rx_buf_len <= PAGE_SIZE) {
Jon Coopere8c68c02013-03-08 10:18:28 +0000668 efx->rx_scatter = efx->type->always_rx_scatter;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000669 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000670 } else if (efx->type->can_rx_scatter) {
Ben Hutchings950c54d2013-05-13 12:01:22 +0000671 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000672 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
Ben Hutchings950c54d2013-05-13 12:01:22 +0000673 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
674 EFX_RX_BUF_ALIGNMENT) >
675 PAGE_SIZE);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000676 efx->rx_scatter = true;
677 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
678 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000679 } else {
680 efx->rx_scatter = false;
681 efx->rx_buffer_order = get_order(rx_buf_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000682 }
683
Daniel Pieczko1648a232013-02-13 10:54:41 +0000684 efx_rx_config_page_split(efx);
685 if (efx->rx_buffer_order)
686 netif_dbg(efx, drv, efx->net_dev,
687 "RX buf len=%u; page order=%u batch=%u\n",
688 efx->rx_dma_len, efx->rx_buffer_order,
689 efx->rx_pages_per_batch);
690 else
691 netif_dbg(efx, drv, efx->net_dev,
692 "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
693 efx->rx_dma_len, efx->rx_page_buf_step,
694 efx->rx_bufs_per_page, efx->rx_pages_per_batch);
Daniel Pieczko27689352013-02-13 10:54:41 +0000695
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100696 /* Restore previously fixed features in hw_features and remove
697 * features which are fixed now
698 */
699 efx->net_dev->hw_features |= efx->net_dev->features;
700 efx->net_dev->hw_features &= ~efx->fixed_features;
701 efx->net_dev->features |= efx->fixed_features;
702 if (efx->net_dev->features != old_features)
703 netdev_features_change(efx->net_dev);
704
Jon Coopere8c68c02013-03-08 10:18:28 +0000705 /* RX filters may also have scatter-enabled flags */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000706 if (efx->rx_scatter != old_rx_scatter)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000707 efx->type->filter_update_rx_scatter(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100708
Ben Hutchings14bf718fb2012-05-22 01:27:58 +0100709 /* We must keep at least one descriptor in a TX ring empty.
710 * We could avoid this when the queue size does not exactly
711 * match the hardware ring size, but it's not that important.
712 * Therefore we stop the queue when one more skb might fill
713 * the ring completely. We wake it when half way back to
714 * empty.
715 */
716 efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
717 efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
718
Ben Hutchings8ceee662008-04-27 12:55:59 +0100719 /* Initialise the channels */
720 efx_for_each_channel(channel, efx) {
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100721 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100722 efx_init_tx_queue(tx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100723 atomic_inc(&efx->active_queues);
724 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100725
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000726 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100727 efx_init_rx_queue(rx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100728 atomic_inc(&efx->active_queues);
Jon Coopercce28792013-10-02 11:04:14 +0100729 efx_stop_eventq(channel);
730 efx_fast_push_rx_descriptors(rx_queue, false);
731 efx_start_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000732 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100733
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000734 WARN_ON(channel->rx_pkt_n_frags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100735 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000736
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000737 efx_ptp_start_datapath(efx);
738
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000739 if (netif_device_present(efx->net_dev))
740 netif_tx_wake_all_queues(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100741}
742
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000743static void efx_stop_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100744{
745 struct efx_channel *channel;
746 struct efx_tx_queue *tx_queue;
747 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100748 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100749
750 EFX_ASSERT_RESET_SERIALISED(efx);
751 BUG_ON(efx->port_enabled);
752
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000753 efx_ptp_stop_datapath(efx);
754
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100755 /* Stop RX refill */
756 efx_for_each_channel(channel, efx) {
757 efx_for_each_channel_rx_queue(rx_queue, channel)
758 rx_queue->refill_enabled = false;
759 }
760
Ben Hutchings8ceee662008-04-27 12:55:59 +0100761 efx_for_each_channel(channel, efx) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000762 /* RX packet processing is pipelined, so wait for the
763 * NAPI handler to complete. At least event queue 0
764 * might be kept active by non-data events, so don't
765 * use napi_synchronize() but actually disable NAPI
766 * temporarily.
767 */
768 if (efx_channel_has_rx_queue(channel)) {
769 efx_stop_eventq(channel);
770 efx_start_eventq(channel);
771 }
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100772 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100773
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100774 rc = efx->type->fini_dmaq(efx);
Edward Cree5a6681e2016-11-28 18:55:34 +0000775 if (rc) {
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100776 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
777 } else {
778 netif_dbg(efx, drv, efx->net_dev,
779 "successfully flushed all queues\n");
780 }
781
782 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100783 efx_for_each_channel_rx_queue(rx_queue, channel)
784 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000785 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100786 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100787 }
Charles McLachlaneb9a36b2019-10-31 10:23:23 +0000788 efx->xdp_rxq_info_failed = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100789}
790
791static void efx_remove_channel(struct efx_channel *channel)
792{
793 struct efx_tx_queue *tx_queue;
794 struct efx_rx_queue *rx_queue;
795
Ben Hutchings62776d02010-06-23 11:30:07 +0000796 netif_dbg(channel->efx, drv, channel->efx->net_dev,
797 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100798
799 efx_for_each_channel_rx_queue(rx_queue, channel)
800 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000801 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100802 efx_remove_tx_queue(tx_queue);
803 efx_remove_eventq(channel);
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100804 channel->type->post_remove(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100805}
806
Ben Hutchings46426102010-09-10 06:42:33 +0000807static void efx_remove_channels(struct efx_nic *efx)
808{
809 struct efx_channel *channel;
810
811 efx_for_each_channel(channel, efx)
812 efx_remove_channel(channel);
Charles McLachlan3990a8f2019-10-31 10:23:49 +0000813
814 kfree(efx->xdp_tx_queues);
Ben Hutchings46426102010-09-10 06:42:33 +0000815}
816
817int
818efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
819{
820 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
821 u32 old_rxq_entries, old_txq_entries;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000822 unsigned i, next_buffer_table = 0;
Jon Cooper261e4d92013-04-15 18:51:54 +0100823 int rc, rc2;
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100824
825 rc = efx_check_disabled(efx);
826 if (rc)
827 return rc;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000828
829 /* Not all channels should be reallocated. We must avoid
830 * reallocating their buffer table entries.
831 */
832 efx_for_each_channel(channel, efx) {
833 struct efx_rx_queue *rx_queue;
834 struct efx_tx_queue *tx_queue;
835
836 if (channel->type->copy)
837 continue;
838 next_buffer_table = max(next_buffer_table,
839 channel->eventq.index +
840 channel->eventq.entries);
841 efx_for_each_channel_rx_queue(rx_queue, channel)
842 next_buffer_table = max(next_buffer_table,
843 rx_queue->rxd.index +
844 rx_queue->rxd.entries);
845 efx_for_each_channel_tx_queue(tx_queue, channel)
846 next_buffer_table = max(next_buffer_table,
847 tx_queue->txd.index +
848 tx_queue->txd.entries);
849 }
Ben Hutchings46426102010-09-10 06:42:33 +0000850
Ben Hutchings29c69a42013-01-28 19:01:06 +0000851 efx_device_detach_sync(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000852 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100853 efx_soft_disable_interrupts(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000854
Ben Hutchings7f967c02012-02-13 23:45:02 +0000855 /* Clone channels (where possible) */
Ben Hutchings46426102010-09-10 06:42:33 +0000856 memset(other_channel, 0, sizeof(other_channel));
857 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000858 channel = efx->channel[i];
859 if (channel->type->copy)
860 channel = channel->type->copy(channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000861 if (!channel) {
862 rc = -ENOMEM;
863 goto out;
864 }
865 other_channel[i] = channel;
866 }
867
868 /* Swap entry counts and channel pointers */
869 old_rxq_entries = efx->rxq_entries;
870 old_txq_entries = efx->txq_entries;
871 efx->rxq_entries = rxq_entries;
872 efx->txq_entries = txq_entries;
873 for (i = 0; i < efx->n_channels; i++) {
874 channel = efx->channel[i];
875 efx->channel[i] = other_channel[i];
876 other_channel[i] = channel;
877 }
878
Ben Hutchings7f967c02012-02-13 23:45:02 +0000879 /* Restart buffer table allocation */
880 efx->next_buffer_table = next_buffer_table;
Ben Hutchings46426102010-09-10 06:42:33 +0000881
Ben Hutchingse8f14992010-12-07 19:47:34 +0000882 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000883 channel = efx->channel[i];
884 if (!channel->type->copy)
885 continue;
886 rc = efx_probe_channel(channel);
887 if (rc)
888 goto rollback;
889 efx_init_napi_channel(efx->channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000890 }
Ben Hutchings46426102010-09-10 06:42:33 +0000891
Ben Hutchings7f967c02012-02-13 23:45:02 +0000892out:
893 /* Destroy unused channel structures */
894 for (i = 0; i < efx->n_channels; i++) {
895 channel = other_channel[i];
896 if (channel && channel->type->copy) {
897 efx_fini_napi_channel(channel);
898 efx_remove_channel(channel);
899 kfree(channel);
900 }
901 }
902
Jon Cooper261e4d92013-04-15 18:51:54 +0100903 rc2 = efx_soft_enable_interrupts(efx);
904 if (rc2) {
905 rc = rc ? rc : rc2;
906 netif_err(efx, drv, efx->net_dev,
907 "unable to restart interrupts on channel reallocation\n");
908 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
909 } else {
910 efx_start_all(efx);
Peter Dunning9c568fd2017-02-17 15:50:43 +0000911 efx_device_attach_if_not_resetting(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +0100912 }
Ben Hutchings46426102010-09-10 06:42:33 +0000913 return rc;
914
915rollback:
916 /* Swap back */
917 efx->rxq_entries = old_rxq_entries;
918 efx->txq_entries = old_txq_entries;
919 for (i = 0; i < efx->n_channels; i++) {
920 channel = efx->channel[i];
921 efx->channel[i] = other_channel[i];
922 other_channel[i] = channel;
923 }
924 goto out;
925}
926
Steve Hodgson90d683a2010-06-01 11:19:39 +0000927void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100928{
Robert Stonehouse50f444a2019-02-14 17:27:43 +0000929 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(10));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100930}
931
kbuild test robote7345ba2018-01-26 17:00:39 +0000932static bool efx_default_channel_want_txqs(struct efx_channel *channel)
Edward Cree2935e3c2018-01-25 17:26:06 +0000933{
934 return channel->channel - channel->efx->tx_channel_offset <
935 channel->efx->n_tx_channels;
936}
937
Ben Hutchings7f967c02012-02-13 23:45:02 +0000938static const struct efx_channel_type efx_default_channel_type = {
939 .pre_probe = efx_channel_dummy_op_int,
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100940 .post_remove = efx_channel_dummy_op_void,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000941 .get_name = efx_get_channel_name,
942 .copy = efx_copy_channel,
Edward Cree2935e3c2018-01-25 17:26:06 +0000943 .want_txqs = efx_default_channel_want_txqs,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000944 .keep_eventq = false,
Edward Cree2935e3c2018-01-25 17:26:06 +0000945 .want_pio = true,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000946};
947
948int efx_channel_dummy_op_int(struct efx_channel *channel)
949{
950 return 0;
951}
952
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100953void efx_channel_dummy_op_void(struct efx_channel *channel)
954{
955}
956
Ben Hutchings8ceee662008-04-27 12:55:59 +0100957/**************************************************************************
958 *
959 * Port handling
960 *
961 **************************************************************************/
962
963/* This ensures that the kernel is kept informed (via
964 * netif_carrier_on/off) of the link status, and also maintains the
965 * link status's stop on the port's TX queue.
966 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000967void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100968{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000969 struct efx_link_state *link_state = &efx->link_state;
970
Ben Hutchings8ceee662008-04-27 12:55:59 +0100971 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
972 * that no events are triggered between unregister_netdev() and the
973 * driver unloading. A more general condition is that NETDEV_CHANGE
974 * can only be generated between NETDEV_UP and NETDEV_DOWN */
975 if (!netif_running(efx->net_dev))
976 return;
977
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000978 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100979 efx->n_link_state_changes++;
980
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000981 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100982 netif_carrier_on(efx->net_dev);
983 else
984 netif_carrier_off(efx->net_dev);
985 }
986
987 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000988 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000989 netif_info(efx, link, efx->net_dev,
Ben Hutchings964e6132012-11-19 23:08:22 +0000990 "link up at %uMbps %s-duplex (MTU %d)\n",
Ben Hutchings62776d02010-06-23 11:30:07 +0000991 link_state->speed, link_state->fd ? "full" : "half",
Ben Hutchings964e6132012-11-19 23:08:22 +0000992 efx->net_dev->mtu);
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000993 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000994 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100995}
996
Edward Creec2ab85d2018-01-10 18:00:14 +0000997void efx_link_set_advertising(struct efx_nic *efx,
998 const unsigned long *advertising)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000999{
Edward Creec2ab85d2018-01-10 18:00:14 +00001000 memcpy(efx->link_advertising, advertising,
1001 sizeof(__ETHTOOL_DECLARE_LINK_MODE_MASK()));
1002
1003 efx->link_advertising[0] |= ADVERTISED_Autoneg;
1004 if (advertising[0] & ADVERTISED_Pause)
1005 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
1006 else
1007 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
1008 if (advertising[0] & ADVERTISED_Asym_Pause)
1009 efx->wanted_fc ^= EFX_FC_TX;
1010}
1011
1012/* Equivalent to efx_link_set_advertising with all-zeroes, except does not
1013 * force the Autoneg bit on.
1014 */
1015void efx_link_clear_advertising(struct efx_nic *efx)
1016{
1017 bitmap_zero(efx->link_advertising, __ETHTOOL_LINK_MODE_MASK_NBITS);
1018 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001019}
1020
David S. Millerb56269462011-05-17 17:53:22 -04001021void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001022{
1023 efx->wanted_fc = wanted_fc;
Edward Creec2ab85d2018-01-10 18:00:14 +00001024 if (efx->link_advertising[0]) {
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001025 if (wanted_fc & EFX_FC_RX)
Edward Creec2ab85d2018-01-10 18:00:14 +00001026 efx->link_advertising[0] |= (ADVERTISED_Pause |
1027 ADVERTISED_Asym_Pause);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001028 else
Edward Creec2ab85d2018-01-10 18:00:14 +00001029 efx->link_advertising[0] &= ~(ADVERTISED_Pause |
1030 ADVERTISED_Asym_Pause);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001031 if (wanted_fc & EFX_FC_TX)
Edward Creec2ab85d2018-01-10 18:00:14 +00001032 efx->link_advertising[0] ^= ADVERTISED_Asym_Pause;
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001033 }
1034}
1035
Ben Hutchings115122a2009-03-04 09:52:52 +00001036static void efx_fini_port(struct efx_nic *efx);
1037
Edward Cree0d322412015-05-20 11:10:03 +01001038/* We assume that efx->type->reconfigure_mac will always try to sync RX
1039 * filters and therefore needs to read-lock the filter table against freeing
1040 */
1041void efx_mac_reconfigure(struct efx_nic *efx)
1042{
1043 down_read(&efx->filter_sem);
1044 efx->type->reconfigure_mac(efx);
1045 up_read(&efx->filter_sem);
1046}
1047
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001048/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
1049 * the MAC appropriately. All other PHY configuration changes are pushed
1050 * through phy_op->set_settings(), and pushed asynchronously to the MAC
1051 * through efx_monitor().
1052 *
1053 * Callers must hold the mac_lock
1054 */
1055int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001056{
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001057 enum efx_phy_mode phy_mode;
1058 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001059
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001060 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001061
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001062 /* Disable PHY transmit in mac level loopbacks */
1063 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001064 if (LOOPBACK_INTERNAL(efx))
1065 efx->phy_mode |= PHY_MODE_TX_DISABLED;
1066 else
1067 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001068
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001069 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001070
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001071 if (rc)
1072 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001073
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001074 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001075}
1076
1077/* Reinitialise the MAC to pick up new PHY settings, even if the port is
1078 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001079int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001080{
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001081 int rc;
1082
Ben Hutchings8ceee662008-04-27 12:55:59 +01001083 EFX_ASSERT_RESET_SERIALISED(efx);
1084
1085 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001086 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001087 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001088
1089 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001090}
1091
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001092/* Asynchronous work item for changing MAC promiscuity and multicast
1093 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
1094 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001095static void efx_mac_work(struct work_struct *data)
1096{
1097 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
1098
1099 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +01001100 if (efx->port_enabled)
Edward Cree0d322412015-05-20 11:10:03 +01001101 efx_mac_reconfigure(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001102 mutex_unlock(&efx->mac_lock);
1103}
1104
Ben Hutchings8ceee662008-04-27 12:55:59 +01001105static int efx_probe_port(struct efx_nic *efx)
1106{
1107 int rc;
1108
Ben Hutchings62776d02010-06-23 11:30:07 +00001109 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001110
Steve Hodgsonff3b00a2009-12-23 13:46:36 +00001111 if (phy_flash_cfg)
1112 efx->phy_mode = PHY_MODE_SPECIAL;
1113
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001114 /* Connect up MAC/PHY operations table */
1115 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001116 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +00001117 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001118
Ben Hutchingse332bcb2011-12-20 01:22:51 +00001119 /* Initialise MAC address to permanent address */
Edward Creecd84ff42014-03-07 18:27:41 +00001120 ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001121
1122 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001123}
1124
1125static int efx_init_port(struct efx_nic *efx)
1126{
1127 int rc;
1128
Ben Hutchings62776d02010-06-23 11:30:07 +00001129 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001130
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001131 mutex_lock(&efx->mac_lock);
1132
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001133 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001134 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001135 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001136
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001137 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001138
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001139 /* Reconfigure the MAC before creating dma queues (required for
1140 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Edward Cree0d322412015-05-20 11:10:03 +01001141 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001142
1143 /* Ensure the PHY advertises the correct flow control settings */
1144 rc = efx->phy_op->reconfigure(efx);
Edward Cree267d9d72015-05-06 00:59:18 +01001145 if (rc && rc != -EPERM)
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001146 goto fail2;
1147
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001148 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001149 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001150
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001151fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001152 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001153fail1:
1154 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001155 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001156}
1157
Ben Hutchings8ceee662008-04-27 12:55:59 +01001158static void efx_start_port(struct efx_nic *efx)
1159{
Ben Hutchings62776d02010-06-23 11:30:07 +00001160 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001161 BUG_ON(efx->port_enabled);
1162
1163 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001164 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001165
Ben Hutchingsd615c032013-10-08 17:33:20 +01001166 /* Ensure MAC ingress/egress is enabled */
Edward Cree0d322412015-05-20 11:10:03 +01001167 efx_mac_reconfigure(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001168
Ben Hutchings8ceee662008-04-27 12:55:59 +01001169 mutex_unlock(&efx->mac_lock);
1170}
1171
Ben Hutchingsd615c032013-10-08 17:33:20 +01001172/* Cancel work for MAC reconfiguration, periodic hardware monitoring
1173 * and the async self-test, wait for them to finish and prevent them
1174 * being scheduled again. This doesn't cover online resets, which
1175 * should only be cancelled when removing the device.
1176 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001177static void efx_stop_port(struct efx_nic *efx)
1178{
Ben Hutchings62776d02010-06-23 11:30:07 +00001179 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001180
Ben Hutchingsd615c032013-10-08 17:33:20 +01001181 EFX_ASSERT_RESET_SERIALISED(efx);
1182
Ben Hutchings8ceee662008-04-27 12:55:59 +01001183 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001184 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001185 mutex_unlock(&efx->mac_lock);
1186
1187 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001188 netif_addr_lock_bh(efx->net_dev);
1189 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchingsd615c032013-10-08 17:33:20 +01001190
1191 cancel_delayed_work_sync(&efx->monitor_work);
1192 efx_selftest_async_cancel(efx);
1193 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001194}
1195
1196static void efx_fini_port(struct efx_nic *efx)
1197{
Ben Hutchings62776d02010-06-23 11:30:07 +00001198 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001199
1200 if (!efx->port_initialized)
1201 return;
1202
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001203 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001204 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001205
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001206 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001207 efx_link_status_changed(efx);
1208}
1209
1210static void efx_remove_port(struct efx_nic *efx)
1211{
Ben Hutchings62776d02010-06-23 11:30:07 +00001212 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001213
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001214 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001215}
1216
1217/**************************************************************************
1218 *
1219 * NIC handling
1220 *
1221 **************************************************************************/
1222
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01001223static LIST_HEAD(efx_primary_list);
1224static LIST_HEAD(efx_unassociated_list);
1225
1226static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right)
1227{
1228 return left->type == right->type &&
1229 left->vpd_sn && right->vpd_sn &&
1230 !strcmp(left->vpd_sn, right->vpd_sn);
1231}
1232
1233static void efx_associate(struct efx_nic *efx)
1234{
1235 struct efx_nic *other, *next;
1236
1237 if (efx->primary == efx) {
1238 /* Adding primary function; look for secondaries */
1239
1240 netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n");
1241 list_add_tail(&efx->node, &efx_primary_list);
1242
1243 list_for_each_entry_safe(other, next, &efx_unassociated_list,
1244 node) {
1245 if (efx_same_controller(efx, other)) {
1246 list_del(&other->node);
1247 netif_dbg(other, probe, other->net_dev,
1248 "moving to secondary list of %s %s\n",
1249 pci_name(efx->pci_dev),
1250 efx->net_dev->name);
1251 list_add_tail(&other->node,
1252 &efx->secondary_list);
1253 other->primary = efx;
1254 }
1255 }
1256 } else {
1257 /* Adding secondary function; look for primary */
1258
1259 list_for_each_entry(other, &efx_primary_list, node) {
1260 if (efx_same_controller(efx, other)) {
1261 netif_dbg(efx, probe, efx->net_dev,
1262 "adding to secondary list of %s %s\n",
1263 pci_name(other->pci_dev),
1264 other->net_dev->name);
1265 list_add_tail(&efx->node,
1266 &other->secondary_list);
1267 efx->primary = other;
1268 return;
1269 }
1270 }
1271
1272 netif_dbg(efx, probe, efx->net_dev,
1273 "adding to unassociated list\n");
1274 list_add_tail(&efx->node, &efx_unassociated_list);
1275 }
1276}
1277
1278static void efx_dissociate(struct efx_nic *efx)
1279{
1280 struct efx_nic *other, *next;
1281
1282 list_del(&efx->node);
1283 efx->primary = NULL;
1284
1285 list_for_each_entry_safe(other, next, &efx->secondary_list, node) {
1286 list_del(&other->node);
1287 netif_dbg(other, probe, other->net_dev,
1288 "moving to unassociated list\n");
1289 list_add_tail(&other->node, &efx_unassociated_list);
1290 other->primary = NULL;
1291 }
1292}
1293
Ben Hutchings8ceee662008-04-27 12:55:59 +01001294/* This configures the PCI device to enable I/O and DMA. */
1295static int efx_init_io(struct efx_nic *efx)
1296{
1297 struct pci_dev *pci_dev = efx->pci_dev;
1298 dma_addr_t dma_mask = efx->type->max_dma_mask;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001299 unsigned int mem_map_size = efx->type->mem_map_size(efx);
Shradha Shah02246a72015-05-06 00:58:14 +01001300 int rc, bar;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001301
Ben Hutchings62776d02010-06-23 11:30:07 +00001302 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001303
Edward Cree03714bb2017-12-18 16:55:50 +00001304 bar = efx->type->mem_bar(efx);
Shradha Shah02246a72015-05-06 00:58:14 +01001305
Ben Hutchings8ceee662008-04-27 12:55:59 +01001306 rc = pci_enable_device(pci_dev);
1307 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001308 netif_err(efx, probe, efx->net_dev,
1309 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001310 goto fail1;
1311 }
1312
1313 pci_set_master(pci_dev);
1314
Christoph Hellwig06e95522018-04-27 09:13:24 +02001315 /* Set the PCI DMA mask. Try all possibilities from our genuine mask
1316 * down to 32 bits, because some architectures will allow 40 bit
Ben Hutchings8ceee662008-04-27 12:55:59 +01001317 * masks event though they reject 46 bit masks.
1318 */
1319 while (dma_mask > 0x7fffffffUL) {
Christoph Hellwig8722b8f2015-11-10 14:45:42 -08001320 rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
1321 if (rc == 0)
1322 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001323 dma_mask >>= 1;
1324 }
1325 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001326 netif_err(efx, probe, efx->net_dev,
1327 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001328 goto fail2;
1329 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001330 netif_dbg(efx, probe, efx->net_dev,
1331 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001332
Shradha Shah02246a72015-05-06 00:58:14 +01001333 efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
1334 rc = pci_request_region(pci_dev, bar, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001335 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001336 netif_err(efx, probe, efx->net_dev,
1337 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001338 rc = -EIO;
1339 goto fail3;
1340 }
Ben Hutchingsb1057982012-09-19 00:56:47 +01001341 efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001342 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001343 netif_err(efx, probe, efx->net_dev,
1344 "could not map memory BAR at %llx+%x\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001345 (unsigned long long)efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001346 rc = -ENOMEM;
1347 goto fail4;
1348 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001349 netif_dbg(efx, probe, efx->net_dev,
1350 "memory BAR at %llx+%x (virtual %p)\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001351 (unsigned long long)efx->membase_phys, mem_map_size,
1352 efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001353
1354 return 0;
1355
1356 fail4:
Shradha Shah02246a72015-05-06 00:58:14 +01001357 pci_release_region(efx->pci_dev, bar);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001358 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001359 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001360 fail2:
1361 pci_disable_device(efx->pci_dev);
1362 fail1:
1363 return rc;
1364}
1365
1366static void efx_fini_io(struct efx_nic *efx)
1367{
Shradha Shah02246a72015-05-06 00:58:14 +01001368 int bar;
1369
Ben Hutchings62776d02010-06-23 11:30:07 +00001370 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001371
1372 if (efx->membase) {
1373 iounmap(efx->membase);
1374 efx->membase = NULL;
1375 }
1376
1377 if (efx->membase_phys) {
Edward Cree03714bb2017-12-18 16:55:50 +00001378 bar = efx->type->mem_bar(efx);
Shradha Shah02246a72015-05-06 00:58:14 +01001379 pci_release_region(efx->pci_dev, bar);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001380 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001381 }
1382
Daniel Pieczko6598dad2015-06-02 11:41:00 +01001383 /* Don't disable bus-mastering if VFs are assigned */
1384 if (!pci_vfs_assigned(efx->pci_dev))
1385 pci_disable_device(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001386}
1387
Edward Cree42356d92018-03-08 15:45:17 +00001388void efx_set_default_rx_indir_table(struct efx_nic *efx,
1389 struct efx_rss_context *ctx)
Jon Cooper267c0152015-05-06 00:59:38 +01001390{
1391 size_t i;
1392
Edward Cree42356d92018-03-08 15:45:17 +00001393 for (i = 0; i < ARRAY_SIZE(ctx->rx_indir_table); i++)
1394 ctx->rx_indir_table[i] =
Jon Cooper267c0152015-05-06 00:59:38 +01001395 ethtool_rxfh_indir_default(i, efx->rss_spread);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001396}
1397
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001398static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
Ben Hutchings46123d02008-09-01 12:47:33 +01001399{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001400 cpumask_var_t thread_mask;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001401 unsigned int count;
Ben Hutchings46123d02008-09-01 12:47:33 +01001402 int cpu;
1403
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001404 if (rss_cpus) {
1405 count = rss_cpus;
1406 } else {
1407 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1408 netif_warn(efx, probe, efx->net_dev,
1409 "RSS disabled due to allocation failure\n");
1410 return 1;
Ben Hutchings46123d02008-09-01 12:47:33 +01001411 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001412
1413 count = 0;
1414 for_each_online_cpu(cpu) {
1415 if (!cpumask_test_cpu(cpu, thread_mask)) {
1416 ++count;
1417 cpumask_or(thread_mask, thread_mask,
Bartosz Golaszewski06931e62015-05-26 15:11:28 +02001418 topology_sibling_cpumask(cpu));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001419 }
1420 }
1421
1422 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001423 }
1424
Bert Kenward271a8b42017-04-12 17:06:52 +01001425 if (count > EFX_MAX_RX_QUEUES) {
1426 netif_cond_dbg(efx, probe, efx->net_dev, !rss_cpus, warn,
1427 "Reducing number of rx queues from %u to %u.\n",
1428 count, EFX_MAX_RX_QUEUES);
1429 count = EFX_MAX_RX_QUEUES;
1430 }
1431
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001432 /* If RSS is requested for the PF *and* VFs then we can't write RSS
1433 * table entries that are inaccessible to VFs
1434 */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001435#ifdef CONFIG_SFC_SRIOV
1436 if (efx->type->sriov_wanted) {
1437 if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1438 count > efx_vf_size(efx)) {
1439 netif_warn(efx, probe, efx->net_dev,
1440 "Reducing number of RSS channels from %u to %u for "
1441 "VF support. Increase vf-msix-limit to use more "
1442 "channels on the PF.\n",
1443 count, efx_vf_size(efx));
1444 count = efx_vf_size(efx);
1445 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001446 }
Shradha Shah7fa8d542015-05-06 00:55:13 +01001447#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001448
Ben Hutchings46123d02008-09-01 12:47:33 +01001449 return count;
1450}
1451
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001452static int efx_allocate_msix_channels(struct efx_nic *efx,
1453 unsigned int max_channels,
1454 unsigned int extra_channels,
1455 unsigned int parallelism)
1456{
1457 unsigned int n_channels = parallelism;
1458 int vec_count;
1459 int n_xdp_tx;
1460 int n_xdp_ev;
1461
1462 if (efx_separate_tx_channels)
1463 n_channels *= 2;
1464 n_channels += extra_channels;
1465
1466 /* To allow XDP transmit to happen from arbitrary NAPI contexts
1467 * we allocate a TX queue per CPU. We share event queues across
1468 * multiple tx queues, assuming tx and ev queues are both
1469 * maximum size.
1470 */
1471
1472 n_xdp_tx = num_possible_cpus();
1473 n_xdp_ev = DIV_ROUND_UP(n_xdp_tx, EFX_TXQ_TYPES);
1474
Edward Cree8700aff2019-12-20 16:26:40 +00001475 vec_count = pci_msix_vec_count(efx->pci_dev);
1476 if (vec_count < 0)
1477 return vec_count;
1478
1479 max_channels = min_t(unsigned int, vec_count, max_channels);
1480
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001481 /* Check resources.
1482 * We need a channel per event queue, plus a VI per tx queue.
1483 * This may be more pessimistic than it needs to be.
1484 */
1485 if (n_channels + n_xdp_ev > max_channels) {
1486 netif_err(efx, drv, efx->net_dev,
1487 "Insufficient resources for %d XDP event queues (%d other channels, max %d)\n",
1488 n_xdp_ev, n_channels, max_channels);
1489 efx->n_xdp_channels = 0;
1490 efx->xdp_tx_per_channel = 0;
1491 efx->xdp_tx_queue_count = 0;
1492 } else {
1493 efx->n_xdp_channels = n_xdp_ev;
1494 efx->xdp_tx_per_channel = EFX_TXQ_TYPES;
1495 efx->xdp_tx_queue_count = n_xdp_tx;
1496 n_channels += n_xdp_ev;
1497 netif_dbg(efx, drv, efx->net_dev,
1498 "Allocating %d TX and %d event queues for XDP\n",
1499 n_xdp_tx, n_xdp_ev);
1500 }
1501
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001502 if (vec_count < n_channels) {
1503 netif_err(efx, drv, efx->net_dev,
1504 "WARNING: Insufficient MSI-X vectors available (%d < %u).\n",
1505 vec_count, n_channels);
1506 netif_err(efx, drv, efx->net_dev,
1507 "WARNING: Performance may be reduced.\n");
1508 n_channels = vec_count;
1509 }
1510
Edward Cree8700aff2019-12-20 16:26:40 +00001511 n_channels = min(n_channels, max_channels);
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001512
Edward Cree8700aff2019-12-20 16:26:40 +00001513 efx->n_channels = n_channels;
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001514
1515 /* Ignore XDP tx channels when creating rx channels. */
1516 n_channels -= efx->n_xdp_channels;
1517
1518 if (efx_separate_tx_channels) {
1519 efx->n_tx_channels =
1520 min(max(n_channels / 2, 1U),
1521 efx->max_tx_channels);
1522 efx->tx_channel_offset =
1523 n_channels - efx->n_tx_channels;
1524 efx->n_rx_channels =
1525 max(n_channels -
1526 efx->n_tx_channels, 1U);
1527 } else {
1528 efx->n_tx_channels = min(n_channels, efx->max_tx_channels);
1529 efx->tx_channel_offset = 0;
1530 efx->n_rx_channels = n_channels;
1531 }
1532
Edward Cree8700aff2019-12-20 16:26:40 +00001533 efx->n_rx_channels = min(efx->n_rx_channels, parallelism);
1534 efx->n_tx_channels = min(efx->n_tx_channels, parallelism);
1535
1536 efx->xdp_channel_offset = n_channels;
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001537
1538 netif_dbg(efx, drv, efx->net_dev,
1539 "Allocating %u RX channels\n",
1540 efx->n_rx_channels);
1541
1542 return efx->n_channels;
1543}
1544
Ben Hutchings46123d02008-09-01 12:47:33 +01001545/* Probe the number and type of interrupts we are able to obtain, and
1546 * the resulting numbers of channels and RX queues.
1547 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001548static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001549{
Ben Hutchings7f967c02012-02-13 23:45:02 +00001550 unsigned int extra_channels = 0;
Edward Cree8700aff2019-12-20 16:26:40 +00001551 unsigned int rss_spread;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001552 unsigned int i, j;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001553 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001554
Ben Hutchings7f967c02012-02-13 23:45:02 +00001555 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1556 if (efx->extra_channel_type[i])
1557 ++extra_channels;
1558
Ben Hutchings8ceee662008-04-27 12:55:59 +01001559 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001560 unsigned int parallelism = efx_wanted_parallelism(efx);
Ben Hutchings46123d02008-09-01 12:47:33 +01001561 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001562 unsigned int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001563
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001564 rc = efx_allocate_msix_channels(efx, efx->max_channels,
1565 extra_channels, parallelism);
1566 if (rc >= 0) {
1567 n_channels = rc;
1568 for (i = 0; i < n_channels; i++)
1569 xentries[i].entry = i;
1570 rc = pci_enable_msix_range(efx->pci_dev, xentries, 1,
1571 n_channels);
1572 }
Alexander Gordeev184603d2014-02-18 11:12:00 +01001573 if (rc < 0) {
1574 /* Fall back to single channel MSI */
Alexander Gordeev184603d2014-02-18 11:12:00 +01001575 netif_err(efx, drv, efx->net_dev,
1576 "could not enable MSI-X\n");
Andrew Rybchenko62980cb2017-02-13 14:59:04 +00001577 if (efx->type->min_interrupt_mode >= EFX_INT_MODE_MSI)
1578 efx->interrupt_mode = EFX_INT_MODE_MSI;
1579 else
1580 return rc;
Alexander Gordeev184603d2014-02-18 11:12:00 +01001581 } else if (rc < n_channels) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001582 netif_err(efx, drv, efx->net_dev,
1583 "WARNING: Insufficient MSI-X vectors"
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001584 " available (%d < %u).\n", rc, n_channels);
Ben Hutchings62776d02010-06-23 11:30:07 +00001585 netif_err(efx, drv, efx->net_dev,
1586 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001587 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001588 }
1589
Alexander Gordeev184603d2014-02-18 11:12:00 +01001590 if (rc > 0) {
Ben Hutchings7f967c02012-02-13 23:45:02 +00001591 for (i = 0; i < efx->n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001592 efx_get_channel(efx, i)->irq =
1593 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001594 }
1595 }
1596
1597 /* Try single interrupt MSI */
1598 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001599 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001600 efx->n_rx_channels = 1;
1601 efx->n_tx_channels = 1;
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001602 efx->n_xdp_channels = 0;
1603 efx->xdp_channel_offset = efx->n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001604 rc = pci_enable_msi(efx->pci_dev);
1605 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001606 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001607 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001608 netif_err(efx, drv, efx->net_dev,
1609 "could not enable MSI\n");
Andrew Rybchenko62980cb2017-02-13 14:59:04 +00001610 if (efx->type->min_interrupt_mode >= EFX_INT_MODE_LEGACY)
1611 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1612 else
1613 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001614 }
1615 }
1616
1617 /* Assume legacy interrupts */
1618 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001619 efx->n_channels = 1 + (efx_separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001620 efx->n_rx_channels = 1;
1621 efx->n_tx_channels = 1;
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001622 efx->n_xdp_channels = 0;
1623 efx->xdp_channel_offset = efx->n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001624 efx->legacy_irq = efx->pci_dev->irq;
1625 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001626
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001627 /* Assign extra channels if possible, before XDP channels */
Edward Cree2935e3c2018-01-25 17:26:06 +00001628 efx->n_extra_tx_channels = 0;
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001629 j = efx->xdp_channel_offset;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001630 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1631 if (!efx->extra_channel_type[i])
1632 continue;
Edward Cree8700aff2019-12-20 16:26:40 +00001633 if (j <= efx->tx_channel_offset + efx->n_tx_channels) {
Ben Hutchings7f967c02012-02-13 23:45:02 +00001634 efx->extra_channel_type[i]->handle_no_channel(efx);
1635 } else {
1636 --j;
1637 efx_get_channel(efx, j)->type =
1638 efx->extra_channel_type[i];
Edward Cree2935e3c2018-01-25 17:26:06 +00001639 if (efx_channel_has_tx_queues(efx_get_channel(efx, j)))
1640 efx->n_extra_tx_channels++;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001641 }
1642 }
1643
Edward Cree8700aff2019-12-20 16:26:40 +00001644 rss_spread = efx->n_rx_channels;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001645 /* RSS might be usable on VFs even if it is disabled on the PF */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001646#ifdef CONFIG_SFC_SRIOV
1647 if (efx->type->sriov_wanted) {
Edward Cree8700aff2019-12-20 16:26:40 +00001648 efx->rss_spread = ((rss_spread > 1 ||
Shradha Shah7fa8d542015-05-06 00:55:13 +01001649 !efx->type->sriov_wanted(efx)) ?
Edward Cree8700aff2019-12-20 16:26:40 +00001650 rss_spread : efx_vf_size(efx));
Shradha Shah7fa8d542015-05-06 00:55:13 +01001651 return 0;
1652 }
1653#endif
Edward Cree8700aff2019-12-20 16:26:40 +00001654 efx->rss_spread = rss_spread;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001655
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001656 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001657}
1658
Bert Kenwarda83762d2018-04-19 17:37:25 +01001659#if defined(CONFIG_SMP)
1660static void efx_set_interrupt_affinity(struct efx_nic *efx)
1661{
1662 struct efx_channel *channel;
1663 unsigned int cpu;
1664
1665 efx_for_each_channel(channel, efx) {
1666 cpu = cpumask_local_spread(channel->channel,
1667 pcibus_to_node(efx->pci_dev->bus));
1668 irq_set_affinity_hint(channel->irq, cpumask_of(cpu));
1669 }
1670}
1671
1672static void efx_clear_interrupt_affinity(struct efx_nic *efx)
1673{
1674 struct efx_channel *channel;
1675
1676 efx_for_each_channel(channel, efx)
1677 irq_set_affinity_hint(channel->irq, NULL);
1678}
1679#else
1680static void
1681efx_set_interrupt_affinity(struct efx_nic *efx __attribute__ ((unused)))
1682{
1683}
1684
1685static void
1686efx_clear_interrupt_affinity(struct efx_nic *efx __attribute__ ((unused)))
1687{
1688}
1689#endif /* CONFIG_SMP */
1690
Jon Cooper261e4d92013-04-15 18:51:54 +01001691static int efx_soft_enable_interrupts(struct efx_nic *efx)
Ben Hutchingsd8291182012-10-05 23:35:41 +01001692{
Jon Cooper261e4d92013-04-15 18:51:54 +01001693 struct efx_channel *channel, *end_channel;
1694 int rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001695
1696 BUG_ON(efx->state == STATE_DISABLED);
1697
1698 efx->irq_soft_enabled = true;
1699 smp_wmb();
1700
1701 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001702 if (!channel->type->keep_eventq) {
1703 rc = efx_init_eventq(channel);
1704 if (rc)
1705 goto fail;
1706 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001707 efx_start_eventq(channel);
1708 }
1709
1710 efx_mcdi_mode_event(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01001711
1712 return 0;
1713fail:
1714 end_channel = channel;
1715 efx_for_each_channel(channel, efx) {
1716 if (channel == end_channel)
1717 break;
1718 efx_stop_eventq(channel);
1719 if (!channel->type->keep_eventq)
1720 efx_fini_eventq(channel);
1721 }
1722
1723 return rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001724}
1725
1726static void efx_soft_disable_interrupts(struct efx_nic *efx)
1727{
1728 struct efx_channel *channel;
1729
1730 if (efx->state == STATE_DISABLED)
1731 return;
1732
1733 efx_mcdi_mode_poll(efx);
1734
1735 efx->irq_soft_enabled = false;
1736 smp_wmb();
1737
1738 if (efx->legacy_irq)
1739 synchronize_irq(efx->legacy_irq);
1740
1741 efx_for_each_channel(channel, efx) {
1742 if (channel->irq)
1743 synchronize_irq(channel->irq);
1744
1745 efx_stop_eventq(channel);
1746 if (!channel->type->keep_eventq)
1747 efx_fini_eventq(channel);
1748 }
Ben Hutchingscade7152013-08-27 23:12:31 +01001749
1750 /* Flush the asynchronous MCDI request queue */
1751 efx_mcdi_flush_async(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01001752}
1753
Jon Cooper261e4d92013-04-15 18:51:54 +01001754static int efx_enable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001755{
Jon Cooper261e4d92013-04-15 18:51:54 +01001756 struct efx_channel *channel, *end_channel;
1757 int rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001758
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001759 BUG_ON(efx->state == STATE_DISABLED);
1760
Alexandre Ramesb28405b2013-03-21 16:41:43 +00001761 if (efx->eeh_disabled_legacy_irq) {
1762 enable_irq(efx->legacy_irq);
1763 efx->eeh_disabled_legacy_irq = false;
1764 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001765
Ben Hutchings86094f72013-08-21 19:51:04 +01001766 efx->type->irq_enable_master(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001767
1768 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001769 if (channel->type->keep_eventq) {
1770 rc = efx_init_eventq(channel);
1771 if (rc)
1772 goto fail;
1773 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001774 }
1775
Jon Cooper261e4d92013-04-15 18:51:54 +01001776 rc = efx_soft_enable_interrupts(efx);
1777 if (rc)
1778 goto fail;
1779
1780 return 0;
1781
1782fail:
1783 end_channel = channel;
1784 efx_for_each_channel(channel, efx) {
1785 if (channel == end_channel)
1786 break;
1787 if (channel->type->keep_eventq)
1788 efx_fini_eventq(channel);
1789 }
1790
1791 efx->type->irq_disable_non_ev(efx);
1792
1793 return rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001794}
1795
Ben Hutchingsd8291182012-10-05 23:35:41 +01001796static void efx_disable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001797{
1798 struct efx_channel *channel;
1799
Ben Hutchingsd8291182012-10-05 23:35:41 +01001800 efx_soft_disable_interrupts(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001801
1802 efx_for_each_channel(channel, efx) {
Ben Hutchingsd8291182012-10-05 23:35:41 +01001803 if (channel->type->keep_eventq)
Ben Hutchings7f967c02012-02-13 23:45:02 +00001804 efx_fini_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001805 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001806
Ben Hutchings86094f72013-08-21 19:51:04 +01001807 efx->type->irq_disable_non_ev(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001808}
1809
Ben Hutchings8ceee662008-04-27 12:55:59 +01001810static void efx_remove_interrupts(struct efx_nic *efx)
1811{
1812 struct efx_channel *channel;
1813
1814 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001815 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001816 channel->irq = 0;
1817 pci_disable_msi(efx->pci_dev);
1818 pci_disable_msix(efx->pci_dev);
1819
1820 /* Remove legacy interrupt */
1821 efx->legacy_irq = 0;
1822}
1823
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001824static int efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001825{
Ben Hutchings602a5322011-05-16 17:32:39 +01001826 struct efx_channel *channel;
1827 struct efx_tx_queue *tx_queue;
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001828 int xdp_queue_number;
Ben Hutchings602a5322011-05-16 17:32:39 +01001829
Ben Hutchings97653432011-01-12 18:26:56 +00001830 efx->tx_channel_offset =
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001831 efx_separate_tx_channels ?
1832 efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001833
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001834 if (efx->xdp_tx_queue_count) {
1835 EFX_WARN_ON_PARANOID(efx->xdp_tx_queues);
1836
1837 /* Allocate array for XDP TX queue lookup. */
1838 efx->xdp_tx_queues = kcalloc(efx->xdp_tx_queue_count,
1839 sizeof(*efx->xdp_tx_queues),
1840 GFP_KERNEL);
1841 if (!efx->xdp_tx_queues)
1842 return -ENOMEM;
1843 }
1844
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001845 /* We need to mark which channels really have RX and TX
1846 * queues, and adjust the TX queue numbers if we have separate
Ben Hutchings602a5322011-05-16 17:32:39 +01001847 * RX-only and TX-only channels.
1848 */
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001849 xdp_queue_number = 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001850 efx_for_each_channel(channel, efx) {
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001851 if (channel->channel < efx->n_rx_channels)
1852 channel->rx_queue.core_index = channel->channel;
1853 else
1854 channel->rx_queue.core_index = -1;
1855
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001856 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchings602a5322011-05-16 17:32:39 +01001857 tx_queue->queue -= (efx->tx_channel_offset *
1858 EFX_TXQ_TYPES);
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001859
1860 if (efx_channel_is_xdp_tx(channel) &&
1861 xdp_queue_number < efx->xdp_tx_queue_count) {
1862 efx->xdp_tx_queues[xdp_queue_number] = tx_queue;
1863 xdp_queue_number++;
1864 }
1865 }
Ben Hutchings602a5322011-05-16 17:32:39 +01001866 }
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001867 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001868}
1869
1870static int efx_probe_nic(struct efx_nic *efx)
1871{
1872 int rc;
1873
Ben Hutchings62776d02010-06-23 11:30:07 +00001874 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001875
1876 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001877 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001878 if (rc)
1879 return rc;
1880
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001881 do {
1882 if (!efx->max_channels || !efx->max_tx_channels) {
1883 netif_err(efx, drv, efx->net_dev,
1884 "Insufficient resources to allocate"
1885 " any channels\n");
1886 rc = -ENOSPC;
1887 goto fail1;
1888 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001889
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001890 /* Determine the number of channels and queues by trying
1891 * to hook in MSI-X interrupts.
1892 */
1893 rc = efx_probe_interrupts(efx);
1894 if (rc)
1895 goto fail1;
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001896
Charles McLachlan3990a8f2019-10-31 10:23:49 +00001897 rc = efx_set_channels(efx);
1898 if (rc)
1899 goto fail1;
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001900
1901 /* dimension_resources can fail with EAGAIN */
1902 rc = efx->type->dimension_resources(efx);
1903 if (rc != 0 && rc != -EAGAIN)
1904 goto fail2;
1905
1906 if (rc == -EAGAIN)
1907 /* try again with new max_channels */
1908 efx_remove_interrupts(efx);
1909
1910 } while (rc == -EAGAIN);
Ben Hutchings28e47c42012-02-15 01:58:49 +00001911
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001912 if (efx->n_channels > 1)
Edward Cree42356d92018-03-08 15:45:17 +00001913 netdev_rss_key_fill(efx->rss_context.rx_hash_key,
1914 sizeof(efx->rss_context.rx_hash_key));
1915 efx_set_default_rx_indir_table(efx, &efx->rss_context);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001916
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001917 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1918 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001919
1920 /* Initialise the interrupt moderation settings */
Bert Kenward539de7c2016-08-11 13:02:09 +01001921 efx->irq_mod_step_us = DIV_ROUND_UP(efx->timer_quantum_ns, 1000);
Ben Hutchings9e393b32011-09-05 07:43:04 +00001922 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1923 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001924
1925 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001926
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001927fail2:
1928 efx_remove_interrupts(efx);
1929fail1:
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001930 efx->type->remove(efx);
1931 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001932}
1933
1934static void efx_remove_nic(struct efx_nic *efx)
1935{
Ben Hutchings62776d02010-06-23 11:30:07 +00001936 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001937
1938 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001939 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001940}
1941
Ben Hutchingsadd72472012-11-08 01:46:53 +00001942static int efx_probe_filters(struct efx_nic *efx)
1943{
1944 int rc;
1945
Edward Cree0d322412015-05-20 11:10:03 +01001946 init_rwsem(&efx->filter_sem);
Martin Habetsd2489532016-06-15 17:48:49 +01001947 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001948 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001949 rc = efx->type->filter_table_probe(efx);
1950 if (rc)
Edward Cree0d322412015-05-20 11:10:03 +01001951 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001952
1953#ifdef CONFIG_RFS_ACCEL
1954 if (efx->type->offload_features & NETIF_F_NTUPLE) {
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001955 struct efx_channel *channel;
1956 int i, success = 1;
1957
1958 efx_for_each_channel(channel, efx) {
1959 channel->rps_flow_id =
1960 kcalloc(efx->type->max_rx_ip_filters,
1961 sizeof(*channel->rps_flow_id),
1962 GFP_KERNEL);
1963 if (!channel->rps_flow_id)
1964 success = 0;
1965 else
1966 for (i = 0;
1967 i < efx->type->max_rx_ip_filters;
1968 ++i)
1969 channel->rps_flow_id[i] =
1970 RPS_FLOW_ID_INVALID;
Edward Cree8490e752019-11-22 17:57:03 +00001971 channel->rfs_expire_index = 0;
1972 channel->rfs_filter_count = 0;
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001973 }
1974
1975 if (!success) {
1976 efx_for_each_channel(channel, efx)
1977 kfree(channel->rps_flow_id);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001978 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001979 rc = -ENOMEM;
1980 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001981 }
1982 }
1983#endif
Edward Cree0d322412015-05-20 11:10:03 +01001984out_unlock:
1985 up_write(&efx->filter_sem);
Martin Habetsd2489532016-06-15 17:48:49 +01001986 mutex_unlock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001987 return rc;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001988}
1989
1990static void efx_remove_filters(struct efx_nic *efx)
1991{
1992#ifdef CONFIG_RFS_ACCEL
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001993 struct efx_channel *channel;
1994
Edward Cree8490e752019-11-22 17:57:03 +00001995 efx_for_each_channel(channel, efx) {
Edward Cree6fbc05e2019-11-22 17:57:40 +00001996 cancel_delayed_work_sync(&channel->filter_work);
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001997 kfree(channel->rps_flow_id);
Edward Cree8490e752019-11-22 17:57:03 +00001998 }
Ben Hutchingsadd72472012-11-08 01:46:53 +00001999#endif
Edward Cree0d322412015-05-20 11:10:03 +01002000 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00002001 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01002002 up_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00002003}
2004
Ben Hutchingsadd72472012-11-08 01:46:53 +00002005
Ben Hutchings8ceee662008-04-27 12:55:59 +01002006/**************************************************************************
2007 *
2008 * NIC startup/shutdown
2009 *
2010 *************************************************************************/
2011
2012static int efx_probe_all(struct efx_nic *efx)
2013{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002014 int rc;
2015
Ben Hutchings8ceee662008-04-27 12:55:59 +01002016 rc = efx_probe_nic(efx);
2017 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002018 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002019 goto fail1;
2020 }
2021
Ben Hutchings8ceee662008-04-27 12:55:59 +01002022 rc = efx_probe_port(efx);
2023 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002024 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002025 goto fail2;
2026 }
2027
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002028 BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
2029 if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
2030 rc = -EINVAL;
2031 goto fail3;
2032 }
Steve Hodgsonecc910f2010-09-10 06:42:22 +00002033 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002034
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002035#ifdef CONFIG_SFC_SRIOV
2036 rc = efx->type->vswitching_probe(efx);
2037 if (rc) /* not fatal; the PF will still work fine */
2038 netif_warn(efx, probe, efx->net_dev,
2039 "failed to setup vswitching rc=%d;"
2040 " VFs may not function\n", rc);
2041#endif
2042
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002043 rc = efx_probe_filters(efx);
2044 if (rc) {
2045 netif_err(efx, probe, efx->net_dev,
2046 "failed to create filter tables\n");
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002047 goto fail4;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002048 }
2049
Ben Hutchings7f967c02012-02-13 23:45:02 +00002050 rc = efx_probe_channels(efx);
2051 if (rc)
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002052 goto fail5;
Ben Hutchings7f967c02012-02-13 23:45:02 +00002053
Ben Hutchings8ceee662008-04-27 12:55:59 +01002054 return 0;
2055
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002056 fail5:
Ben Hutchings7f967c02012-02-13 23:45:02 +00002057 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002058 fail4:
2059#ifdef CONFIG_SFC_SRIOV
2060 efx->type->vswitching_remove(efx);
2061#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002062 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002063 efx_remove_port(efx);
2064 fail2:
2065 efx_remove_nic(efx);
2066 fail1:
2067 return rc;
2068}
2069
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002070/* If the interface is supposed to be running but is not, start
2071 * the hardware and software data path, regular activity for the port
2072 * (MAC statistics, link polling, etc.) and schedule the port to be
2073 * reconfigured. Interrupts must already be enabled. This function
2074 * is safe to call multiple times, so long as the NIC is not disabled.
2075 * Requires the RTNL lock.
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002076 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002077static void efx_start_all(struct efx_nic *efx)
2078{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002079 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002080 BUG_ON(efx->state == STATE_DISABLED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002081
2082 /* Check that it is appropriate to restart the interface. All
2083 * of these flags are safe to read under just the rtnl lock */
Edward Creee2835462014-04-16 19:27:48 +01002084 if (efx->port_enabled || !netif_running(efx->net_dev) ||
2085 efx->reset_pending)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002086 return;
2087
Ben Hutchings8ceee662008-04-27 12:55:59 +01002088 efx_start_port(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002089 efx_start_datapath(efx);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002090
Alexandre Rames626950d2013-01-14 17:20:22 +00002091 /* Start the hardware monitor if there is one */
2092 if (efx->type->monitor != NULL)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002093 queue_delayed_work(efx->workqueue, &efx->monitor_work,
2094 efx_monitor_interval);
Alexandre Rames626950d2013-01-14 17:20:22 +00002095
Edward Cree5a6681e2016-11-28 18:55:34 +00002096 /* Link state detection is normally event-driven; we have
Alexandre Rames626950d2013-01-14 17:20:22 +00002097 * to poll now because we could have missed a change
2098 */
Edward Cree5a6681e2016-11-28 18:55:34 +00002099 mutex_lock(&efx->mac_lock);
2100 if (efx->phy_op->poll(efx))
2101 efx_link_status_changed(efx);
2102 mutex_unlock(&efx->mac_lock);
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002103
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002104 efx->type->start_stats(efx);
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01002105 efx->type->pull_stats(efx);
2106 spin_lock_bh(&efx->stats_lock);
2107 efx->type->update_stats(efx, NULL, NULL);
2108 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002109}
2110
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002111/* Quiesce the hardware and software data path, and regular activity
2112 * for the port without bringing the link down. Safe to call multiple
2113 * times with the NIC in almost any state, but interrupts should be
2114 * enabled. Requires the RTNL lock.
2115 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002116static void efx_stop_all(struct efx_nic *efx)
2117{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002118 EFX_ASSERT_RESET_SERIALISED(efx);
2119
2120 /* port_enabled can be read safely under the rtnl lock */
2121 if (!efx->port_enabled)
2122 return;
2123
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01002124 /* update stats before we go down so we can accurately count
2125 * rx_nodesc_drops
2126 */
2127 efx->type->pull_stats(efx);
2128 spin_lock_bh(&efx->stats_lock);
2129 efx->type->update_stats(efx, NULL, NULL);
2130 spin_unlock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002131 efx->type->stop_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002132 efx_stop_port(efx);
2133
Ben Hutchings29c69a42013-01-28 19:01:06 +00002134 /* Stop the kernel transmit interface. This is only valid if
2135 * the device is stopped or detached; otherwise the watchdog
2136 * may fire immediately.
2137 */
2138 WARN_ON(netif_running(efx->net_dev) &&
2139 netif_device_present(efx->net_dev));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002140 netif_tx_disable(efx->net_dev);
2141
2142 efx_stop_datapath(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002143}
2144
2145static void efx_remove_all(struct efx_nic *efx)
2146{
Charles McLachlane45a4fe2019-10-31 10:23:37 +00002147 rtnl_lock();
2148 efx_xdp_setup_prog(efx, NULL);
2149 rtnl_unlock();
2150
Ben Hutchings46426102010-09-10 06:42:33 +00002151 efx_remove_channels(efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +00002152 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002153#ifdef CONFIG_SFC_SRIOV
2154 efx->type->vswitching_remove(efx);
2155#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002156 efx_remove_port(efx);
2157 efx_remove_nic(efx);
2158}
2159
Ben Hutchings8ceee662008-04-27 12:55:59 +01002160/**************************************************************************
2161 *
2162 * Interrupt moderation
2163 *
2164 **************************************************************************/
Bert Kenward539de7c2016-08-11 13:02:09 +01002165unsigned int efx_usecs_to_ticks(struct efx_nic *efx, unsigned int usecs)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00002166{
Ben Hutchingsb548f972011-09-05 07:41:44 +00002167 if (usecs == 0)
2168 return 0;
Bert Kenward539de7c2016-08-11 13:02:09 +01002169 if (usecs * 1000 < efx->timer_quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00002170 return 1; /* never round down to 0 */
Bert Kenward539de7c2016-08-11 13:02:09 +01002171 return usecs * 1000 / efx->timer_quantum_ns;
2172}
2173
2174unsigned int efx_ticks_to_usecs(struct efx_nic *efx, unsigned int ticks)
2175{
2176 /* We must round up when converting ticks to microseconds
2177 * because we round down when converting the other way.
2178 */
2179 return DIV_ROUND_UP(ticks * efx->timer_quantum_ns, 1000);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00002180}
2181
Ben Hutchings8ceee662008-04-27 12:55:59 +01002182/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00002183int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
2184 unsigned int rx_usecs, bool rx_adaptive,
2185 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002186{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00002187 struct efx_channel *channel;
Bert Kenwardd95e3292016-08-11 13:02:36 +01002188 unsigned int timer_max_us;
2189
Ben Hutchings8ceee662008-04-27 12:55:59 +01002190 EFX_ASSERT_RESET_SERIALISED(efx);
2191
Bert Kenwardd95e3292016-08-11 13:02:36 +01002192 timer_max_us = efx->timer_max_ns / 1000;
2193
2194 if (tx_usecs > timer_max_us || rx_usecs > timer_max_us)
Ben Hutchings9e393b32011-09-05 07:43:04 +00002195 return -EINVAL;
2196
Bert Kenward539de7c2016-08-11 13:02:09 +01002197 if (tx_usecs != rx_usecs && efx->tx_channel_offset == 0 &&
Ben Hutchings9e393b32011-09-05 07:43:04 +00002198 !rx_may_override_tx) {
2199 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
2200 "RX and TX IRQ moderation must be equal\n");
2201 return -EINVAL;
2202 }
2203
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00002204 efx->irq_rx_adaptive = rx_adaptive;
Bert Kenward539de7c2016-08-11 13:02:09 +01002205 efx->irq_rx_moderation_us = rx_usecs;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00002206 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00002207 if (efx_channel_has_rx_queue(channel))
Bert Kenward539de7c2016-08-11 13:02:09 +01002208 channel->irq_moderation_us = rx_usecs;
Ben Hutchings525da902011-02-07 23:04:38 +00002209 else if (efx_channel_has_tx_queues(channel))
Bert Kenward539de7c2016-08-11 13:02:09 +01002210 channel->irq_moderation_us = tx_usecs;
Charles McLachlan3990a8f2019-10-31 10:23:49 +00002211 else if (efx_channel_is_xdp_tx(channel))
2212 channel->irq_moderation_us = tx_usecs;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00002213 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00002214
2215 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002216}
2217
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002218void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
2219 unsigned int *rx_usecs, bool *rx_adaptive)
2220{
2221 *rx_adaptive = efx->irq_rx_adaptive;
Bert Kenward539de7c2016-08-11 13:02:09 +01002222 *rx_usecs = efx->irq_rx_moderation_us;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002223
2224 /* If channels are shared between RX and TX, so is IRQ
2225 * moderation. Otherwise, IRQ moderation is the same for all
2226 * TX channels and is not adaptive.
2227 */
Bert Kenward539de7c2016-08-11 13:02:09 +01002228 if (efx->tx_channel_offset == 0) {
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002229 *tx_usecs = *rx_usecs;
Bert Kenward539de7c2016-08-11 13:02:09 +01002230 } else {
2231 struct efx_channel *tx_channel;
2232
2233 tx_channel = efx->channel[efx->tx_channel_offset];
2234 *tx_usecs = tx_channel->irq_moderation_us;
2235 }
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002236}
2237
Ben Hutchings8ceee662008-04-27 12:55:59 +01002238/**************************************************************************
2239 *
2240 * Hardware monitor
2241 *
2242 **************************************************************************/
2243
Ben Hutchingse254c272010-09-20 08:44:10 +00002244/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002245static void efx_monitor(struct work_struct *data)
2246{
2247 struct efx_nic *efx = container_of(data, struct efx_nic,
2248 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002249
Ben Hutchings62776d02010-06-23 11:30:07 +00002250 netif_vdbg(efx, timer, efx->net_dev,
2251 "hardware monitor executing on CPU %d\n",
2252 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002253 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002254
Ben Hutchings8ceee662008-04-27 12:55:59 +01002255 /* If the mac_lock is already held then it is likely a port
2256 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00002257 * most of the work of monitor() anyway. */
2258 if (mutex_trylock(&efx->mac_lock)) {
2259 if (efx->port_enabled)
2260 efx->type->monitor(efx);
2261 mutex_unlock(&efx->mac_lock);
2262 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002263
Ben Hutchings8ceee662008-04-27 12:55:59 +01002264 queue_delayed_work(efx->workqueue, &efx->monitor_work,
2265 efx_monitor_interval);
2266}
2267
2268/**************************************************************************
2269 *
2270 * ioctls
2271 *
2272 *************************************************************************/
2273
2274/* Net device ioctl
2275 * Context: process, rtnl_lock() held.
2276 */
2277static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
2278{
Ben Hutchings767e4682008-09-01 12:43:14 +01002279 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002280 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002281
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002282 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings433dc9b2013-11-14 01:26:21 +00002283 return efx_ptp_set_ts_config(efx, ifr);
2284 if (cmd == SIOCGHWTSTAMP)
2285 return efx_ptp_get_ts_config(efx, ifr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002286
Ben Hutchings68e7f452009-04-29 08:05:08 +00002287 /* Convert phy_id from older PRTAD/DEVAD format */
2288 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
2289 (data->phy_id & 0xfc00) == 0x0400)
2290 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
2291
2292 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002293}
2294
2295/**************************************************************************
2296 *
2297 * NAPI interface
2298 *
2299 **************************************************************************/
2300
Ben Hutchings7f967c02012-02-13 23:45:02 +00002301static void efx_init_napi_channel(struct efx_channel *channel)
2302{
2303 struct efx_nic *efx = channel->efx;
2304
2305 channel->napi_dev = efx->net_dev;
2306 netif_napi_add(channel->napi_dev, &channel->napi_str,
2307 efx_poll, napi_weight);
2308}
2309
Ben Hutchingse8f14992010-12-07 19:47:34 +00002310static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002311{
2312 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002313
Ben Hutchings7f967c02012-02-13 23:45:02 +00002314 efx_for_each_channel(channel, efx)
2315 efx_init_napi_channel(channel);
Ben Hutchingse8f14992010-12-07 19:47:34 +00002316}
2317
2318static void efx_fini_napi_channel(struct efx_channel *channel)
2319{
Eric Dumazet973334a2016-11-16 06:01:47 -08002320 if (channel->napi_dev)
Ben Hutchingse8f14992010-12-07 19:47:34 +00002321 netif_napi_del(&channel->napi_str);
Eric Dumazet973334a2016-11-16 06:01:47 -08002322
Ben Hutchingse8f14992010-12-07 19:47:34 +00002323 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002324}
2325
2326static void efx_fini_napi(struct efx_nic *efx)
2327{
2328 struct efx_channel *channel;
2329
Ben Hutchingse8f14992010-12-07 19:47:34 +00002330 efx_for_each_channel(channel, efx)
2331 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002332}
2333
2334/**************************************************************************
2335 *
Ben Hutchings8ceee662008-04-27 12:55:59 +01002336 * Kernel net device interface
2337 *
2338 *************************************************************************/
2339
2340/* Context: process, rtnl_lock() held. */
Shradha Shahe340be92015-05-20 11:11:03 +01002341int efx_net_open(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002342{
Ben Hutchings767e4682008-09-01 12:43:14 +01002343 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002344 int rc;
2345
Ben Hutchings62776d02010-06-23 11:30:07 +00002346 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
2347 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002348
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002349 rc = efx_check_disabled(efx);
2350 if (rc)
2351 return rc;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002352 if (efx->phy_mode & PHY_MODE_SPECIAL)
2353 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002354 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
2355 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002356
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00002357 /* Notify the kernel of the link state polled during driver load,
2358 * before the monitor starts running */
2359 efx_link_status_changed(efx);
2360
Ben Hutchings8ceee662008-04-27 12:55:59 +01002361 efx_start_all(efx);
Peter Dunning9c568fd2017-02-17 15:50:43 +00002362 if (efx->state == STATE_DISABLED || efx->reset_pending)
2363 netif_device_detach(efx->net_dev);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002364 efx_selftest_async_start(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002365 return 0;
2366}
2367
2368/* Context: process, rtnl_lock() held.
2369 * Note that the kernel will ignore our return code; this method
2370 * should really be a void.
2371 */
Shradha Shahe340be92015-05-20 11:11:03 +01002372int efx_net_stop(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002373{
Ben Hutchings767e4682008-09-01 12:43:14 +01002374 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002375
Ben Hutchings62776d02010-06-23 11:30:07 +00002376 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
2377 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002378
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002379 /* Stop the device and flush all the channels */
2380 efx_stop_all(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002381
2382 return 0;
2383}
2384
Ben Hutchings5b9e2072008-05-16 21:18:14 +01002385/* Context: process, dev_base_lock or RTNL held, non-blocking. */
stephen hemmingerbc1f4472017-01-06 19:12:52 -08002386static void efx_net_stats(struct net_device *net_dev,
2387 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002388{
Ben Hutchings767e4682008-09-01 12:43:14 +01002389 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002390
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002391 spin_lock_bh(&efx->stats_lock);
Ben Hutchingscd0ecc92012-12-14 21:52:56 +00002392 efx->type->update_stats(efx, NULL, stats);
Ben Hutchings1cb34522011-09-02 23:23:00 +01002393 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002394}
2395
2396/* Context: netif_tx_lock held, BHs disabled. */
Michael S. Tsirkin0290bd22019-12-10 09:23:51 -05002397static void efx_watchdog(struct net_device *net_dev, unsigned int txqueue)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002398{
Ben Hutchings767e4682008-09-01 12:43:14 +01002399 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002400
Ben Hutchings62776d02010-06-23 11:30:07 +00002401 netif_err(efx, tx_err, efx->net_dev,
2402 "TX stuck with port_enabled=%d: resetting channels\n",
2403 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002404
Ben Hutchings739bb23d2008-11-04 20:35:36 +00002405 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002406}
2407
Charles McLachlane45a4fe2019-10-31 10:23:37 +00002408static unsigned int efx_xdp_max_mtu(struct efx_nic *efx)
2409{
2410 /* The maximum MTU that we can fit in a single page, allowing for
2411 * framing, overhead and XDP headroom.
2412 */
2413 int overhead = EFX_MAX_FRAME_LEN(0) + sizeof(struct efx_rx_page_state) +
2414 efx->rx_prefix_size + efx->type->rx_buffer_padding +
2415 efx->rx_ip_align + XDP_PACKET_HEADROOM;
2416
2417 return PAGE_SIZE - overhead;
2418}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002419
2420/* Context: process, rtnl_lock() held. */
2421static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2422{
Ben Hutchings767e4682008-09-01 12:43:14 +01002423 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002424 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002425
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002426 rc = efx_check_disabled(efx);
2427 if (rc)
2428 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002429
Charles McLachlane45a4fe2019-10-31 10:23:37 +00002430 if (rtnl_dereference(efx->xdp_prog) &&
2431 new_mtu > efx_xdp_max_mtu(efx)) {
2432 netif_err(efx, drv, efx->net_dev,
2433 "Requested MTU of %d too big for XDP (max: %d)\n",
2434 new_mtu, efx_xdp_max_mtu(efx));
2435 return -EINVAL;
2436 }
2437
Ben Hutchings62776d02010-06-23 11:30:07 +00002438 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002439
Ben Hutchings29c69a42013-01-28 19:01:06 +00002440 efx_device_detach_sync(efx);
2441 efx_stop_all(efx);
2442
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002443 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002444 net_dev->mtu = new_mtu;
Edward Cree0d322412015-05-20 11:10:03 +01002445 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002446 mutex_unlock(&efx->mac_lock);
2447
Ben Hutchings8ceee662008-04-27 12:55:59 +01002448 efx_start_all(efx);
Peter Dunning9c568fd2017-02-17 15:50:43 +00002449 efx_device_attach_if_not_resetting(efx);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00002450 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002451}
2452
2453static int efx_set_mac_address(struct net_device *net_dev, void *data)
2454{
Ben Hutchings767e4682008-09-01 12:43:14 +01002455 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002456 struct sockaddr *addr = data;
Ben Hutchingse0b3ae32014-02-12 18:59:54 +00002457 u8 *new_addr = addr->sa_data;
Shradha Shahcfc77c22015-05-20 11:09:30 +01002458 u8 old_addr[6];
2459 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002460
Ben Hutchings8ceee662008-04-27 12:55:59 +01002461 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002462 netif_err(efx, drv, efx->net_dev,
2463 "invalid ethernet MAC address requested: %pM\n",
2464 new_addr);
Danny Kukawka504f9b52012-02-21 02:07:49 +00002465 return -EADDRNOTAVAIL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002466 }
2467
Shradha Shahcfc77c22015-05-20 11:09:30 +01002468 /* save old address */
2469 ether_addr_copy(old_addr, net_dev->dev_addr);
Edward Creecd84ff42014-03-07 18:27:41 +00002470 ether_addr_copy(net_dev->dev_addr, new_addr);
Shradha Shah910c8782015-05-20 11:12:48 +01002471 if (efx->type->set_mac_address) {
2472 rc = efx->type->set_mac_address(efx);
Shradha Shahcfc77c22015-05-20 11:09:30 +01002473 if (rc) {
2474 ether_addr_copy(net_dev->dev_addr, old_addr);
2475 return rc;
2476 }
2477 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002478
2479 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002480 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01002481 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002482 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002483
2484 return 0;
2485}
2486
Ben Hutchingsa816f752008-09-01 12:49:12 +01002487/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002488static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002489{
Ben Hutchings767e4682008-09-01 12:43:14 +01002490 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002491
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00002492 if (efx->port_enabled)
2493 queue_work(efx->workqueue, &efx->mac_work);
2494 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002495}
2496
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002497static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002498{
2499 struct efx_nic *efx = netdev_priv(net_dev);
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002500 int rc;
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002501
2502 /* If disabling RX n-tuple filtering, clear existing filters */
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002503 if (net_dev->features & ~data & NETIF_F_NTUPLE) {
2504 rc = efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
2505 if (rc)
2506 return rc;
2507 }
2508
Edward Cree69787292017-10-31 14:29:47 +00002509 /* If Rx VLAN filter is changed, update filters via mac_reconfigure.
2510 * If rx-fcs is changed, mac_reconfigure updates that too.
2511 */
2512 if ((net_dev->features ^ data) & (NETIF_F_HW_VLAN_CTAG_FILTER |
2513 NETIF_F_RXFCS)) {
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002514 /* efx_set_rx_mode() will schedule MAC work to update filters
2515 * when a new features are finally set in net_dev.
2516 */
2517 efx_set_rx_mode(net_dev);
2518 }
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002519
2520 return 0;
2521}
2522
Wei Yongjunb40296f2017-01-11 16:16:12 +00002523static int efx_get_phys_port_id(struct net_device *net_dev,
2524 struct netdev_phys_item_id *ppid)
Bert Kenward08a7b29b2017-01-10 16:23:33 +00002525{
2526 struct efx_nic *efx = netdev_priv(net_dev);
2527
2528 if (efx->type->get_phys_port_id)
2529 return efx->type->get_phys_port_id(efx, ppid);
2530 else
2531 return -EOPNOTSUPP;
2532}
2533
Bert Kenwardac019f02017-01-10 16:23:56 +00002534static int efx_get_phys_port_name(struct net_device *net_dev,
2535 char *name, size_t len)
2536{
2537 struct efx_nic *efx = netdev_priv(net_dev);
2538
2539 if (snprintf(name, len, "p%u", efx->port_num) >= len)
2540 return -EINVAL;
2541 return 0;
2542}
2543
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002544static int efx_vlan_rx_add_vid(struct net_device *net_dev, __be16 proto, u16 vid)
2545{
2546 struct efx_nic *efx = netdev_priv(net_dev);
2547
2548 if (efx->type->vlan_rx_add_vid)
2549 return efx->type->vlan_rx_add_vid(efx, proto, vid);
2550 else
2551 return -EOPNOTSUPP;
2552}
2553
2554static int efx_vlan_rx_kill_vid(struct net_device *net_dev, __be16 proto, u16 vid)
2555{
2556 struct efx_nic *efx = netdev_priv(net_dev);
2557
2558 if (efx->type->vlan_rx_kill_vid)
2559 return efx->type->vlan_rx_kill_vid(efx, proto, vid);
2560 else
2561 return -EOPNOTSUPP;
2562}
2563
Jon Coopere5fbd972017-02-08 16:52:10 +00002564static int efx_udp_tunnel_type_map(enum udp_parsable_tunnel_type in)
2565{
2566 switch (in) {
2567 case UDP_TUNNEL_TYPE_VXLAN:
2568 return TUNNEL_ENCAP_UDP_PORT_ENTRY_VXLAN;
2569 case UDP_TUNNEL_TYPE_GENEVE:
2570 return TUNNEL_ENCAP_UDP_PORT_ENTRY_GENEVE;
2571 default:
2572 return -1;
2573 }
2574}
2575
2576static void efx_udp_tunnel_add(struct net_device *dev, struct udp_tunnel_info *ti)
2577{
2578 struct efx_nic *efx = netdev_priv(dev);
2579 struct efx_udp_tunnel tnl;
2580 int efx_tunnel_type;
2581
2582 efx_tunnel_type = efx_udp_tunnel_type_map(ti->type);
2583 if (efx_tunnel_type < 0)
2584 return;
2585
2586 tnl.type = (u16)efx_tunnel_type;
2587 tnl.port = ti->port;
2588
2589 if (efx->type->udp_tnl_add_port)
2590 (void)efx->type->udp_tnl_add_port(efx, tnl);
2591}
2592
2593static void efx_udp_tunnel_del(struct net_device *dev, struct udp_tunnel_info *ti)
2594{
2595 struct efx_nic *efx = netdev_priv(dev);
2596 struct efx_udp_tunnel tnl;
2597 int efx_tunnel_type;
2598
2599 efx_tunnel_type = efx_udp_tunnel_type_map(ti->type);
2600 if (efx_tunnel_type < 0)
2601 return;
2602
2603 tnl.type = (u16)efx_tunnel_type;
2604 tnl.port = ti->port;
2605
Dan Carpenterc04ca612017-03-22 12:10:02 +03002606 if (efx->type->udp_tnl_del_port)
Jon Coopere5fbd972017-02-08 16:52:10 +00002607 (void)efx->type->udp_tnl_del_port(efx, tnl);
2608}
2609
Shradha Shah7fa8d542015-05-06 00:55:13 +01002610static const struct net_device_ops efx_netdev_ops = {
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002611 .ndo_open = efx_net_open,
2612 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00002613 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002614 .ndo_tx_timeout = efx_watchdog,
2615 .ndo_start_xmit = efx_hard_start_xmit,
2616 .ndo_validate_addr = eth_validate_addr,
2617 .ndo_do_ioctl = efx_ioctl,
2618 .ndo_change_mtu = efx_change_mtu,
2619 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002620 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002621 .ndo_set_features = efx_set_features,
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002622 .ndo_vlan_rx_add_vid = efx_vlan_rx_add_vid,
2623 .ndo_vlan_rx_kill_vid = efx_vlan_rx_kill_vid,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002624#ifdef CONFIG_SFC_SRIOV
Shradha Shah7fa8d542015-05-06 00:55:13 +01002625 .ndo_set_vf_mac = efx_sriov_set_vf_mac,
2626 .ndo_set_vf_vlan = efx_sriov_set_vf_vlan,
2627 .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk,
2628 .ndo_get_vf_config = efx_sriov_get_vf_config,
Edward Cree4392dc62015-05-20 11:12:13 +01002629 .ndo_set_vf_link_state = efx_sriov_set_vf_link_state,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002630#endif
Bert Kenward08a7b29b2017-01-10 16:23:33 +00002631 .ndo_get_phys_port_id = efx_get_phys_port_id,
Bert Kenwardac019f02017-01-10 16:23:56 +00002632 .ndo_get_phys_port_name = efx_get_phys_port_name,
Ben Hutchings94b274b2011-01-10 21:18:20 +00002633 .ndo_setup_tc = efx_setup_tc,
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002634#ifdef CONFIG_RFS_ACCEL
2635 .ndo_rx_flow_steer = efx_filter_rfs,
2636#endif
Jon Coopere5fbd972017-02-08 16:52:10 +00002637 .ndo_udp_tunnel_add = efx_udp_tunnel_add,
2638 .ndo_udp_tunnel_del = efx_udp_tunnel_del,
Charles McLachlandfe44c12019-10-31 10:24:12 +00002639 .ndo_xdp_xmit = efx_xdp_xmit,
Charles McLachlane45a4fe2019-10-31 10:23:37 +00002640 .ndo_bpf = efx_xdp
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002641};
2642
Charles McLachlane45a4fe2019-10-31 10:23:37 +00002643static int efx_xdp_setup_prog(struct efx_nic *efx, struct bpf_prog *prog)
2644{
2645 struct bpf_prog *old_prog;
2646
2647 if (efx->xdp_rxq_info_failed) {
2648 netif_err(efx, drv, efx->net_dev,
2649 "Unable to bind XDP program due to previous failure of rxq_info\n");
2650 return -EINVAL;
2651 }
2652
2653 if (prog && efx->net_dev->mtu > efx_xdp_max_mtu(efx)) {
2654 netif_err(efx, drv, efx->net_dev,
2655 "Unable to configure XDP with MTU of %d (max: %d)\n",
2656 efx->net_dev->mtu, efx_xdp_max_mtu(efx));
2657 return -EINVAL;
2658 }
2659
2660 old_prog = rtnl_dereference(efx->xdp_prog);
2661 rcu_assign_pointer(efx->xdp_prog, prog);
2662 /* Release the reference that was originally passed by the caller. */
2663 if (old_prog)
2664 bpf_prog_put(old_prog);
2665
2666 return 0;
2667}
2668
2669/* Context: process, rtnl_lock() held. */
2670static int efx_xdp(struct net_device *dev, struct netdev_bpf *xdp)
2671{
2672 struct efx_nic *efx = netdev_priv(dev);
2673 struct bpf_prog *xdp_prog;
2674
2675 switch (xdp->command) {
2676 case XDP_SETUP_PROG:
2677 return efx_xdp_setup_prog(efx, xdp->prog);
2678 case XDP_QUERY_PROG:
2679 xdp_prog = rtnl_dereference(efx->xdp_prog);
2680 xdp->prog_id = xdp_prog ? xdp_prog->aux->id : 0;
2681 return 0;
2682 default:
2683 return -EINVAL;
2684 }
2685}
2686
Charles McLachlandfe44c12019-10-31 10:24:12 +00002687static int efx_xdp_xmit(struct net_device *dev, int n, struct xdp_frame **xdpfs,
2688 u32 flags)
2689{
2690 struct efx_nic *efx = netdev_priv(dev);
2691
2692 if (!netif_running(dev))
2693 return -EINVAL;
2694
2695 return efx_xdp_tx_buffers(efx, n, xdpfs, flags & XDP_XMIT_FLUSH);
2696}
2697
Ben Hutchings7dde5962008-12-12 22:09:38 -08002698static void efx_update_name(struct efx_nic *efx)
2699{
2700 strcpy(efx->name, efx->net_dev->name);
2701 efx_mtd_rename(efx);
2702 efx_set_channel_names(efx);
2703}
2704
Ben Hutchings8ceee662008-04-27 12:55:59 +01002705static int efx_netdev_event(struct notifier_block *this,
2706 unsigned long event, void *ptr)
2707{
Jiri Pirko351638e2013-05-28 01:30:21 +00002708 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002709
Shradha Shah7fa8d542015-05-06 00:55:13 +01002710 if ((net_dev->netdev_ops == &efx_netdev_ops) &&
Ben Hutchings7dde5962008-12-12 22:09:38 -08002711 event == NETDEV_CHANGENAME)
2712 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002713
2714 return NOTIFY_DONE;
2715}
2716
2717static struct notifier_block efx_netdev_notifier = {
2718 .notifier_call = efx_netdev_event,
2719};
2720
Ben Hutchings06d5e192008-12-12 21:47:23 -08002721static ssize_t
2722show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2723{
Chuhong Yuan3e03a8ba2019-07-24 19:26:58 +08002724 struct efx_nic *efx = dev_get_drvdata(dev);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002725 return sprintf(buf, "%d\n", efx->phy_type);
2726}
Ben Hutchings776fbcc2013-06-18 17:45:40 +01002727static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002728
Edward Creee7fef9b2015-05-27 13:14:01 +01002729#ifdef CONFIG_SFC_MCDI_LOGGING
2730static ssize_t show_mcdi_log(struct device *dev, struct device_attribute *attr,
2731 char *buf)
2732{
Chuhong Yuan3e03a8ba2019-07-24 19:26:58 +08002733 struct efx_nic *efx = dev_get_drvdata(dev);
Edward Creee7fef9b2015-05-27 13:14:01 +01002734 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2735
2736 return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled);
2737}
2738static ssize_t set_mcdi_log(struct device *dev, struct device_attribute *attr,
2739 const char *buf, size_t count)
2740{
Chuhong Yuan3e03a8ba2019-07-24 19:26:58 +08002741 struct efx_nic *efx = dev_get_drvdata(dev);
Edward Creee7fef9b2015-05-27 13:14:01 +01002742 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2743 bool enable = count > 0 && *buf != '0';
2744
2745 mcdi->logging_enabled = enable;
2746 return count;
2747}
2748static DEVICE_ATTR(mcdi_logging, 0644, show_mcdi_log, set_mcdi_log);
2749#endif
2750
Ben Hutchings8ceee662008-04-27 12:55:59 +01002751static int efx_register_netdev(struct efx_nic *efx)
2752{
2753 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002754 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002755 int rc;
2756
2757 net_dev->watchdog_timeo = 5 * HZ;
2758 net_dev->irq = efx->pci_dev->irq;
Shradha Shah7fa8d542015-05-06 00:55:13 +01002759 net_dev->netdev_ops = &efx_netdev_ops;
2760 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0)
Ben Hutchings8127d662013-08-29 19:19:29 +01002761 net_dev->priv_flags |= IFF_UNICAST_FLT;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002762 net_dev->ethtool_ops = &efx_ethtool_ops;
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002763 net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
Bert Kenwardcd94e512016-10-18 17:47:45 +01002764 net_dev->min_mtu = EFX_MIN_MTU;
2765 net_dev->max_mtu = EFX_MAX_MTU;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002766
Ben Hutchings7dde5962008-12-12 22:09:38 -08002767 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00002768
Ben Hutchings7153f622012-07-27 20:50:52 +01002769 /* Enable resets to be scheduled and check whether any were
2770 * already requested. If so, the NIC is probably hosed so we
2771 * abort.
2772 */
2773 efx->state = STATE_READY;
2774 smp_mb(); /* ensure we change state before checking reset_pending */
2775 if (efx->reset_pending) {
2776 netif_err(efx, probe, efx->net_dev,
2777 "aborting probe due to scheduled reset\n");
2778 rc = -EIO;
2779 goto fail_locked;
2780 }
2781
Ben Hutchingsaed06282009-08-26 08:16:27 +00002782 rc = dev_alloc_name(net_dev, net_dev->name);
2783 if (rc < 0)
2784 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002785 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002786
Ben Hutchings8f8b3d52012-08-24 18:04:38 +01002787 /* Always start with carrier off; PHY events will detect the link */
2788 netif_carrier_off(net_dev);
2789
Ben Hutchingsaed06282009-08-26 08:16:27 +00002790 rc = register_netdevice(net_dev);
2791 if (rc)
2792 goto fail_locked;
2793
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002794 efx_for_each_channel(channel, efx) {
2795 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00002796 efx_for_each_channel_tx_queue(tx_queue, channel)
2797 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002798 }
2799
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002800 efx_associate(efx);
2801
Ben Hutchings7dde5962008-12-12 22:09:38 -08002802 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002803
Ben Hutchings06d5e192008-12-12 21:47:23 -08002804 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2805 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002806 netif_err(efx, drv, efx->net_dev,
2807 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08002808 goto fail_registered;
2809 }
Edward Creee7fef9b2015-05-27 13:14:01 +01002810#ifdef CONFIG_SFC_MCDI_LOGGING
2811 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2812 if (rc) {
2813 netif_err(efx, drv, efx->net_dev,
2814 "failed to init net dev attributes\n");
2815 goto fail_attr_mcdi_logging;
2816 }
2817#endif
Ben Hutchings06d5e192008-12-12 21:47:23 -08002818
Ben Hutchings8ceee662008-04-27 12:55:59 +01002819 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08002820
Edward Creee7fef9b2015-05-27 13:14:01 +01002821#ifdef CONFIG_SFC_MCDI_LOGGING
2822fail_attr_mcdi_logging:
2823 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2824#endif
Ben Hutchings7153f622012-07-27 20:50:52 +01002825fail_registered:
2826 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002827 efx_dissociate(efx);
Ben Hutchings7153f622012-07-27 20:50:52 +01002828 unregister_netdevice(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002829fail_locked:
Ben Hutchings7153f622012-07-27 20:50:52 +01002830 efx->state = STATE_UNINIT;
Ben Hutchingsaed06282009-08-26 08:16:27 +00002831 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00002832 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00002833 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002834}
2835
2836static void efx_unregister_netdev(struct efx_nic *efx)
2837{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002838 if (!efx->net_dev)
2839 return;
2840
Ben Hutchings767e4682008-09-01 12:43:14 +01002841 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002842
Edward Creee7fef9b2015-05-27 13:14:01 +01002843 if (efx_dev_registered(efx)) {
2844 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2845#ifdef CONFIG_SFC_MCDI_LOGGING
2846 device_remove_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2847#endif
2848 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2849 unregister_netdev(efx->net_dev);
2850 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002851}
2852
2853/**************************************************************************
2854 *
2855 * Device reset and suspend
2856 *
2857 **************************************************************************/
2858
Ben Hutchings2467ca42008-09-01 12:48:50 +01002859/* Tears down the entire software state and most of the hardware state
2860 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002861void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002862{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002863 EFX_ASSERT_RESET_SERIALISED(efx);
2864
Edward Creee2835462014-04-16 19:27:48 +01002865 if (method == RESET_TYPE_MCDI_TIMEOUT)
2866 efx->type->prepare_flr(efx);
2867
Ben Hutchings2467ca42008-09-01 12:48:50 +01002868 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002869 efx_disable_interrupts(efx);
Ben Hutchings5642cee2012-07-27 19:35:52 +01002870
2871 mutex_lock(&efx->mac_lock);
Bert Kenward193f2002018-07-11 11:45:10 +01002872 down_write(&efx->filter_sem);
Edward Creee0a65e32018-03-27 17:44:36 +01002873 mutex_lock(&efx->rss_lock);
Jon Cooper087e9022015-05-20 11:11:35 +01002874 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2875 method != RESET_TYPE_DATAPATH)
Steve Hodgson4b988282009-01-29 17:50:51 +00002876 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002877 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002878}
2879
Ben Hutchings2467ca42008-09-01 12:48:50 +01002880/* This function will always ensure that the locks acquired in
2881 * efx_reset_down() are released. A failure return code indicates
2882 * that we were unable to reinitialise the hardware, and the
2883 * driver should be disabled. If ok is false, then the rx and tx
2884 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002885int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002886{
2887 int rc;
2888
Ben Hutchings2467ca42008-09-01 12:48:50 +01002889 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002890
Edward Creee2835462014-04-16 19:27:48 +01002891 if (method == RESET_TYPE_MCDI_TIMEOUT)
2892 efx->type->finish_flr(efx);
2893
2894 /* Ensure that SRAM is initialised even if we're disabling the device */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002895 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002896 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002897 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002898 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002899 }
2900
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002901 if (!ok)
2902 goto fail;
2903
Jon Cooper087e9022015-05-20 11:11:35 +01002904 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2905 method != RESET_TYPE_DATAPATH) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002906 rc = efx->phy_op->init(efx);
2907 if (rc)
2908 goto fail;
Edward Cree267d9d72015-05-06 00:59:18 +01002909 rc = efx->phy_op->reconfigure(efx);
2910 if (rc && rc != -EPERM)
Ben Hutchings62776d02010-06-23 11:30:07 +00002911 netif_err(efx, drv, efx->net_dev,
2912 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002913 }
2914
Jon Cooper261e4d92013-04-15 18:51:54 +01002915 rc = efx_enable_interrupts(efx);
2916 if (rc)
2917 goto fail;
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002918
2919#ifdef CONFIG_SFC_SRIOV
2920 rc = efx->type->vswitching_restore(efx);
2921 if (rc) /* not fatal; the PF will still work fine */
2922 netif_warn(efx, probe, efx->net_dev,
2923 "failed to restore vswitching rc=%d;"
2924 " VFs may not function\n", rc);
2925#endif
2926
Edward Cree42356d92018-03-08 15:45:17 +00002927 if (efx->type->rx_restore_rss_contexts)
2928 efx->type->rx_restore_rss_contexts(efx);
Edward Creee0a65e32018-03-27 17:44:36 +01002929 mutex_unlock(&efx->rss_lock);
Bert Kenward193f2002018-07-11 11:45:10 +01002930 efx->type->filter_table_restore(efx);
2931 up_write(&efx->filter_sem);
Shradha Shah7fa8d542015-05-06 00:55:13 +01002932 if (efx->type->sriov_reset)
2933 efx->type->sriov_reset(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002934
2935 mutex_unlock(&efx->mac_lock);
2936
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002937 efx_start_all(efx);
2938
Jon Coopere5fbd972017-02-08 16:52:10 +00002939 if (efx->type->udp_tnl_push_ports)
2940 efx->type->udp_tnl_push_ports(efx);
2941
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002942 return 0;
2943
2944fail:
2945 efx->port_initialized = false;
2946
Edward Creee0a65e32018-03-27 17:44:36 +01002947 mutex_unlock(&efx->rss_lock);
Bert Kenward193f2002018-07-11 11:45:10 +01002948 up_write(&efx->filter_sem);
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002949 mutex_unlock(&efx->mac_lock);
2950
Ben Hutchings8ceee662008-04-27 12:55:59 +01002951 return rc;
2952}
2953
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002954/* Reset the NIC using the specified method. Note that the reset may
2955 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002956 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002957 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002958 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002959int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002960{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002961 int rc, rc2;
2962 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002963
Ben Hutchings62776d02010-06-23 11:30:07 +00002964 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2965 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002966
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002967 efx_device_detach_sync(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002968 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002969
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002970 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002971 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002972 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002973 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002974 }
2975
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002976 /* Clear flags for the scopes we covered. We assume the NIC and
2977 * driver are now quiescent so that there is no race here.
2978 */
Edward Creee2835462014-04-16 19:27:48 +01002979 if (method < RESET_TYPE_MAX_METHOD)
2980 efx->reset_pending &= -(1 << (method + 1));
2981 else /* it doesn't fit into the well-ordered scope hierarchy */
2982 __clear_bit(method, &efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002983
2984 /* Reinitialise bus-mastering, which may have been turned off before
2985 * the reset was scheduled. This is still appropriate, even in the
2986 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2987 * can respond to requests. */
2988 pci_set_master(efx->pci_dev);
2989
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002990out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002991 /* Leave device stopped if necessary */
Alexandre Rames626950d2013-01-14 17:20:22 +00002992 disabled = rc ||
2993 method == RESET_TYPE_DISABLE ||
2994 method == RESET_TYPE_RECOVER_OR_DISABLE;
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002995 rc2 = efx_reset_up(efx, method, !disabled);
2996 if (rc2) {
2997 disabled = true;
2998 if (!rc)
2999 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003000 }
3001
Ben Hutchingseb9f6742009-11-29 03:43:15 +00003002 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00003003 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00003004 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08003005 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08003006 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00003007 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Peter Dunning9c568fd2017-02-17 15:50:43 +00003008 efx_device_attach_if_not_resetting(efx);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08003009 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003010 return rc;
3011}
3012
Alexandre Rames626950d2013-01-14 17:20:22 +00003013/* Try recovery mechanisms.
3014 * For now only EEH is supported.
3015 * Returns 0 if the recovery mechanisms are unsuccessful.
3016 * Returns a non-zero value otherwise.
3017 */
Alexandre Ramesb28405b2013-03-21 16:41:43 +00003018int efx_try_recovery(struct efx_nic *efx)
Alexandre Rames626950d2013-01-14 17:20:22 +00003019{
3020#ifdef CONFIG_EEH
3021 /* A PCI error can occur and not be seen by EEH because nothing
3022 * happens on the PCI bus. In this case the driver may fail and
3023 * schedule a 'recover or reset', leading to this recovery handler.
3024 * Manually call the eeh failure check function.
3025 */
Benjamin Herrenschmidt12a89db2015-03-23 14:00:47 +11003026 struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00003027 if (eeh_dev_check_failure(eehdev)) {
3028 /* The EEH mechanisms will handle the error and reset the
3029 * device if necessary.
3030 */
3031 return 1;
3032 }
3033#endif
3034 return 0;
3035}
3036
Jon Cooper74cd60a2013-09-16 14:18:51 +01003037static void efx_wait_for_bist_end(struct efx_nic *efx)
3038{
3039 int i;
3040
3041 for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
3042 if (efx_mcdi_poll_reboot(efx))
3043 goto out;
3044 msleep(BIST_WAIT_DELAY_MS);
3045 }
3046
3047 netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
3048out:
3049 /* Either way unset the BIST flag. If we found no reboot we probably
3050 * won't recover, but we should try.
3051 */
3052 efx->mc_bist_for_other_fn = false;
3053}
3054
Ben Hutchings8ceee662008-04-27 12:55:59 +01003055/* The worker thread exists so that code that cannot sleep can
3056 * schedule a reset for later.
3057 */
3058static void efx_reset_work(struct work_struct *data)
3059{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00003060 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Alexandre Rames626950d2013-01-14 17:20:22 +00003061 unsigned long pending;
3062 enum reset_type method;
3063
Mark Rutland6aa7de02017-10-23 14:07:29 -07003064 pending = READ_ONCE(efx->reset_pending);
Alexandre Rames626950d2013-01-14 17:20:22 +00003065 method = fls(pending) - 1;
3066
Jon Cooper74cd60a2013-09-16 14:18:51 +01003067 if (method == RESET_TYPE_MC_BIST)
3068 efx_wait_for_bist_end(efx);
3069
Alexandre Rames626950d2013-01-14 17:20:22 +00003070 if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
3071 method == RESET_TYPE_RECOVER_OR_ALL) &&
3072 efx_try_recovery(efx))
3073 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003074
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003075 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00003076 return;
3077
Ben Hutchingseb9f6742009-11-29 03:43:15 +00003078 rtnl_lock();
Ben Hutchings7153f622012-07-27 20:50:52 +01003079
3080 /* We checked the state in efx_schedule_reset() but it may
3081 * have changed by now. Now that we have the RTNL lock,
3082 * it cannot change again.
3083 */
3084 if (efx->state == STATE_READY)
Alexandre Rames626950d2013-01-14 17:20:22 +00003085 (void)efx_reset(efx, method);
Ben Hutchings7153f622012-07-27 20:50:52 +01003086
Ben Hutchingseb9f6742009-11-29 03:43:15 +00003087 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01003088}
3089
3090void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
3091{
3092 enum reset_type method;
3093
Alexandre Rames626950d2013-01-14 17:20:22 +00003094 if (efx->state == STATE_RECOVERY) {
3095 netif_dbg(efx, drv, efx->net_dev,
3096 "recovering: skip scheduling %s reset\n",
3097 RESET_TYPE(type));
3098 return;
3099 }
3100
Ben Hutchings8ceee662008-04-27 12:55:59 +01003101 switch (type) {
3102 case RESET_TYPE_INVISIBLE:
3103 case RESET_TYPE_ALL:
Alexandre Rames626950d2013-01-14 17:20:22 +00003104 case RESET_TYPE_RECOVER_OR_ALL:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003105 case RESET_TYPE_WORLD:
3106 case RESET_TYPE_DISABLE:
Alexandre Rames626950d2013-01-14 17:20:22 +00003107 case RESET_TYPE_RECOVER_OR_DISABLE:
Jon Cooper087e9022015-05-20 11:11:35 +01003108 case RESET_TYPE_DATAPATH:
Jon Cooper74cd60a2013-09-16 14:18:51 +01003109 case RESET_TYPE_MC_BIST:
Edward Creee2835462014-04-16 19:27:48 +01003110 case RESET_TYPE_MCDI_TIMEOUT:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003111 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01003112 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
3113 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01003114 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003115 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01003116 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00003117 netif_dbg(efx, drv, efx->net_dev,
3118 "scheduling %s reset for %s\n",
3119 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01003120 break;
3121 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003122
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003123 set_bit(method, &efx->reset_pending);
Ben Hutchings7153f622012-07-27 20:50:52 +01003124 smp_mb(); /* ensure we change reset_pending before checking state */
3125
3126 /* If we're not READY then just leave the flags set as the cue
3127 * to abort probing or reschedule the reset later.
3128 */
Mark Rutland6aa7de02017-10-23 14:07:29 -07003129 if (READ_ONCE(efx->state) != STATE_READY)
Ben Hutchings7153f622012-07-27 20:50:52 +01003130 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003131
Ben Hutchings8880f4e2009-11-29 15:15:41 +00003132 /* efx_process_channel() will no longer read events once a
3133 * reset is scheduled. So switch back to poll'd MCDI completions. */
3134 efx_mcdi_mode_poll(efx);
3135
Steve Hodgson1ab00622008-12-12 21:33:02 -08003136 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003137}
3138
3139/**************************************************************************
3140 *
3141 * List of NICs we support
3142 *
3143 **************************************************************************/
3144
3145/* PCI device ID table */
Benoit Taine9baa3c32014-08-08 15:56:03 +02003146static const struct pci_device_id efx_pci_table[] = {
Ben Hutchings547c4742011-12-02 18:23:56 +00003147 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00003148 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00003149 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00003150 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8127d662013-08-29 19:19:29 +01003151 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */
3152 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01003153 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1903), /* SFC9120 VF */
3154 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Mateusz Wrzesinski3b06a002014-07-14 08:38:49 +01003155 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923), /* SFC9140 PF */
3156 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Bert Kenwarddd248f12015-11-30 09:05:47 +00003157 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1923), /* SFC9140 VF */
3158 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
3159 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0a03), /* SFC9220 PF */
3160 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
3161 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1a03), /* SFC9220 VF */
3162 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Edward Creeaae5a312017-12-18 16:56:34 +00003163 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0b03), /* SFC9250 PF */
3164 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
3165 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1b03), /* SFC9250 VF */
3166 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01003167 {0} /* end of list */
3168};
3169
3170/**************************************************************************
3171 *
Ben Hutchings37594332009-11-23 16:05:45 +00003172 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01003173 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01003174 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01003175 * Needed so all function pointers are valid and do not have to be tested
3176 * before use
3177 *
3178 **************************************************************************/
3179int efx_port_dummy_op_int(struct efx_nic *efx)
3180{
3181 return 0;
3182}
3183void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00003184
3185static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00003186{
3187 return false;
3188}
Ben Hutchings8ceee662008-04-27 12:55:59 +01003189
stephen hemminger6c8c2512011-04-14 05:50:12 +00003190static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01003191 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00003192 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00003193 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003194 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003195};
3196
Ben Hutchings8ceee662008-04-27 12:55:59 +01003197/**************************************************************************
3198 *
3199 * Data housekeeping
3200 *
3201 **************************************************************************/
3202
3203/* This zeroes out and then fills in the invariants in a struct
3204 * efx_nic (including all sub-structures).
3205 */
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003206static int efx_init_struct(struct efx_nic *efx,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003207 struct pci_dev *pci_dev, struct net_device *net_dev)
3208{
Andrew Rybchenko6f9f6ec2017-02-13 14:57:39 +00003209 int rc = -ENOMEM, i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003210
3211 /* Initialise common structures */
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01003212 INIT_LIST_HEAD(&efx->node);
3213 INIT_LIST_HEAD(&efx->secondary_list);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003214 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00003215#ifdef CONFIG_SFC_MTD
3216 INIT_LIST_HEAD(&efx->mtd_list);
3217#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003218 INIT_WORK(&efx->reset_work, efx_reset_work);
3219 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
Ben Hutchingsdd407812012-02-28 23:40:21 +00003220 INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003221 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00003222 efx->msg_enable = debug;
Ben Hutchingsf16aeea2012-07-27 19:31:16 +01003223 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003224 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01003225
3226 efx->net_dev = net_dev;
Jon Cooper43a37392012-10-18 15:49:54 +01003227 efx->rx_prefix_size = efx->type->rx_prefix_size;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +04003228 efx->rx_ip_align =
3229 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
Jon Cooper43a37392012-10-18 15:49:54 +01003230 efx->rx_packet_hash_offset =
3231 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
Jon Cooperbd9a2652013-11-18 12:54:41 +00003232 efx->rx_packet_ts_offset =
3233 efx->type->rx_ts_offset - efx->type->rx_prefix_size;
Edward Cree42356d92018-03-08 15:45:17 +00003234 INIT_LIST_HEAD(&efx->rss_context.list);
Edward Creee0a65e32018-03-27 17:44:36 +01003235 mutex_init(&efx->rss_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003236 spin_lock_init(&efx->stats_lock);
Edward Cree71827442017-12-18 16:56:19 +00003237 efx->vi_stride = EFX_DEFAULT_VI_STRIDE;
Edward Creec1be4822017-12-21 09:00:26 +00003238 efx->num_mac_stats = MC_CMD_MAC_NSTATS;
3239 BUILD_BUG_ON(MC_CMD_MAC_NSTATS - 1 != MC_CMD_MAC_GENERATION_END);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003240 mutex_init(&efx->mac_lock);
Edward Cree3af0f342018-03-27 17:41:59 +01003241#ifdef CONFIG_RFS_ACCEL
3242 mutex_init(&efx->rps_mutex);
Edward Creef8d62032018-04-24 17:09:30 +01003243 spin_lock_init(&efx->rps_hash_lock);
3244 /* Failure to allocate is not fatal, but may degrade ARFS performance */
3245 efx->rps_hash_table = kcalloc(EFX_ARFS_HASH_TABLE_SIZE,
3246 sizeof(*efx->rps_hash_table), GFP_KERNEL);
Edward Cree3af0f342018-03-27 17:41:59 +01003247#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003248 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00003249 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08003250 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00003251 init_waitqueue_head(&efx->flush_wq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003252
3253 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00003254 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
3255 if (!efx->channel[i])
3256 goto fail;
Ben Hutchingsd8291182012-10-05 23:35:41 +01003257 efx->msi_context[i].efx = efx;
3258 efx->msi_context[i].index = i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003259 }
3260
Ben Hutchings8ceee662008-04-27 12:55:59 +01003261 /* Higher numbered interrupt modes are less capable! */
Andrew Rybchenko6f9f6ec2017-02-13 14:57:39 +00003262 if (WARN_ON_ONCE(efx->type->max_interrupt_mode >
3263 efx->type->min_interrupt_mode)) {
3264 rc = -EIO;
3265 goto fail;
3266 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003267 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
3268 interrupt_mode);
Andrew Rybchenko6f9f6ec2017-02-13 14:57:39 +00003269 efx->interrupt_mode = min(efx->type->min_interrupt_mode,
3270 interrupt_mode);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003271
Ben Hutchings6977dc62008-12-26 13:44:39 -08003272 /* Would be good to use the net_dev name, but we're too early */
3273 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
3274 pci_name(pci_dev));
3275 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003276 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00003277 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01003278
Ben Hutchings8ceee662008-04-27 12:55:59 +01003279 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00003280
3281fail:
3282 efx_fini_struct(efx);
Andrew Rybchenko6f9f6ec2017-02-13 14:57:39 +00003283 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003284}
3285
3286static void efx_fini_struct(struct efx_nic *efx)
3287{
Ben Hutchings8313aca2010-09-10 06:41:57 +00003288 int i;
3289
Edward Creef8d62032018-04-24 17:09:30 +01003290#ifdef CONFIG_RFS_ACCEL
3291 kfree(efx->rps_hash_table);
3292#endif
3293
Ben Hutchings8313aca2010-09-10 06:41:57 +00003294 for (i = 0; i < EFX_MAX_CHANNELS; i++)
3295 kfree(efx->channel[i]);
3296
Ben Hutchingsef215e62013-12-05 20:13:22 +00003297 kfree(efx->vpd_sn);
3298
Ben Hutchings8ceee662008-04-27 12:55:59 +01003299 if (efx->workqueue) {
3300 destroy_workqueue(efx->workqueue);
3301 efx->workqueue = NULL;
3302 }
3303}
3304
Edward Creee4d112e2014-07-15 11:58:12 +01003305void efx_update_sw_stats(struct efx_nic *efx, u64 *stats)
3306{
3307 u64 n_rx_nodesc_trunc = 0;
3308 struct efx_channel *channel;
3309
3310 efx_for_each_channel(channel, efx)
3311 n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc;
3312 stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc;
3313 stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops);
3314}
3315
Edward Creef8d62032018-04-24 17:09:30 +01003316bool efx_filter_spec_equal(const struct efx_filter_spec *left,
3317 const struct efx_filter_spec *right)
3318{
3319 if ((left->match_flags ^ right->match_flags) |
3320 ((left->flags ^ right->flags) &
3321 (EFX_FILTER_FLAG_RX | EFX_FILTER_FLAG_TX)))
3322 return false;
3323
3324 return memcmp(&left->outer_vid, &right->outer_vid,
3325 sizeof(struct efx_filter_spec) -
3326 offsetof(struct efx_filter_spec, outer_vid)) == 0;
3327}
3328
3329u32 efx_filter_spec_hash(const struct efx_filter_spec *spec)
3330{
3331 BUILD_BUG_ON(offsetof(struct efx_filter_spec, outer_vid) & 3);
3332 return jhash2((const u32 *)&spec->outer_vid,
3333 (sizeof(struct efx_filter_spec) -
3334 offsetof(struct efx_filter_spec, outer_vid)) / 4,
3335 0);
3336}
3337
3338#ifdef CONFIG_RFS_ACCEL
3339bool efx_rps_check_rule(struct efx_arfs_rule *rule, unsigned int filter_idx,
3340 bool *force)
3341{
3342 if (rule->filter_id == EFX_ARFS_FILTER_ID_PENDING) {
3343 /* ARFS is currently updating this entry, leave it */
3344 return false;
3345 }
3346 if (rule->filter_id == EFX_ARFS_FILTER_ID_ERROR) {
3347 /* ARFS tried and failed to update this, so it's probably out
3348 * of date. Remove the filter and the ARFS rule entry.
3349 */
3350 rule->filter_id = EFX_ARFS_FILTER_ID_REMOVING;
3351 *force = true;
3352 return true;
3353 } else if (WARN_ON(rule->filter_id != filter_idx)) { /* can't happen */
3354 /* ARFS has moved on, so old filter is not needed. Since we did
3355 * not mark the rule with EFX_ARFS_FILTER_ID_REMOVING, it will
3356 * not be removed by efx_rps_hash_del() subsequently.
3357 */
3358 *force = true;
3359 return true;
3360 }
3361 /* Remove it iff ARFS wants to. */
3362 return true;
3363}
3364
Colin Ian King829eb052018-06-24 11:57:31 +01003365static
Edward Creef8d62032018-04-24 17:09:30 +01003366struct hlist_head *efx_rps_hash_bucket(struct efx_nic *efx,
3367 const struct efx_filter_spec *spec)
3368{
3369 u32 hash = efx_filter_spec_hash(spec);
3370
Lance Roy013ff4a2018-10-04 23:45:41 -07003371 lockdep_assert_held(&efx->rps_hash_lock);
Edward Creef8d62032018-04-24 17:09:30 +01003372 if (!efx->rps_hash_table)
3373 return NULL;
3374 return &efx->rps_hash_table[hash % EFX_ARFS_HASH_TABLE_SIZE];
3375}
3376
3377struct efx_arfs_rule *efx_rps_hash_find(struct efx_nic *efx,
3378 const struct efx_filter_spec *spec)
3379{
3380 struct efx_arfs_rule *rule;
3381 struct hlist_head *head;
3382 struct hlist_node *node;
3383
3384 head = efx_rps_hash_bucket(efx, spec);
3385 if (!head)
3386 return NULL;
3387 hlist_for_each(node, head) {
3388 rule = container_of(node, struct efx_arfs_rule, node);
3389 if (efx_filter_spec_equal(spec, &rule->spec))
3390 return rule;
3391 }
3392 return NULL;
3393}
3394
3395struct efx_arfs_rule *efx_rps_hash_add(struct efx_nic *efx,
3396 const struct efx_filter_spec *spec,
3397 bool *new)
3398{
3399 struct efx_arfs_rule *rule;
3400 struct hlist_head *head;
3401 struct hlist_node *node;
3402
3403 head = efx_rps_hash_bucket(efx, spec);
3404 if (!head)
3405 return NULL;
3406 hlist_for_each(node, head) {
3407 rule = container_of(node, struct efx_arfs_rule, node);
3408 if (efx_filter_spec_equal(spec, &rule->spec)) {
3409 *new = false;
3410 return rule;
3411 }
3412 }
3413 rule = kmalloc(sizeof(*rule), GFP_ATOMIC);
3414 *new = true;
3415 if (rule) {
3416 memcpy(&rule->spec, spec, sizeof(rule->spec));
3417 hlist_add_head(&rule->node, head);
3418 }
3419 return rule;
3420}
3421
3422void efx_rps_hash_del(struct efx_nic *efx, const struct efx_filter_spec *spec)
3423{
3424 struct efx_arfs_rule *rule;
3425 struct hlist_head *head;
3426 struct hlist_node *node;
3427
3428 head = efx_rps_hash_bucket(efx, spec);
3429 if (WARN_ON(!head))
3430 return;
3431 hlist_for_each(node, head) {
3432 rule = container_of(node, struct efx_arfs_rule, node);
3433 if (efx_filter_spec_equal(spec, &rule->spec)) {
3434 /* Someone already reused the entry. We know that if
3435 * this check doesn't fire (i.e. filter_id == REMOVING)
3436 * then the REMOVING mark was put there by our caller,
3437 * because caller is holding a lock on filter table and
3438 * only holders of that lock set REMOVING.
3439 */
3440 if (rule->filter_id != EFX_ARFS_FILTER_ID_REMOVING)
3441 return;
3442 hlist_del(node);
3443 kfree(rule);
3444 return;
3445 }
3446 }
3447 /* We didn't find it. */
3448 WARN_ON(1);
3449}
3450#endif
3451
Edward Cree42356d92018-03-08 15:45:17 +00003452/* RSS contexts. We're using linked lists and crappy O(n) algorithms, because
3453 * (a) this is an infrequent control-plane operation and (b) n is small (max 64)
3454 */
Edward Creee0a65e32018-03-27 17:44:36 +01003455struct efx_rss_context *efx_alloc_rss_context_entry(struct efx_nic *efx)
Edward Cree42356d92018-03-08 15:45:17 +00003456{
Edward Creee0a65e32018-03-27 17:44:36 +01003457 struct list_head *head = &efx->rss_context.list;
Edward Cree42356d92018-03-08 15:45:17 +00003458 struct efx_rss_context *ctx, *new;
3459 u32 id = 1; /* Don't use zero, that refers to the master RSS context */
3460
Edward Creee0a65e32018-03-27 17:44:36 +01003461 WARN_ON(!mutex_is_locked(&efx->rss_lock));
3462
Edward Cree42356d92018-03-08 15:45:17 +00003463 /* Search for first gap in the numbering */
3464 list_for_each_entry(ctx, head, list) {
3465 if (ctx->user_id != id)
3466 break;
3467 id++;
3468 /* Check for wrap. If this happens, we have nearly 2^32
3469 * allocated RSS contexts, which seems unlikely.
3470 */
3471 if (WARN_ON_ONCE(!id))
3472 return NULL;
3473 }
3474
3475 /* Create the new entry */
3476 new = kmalloc(sizeof(struct efx_rss_context), GFP_KERNEL);
3477 if (!new)
3478 return NULL;
3479 new->context_id = EFX_EF10_RSS_CONTEXT_INVALID;
3480 new->rx_hash_udp_4tuple = false;
3481
3482 /* Insert the new entry into the gap */
3483 new->user_id = id;
3484 list_add_tail(&new->list, &ctx->list);
3485 return new;
3486}
3487
Edward Creee0a65e32018-03-27 17:44:36 +01003488struct efx_rss_context *efx_find_rss_context_entry(struct efx_nic *efx, u32 id)
Edward Cree42356d92018-03-08 15:45:17 +00003489{
Edward Creee0a65e32018-03-27 17:44:36 +01003490 struct list_head *head = &efx->rss_context.list;
Edward Cree42356d92018-03-08 15:45:17 +00003491 struct efx_rss_context *ctx;
3492
Edward Creee0a65e32018-03-27 17:44:36 +01003493 WARN_ON(!mutex_is_locked(&efx->rss_lock));
3494
Edward Cree42356d92018-03-08 15:45:17 +00003495 list_for_each_entry(ctx, head, list)
3496 if (ctx->user_id == id)
3497 return ctx;
3498 return NULL;
3499}
3500
3501void efx_free_rss_context_entry(struct efx_rss_context *ctx)
3502{
3503 list_del(&ctx->list);
3504 kfree(ctx);
3505}
3506
Ben Hutchings8ceee662008-04-27 12:55:59 +01003507/**************************************************************************
3508 *
3509 * PCI interface
3510 *
3511 **************************************************************************/
3512
3513/* Main body of final NIC shutdown code
3514 * This is called only at module unload (or hotplug removal).
3515 */
3516static void efx_pci_remove_main(struct efx_nic *efx)
3517{
Ben Hutchings7153f622012-07-27 20:50:52 +01003518 /* Flush reset_work. It can no longer be scheduled since we
3519 * are not READY.
3520 */
3521 BUG_ON(efx->state == STATE_READY);
3522 cancel_work_sync(&efx->reset_work);
3523
Ben Hutchingsd8291182012-10-05 23:35:41 +01003524 efx_disable_interrupts(efx);
Bert Kenwarda83762d2018-04-19 17:37:25 +01003525 efx_clear_interrupt_affinity(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00003526 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003527 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003528 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003529 efx_fini_napi(efx);
3530 efx_remove_all(efx);
3531}
3532
3533/* Final NIC shutdown
Daniel Pieczko2a3fc312015-06-02 11:40:46 +01003534 * This is called only at module unload (or hotplug removal). A PF can call
3535 * this on its VFs to ensure they are unbound first.
Ben Hutchings8ceee662008-04-27 12:55:59 +01003536 */
3537static void efx_pci_remove(struct pci_dev *pci_dev)
3538{
3539 struct efx_nic *efx;
3540
3541 efx = pci_get_drvdata(pci_dev);
3542 if (!efx)
3543 return;
3544
3545 /* Mark the NIC as fini, then stop the interface */
3546 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01003547 efx_dissociate(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003548 dev_close(efx->net_dev);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003549 efx_disable_interrupts(efx);
Edward Creeea6bb992015-06-15 18:27:54 +01003550 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003551 rtnl_unlock();
3552
Shradha Shah7fa8d542015-05-06 00:55:13 +01003553 if (efx->type->sriov_fini)
3554 efx->type->sriov_fini(efx);
3555
Ben Hutchings8ceee662008-04-27 12:55:59 +01003556 efx_unregister_netdev(efx);
3557
Ben Hutchings7dde5962008-12-12 22:09:38 -08003558 efx_mtd_remove(efx);
3559
Ben Hutchings8ceee662008-04-27 12:55:59 +01003560 efx_pci_remove_main(efx);
3561
Ben Hutchings8ceee662008-04-27 12:55:59 +01003562 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003563 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003564
Ben Hutchings8ceee662008-04-27 12:55:59 +01003565 efx_fini_struct(efx);
3566 free_netdev(efx->net_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00003567
3568 pci_disable_pcie_error_reporting(pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003569};
3570
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003571/* NIC VPD information
3572 * Called during probe to display the part number of the
3573 * installed NIC. VPD is potentially very large but this should
3574 * always appear within the first 512 bytes.
3575 */
3576#define SFC_VPD_LEN 512
Ben Hutchingsef215e62013-12-05 20:13:22 +00003577static void efx_probe_vpd_strings(struct efx_nic *efx)
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003578{
3579 struct pci_dev *dev = efx->pci_dev;
3580 char vpd_data[SFC_VPD_LEN];
3581 ssize_t vpd_size;
Ben Hutchingsef215e62013-12-05 20:13:22 +00003582 int ro_start, ro_size, i, j;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003583
3584 /* Get the vpd data from the device */
3585 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
3586 if (vpd_size <= 0) {
3587 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
3588 return;
3589 }
3590
3591 /* Get the Read only section */
Ben Hutchingsef215e62013-12-05 20:13:22 +00003592 ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
3593 if (ro_start < 0) {
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003594 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
3595 return;
3596 }
3597
Ben Hutchingsef215e62013-12-05 20:13:22 +00003598 ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
3599 j = ro_size;
3600 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003601 if (i + j > vpd_size)
3602 j = vpd_size - i;
3603
3604 /* Get the Part number */
3605 i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
3606 if (i < 0) {
3607 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
3608 return;
3609 }
3610
3611 j = pci_vpd_info_field_size(&vpd_data[i]);
3612 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3613 if (i + j > vpd_size) {
3614 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
3615 return;
3616 }
3617
3618 netif_info(efx, drv, efx->net_dev,
3619 "Part Number : %.*s\n", j, &vpd_data[i]);
Ben Hutchingsef215e62013-12-05 20:13:22 +00003620
3621 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
3622 j = ro_size;
3623 i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN");
3624 if (i < 0) {
3625 netif_err(efx, drv, efx->net_dev, "Serial number not found\n");
3626 return;
3627 }
3628
3629 j = pci_vpd_info_field_size(&vpd_data[i]);
3630 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3631 if (i + j > vpd_size) {
3632 netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n");
3633 return;
3634 }
3635
3636 efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL);
3637 if (!efx->vpd_sn)
3638 return;
3639
3640 snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003641}
3642
3643
Ben Hutchings8ceee662008-04-27 12:55:59 +01003644/* Main body of NIC initialisation
3645 * This is called at module load (or hotplug insertion, theoretically).
3646 */
3647static int efx_pci_probe_main(struct efx_nic *efx)
3648{
3649 int rc;
3650
3651 /* Do start-of-day initialisation */
3652 rc = efx_probe_all(efx);
3653 if (rc)
3654 goto fail1;
3655
Ben Hutchingse8f14992010-12-07 19:47:34 +00003656 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003657
Bert Kenward193f2002018-07-11 11:45:10 +01003658 down_write(&efx->filter_sem);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003659 rc = efx->type->init(efx);
Bert Kenward193f2002018-07-11 11:45:10 +01003660 up_write(&efx->filter_sem);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003661 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003662 netif_err(efx, probe, efx->net_dev,
3663 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003664 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003665 }
3666
3667 rc = efx_init_port(efx);
3668 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003669 netif_err(efx, probe, efx->net_dev,
3670 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003671 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003672 }
3673
Ben Hutchings152b6a62009-11-29 03:43:56 +00003674 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003675 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00003676 goto fail5;
Bert Kenwarda83762d2018-04-19 17:37:25 +01003677
3678 efx_set_interrupt_affinity(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01003679 rc = efx_enable_interrupts(efx);
3680 if (rc)
3681 goto fail6;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003682
3683 return 0;
3684
Jon Cooper261e4d92013-04-15 18:51:54 +01003685 fail6:
Bert Kenwarda83762d2018-04-19 17:37:25 +01003686 efx_clear_interrupt_affinity(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01003687 efx_nic_fini_interrupt(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00003688 fail5:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003689 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003690 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003691 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003692 fail3:
3693 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003694 efx_remove_all(efx);
3695 fail1:
3696 return rc;
3697}
3698
Jon Cooper8a531402017-02-08 16:51:18 +00003699static int efx_pci_probe_post_io(struct efx_nic *efx)
3700{
3701 struct net_device *net_dev = efx->net_dev;
3702 int rc = efx_pci_probe_main(efx);
3703
3704 if (rc)
3705 return rc;
3706
3707 if (efx->type->sriov_init) {
3708 rc = efx->type->sriov_init(efx);
3709 if (rc)
3710 netif_err(efx, probe, efx->net_dev,
3711 "SR-IOV can't be enabled rc %d\n", rc);
3712 }
3713
3714 /* Determine netdevice features */
3715 net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
Edward Cree69787292017-10-31 14:29:47 +00003716 NETIF_F_TSO | NETIF_F_RXCSUM | NETIF_F_RXALL);
Jon Cooper8a531402017-02-08 16:51:18 +00003717 if (efx->type->offload_features & (NETIF_F_IPV6_CSUM | NETIF_F_HW_CSUM))
3718 net_dev->features |= NETIF_F_TSO6;
3719 /* Check whether device supports TSO */
3720 if (!efx->type->tso_versions || !efx->type->tso_versions(efx))
3721 net_dev->features &= ~NETIF_F_ALL_TSO;
3722 /* Mask for features that also apply to VLAN devices */
3723 net_dev->vlan_features |= (NETIF_F_HW_CSUM | NETIF_F_SG |
3724 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
3725 NETIF_F_RXCSUM);
3726
Edward Cree69787292017-10-31 14:29:47 +00003727 net_dev->hw_features |= net_dev->features & ~efx->fixed_features;
3728
3729 /* Disable receiving frames with bad FCS, by default. */
3730 net_dev->features &= ~NETIF_F_RXALL;
Jon Cooper8a531402017-02-08 16:51:18 +00003731
3732 /* Disable VLAN filtering by default. It may be enforced if
3733 * the feature is fixed (i.e. VLAN filters are required to
3734 * receive VLAN tagged packets due to vPort restrictions).
3735 */
3736 net_dev->features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
3737 net_dev->features |= efx->fixed_features;
3738
3739 rc = efx_register_netdev(efx);
3740 if (!rc)
3741 return 0;
3742
3743 efx_pci_remove_main(efx);
3744 return rc;
3745}
3746
Ben Hutchings8ceee662008-04-27 12:55:59 +01003747/* NIC initialisation
3748 *
3749 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00003750 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003751 * sets up and registers the network devices with the kernel and hooks
3752 * the interrupt service routine. It does not prepare the device for
3753 * transmission; this is left to the first time one of the network
3754 * interfaces is brought up (i.e. efx_net_open).
3755 */
Bill Pemberton87d1fc12012-12-03 09:23:32 -05003756static int efx_pci_probe(struct pci_dev *pci_dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00003757 const struct pci_device_id *entry)
Ben Hutchings8ceee662008-04-27 12:55:59 +01003758{
Ben Hutchings8ceee662008-04-27 12:55:59 +01003759 struct net_device *net_dev;
3760 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003761 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003762
3763 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00003764 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
3765 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003766 if (!net_dev)
3767 return -ENOMEM;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003768 efx = netdev_priv(net_dev);
3769 efx->type = (const struct efx_nic_type *) entry->driver_data;
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +01003770 efx->fixed_features |= NETIF_F_HIGHDMA;
Andrew Rybchenkoeb7cfd82016-06-15 17:51:36 +01003771
Ben Hutchings8ceee662008-04-27 12:55:59 +01003772 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003773 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003774 rc = efx_init_struct(efx, pci_dev, net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003775 if (rc)
3776 goto fail1;
3777
Ben Hutchings62776d02010-06-23 11:30:07 +00003778 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01003779 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003780
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01003781 if (!efx->type->is_vf)
3782 efx_probe_vpd_strings(efx);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003783
Ben Hutchings8ceee662008-04-27 12:55:59 +01003784 /* Set up basic I/O (BAR mappings etc) */
3785 rc = efx_init_io(efx);
3786 if (rc)
3787 goto fail2;
3788
Jon Cooper8a531402017-02-08 16:51:18 +00003789 rc = efx_pci_probe_post_io(efx);
3790 if (rc) {
3791 /* On failure, retry once immediately.
3792 * If we aborted probe due to a scheduled reset, dismiss it.
3793 */
3794 efx->reset_pending = 0;
3795 rc = efx_pci_probe_post_io(efx);
3796 if (rc) {
3797 /* On another failure, retry once more
3798 * after a 50-305ms delay.
3799 */
3800 unsigned char r;
3801
3802 get_random_bytes(&r, 1);
3803 msleep((unsigned int)r + 50);
3804 efx->reset_pending = 0;
3805 rc = efx_pci_probe_post_io(efx);
3806 }
3807 }
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003808 if (rc)
3809 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08003810
Ben Hutchings62776d02010-06-23 11:30:07 +00003811 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003812
Ben Hutchings7c431612012-01-27 17:23:58 +00003813 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003814 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003815 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003816 rtnl_unlock();
Bert Kenward09a04202015-12-23 08:58:15 +00003817 if (rc && rc != -EPERM)
Ben Hutchings7c431612012-01-27 17:23:58 +00003818 netif_warn(efx, probe, efx->net_dev,
3819 "failed to create MTDs (%d)\n", rc);
3820
Martin Habets05cfee92019-07-08 12:07:11 +01003821 (void)pci_enable_pcie_error_reporting(pci_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00003822
Jon Coopere5fbd972017-02-08 16:52:10 +00003823 if (efx->type->udp_tnl_push_ports)
3824 efx->type->udp_tnl_push_ports(efx);
3825
Ben Hutchings8ceee662008-04-27 12:55:59 +01003826 return 0;
3827
Ben Hutchings8ceee662008-04-27 12:55:59 +01003828 fail3:
3829 efx_fini_io(efx);
3830 fail2:
3831 efx_fini_struct(efx);
3832 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08003833 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00003834 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003835 free_netdev(net_dev);
3836 return rc;
3837}
3838
Shradha Shah834e23d2015-05-06 00:55:58 +01003839/* efx_pci_sriov_configure returns the actual number of Virtual Functions
3840 * enabled on success
3841 */
3842#ifdef CONFIG_SFC_SRIOV
3843static int efx_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
3844{
3845 int rc;
3846 struct efx_nic *efx = pci_get_drvdata(dev);
3847
3848 if (efx->type->sriov_configure) {
3849 rc = efx->type->sriov_configure(efx, num_vfs);
3850 if (rc)
3851 return rc;
3852 else
3853 return num_vfs;
3854 } else
3855 return -EOPNOTSUPP;
3856}
3857#endif
3858
Ben Hutchings89c758f2009-11-29 03:43:07 +00003859static int efx_pm_freeze(struct device *dev)
3860{
Chuhong Yuan3e03a8ba2019-07-24 19:26:58 +08003861 struct efx_nic *efx = dev_get_drvdata(dev);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003862
Ben Hutchings61da0262012-07-27 19:35:39 +01003863 rtnl_lock();
3864
Ben Hutchings6032fb52012-07-27 19:35:47 +01003865 if (efx->state != STATE_DISABLED) {
3866 efx->state = STATE_UNINIT;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003867
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01003868 efx_device_detach_sync(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003869
Ben Hutchings6032fb52012-07-27 19:35:47 +01003870 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003871 efx_disable_interrupts(efx);
Ben Hutchings6032fb52012-07-27 19:35:47 +01003872 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003873
Ben Hutchings61da0262012-07-27 19:35:39 +01003874 rtnl_unlock();
3875
Ben Hutchings89c758f2009-11-29 03:43:07 +00003876 return 0;
3877}
3878
3879static int efx_pm_thaw(struct device *dev)
3880{
Jon Cooper261e4d92013-04-15 18:51:54 +01003881 int rc;
Chuhong Yuan3e03a8ba2019-07-24 19:26:58 +08003882 struct efx_nic *efx = dev_get_drvdata(dev);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003883
Ben Hutchings61da0262012-07-27 19:35:39 +01003884 rtnl_lock();
3885
Ben Hutchings6032fb52012-07-27 19:35:47 +01003886 if (efx->state != STATE_DISABLED) {
Jon Cooper261e4d92013-04-15 18:51:54 +01003887 rc = efx_enable_interrupts(efx);
3888 if (rc)
3889 goto fail;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003890
Ben Hutchings6032fb52012-07-27 19:35:47 +01003891 mutex_lock(&efx->mac_lock);
3892 efx->phy_op->reconfigure(efx);
3893 mutex_unlock(&efx->mac_lock);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003894
Ben Hutchings6032fb52012-07-27 19:35:47 +01003895 efx_start_all(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003896
Peter Dunning9c568fd2017-02-17 15:50:43 +00003897 efx_device_attach_if_not_resetting(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003898
Ben Hutchings6032fb52012-07-27 19:35:47 +01003899 efx->state = STATE_READY;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003900
Ben Hutchings6032fb52012-07-27 19:35:47 +01003901 efx->type->resume_wol(efx);
3902 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003903
Ben Hutchings61da0262012-07-27 19:35:39 +01003904 rtnl_unlock();
3905
Steve Hodgson319ba642010-06-01 11:17:24 +00003906 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
3907 queue_work(reset_workqueue, &efx->reset_work);
3908
Ben Hutchings89c758f2009-11-29 03:43:07 +00003909 return 0;
Jon Cooper261e4d92013-04-15 18:51:54 +01003910
3911fail:
3912 rtnl_unlock();
3913
3914 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003915}
3916
3917static int efx_pm_poweroff(struct device *dev)
3918{
3919 struct pci_dev *pci_dev = to_pci_dev(dev);
3920 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3921
3922 efx->type->fini(efx);
3923
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003924 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003925
3926 pci_save_state(pci_dev);
3927 return pci_set_power_state(pci_dev, PCI_D3hot);
3928}
3929
3930/* Used for both resume and restore */
3931static int efx_pm_resume(struct device *dev)
3932{
3933 struct pci_dev *pci_dev = to_pci_dev(dev);
3934 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3935 int rc;
3936
3937 rc = pci_set_power_state(pci_dev, PCI_D0);
3938 if (rc)
3939 return rc;
3940 pci_restore_state(pci_dev);
3941 rc = pci_enable_device(pci_dev);
3942 if (rc)
3943 return rc;
3944 pci_set_master(efx->pci_dev);
3945 rc = efx->type->reset(efx, RESET_TYPE_ALL);
3946 if (rc)
3947 return rc;
Bert Kenward193f2002018-07-11 11:45:10 +01003948 down_write(&efx->filter_sem);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003949 rc = efx->type->init(efx);
Bert Kenward193f2002018-07-11 11:45:10 +01003950 up_write(&efx->filter_sem);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003951 if (rc)
3952 return rc;
Jon Cooper261e4d92013-04-15 18:51:54 +01003953 rc = efx_pm_thaw(dev);
3954 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003955}
3956
3957static int efx_pm_suspend(struct device *dev)
3958{
3959 int rc;
3960
3961 efx_pm_freeze(dev);
3962 rc = efx_pm_poweroff(dev);
3963 if (rc)
3964 efx_pm_resume(dev);
3965 return rc;
3966}
3967
Ben Hutchings18e83e42012-01-05 19:05:20 +00003968static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00003969 .suspend = efx_pm_suspend,
3970 .resume = efx_pm_resume,
3971 .freeze = efx_pm_freeze,
3972 .thaw = efx_pm_thaw,
3973 .poweroff = efx_pm_poweroff,
3974 .restore = efx_pm_resume,
3975};
3976
Alexandre Rames626950d2013-01-14 17:20:22 +00003977/* A PCI error affecting this device was detected.
3978 * At this point MMIO and DMA may be disabled.
3979 * Stop the software path and request a slot reset.
3980 */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003981static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3982 enum pci_channel_state state)
Alexandre Rames626950d2013-01-14 17:20:22 +00003983{
3984 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3985 struct efx_nic *efx = pci_get_drvdata(pdev);
3986
3987 if (state == pci_channel_io_perm_failure)
3988 return PCI_ERS_RESULT_DISCONNECT;
3989
3990 rtnl_lock();
3991
3992 if (efx->state != STATE_DISABLED) {
3993 efx->state = STATE_RECOVERY;
3994 efx->reset_pending = 0;
3995
3996 efx_device_detach_sync(efx);
3997
3998 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003999 efx_disable_interrupts(efx);
Alexandre Rames626950d2013-01-14 17:20:22 +00004000
4001 status = PCI_ERS_RESULT_NEED_RESET;
4002 } else {
4003 /* If the interface is disabled we don't want to do anything
4004 * with it.
4005 */
4006 status = PCI_ERS_RESULT_RECOVERED;
4007 }
4008
4009 rtnl_unlock();
4010
4011 pci_disable_device(pdev);
4012
4013 return status;
4014}
4015
Joe Perchesdbedd442015-03-06 20:49:12 -08004016/* Fake a successful reset, which will be performed later in efx_io_resume. */
stephen hemmingerdebd0032013-03-16 06:57:51 +00004017static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
Alexandre Rames626950d2013-01-14 17:20:22 +00004018{
4019 struct efx_nic *efx = pci_get_drvdata(pdev);
4020 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
Alexandre Rames626950d2013-01-14 17:20:22 +00004021
4022 if (pci_enable_device(pdev)) {
4023 netif_err(efx, hw, efx->net_dev,
4024 "Cannot re-enable PCI device after reset.\n");
4025 status = PCI_ERS_RESULT_DISCONNECT;
4026 }
4027
Alexandre Rames626950d2013-01-14 17:20:22 +00004028 return status;
4029}
4030
4031/* Perform the actual reset and resume I/O operations. */
4032static void efx_io_resume(struct pci_dev *pdev)
4033{
4034 struct efx_nic *efx = pci_get_drvdata(pdev);
4035 int rc;
4036
4037 rtnl_lock();
4038
4039 if (efx->state == STATE_DISABLED)
4040 goto out;
4041
4042 rc = efx_reset(efx, RESET_TYPE_ALL);
4043 if (rc) {
4044 netif_err(efx, hw, efx->net_dev,
4045 "efx_reset failed after PCI error (%d)\n", rc);
4046 } else {
4047 efx->state = STATE_READY;
4048 netif_dbg(efx, hw, efx->net_dev,
4049 "Done resetting and resuming IO after PCI error.\n");
4050 }
4051
4052out:
4053 rtnl_unlock();
4054}
4055
4056/* For simplicity and reliability, we always require a slot reset and try to
4057 * reset the hardware when a pci error affecting the device is detected.
4058 * We leave both the link_reset and mmio_enabled callback unimplemented:
4059 * with our request for slot reset the mmio_enabled callback will never be
4060 * called, and the link_reset callback is not used by AER or EEH mechanisms.
4061 */
Julia Lawallc300366b2015-11-14 11:06:57 +01004062static const struct pci_error_handlers efx_err_handlers = {
Alexandre Rames626950d2013-01-14 17:20:22 +00004063 .error_detected = efx_io_error_detected,
4064 .slot_reset = efx_io_slot_reset,
4065 .resume = efx_io_resume,
4066};
4067
Ben Hutchings8ceee662008-04-27 12:55:59 +01004068static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00004069 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01004070 .id_table = efx_pci_table,
4071 .probe = efx_pci_probe,
4072 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00004073 .driver.pm = &efx_pm_ops,
Alexandre Rames626950d2013-01-14 17:20:22 +00004074 .err_handler = &efx_err_handlers,
Shradha Shah834e23d2015-05-06 00:55:58 +01004075#ifdef CONFIG_SFC_SRIOV
4076 .sriov_configure = efx_pci_sriov_configure,
4077#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01004078};
4079
4080/**************************************************************************
4081 *
4082 * Kernel module interface
4083 *
4084 *************************************************************************/
4085
4086module_param(interrupt_mode, uint, 0444);
4087MODULE_PARM_DESC(interrupt_mode,
4088 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
4089
4090static int __init efx_init_module(void)
4091{
4092 int rc;
4093
4094 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
4095
4096 rc = register_netdevice_notifier(&efx_netdev_notifier);
4097 if (rc)
4098 goto err_notifier;
4099
Shradha Shah7fa8d542015-05-06 00:55:13 +01004100#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00004101 rc = efx_init_sriov();
4102 if (rc)
4103 goto err_sriov;
Shradha Shah7fa8d542015-05-06 00:55:13 +01004104#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00004105
Steve Hodgson1ab00622008-12-12 21:33:02 -08004106 reset_workqueue = create_singlethread_workqueue("sfc_reset");
4107 if (!reset_workqueue) {
4108 rc = -ENOMEM;
4109 goto err_reset;
4110 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01004111
4112 rc = pci_register_driver(&efx_pci_driver);
4113 if (rc < 0)
4114 goto err_pci;
4115
4116 return 0;
4117
4118 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08004119 destroy_workqueue(reset_workqueue);
4120 err_reset:
Shradha Shah7fa8d542015-05-06 00:55:13 +01004121#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00004122 efx_fini_sriov();
4123 err_sriov:
Shradha Shah7fa8d542015-05-06 00:55:13 +01004124#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01004125 unregister_netdevice_notifier(&efx_netdev_notifier);
4126 err_notifier:
4127 return rc;
4128}
4129
4130static void __exit efx_exit_module(void)
4131{
4132 printk(KERN_INFO "Solarflare NET driver unloading\n");
4133
4134 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08004135 destroy_workqueue(reset_workqueue);
Shradha Shah7fa8d542015-05-06 00:55:13 +01004136#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00004137 efx_fini_sriov();
Shradha Shah7fa8d542015-05-06 00:55:13 +01004138#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01004139 unregister_netdevice_notifier(&efx_netdev_notifier);
4140
4141}
4142
4143module_init(efx_init_module);
4144module_exit(efx_exit_module);
4145
Ben Hutchings906bb262009-11-29 15:16:19 +00004146MODULE_AUTHOR("Solarflare Communications and "
4147 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings6a350fd2014-02-12 19:00:07 +00004148MODULE_DESCRIPTION("Solarflare network driver");
Ben Hutchings8ceee662008-04-27 12:55:59 +01004149MODULE_LICENSE("GPL");
4150MODULE_DEVICE_TABLE(pci, efx_pci_table);
Edward Cree14077e92017-01-03 15:46:00 +00004151MODULE_VERSION(EFX_DRIVER_VERSION);