blob: 334bcc6df6b2ba90a43da4baf7b44cc5ebfa1bac [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01002 * Driver for Solarflare network controllers and boards
Ben Hutchings8ceee662008-04-27 12:55:59 +01003 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01004 * Copyright 2005-2013 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/module.h>
12#include <linux/pci.h>
13#include <linux/netdevice.h>
14#include <linux/etherdevice.h>
15#include <linux/delay.h>
16#include <linux/notifier.h>
17#include <linux/ip.h>
18#include <linux/tcp.h>
19#include <linux/in.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010020#include <linux/ethtool.h>
Ben Hutchingsaa6ef272008-07-18 19:03:10 +010021#include <linux/topology.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
Alexandre Rames626950d2013-01-14 17:20:22 +000023#include <linux/aer.h>
Alexandre Ramesb28405b2013-03-21 16:41:43 +000024#include <linux/interrupt.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010025#include "net_driver.h"
Jon Coopere5fbd972017-02-08 16:52:10 +000026#include <net/gre.h>
27#include <net/udp_tunnel.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010028#include "efx.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000029#include "nic.h"
Ben Hutchingsdd407812012-02-28 23:40:21 +000030#include "selftest.h"
Shradha Shah7fa8d542015-05-06 00:55:13 +010031#include "sriov.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010032
Ben Hutchings8880f4e2009-11-29 15:15:41 +000033#include "mcdi.h"
Jon Coopere5fbd972017-02-08 16:52:10 +000034#include "mcdi_pcol.h"
Steve Hodgsonfd371e32010-06-01 11:17:51 +000035#include "workarounds.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000036
Ben Hutchingsc4593022009-11-23 16:08:17 +000037/**************************************************************************
38 *
39 * Type name strings
40 *
41 **************************************************************************
42 */
43
44/* Loopback mode names (see LOOPBACK_MODE()) */
45const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000046const char *const efx_loopback_mode_names[] = {
Ben Hutchingsc4593022009-11-23 16:08:17 +000047 [LOOPBACK_NONE] = "NONE",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000048 [LOOPBACK_DATA] = "DATAPATH",
Ben Hutchingsc4593022009-11-23 16:08:17 +000049 [LOOPBACK_GMAC] = "GMAC",
50 [LOOPBACK_XGMII] = "XGMII",
51 [LOOPBACK_XGXS] = "XGXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000052 [LOOPBACK_XAUI] = "XAUI",
53 [LOOPBACK_GMII] = "GMII",
54 [LOOPBACK_SGMII] = "SGMII",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000055 [LOOPBACK_XGBR] = "XGBR",
56 [LOOPBACK_XFI] = "XFI",
57 [LOOPBACK_XAUI_FAR] = "XAUI_FAR",
58 [LOOPBACK_GMII_FAR] = "GMII_FAR",
59 [LOOPBACK_SGMII_FAR] = "SGMII_FAR",
60 [LOOPBACK_XFI_FAR] = "XFI_FAR",
Ben Hutchingsc4593022009-11-23 16:08:17 +000061 [LOOPBACK_GPHY] = "GPHY",
62 [LOOPBACK_PHYXS] = "PHYXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000063 [LOOPBACK_PCS] = "PCS",
64 [LOOPBACK_PMAPMD] = "PMA/PMD",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000065 [LOOPBACK_XPORT] = "XPORT",
66 [LOOPBACK_XGMII_WS] = "XGMII_WS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000067 [LOOPBACK_XAUI_WS] = "XAUI_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000068 [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR",
69 [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000070 [LOOPBACK_GMII_WS] = "GMII_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000071 [LOOPBACK_XFI_WS] = "XFI_WS",
72 [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000073 [LOOPBACK_PHYXS_WS] = "PHYXS_WS",
Ben Hutchingsc4593022009-11-23 16:08:17 +000074};
75
Ben Hutchingsc4593022009-11-23 16:08:17 +000076const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000077const char *const efx_reset_type_names[] = {
Alexandre Rames626950d2013-01-14 17:20:22 +000078 [RESET_TYPE_INVISIBLE] = "INVISIBLE",
79 [RESET_TYPE_ALL] = "ALL",
80 [RESET_TYPE_RECOVER_OR_ALL] = "RECOVER_OR_ALL",
81 [RESET_TYPE_WORLD] = "WORLD",
82 [RESET_TYPE_RECOVER_OR_DISABLE] = "RECOVER_OR_DISABLE",
Jon Cooper087e9022015-05-20 11:11:35 +010083 [RESET_TYPE_DATAPATH] = "DATAPATH",
Edward Creee2835462014-04-16 19:27:48 +010084 [RESET_TYPE_MC_BIST] = "MC_BIST",
Alexandre Rames626950d2013-01-14 17:20:22 +000085 [RESET_TYPE_DISABLE] = "DISABLE",
86 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
87 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
Alexandre Rames3de82b92013-06-13 11:36:15 +010088 [RESET_TYPE_DMA_ERROR] = "DMA_ERROR",
Alexandre Rames626950d2013-01-14 17:20:22 +000089 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
90 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
Edward Creee2835462014-04-16 19:27:48 +010091 [RESET_TYPE_MCDI_TIMEOUT] = "MCDI_TIMEOUT (FLR)",
Ben Hutchingsc4593022009-11-23 16:08:17 +000092};
93
Jon Coopere5fbd972017-02-08 16:52:10 +000094/* UDP tunnel type names */
95static const char *const efx_udp_tunnel_type_names[] = {
96 [TUNNEL_ENCAP_UDP_PORT_ENTRY_VXLAN] = "vxlan",
97 [TUNNEL_ENCAP_UDP_PORT_ENTRY_GENEVE] = "geneve",
98};
99
100void efx_get_udp_tunnel_type_name(u16 type, char *buf, size_t buflen)
101{
102 if (type < ARRAY_SIZE(efx_udp_tunnel_type_names) &&
103 efx_udp_tunnel_type_names[type] != NULL)
104 snprintf(buf, buflen, "%s", efx_udp_tunnel_type_names[type]);
105 else
106 snprintf(buf, buflen, "type %d", type);
107}
108
Steve Hodgson1ab00622008-12-12 21:33:02 -0800109/* Reset workqueue. If any NIC has a hardware failure then a reset will be
110 * queued onto this work queue. This is not a per-nic work queue, because
111 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
112 */
113static struct workqueue_struct *reset_workqueue;
114
Jon Cooper74cd60a2013-09-16 14:18:51 +0100115/* How often and how many times to poll for a reset while waiting for a
116 * BIST that another function started to complete.
117 */
118#define BIST_WAIT_DELAY_MS 100
119#define BIST_WAIT_DELAY_COUNT 100
120
Ben Hutchings8ceee662008-04-27 12:55:59 +0100121/**************************************************************************
122 *
123 * Configurable values
124 *
125 *************************************************************************/
126
127/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100128 * Use separate channels for TX and RX events
129 *
Neil Turton28b581a2008-12-12 21:41:06 -0800130 * Set this to 1 to use separate channels for TX and RX. It allows us
131 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100132 *
Neil Turton28b581a2008-12-12 21:41:06 -0800133 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100134 */
Shradha Shahb0fbdae2015-08-28 10:55:42 +0100135bool efx_separate_tx_channels;
136module_param(efx_separate_tx_channels, bool, 0444);
137MODULE_PARM_DESC(efx_separate_tx_channels,
Neil Turton28b581a2008-12-12 21:41:06 -0800138 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100139
140/* This is the weight assigned to each of the (per-channel) virtual
141 * NAPI devices.
142 */
143static int napi_weight = 64;
144
145/* This is the time (in jiffies) between invocations of the hardware
Alexandre Rames626950d2013-01-14 17:20:22 +0000146 * monitor.
147 * On Falcon-based NICs, this will:
Ben Hutchingse254c272010-09-20 08:44:10 +0000148 * - Check the on-board hardware monitor;
149 * - Poll the link state and reconfigure the hardware as necessary.
Alexandre Rames626950d2013-01-14 17:20:22 +0000150 * On Siena-based NICs for power systems with EEH support, this will give EEH a
151 * chance to start.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100152 */
stephen hemmingerd2156972010-10-18 05:27:31 +0000153static unsigned int efx_monitor_interval = 1 * HZ;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100154
Ben Hutchings8ceee662008-04-27 12:55:59 +0100155/* Initial interrupt moderation settings. They can be modified after
156 * module load with ethtool.
157 *
158 * The default for RX should strike a balance between increasing the
159 * round-trip latency and reducing overhead.
160 */
161static unsigned int rx_irq_mod_usec = 60;
162
163/* Initial interrupt moderation settings. They can be modified after
164 * module load with ethtool.
165 *
166 * This default is chosen to ensure that a 10G link does not go idle
167 * while a TX queue is stopped after it has become full. A queue is
168 * restarted when it drops below half full. The time this takes (assuming
169 * worst case 3 descriptors per packet and 1024 descriptors) is
170 * 512 / 3 * 1.2 = 205 usec.
171 */
172static unsigned int tx_irq_mod_usec = 150;
173
174/* This is the first interrupt mode to try out of:
175 * 0 => MSI-X
176 * 1 => MSI
177 * 2 => legacy
178 */
179static unsigned int interrupt_mode;
180
181/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
182 * i.e. the number of CPUs among which we may distribute simultaneous
183 * interrupt handling.
184 *
185 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
Ben Hutchingscdb08f82011-12-20 01:08:05 +0000186 * The default (0) means to assign an interrupt to each core.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100187 */
188static unsigned int rss_cpus;
189module_param(rss_cpus, uint, 0444);
190MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
191
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000192static bool phy_flash_cfg;
193module_param(phy_flash_cfg, bool, 0644);
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800194MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
195
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000196static unsigned irq_adapt_low_thresh = 8000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000197module_param(irq_adapt_low_thresh, uint, 0644);
198MODULE_PARM_DESC(irq_adapt_low_thresh,
199 "Threshold score for reducing IRQ moderation");
200
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000201static unsigned irq_adapt_high_thresh = 16000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000202module_param(irq_adapt_high_thresh, uint, 0644);
203MODULE_PARM_DESC(irq_adapt_high_thresh,
204 "Threshold score for increasing IRQ moderation");
205
Ben Hutchings62776d02010-06-23 11:30:07 +0000206static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
207 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
208 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
209 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
210module_param(debug, uint, 0);
211MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
212
Ben Hutchings8ceee662008-04-27 12:55:59 +0100213/**************************************************************************
214 *
215 * Utility functions and prototypes
216 *
217 *************************************************************************/
Ben Hutchings46426102010-09-10 06:42:33 +0000218
Jon Cooper261e4d92013-04-15 18:51:54 +0100219static int efx_soft_enable_interrupts(struct efx_nic *efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100220static void efx_soft_disable_interrupts(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000221static void efx_remove_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000222static void efx_remove_channels(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000223static const struct efx_channel_type efx_default_channel_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100224static void efx_remove_port(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000225static void efx_init_napi_channel(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100226static void efx_fini_napi(struct efx_nic *efx);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000227static void efx_fini_napi_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000228static void efx_fini_struct(struct efx_nic *efx);
229static void efx_start_all(struct efx_nic *efx);
230static void efx_stop_all(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100231
232#define EFX_ASSERT_RESET_SERIALISED(efx) \
233 do { \
Ben Hutchingsf16aeea2012-07-27 19:31:16 +0100234 if ((efx->state == STATE_READY) || \
Alexandre Rames626950d2013-01-14 17:20:22 +0000235 (efx->state == STATE_RECOVERY) || \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000236 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100237 ASSERT_RTNL(); \
238 } while (0)
239
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100240static int efx_check_disabled(struct efx_nic *efx)
241{
Alexandre Rames626950d2013-01-14 17:20:22 +0000242 if (efx->state == STATE_DISABLED || efx->state == STATE_RECOVERY) {
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100243 netif_err(efx, drv, efx->net_dev,
244 "device is disabled due to earlier errors\n");
245 return -EIO;
246 }
247 return 0;
248}
249
Ben Hutchings8ceee662008-04-27 12:55:59 +0100250/**************************************************************************
251 *
252 * Event queue processing
253 *
254 *************************************************************************/
255
256/* Process channel's event queue
257 *
258 * This function is responsible for processing the event queue of a
259 * single channel. The caller must guarantee that this function will
260 * never be concurrently called more than once on the same channel,
261 * though different channels may be being processed concurrently.
262 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000263static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100264{
Peter Dunningc9368352015-07-08 10:05:10 +0100265 struct efx_tx_queue *tx_queue;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000266 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100267
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000268 if (unlikely(!channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100269 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100270
Peter Dunningc9368352015-07-08 10:05:10 +0100271 efx_for_each_channel_tx_queue(tx_queue, channel) {
272 tx_queue->pkts_compl = 0;
273 tx_queue->bytes_compl = 0;
274 }
275
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000276 spent = efx_nic_process_eventq(channel, budget);
Ben Hutchingsd9ab7002012-02-13 23:29:16 +0000277 if (spent && efx_channel_has_rx_queue(channel)) {
278 struct efx_rx_queue *rx_queue =
279 efx_channel_get_rx_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100280
Ben Hutchingsff734ef2013-01-29 23:33:14 +0000281 efx_rx_flush_packet(channel);
Jon Coopercce28792013-10-02 11:04:14 +0100282 efx_fast_push_rx_descriptors(rx_queue, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100283 }
284
Peter Dunningc9368352015-07-08 10:05:10 +0100285 /* Update BQL */
286 efx_for_each_channel_tx_queue(tx_queue, channel) {
287 if (tx_queue->bytes_compl) {
288 netdev_tx_completed_queue(tx_queue->core_txq,
289 tx_queue->pkts_compl, tx_queue->bytes_compl);
290 }
291 }
292
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000293 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100294}
295
Ben Hutchings8ceee662008-04-27 12:55:59 +0100296/* NAPI poll handler
297 *
298 * NAPI guarantees serialisation of polls of the same device, which
299 * provides the guarantee required by efx_process_channel().
300 */
Bert Kenward539de7c2016-08-11 13:02:09 +0100301static void efx_update_irq_mod(struct efx_nic *efx, struct efx_channel *channel)
302{
303 int step = efx->irq_mod_step_us;
304
305 if (channel->irq_mod_score < irq_adapt_low_thresh) {
306 if (channel->irq_moderation_us > step) {
307 channel->irq_moderation_us -= step;
308 efx->type->push_irq_moderation(channel);
309 }
310 } else if (channel->irq_mod_score > irq_adapt_high_thresh) {
311 if (channel->irq_moderation_us <
312 efx->irq_rx_moderation_us) {
313 channel->irq_moderation_us += step;
314 efx->type->push_irq_moderation(channel);
315 }
316 }
317
318 channel->irq_count = 0;
319 channel->irq_mod_score = 0;
320}
321
Ben Hutchings8ceee662008-04-27 12:55:59 +0100322static int efx_poll(struct napi_struct *napi, int budget)
323{
324 struct efx_channel *channel =
325 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000326 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000327 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100328
Ben Hutchings62776d02010-06-23 11:30:07 +0000329 netif_vdbg(efx, intr, efx->net_dev,
330 "channel %d NAPI poll executing on CPU %d\n",
331 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100332
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000333 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100334
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000335 if (spent < budget) {
Ben Hutchings9d9a6972012-02-10 23:01:48 +0000336 if (efx_channel_has_rx_queue(channel) &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000337 efx->irq_rx_adaptive &&
338 unlikely(++channel->irq_count == 1000)) {
Bert Kenward539de7c2016-08-11 13:02:09 +0100339 efx_update_irq_mod(efx, channel);
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000340 }
341
Ben Hutchings64d8ad62011-01-05 00:50:41 +0000342 efx_filter_rfs_expire(channel);
343
Ben Hutchings8ceee662008-04-27 12:55:59 +0100344 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800345 * only wait for napi_complete(), this isn't a problem
Ben Hutchings514bedb2012-10-05 19:30:16 +0100346 * since efx_nic_eventq_read_ack() will have no effect if
Ben Hutchings8ceee662008-04-27 12:55:59 +0100347 * interrupts have already been disabled.
348 */
Bert Kenwardf820c0a2017-02-06 16:50:55 +0000349 if (napi_complete_done(napi, spent))
350 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100351 }
352
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000353 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100354}
355
Ben Hutchings8ceee662008-04-27 12:55:59 +0100356/* Create event queue
357 * Event queue memory allocations are done only once. If the channel
358 * is reset, the memory buffer will be reused; this guards against
359 * errors during channel reset and also simplifies interrupt handling.
360 */
361static int efx_probe_eventq(struct efx_channel *channel)
362{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000363 struct efx_nic *efx = channel->efx;
364 unsigned long entries;
365
Ben Hutchings86ee5302012-01-09 19:51:22 +0000366 netif_dbg(efx, probe, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000367 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100368
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000369 /* Build an event queue with room for one event per tx and rx buffer,
370 * plus some extra for link state events and MCDI completions. */
371 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
Edward Creee01b16a2016-12-02 15:51:33 +0000372 EFX_WARN_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000373 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
374
Ben Hutchings152b6a62009-11-29 03:43:56 +0000375 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100376}
377
378/* Prepare channel's event queue */
Jon Cooper261e4d92013-04-15 18:51:54 +0100379static int efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100380{
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100381 struct efx_nic *efx = channel->efx;
Jon Cooper261e4d92013-04-15 18:51:54 +0100382 int rc;
383
384 EFX_WARN_ON_PARANOID(channel->eventq_init);
385
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100386 netif_dbg(efx, drv, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000387 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100388
Jon Cooper261e4d92013-04-15 18:51:54 +0100389 rc = efx_nic_init_eventq(channel);
390 if (rc == 0) {
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100391 efx->type->push_irq_moderation(channel);
Jon Cooper261e4d92013-04-15 18:51:54 +0100392 channel->eventq_read_ptr = 0;
393 channel->eventq_init = true;
394 }
395 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100396}
397
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000398/* Enable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100399void efx_start_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000400{
401 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
402 "chan %d start event queue\n", channel->channel);
403
Ben Hutchings514bedb2012-10-05 19:30:16 +0100404 /* Make sure the NAPI handler sees the enabled flag set */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000405 channel->enabled = true;
406 smp_wmb();
407
408 napi_enable(&channel->napi_str);
409 efx_nic_eventq_read_ack(channel);
410}
411
412/* Disable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100413void efx_stop_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000414{
415 if (!channel->enabled)
416 return;
417
418 napi_disable(&channel->napi_str);
419 channel->enabled = false;
420}
421
Ben Hutchings8ceee662008-04-27 12:55:59 +0100422static void efx_fini_eventq(struct efx_channel *channel)
423{
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100424 if (!channel->eventq_init)
425 return;
426
Ben Hutchings62776d02010-06-23 11:30:07 +0000427 netif_dbg(channel->efx, drv, channel->efx->net_dev,
428 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100429
Ben Hutchings152b6a62009-11-29 03:43:56 +0000430 efx_nic_fini_eventq(channel);
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100431 channel->eventq_init = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100432}
433
434static void efx_remove_eventq(struct efx_channel *channel)
435{
Ben Hutchings62776d02010-06-23 11:30:07 +0000436 netif_dbg(channel->efx, drv, channel->efx->net_dev,
437 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100438
Ben Hutchings152b6a62009-11-29 03:43:56 +0000439 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100440}
441
442/**************************************************************************
443 *
444 * Channel handling
445 *
446 *************************************************************************/
447
Ben Hutchings7f967c02012-02-13 23:45:02 +0000448/* Allocate and initialise a channel structure. */
Ben Hutchings46426102010-09-10 06:42:33 +0000449static struct efx_channel *
450efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
451{
452 struct efx_channel *channel;
453 struct efx_rx_queue *rx_queue;
454 struct efx_tx_queue *tx_queue;
455 int j;
456
Ben Hutchings7f967c02012-02-13 23:45:02 +0000457 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
458 if (!channel)
459 return NULL;
Ben Hutchings46426102010-09-10 06:42:33 +0000460
Ben Hutchings7f967c02012-02-13 23:45:02 +0000461 channel->efx = efx;
462 channel->channel = i;
463 channel->type = &efx_default_channel_type;
Ben Hutchings46426102010-09-10 06:42:33 +0000464
Ben Hutchings7f967c02012-02-13 23:45:02 +0000465 for (j = 0; j < EFX_TXQ_TYPES; j++) {
466 tx_queue = &channel->tx_queue[j];
467 tx_queue->efx = efx;
468 tx_queue->queue = i * EFX_TXQ_TYPES + j;
469 tx_queue->channel = channel;
Ben Hutchings46426102010-09-10 06:42:33 +0000470 }
471
Ben Hutchings46426102010-09-10 06:42:33 +0000472 rx_queue = &channel->rx_queue;
473 rx_queue->efx = efx;
474 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
475 (unsigned long)rx_queue);
476
477 return channel;
478}
479
Ben Hutchings7f967c02012-02-13 23:45:02 +0000480/* Allocate and initialise a channel structure, copying parameters
481 * (but not resources) from an old channel structure.
482 */
483static struct efx_channel *
484efx_copy_channel(const struct efx_channel *old_channel)
485{
486 struct efx_channel *channel;
487 struct efx_rx_queue *rx_queue;
488 struct efx_tx_queue *tx_queue;
489 int j;
490
491 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
492 if (!channel)
493 return NULL;
494
495 *channel = *old_channel;
496
497 channel->napi_dev = NULL;
Bert Kenward46d054f2016-11-11 15:56:51 +0000498 INIT_HLIST_NODE(&channel->napi_str.napi_hash_node);
499 channel->napi_str.napi_id = 0;
500 channel->napi_str.state = 0;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000501 memset(&channel->eventq, 0, sizeof(channel->eventq));
502
503 for (j = 0; j < EFX_TXQ_TYPES; j++) {
504 tx_queue = &channel->tx_queue[j];
505 if (tx_queue->channel)
506 tx_queue->channel = channel;
507 tx_queue->buffer = NULL;
508 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
509 }
510
511 rx_queue = &channel->rx_queue;
512 rx_queue->buffer = NULL;
513 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
514 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
515 (unsigned long)rx_queue);
516
517 return channel;
518}
519
Ben Hutchings8ceee662008-04-27 12:55:59 +0100520static int efx_probe_channel(struct efx_channel *channel)
521{
522 struct efx_tx_queue *tx_queue;
523 struct efx_rx_queue *rx_queue;
524 int rc;
525
Ben Hutchings62776d02010-06-23 11:30:07 +0000526 netif_dbg(channel->efx, probe, channel->efx->net_dev,
527 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100528
Ben Hutchings7f967c02012-02-13 23:45:02 +0000529 rc = channel->type->pre_probe(channel);
530 if (rc)
531 goto fail;
532
Ben Hutchings8ceee662008-04-27 12:55:59 +0100533 rc = efx_probe_eventq(channel);
534 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000535 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100536
537 efx_for_each_channel_tx_queue(tx_queue, channel) {
538 rc = efx_probe_tx_queue(tx_queue);
539 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000540 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100541 }
542
543 efx_for_each_channel_rx_queue(rx_queue, channel) {
544 rc = efx_probe_rx_queue(rx_queue);
545 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000546 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100547 }
548
Ben Hutchings8ceee662008-04-27 12:55:59 +0100549 return 0;
550
Ben Hutchings7f967c02012-02-13 23:45:02 +0000551fail:
552 efx_remove_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100553 return rc;
554}
555
Ben Hutchings7f967c02012-02-13 23:45:02 +0000556static void
557efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
558{
559 struct efx_nic *efx = channel->efx;
560 const char *type;
561 int number;
562
563 number = channel->channel;
564 if (efx->tx_channel_offset == 0) {
565 type = "";
566 } else if (channel->channel < efx->tx_channel_offset) {
567 type = "-rx";
568 } else {
569 type = "-tx";
570 number -= efx->tx_channel_offset;
571 }
572 snprintf(buf, len, "%s%s-%d", efx->name, type, number);
573}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100574
Ben Hutchings56536e92008-12-12 21:37:02 -0800575static void efx_set_channel_names(struct efx_nic *efx)
576{
577 struct efx_channel *channel;
Ben Hutchings56536e92008-12-12 21:37:02 -0800578
Ben Hutchings7f967c02012-02-13 23:45:02 +0000579 efx_for_each_channel(channel, efx)
580 channel->type->get_name(channel,
Ben Hutchingsd8291182012-10-05 23:35:41 +0100581 efx->msi_context[channel->channel].name,
582 sizeof(efx->msi_context[0].name));
Ben Hutchings56536e92008-12-12 21:37:02 -0800583}
584
Ben Hutchings46426102010-09-10 06:42:33 +0000585static int efx_probe_channels(struct efx_nic *efx)
586{
587 struct efx_channel *channel;
588 int rc;
589
590 /* Restart special buffer allocation */
591 efx->next_buffer_table = 0;
592
Ben Hutchingsc92aaff2012-02-21 23:22:00 +0000593 /* Probe channels in reverse, so that any 'extra' channels
594 * use the start of the buffer table. This allows the traffic
595 * channels to be resized without moving them or wasting the
596 * entries before them.
597 */
598 efx_for_each_channel_rev(channel, efx) {
Ben Hutchings46426102010-09-10 06:42:33 +0000599 rc = efx_probe_channel(channel);
600 if (rc) {
601 netif_err(efx, probe, efx->net_dev,
602 "failed to create channel %d\n",
603 channel->channel);
604 goto fail;
605 }
606 }
607 efx_set_channel_names(efx);
608
609 return 0;
610
611fail:
612 efx_remove_channels(efx);
613 return rc;
614}
615
Ben Hutchings8ceee662008-04-27 12:55:59 +0100616/* Channels are shutdown and reinitialised whilst the NIC is running
617 * to propagate configuration changes (mtu, checksum offload), or
618 * to clear hardware error conditions
619 */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000620static void efx_start_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100621{
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100622 netdev_features_t old_features = efx->net_dev->features;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000623 bool old_rx_scatter = efx->rx_scatter;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100624 struct efx_tx_queue *tx_queue;
625 struct efx_rx_queue *rx_queue;
626 struct efx_channel *channel;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000627 size_t rx_buf_len;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100628
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100629 /* Calculate the rx buffer allocation parameters required to
630 * support the current MTU, including padding for header
631 * alignment and overruns.
632 */
Jon Cooper43a37392012-10-18 15:49:54 +0100633 efx->rx_dma_len = (efx->rx_prefix_size +
Ben Hutchings272baee2013-01-29 23:33:14 +0000634 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
635 efx->type->rx_buffer_padding);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000636 rx_buf_len = (sizeof(struct efx_rx_page_state) +
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400637 efx->rx_ip_align + efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000638 if (rx_buf_len <= PAGE_SIZE) {
Jon Coopere8c68c02013-03-08 10:18:28 +0000639 efx->rx_scatter = efx->type->always_rx_scatter;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000640 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000641 } else if (efx->type->can_rx_scatter) {
Ben Hutchings950c54d2013-05-13 12:01:22 +0000642 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000643 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
Ben Hutchings950c54d2013-05-13 12:01:22 +0000644 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
645 EFX_RX_BUF_ALIGNMENT) >
646 PAGE_SIZE);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000647 efx->rx_scatter = true;
648 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
649 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000650 } else {
651 efx->rx_scatter = false;
652 efx->rx_buffer_order = get_order(rx_buf_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000653 }
654
Daniel Pieczko1648a232013-02-13 10:54:41 +0000655 efx_rx_config_page_split(efx);
656 if (efx->rx_buffer_order)
657 netif_dbg(efx, drv, efx->net_dev,
658 "RX buf len=%u; page order=%u batch=%u\n",
659 efx->rx_dma_len, efx->rx_buffer_order,
660 efx->rx_pages_per_batch);
661 else
662 netif_dbg(efx, drv, efx->net_dev,
663 "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
664 efx->rx_dma_len, efx->rx_page_buf_step,
665 efx->rx_bufs_per_page, efx->rx_pages_per_batch);
Daniel Pieczko27689352013-02-13 10:54:41 +0000666
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100667 /* Restore previously fixed features in hw_features and remove
668 * features which are fixed now
669 */
670 efx->net_dev->hw_features |= efx->net_dev->features;
671 efx->net_dev->hw_features &= ~efx->fixed_features;
672 efx->net_dev->features |= efx->fixed_features;
673 if (efx->net_dev->features != old_features)
674 netdev_features_change(efx->net_dev);
675
Jon Coopere8c68c02013-03-08 10:18:28 +0000676 /* RX filters may also have scatter-enabled flags */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000677 if (efx->rx_scatter != old_rx_scatter)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000678 efx->type->filter_update_rx_scatter(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100679
Ben Hutchings14bf7182012-05-22 01:27:58 +0100680 /* We must keep at least one descriptor in a TX ring empty.
681 * We could avoid this when the queue size does not exactly
682 * match the hardware ring size, but it's not that important.
683 * Therefore we stop the queue when one more skb might fill
684 * the ring completely. We wake it when half way back to
685 * empty.
686 */
687 efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
688 efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
689
Ben Hutchings8ceee662008-04-27 12:55:59 +0100690 /* Initialise the channels */
691 efx_for_each_channel(channel, efx) {
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100692 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100693 efx_init_tx_queue(tx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100694 atomic_inc(&efx->active_queues);
695 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100696
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000697 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100698 efx_init_rx_queue(rx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100699 atomic_inc(&efx->active_queues);
Jon Coopercce28792013-10-02 11:04:14 +0100700 efx_stop_eventq(channel);
701 efx_fast_push_rx_descriptors(rx_queue, false);
702 efx_start_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000703 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100704
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000705 WARN_ON(channel->rx_pkt_n_frags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100706 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000707
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000708 efx_ptp_start_datapath(efx);
709
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000710 if (netif_device_present(efx->net_dev))
711 netif_tx_wake_all_queues(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100712}
713
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000714static void efx_stop_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100715{
716 struct efx_channel *channel;
717 struct efx_tx_queue *tx_queue;
718 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100719 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100720
721 EFX_ASSERT_RESET_SERIALISED(efx);
722 BUG_ON(efx->port_enabled);
723
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000724 efx_ptp_stop_datapath(efx);
725
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100726 /* Stop RX refill */
727 efx_for_each_channel(channel, efx) {
728 efx_for_each_channel_rx_queue(rx_queue, channel)
729 rx_queue->refill_enabled = false;
730 }
731
Ben Hutchings8ceee662008-04-27 12:55:59 +0100732 efx_for_each_channel(channel, efx) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000733 /* RX packet processing is pipelined, so wait for the
734 * NAPI handler to complete. At least event queue 0
735 * might be kept active by non-data events, so don't
736 * use napi_synchronize() but actually disable NAPI
737 * temporarily.
738 */
739 if (efx_channel_has_rx_queue(channel)) {
740 efx_stop_eventq(channel);
741 efx_start_eventq(channel);
742 }
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100743 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100744
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100745 rc = efx->type->fini_dmaq(efx);
Edward Cree5a6681e2016-11-28 18:55:34 +0000746 if (rc) {
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100747 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
748 } else {
749 netif_dbg(efx, drv, efx->net_dev,
750 "successfully flushed all queues\n");
751 }
752
753 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100754 efx_for_each_channel_rx_queue(rx_queue, channel)
755 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000756 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100757 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100758 }
759}
760
761static void efx_remove_channel(struct efx_channel *channel)
762{
763 struct efx_tx_queue *tx_queue;
764 struct efx_rx_queue *rx_queue;
765
Ben Hutchings62776d02010-06-23 11:30:07 +0000766 netif_dbg(channel->efx, drv, channel->efx->net_dev,
767 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100768
769 efx_for_each_channel_rx_queue(rx_queue, channel)
770 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000771 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100772 efx_remove_tx_queue(tx_queue);
773 efx_remove_eventq(channel);
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100774 channel->type->post_remove(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100775}
776
Ben Hutchings46426102010-09-10 06:42:33 +0000777static void efx_remove_channels(struct efx_nic *efx)
778{
779 struct efx_channel *channel;
780
781 efx_for_each_channel(channel, efx)
782 efx_remove_channel(channel);
783}
784
785int
786efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
787{
788 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
789 u32 old_rxq_entries, old_txq_entries;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000790 unsigned i, next_buffer_table = 0;
Jon Cooper261e4d92013-04-15 18:51:54 +0100791 int rc, rc2;
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100792
793 rc = efx_check_disabled(efx);
794 if (rc)
795 return rc;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000796
797 /* Not all channels should be reallocated. We must avoid
798 * reallocating their buffer table entries.
799 */
800 efx_for_each_channel(channel, efx) {
801 struct efx_rx_queue *rx_queue;
802 struct efx_tx_queue *tx_queue;
803
804 if (channel->type->copy)
805 continue;
806 next_buffer_table = max(next_buffer_table,
807 channel->eventq.index +
808 channel->eventq.entries);
809 efx_for_each_channel_rx_queue(rx_queue, channel)
810 next_buffer_table = max(next_buffer_table,
811 rx_queue->rxd.index +
812 rx_queue->rxd.entries);
813 efx_for_each_channel_tx_queue(tx_queue, channel)
814 next_buffer_table = max(next_buffer_table,
815 tx_queue->txd.index +
816 tx_queue->txd.entries);
817 }
Ben Hutchings46426102010-09-10 06:42:33 +0000818
Ben Hutchings29c69a42013-01-28 19:01:06 +0000819 efx_device_detach_sync(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000820 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100821 efx_soft_disable_interrupts(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000822
Ben Hutchings7f967c02012-02-13 23:45:02 +0000823 /* Clone channels (where possible) */
Ben Hutchings46426102010-09-10 06:42:33 +0000824 memset(other_channel, 0, sizeof(other_channel));
825 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000826 channel = efx->channel[i];
827 if (channel->type->copy)
828 channel = channel->type->copy(channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000829 if (!channel) {
830 rc = -ENOMEM;
831 goto out;
832 }
833 other_channel[i] = channel;
834 }
835
836 /* Swap entry counts and channel pointers */
837 old_rxq_entries = efx->rxq_entries;
838 old_txq_entries = efx->txq_entries;
839 efx->rxq_entries = rxq_entries;
840 efx->txq_entries = txq_entries;
841 for (i = 0; i < efx->n_channels; i++) {
842 channel = efx->channel[i];
843 efx->channel[i] = other_channel[i];
844 other_channel[i] = channel;
845 }
846
Ben Hutchings7f967c02012-02-13 23:45:02 +0000847 /* Restart buffer table allocation */
848 efx->next_buffer_table = next_buffer_table;
Ben Hutchings46426102010-09-10 06:42:33 +0000849
Ben Hutchingse8f14992010-12-07 19:47:34 +0000850 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000851 channel = efx->channel[i];
852 if (!channel->type->copy)
853 continue;
854 rc = efx_probe_channel(channel);
855 if (rc)
856 goto rollback;
857 efx_init_napi_channel(efx->channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000858 }
Ben Hutchings46426102010-09-10 06:42:33 +0000859
Ben Hutchings7f967c02012-02-13 23:45:02 +0000860out:
861 /* Destroy unused channel structures */
862 for (i = 0; i < efx->n_channels; i++) {
863 channel = other_channel[i];
864 if (channel && channel->type->copy) {
865 efx_fini_napi_channel(channel);
866 efx_remove_channel(channel);
867 kfree(channel);
868 }
869 }
870
Jon Cooper261e4d92013-04-15 18:51:54 +0100871 rc2 = efx_soft_enable_interrupts(efx);
872 if (rc2) {
873 rc = rc ? rc : rc2;
874 netif_err(efx, drv, efx->net_dev,
875 "unable to restart interrupts on channel reallocation\n");
876 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
877 } else {
878 efx_start_all(efx);
Peter Dunning9c568fd2017-02-17 15:50:43 +0000879 efx_device_attach_if_not_resetting(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +0100880 }
Ben Hutchings46426102010-09-10 06:42:33 +0000881 return rc;
882
883rollback:
884 /* Swap back */
885 efx->rxq_entries = old_rxq_entries;
886 efx->txq_entries = old_txq_entries;
887 for (i = 0; i < efx->n_channels; i++) {
888 channel = efx->channel[i];
889 efx->channel[i] = other_channel[i];
890 other_channel[i] = channel;
891 }
892 goto out;
893}
894
Steve Hodgson90d683a2010-06-01 11:19:39 +0000895void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100896{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000897 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100898}
899
Ben Hutchings7f967c02012-02-13 23:45:02 +0000900static const struct efx_channel_type efx_default_channel_type = {
901 .pre_probe = efx_channel_dummy_op_int,
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100902 .post_remove = efx_channel_dummy_op_void,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000903 .get_name = efx_get_channel_name,
904 .copy = efx_copy_channel,
905 .keep_eventq = false,
906};
907
908int efx_channel_dummy_op_int(struct efx_channel *channel)
909{
910 return 0;
911}
912
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100913void efx_channel_dummy_op_void(struct efx_channel *channel)
914{
915}
916
Ben Hutchings8ceee662008-04-27 12:55:59 +0100917/**************************************************************************
918 *
919 * Port handling
920 *
921 **************************************************************************/
922
923/* This ensures that the kernel is kept informed (via
924 * netif_carrier_on/off) of the link status, and also maintains the
925 * link status's stop on the port's TX queue.
926 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000927void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100928{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000929 struct efx_link_state *link_state = &efx->link_state;
930
Ben Hutchings8ceee662008-04-27 12:55:59 +0100931 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
932 * that no events are triggered between unregister_netdev() and the
933 * driver unloading. A more general condition is that NETDEV_CHANGE
934 * can only be generated between NETDEV_UP and NETDEV_DOWN */
935 if (!netif_running(efx->net_dev))
936 return;
937
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000938 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100939 efx->n_link_state_changes++;
940
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000941 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100942 netif_carrier_on(efx->net_dev);
943 else
944 netif_carrier_off(efx->net_dev);
945 }
946
947 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000948 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000949 netif_info(efx, link, efx->net_dev,
Ben Hutchings964e6132012-11-19 23:08:22 +0000950 "link up at %uMbps %s-duplex (MTU %d)\n",
Ben Hutchings62776d02010-06-23 11:30:07 +0000951 link_state->speed, link_state->fd ? "full" : "half",
Ben Hutchings964e6132012-11-19 23:08:22 +0000952 efx->net_dev->mtu);
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000953 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000954 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100955}
956
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000957void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
958{
959 efx->link_advertising = advertising;
960 if (advertising) {
961 if (advertising & ADVERTISED_Pause)
962 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
963 else
964 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
965 if (advertising & ADVERTISED_Asym_Pause)
966 efx->wanted_fc ^= EFX_FC_TX;
967 }
968}
969
David S. Millerb56269462011-05-17 17:53:22 -0400970void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000971{
972 efx->wanted_fc = wanted_fc;
973 if (efx->link_advertising) {
974 if (wanted_fc & EFX_FC_RX)
975 efx->link_advertising |= (ADVERTISED_Pause |
976 ADVERTISED_Asym_Pause);
977 else
978 efx->link_advertising &= ~(ADVERTISED_Pause |
979 ADVERTISED_Asym_Pause);
980 if (wanted_fc & EFX_FC_TX)
981 efx->link_advertising ^= ADVERTISED_Asym_Pause;
982 }
983}
984
Ben Hutchings115122a2009-03-04 09:52:52 +0000985static void efx_fini_port(struct efx_nic *efx);
986
Edward Cree0d322412015-05-20 11:10:03 +0100987/* We assume that efx->type->reconfigure_mac will always try to sync RX
988 * filters and therefore needs to read-lock the filter table against freeing
989 */
990void efx_mac_reconfigure(struct efx_nic *efx)
991{
992 down_read(&efx->filter_sem);
993 efx->type->reconfigure_mac(efx);
994 up_read(&efx->filter_sem);
995}
996
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000997/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
998 * the MAC appropriately. All other PHY configuration changes are pushed
999 * through phy_op->set_settings(), and pushed asynchronously to the MAC
1000 * through efx_monitor().
1001 *
1002 * Callers must hold the mac_lock
1003 */
1004int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001005{
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001006 enum efx_phy_mode phy_mode;
1007 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001008
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001009 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001010
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001011 /* Disable PHY transmit in mac level loopbacks */
1012 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001013 if (LOOPBACK_INTERNAL(efx))
1014 efx->phy_mode |= PHY_MODE_TX_DISABLED;
1015 else
1016 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001017
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001018 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001019
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001020 if (rc)
1021 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001022
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001023 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001024}
1025
1026/* Reinitialise the MAC to pick up new PHY settings, even if the port is
1027 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001028int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001029{
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001030 int rc;
1031
Ben Hutchings8ceee662008-04-27 12:55:59 +01001032 EFX_ASSERT_RESET_SERIALISED(efx);
1033
1034 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001035 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001036 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001037
1038 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001039}
1040
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001041/* Asynchronous work item for changing MAC promiscuity and multicast
1042 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
1043 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001044static void efx_mac_work(struct work_struct *data)
1045{
1046 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
1047
1048 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +01001049 if (efx->port_enabled)
Edward Cree0d322412015-05-20 11:10:03 +01001050 efx_mac_reconfigure(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001051 mutex_unlock(&efx->mac_lock);
1052}
1053
Ben Hutchings8ceee662008-04-27 12:55:59 +01001054static int efx_probe_port(struct efx_nic *efx)
1055{
1056 int rc;
1057
Ben Hutchings62776d02010-06-23 11:30:07 +00001058 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001059
Steve Hodgsonff3b00a2009-12-23 13:46:36 +00001060 if (phy_flash_cfg)
1061 efx->phy_mode = PHY_MODE_SPECIAL;
1062
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001063 /* Connect up MAC/PHY operations table */
1064 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001065 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +00001066 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001067
Ben Hutchingse332bcb2011-12-20 01:22:51 +00001068 /* Initialise MAC address to permanent address */
Edward Creecd84ff42014-03-07 18:27:41 +00001069 ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001070
1071 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001072}
1073
1074static int efx_init_port(struct efx_nic *efx)
1075{
1076 int rc;
1077
Ben Hutchings62776d02010-06-23 11:30:07 +00001078 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001079
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001080 mutex_lock(&efx->mac_lock);
1081
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001082 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001083 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001084 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001085
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001086 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001087
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001088 /* Reconfigure the MAC before creating dma queues (required for
1089 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Edward Cree0d322412015-05-20 11:10:03 +01001090 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001091
1092 /* Ensure the PHY advertises the correct flow control settings */
1093 rc = efx->phy_op->reconfigure(efx);
Edward Cree267d9d72015-05-06 00:59:18 +01001094 if (rc && rc != -EPERM)
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001095 goto fail2;
1096
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001097 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001098 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001099
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001100fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001101 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001102fail1:
1103 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001104 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001105}
1106
Ben Hutchings8ceee662008-04-27 12:55:59 +01001107static void efx_start_port(struct efx_nic *efx)
1108{
Ben Hutchings62776d02010-06-23 11:30:07 +00001109 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001110 BUG_ON(efx->port_enabled);
1111
1112 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001113 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001114
Ben Hutchingsd615c032013-10-08 17:33:20 +01001115 /* Ensure MAC ingress/egress is enabled */
Edward Cree0d322412015-05-20 11:10:03 +01001116 efx_mac_reconfigure(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001117
Ben Hutchings8ceee662008-04-27 12:55:59 +01001118 mutex_unlock(&efx->mac_lock);
1119}
1120
Ben Hutchingsd615c032013-10-08 17:33:20 +01001121/* Cancel work for MAC reconfiguration, periodic hardware monitoring
1122 * and the async self-test, wait for them to finish and prevent them
1123 * being scheduled again. This doesn't cover online resets, which
1124 * should only be cancelled when removing the device.
1125 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001126static void efx_stop_port(struct efx_nic *efx)
1127{
Ben Hutchings62776d02010-06-23 11:30:07 +00001128 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001129
Ben Hutchingsd615c032013-10-08 17:33:20 +01001130 EFX_ASSERT_RESET_SERIALISED(efx);
1131
Ben Hutchings8ceee662008-04-27 12:55:59 +01001132 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001133 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001134 mutex_unlock(&efx->mac_lock);
1135
1136 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001137 netif_addr_lock_bh(efx->net_dev);
1138 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchingsd615c032013-10-08 17:33:20 +01001139
1140 cancel_delayed_work_sync(&efx->monitor_work);
1141 efx_selftest_async_cancel(efx);
1142 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001143}
1144
1145static void efx_fini_port(struct efx_nic *efx)
1146{
Ben Hutchings62776d02010-06-23 11:30:07 +00001147 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001148
1149 if (!efx->port_initialized)
1150 return;
1151
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001152 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001153 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001154
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001155 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001156 efx_link_status_changed(efx);
1157}
1158
1159static void efx_remove_port(struct efx_nic *efx)
1160{
Ben Hutchings62776d02010-06-23 11:30:07 +00001161 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001162
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001163 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001164}
1165
1166/**************************************************************************
1167 *
1168 * NIC handling
1169 *
1170 **************************************************************************/
1171
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01001172static LIST_HEAD(efx_primary_list);
1173static LIST_HEAD(efx_unassociated_list);
1174
1175static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right)
1176{
1177 return left->type == right->type &&
1178 left->vpd_sn && right->vpd_sn &&
1179 !strcmp(left->vpd_sn, right->vpd_sn);
1180}
1181
1182static void efx_associate(struct efx_nic *efx)
1183{
1184 struct efx_nic *other, *next;
1185
1186 if (efx->primary == efx) {
1187 /* Adding primary function; look for secondaries */
1188
1189 netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n");
1190 list_add_tail(&efx->node, &efx_primary_list);
1191
1192 list_for_each_entry_safe(other, next, &efx_unassociated_list,
1193 node) {
1194 if (efx_same_controller(efx, other)) {
1195 list_del(&other->node);
1196 netif_dbg(other, probe, other->net_dev,
1197 "moving to secondary list of %s %s\n",
1198 pci_name(efx->pci_dev),
1199 efx->net_dev->name);
1200 list_add_tail(&other->node,
1201 &efx->secondary_list);
1202 other->primary = efx;
1203 }
1204 }
1205 } else {
1206 /* Adding secondary function; look for primary */
1207
1208 list_for_each_entry(other, &efx_primary_list, node) {
1209 if (efx_same_controller(efx, other)) {
1210 netif_dbg(efx, probe, efx->net_dev,
1211 "adding to secondary list of %s %s\n",
1212 pci_name(other->pci_dev),
1213 other->net_dev->name);
1214 list_add_tail(&efx->node,
1215 &other->secondary_list);
1216 efx->primary = other;
1217 return;
1218 }
1219 }
1220
1221 netif_dbg(efx, probe, efx->net_dev,
1222 "adding to unassociated list\n");
1223 list_add_tail(&efx->node, &efx_unassociated_list);
1224 }
1225}
1226
1227static void efx_dissociate(struct efx_nic *efx)
1228{
1229 struct efx_nic *other, *next;
1230
1231 list_del(&efx->node);
1232 efx->primary = NULL;
1233
1234 list_for_each_entry_safe(other, next, &efx->secondary_list, node) {
1235 list_del(&other->node);
1236 netif_dbg(other, probe, other->net_dev,
1237 "moving to unassociated list\n");
1238 list_add_tail(&other->node, &efx_unassociated_list);
1239 other->primary = NULL;
1240 }
1241}
1242
Ben Hutchings8ceee662008-04-27 12:55:59 +01001243/* This configures the PCI device to enable I/O and DMA. */
1244static int efx_init_io(struct efx_nic *efx)
1245{
1246 struct pci_dev *pci_dev = efx->pci_dev;
1247 dma_addr_t dma_mask = efx->type->max_dma_mask;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001248 unsigned int mem_map_size = efx->type->mem_map_size(efx);
Shradha Shah02246a72015-05-06 00:58:14 +01001249 int rc, bar;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001250
Ben Hutchings62776d02010-06-23 11:30:07 +00001251 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001252
Shradha Shah02246a72015-05-06 00:58:14 +01001253 bar = efx->type->mem_bar;
1254
Ben Hutchings8ceee662008-04-27 12:55:59 +01001255 rc = pci_enable_device(pci_dev);
1256 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001257 netif_err(efx, probe, efx->net_dev,
1258 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001259 goto fail1;
1260 }
1261
1262 pci_set_master(pci_dev);
1263
1264 /* Set the PCI DMA mask. Try all possibilities from our
1265 * genuine mask down to 32 bits, because some architectures
1266 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1267 * masks event though they reject 46 bit masks.
1268 */
1269 while (dma_mask > 0x7fffffffUL) {
Christoph Hellwig8722b8f2015-11-10 14:45:42 -08001270 rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
1271 if (rc == 0)
1272 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001273 dma_mask >>= 1;
1274 }
1275 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001276 netif_err(efx, probe, efx->net_dev,
1277 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001278 goto fail2;
1279 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001280 netif_dbg(efx, probe, efx->net_dev,
1281 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001282
Shradha Shah02246a72015-05-06 00:58:14 +01001283 efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
1284 rc = pci_request_region(pci_dev, bar, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001285 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001286 netif_err(efx, probe, efx->net_dev,
1287 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001288 rc = -EIO;
1289 goto fail3;
1290 }
Ben Hutchingsb1057982012-09-19 00:56:47 +01001291 efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001292 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001293 netif_err(efx, probe, efx->net_dev,
1294 "could not map memory BAR at %llx+%x\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001295 (unsigned long long)efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001296 rc = -ENOMEM;
1297 goto fail4;
1298 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001299 netif_dbg(efx, probe, efx->net_dev,
1300 "memory BAR at %llx+%x (virtual %p)\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001301 (unsigned long long)efx->membase_phys, mem_map_size,
1302 efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001303
1304 return 0;
1305
1306 fail4:
Shradha Shah02246a72015-05-06 00:58:14 +01001307 pci_release_region(efx->pci_dev, bar);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001308 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001309 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001310 fail2:
1311 pci_disable_device(efx->pci_dev);
1312 fail1:
1313 return rc;
1314}
1315
1316static void efx_fini_io(struct efx_nic *efx)
1317{
Shradha Shah02246a72015-05-06 00:58:14 +01001318 int bar;
1319
Ben Hutchings62776d02010-06-23 11:30:07 +00001320 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001321
1322 if (efx->membase) {
1323 iounmap(efx->membase);
1324 efx->membase = NULL;
1325 }
1326
1327 if (efx->membase_phys) {
Shradha Shah02246a72015-05-06 00:58:14 +01001328 bar = efx->type->mem_bar;
1329 pci_release_region(efx->pci_dev, bar);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001330 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001331 }
1332
Daniel Pieczko6598dad2015-06-02 11:41:00 +01001333 /* Don't disable bus-mastering if VFs are assigned */
1334 if (!pci_vfs_assigned(efx->pci_dev))
1335 pci_disable_device(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001336}
1337
Jon Cooper267c0152015-05-06 00:59:38 +01001338void efx_set_default_rx_indir_table(struct efx_nic *efx)
1339{
1340 size_t i;
1341
1342 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
1343 efx->rx_indir_table[i] =
1344 ethtool_rxfh_indir_default(i, efx->rss_spread);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001345}
1346
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001347static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
Ben Hutchings46123d02008-09-01 12:47:33 +01001348{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001349 cpumask_var_t thread_mask;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001350 unsigned int count;
Ben Hutchings46123d02008-09-01 12:47:33 +01001351 int cpu;
1352
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001353 if (rss_cpus) {
1354 count = rss_cpus;
1355 } else {
1356 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1357 netif_warn(efx, probe, efx->net_dev,
1358 "RSS disabled due to allocation failure\n");
1359 return 1;
Ben Hutchings46123d02008-09-01 12:47:33 +01001360 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001361
1362 count = 0;
1363 for_each_online_cpu(cpu) {
1364 if (!cpumask_test_cpu(cpu, thread_mask)) {
1365 ++count;
1366 cpumask_or(thread_mask, thread_mask,
Bartosz Golaszewski06931e62015-05-26 15:11:28 +02001367 topology_sibling_cpumask(cpu));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001368 }
1369 }
1370
1371 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001372 }
1373
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001374 /* If RSS is requested for the PF *and* VFs then we can't write RSS
1375 * table entries that are inaccessible to VFs
1376 */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001377#ifdef CONFIG_SFC_SRIOV
1378 if (efx->type->sriov_wanted) {
1379 if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1380 count > efx_vf_size(efx)) {
1381 netif_warn(efx, probe, efx->net_dev,
1382 "Reducing number of RSS channels from %u to %u for "
1383 "VF support. Increase vf-msix-limit to use more "
1384 "channels on the PF.\n",
1385 count, efx_vf_size(efx));
1386 count = efx_vf_size(efx);
1387 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001388 }
Shradha Shah7fa8d542015-05-06 00:55:13 +01001389#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001390
Ben Hutchings46123d02008-09-01 12:47:33 +01001391 return count;
1392}
1393
1394/* Probe the number and type of interrupts we are able to obtain, and
1395 * the resulting numbers of channels and RX queues.
1396 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001397static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001398{
Ben Hutchings7f967c02012-02-13 23:45:02 +00001399 unsigned int extra_channels = 0;
1400 unsigned int i, j;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001401 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001402
Ben Hutchings7f967c02012-02-13 23:45:02 +00001403 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1404 if (efx->extra_channel_type[i])
1405 ++extra_channels;
1406
Ben Hutchings8ceee662008-04-27 12:55:59 +01001407 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001408 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001409 unsigned int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001410
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001411 n_channels = efx_wanted_parallelism(efx);
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001412 if (efx_separate_tx_channels)
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001413 n_channels *= 2;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001414 n_channels += extra_channels;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001415 n_channels = min(n_channels, efx->max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001416
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001417 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001418 xentries[i].entry = i;
Alexander Gordeev184603d2014-02-18 11:12:00 +01001419 rc = pci_enable_msix_range(efx->pci_dev,
1420 xentries, 1, n_channels);
1421 if (rc < 0) {
1422 /* Fall back to single channel MSI */
Alexander Gordeev184603d2014-02-18 11:12:00 +01001423 netif_err(efx, drv, efx->net_dev,
1424 "could not enable MSI-X\n");
Andrew Rybchenko62980cb2017-02-13 14:59:04 +00001425 if (efx->type->min_interrupt_mode >= EFX_INT_MODE_MSI)
1426 efx->interrupt_mode = EFX_INT_MODE_MSI;
1427 else
1428 return rc;
Alexander Gordeev184603d2014-02-18 11:12:00 +01001429 } else if (rc < n_channels) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001430 netif_err(efx, drv, efx->net_dev,
1431 "WARNING: Insufficient MSI-X vectors"
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001432 " available (%d < %u).\n", rc, n_channels);
Ben Hutchings62776d02010-06-23 11:30:07 +00001433 netif_err(efx, drv, efx->net_dev,
1434 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001435 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001436 }
1437
Alexander Gordeev184603d2014-02-18 11:12:00 +01001438 if (rc > 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001439 efx->n_channels = n_channels;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001440 if (n_channels > extra_channels)
1441 n_channels -= extra_channels;
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001442 if (efx_separate_tx_channels) {
1443 efx->n_tx_channels = min(max(n_channels / 2,
1444 1U),
1445 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001446 efx->n_rx_channels = max(n_channels -
1447 efx->n_tx_channels,
1448 1U);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001449 } else {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001450 efx->n_tx_channels = min(n_channels,
1451 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001452 efx->n_rx_channels = n_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001453 }
Ben Hutchings7f967c02012-02-13 23:45:02 +00001454 for (i = 0; i < efx->n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001455 efx_get_channel(efx, i)->irq =
1456 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001457 }
1458 }
1459
1460 /* Try single interrupt MSI */
1461 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001462 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001463 efx->n_rx_channels = 1;
1464 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001465 rc = pci_enable_msi(efx->pci_dev);
1466 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001467 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001468 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001469 netif_err(efx, drv, efx->net_dev,
1470 "could not enable MSI\n");
Andrew Rybchenko62980cb2017-02-13 14:59:04 +00001471 if (efx->type->min_interrupt_mode >= EFX_INT_MODE_LEGACY)
1472 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1473 else
1474 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001475 }
1476 }
1477
1478 /* Assume legacy interrupts */
1479 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001480 efx->n_channels = 1 + (efx_separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001481 efx->n_rx_channels = 1;
1482 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001483 efx->legacy_irq = efx->pci_dev->irq;
1484 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001485
Ben Hutchings7f967c02012-02-13 23:45:02 +00001486 /* Assign extra channels if possible */
1487 j = efx->n_channels;
1488 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1489 if (!efx->extra_channel_type[i])
1490 continue;
1491 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1492 efx->n_channels <= extra_channels) {
1493 efx->extra_channel_type[i]->handle_no_channel(efx);
1494 } else {
1495 --j;
1496 efx_get_channel(efx, j)->type =
1497 efx->extra_channel_type[i];
1498 }
1499 }
1500
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001501 /* RSS might be usable on VFs even if it is disabled on the PF */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001502#ifdef CONFIG_SFC_SRIOV
1503 if (efx->type->sriov_wanted) {
1504 efx->rss_spread = ((efx->n_rx_channels > 1 ||
1505 !efx->type->sriov_wanted(efx)) ?
1506 efx->n_rx_channels : efx_vf_size(efx));
1507 return 0;
1508 }
1509#endif
1510 efx->rss_spread = efx->n_rx_channels;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001511
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001512 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001513}
1514
Jon Cooper261e4d92013-04-15 18:51:54 +01001515static int efx_soft_enable_interrupts(struct efx_nic *efx)
Ben Hutchingsd8291182012-10-05 23:35:41 +01001516{
Jon Cooper261e4d92013-04-15 18:51:54 +01001517 struct efx_channel *channel, *end_channel;
1518 int rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001519
1520 BUG_ON(efx->state == STATE_DISABLED);
1521
1522 efx->irq_soft_enabled = true;
1523 smp_wmb();
1524
1525 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001526 if (!channel->type->keep_eventq) {
1527 rc = efx_init_eventq(channel);
1528 if (rc)
1529 goto fail;
1530 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001531 efx_start_eventq(channel);
1532 }
1533
1534 efx_mcdi_mode_event(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01001535
1536 return 0;
1537fail:
1538 end_channel = channel;
1539 efx_for_each_channel(channel, efx) {
1540 if (channel == end_channel)
1541 break;
1542 efx_stop_eventq(channel);
1543 if (!channel->type->keep_eventq)
1544 efx_fini_eventq(channel);
1545 }
1546
1547 return rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001548}
1549
1550static void efx_soft_disable_interrupts(struct efx_nic *efx)
1551{
1552 struct efx_channel *channel;
1553
1554 if (efx->state == STATE_DISABLED)
1555 return;
1556
1557 efx_mcdi_mode_poll(efx);
1558
1559 efx->irq_soft_enabled = false;
1560 smp_wmb();
1561
1562 if (efx->legacy_irq)
1563 synchronize_irq(efx->legacy_irq);
1564
1565 efx_for_each_channel(channel, efx) {
1566 if (channel->irq)
1567 synchronize_irq(channel->irq);
1568
1569 efx_stop_eventq(channel);
1570 if (!channel->type->keep_eventq)
1571 efx_fini_eventq(channel);
1572 }
Ben Hutchingscade7152013-08-27 23:12:31 +01001573
1574 /* Flush the asynchronous MCDI request queue */
1575 efx_mcdi_flush_async(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01001576}
1577
Jon Cooper261e4d92013-04-15 18:51:54 +01001578static int efx_enable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001579{
Jon Cooper261e4d92013-04-15 18:51:54 +01001580 struct efx_channel *channel, *end_channel;
1581 int rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001582
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001583 BUG_ON(efx->state == STATE_DISABLED);
1584
Alexandre Ramesb28405b2013-03-21 16:41:43 +00001585 if (efx->eeh_disabled_legacy_irq) {
1586 enable_irq(efx->legacy_irq);
1587 efx->eeh_disabled_legacy_irq = false;
1588 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001589
Ben Hutchings86094f72013-08-21 19:51:04 +01001590 efx->type->irq_enable_master(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001591
1592 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001593 if (channel->type->keep_eventq) {
1594 rc = efx_init_eventq(channel);
1595 if (rc)
1596 goto fail;
1597 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001598 }
1599
Jon Cooper261e4d92013-04-15 18:51:54 +01001600 rc = efx_soft_enable_interrupts(efx);
1601 if (rc)
1602 goto fail;
1603
1604 return 0;
1605
1606fail:
1607 end_channel = channel;
1608 efx_for_each_channel(channel, efx) {
1609 if (channel == end_channel)
1610 break;
1611 if (channel->type->keep_eventq)
1612 efx_fini_eventq(channel);
1613 }
1614
1615 efx->type->irq_disable_non_ev(efx);
1616
1617 return rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001618}
1619
Ben Hutchingsd8291182012-10-05 23:35:41 +01001620static void efx_disable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001621{
1622 struct efx_channel *channel;
1623
Ben Hutchingsd8291182012-10-05 23:35:41 +01001624 efx_soft_disable_interrupts(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001625
1626 efx_for_each_channel(channel, efx) {
Ben Hutchingsd8291182012-10-05 23:35:41 +01001627 if (channel->type->keep_eventq)
Ben Hutchings7f967c02012-02-13 23:45:02 +00001628 efx_fini_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001629 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001630
Ben Hutchings86094f72013-08-21 19:51:04 +01001631 efx->type->irq_disable_non_ev(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001632}
1633
Ben Hutchings8ceee662008-04-27 12:55:59 +01001634static void efx_remove_interrupts(struct efx_nic *efx)
1635{
1636 struct efx_channel *channel;
1637
1638 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001639 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001640 channel->irq = 0;
1641 pci_disable_msi(efx->pci_dev);
1642 pci_disable_msix(efx->pci_dev);
1643
1644 /* Remove legacy interrupt */
1645 efx->legacy_irq = 0;
1646}
1647
Ben Hutchings8831da72008-09-01 12:47:48 +01001648static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001649{
Ben Hutchings602a5322011-05-16 17:32:39 +01001650 struct efx_channel *channel;
1651 struct efx_tx_queue *tx_queue;
1652
Ben Hutchings97653432011-01-12 18:26:56 +00001653 efx->tx_channel_offset =
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001654 efx_separate_tx_channels ?
1655 efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001656
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001657 /* We need to mark which channels really have RX and TX
1658 * queues, and adjust the TX queue numbers if we have separate
Ben Hutchings602a5322011-05-16 17:32:39 +01001659 * RX-only and TX-only channels.
1660 */
1661 efx_for_each_channel(channel, efx) {
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001662 if (channel->channel < efx->n_rx_channels)
1663 channel->rx_queue.core_index = channel->channel;
1664 else
1665 channel->rx_queue.core_index = -1;
1666
Ben Hutchings602a5322011-05-16 17:32:39 +01001667 efx_for_each_channel_tx_queue(tx_queue, channel)
1668 tx_queue->queue -= (efx->tx_channel_offset *
1669 EFX_TXQ_TYPES);
1670 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001671}
1672
1673static int efx_probe_nic(struct efx_nic *efx)
1674{
1675 int rc;
1676
Ben Hutchings62776d02010-06-23 11:30:07 +00001677 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001678
1679 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001680 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001681 if (rc)
1682 return rc;
1683
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001684 do {
1685 if (!efx->max_channels || !efx->max_tx_channels) {
1686 netif_err(efx, drv, efx->net_dev,
1687 "Insufficient resources to allocate"
1688 " any channels\n");
1689 rc = -ENOSPC;
1690 goto fail1;
1691 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001692
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001693 /* Determine the number of channels and queues by trying
1694 * to hook in MSI-X interrupts.
1695 */
1696 rc = efx_probe_interrupts(efx);
1697 if (rc)
1698 goto fail1;
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001699
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001700 efx_set_channels(efx);
1701
1702 /* dimension_resources can fail with EAGAIN */
1703 rc = efx->type->dimension_resources(efx);
1704 if (rc != 0 && rc != -EAGAIN)
1705 goto fail2;
1706
1707 if (rc == -EAGAIN)
1708 /* try again with new max_channels */
1709 efx_remove_interrupts(efx);
1710
1711 } while (rc == -EAGAIN);
Ben Hutchings28e47c42012-02-15 01:58:49 +00001712
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001713 if (efx->n_channels > 1)
Jon Cooper267c0152015-05-06 00:59:38 +01001714 netdev_rss_key_fill(&efx->rx_hash_key,
1715 sizeof(efx->rx_hash_key));
1716 efx_set_default_rx_indir_table(efx);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001717
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001718 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1719 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001720
1721 /* Initialise the interrupt moderation settings */
Bert Kenward539de7c2016-08-11 13:02:09 +01001722 efx->irq_mod_step_us = DIV_ROUND_UP(efx->timer_quantum_ns, 1000);
Ben Hutchings9e393b32011-09-05 07:43:04 +00001723 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1724 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001725
1726 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001727
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001728fail2:
1729 efx_remove_interrupts(efx);
1730fail1:
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001731 efx->type->remove(efx);
1732 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001733}
1734
1735static void efx_remove_nic(struct efx_nic *efx)
1736{
Ben Hutchings62776d02010-06-23 11:30:07 +00001737 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001738
1739 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001740 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001741}
1742
Ben Hutchingsadd72472012-11-08 01:46:53 +00001743static int efx_probe_filters(struct efx_nic *efx)
1744{
1745 int rc;
1746
1747 spin_lock_init(&efx->filter_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001748 init_rwsem(&efx->filter_sem);
Martin Habetsd2489532016-06-15 17:48:49 +01001749 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001750 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001751 rc = efx->type->filter_table_probe(efx);
1752 if (rc)
Edward Cree0d322412015-05-20 11:10:03 +01001753 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001754
1755#ifdef CONFIG_RFS_ACCEL
1756 if (efx->type->offload_features & NETIF_F_NTUPLE) {
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001757 struct efx_channel *channel;
1758 int i, success = 1;
1759
1760 efx_for_each_channel(channel, efx) {
1761 channel->rps_flow_id =
1762 kcalloc(efx->type->max_rx_ip_filters,
1763 sizeof(*channel->rps_flow_id),
1764 GFP_KERNEL);
1765 if (!channel->rps_flow_id)
1766 success = 0;
1767 else
1768 for (i = 0;
1769 i < efx->type->max_rx_ip_filters;
1770 ++i)
1771 channel->rps_flow_id[i] =
1772 RPS_FLOW_ID_INVALID;
1773 }
1774
1775 if (!success) {
1776 efx_for_each_channel(channel, efx)
1777 kfree(channel->rps_flow_id);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001778 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001779 rc = -ENOMEM;
1780 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001781 }
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001782
1783 efx->rps_expire_index = efx->rps_expire_channel = 0;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001784 }
1785#endif
Edward Cree0d322412015-05-20 11:10:03 +01001786out_unlock:
1787 up_write(&efx->filter_sem);
Martin Habetsd2489532016-06-15 17:48:49 +01001788 mutex_unlock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001789 return rc;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001790}
1791
1792static void efx_remove_filters(struct efx_nic *efx)
1793{
1794#ifdef CONFIG_RFS_ACCEL
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001795 struct efx_channel *channel;
1796
1797 efx_for_each_channel(channel, efx)
1798 kfree(channel->rps_flow_id);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001799#endif
Edward Cree0d322412015-05-20 11:10:03 +01001800 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001801 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001802 up_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001803}
1804
1805static void efx_restore_filters(struct efx_nic *efx)
1806{
Edward Cree0d322412015-05-20 11:10:03 +01001807 down_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001808 efx->type->filter_table_restore(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001809 up_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001810}
1811
Ben Hutchings8ceee662008-04-27 12:55:59 +01001812/**************************************************************************
1813 *
1814 * NIC startup/shutdown
1815 *
1816 *************************************************************************/
1817
1818static int efx_probe_all(struct efx_nic *efx)
1819{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001820 int rc;
1821
Ben Hutchings8ceee662008-04-27 12:55:59 +01001822 rc = efx_probe_nic(efx);
1823 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001824 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001825 goto fail1;
1826 }
1827
Ben Hutchings8ceee662008-04-27 12:55:59 +01001828 rc = efx_probe_port(efx);
1829 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001830 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001831 goto fail2;
1832 }
1833
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00001834 BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
1835 if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
1836 rc = -EINVAL;
1837 goto fail3;
1838 }
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001839 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001840
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001841#ifdef CONFIG_SFC_SRIOV
1842 rc = efx->type->vswitching_probe(efx);
1843 if (rc) /* not fatal; the PF will still work fine */
1844 netif_warn(efx, probe, efx->net_dev,
1845 "failed to setup vswitching rc=%d;"
1846 " VFs may not function\n", rc);
1847#endif
1848
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001849 rc = efx_probe_filters(efx);
1850 if (rc) {
1851 netif_err(efx, probe, efx->net_dev,
1852 "failed to create filter tables\n");
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001853 goto fail4;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001854 }
1855
Ben Hutchings7f967c02012-02-13 23:45:02 +00001856 rc = efx_probe_channels(efx);
1857 if (rc)
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001858 goto fail5;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001859
Ben Hutchings8ceee662008-04-27 12:55:59 +01001860 return 0;
1861
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001862 fail5:
Ben Hutchings7f967c02012-02-13 23:45:02 +00001863 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001864 fail4:
1865#ifdef CONFIG_SFC_SRIOV
1866 efx->type->vswitching_remove(efx);
1867#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001868 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001869 efx_remove_port(efx);
1870 fail2:
1871 efx_remove_nic(efx);
1872 fail1:
1873 return rc;
1874}
1875
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001876/* If the interface is supposed to be running but is not, start
1877 * the hardware and software data path, regular activity for the port
1878 * (MAC statistics, link polling, etc.) and schedule the port to be
1879 * reconfigured. Interrupts must already be enabled. This function
1880 * is safe to call multiple times, so long as the NIC is not disabled.
1881 * Requires the RTNL lock.
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001882 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001883static void efx_start_all(struct efx_nic *efx)
1884{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001885 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001886 BUG_ON(efx->state == STATE_DISABLED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001887
1888 /* Check that it is appropriate to restart the interface. All
1889 * of these flags are safe to read under just the rtnl lock */
Edward Creee2835462014-04-16 19:27:48 +01001890 if (efx->port_enabled || !netif_running(efx->net_dev) ||
1891 efx->reset_pending)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001892 return;
1893
Ben Hutchings8ceee662008-04-27 12:55:59 +01001894 efx_start_port(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001895 efx_start_datapath(efx);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001896
Alexandre Rames626950d2013-01-14 17:20:22 +00001897 /* Start the hardware monitor if there is one */
1898 if (efx->type->monitor != NULL)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001899 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1900 efx_monitor_interval);
Alexandre Rames626950d2013-01-14 17:20:22 +00001901
Edward Cree5a6681e2016-11-28 18:55:34 +00001902 /* Link state detection is normally event-driven; we have
Alexandre Rames626950d2013-01-14 17:20:22 +00001903 * to poll now because we could have missed a change
1904 */
Edward Cree5a6681e2016-11-28 18:55:34 +00001905 mutex_lock(&efx->mac_lock);
1906 if (efx->phy_op->poll(efx))
1907 efx_link_status_changed(efx);
1908 mutex_unlock(&efx->mac_lock);
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001909
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001910 efx->type->start_stats(efx);
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001911 efx->type->pull_stats(efx);
1912 spin_lock_bh(&efx->stats_lock);
1913 efx->type->update_stats(efx, NULL, NULL);
1914 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001915}
1916
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001917/* Quiesce the hardware and software data path, and regular activity
1918 * for the port without bringing the link down. Safe to call multiple
1919 * times with the NIC in almost any state, but interrupts should be
1920 * enabled. Requires the RTNL lock.
1921 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001922static void efx_stop_all(struct efx_nic *efx)
1923{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001924 EFX_ASSERT_RESET_SERIALISED(efx);
1925
1926 /* port_enabled can be read safely under the rtnl lock */
1927 if (!efx->port_enabled)
1928 return;
1929
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001930 /* update stats before we go down so we can accurately count
1931 * rx_nodesc_drops
1932 */
1933 efx->type->pull_stats(efx);
1934 spin_lock_bh(&efx->stats_lock);
1935 efx->type->update_stats(efx, NULL, NULL);
1936 spin_unlock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001937 efx->type->stop_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001938 efx_stop_port(efx);
1939
Ben Hutchings29c69a42013-01-28 19:01:06 +00001940 /* Stop the kernel transmit interface. This is only valid if
1941 * the device is stopped or detached; otherwise the watchdog
1942 * may fire immediately.
1943 */
1944 WARN_ON(netif_running(efx->net_dev) &&
1945 netif_device_present(efx->net_dev));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001946 netif_tx_disable(efx->net_dev);
1947
1948 efx_stop_datapath(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001949}
1950
1951static void efx_remove_all(struct efx_nic *efx)
1952{
Ben Hutchings46426102010-09-10 06:42:33 +00001953 efx_remove_channels(efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001954 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001955#ifdef CONFIG_SFC_SRIOV
1956 efx->type->vswitching_remove(efx);
1957#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001958 efx_remove_port(efx);
1959 efx_remove_nic(efx);
1960}
1961
Ben Hutchings8ceee662008-04-27 12:55:59 +01001962/**************************************************************************
1963 *
1964 * Interrupt moderation
1965 *
1966 **************************************************************************/
Bert Kenward539de7c2016-08-11 13:02:09 +01001967unsigned int efx_usecs_to_ticks(struct efx_nic *efx, unsigned int usecs)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001968{
Ben Hutchingsb548f972011-09-05 07:41:44 +00001969 if (usecs == 0)
1970 return 0;
Bert Kenward539de7c2016-08-11 13:02:09 +01001971 if (usecs * 1000 < efx->timer_quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001972 return 1; /* never round down to 0 */
Bert Kenward539de7c2016-08-11 13:02:09 +01001973 return usecs * 1000 / efx->timer_quantum_ns;
1974}
1975
1976unsigned int efx_ticks_to_usecs(struct efx_nic *efx, unsigned int ticks)
1977{
1978 /* We must round up when converting ticks to microseconds
1979 * because we round down when converting the other way.
1980 */
1981 return DIV_ROUND_UP(ticks * efx->timer_quantum_ns, 1000);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001982}
1983
Ben Hutchings8ceee662008-04-27 12:55:59 +01001984/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001985int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1986 unsigned int rx_usecs, bool rx_adaptive,
1987 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001988{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001989 struct efx_channel *channel;
Bert Kenwardd95e3292016-08-11 13:02:36 +01001990 unsigned int timer_max_us;
1991
Ben Hutchings8ceee662008-04-27 12:55:59 +01001992 EFX_ASSERT_RESET_SERIALISED(efx);
1993
Bert Kenwardd95e3292016-08-11 13:02:36 +01001994 timer_max_us = efx->timer_max_ns / 1000;
1995
1996 if (tx_usecs > timer_max_us || rx_usecs > timer_max_us)
Ben Hutchings9e393b32011-09-05 07:43:04 +00001997 return -EINVAL;
1998
Bert Kenward539de7c2016-08-11 13:02:09 +01001999 if (tx_usecs != rx_usecs && efx->tx_channel_offset == 0 &&
Ben Hutchings9e393b32011-09-05 07:43:04 +00002000 !rx_may_override_tx) {
2001 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
2002 "RX and TX IRQ moderation must be equal\n");
2003 return -EINVAL;
2004 }
2005
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00002006 efx->irq_rx_adaptive = rx_adaptive;
Bert Kenward539de7c2016-08-11 13:02:09 +01002007 efx->irq_rx_moderation_us = rx_usecs;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00002008 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00002009 if (efx_channel_has_rx_queue(channel))
Bert Kenward539de7c2016-08-11 13:02:09 +01002010 channel->irq_moderation_us = rx_usecs;
Ben Hutchings525da902011-02-07 23:04:38 +00002011 else if (efx_channel_has_tx_queues(channel))
Bert Kenward539de7c2016-08-11 13:02:09 +01002012 channel->irq_moderation_us = tx_usecs;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00002013 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00002014
2015 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002016}
2017
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002018void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
2019 unsigned int *rx_usecs, bool *rx_adaptive)
2020{
2021 *rx_adaptive = efx->irq_rx_adaptive;
Bert Kenward539de7c2016-08-11 13:02:09 +01002022 *rx_usecs = efx->irq_rx_moderation_us;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002023
2024 /* If channels are shared between RX and TX, so is IRQ
2025 * moderation. Otherwise, IRQ moderation is the same for all
2026 * TX channels and is not adaptive.
2027 */
Bert Kenward539de7c2016-08-11 13:02:09 +01002028 if (efx->tx_channel_offset == 0) {
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002029 *tx_usecs = *rx_usecs;
Bert Kenward539de7c2016-08-11 13:02:09 +01002030 } else {
2031 struct efx_channel *tx_channel;
2032
2033 tx_channel = efx->channel[efx->tx_channel_offset];
2034 *tx_usecs = tx_channel->irq_moderation_us;
2035 }
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002036}
2037
Ben Hutchings8ceee662008-04-27 12:55:59 +01002038/**************************************************************************
2039 *
2040 * Hardware monitor
2041 *
2042 **************************************************************************/
2043
Ben Hutchingse254c272010-09-20 08:44:10 +00002044/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002045static void efx_monitor(struct work_struct *data)
2046{
2047 struct efx_nic *efx = container_of(data, struct efx_nic,
2048 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002049
Ben Hutchings62776d02010-06-23 11:30:07 +00002050 netif_vdbg(efx, timer, efx->net_dev,
2051 "hardware monitor executing on CPU %d\n",
2052 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002053 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002054
Ben Hutchings8ceee662008-04-27 12:55:59 +01002055 /* If the mac_lock is already held then it is likely a port
2056 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00002057 * most of the work of monitor() anyway. */
2058 if (mutex_trylock(&efx->mac_lock)) {
2059 if (efx->port_enabled)
2060 efx->type->monitor(efx);
2061 mutex_unlock(&efx->mac_lock);
2062 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002063
Ben Hutchings8ceee662008-04-27 12:55:59 +01002064 queue_delayed_work(efx->workqueue, &efx->monitor_work,
2065 efx_monitor_interval);
2066}
2067
2068/**************************************************************************
2069 *
2070 * ioctls
2071 *
2072 *************************************************************************/
2073
2074/* Net device ioctl
2075 * Context: process, rtnl_lock() held.
2076 */
2077static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
2078{
Ben Hutchings767e4682008-09-01 12:43:14 +01002079 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002080 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002081
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002082 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings433dc9b2013-11-14 01:26:21 +00002083 return efx_ptp_set_ts_config(efx, ifr);
2084 if (cmd == SIOCGHWTSTAMP)
2085 return efx_ptp_get_ts_config(efx, ifr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002086
Ben Hutchings68e7f452009-04-29 08:05:08 +00002087 /* Convert phy_id from older PRTAD/DEVAD format */
2088 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
2089 (data->phy_id & 0xfc00) == 0x0400)
2090 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
2091
2092 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002093}
2094
2095/**************************************************************************
2096 *
2097 * NAPI interface
2098 *
2099 **************************************************************************/
2100
Ben Hutchings7f967c02012-02-13 23:45:02 +00002101static void efx_init_napi_channel(struct efx_channel *channel)
2102{
2103 struct efx_nic *efx = channel->efx;
2104
2105 channel->napi_dev = efx->net_dev;
2106 netif_napi_add(channel->napi_dev, &channel->napi_str,
2107 efx_poll, napi_weight);
2108}
2109
Ben Hutchingse8f14992010-12-07 19:47:34 +00002110static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002111{
2112 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002113
Ben Hutchings7f967c02012-02-13 23:45:02 +00002114 efx_for_each_channel(channel, efx)
2115 efx_init_napi_channel(channel);
Ben Hutchingse8f14992010-12-07 19:47:34 +00002116}
2117
2118static void efx_fini_napi_channel(struct efx_channel *channel)
2119{
Eric Dumazet973334a2016-11-16 06:01:47 -08002120 if (channel->napi_dev)
Ben Hutchingse8f14992010-12-07 19:47:34 +00002121 netif_napi_del(&channel->napi_str);
Eric Dumazet973334a2016-11-16 06:01:47 -08002122
Ben Hutchingse8f14992010-12-07 19:47:34 +00002123 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002124}
2125
2126static void efx_fini_napi(struct efx_nic *efx)
2127{
2128 struct efx_channel *channel;
2129
Ben Hutchingse8f14992010-12-07 19:47:34 +00002130 efx_for_each_channel(channel, efx)
2131 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002132}
2133
2134/**************************************************************************
2135 *
2136 * Kernel netpoll interface
2137 *
2138 *************************************************************************/
2139
2140#ifdef CONFIG_NET_POLL_CONTROLLER
2141
2142/* Although in the common case interrupts will be disabled, this is not
2143 * guaranteed. However, all our work happens inside the NAPI callback,
2144 * so no locking is required.
2145 */
2146static void efx_netpoll(struct net_device *net_dev)
2147{
Ben Hutchings767e4682008-09-01 12:43:14 +01002148 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002149 struct efx_channel *channel;
2150
Ben Hutchings64ee3122008-09-01 12:47:38 +01002151 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002152 efx_schedule_channel(channel);
2153}
2154
2155#endif
2156
2157/**************************************************************************
2158 *
2159 * Kernel net device interface
2160 *
2161 *************************************************************************/
2162
2163/* Context: process, rtnl_lock() held. */
Shradha Shahe340be92015-05-20 11:11:03 +01002164int efx_net_open(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002165{
Ben Hutchings767e4682008-09-01 12:43:14 +01002166 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002167 int rc;
2168
Ben Hutchings62776d02010-06-23 11:30:07 +00002169 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
2170 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002171
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002172 rc = efx_check_disabled(efx);
2173 if (rc)
2174 return rc;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002175 if (efx->phy_mode & PHY_MODE_SPECIAL)
2176 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002177 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
2178 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002179
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00002180 /* Notify the kernel of the link state polled during driver load,
2181 * before the monitor starts running */
2182 efx_link_status_changed(efx);
2183
Ben Hutchings8ceee662008-04-27 12:55:59 +01002184 efx_start_all(efx);
Peter Dunning9c568fd2017-02-17 15:50:43 +00002185 if (efx->state == STATE_DISABLED || efx->reset_pending)
2186 netif_device_detach(efx->net_dev);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002187 efx_selftest_async_start(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002188 return 0;
2189}
2190
2191/* Context: process, rtnl_lock() held.
2192 * Note that the kernel will ignore our return code; this method
2193 * should really be a void.
2194 */
Shradha Shahe340be92015-05-20 11:11:03 +01002195int efx_net_stop(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002196{
Ben Hutchings767e4682008-09-01 12:43:14 +01002197 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002198
Ben Hutchings62776d02010-06-23 11:30:07 +00002199 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
2200 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002201
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002202 /* Stop the device and flush all the channels */
2203 efx_stop_all(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002204
2205 return 0;
2206}
2207
Ben Hutchings5b9e2072008-05-16 21:18:14 +01002208/* Context: process, dev_base_lock or RTNL held, non-blocking. */
stephen hemmingerbc1f4472017-01-06 19:12:52 -08002209static void efx_net_stats(struct net_device *net_dev,
2210 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002211{
Ben Hutchings767e4682008-09-01 12:43:14 +01002212 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002213
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002214 spin_lock_bh(&efx->stats_lock);
Ben Hutchingscd0ecc92012-12-14 21:52:56 +00002215 efx->type->update_stats(efx, NULL, stats);
Ben Hutchings1cb34522011-09-02 23:23:00 +01002216 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002217}
2218
2219/* Context: netif_tx_lock held, BHs disabled. */
2220static void efx_watchdog(struct net_device *net_dev)
2221{
Ben Hutchings767e4682008-09-01 12:43:14 +01002222 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002223
Ben Hutchings62776d02010-06-23 11:30:07 +00002224 netif_err(efx, tx_err, efx->net_dev,
2225 "TX stuck with port_enabled=%d: resetting channels\n",
2226 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002227
Ben Hutchings739bb23d2008-11-04 20:35:36 +00002228 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002229}
2230
2231
2232/* Context: process, rtnl_lock() held. */
2233static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2234{
Ben Hutchings767e4682008-09-01 12:43:14 +01002235 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002236 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002237
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002238 rc = efx_check_disabled(efx);
2239 if (rc)
2240 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002241
Ben Hutchings62776d02010-06-23 11:30:07 +00002242 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002243
Ben Hutchings29c69a42013-01-28 19:01:06 +00002244 efx_device_detach_sync(efx);
2245 efx_stop_all(efx);
2246
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002247 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002248 net_dev->mtu = new_mtu;
Edward Cree0d322412015-05-20 11:10:03 +01002249 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002250 mutex_unlock(&efx->mac_lock);
2251
Ben Hutchings8ceee662008-04-27 12:55:59 +01002252 efx_start_all(efx);
Peter Dunning9c568fd2017-02-17 15:50:43 +00002253 efx_device_attach_if_not_resetting(efx);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00002254 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002255}
2256
2257static int efx_set_mac_address(struct net_device *net_dev, void *data)
2258{
Ben Hutchings767e4682008-09-01 12:43:14 +01002259 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002260 struct sockaddr *addr = data;
Ben Hutchingse0b3ae32014-02-12 18:59:54 +00002261 u8 *new_addr = addr->sa_data;
Shradha Shahcfc77c22015-05-20 11:09:30 +01002262 u8 old_addr[6];
2263 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002264
Ben Hutchings8ceee662008-04-27 12:55:59 +01002265 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002266 netif_err(efx, drv, efx->net_dev,
2267 "invalid ethernet MAC address requested: %pM\n",
2268 new_addr);
Danny Kukawka504f9b52012-02-21 02:07:49 +00002269 return -EADDRNOTAVAIL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002270 }
2271
Shradha Shahcfc77c22015-05-20 11:09:30 +01002272 /* save old address */
2273 ether_addr_copy(old_addr, net_dev->dev_addr);
Edward Creecd84ff42014-03-07 18:27:41 +00002274 ether_addr_copy(net_dev->dev_addr, new_addr);
Shradha Shah910c8782015-05-20 11:12:48 +01002275 if (efx->type->set_mac_address) {
2276 rc = efx->type->set_mac_address(efx);
Shradha Shahcfc77c22015-05-20 11:09:30 +01002277 if (rc) {
2278 ether_addr_copy(net_dev->dev_addr, old_addr);
2279 return rc;
2280 }
2281 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002282
2283 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002284 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01002285 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002286 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002287
2288 return 0;
2289}
2290
Ben Hutchingsa816f752008-09-01 12:49:12 +01002291/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002292static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002293{
Ben Hutchings767e4682008-09-01 12:43:14 +01002294 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002295
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00002296 if (efx->port_enabled)
2297 queue_work(efx->workqueue, &efx->mac_work);
2298 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002299}
2300
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002301static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002302{
2303 struct efx_nic *efx = netdev_priv(net_dev);
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002304 int rc;
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002305
2306 /* If disabling RX n-tuple filtering, clear existing filters */
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002307 if (net_dev->features & ~data & NETIF_F_NTUPLE) {
2308 rc = efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
2309 if (rc)
2310 return rc;
2311 }
2312
2313 /* If Rx VLAN filter is changed, update filters via mac_reconfigure */
2314 if ((net_dev->features ^ data) & NETIF_F_HW_VLAN_CTAG_FILTER) {
2315 /* efx_set_rx_mode() will schedule MAC work to update filters
2316 * when a new features are finally set in net_dev.
2317 */
2318 efx_set_rx_mode(net_dev);
2319 }
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002320
2321 return 0;
2322}
2323
Wei Yongjunb40296f2017-01-11 16:16:12 +00002324static int efx_get_phys_port_id(struct net_device *net_dev,
2325 struct netdev_phys_item_id *ppid)
Bert Kenward08a7b29b2017-01-10 16:23:33 +00002326{
2327 struct efx_nic *efx = netdev_priv(net_dev);
2328
2329 if (efx->type->get_phys_port_id)
2330 return efx->type->get_phys_port_id(efx, ppid);
2331 else
2332 return -EOPNOTSUPP;
2333}
2334
Bert Kenwardac019f02017-01-10 16:23:56 +00002335static int efx_get_phys_port_name(struct net_device *net_dev,
2336 char *name, size_t len)
2337{
2338 struct efx_nic *efx = netdev_priv(net_dev);
2339
2340 if (snprintf(name, len, "p%u", efx->port_num) >= len)
2341 return -EINVAL;
2342 return 0;
2343}
2344
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002345static int efx_vlan_rx_add_vid(struct net_device *net_dev, __be16 proto, u16 vid)
2346{
2347 struct efx_nic *efx = netdev_priv(net_dev);
2348
2349 if (efx->type->vlan_rx_add_vid)
2350 return efx->type->vlan_rx_add_vid(efx, proto, vid);
2351 else
2352 return -EOPNOTSUPP;
2353}
2354
2355static int efx_vlan_rx_kill_vid(struct net_device *net_dev, __be16 proto, u16 vid)
2356{
2357 struct efx_nic *efx = netdev_priv(net_dev);
2358
2359 if (efx->type->vlan_rx_kill_vid)
2360 return efx->type->vlan_rx_kill_vid(efx, proto, vid);
2361 else
2362 return -EOPNOTSUPP;
2363}
2364
Jon Coopere5fbd972017-02-08 16:52:10 +00002365static int efx_udp_tunnel_type_map(enum udp_parsable_tunnel_type in)
2366{
2367 switch (in) {
2368 case UDP_TUNNEL_TYPE_VXLAN:
2369 return TUNNEL_ENCAP_UDP_PORT_ENTRY_VXLAN;
2370 case UDP_TUNNEL_TYPE_GENEVE:
2371 return TUNNEL_ENCAP_UDP_PORT_ENTRY_GENEVE;
2372 default:
2373 return -1;
2374 }
2375}
2376
2377static void efx_udp_tunnel_add(struct net_device *dev, struct udp_tunnel_info *ti)
2378{
2379 struct efx_nic *efx = netdev_priv(dev);
2380 struct efx_udp_tunnel tnl;
2381 int efx_tunnel_type;
2382
2383 efx_tunnel_type = efx_udp_tunnel_type_map(ti->type);
2384 if (efx_tunnel_type < 0)
2385 return;
2386
2387 tnl.type = (u16)efx_tunnel_type;
2388 tnl.port = ti->port;
2389
2390 if (efx->type->udp_tnl_add_port)
2391 (void)efx->type->udp_tnl_add_port(efx, tnl);
2392}
2393
2394static void efx_udp_tunnel_del(struct net_device *dev, struct udp_tunnel_info *ti)
2395{
2396 struct efx_nic *efx = netdev_priv(dev);
2397 struct efx_udp_tunnel tnl;
2398 int efx_tunnel_type;
2399
2400 efx_tunnel_type = efx_udp_tunnel_type_map(ti->type);
2401 if (efx_tunnel_type < 0)
2402 return;
2403
2404 tnl.type = (u16)efx_tunnel_type;
2405 tnl.port = ti->port;
2406
2407 if (efx->type->udp_tnl_add_port)
2408 (void)efx->type->udp_tnl_del_port(efx, tnl);
2409}
2410
Shradha Shah7fa8d542015-05-06 00:55:13 +01002411static const struct net_device_ops efx_netdev_ops = {
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002412 .ndo_open = efx_net_open,
2413 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00002414 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002415 .ndo_tx_timeout = efx_watchdog,
2416 .ndo_start_xmit = efx_hard_start_xmit,
2417 .ndo_validate_addr = eth_validate_addr,
2418 .ndo_do_ioctl = efx_ioctl,
2419 .ndo_change_mtu = efx_change_mtu,
2420 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002421 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002422 .ndo_set_features = efx_set_features,
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002423 .ndo_vlan_rx_add_vid = efx_vlan_rx_add_vid,
2424 .ndo_vlan_rx_kill_vid = efx_vlan_rx_kill_vid,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002425#ifdef CONFIG_SFC_SRIOV
Shradha Shah7fa8d542015-05-06 00:55:13 +01002426 .ndo_set_vf_mac = efx_sriov_set_vf_mac,
2427 .ndo_set_vf_vlan = efx_sriov_set_vf_vlan,
2428 .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk,
2429 .ndo_get_vf_config = efx_sriov_get_vf_config,
Edward Cree4392dc62015-05-20 11:12:13 +01002430 .ndo_set_vf_link_state = efx_sriov_set_vf_link_state,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002431#endif
Bert Kenward08a7b29b2017-01-10 16:23:33 +00002432 .ndo_get_phys_port_id = efx_get_phys_port_id,
Bert Kenwardac019f02017-01-10 16:23:56 +00002433 .ndo_get_phys_port_name = efx_get_phys_port_name,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002434#ifdef CONFIG_NET_POLL_CONTROLLER
2435 .ndo_poll_controller = efx_netpoll,
2436#endif
Ben Hutchings94b274b2011-01-10 21:18:20 +00002437 .ndo_setup_tc = efx_setup_tc,
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002438#ifdef CONFIG_RFS_ACCEL
2439 .ndo_rx_flow_steer = efx_filter_rfs,
2440#endif
Jon Coopere5fbd972017-02-08 16:52:10 +00002441 .ndo_udp_tunnel_add = efx_udp_tunnel_add,
2442 .ndo_udp_tunnel_del = efx_udp_tunnel_del,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002443};
2444
Ben Hutchings7dde5962008-12-12 22:09:38 -08002445static void efx_update_name(struct efx_nic *efx)
2446{
2447 strcpy(efx->name, efx->net_dev->name);
2448 efx_mtd_rename(efx);
2449 efx_set_channel_names(efx);
2450}
2451
Ben Hutchings8ceee662008-04-27 12:55:59 +01002452static int efx_netdev_event(struct notifier_block *this,
2453 unsigned long event, void *ptr)
2454{
Jiri Pirko351638e2013-05-28 01:30:21 +00002455 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002456
Shradha Shah7fa8d542015-05-06 00:55:13 +01002457 if ((net_dev->netdev_ops == &efx_netdev_ops) &&
Ben Hutchings7dde5962008-12-12 22:09:38 -08002458 event == NETDEV_CHANGENAME)
2459 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002460
2461 return NOTIFY_DONE;
2462}
2463
2464static struct notifier_block efx_netdev_notifier = {
2465 .notifier_call = efx_netdev_event,
2466};
2467
Ben Hutchings06d5e192008-12-12 21:47:23 -08002468static ssize_t
2469show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2470{
2471 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2472 return sprintf(buf, "%d\n", efx->phy_type);
2473}
Ben Hutchings776fbcc2013-06-18 17:45:40 +01002474static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002475
Edward Creee7fef9b2015-05-27 13:14:01 +01002476#ifdef CONFIG_SFC_MCDI_LOGGING
2477static ssize_t show_mcdi_log(struct device *dev, struct device_attribute *attr,
2478 char *buf)
2479{
2480 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2481 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2482
2483 return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled);
2484}
2485static ssize_t set_mcdi_log(struct device *dev, struct device_attribute *attr,
2486 const char *buf, size_t count)
2487{
2488 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2489 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2490 bool enable = count > 0 && *buf != '0';
2491
2492 mcdi->logging_enabled = enable;
2493 return count;
2494}
2495static DEVICE_ATTR(mcdi_logging, 0644, show_mcdi_log, set_mcdi_log);
2496#endif
2497
Ben Hutchings8ceee662008-04-27 12:55:59 +01002498static int efx_register_netdev(struct efx_nic *efx)
2499{
2500 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002501 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002502 int rc;
2503
2504 net_dev->watchdog_timeo = 5 * HZ;
2505 net_dev->irq = efx->pci_dev->irq;
Shradha Shah7fa8d542015-05-06 00:55:13 +01002506 net_dev->netdev_ops = &efx_netdev_ops;
2507 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0)
Ben Hutchings8127d662013-08-29 19:19:29 +01002508 net_dev->priv_flags |= IFF_UNICAST_FLT;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002509 net_dev->ethtool_ops = &efx_ethtool_ops;
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002510 net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
Bert Kenwardcd94e512016-10-18 17:47:45 +01002511 net_dev->min_mtu = EFX_MIN_MTU;
2512 net_dev->max_mtu = EFX_MAX_MTU;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002513
Ben Hutchings7dde5962008-12-12 22:09:38 -08002514 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00002515
Ben Hutchings7153f622012-07-27 20:50:52 +01002516 /* Enable resets to be scheduled and check whether any were
2517 * already requested. If so, the NIC is probably hosed so we
2518 * abort.
2519 */
2520 efx->state = STATE_READY;
2521 smp_mb(); /* ensure we change state before checking reset_pending */
2522 if (efx->reset_pending) {
2523 netif_err(efx, probe, efx->net_dev,
2524 "aborting probe due to scheduled reset\n");
2525 rc = -EIO;
2526 goto fail_locked;
2527 }
2528
Ben Hutchingsaed06282009-08-26 08:16:27 +00002529 rc = dev_alloc_name(net_dev, net_dev->name);
2530 if (rc < 0)
2531 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002532 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002533
Ben Hutchings8f8b3d52012-08-24 18:04:38 +01002534 /* Always start with carrier off; PHY events will detect the link */
2535 netif_carrier_off(net_dev);
2536
Ben Hutchingsaed06282009-08-26 08:16:27 +00002537 rc = register_netdevice(net_dev);
2538 if (rc)
2539 goto fail_locked;
2540
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002541 efx_for_each_channel(channel, efx) {
2542 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00002543 efx_for_each_channel_tx_queue(tx_queue, channel)
2544 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002545 }
2546
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002547 efx_associate(efx);
2548
Ben Hutchings7dde5962008-12-12 22:09:38 -08002549 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002550
Ben Hutchings06d5e192008-12-12 21:47:23 -08002551 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2552 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002553 netif_err(efx, drv, efx->net_dev,
2554 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08002555 goto fail_registered;
2556 }
Edward Creee7fef9b2015-05-27 13:14:01 +01002557#ifdef CONFIG_SFC_MCDI_LOGGING
2558 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2559 if (rc) {
2560 netif_err(efx, drv, efx->net_dev,
2561 "failed to init net dev attributes\n");
2562 goto fail_attr_mcdi_logging;
2563 }
2564#endif
Ben Hutchings06d5e192008-12-12 21:47:23 -08002565
Ben Hutchings8ceee662008-04-27 12:55:59 +01002566 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08002567
Edward Creee7fef9b2015-05-27 13:14:01 +01002568#ifdef CONFIG_SFC_MCDI_LOGGING
2569fail_attr_mcdi_logging:
2570 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2571#endif
Ben Hutchings7153f622012-07-27 20:50:52 +01002572fail_registered:
2573 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002574 efx_dissociate(efx);
Ben Hutchings7153f622012-07-27 20:50:52 +01002575 unregister_netdevice(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002576fail_locked:
Ben Hutchings7153f622012-07-27 20:50:52 +01002577 efx->state = STATE_UNINIT;
Ben Hutchingsaed06282009-08-26 08:16:27 +00002578 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00002579 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00002580 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002581}
2582
2583static void efx_unregister_netdev(struct efx_nic *efx)
2584{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002585 if (!efx->net_dev)
2586 return;
2587
Ben Hutchings767e4682008-09-01 12:43:14 +01002588 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002589
Edward Creee7fef9b2015-05-27 13:14:01 +01002590 if (efx_dev_registered(efx)) {
2591 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2592#ifdef CONFIG_SFC_MCDI_LOGGING
2593 device_remove_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2594#endif
2595 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2596 unregister_netdev(efx->net_dev);
2597 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002598}
2599
2600/**************************************************************************
2601 *
2602 * Device reset and suspend
2603 *
2604 **************************************************************************/
2605
Ben Hutchings2467ca42008-09-01 12:48:50 +01002606/* Tears down the entire software state and most of the hardware state
2607 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002608void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002609{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002610 EFX_ASSERT_RESET_SERIALISED(efx);
2611
Edward Creee2835462014-04-16 19:27:48 +01002612 if (method == RESET_TYPE_MCDI_TIMEOUT)
2613 efx->type->prepare_flr(efx);
2614
Ben Hutchings2467ca42008-09-01 12:48:50 +01002615 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002616 efx_disable_interrupts(efx);
Ben Hutchings5642cee2012-07-27 19:35:52 +01002617
2618 mutex_lock(&efx->mac_lock);
Jon Cooper087e9022015-05-20 11:11:35 +01002619 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2620 method != RESET_TYPE_DATAPATH)
Steve Hodgson4b988282009-01-29 17:50:51 +00002621 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002622 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002623}
2624
Ben Hutchings2467ca42008-09-01 12:48:50 +01002625/* This function will always ensure that the locks acquired in
2626 * efx_reset_down() are released. A failure return code indicates
2627 * that we were unable to reinitialise the hardware, and the
2628 * driver should be disabled. If ok is false, then the rx and tx
2629 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002630int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002631{
2632 int rc;
2633
Ben Hutchings2467ca42008-09-01 12:48:50 +01002634 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002635
Edward Creee2835462014-04-16 19:27:48 +01002636 if (method == RESET_TYPE_MCDI_TIMEOUT)
2637 efx->type->finish_flr(efx);
2638
2639 /* Ensure that SRAM is initialised even if we're disabling the device */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002640 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002641 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002642 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002643 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002644 }
2645
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002646 if (!ok)
2647 goto fail;
2648
Jon Cooper087e9022015-05-20 11:11:35 +01002649 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2650 method != RESET_TYPE_DATAPATH) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002651 rc = efx->phy_op->init(efx);
2652 if (rc)
2653 goto fail;
Edward Cree267d9d72015-05-06 00:59:18 +01002654 rc = efx->phy_op->reconfigure(efx);
2655 if (rc && rc != -EPERM)
Ben Hutchings62776d02010-06-23 11:30:07 +00002656 netif_err(efx, drv, efx->net_dev,
2657 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002658 }
2659
Jon Cooper261e4d92013-04-15 18:51:54 +01002660 rc = efx_enable_interrupts(efx);
2661 if (rc)
2662 goto fail;
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002663
2664#ifdef CONFIG_SFC_SRIOV
2665 rc = efx->type->vswitching_restore(efx);
2666 if (rc) /* not fatal; the PF will still work fine */
2667 netif_warn(efx, probe, efx->net_dev,
2668 "failed to restore vswitching rc=%d;"
2669 " VFs may not function\n", rc);
2670#endif
2671
Edward Cree0d322412015-05-20 11:10:03 +01002672 down_read(&efx->filter_sem);
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002673 efx_restore_filters(efx);
Edward Cree0d322412015-05-20 11:10:03 +01002674 up_read(&efx->filter_sem);
Shradha Shah7fa8d542015-05-06 00:55:13 +01002675 if (efx->type->sriov_reset)
2676 efx->type->sriov_reset(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002677
2678 mutex_unlock(&efx->mac_lock);
2679
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002680 efx_start_all(efx);
2681
Jon Coopere5fbd972017-02-08 16:52:10 +00002682 if (efx->type->udp_tnl_push_ports)
2683 efx->type->udp_tnl_push_ports(efx);
2684
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002685 return 0;
2686
2687fail:
2688 efx->port_initialized = false;
2689
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002690 mutex_unlock(&efx->mac_lock);
2691
Ben Hutchings8ceee662008-04-27 12:55:59 +01002692 return rc;
2693}
2694
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002695/* Reset the NIC using the specified method. Note that the reset may
2696 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002697 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002698 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002699 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002700int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002701{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002702 int rc, rc2;
2703 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002704
Ben Hutchings62776d02010-06-23 11:30:07 +00002705 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2706 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002707
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002708 efx_device_detach_sync(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002709 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002710
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002711 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002712 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002713 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002714 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002715 }
2716
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002717 /* Clear flags for the scopes we covered. We assume the NIC and
2718 * driver are now quiescent so that there is no race here.
2719 */
Edward Creee2835462014-04-16 19:27:48 +01002720 if (method < RESET_TYPE_MAX_METHOD)
2721 efx->reset_pending &= -(1 << (method + 1));
2722 else /* it doesn't fit into the well-ordered scope hierarchy */
2723 __clear_bit(method, &efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002724
2725 /* Reinitialise bus-mastering, which may have been turned off before
2726 * the reset was scheduled. This is still appropriate, even in the
2727 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2728 * can respond to requests. */
2729 pci_set_master(efx->pci_dev);
2730
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002731out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002732 /* Leave device stopped if necessary */
Alexandre Rames626950d2013-01-14 17:20:22 +00002733 disabled = rc ||
2734 method == RESET_TYPE_DISABLE ||
2735 method == RESET_TYPE_RECOVER_OR_DISABLE;
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002736 rc2 = efx_reset_up(efx, method, !disabled);
2737 if (rc2) {
2738 disabled = true;
2739 if (!rc)
2740 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002741 }
2742
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002743 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002744 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002745 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002746 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002747 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002748 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Peter Dunning9c568fd2017-02-17 15:50:43 +00002749 efx_device_attach_if_not_resetting(efx);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002750 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002751 return rc;
2752}
2753
Alexandre Rames626950d2013-01-14 17:20:22 +00002754/* Try recovery mechanisms.
2755 * For now only EEH is supported.
2756 * Returns 0 if the recovery mechanisms are unsuccessful.
2757 * Returns a non-zero value otherwise.
2758 */
Alexandre Ramesb28405b2013-03-21 16:41:43 +00002759int efx_try_recovery(struct efx_nic *efx)
Alexandre Rames626950d2013-01-14 17:20:22 +00002760{
2761#ifdef CONFIG_EEH
2762 /* A PCI error can occur and not be seen by EEH because nothing
2763 * happens on the PCI bus. In this case the driver may fail and
2764 * schedule a 'recover or reset', leading to this recovery handler.
2765 * Manually call the eeh failure check function.
2766 */
Benjamin Herrenschmidt12a89db2015-03-23 14:00:47 +11002767 struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002768 if (eeh_dev_check_failure(eehdev)) {
2769 /* The EEH mechanisms will handle the error and reset the
2770 * device if necessary.
2771 */
2772 return 1;
2773 }
2774#endif
2775 return 0;
2776}
2777
Jon Cooper74cd60a2013-09-16 14:18:51 +01002778static void efx_wait_for_bist_end(struct efx_nic *efx)
2779{
2780 int i;
2781
2782 for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
2783 if (efx_mcdi_poll_reboot(efx))
2784 goto out;
2785 msleep(BIST_WAIT_DELAY_MS);
2786 }
2787
2788 netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
2789out:
2790 /* Either way unset the BIST flag. If we found no reboot we probably
2791 * won't recover, but we should try.
2792 */
2793 efx->mc_bist_for_other_fn = false;
2794}
2795
Ben Hutchings8ceee662008-04-27 12:55:59 +01002796/* The worker thread exists so that code that cannot sleep can
2797 * schedule a reset for later.
2798 */
2799static void efx_reset_work(struct work_struct *data)
2800{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002801 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Alexandre Rames626950d2013-01-14 17:20:22 +00002802 unsigned long pending;
2803 enum reset_type method;
2804
2805 pending = ACCESS_ONCE(efx->reset_pending);
2806 method = fls(pending) - 1;
2807
Jon Cooper74cd60a2013-09-16 14:18:51 +01002808 if (method == RESET_TYPE_MC_BIST)
2809 efx_wait_for_bist_end(efx);
2810
Alexandre Rames626950d2013-01-14 17:20:22 +00002811 if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
2812 method == RESET_TYPE_RECOVER_OR_ALL) &&
2813 efx_try_recovery(efx))
2814 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002815
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002816 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00002817 return;
2818
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002819 rtnl_lock();
Ben Hutchings7153f622012-07-27 20:50:52 +01002820
2821 /* We checked the state in efx_schedule_reset() but it may
2822 * have changed by now. Now that we have the RTNL lock,
2823 * it cannot change again.
2824 */
2825 if (efx->state == STATE_READY)
Alexandre Rames626950d2013-01-14 17:20:22 +00002826 (void)efx_reset(efx, method);
Ben Hutchings7153f622012-07-27 20:50:52 +01002827
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002828 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002829}
2830
2831void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2832{
2833 enum reset_type method;
2834
Alexandre Rames626950d2013-01-14 17:20:22 +00002835 if (efx->state == STATE_RECOVERY) {
2836 netif_dbg(efx, drv, efx->net_dev,
2837 "recovering: skip scheduling %s reset\n",
2838 RESET_TYPE(type));
2839 return;
2840 }
2841
Ben Hutchings8ceee662008-04-27 12:55:59 +01002842 switch (type) {
2843 case RESET_TYPE_INVISIBLE:
2844 case RESET_TYPE_ALL:
Alexandre Rames626950d2013-01-14 17:20:22 +00002845 case RESET_TYPE_RECOVER_OR_ALL:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002846 case RESET_TYPE_WORLD:
2847 case RESET_TYPE_DISABLE:
Alexandre Rames626950d2013-01-14 17:20:22 +00002848 case RESET_TYPE_RECOVER_OR_DISABLE:
Jon Cooper087e9022015-05-20 11:11:35 +01002849 case RESET_TYPE_DATAPATH:
Jon Cooper74cd60a2013-09-16 14:18:51 +01002850 case RESET_TYPE_MC_BIST:
Edward Creee2835462014-04-16 19:27:48 +01002851 case RESET_TYPE_MCDI_TIMEOUT:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002852 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002853 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2854 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002855 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002856 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002857 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00002858 netif_dbg(efx, drv, efx->net_dev,
2859 "scheduling %s reset for %s\n",
2860 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002861 break;
2862 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002863
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002864 set_bit(method, &efx->reset_pending);
Ben Hutchings7153f622012-07-27 20:50:52 +01002865 smp_mb(); /* ensure we change reset_pending before checking state */
2866
2867 /* If we're not READY then just leave the flags set as the cue
2868 * to abort probing or reschedule the reset later.
2869 */
2870 if (ACCESS_ONCE(efx->state) != STATE_READY)
2871 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002872
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002873 /* efx_process_channel() will no longer read events once a
2874 * reset is scheduled. So switch back to poll'd MCDI completions. */
2875 efx_mcdi_mode_poll(efx);
2876
Steve Hodgson1ab00622008-12-12 21:33:02 -08002877 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002878}
2879
2880/**************************************************************************
2881 *
2882 * List of NICs we support
2883 *
2884 **************************************************************************/
2885
2886/* PCI device ID table */
Benoit Taine9baa3c32014-08-08 15:56:03 +02002887static const struct pci_device_id efx_pci_table[] = {
Ben Hutchings547c4742011-12-02 18:23:56 +00002888 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002889 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002890 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002891 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8127d662013-08-29 19:19:29 +01002892 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */
2893 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01002894 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1903), /* SFC9120 VF */
2895 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Mateusz Wrzesinski3b06a002014-07-14 08:38:49 +01002896 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923), /* SFC9140 PF */
2897 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Bert Kenwarddd248f12015-11-30 09:05:47 +00002898 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1923), /* SFC9140 VF */
2899 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
2900 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0a03), /* SFC9220 PF */
2901 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
2902 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1a03), /* SFC9220 VF */
2903 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002904 {0} /* end of list */
2905};
2906
2907/**************************************************************************
2908 *
Ben Hutchings37594332009-11-23 16:05:45 +00002909 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002910 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002911 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002912 * Needed so all function pointers are valid and do not have to be tested
2913 * before use
2914 *
2915 **************************************************************************/
2916int efx_port_dummy_op_int(struct efx_nic *efx)
2917{
2918 return 0;
2919}
2920void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002921
2922static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002923{
2924 return false;
2925}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002926
stephen hemminger6c8c2512011-04-14 05:50:12 +00002927static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002928 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002929 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002930 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002931 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002932};
2933
Ben Hutchings8ceee662008-04-27 12:55:59 +01002934/**************************************************************************
2935 *
2936 * Data housekeeping
2937 *
2938 **************************************************************************/
2939
2940/* This zeroes out and then fills in the invariants in a struct
2941 * efx_nic (including all sub-structures).
2942 */
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002943static int efx_init_struct(struct efx_nic *efx,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002944 struct pci_dev *pci_dev, struct net_device *net_dev)
2945{
Andrew Rybchenko6f9f6ec2017-02-13 14:57:39 +00002946 int rc = -ENOMEM, i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002947
2948 /* Initialise common structures */
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002949 INIT_LIST_HEAD(&efx->node);
2950 INIT_LIST_HEAD(&efx->secondary_list);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002951 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002952#ifdef CONFIG_SFC_MTD
2953 INIT_LIST_HEAD(&efx->mtd_list);
2954#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002955 INIT_WORK(&efx->reset_work, efx_reset_work);
2956 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002957 INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002958 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002959 efx->msg_enable = debug;
Ben Hutchingsf16aeea2012-07-27 19:31:16 +01002960 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002961 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002962
2963 efx->net_dev = net_dev;
Jon Cooper43a37392012-10-18 15:49:54 +01002964 efx->rx_prefix_size = efx->type->rx_prefix_size;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +04002965 efx->rx_ip_align =
2966 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
Jon Cooper43a37392012-10-18 15:49:54 +01002967 efx->rx_packet_hash_offset =
2968 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
Jon Cooperbd9a2652013-11-18 12:54:41 +00002969 efx->rx_packet_ts_offset =
2970 efx->type->rx_ts_offset - efx->type->rx_prefix_size;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002971 spin_lock_init(&efx->stats_lock);
2972 mutex_init(&efx->mac_lock);
2973 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002974 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002975 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002976 init_waitqueue_head(&efx->flush_wq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002977
2978 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002979 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2980 if (!efx->channel[i])
2981 goto fail;
Ben Hutchingsd8291182012-10-05 23:35:41 +01002982 efx->msi_context[i].efx = efx;
2983 efx->msi_context[i].index = i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002984 }
2985
Ben Hutchings8ceee662008-04-27 12:55:59 +01002986 /* Higher numbered interrupt modes are less capable! */
Andrew Rybchenko6f9f6ec2017-02-13 14:57:39 +00002987 if (WARN_ON_ONCE(efx->type->max_interrupt_mode >
2988 efx->type->min_interrupt_mode)) {
2989 rc = -EIO;
2990 goto fail;
2991 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002992 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2993 interrupt_mode);
Andrew Rybchenko6f9f6ec2017-02-13 14:57:39 +00002994 efx->interrupt_mode = min(efx->type->min_interrupt_mode,
2995 interrupt_mode);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002996
Ben Hutchings6977dc62008-12-26 13:44:39 -08002997 /* Would be good to use the net_dev name, but we're too early */
2998 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2999 pci_name(pci_dev));
3000 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003001 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00003002 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01003003
Ben Hutchings8ceee662008-04-27 12:55:59 +01003004 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00003005
3006fail:
3007 efx_fini_struct(efx);
Andrew Rybchenko6f9f6ec2017-02-13 14:57:39 +00003008 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003009}
3010
3011static void efx_fini_struct(struct efx_nic *efx)
3012{
Ben Hutchings8313aca2010-09-10 06:41:57 +00003013 int i;
3014
3015 for (i = 0; i < EFX_MAX_CHANNELS; i++)
3016 kfree(efx->channel[i]);
3017
Ben Hutchingsef215e62013-12-05 20:13:22 +00003018 kfree(efx->vpd_sn);
3019
Ben Hutchings8ceee662008-04-27 12:55:59 +01003020 if (efx->workqueue) {
3021 destroy_workqueue(efx->workqueue);
3022 efx->workqueue = NULL;
3023 }
3024}
3025
Edward Creee4d112e2014-07-15 11:58:12 +01003026void efx_update_sw_stats(struct efx_nic *efx, u64 *stats)
3027{
3028 u64 n_rx_nodesc_trunc = 0;
3029 struct efx_channel *channel;
3030
3031 efx_for_each_channel(channel, efx)
3032 n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc;
3033 stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc;
3034 stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops);
3035}
3036
Ben Hutchings8ceee662008-04-27 12:55:59 +01003037/**************************************************************************
3038 *
3039 * PCI interface
3040 *
3041 **************************************************************************/
3042
3043/* Main body of final NIC shutdown code
3044 * This is called only at module unload (or hotplug removal).
3045 */
3046static void efx_pci_remove_main(struct efx_nic *efx)
3047{
Ben Hutchings7153f622012-07-27 20:50:52 +01003048 /* Flush reset_work. It can no longer be scheduled since we
3049 * are not READY.
3050 */
3051 BUG_ON(efx->state == STATE_READY);
3052 cancel_work_sync(&efx->reset_work);
3053
Ben Hutchingsd8291182012-10-05 23:35:41 +01003054 efx_disable_interrupts(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00003055 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003056 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003057 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003058 efx_fini_napi(efx);
3059 efx_remove_all(efx);
3060}
3061
3062/* Final NIC shutdown
Daniel Pieczko2a3fc312015-06-02 11:40:46 +01003063 * This is called only at module unload (or hotplug removal). A PF can call
3064 * this on its VFs to ensure they are unbound first.
Ben Hutchings8ceee662008-04-27 12:55:59 +01003065 */
3066static void efx_pci_remove(struct pci_dev *pci_dev)
3067{
3068 struct efx_nic *efx;
3069
3070 efx = pci_get_drvdata(pci_dev);
3071 if (!efx)
3072 return;
3073
3074 /* Mark the NIC as fini, then stop the interface */
3075 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01003076 efx_dissociate(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003077 dev_close(efx->net_dev);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003078 efx_disable_interrupts(efx);
Edward Creeea6bb992015-06-15 18:27:54 +01003079 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003080 rtnl_unlock();
3081
Shradha Shah7fa8d542015-05-06 00:55:13 +01003082 if (efx->type->sriov_fini)
3083 efx->type->sriov_fini(efx);
3084
Ben Hutchings8ceee662008-04-27 12:55:59 +01003085 efx_unregister_netdev(efx);
3086
Ben Hutchings7dde5962008-12-12 22:09:38 -08003087 efx_mtd_remove(efx);
3088
Ben Hutchings8ceee662008-04-27 12:55:59 +01003089 efx_pci_remove_main(efx);
3090
Ben Hutchings8ceee662008-04-27 12:55:59 +01003091 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003092 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003093
Ben Hutchings8ceee662008-04-27 12:55:59 +01003094 efx_fini_struct(efx);
3095 free_netdev(efx->net_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00003096
3097 pci_disable_pcie_error_reporting(pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003098};
3099
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003100/* NIC VPD information
3101 * Called during probe to display the part number of the
3102 * installed NIC. VPD is potentially very large but this should
3103 * always appear within the first 512 bytes.
3104 */
3105#define SFC_VPD_LEN 512
Ben Hutchingsef215e62013-12-05 20:13:22 +00003106static void efx_probe_vpd_strings(struct efx_nic *efx)
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003107{
3108 struct pci_dev *dev = efx->pci_dev;
3109 char vpd_data[SFC_VPD_LEN];
3110 ssize_t vpd_size;
Ben Hutchingsef215e62013-12-05 20:13:22 +00003111 int ro_start, ro_size, i, j;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003112
3113 /* Get the vpd data from the device */
3114 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
3115 if (vpd_size <= 0) {
3116 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
3117 return;
3118 }
3119
3120 /* Get the Read only section */
Ben Hutchingsef215e62013-12-05 20:13:22 +00003121 ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
3122 if (ro_start < 0) {
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003123 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
3124 return;
3125 }
3126
Ben Hutchingsef215e62013-12-05 20:13:22 +00003127 ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
3128 j = ro_size;
3129 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003130 if (i + j > vpd_size)
3131 j = vpd_size - i;
3132
3133 /* Get the Part number */
3134 i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
3135 if (i < 0) {
3136 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
3137 return;
3138 }
3139
3140 j = pci_vpd_info_field_size(&vpd_data[i]);
3141 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3142 if (i + j > vpd_size) {
3143 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
3144 return;
3145 }
3146
3147 netif_info(efx, drv, efx->net_dev,
3148 "Part Number : %.*s\n", j, &vpd_data[i]);
Ben Hutchingsef215e62013-12-05 20:13:22 +00003149
3150 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
3151 j = ro_size;
3152 i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN");
3153 if (i < 0) {
3154 netif_err(efx, drv, efx->net_dev, "Serial number not found\n");
3155 return;
3156 }
3157
3158 j = pci_vpd_info_field_size(&vpd_data[i]);
3159 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3160 if (i + j > vpd_size) {
3161 netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n");
3162 return;
3163 }
3164
3165 efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL);
3166 if (!efx->vpd_sn)
3167 return;
3168
3169 snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003170}
3171
3172
Ben Hutchings8ceee662008-04-27 12:55:59 +01003173/* Main body of NIC initialisation
3174 * This is called at module load (or hotplug insertion, theoretically).
3175 */
3176static int efx_pci_probe_main(struct efx_nic *efx)
3177{
3178 int rc;
3179
3180 /* Do start-of-day initialisation */
3181 rc = efx_probe_all(efx);
3182 if (rc)
3183 goto fail1;
3184
Ben Hutchingse8f14992010-12-07 19:47:34 +00003185 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003186
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003187 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003188 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003189 netif_err(efx, probe, efx->net_dev,
3190 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003191 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003192 }
3193
3194 rc = efx_init_port(efx);
3195 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003196 netif_err(efx, probe, efx->net_dev,
3197 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003198 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003199 }
3200
Ben Hutchings152b6a62009-11-29 03:43:56 +00003201 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003202 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00003203 goto fail5;
Jon Cooper261e4d92013-04-15 18:51:54 +01003204 rc = efx_enable_interrupts(efx);
3205 if (rc)
3206 goto fail6;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003207
3208 return 0;
3209
Jon Cooper261e4d92013-04-15 18:51:54 +01003210 fail6:
3211 efx_nic_fini_interrupt(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00003212 fail5:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003213 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003214 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003215 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003216 fail3:
3217 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003218 efx_remove_all(efx);
3219 fail1:
3220 return rc;
3221}
3222
Jon Cooper8a531402017-02-08 16:51:18 +00003223static int efx_pci_probe_post_io(struct efx_nic *efx)
3224{
3225 struct net_device *net_dev = efx->net_dev;
3226 int rc = efx_pci_probe_main(efx);
3227
3228 if (rc)
3229 return rc;
3230
3231 if (efx->type->sriov_init) {
3232 rc = efx->type->sriov_init(efx);
3233 if (rc)
3234 netif_err(efx, probe, efx->net_dev,
3235 "SR-IOV can't be enabled rc %d\n", rc);
3236 }
3237
3238 /* Determine netdevice features */
3239 net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
3240 NETIF_F_TSO | NETIF_F_RXCSUM);
3241 if (efx->type->offload_features & (NETIF_F_IPV6_CSUM | NETIF_F_HW_CSUM))
3242 net_dev->features |= NETIF_F_TSO6;
3243 /* Check whether device supports TSO */
3244 if (!efx->type->tso_versions || !efx->type->tso_versions(efx))
3245 net_dev->features &= ~NETIF_F_ALL_TSO;
3246 /* Mask for features that also apply to VLAN devices */
3247 net_dev->vlan_features |= (NETIF_F_HW_CSUM | NETIF_F_SG |
3248 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
3249 NETIF_F_RXCSUM);
3250
3251 net_dev->hw_features = net_dev->features & ~efx->fixed_features;
3252
3253 /* Disable VLAN filtering by default. It may be enforced if
3254 * the feature is fixed (i.e. VLAN filters are required to
3255 * receive VLAN tagged packets due to vPort restrictions).
3256 */
3257 net_dev->features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
3258 net_dev->features |= efx->fixed_features;
3259
3260 rc = efx_register_netdev(efx);
3261 if (!rc)
3262 return 0;
3263
3264 efx_pci_remove_main(efx);
3265 return rc;
3266}
3267
Ben Hutchings8ceee662008-04-27 12:55:59 +01003268/* NIC initialisation
3269 *
3270 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00003271 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003272 * sets up and registers the network devices with the kernel and hooks
3273 * the interrupt service routine. It does not prepare the device for
3274 * transmission; this is left to the first time one of the network
3275 * interfaces is brought up (i.e. efx_net_open).
3276 */
Bill Pemberton87d1fc12012-12-03 09:23:32 -05003277static int efx_pci_probe(struct pci_dev *pci_dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00003278 const struct pci_device_id *entry)
Ben Hutchings8ceee662008-04-27 12:55:59 +01003279{
Ben Hutchings8ceee662008-04-27 12:55:59 +01003280 struct net_device *net_dev;
3281 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003282 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003283
3284 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00003285 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
3286 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003287 if (!net_dev)
3288 return -ENOMEM;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003289 efx = netdev_priv(net_dev);
3290 efx->type = (const struct efx_nic_type *) entry->driver_data;
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +01003291 efx->fixed_features |= NETIF_F_HIGHDMA;
Andrew Rybchenkoeb7cfd82016-06-15 17:51:36 +01003292
Ben Hutchings8ceee662008-04-27 12:55:59 +01003293 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003294 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003295 rc = efx_init_struct(efx, pci_dev, net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003296 if (rc)
3297 goto fail1;
3298
Ben Hutchings62776d02010-06-23 11:30:07 +00003299 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01003300 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003301
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01003302 if (!efx->type->is_vf)
3303 efx_probe_vpd_strings(efx);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003304
Ben Hutchings8ceee662008-04-27 12:55:59 +01003305 /* Set up basic I/O (BAR mappings etc) */
3306 rc = efx_init_io(efx);
3307 if (rc)
3308 goto fail2;
3309
Jon Cooper8a531402017-02-08 16:51:18 +00003310 rc = efx_pci_probe_post_io(efx);
3311 if (rc) {
3312 /* On failure, retry once immediately.
3313 * If we aborted probe due to a scheduled reset, dismiss it.
3314 */
3315 efx->reset_pending = 0;
3316 rc = efx_pci_probe_post_io(efx);
3317 if (rc) {
3318 /* On another failure, retry once more
3319 * after a 50-305ms delay.
3320 */
3321 unsigned char r;
3322
3323 get_random_bytes(&r, 1);
3324 msleep((unsigned int)r + 50);
3325 efx->reset_pending = 0;
3326 rc = efx_pci_probe_post_io(efx);
3327 }
3328 }
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003329 if (rc)
3330 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08003331
Ben Hutchings62776d02010-06-23 11:30:07 +00003332 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003333
Ben Hutchings7c431612012-01-27 17:23:58 +00003334 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003335 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003336 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003337 rtnl_unlock();
Bert Kenward09a04202015-12-23 08:58:15 +00003338 if (rc && rc != -EPERM)
Ben Hutchings7c431612012-01-27 17:23:58 +00003339 netif_warn(efx, probe, efx->net_dev,
3340 "failed to create MTDs (%d)\n", rc);
3341
Alexandre Rames626950d2013-01-14 17:20:22 +00003342 rc = pci_enable_pcie_error_reporting(pci_dev);
3343 if (rc && rc != -EINVAL)
Bert Kenward09a04202015-12-23 08:58:15 +00003344 netif_notice(efx, probe, efx->net_dev,
3345 "PCIE error reporting unavailable (%d).\n",
3346 rc);
Alexandre Rames626950d2013-01-14 17:20:22 +00003347
Jon Coopere5fbd972017-02-08 16:52:10 +00003348 if (efx->type->udp_tnl_push_ports)
3349 efx->type->udp_tnl_push_ports(efx);
3350
Ben Hutchings8ceee662008-04-27 12:55:59 +01003351 return 0;
3352
Ben Hutchings8ceee662008-04-27 12:55:59 +01003353 fail3:
3354 efx_fini_io(efx);
3355 fail2:
3356 efx_fini_struct(efx);
3357 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08003358 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00003359 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003360 free_netdev(net_dev);
3361 return rc;
3362}
3363
Shradha Shah834e23d2015-05-06 00:55:58 +01003364/* efx_pci_sriov_configure returns the actual number of Virtual Functions
3365 * enabled on success
3366 */
3367#ifdef CONFIG_SFC_SRIOV
3368static int efx_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
3369{
3370 int rc;
3371 struct efx_nic *efx = pci_get_drvdata(dev);
3372
3373 if (efx->type->sriov_configure) {
3374 rc = efx->type->sriov_configure(efx, num_vfs);
3375 if (rc)
3376 return rc;
3377 else
3378 return num_vfs;
3379 } else
3380 return -EOPNOTSUPP;
3381}
3382#endif
3383
Ben Hutchings89c758f2009-11-29 03:43:07 +00003384static int efx_pm_freeze(struct device *dev)
3385{
3386 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3387
Ben Hutchings61da0262012-07-27 19:35:39 +01003388 rtnl_lock();
3389
Ben Hutchings6032fb52012-07-27 19:35:47 +01003390 if (efx->state != STATE_DISABLED) {
3391 efx->state = STATE_UNINIT;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003392
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01003393 efx_device_detach_sync(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003394
Ben Hutchings6032fb52012-07-27 19:35:47 +01003395 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003396 efx_disable_interrupts(efx);
Ben Hutchings6032fb52012-07-27 19:35:47 +01003397 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003398
Ben Hutchings61da0262012-07-27 19:35:39 +01003399 rtnl_unlock();
3400
Ben Hutchings89c758f2009-11-29 03:43:07 +00003401 return 0;
3402}
3403
3404static int efx_pm_thaw(struct device *dev)
3405{
Jon Cooper261e4d92013-04-15 18:51:54 +01003406 int rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003407 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3408
Ben Hutchings61da0262012-07-27 19:35:39 +01003409 rtnl_lock();
3410
Ben Hutchings6032fb52012-07-27 19:35:47 +01003411 if (efx->state != STATE_DISABLED) {
Jon Cooper261e4d92013-04-15 18:51:54 +01003412 rc = efx_enable_interrupts(efx);
3413 if (rc)
3414 goto fail;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003415
Ben Hutchings6032fb52012-07-27 19:35:47 +01003416 mutex_lock(&efx->mac_lock);
3417 efx->phy_op->reconfigure(efx);
3418 mutex_unlock(&efx->mac_lock);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003419
Ben Hutchings6032fb52012-07-27 19:35:47 +01003420 efx_start_all(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003421
Peter Dunning9c568fd2017-02-17 15:50:43 +00003422 efx_device_attach_if_not_resetting(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003423
Ben Hutchings6032fb52012-07-27 19:35:47 +01003424 efx->state = STATE_READY;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003425
Ben Hutchings6032fb52012-07-27 19:35:47 +01003426 efx->type->resume_wol(efx);
3427 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003428
Ben Hutchings61da0262012-07-27 19:35:39 +01003429 rtnl_unlock();
3430
Steve Hodgson319ba642010-06-01 11:17:24 +00003431 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
3432 queue_work(reset_workqueue, &efx->reset_work);
3433
Ben Hutchings89c758f2009-11-29 03:43:07 +00003434 return 0;
Jon Cooper261e4d92013-04-15 18:51:54 +01003435
3436fail:
3437 rtnl_unlock();
3438
3439 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003440}
3441
3442static int efx_pm_poweroff(struct device *dev)
3443{
3444 struct pci_dev *pci_dev = to_pci_dev(dev);
3445 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3446
3447 efx->type->fini(efx);
3448
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003449 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003450
3451 pci_save_state(pci_dev);
3452 return pci_set_power_state(pci_dev, PCI_D3hot);
3453}
3454
3455/* Used for both resume and restore */
3456static int efx_pm_resume(struct device *dev)
3457{
3458 struct pci_dev *pci_dev = to_pci_dev(dev);
3459 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3460 int rc;
3461
3462 rc = pci_set_power_state(pci_dev, PCI_D0);
3463 if (rc)
3464 return rc;
3465 pci_restore_state(pci_dev);
3466 rc = pci_enable_device(pci_dev);
3467 if (rc)
3468 return rc;
3469 pci_set_master(efx->pci_dev);
3470 rc = efx->type->reset(efx, RESET_TYPE_ALL);
3471 if (rc)
3472 return rc;
3473 rc = efx->type->init(efx);
3474 if (rc)
3475 return rc;
Jon Cooper261e4d92013-04-15 18:51:54 +01003476 rc = efx_pm_thaw(dev);
3477 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003478}
3479
3480static int efx_pm_suspend(struct device *dev)
3481{
3482 int rc;
3483
3484 efx_pm_freeze(dev);
3485 rc = efx_pm_poweroff(dev);
3486 if (rc)
3487 efx_pm_resume(dev);
3488 return rc;
3489}
3490
Ben Hutchings18e83e42012-01-05 19:05:20 +00003491static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00003492 .suspend = efx_pm_suspend,
3493 .resume = efx_pm_resume,
3494 .freeze = efx_pm_freeze,
3495 .thaw = efx_pm_thaw,
3496 .poweroff = efx_pm_poweroff,
3497 .restore = efx_pm_resume,
3498};
3499
Alexandre Rames626950d2013-01-14 17:20:22 +00003500/* A PCI error affecting this device was detected.
3501 * At this point MMIO and DMA may be disabled.
3502 * Stop the software path and request a slot reset.
3503 */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003504static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3505 enum pci_channel_state state)
Alexandre Rames626950d2013-01-14 17:20:22 +00003506{
3507 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3508 struct efx_nic *efx = pci_get_drvdata(pdev);
3509
3510 if (state == pci_channel_io_perm_failure)
3511 return PCI_ERS_RESULT_DISCONNECT;
3512
3513 rtnl_lock();
3514
3515 if (efx->state != STATE_DISABLED) {
3516 efx->state = STATE_RECOVERY;
3517 efx->reset_pending = 0;
3518
3519 efx_device_detach_sync(efx);
3520
3521 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003522 efx_disable_interrupts(efx);
Alexandre Rames626950d2013-01-14 17:20:22 +00003523
3524 status = PCI_ERS_RESULT_NEED_RESET;
3525 } else {
3526 /* If the interface is disabled we don't want to do anything
3527 * with it.
3528 */
3529 status = PCI_ERS_RESULT_RECOVERED;
3530 }
3531
3532 rtnl_unlock();
3533
3534 pci_disable_device(pdev);
3535
3536 return status;
3537}
3538
Joe Perchesdbedd442015-03-06 20:49:12 -08003539/* Fake a successful reset, which will be performed later in efx_io_resume. */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003540static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
Alexandre Rames626950d2013-01-14 17:20:22 +00003541{
3542 struct efx_nic *efx = pci_get_drvdata(pdev);
3543 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3544 int rc;
3545
3546 if (pci_enable_device(pdev)) {
3547 netif_err(efx, hw, efx->net_dev,
3548 "Cannot re-enable PCI device after reset.\n");
3549 status = PCI_ERS_RESULT_DISCONNECT;
3550 }
3551
3552 rc = pci_cleanup_aer_uncorrect_error_status(pdev);
3553 if (rc) {
3554 netif_err(efx, hw, efx->net_dev,
3555 "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc);
3556 /* Non-fatal error. Continue. */
3557 }
3558
3559 return status;
3560}
3561
3562/* Perform the actual reset and resume I/O operations. */
3563static void efx_io_resume(struct pci_dev *pdev)
3564{
3565 struct efx_nic *efx = pci_get_drvdata(pdev);
3566 int rc;
3567
3568 rtnl_lock();
3569
3570 if (efx->state == STATE_DISABLED)
3571 goto out;
3572
3573 rc = efx_reset(efx, RESET_TYPE_ALL);
3574 if (rc) {
3575 netif_err(efx, hw, efx->net_dev,
3576 "efx_reset failed after PCI error (%d)\n", rc);
3577 } else {
3578 efx->state = STATE_READY;
3579 netif_dbg(efx, hw, efx->net_dev,
3580 "Done resetting and resuming IO after PCI error.\n");
3581 }
3582
3583out:
3584 rtnl_unlock();
3585}
3586
3587/* For simplicity and reliability, we always require a slot reset and try to
3588 * reset the hardware when a pci error affecting the device is detected.
3589 * We leave both the link_reset and mmio_enabled callback unimplemented:
3590 * with our request for slot reset the mmio_enabled callback will never be
3591 * called, and the link_reset callback is not used by AER or EEH mechanisms.
3592 */
Julia Lawallc300366b2015-11-14 11:06:57 +01003593static const struct pci_error_handlers efx_err_handlers = {
Alexandre Rames626950d2013-01-14 17:20:22 +00003594 .error_detected = efx_io_error_detected,
3595 .slot_reset = efx_io_slot_reset,
3596 .resume = efx_io_resume,
3597};
3598
Ben Hutchings8ceee662008-04-27 12:55:59 +01003599static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00003600 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003601 .id_table = efx_pci_table,
3602 .probe = efx_pci_probe,
3603 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00003604 .driver.pm = &efx_pm_ops,
Alexandre Rames626950d2013-01-14 17:20:22 +00003605 .err_handler = &efx_err_handlers,
Shradha Shah834e23d2015-05-06 00:55:58 +01003606#ifdef CONFIG_SFC_SRIOV
3607 .sriov_configure = efx_pci_sriov_configure,
3608#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003609};
3610
3611/**************************************************************************
3612 *
3613 * Kernel module interface
3614 *
3615 *************************************************************************/
3616
3617module_param(interrupt_mode, uint, 0444);
3618MODULE_PARM_DESC(interrupt_mode,
3619 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
3620
3621static int __init efx_init_module(void)
3622{
3623 int rc;
3624
3625 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
3626
3627 rc = register_netdevice_notifier(&efx_netdev_notifier);
3628 if (rc)
3629 goto err_notifier;
3630
Shradha Shah7fa8d542015-05-06 00:55:13 +01003631#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003632 rc = efx_init_sriov();
3633 if (rc)
3634 goto err_sriov;
Shradha Shah7fa8d542015-05-06 00:55:13 +01003635#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003636
Steve Hodgson1ab00622008-12-12 21:33:02 -08003637 reset_workqueue = create_singlethread_workqueue("sfc_reset");
3638 if (!reset_workqueue) {
3639 rc = -ENOMEM;
3640 goto err_reset;
3641 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003642
3643 rc = pci_register_driver(&efx_pci_driver);
3644 if (rc < 0)
3645 goto err_pci;
3646
3647 return 0;
3648
3649 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08003650 destroy_workqueue(reset_workqueue);
3651 err_reset:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003652#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003653 efx_fini_sriov();
3654 err_sriov:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003655#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003656 unregister_netdevice_notifier(&efx_netdev_notifier);
3657 err_notifier:
3658 return rc;
3659}
3660
3661static void __exit efx_exit_module(void)
3662{
3663 printk(KERN_INFO "Solarflare NET driver unloading\n");
3664
3665 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003666 destroy_workqueue(reset_workqueue);
Shradha Shah7fa8d542015-05-06 00:55:13 +01003667#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003668 efx_fini_sriov();
Shradha Shah7fa8d542015-05-06 00:55:13 +01003669#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003670 unregister_netdevice_notifier(&efx_netdev_notifier);
3671
3672}
3673
3674module_init(efx_init_module);
3675module_exit(efx_exit_module);
3676
Ben Hutchings906bb262009-11-29 15:16:19 +00003677MODULE_AUTHOR("Solarflare Communications and "
3678 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings6a350fd2014-02-12 19:00:07 +00003679MODULE_DESCRIPTION("Solarflare network driver");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003680MODULE_LICENSE("GPL");
3681MODULE_DEVICE_TABLE(pci, efx_pci_table);
Edward Cree14077e92017-01-03 15:46:00 +00003682MODULE_VERSION(EFX_DRIVER_VERSION);