blob: 6e11ee6173ce566e97a61ad99e929cfc49895d84 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01002 * Driver for Solarflare network controllers and boards
Ben Hutchings8ceee662008-04-27 12:55:59 +01003 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01004 * Copyright 2005-2013 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/module.h>
12#include <linux/pci.h>
13#include <linux/netdevice.h>
14#include <linux/etherdevice.h>
15#include <linux/delay.h>
16#include <linux/notifier.h>
17#include <linux/ip.h>
18#include <linux/tcp.h>
19#include <linux/in.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010020#include <linux/ethtool.h>
Ben Hutchingsaa6ef272008-07-18 19:03:10 +010021#include <linux/topology.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
Alexandre Rames626950d2013-01-14 17:20:22 +000023#include <linux/aer.h>
Alexandre Ramesb28405b2013-03-21 16:41:43 +000024#include <linux/interrupt.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010025#include "net_driver.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010026#include "efx.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000027#include "nic.h"
Ben Hutchingsdd407812012-02-28 23:40:21 +000028#include "selftest.h"
Shradha Shah7fa8d542015-05-06 00:55:13 +010029#include "sriov.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010030
Ben Hutchings8880f4e2009-11-29 15:15:41 +000031#include "mcdi.h"
Steve Hodgsonfd371e32010-06-01 11:17:51 +000032#include "workarounds.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000033
Ben Hutchingsc4593022009-11-23 16:08:17 +000034/**************************************************************************
35 *
36 * Type name strings
37 *
38 **************************************************************************
39 */
40
41/* Loopback mode names (see LOOPBACK_MODE()) */
42const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000043const char *const efx_loopback_mode_names[] = {
Ben Hutchingsc4593022009-11-23 16:08:17 +000044 [LOOPBACK_NONE] = "NONE",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000045 [LOOPBACK_DATA] = "DATAPATH",
Ben Hutchingsc4593022009-11-23 16:08:17 +000046 [LOOPBACK_GMAC] = "GMAC",
47 [LOOPBACK_XGMII] = "XGMII",
48 [LOOPBACK_XGXS] = "XGXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000049 [LOOPBACK_XAUI] = "XAUI",
50 [LOOPBACK_GMII] = "GMII",
51 [LOOPBACK_SGMII] = "SGMII",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000052 [LOOPBACK_XGBR] = "XGBR",
53 [LOOPBACK_XFI] = "XFI",
54 [LOOPBACK_XAUI_FAR] = "XAUI_FAR",
55 [LOOPBACK_GMII_FAR] = "GMII_FAR",
56 [LOOPBACK_SGMII_FAR] = "SGMII_FAR",
57 [LOOPBACK_XFI_FAR] = "XFI_FAR",
Ben Hutchingsc4593022009-11-23 16:08:17 +000058 [LOOPBACK_GPHY] = "GPHY",
59 [LOOPBACK_PHYXS] = "PHYXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000060 [LOOPBACK_PCS] = "PCS",
61 [LOOPBACK_PMAPMD] = "PMA/PMD",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000062 [LOOPBACK_XPORT] = "XPORT",
63 [LOOPBACK_XGMII_WS] = "XGMII_WS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000064 [LOOPBACK_XAUI_WS] = "XAUI_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000065 [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR",
66 [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000067 [LOOPBACK_GMII_WS] = "GMII_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000068 [LOOPBACK_XFI_WS] = "XFI_WS",
69 [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000070 [LOOPBACK_PHYXS_WS] = "PHYXS_WS",
Ben Hutchingsc4593022009-11-23 16:08:17 +000071};
72
Ben Hutchingsc4593022009-11-23 16:08:17 +000073const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000074const char *const efx_reset_type_names[] = {
Alexandre Rames626950d2013-01-14 17:20:22 +000075 [RESET_TYPE_INVISIBLE] = "INVISIBLE",
76 [RESET_TYPE_ALL] = "ALL",
77 [RESET_TYPE_RECOVER_OR_ALL] = "RECOVER_OR_ALL",
78 [RESET_TYPE_WORLD] = "WORLD",
79 [RESET_TYPE_RECOVER_OR_DISABLE] = "RECOVER_OR_DISABLE",
Jon Cooper087e9022015-05-20 11:11:35 +010080 [RESET_TYPE_DATAPATH] = "DATAPATH",
Edward Creee2835462014-04-16 19:27:48 +010081 [RESET_TYPE_MC_BIST] = "MC_BIST",
Alexandre Rames626950d2013-01-14 17:20:22 +000082 [RESET_TYPE_DISABLE] = "DISABLE",
83 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
84 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
85 [RESET_TYPE_RX_RECOVERY] = "RX_RECOVERY",
Alexandre Rames3de82b92013-06-13 11:36:15 +010086 [RESET_TYPE_DMA_ERROR] = "DMA_ERROR",
Alexandre Rames626950d2013-01-14 17:20:22 +000087 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
88 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
Edward Creee2835462014-04-16 19:27:48 +010089 [RESET_TYPE_MCDI_TIMEOUT] = "MCDI_TIMEOUT (FLR)",
Ben Hutchingsc4593022009-11-23 16:08:17 +000090};
91
Steve Hodgson1ab00622008-12-12 21:33:02 -080092/* Reset workqueue. If any NIC has a hardware failure then a reset will be
93 * queued onto this work queue. This is not a per-nic work queue, because
94 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
95 */
96static struct workqueue_struct *reset_workqueue;
97
Jon Cooper74cd60a2013-09-16 14:18:51 +010098/* How often and how many times to poll for a reset while waiting for a
99 * BIST that another function started to complete.
100 */
101#define BIST_WAIT_DELAY_MS 100
102#define BIST_WAIT_DELAY_COUNT 100
103
Ben Hutchings8ceee662008-04-27 12:55:59 +0100104/**************************************************************************
105 *
106 * Configurable values
107 *
108 *************************************************************************/
109
110/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100111 * Use separate channels for TX and RX events
112 *
Neil Turton28b581a2008-12-12 21:41:06 -0800113 * Set this to 1 to use separate channels for TX and RX. It allows us
114 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100115 *
Neil Turton28b581a2008-12-12 21:41:06 -0800116 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100117 */
Shradha Shahb0fbdae2015-08-28 10:55:42 +0100118bool efx_separate_tx_channels;
119module_param(efx_separate_tx_channels, bool, 0444);
120MODULE_PARM_DESC(efx_separate_tx_channels,
Neil Turton28b581a2008-12-12 21:41:06 -0800121 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100122
123/* This is the weight assigned to each of the (per-channel) virtual
124 * NAPI devices.
125 */
126static int napi_weight = 64;
127
128/* This is the time (in jiffies) between invocations of the hardware
Alexandre Rames626950d2013-01-14 17:20:22 +0000129 * monitor.
130 * On Falcon-based NICs, this will:
Ben Hutchingse254c272010-09-20 08:44:10 +0000131 * - Check the on-board hardware monitor;
132 * - Poll the link state and reconfigure the hardware as necessary.
Alexandre Rames626950d2013-01-14 17:20:22 +0000133 * On Siena-based NICs for power systems with EEH support, this will give EEH a
134 * chance to start.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100135 */
stephen hemmingerd2156972010-10-18 05:27:31 +0000136static unsigned int efx_monitor_interval = 1 * HZ;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100137
Ben Hutchings8ceee662008-04-27 12:55:59 +0100138/* Initial interrupt moderation settings. They can be modified after
139 * module load with ethtool.
140 *
141 * The default for RX should strike a balance between increasing the
142 * round-trip latency and reducing overhead.
143 */
144static unsigned int rx_irq_mod_usec = 60;
145
146/* Initial interrupt moderation settings. They can be modified after
147 * module load with ethtool.
148 *
149 * This default is chosen to ensure that a 10G link does not go idle
150 * while a TX queue is stopped after it has become full. A queue is
151 * restarted when it drops below half full. The time this takes (assuming
152 * worst case 3 descriptors per packet and 1024 descriptors) is
153 * 512 / 3 * 1.2 = 205 usec.
154 */
155static unsigned int tx_irq_mod_usec = 150;
156
157/* This is the first interrupt mode to try out of:
158 * 0 => MSI-X
159 * 1 => MSI
160 * 2 => legacy
161 */
162static unsigned int interrupt_mode;
163
164/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
165 * i.e. the number of CPUs among which we may distribute simultaneous
166 * interrupt handling.
167 *
168 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
Ben Hutchingscdb08f82011-12-20 01:08:05 +0000169 * The default (0) means to assign an interrupt to each core.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100170 */
171static unsigned int rss_cpus;
172module_param(rss_cpus, uint, 0444);
173MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
174
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000175static bool phy_flash_cfg;
176module_param(phy_flash_cfg, bool, 0644);
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800177MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
178
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000179static unsigned irq_adapt_low_thresh = 8000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000180module_param(irq_adapt_low_thresh, uint, 0644);
181MODULE_PARM_DESC(irq_adapt_low_thresh,
182 "Threshold score for reducing IRQ moderation");
183
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000184static unsigned irq_adapt_high_thresh = 16000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000185module_param(irq_adapt_high_thresh, uint, 0644);
186MODULE_PARM_DESC(irq_adapt_high_thresh,
187 "Threshold score for increasing IRQ moderation");
188
Ben Hutchings62776d02010-06-23 11:30:07 +0000189static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
190 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
191 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
192 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
193module_param(debug, uint, 0);
194MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
195
Ben Hutchings8ceee662008-04-27 12:55:59 +0100196/**************************************************************************
197 *
198 * Utility functions and prototypes
199 *
200 *************************************************************************/
Ben Hutchings46426102010-09-10 06:42:33 +0000201
Jon Cooper261e4d92013-04-15 18:51:54 +0100202static int efx_soft_enable_interrupts(struct efx_nic *efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100203static void efx_soft_disable_interrupts(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000204static void efx_remove_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000205static void efx_remove_channels(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000206static const struct efx_channel_type efx_default_channel_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100207static void efx_remove_port(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000208static void efx_init_napi_channel(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100209static void efx_fini_napi(struct efx_nic *efx);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000210static void efx_fini_napi_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000211static void efx_fini_struct(struct efx_nic *efx);
212static void efx_start_all(struct efx_nic *efx);
213static void efx_stop_all(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100214
215#define EFX_ASSERT_RESET_SERIALISED(efx) \
216 do { \
Ben Hutchingsf16aeea2012-07-27 19:31:16 +0100217 if ((efx->state == STATE_READY) || \
Alexandre Rames626950d2013-01-14 17:20:22 +0000218 (efx->state == STATE_RECOVERY) || \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000219 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100220 ASSERT_RTNL(); \
221 } while (0)
222
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100223static int efx_check_disabled(struct efx_nic *efx)
224{
Alexandre Rames626950d2013-01-14 17:20:22 +0000225 if (efx->state == STATE_DISABLED || efx->state == STATE_RECOVERY) {
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100226 netif_err(efx, drv, efx->net_dev,
227 "device is disabled due to earlier errors\n");
228 return -EIO;
229 }
230 return 0;
231}
232
Ben Hutchings8ceee662008-04-27 12:55:59 +0100233/**************************************************************************
234 *
235 * Event queue processing
236 *
237 *************************************************************************/
238
239/* Process channel's event queue
240 *
241 * This function is responsible for processing the event queue of a
242 * single channel. The caller must guarantee that this function will
243 * never be concurrently called more than once on the same channel,
244 * though different channels may be being processed concurrently.
245 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000246static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100247{
Peter Dunningc9368352015-07-08 10:05:10 +0100248 struct efx_tx_queue *tx_queue;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000249 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100250
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000251 if (unlikely(!channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100252 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100253
Peter Dunningc9368352015-07-08 10:05:10 +0100254 efx_for_each_channel_tx_queue(tx_queue, channel) {
255 tx_queue->pkts_compl = 0;
256 tx_queue->bytes_compl = 0;
257 }
258
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000259 spent = efx_nic_process_eventq(channel, budget);
Ben Hutchingsd9ab7002012-02-13 23:29:16 +0000260 if (spent && efx_channel_has_rx_queue(channel)) {
261 struct efx_rx_queue *rx_queue =
262 efx_channel_get_rx_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100263
Ben Hutchingsff734ef2013-01-29 23:33:14 +0000264 efx_rx_flush_packet(channel);
Jon Coopercce28792013-10-02 11:04:14 +0100265 efx_fast_push_rx_descriptors(rx_queue, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100266 }
267
Peter Dunningc9368352015-07-08 10:05:10 +0100268 /* Update BQL */
269 efx_for_each_channel_tx_queue(tx_queue, channel) {
270 if (tx_queue->bytes_compl) {
271 netdev_tx_completed_queue(tx_queue->core_txq,
272 tx_queue->pkts_compl, tx_queue->bytes_compl);
273 }
274 }
275
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000276 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100277}
278
Ben Hutchings8ceee662008-04-27 12:55:59 +0100279/* NAPI poll handler
280 *
281 * NAPI guarantees serialisation of polls of the same device, which
282 * provides the guarantee required by efx_process_channel().
283 */
284static int efx_poll(struct napi_struct *napi, int budget)
285{
286 struct efx_channel *channel =
287 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000288 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000289 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100290
Alexandre Rames36763262014-07-22 14:03:25 +0100291 if (!efx_channel_lock_napi(channel))
292 return budget;
293
Ben Hutchings62776d02010-06-23 11:30:07 +0000294 netif_vdbg(efx, intr, efx->net_dev,
295 "channel %d NAPI poll executing on CPU %d\n",
296 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100297
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000298 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100299
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000300 if (spent < budget) {
Ben Hutchings9d9a6972012-02-10 23:01:48 +0000301 if (efx_channel_has_rx_queue(channel) &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000302 efx->irq_rx_adaptive &&
303 unlikely(++channel->irq_count == 1000)) {
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000304 if (unlikely(channel->irq_mod_score <
305 irq_adapt_low_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000306 if (channel->irq_moderation > 1) {
307 channel->irq_moderation -= 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000308 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000309 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000310 } else if (unlikely(channel->irq_mod_score >
311 irq_adapt_high_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000312 if (channel->irq_moderation <
313 efx->irq_rx_moderation) {
314 channel->irq_moderation += 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000315 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000316 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000317 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000318 channel->irq_count = 0;
319 channel->irq_mod_score = 0;
320 }
321
Ben Hutchings64d8ad62011-01-05 00:50:41 +0000322 efx_filter_rfs_expire(channel);
323
Ben Hutchings8ceee662008-04-27 12:55:59 +0100324 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800325 * only wait for napi_complete(), this isn't a problem
Ben Hutchings514bedb2012-10-05 19:30:16 +0100326 * since efx_nic_eventq_read_ack() will have no effect if
Ben Hutchings8ceee662008-04-27 12:55:59 +0100327 * interrupts have already been disabled.
328 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800329 napi_complete(napi);
Ben Hutchings514bedb2012-10-05 19:30:16 +0100330 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100331 }
332
Alexandre Rames36763262014-07-22 14:03:25 +0100333 efx_channel_unlock_napi(channel);
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000334 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100335}
336
Ben Hutchings8ceee662008-04-27 12:55:59 +0100337/* Create event queue
338 * Event queue memory allocations are done only once. If the channel
339 * is reset, the memory buffer will be reused; this guards against
340 * errors during channel reset and also simplifies interrupt handling.
341 */
342static int efx_probe_eventq(struct efx_channel *channel)
343{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000344 struct efx_nic *efx = channel->efx;
345 unsigned long entries;
346
Ben Hutchings86ee5302012-01-09 19:51:22 +0000347 netif_dbg(efx, probe, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000348 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100349
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000350 /* Build an event queue with room for one event per tx and rx buffer,
351 * plus some extra for link state events and MCDI completions. */
352 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
353 EFX_BUG_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
354 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
355
Ben Hutchings152b6a62009-11-29 03:43:56 +0000356 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100357}
358
359/* Prepare channel's event queue */
Jon Cooper261e4d92013-04-15 18:51:54 +0100360static int efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100361{
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100362 struct efx_nic *efx = channel->efx;
Jon Cooper261e4d92013-04-15 18:51:54 +0100363 int rc;
364
365 EFX_WARN_ON_PARANOID(channel->eventq_init);
366
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100367 netif_dbg(efx, drv, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000368 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100369
Jon Cooper261e4d92013-04-15 18:51:54 +0100370 rc = efx_nic_init_eventq(channel);
371 if (rc == 0) {
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100372 efx->type->push_irq_moderation(channel);
Jon Cooper261e4d92013-04-15 18:51:54 +0100373 channel->eventq_read_ptr = 0;
374 channel->eventq_init = true;
375 }
376 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100377}
378
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000379/* Enable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100380void efx_start_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000381{
382 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
383 "chan %d start event queue\n", channel->channel);
384
Ben Hutchings514bedb2012-10-05 19:30:16 +0100385 /* Make sure the NAPI handler sees the enabled flag set */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000386 channel->enabled = true;
387 smp_wmb();
388
Alexandre Rames36763262014-07-22 14:03:25 +0100389 efx_channel_enable(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000390 napi_enable(&channel->napi_str);
391 efx_nic_eventq_read_ack(channel);
392}
393
394/* Disable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100395void efx_stop_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000396{
397 if (!channel->enabled)
398 return;
399
400 napi_disable(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +0100401 while (!efx_channel_disable(channel))
402 usleep_range(1000, 20000);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000403 channel->enabled = false;
404}
405
Ben Hutchings8ceee662008-04-27 12:55:59 +0100406static void efx_fini_eventq(struct efx_channel *channel)
407{
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100408 if (!channel->eventq_init)
409 return;
410
Ben Hutchings62776d02010-06-23 11:30:07 +0000411 netif_dbg(channel->efx, drv, channel->efx->net_dev,
412 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100413
Ben Hutchings152b6a62009-11-29 03:43:56 +0000414 efx_nic_fini_eventq(channel);
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100415 channel->eventq_init = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100416}
417
418static void efx_remove_eventq(struct efx_channel *channel)
419{
Ben Hutchings62776d02010-06-23 11:30:07 +0000420 netif_dbg(channel->efx, drv, channel->efx->net_dev,
421 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100422
Ben Hutchings152b6a62009-11-29 03:43:56 +0000423 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100424}
425
426/**************************************************************************
427 *
428 * Channel handling
429 *
430 *************************************************************************/
431
Ben Hutchings7f967c02012-02-13 23:45:02 +0000432/* Allocate and initialise a channel structure. */
Ben Hutchings46426102010-09-10 06:42:33 +0000433static struct efx_channel *
434efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
435{
436 struct efx_channel *channel;
437 struct efx_rx_queue *rx_queue;
438 struct efx_tx_queue *tx_queue;
439 int j;
440
Ben Hutchings7f967c02012-02-13 23:45:02 +0000441 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
442 if (!channel)
443 return NULL;
Ben Hutchings46426102010-09-10 06:42:33 +0000444
Ben Hutchings7f967c02012-02-13 23:45:02 +0000445 channel->efx = efx;
446 channel->channel = i;
447 channel->type = &efx_default_channel_type;
Ben Hutchings46426102010-09-10 06:42:33 +0000448
Ben Hutchings7f967c02012-02-13 23:45:02 +0000449 for (j = 0; j < EFX_TXQ_TYPES; j++) {
450 tx_queue = &channel->tx_queue[j];
451 tx_queue->efx = efx;
452 tx_queue->queue = i * EFX_TXQ_TYPES + j;
453 tx_queue->channel = channel;
Ben Hutchings46426102010-09-10 06:42:33 +0000454 }
455
Ben Hutchings46426102010-09-10 06:42:33 +0000456 rx_queue = &channel->rx_queue;
457 rx_queue->efx = efx;
458 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
459 (unsigned long)rx_queue);
460
461 return channel;
462}
463
Ben Hutchings7f967c02012-02-13 23:45:02 +0000464/* Allocate and initialise a channel structure, copying parameters
465 * (but not resources) from an old channel structure.
466 */
467static struct efx_channel *
468efx_copy_channel(const struct efx_channel *old_channel)
469{
470 struct efx_channel *channel;
471 struct efx_rx_queue *rx_queue;
472 struct efx_tx_queue *tx_queue;
473 int j;
474
475 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
476 if (!channel)
477 return NULL;
478
479 *channel = *old_channel;
480
481 channel->napi_dev = NULL;
482 memset(&channel->eventq, 0, sizeof(channel->eventq));
483
484 for (j = 0; j < EFX_TXQ_TYPES; j++) {
485 tx_queue = &channel->tx_queue[j];
486 if (tx_queue->channel)
487 tx_queue->channel = channel;
488 tx_queue->buffer = NULL;
489 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
490 }
491
492 rx_queue = &channel->rx_queue;
493 rx_queue->buffer = NULL;
494 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
495 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
496 (unsigned long)rx_queue);
497
498 return channel;
499}
500
Ben Hutchings8ceee662008-04-27 12:55:59 +0100501static int efx_probe_channel(struct efx_channel *channel)
502{
503 struct efx_tx_queue *tx_queue;
504 struct efx_rx_queue *rx_queue;
505 int rc;
506
Ben Hutchings62776d02010-06-23 11:30:07 +0000507 netif_dbg(channel->efx, probe, channel->efx->net_dev,
508 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100509
Ben Hutchings7f967c02012-02-13 23:45:02 +0000510 rc = channel->type->pre_probe(channel);
511 if (rc)
512 goto fail;
513
Ben Hutchings8ceee662008-04-27 12:55:59 +0100514 rc = efx_probe_eventq(channel);
515 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000516 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100517
518 efx_for_each_channel_tx_queue(tx_queue, channel) {
519 rc = efx_probe_tx_queue(tx_queue);
520 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000521 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100522 }
523
524 efx_for_each_channel_rx_queue(rx_queue, channel) {
525 rc = efx_probe_rx_queue(rx_queue);
526 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000527 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100528 }
529
Ben Hutchings8ceee662008-04-27 12:55:59 +0100530 return 0;
531
Ben Hutchings7f967c02012-02-13 23:45:02 +0000532fail:
533 efx_remove_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100534 return rc;
535}
536
Ben Hutchings7f967c02012-02-13 23:45:02 +0000537static void
538efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
539{
540 struct efx_nic *efx = channel->efx;
541 const char *type;
542 int number;
543
544 number = channel->channel;
545 if (efx->tx_channel_offset == 0) {
546 type = "";
547 } else if (channel->channel < efx->tx_channel_offset) {
548 type = "-rx";
549 } else {
550 type = "-tx";
551 number -= efx->tx_channel_offset;
552 }
553 snprintf(buf, len, "%s%s-%d", efx->name, type, number);
554}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100555
Ben Hutchings56536e92008-12-12 21:37:02 -0800556static void efx_set_channel_names(struct efx_nic *efx)
557{
558 struct efx_channel *channel;
Ben Hutchings56536e92008-12-12 21:37:02 -0800559
Ben Hutchings7f967c02012-02-13 23:45:02 +0000560 efx_for_each_channel(channel, efx)
561 channel->type->get_name(channel,
Ben Hutchingsd8291182012-10-05 23:35:41 +0100562 efx->msi_context[channel->channel].name,
563 sizeof(efx->msi_context[0].name));
Ben Hutchings56536e92008-12-12 21:37:02 -0800564}
565
Ben Hutchings46426102010-09-10 06:42:33 +0000566static int efx_probe_channels(struct efx_nic *efx)
567{
568 struct efx_channel *channel;
569 int rc;
570
571 /* Restart special buffer allocation */
572 efx->next_buffer_table = 0;
573
Ben Hutchingsc92aaff2012-02-21 23:22:00 +0000574 /* Probe channels in reverse, so that any 'extra' channels
575 * use the start of the buffer table. This allows the traffic
576 * channels to be resized without moving them or wasting the
577 * entries before them.
578 */
579 efx_for_each_channel_rev(channel, efx) {
Ben Hutchings46426102010-09-10 06:42:33 +0000580 rc = efx_probe_channel(channel);
581 if (rc) {
582 netif_err(efx, probe, efx->net_dev,
583 "failed to create channel %d\n",
584 channel->channel);
585 goto fail;
586 }
587 }
588 efx_set_channel_names(efx);
589
590 return 0;
591
592fail:
593 efx_remove_channels(efx);
594 return rc;
595}
596
Ben Hutchings8ceee662008-04-27 12:55:59 +0100597/* Channels are shutdown and reinitialised whilst the NIC is running
598 * to propagate configuration changes (mtu, checksum offload), or
599 * to clear hardware error conditions
600 */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000601static void efx_start_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100602{
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000603 bool old_rx_scatter = efx->rx_scatter;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100604 struct efx_tx_queue *tx_queue;
605 struct efx_rx_queue *rx_queue;
606 struct efx_channel *channel;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000607 size_t rx_buf_len;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100608
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100609 /* Calculate the rx buffer allocation parameters required to
610 * support the current MTU, including padding for header
611 * alignment and overruns.
612 */
Jon Cooper43a37392012-10-18 15:49:54 +0100613 efx->rx_dma_len = (efx->rx_prefix_size +
Ben Hutchings272baee2013-01-29 23:33:14 +0000614 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
615 efx->type->rx_buffer_padding);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000616 rx_buf_len = (sizeof(struct efx_rx_page_state) +
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400617 efx->rx_ip_align + efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000618 if (rx_buf_len <= PAGE_SIZE) {
Jon Coopere8c68c02013-03-08 10:18:28 +0000619 efx->rx_scatter = efx->type->always_rx_scatter;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000620 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000621 } else if (efx->type->can_rx_scatter) {
Ben Hutchings950c54d2013-05-13 12:01:22 +0000622 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000623 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
Ben Hutchings950c54d2013-05-13 12:01:22 +0000624 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
625 EFX_RX_BUF_ALIGNMENT) >
626 PAGE_SIZE);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000627 efx->rx_scatter = true;
628 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
629 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000630 } else {
631 efx->rx_scatter = false;
632 efx->rx_buffer_order = get_order(rx_buf_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000633 }
634
Daniel Pieczko1648a232013-02-13 10:54:41 +0000635 efx_rx_config_page_split(efx);
636 if (efx->rx_buffer_order)
637 netif_dbg(efx, drv, efx->net_dev,
638 "RX buf len=%u; page order=%u batch=%u\n",
639 efx->rx_dma_len, efx->rx_buffer_order,
640 efx->rx_pages_per_batch);
641 else
642 netif_dbg(efx, drv, efx->net_dev,
643 "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
644 efx->rx_dma_len, efx->rx_page_buf_step,
645 efx->rx_bufs_per_page, efx->rx_pages_per_batch);
Daniel Pieczko27689352013-02-13 10:54:41 +0000646
Jon Coopere8c68c02013-03-08 10:18:28 +0000647 /* RX filters may also have scatter-enabled flags */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000648 if (efx->rx_scatter != old_rx_scatter)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000649 efx->type->filter_update_rx_scatter(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100650
Ben Hutchings14bf7182012-05-22 01:27:58 +0100651 /* We must keep at least one descriptor in a TX ring empty.
652 * We could avoid this when the queue size does not exactly
653 * match the hardware ring size, but it's not that important.
654 * Therefore we stop the queue when one more skb might fill
655 * the ring completely. We wake it when half way back to
656 * empty.
657 */
658 efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
659 efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
660
Ben Hutchings8ceee662008-04-27 12:55:59 +0100661 /* Initialise the channels */
662 efx_for_each_channel(channel, efx) {
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100663 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100664 efx_init_tx_queue(tx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100665 atomic_inc(&efx->active_queues);
666 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100667
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000668 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100669 efx_init_rx_queue(rx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100670 atomic_inc(&efx->active_queues);
Jon Coopercce28792013-10-02 11:04:14 +0100671 efx_stop_eventq(channel);
672 efx_fast_push_rx_descriptors(rx_queue, false);
673 efx_start_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000674 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100675
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000676 WARN_ON(channel->rx_pkt_n_frags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100677 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000678
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000679 efx_ptp_start_datapath(efx);
680
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000681 if (netif_device_present(efx->net_dev))
682 netif_tx_wake_all_queues(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100683}
684
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000685static void efx_stop_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100686{
687 struct efx_channel *channel;
688 struct efx_tx_queue *tx_queue;
689 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100690 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100691
692 EFX_ASSERT_RESET_SERIALISED(efx);
693 BUG_ON(efx->port_enabled);
694
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000695 efx_ptp_stop_datapath(efx);
696
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100697 /* Stop RX refill */
698 efx_for_each_channel(channel, efx) {
699 efx_for_each_channel_rx_queue(rx_queue, channel)
700 rx_queue->refill_enabled = false;
701 }
702
Ben Hutchings8ceee662008-04-27 12:55:59 +0100703 efx_for_each_channel(channel, efx) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000704 /* RX packet processing is pipelined, so wait for the
705 * NAPI handler to complete. At least event queue 0
706 * might be kept active by non-data events, so don't
707 * use napi_synchronize() but actually disable NAPI
708 * temporarily.
709 */
710 if (efx_channel_has_rx_queue(channel)) {
711 efx_stop_eventq(channel);
712 efx_start_eventq(channel);
713 }
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100714 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100715
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100716 rc = efx->type->fini_dmaq(efx);
717 if (rc && EFX_WORKAROUND_7803(efx)) {
718 /* Schedule a reset to recover from the flush failure. The
719 * descriptor caches reference memory we're about to free,
720 * but falcon_reconfigure_mac_wrapper() won't reconnect
721 * the MACs because of the pending reset.
722 */
723 netif_err(efx, drv, efx->net_dev,
724 "Resetting to recover from flush failure\n");
725 efx_schedule_reset(efx, RESET_TYPE_ALL);
726 } else if (rc) {
727 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
728 } else {
729 netif_dbg(efx, drv, efx->net_dev,
730 "successfully flushed all queues\n");
731 }
732
733 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100734 efx_for_each_channel_rx_queue(rx_queue, channel)
735 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000736 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100737 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100738 }
739}
740
741static void efx_remove_channel(struct efx_channel *channel)
742{
743 struct efx_tx_queue *tx_queue;
744 struct efx_rx_queue *rx_queue;
745
Ben Hutchings62776d02010-06-23 11:30:07 +0000746 netif_dbg(channel->efx, drv, channel->efx->net_dev,
747 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100748
749 efx_for_each_channel_rx_queue(rx_queue, channel)
750 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000751 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100752 efx_remove_tx_queue(tx_queue);
753 efx_remove_eventq(channel);
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100754 channel->type->post_remove(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100755}
756
Ben Hutchings46426102010-09-10 06:42:33 +0000757static void efx_remove_channels(struct efx_nic *efx)
758{
759 struct efx_channel *channel;
760
761 efx_for_each_channel(channel, efx)
762 efx_remove_channel(channel);
763}
764
765int
766efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
767{
768 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
769 u32 old_rxq_entries, old_txq_entries;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000770 unsigned i, next_buffer_table = 0;
Jon Cooper261e4d92013-04-15 18:51:54 +0100771 int rc, rc2;
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100772
773 rc = efx_check_disabled(efx);
774 if (rc)
775 return rc;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000776
777 /* Not all channels should be reallocated. We must avoid
778 * reallocating their buffer table entries.
779 */
780 efx_for_each_channel(channel, efx) {
781 struct efx_rx_queue *rx_queue;
782 struct efx_tx_queue *tx_queue;
783
784 if (channel->type->copy)
785 continue;
786 next_buffer_table = max(next_buffer_table,
787 channel->eventq.index +
788 channel->eventq.entries);
789 efx_for_each_channel_rx_queue(rx_queue, channel)
790 next_buffer_table = max(next_buffer_table,
791 rx_queue->rxd.index +
792 rx_queue->rxd.entries);
793 efx_for_each_channel_tx_queue(tx_queue, channel)
794 next_buffer_table = max(next_buffer_table,
795 tx_queue->txd.index +
796 tx_queue->txd.entries);
797 }
Ben Hutchings46426102010-09-10 06:42:33 +0000798
Ben Hutchings29c69a42013-01-28 19:01:06 +0000799 efx_device_detach_sync(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000800 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100801 efx_soft_disable_interrupts(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000802
Ben Hutchings7f967c02012-02-13 23:45:02 +0000803 /* Clone channels (where possible) */
Ben Hutchings46426102010-09-10 06:42:33 +0000804 memset(other_channel, 0, sizeof(other_channel));
805 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000806 channel = efx->channel[i];
807 if (channel->type->copy)
808 channel = channel->type->copy(channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000809 if (!channel) {
810 rc = -ENOMEM;
811 goto out;
812 }
813 other_channel[i] = channel;
814 }
815
816 /* Swap entry counts and channel pointers */
817 old_rxq_entries = efx->rxq_entries;
818 old_txq_entries = efx->txq_entries;
819 efx->rxq_entries = rxq_entries;
820 efx->txq_entries = txq_entries;
821 for (i = 0; i < efx->n_channels; i++) {
822 channel = efx->channel[i];
823 efx->channel[i] = other_channel[i];
824 other_channel[i] = channel;
825 }
826
Ben Hutchings7f967c02012-02-13 23:45:02 +0000827 /* Restart buffer table allocation */
828 efx->next_buffer_table = next_buffer_table;
Ben Hutchings46426102010-09-10 06:42:33 +0000829
Ben Hutchingse8f14992010-12-07 19:47:34 +0000830 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000831 channel = efx->channel[i];
832 if (!channel->type->copy)
833 continue;
834 rc = efx_probe_channel(channel);
835 if (rc)
836 goto rollback;
837 efx_init_napi_channel(efx->channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000838 }
Ben Hutchings46426102010-09-10 06:42:33 +0000839
Ben Hutchings7f967c02012-02-13 23:45:02 +0000840out:
841 /* Destroy unused channel structures */
842 for (i = 0; i < efx->n_channels; i++) {
843 channel = other_channel[i];
844 if (channel && channel->type->copy) {
845 efx_fini_napi_channel(channel);
846 efx_remove_channel(channel);
847 kfree(channel);
848 }
849 }
850
Jon Cooper261e4d92013-04-15 18:51:54 +0100851 rc2 = efx_soft_enable_interrupts(efx);
852 if (rc2) {
853 rc = rc ? rc : rc2;
854 netif_err(efx, drv, efx->net_dev,
855 "unable to restart interrupts on channel reallocation\n");
856 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
857 } else {
858 efx_start_all(efx);
859 netif_device_attach(efx->net_dev);
860 }
Ben Hutchings46426102010-09-10 06:42:33 +0000861 return rc;
862
863rollback:
864 /* Swap back */
865 efx->rxq_entries = old_rxq_entries;
866 efx->txq_entries = old_txq_entries;
867 for (i = 0; i < efx->n_channels; i++) {
868 channel = efx->channel[i];
869 efx->channel[i] = other_channel[i];
870 other_channel[i] = channel;
871 }
872 goto out;
873}
874
Steve Hodgson90d683a2010-06-01 11:19:39 +0000875void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100876{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000877 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100878}
879
Ben Hutchings7f967c02012-02-13 23:45:02 +0000880static const struct efx_channel_type efx_default_channel_type = {
881 .pre_probe = efx_channel_dummy_op_int,
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100882 .post_remove = efx_channel_dummy_op_void,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000883 .get_name = efx_get_channel_name,
884 .copy = efx_copy_channel,
885 .keep_eventq = false,
886};
887
888int efx_channel_dummy_op_int(struct efx_channel *channel)
889{
890 return 0;
891}
892
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100893void efx_channel_dummy_op_void(struct efx_channel *channel)
894{
895}
896
Ben Hutchings8ceee662008-04-27 12:55:59 +0100897/**************************************************************************
898 *
899 * Port handling
900 *
901 **************************************************************************/
902
903/* This ensures that the kernel is kept informed (via
904 * netif_carrier_on/off) of the link status, and also maintains the
905 * link status's stop on the port's TX queue.
906 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000907void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100908{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000909 struct efx_link_state *link_state = &efx->link_state;
910
Ben Hutchings8ceee662008-04-27 12:55:59 +0100911 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
912 * that no events are triggered between unregister_netdev() and the
913 * driver unloading. A more general condition is that NETDEV_CHANGE
914 * can only be generated between NETDEV_UP and NETDEV_DOWN */
915 if (!netif_running(efx->net_dev))
916 return;
917
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000918 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100919 efx->n_link_state_changes++;
920
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000921 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100922 netif_carrier_on(efx->net_dev);
923 else
924 netif_carrier_off(efx->net_dev);
925 }
926
927 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000928 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000929 netif_info(efx, link, efx->net_dev,
Ben Hutchings964e6132012-11-19 23:08:22 +0000930 "link up at %uMbps %s-duplex (MTU %d)\n",
Ben Hutchings62776d02010-06-23 11:30:07 +0000931 link_state->speed, link_state->fd ? "full" : "half",
Ben Hutchings964e6132012-11-19 23:08:22 +0000932 efx->net_dev->mtu);
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000933 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000934 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100935}
936
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000937void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
938{
939 efx->link_advertising = advertising;
940 if (advertising) {
941 if (advertising & ADVERTISED_Pause)
942 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
943 else
944 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
945 if (advertising & ADVERTISED_Asym_Pause)
946 efx->wanted_fc ^= EFX_FC_TX;
947 }
948}
949
David S. Millerb56269462011-05-17 17:53:22 -0400950void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000951{
952 efx->wanted_fc = wanted_fc;
953 if (efx->link_advertising) {
954 if (wanted_fc & EFX_FC_RX)
955 efx->link_advertising |= (ADVERTISED_Pause |
956 ADVERTISED_Asym_Pause);
957 else
958 efx->link_advertising &= ~(ADVERTISED_Pause |
959 ADVERTISED_Asym_Pause);
960 if (wanted_fc & EFX_FC_TX)
961 efx->link_advertising ^= ADVERTISED_Asym_Pause;
962 }
963}
964
Ben Hutchings115122a2009-03-04 09:52:52 +0000965static void efx_fini_port(struct efx_nic *efx);
966
Edward Cree0d322412015-05-20 11:10:03 +0100967/* We assume that efx->type->reconfigure_mac will always try to sync RX
968 * filters and therefore needs to read-lock the filter table against freeing
969 */
970void efx_mac_reconfigure(struct efx_nic *efx)
971{
972 down_read(&efx->filter_sem);
973 efx->type->reconfigure_mac(efx);
974 up_read(&efx->filter_sem);
975}
976
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000977/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
978 * the MAC appropriately. All other PHY configuration changes are pushed
979 * through phy_op->set_settings(), and pushed asynchronously to the MAC
980 * through efx_monitor().
981 *
982 * Callers must hold the mac_lock
983 */
984int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100985{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000986 enum efx_phy_mode phy_mode;
987 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100988
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000989 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100990
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000991 /* Disable PHY transmit in mac level loopbacks */
992 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800993 if (LOOPBACK_INTERNAL(efx))
994 efx->phy_mode |= PHY_MODE_TX_DISABLED;
995 else
996 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800997
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000998 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800999
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001000 if (rc)
1001 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001002
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001003 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001004}
1005
1006/* Reinitialise the MAC to pick up new PHY settings, even if the port is
1007 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001008int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001009{
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001010 int rc;
1011
Ben Hutchings8ceee662008-04-27 12:55:59 +01001012 EFX_ASSERT_RESET_SERIALISED(efx);
1013
1014 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001015 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001016 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001017
1018 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001019}
1020
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001021/* Asynchronous work item for changing MAC promiscuity and multicast
1022 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
1023 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001024static void efx_mac_work(struct work_struct *data)
1025{
1026 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
1027
1028 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +01001029 if (efx->port_enabled)
Edward Cree0d322412015-05-20 11:10:03 +01001030 efx_mac_reconfigure(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001031 mutex_unlock(&efx->mac_lock);
1032}
1033
Ben Hutchings8ceee662008-04-27 12:55:59 +01001034static int efx_probe_port(struct efx_nic *efx)
1035{
1036 int rc;
1037
Ben Hutchings62776d02010-06-23 11:30:07 +00001038 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001039
Steve Hodgsonff3b00a2009-12-23 13:46:36 +00001040 if (phy_flash_cfg)
1041 efx->phy_mode = PHY_MODE_SPECIAL;
1042
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001043 /* Connect up MAC/PHY operations table */
1044 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001045 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +00001046 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001047
Ben Hutchingse332bcb2011-12-20 01:22:51 +00001048 /* Initialise MAC address to permanent address */
Edward Creecd84ff42014-03-07 18:27:41 +00001049 ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001050
1051 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001052}
1053
1054static int efx_init_port(struct efx_nic *efx)
1055{
1056 int rc;
1057
Ben Hutchings62776d02010-06-23 11:30:07 +00001058 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001059
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001060 mutex_lock(&efx->mac_lock);
1061
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001062 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001063 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001064 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001065
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001066 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001067
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001068 /* Reconfigure the MAC before creating dma queues (required for
1069 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Edward Cree0d322412015-05-20 11:10:03 +01001070 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001071
1072 /* Ensure the PHY advertises the correct flow control settings */
1073 rc = efx->phy_op->reconfigure(efx);
Edward Cree267d9d72015-05-06 00:59:18 +01001074 if (rc && rc != -EPERM)
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001075 goto fail2;
1076
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001077 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001078 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001079
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001080fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001081 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001082fail1:
1083 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001084 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001085}
1086
Ben Hutchings8ceee662008-04-27 12:55:59 +01001087static void efx_start_port(struct efx_nic *efx)
1088{
Ben Hutchings62776d02010-06-23 11:30:07 +00001089 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001090 BUG_ON(efx->port_enabled);
1091
1092 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001093 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001094
Ben Hutchingsd615c032013-10-08 17:33:20 +01001095 /* Ensure MAC ingress/egress is enabled */
Edward Cree0d322412015-05-20 11:10:03 +01001096 efx_mac_reconfigure(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001097
Ben Hutchings8ceee662008-04-27 12:55:59 +01001098 mutex_unlock(&efx->mac_lock);
1099}
1100
Ben Hutchingsd615c032013-10-08 17:33:20 +01001101/* Cancel work for MAC reconfiguration, periodic hardware monitoring
1102 * and the async self-test, wait for them to finish and prevent them
1103 * being scheduled again. This doesn't cover online resets, which
1104 * should only be cancelled when removing the device.
1105 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001106static void efx_stop_port(struct efx_nic *efx)
1107{
Ben Hutchings62776d02010-06-23 11:30:07 +00001108 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001109
Ben Hutchingsd615c032013-10-08 17:33:20 +01001110 EFX_ASSERT_RESET_SERIALISED(efx);
1111
Ben Hutchings8ceee662008-04-27 12:55:59 +01001112 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001113 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001114 mutex_unlock(&efx->mac_lock);
1115
1116 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001117 netif_addr_lock_bh(efx->net_dev);
1118 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchingsd615c032013-10-08 17:33:20 +01001119
1120 cancel_delayed_work_sync(&efx->monitor_work);
1121 efx_selftest_async_cancel(efx);
1122 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001123}
1124
1125static void efx_fini_port(struct efx_nic *efx)
1126{
Ben Hutchings62776d02010-06-23 11:30:07 +00001127 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001128
1129 if (!efx->port_initialized)
1130 return;
1131
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001132 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001133 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001134
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001135 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001136 efx_link_status_changed(efx);
1137}
1138
1139static void efx_remove_port(struct efx_nic *efx)
1140{
Ben Hutchings62776d02010-06-23 11:30:07 +00001141 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001142
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001143 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001144}
1145
1146/**************************************************************************
1147 *
1148 * NIC handling
1149 *
1150 **************************************************************************/
1151
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01001152static LIST_HEAD(efx_primary_list);
1153static LIST_HEAD(efx_unassociated_list);
1154
1155static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right)
1156{
1157 return left->type == right->type &&
1158 left->vpd_sn && right->vpd_sn &&
1159 !strcmp(left->vpd_sn, right->vpd_sn);
1160}
1161
1162static void efx_associate(struct efx_nic *efx)
1163{
1164 struct efx_nic *other, *next;
1165
1166 if (efx->primary == efx) {
1167 /* Adding primary function; look for secondaries */
1168
1169 netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n");
1170 list_add_tail(&efx->node, &efx_primary_list);
1171
1172 list_for_each_entry_safe(other, next, &efx_unassociated_list,
1173 node) {
1174 if (efx_same_controller(efx, other)) {
1175 list_del(&other->node);
1176 netif_dbg(other, probe, other->net_dev,
1177 "moving to secondary list of %s %s\n",
1178 pci_name(efx->pci_dev),
1179 efx->net_dev->name);
1180 list_add_tail(&other->node,
1181 &efx->secondary_list);
1182 other->primary = efx;
1183 }
1184 }
1185 } else {
1186 /* Adding secondary function; look for primary */
1187
1188 list_for_each_entry(other, &efx_primary_list, node) {
1189 if (efx_same_controller(efx, other)) {
1190 netif_dbg(efx, probe, efx->net_dev,
1191 "adding to secondary list of %s %s\n",
1192 pci_name(other->pci_dev),
1193 other->net_dev->name);
1194 list_add_tail(&efx->node,
1195 &other->secondary_list);
1196 efx->primary = other;
1197 return;
1198 }
1199 }
1200
1201 netif_dbg(efx, probe, efx->net_dev,
1202 "adding to unassociated list\n");
1203 list_add_tail(&efx->node, &efx_unassociated_list);
1204 }
1205}
1206
1207static void efx_dissociate(struct efx_nic *efx)
1208{
1209 struct efx_nic *other, *next;
1210
1211 list_del(&efx->node);
1212 efx->primary = NULL;
1213
1214 list_for_each_entry_safe(other, next, &efx->secondary_list, node) {
1215 list_del(&other->node);
1216 netif_dbg(other, probe, other->net_dev,
1217 "moving to unassociated list\n");
1218 list_add_tail(&other->node, &efx_unassociated_list);
1219 other->primary = NULL;
1220 }
1221}
1222
Ben Hutchings8ceee662008-04-27 12:55:59 +01001223/* This configures the PCI device to enable I/O and DMA. */
1224static int efx_init_io(struct efx_nic *efx)
1225{
1226 struct pci_dev *pci_dev = efx->pci_dev;
1227 dma_addr_t dma_mask = efx->type->max_dma_mask;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001228 unsigned int mem_map_size = efx->type->mem_map_size(efx);
Shradha Shah02246a72015-05-06 00:58:14 +01001229 int rc, bar;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001230
Ben Hutchings62776d02010-06-23 11:30:07 +00001231 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001232
Shradha Shah02246a72015-05-06 00:58:14 +01001233 bar = efx->type->mem_bar;
1234
Ben Hutchings8ceee662008-04-27 12:55:59 +01001235 rc = pci_enable_device(pci_dev);
1236 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001237 netif_err(efx, probe, efx->net_dev,
1238 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001239 goto fail1;
1240 }
1241
1242 pci_set_master(pci_dev);
1243
1244 /* Set the PCI DMA mask. Try all possibilities from our
1245 * genuine mask down to 32 bits, because some architectures
1246 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1247 * masks event though they reject 46 bit masks.
1248 */
1249 while (dma_mask > 0x7fffffffUL) {
Ben Hutchings0e33d872012-05-17 17:46:55 +01001250 if (dma_supported(&pci_dev->dev, dma_mask)) {
Russell King9663ded2013-06-26 23:49:11 +01001251 rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
Ben Hutchingse9e01842012-01-05 18:50:29 +00001252 if (rc == 0)
1253 break;
1254 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001255 dma_mask >>= 1;
1256 }
1257 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001258 netif_err(efx, probe, efx->net_dev,
1259 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001260 goto fail2;
1261 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001262 netif_dbg(efx, probe, efx->net_dev,
1263 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001264
Shradha Shah02246a72015-05-06 00:58:14 +01001265 efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
1266 rc = pci_request_region(pci_dev, bar, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001267 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001268 netif_err(efx, probe, efx->net_dev,
1269 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001270 rc = -EIO;
1271 goto fail3;
1272 }
Ben Hutchingsb1057982012-09-19 00:56:47 +01001273 efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001274 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001275 netif_err(efx, probe, efx->net_dev,
1276 "could not map memory BAR at %llx+%x\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001277 (unsigned long long)efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001278 rc = -ENOMEM;
1279 goto fail4;
1280 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001281 netif_dbg(efx, probe, efx->net_dev,
1282 "memory BAR at %llx+%x (virtual %p)\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001283 (unsigned long long)efx->membase_phys, mem_map_size,
1284 efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001285
1286 return 0;
1287
1288 fail4:
Shradha Shah02246a72015-05-06 00:58:14 +01001289 pci_release_region(efx->pci_dev, bar);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001290 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001291 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001292 fail2:
1293 pci_disable_device(efx->pci_dev);
1294 fail1:
1295 return rc;
1296}
1297
1298static void efx_fini_io(struct efx_nic *efx)
1299{
Shradha Shah02246a72015-05-06 00:58:14 +01001300 int bar;
1301
Ben Hutchings62776d02010-06-23 11:30:07 +00001302 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001303
1304 if (efx->membase) {
1305 iounmap(efx->membase);
1306 efx->membase = NULL;
1307 }
1308
1309 if (efx->membase_phys) {
Shradha Shah02246a72015-05-06 00:58:14 +01001310 bar = efx->type->mem_bar;
1311 pci_release_region(efx->pci_dev, bar);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001312 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001313 }
1314
Daniel Pieczko6598dad2015-06-02 11:41:00 +01001315 /* Don't disable bus-mastering if VFs are assigned */
1316 if (!pci_vfs_assigned(efx->pci_dev))
1317 pci_disable_device(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001318}
1319
Jon Cooper267c0152015-05-06 00:59:38 +01001320void efx_set_default_rx_indir_table(struct efx_nic *efx)
1321{
1322 size_t i;
1323
1324 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
1325 efx->rx_indir_table[i] =
1326 ethtool_rxfh_indir_default(i, efx->rss_spread);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001327}
1328
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001329static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
Ben Hutchings46123d02008-09-01 12:47:33 +01001330{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001331 cpumask_var_t thread_mask;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001332 unsigned int count;
Ben Hutchings46123d02008-09-01 12:47:33 +01001333 int cpu;
1334
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001335 if (rss_cpus) {
1336 count = rss_cpus;
1337 } else {
1338 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1339 netif_warn(efx, probe, efx->net_dev,
1340 "RSS disabled due to allocation failure\n");
1341 return 1;
Ben Hutchings46123d02008-09-01 12:47:33 +01001342 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001343
1344 count = 0;
1345 for_each_online_cpu(cpu) {
1346 if (!cpumask_test_cpu(cpu, thread_mask)) {
1347 ++count;
1348 cpumask_or(thread_mask, thread_mask,
Bartosz Golaszewski06931e62015-05-26 15:11:28 +02001349 topology_sibling_cpumask(cpu));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001350 }
1351 }
1352
1353 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001354 }
1355
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001356 /* If RSS is requested for the PF *and* VFs then we can't write RSS
1357 * table entries that are inaccessible to VFs
1358 */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001359#ifdef CONFIG_SFC_SRIOV
1360 if (efx->type->sriov_wanted) {
1361 if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1362 count > efx_vf_size(efx)) {
1363 netif_warn(efx, probe, efx->net_dev,
1364 "Reducing number of RSS channels from %u to %u for "
1365 "VF support. Increase vf-msix-limit to use more "
1366 "channels on the PF.\n",
1367 count, efx_vf_size(efx));
1368 count = efx_vf_size(efx);
1369 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001370 }
Shradha Shah7fa8d542015-05-06 00:55:13 +01001371#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001372
Ben Hutchings46123d02008-09-01 12:47:33 +01001373 return count;
1374}
1375
1376/* Probe the number and type of interrupts we are able to obtain, and
1377 * the resulting numbers of channels and RX queues.
1378 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001379static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001380{
Ben Hutchings7f967c02012-02-13 23:45:02 +00001381 unsigned int extra_channels = 0;
1382 unsigned int i, j;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001383 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001384
Ben Hutchings7f967c02012-02-13 23:45:02 +00001385 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1386 if (efx->extra_channel_type[i])
1387 ++extra_channels;
1388
Ben Hutchings8ceee662008-04-27 12:55:59 +01001389 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001390 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001391 unsigned int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001392
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001393 n_channels = efx_wanted_parallelism(efx);
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001394 if (efx_separate_tx_channels)
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001395 n_channels *= 2;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001396 n_channels += extra_channels;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001397 n_channels = min(n_channels, efx->max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001398
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001399 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001400 xentries[i].entry = i;
Alexander Gordeev184603d2014-02-18 11:12:00 +01001401 rc = pci_enable_msix_range(efx->pci_dev,
1402 xentries, 1, n_channels);
1403 if (rc < 0) {
1404 /* Fall back to single channel MSI */
1405 efx->interrupt_mode = EFX_INT_MODE_MSI;
1406 netif_err(efx, drv, efx->net_dev,
1407 "could not enable MSI-X\n");
1408 } else if (rc < n_channels) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001409 netif_err(efx, drv, efx->net_dev,
1410 "WARNING: Insufficient MSI-X vectors"
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001411 " available (%d < %u).\n", rc, n_channels);
Ben Hutchings62776d02010-06-23 11:30:07 +00001412 netif_err(efx, drv, efx->net_dev,
1413 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001414 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001415 }
1416
Alexander Gordeev184603d2014-02-18 11:12:00 +01001417 if (rc > 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001418 efx->n_channels = n_channels;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001419 if (n_channels > extra_channels)
1420 n_channels -= extra_channels;
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001421 if (efx_separate_tx_channels) {
1422 efx->n_tx_channels = min(max(n_channels / 2,
1423 1U),
1424 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001425 efx->n_rx_channels = max(n_channels -
1426 efx->n_tx_channels,
1427 1U);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001428 } else {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001429 efx->n_tx_channels = min(n_channels,
1430 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001431 efx->n_rx_channels = n_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001432 }
Ben Hutchings7f967c02012-02-13 23:45:02 +00001433 for (i = 0; i < efx->n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001434 efx_get_channel(efx, i)->irq =
1435 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001436 }
1437 }
1438
1439 /* Try single interrupt MSI */
1440 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001441 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001442 efx->n_rx_channels = 1;
1443 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001444 rc = pci_enable_msi(efx->pci_dev);
1445 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001446 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001447 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001448 netif_err(efx, drv, efx->net_dev,
1449 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001450 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1451 }
1452 }
1453
1454 /* Assume legacy interrupts */
1455 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001456 efx->n_channels = 1 + (efx_separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001457 efx->n_rx_channels = 1;
1458 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001459 efx->legacy_irq = efx->pci_dev->irq;
1460 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001461
Ben Hutchings7f967c02012-02-13 23:45:02 +00001462 /* Assign extra channels if possible */
1463 j = efx->n_channels;
1464 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1465 if (!efx->extra_channel_type[i])
1466 continue;
1467 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1468 efx->n_channels <= extra_channels) {
1469 efx->extra_channel_type[i]->handle_no_channel(efx);
1470 } else {
1471 --j;
1472 efx_get_channel(efx, j)->type =
1473 efx->extra_channel_type[i];
1474 }
1475 }
1476
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001477 /* RSS might be usable on VFs even if it is disabled on the PF */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001478#ifdef CONFIG_SFC_SRIOV
1479 if (efx->type->sriov_wanted) {
1480 efx->rss_spread = ((efx->n_rx_channels > 1 ||
1481 !efx->type->sriov_wanted(efx)) ?
1482 efx->n_rx_channels : efx_vf_size(efx));
1483 return 0;
1484 }
1485#endif
1486 efx->rss_spread = efx->n_rx_channels;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001487
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001488 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001489}
1490
Jon Cooper261e4d92013-04-15 18:51:54 +01001491static int efx_soft_enable_interrupts(struct efx_nic *efx)
Ben Hutchingsd8291182012-10-05 23:35:41 +01001492{
Jon Cooper261e4d92013-04-15 18:51:54 +01001493 struct efx_channel *channel, *end_channel;
1494 int rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001495
1496 BUG_ON(efx->state == STATE_DISABLED);
1497
1498 efx->irq_soft_enabled = true;
1499 smp_wmb();
1500
1501 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001502 if (!channel->type->keep_eventq) {
1503 rc = efx_init_eventq(channel);
1504 if (rc)
1505 goto fail;
1506 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001507 efx_start_eventq(channel);
1508 }
1509
1510 efx_mcdi_mode_event(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01001511
1512 return 0;
1513fail:
1514 end_channel = channel;
1515 efx_for_each_channel(channel, efx) {
1516 if (channel == end_channel)
1517 break;
1518 efx_stop_eventq(channel);
1519 if (!channel->type->keep_eventq)
1520 efx_fini_eventq(channel);
1521 }
1522
1523 return rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001524}
1525
1526static void efx_soft_disable_interrupts(struct efx_nic *efx)
1527{
1528 struct efx_channel *channel;
1529
1530 if (efx->state == STATE_DISABLED)
1531 return;
1532
1533 efx_mcdi_mode_poll(efx);
1534
1535 efx->irq_soft_enabled = false;
1536 smp_wmb();
1537
1538 if (efx->legacy_irq)
1539 synchronize_irq(efx->legacy_irq);
1540
1541 efx_for_each_channel(channel, efx) {
1542 if (channel->irq)
1543 synchronize_irq(channel->irq);
1544
1545 efx_stop_eventq(channel);
1546 if (!channel->type->keep_eventq)
1547 efx_fini_eventq(channel);
1548 }
Ben Hutchingscade7152013-08-27 23:12:31 +01001549
1550 /* Flush the asynchronous MCDI request queue */
1551 efx_mcdi_flush_async(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01001552}
1553
Jon Cooper261e4d92013-04-15 18:51:54 +01001554static int efx_enable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001555{
Jon Cooper261e4d92013-04-15 18:51:54 +01001556 struct efx_channel *channel, *end_channel;
1557 int rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001558
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001559 BUG_ON(efx->state == STATE_DISABLED);
1560
Alexandre Ramesb28405b2013-03-21 16:41:43 +00001561 if (efx->eeh_disabled_legacy_irq) {
1562 enable_irq(efx->legacy_irq);
1563 efx->eeh_disabled_legacy_irq = false;
1564 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001565
Ben Hutchings86094f72013-08-21 19:51:04 +01001566 efx->type->irq_enable_master(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001567
1568 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001569 if (channel->type->keep_eventq) {
1570 rc = efx_init_eventq(channel);
1571 if (rc)
1572 goto fail;
1573 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001574 }
1575
Jon Cooper261e4d92013-04-15 18:51:54 +01001576 rc = efx_soft_enable_interrupts(efx);
1577 if (rc)
1578 goto fail;
1579
1580 return 0;
1581
1582fail:
1583 end_channel = channel;
1584 efx_for_each_channel(channel, efx) {
1585 if (channel == end_channel)
1586 break;
1587 if (channel->type->keep_eventq)
1588 efx_fini_eventq(channel);
1589 }
1590
1591 efx->type->irq_disable_non_ev(efx);
1592
1593 return rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001594}
1595
Ben Hutchingsd8291182012-10-05 23:35:41 +01001596static void efx_disable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001597{
1598 struct efx_channel *channel;
1599
Ben Hutchingsd8291182012-10-05 23:35:41 +01001600 efx_soft_disable_interrupts(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001601
1602 efx_for_each_channel(channel, efx) {
Ben Hutchingsd8291182012-10-05 23:35:41 +01001603 if (channel->type->keep_eventq)
Ben Hutchings7f967c02012-02-13 23:45:02 +00001604 efx_fini_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001605 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001606
Ben Hutchings86094f72013-08-21 19:51:04 +01001607 efx->type->irq_disable_non_ev(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001608}
1609
Ben Hutchings8ceee662008-04-27 12:55:59 +01001610static void efx_remove_interrupts(struct efx_nic *efx)
1611{
1612 struct efx_channel *channel;
1613
1614 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001615 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001616 channel->irq = 0;
1617 pci_disable_msi(efx->pci_dev);
1618 pci_disable_msix(efx->pci_dev);
1619
1620 /* Remove legacy interrupt */
1621 efx->legacy_irq = 0;
1622}
1623
Ben Hutchings8831da72008-09-01 12:47:48 +01001624static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001625{
Ben Hutchings602a5322011-05-16 17:32:39 +01001626 struct efx_channel *channel;
1627 struct efx_tx_queue *tx_queue;
1628
Ben Hutchings97653432011-01-12 18:26:56 +00001629 efx->tx_channel_offset =
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001630 efx_separate_tx_channels ?
1631 efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001632
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001633 /* We need to mark which channels really have RX and TX
1634 * queues, and adjust the TX queue numbers if we have separate
Ben Hutchings602a5322011-05-16 17:32:39 +01001635 * RX-only and TX-only channels.
1636 */
1637 efx_for_each_channel(channel, efx) {
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001638 if (channel->channel < efx->n_rx_channels)
1639 channel->rx_queue.core_index = channel->channel;
1640 else
1641 channel->rx_queue.core_index = -1;
1642
Ben Hutchings602a5322011-05-16 17:32:39 +01001643 efx_for_each_channel_tx_queue(tx_queue, channel)
1644 tx_queue->queue -= (efx->tx_channel_offset *
1645 EFX_TXQ_TYPES);
1646 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001647}
1648
1649static int efx_probe_nic(struct efx_nic *efx)
1650{
1651 int rc;
1652
Ben Hutchings62776d02010-06-23 11:30:07 +00001653 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001654
1655 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001656 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001657 if (rc)
1658 return rc;
1659
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001660 do {
1661 if (!efx->max_channels || !efx->max_tx_channels) {
1662 netif_err(efx, drv, efx->net_dev,
1663 "Insufficient resources to allocate"
1664 " any channels\n");
1665 rc = -ENOSPC;
1666 goto fail1;
1667 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001668
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001669 /* Determine the number of channels and queues by trying
1670 * to hook in MSI-X interrupts.
1671 */
1672 rc = efx_probe_interrupts(efx);
1673 if (rc)
1674 goto fail1;
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001675
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001676 efx_set_channels(efx);
1677
1678 /* dimension_resources can fail with EAGAIN */
1679 rc = efx->type->dimension_resources(efx);
1680 if (rc != 0 && rc != -EAGAIN)
1681 goto fail2;
1682
1683 if (rc == -EAGAIN)
1684 /* try again with new max_channels */
1685 efx_remove_interrupts(efx);
1686
1687 } while (rc == -EAGAIN);
Ben Hutchings28e47c42012-02-15 01:58:49 +00001688
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001689 if (efx->n_channels > 1)
Jon Cooper267c0152015-05-06 00:59:38 +01001690 netdev_rss_key_fill(&efx->rx_hash_key,
1691 sizeof(efx->rx_hash_key));
1692 efx_set_default_rx_indir_table(efx);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001693
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001694 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1695 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001696
1697 /* Initialise the interrupt moderation settings */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001698 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1699 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001700
1701 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001702
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001703fail2:
1704 efx_remove_interrupts(efx);
1705fail1:
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001706 efx->type->remove(efx);
1707 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001708}
1709
1710static void efx_remove_nic(struct efx_nic *efx)
1711{
Ben Hutchings62776d02010-06-23 11:30:07 +00001712 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001713
1714 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001715 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001716}
1717
Ben Hutchingsadd72472012-11-08 01:46:53 +00001718static int efx_probe_filters(struct efx_nic *efx)
1719{
1720 int rc;
1721
1722 spin_lock_init(&efx->filter_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001723 init_rwsem(&efx->filter_sem);
1724 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001725 rc = efx->type->filter_table_probe(efx);
1726 if (rc)
Edward Cree0d322412015-05-20 11:10:03 +01001727 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001728
1729#ifdef CONFIG_RFS_ACCEL
1730 if (efx->type->offload_features & NETIF_F_NTUPLE) {
1731 efx->rps_flow_id = kcalloc(efx->type->max_rx_ip_filters,
1732 sizeof(*efx->rps_flow_id),
1733 GFP_KERNEL);
1734 if (!efx->rps_flow_id) {
1735 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001736 rc = -ENOMEM;
1737 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001738 }
1739 }
1740#endif
Edward Cree0d322412015-05-20 11:10:03 +01001741out_unlock:
1742 up_write(&efx->filter_sem);
1743 return rc;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001744}
1745
1746static void efx_remove_filters(struct efx_nic *efx)
1747{
1748#ifdef CONFIG_RFS_ACCEL
1749 kfree(efx->rps_flow_id);
1750#endif
Edward Cree0d322412015-05-20 11:10:03 +01001751 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001752 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001753 up_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001754}
1755
1756static void efx_restore_filters(struct efx_nic *efx)
1757{
Edward Cree0d322412015-05-20 11:10:03 +01001758 down_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001759 efx->type->filter_table_restore(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001760 up_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001761}
1762
Ben Hutchings8ceee662008-04-27 12:55:59 +01001763/**************************************************************************
1764 *
1765 * NIC startup/shutdown
1766 *
1767 *************************************************************************/
1768
1769static int efx_probe_all(struct efx_nic *efx)
1770{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001771 int rc;
1772
Ben Hutchings8ceee662008-04-27 12:55:59 +01001773 rc = efx_probe_nic(efx);
1774 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001775 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001776 goto fail1;
1777 }
1778
Ben Hutchings8ceee662008-04-27 12:55:59 +01001779 rc = efx_probe_port(efx);
1780 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001781 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001782 goto fail2;
1783 }
1784
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00001785 BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
1786 if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
1787 rc = -EINVAL;
1788 goto fail3;
1789 }
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001790 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001791
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001792#ifdef CONFIG_SFC_SRIOV
1793 rc = efx->type->vswitching_probe(efx);
1794 if (rc) /* not fatal; the PF will still work fine */
1795 netif_warn(efx, probe, efx->net_dev,
1796 "failed to setup vswitching rc=%d;"
1797 " VFs may not function\n", rc);
1798#endif
1799
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001800 rc = efx_probe_filters(efx);
1801 if (rc) {
1802 netif_err(efx, probe, efx->net_dev,
1803 "failed to create filter tables\n");
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001804 goto fail4;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001805 }
1806
Ben Hutchings7f967c02012-02-13 23:45:02 +00001807 rc = efx_probe_channels(efx);
1808 if (rc)
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001809 goto fail5;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001810
Ben Hutchings8ceee662008-04-27 12:55:59 +01001811 return 0;
1812
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001813 fail5:
Ben Hutchings7f967c02012-02-13 23:45:02 +00001814 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001815 fail4:
1816#ifdef CONFIG_SFC_SRIOV
1817 efx->type->vswitching_remove(efx);
1818#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001819 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001820 efx_remove_port(efx);
1821 fail2:
1822 efx_remove_nic(efx);
1823 fail1:
1824 return rc;
1825}
1826
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001827/* If the interface is supposed to be running but is not, start
1828 * the hardware and software data path, regular activity for the port
1829 * (MAC statistics, link polling, etc.) and schedule the port to be
1830 * reconfigured. Interrupts must already be enabled. This function
1831 * is safe to call multiple times, so long as the NIC is not disabled.
1832 * Requires the RTNL lock.
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001833 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001834static void efx_start_all(struct efx_nic *efx)
1835{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001836 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001837 BUG_ON(efx->state == STATE_DISABLED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001838
1839 /* Check that it is appropriate to restart the interface. All
1840 * of these flags are safe to read under just the rtnl lock */
Edward Creee2835462014-04-16 19:27:48 +01001841 if (efx->port_enabled || !netif_running(efx->net_dev) ||
1842 efx->reset_pending)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001843 return;
1844
Ben Hutchings8ceee662008-04-27 12:55:59 +01001845 efx_start_port(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001846 efx_start_datapath(efx);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001847
Alexandre Rames626950d2013-01-14 17:20:22 +00001848 /* Start the hardware monitor if there is one */
1849 if (efx->type->monitor != NULL)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001850 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1851 efx_monitor_interval);
Alexandre Rames626950d2013-01-14 17:20:22 +00001852
1853 /* If link state detection is normally event-driven, we have
1854 * to poll now because we could have missed a change
1855 */
1856 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) {
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001857 mutex_lock(&efx->mac_lock);
1858 if (efx->phy_op->poll(efx))
1859 efx_link_status_changed(efx);
1860 mutex_unlock(&efx->mac_lock);
1861 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001862
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001863 efx->type->start_stats(efx);
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001864 efx->type->pull_stats(efx);
1865 spin_lock_bh(&efx->stats_lock);
1866 efx->type->update_stats(efx, NULL, NULL);
1867 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001868}
1869
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001870/* Quiesce the hardware and software data path, and regular activity
1871 * for the port without bringing the link down. Safe to call multiple
1872 * times with the NIC in almost any state, but interrupts should be
1873 * enabled. Requires the RTNL lock.
1874 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001875static void efx_stop_all(struct efx_nic *efx)
1876{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001877 EFX_ASSERT_RESET_SERIALISED(efx);
1878
1879 /* port_enabled can be read safely under the rtnl lock */
1880 if (!efx->port_enabled)
1881 return;
1882
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001883 /* update stats before we go down so we can accurately count
1884 * rx_nodesc_drops
1885 */
1886 efx->type->pull_stats(efx);
1887 spin_lock_bh(&efx->stats_lock);
1888 efx->type->update_stats(efx, NULL, NULL);
1889 spin_unlock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001890 efx->type->stop_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001891 efx_stop_port(efx);
1892
Ben Hutchings29c69a42013-01-28 19:01:06 +00001893 /* Stop the kernel transmit interface. This is only valid if
1894 * the device is stopped or detached; otherwise the watchdog
1895 * may fire immediately.
1896 */
1897 WARN_ON(netif_running(efx->net_dev) &&
1898 netif_device_present(efx->net_dev));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001899 netif_tx_disable(efx->net_dev);
1900
1901 efx_stop_datapath(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001902}
1903
1904static void efx_remove_all(struct efx_nic *efx)
1905{
Ben Hutchings46426102010-09-10 06:42:33 +00001906 efx_remove_channels(efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001907 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001908#ifdef CONFIG_SFC_SRIOV
1909 efx->type->vswitching_remove(efx);
1910#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001911 efx_remove_port(efx);
1912 efx_remove_nic(efx);
1913}
1914
Ben Hutchings8ceee662008-04-27 12:55:59 +01001915/**************************************************************************
1916 *
1917 * Interrupt moderation
1918 *
1919 **************************************************************************/
1920
Ben Hutchingscc180b62011-12-08 19:51:47 +00001921static unsigned int irq_mod_ticks(unsigned int usecs, unsigned int quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001922{
Ben Hutchingsb548f972011-09-05 07:41:44 +00001923 if (usecs == 0)
1924 return 0;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001925 if (usecs * 1000 < quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001926 return 1; /* never round down to 0 */
Ben Hutchingscc180b62011-12-08 19:51:47 +00001927 return usecs * 1000 / quantum_ns;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001928}
1929
Ben Hutchings8ceee662008-04-27 12:55:59 +01001930/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001931int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1932 unsigned int rx_usecs, bool rx_adaptive,
1933 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001934{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001935 struct efx_channel *channel;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001936 unsigned int irq_mod_max = DIV_ROUND_UP(efx->type->timer_period_max *
1937 efx->timer_quantum_ns,
1938 1000);
1939 unsigned int tx_ticks;
1940 unsigned int rx_ticks;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001941
1942 EFX_ASSERT_RESET_SERIALISED(efx);
1943
Ben Hutchingscc180b62011-12-08 19:51:47 +00001944 if (tx_usecs > irq_mod_max || rx_usecs > irq_mod_max)
Ben Hutchings9e393b32011-09-05 07:43:04 +00001945 return -EINVAL;
1946
Ben Hutchingscc180b62011-12-08 19:51:47 +00001947 tx_ticks = irq_mod_ticks(tx_usecs, efx->timer_quantum_ns);
1948 rx_ticks = irq_mod_ticks(rx_usecs, efx->timer_quantum_ns);
1949
Ben Hutchings9e393b32011-09-05 07:43:04 +00001950 if (tx_ticks != rx_ticks && efx->tx_channel_offset == 0 &&
1951 !rx_may_override_tx) {
1952 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1953 "RX and TX IRQ moderation must be equal\n");
1954 return -EINVAL;
1955 }
1956
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001957 efx->irq_rx_adaptive = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001958 efx->irq_rx_moderation = rx_ticks;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001959 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00001960 if (efx_channel_has_rx_queue(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001961 channel->irq_moderation = rx_ticks;
Ben Hutchings525da902011-02-07 23:04:38 +00001962 else if (efx_channel_has_tx_queues(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001963 channel->irq_moderation = tx_ticks;
1964 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00001965
1966 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001967}
1968
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001969void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
1970 unsigned int *rx_usecs, bool *rx_adaptive)
1971{
Ben Hutchingscc180b62011-12-08 19:51:47 +00001972 /* We must round up when converting ticks to microseconds
1973 * because we round down when converting the other way.
1974 */
1975
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001976 *rx_adaptive = efx->irq_rx_adaptive;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001977 *rx_usecs = DIV_ROUND_UP(efx->irq_rx_moderation *
1978 efx->timer_quantum_ns,
1979 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001980
1981 /* If channels are shared between RX and TX, so is IRQ
1982 * moderation. Otherwise, IRQ moderation is the same for all
1983 * TX channels and is not adaptive.
1984 */
1985 if (efx->tx_channel_offset == 0)
1986 *tx_usecs = *rx_usecs;
1987 else
Ben Hutchingscc180b62011-12-08 19:51:47 +00001988 *tx_usecs = DIV_ROUND_UP(
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001989 efx->channel[efx->tx_channel_offset]->irq_moderation *
Ben Hutchingscc180b62011-12-08 19:51:47 +00001990 efx->timer_quantum_ns,
1991 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001992}
1993
Ben Hutchings8ceee662008-04-27 12:55:59 +01001994/**************************************************************************
1995 *
1996 * Hardware monitor
1997 *
1998 **************************************************************************/
1999
Ben Hutchingse254c272010-09-20 08:44:10 +00002000/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002001static void efx_monitor(struct work_struct *data)
2002{
2003 struct efx_nic *efx = container_of(data, struct efx_nic,
2004 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002005
Ben Hutchings62776d02010-06-23 11:30:07 +00002006 netif_vdbg(efx, timer, efx->net_dev,
2007 "hardware monitor executing on CPU %d\n",
2008 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002009 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002010
Ben Hutchings8ceee662008-04-27 12:55:59 +01002011 /* If the mac_lock is already held then it is likely a port
2012 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00002013 * most of the work of monitor() anyway. */
2014 if (mutex_trylock(&efx->mac_lock)) {
2015 if (efx->port_enabled)
2016 efx->type->monitor(efx);
2017 mutex_unlock(&efx->mac_lock);
2018 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002019
Ben Hutchings8ceee662008-04-27 12:55:59 +01002020 queue_delayed_work(efx->workqueue, &efx->monitor_work,
2021 efx_monitor_interval);
2022}
2023
2024/**************************************************************************
2025 *
2026 * ioctls
2027 *
2028 *************************************************************************/
2029
2030/* Net device ioctl
2031 * Context: process, rtnl_lock() held.
2032 */
2033static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
2034{
Ben Hutchings767e4682008-09-01 12:43:14 +01002035 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002036 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002037
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002038 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings433dc9b2013-11-14 01:26:21 +00002039 return efx_ptp_set_ts_config(efx, ifr);
2040 if (cmd == SIOCGHWTSTAMP)
2041 return efx_ptp_get_ts_config(efx, ifr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002042
Ben Hutchings68e7f452009-04-29 08:05:08 +00002043 /* Convert phy_id from older PRTAD/DEVAD format */
2044 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
2045 (data->phy_id & 0xfc00) == 0x0400)
2046 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
2047
2048 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002049}
2050
2051/**************************************************************************
2052 *
2053 * NAPI interface
2054 *
2055 **************************************************************************/
2056
Ben Hutchings7f967c02012-02-13 23:45:02 +00002057static void efx_init_napi_channel(struct efx_channel *channel)
2058{
2059 struct efx_nic *efx = channel->efx;
2060
2061 channel->napi_dev = efx->net_dev;
2062 netif_napi_add(channel->napi_dev, &channel->napi_str,
2063 efx_poll, napi_weight);
Alexandre Rames36763262014-07-22 14:03:25 +01002064 napi_hash_add(&channel->napi_str);
Bert Kenwardc0f9c7e2015-10-26 14:23:42 +00002065 efx_channel_busy_poll_init(channel);
Ben Hutchings7f967c02012-02-13 23:45:02 +00002066}
2067
Ben Hutchingse8f14992010-12-07 19:47:34 +00002068static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002069{
2070 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002071
Ben Hutchings7f967c02012-02-13 23:45:02 +00002072 efx_for_each_channel(channel, efx)
2073 efx_init_napi_channel(channel);
Ben Hutchingse8f14992010-12-07 19:47:34 +00002074}
2075
2076static void efx_fini_napi_channel(struct efx_channel *channel)
2077{
Alexandre Rames36763262014-07-22 14:03:25 +01002078 if (channel->napi_dev) {
Ben Hutchingse8f14992010-12-07 19:47:34 +00002079 netif_napi_del(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +01002080 napi_hash_del(&channel->napi_str);
2081 }
Ben Hutchingse8f14992010-12-07 19:47:34 +00002082 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002083}
2084
2085static void efx_fini_napi(struct efx_nic *efx)
2086{
2087 struct efx_channel *channel;
2088
Ben Hutchingse8f14992010-12-07 19:47:34 +00002089 efx_for_each_channel(channel, efx)
2090 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002091}
2092
2093/**************************************************************************
2094 *
2095 * Kernel netpoll interface
2096 *
2097 *************************************************************************/
2098
2099#ifdef CONFIG_NET_POLL_CONTROLLER
2100
2101/* Although in the common case interrupts will be disabled, this is not
2102 * guaranteed. However, all our work happens inside the NAPI callback,
2103 * so no locking is required.
2104 */
2105static void efx_netpoll(struct net_device *net_dev)
2106{
Ben Hutchings767e4682008-09-01 12:43:14 +01002107 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002108 struct efx_channel *channel;
2109
Ben Hutchings64ee3122008-09-01 12:47:38 +01002110 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002111 efx_schedule_channel(channel);
2112}
2113
2114#endif
2115
Alexandre Rames36763262014-07-22 14:03:25 +01002116#ifdef CONFIG_NET_RX_BUSY_POLL
2117static int efx_busy_poll(struct napi_struct *napi)
2118{
2119 struct efx_channel *channel =
2120 container_of(napi, struct efx_channel, napi_str);
2121 struct efx_nic *efx = channel->efx;
2122 int budget = 4;
2123 int old_rx_packets, rx_packets;
2124
2125 if (!netif_running(efx->net_dev))
2126 return LL_FLUSH_FAILED;
2127
Bert Kenwardc0f9c7e2015-10-26 14:23:42 +00002128 if (!efx_channel_try_lock_poll(channel))
Alexandre Rames36763262014-07-22 14:03:25 +01002129 return LL_FLUSH_BUSY;
2130
2131 old_rx_packets = channel->rx_queue.rx_packets;
2132 efx_process_channel(channel, budget);
2133
2134 rx_packets = channel->rx_queue.rx_packets - old_rx_packets;
2135
2136 /* There is no race condition with NAPI here.
2137 * NAPI will automatically be rescheduled if it yielded during busy
2138 * polling, because it was not able to take the lock and thus returned
2139 * the full budget.
2140 */
2141 efx_channel_unlock_poll(channel);
2142
2143 return rx_packets;
2144}
2145#endif
2146
Ben Hutchings8ceee662008-04-27 12:55:59 +01002147/**************************************************************************
2148 *
2149 * Kernel net device interface
2150 *
2151 *************************************************************************/
2152
2153/* Context: process, rtnl_lock() held. */
Shradha Shahe340be92015-05-20 11:11:03 +01002154int efx_net_open(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002155{
Ben Hutchings767e4682008-09-01 12:43:14 +01002156 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002157 int rc;
2158
Ben Hutchings62776d02010-06-23 11:30:07 +00002159 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
2160 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002161
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002162 rc = efx_check_disabled(efx);
2163 if (rc)
2164 return rc;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002165 if (efx->phy_mode & PHY_MODE_SPECIAL)
2166 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002167 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
2168 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002169
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00002170 /* Notify the kernel of the link state polled during driver load,
2171 * before the monitor starts running */
2172 efx_link_status_changed(efx);
2173
Ben Hutchings8ceee662008-04-27 12:55:59 +01002174 efx_start_all(efx);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002175 efx_selftest_async_start(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002176 return 0;
2177}
2178
2179/* Context: process, rtnl_lock() held.
2180 * Note that the kernel will ignore our return code; this method
2181 * should really be a void.
2182 */
Shradha Shahe340be92015-05-20 11:11:03 +01002183int efx_net_stop(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002184{
Ben Hutchings767e4682008-09-01 12:43:14 +01002185 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002186
Ben Hutchings62776d02010-06-23 11:30:07 +00002187 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
2188 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002189
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002190 /* Stop the device and flush all the channels */
2191 efx_stop_all(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002192
2193 return 0;
2194}
2195
Ben Hutchings5b9e2072008-05-16 21:18:14 +01002196/* Context: process, dev_base_lock or RTNL held, non-blocking. */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +00002197static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev,
2198 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002199{
Ben Hutchings767e4682008-09-01 12:43:14 +01002200 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002201
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002202 spin_lock_bh(&efx->stats_lock);
Ben Hutchingscd0ecc92012-12-14 21:52:56 +00002203 efx->type->update_stats(efx, NULL, stats);
Ben Hutchings1cb34522011-09-02 23:23:00 +01002204 spin_unlock_bh(&efx->stats_lock);
2205
Ben Hutchings8ceee662008-04-27 12:55:59 +01002206 return stats;
2207}
2208
2209/* Context: netif_tx_lock held, BHs disabled. */
2210static void efx_watchdog(struct net_device *net_dev)
2211{
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 Hutchings62776d02010-06-23 11:30:07 +00002214 netif_err(efx, tx_err, efx->net_dev,
2215 "TX stuck with port_enabled=%d: resetting channels\n",
2216 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002217
Ben Hutchings739bb23d2008-11-04 20:35:36 +00002218 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002219}
2220
2221
2222/* Context: process, rtnl_lock() held. */
2223static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2224{
Ben Hutchings767e4682008-09-01 12:43:14 +01002225 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002226 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002227
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002228 rc = efx_check_disabled(efx);
2229 if (rc)
2230 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002231 if (new_mtu > EFX_MAX_MTU)
2232 return -EINVAL;
2233
Ben Hutchings62776d02010-06-23 11:30:07 +00002234 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002235
Ben Hutchings29c69a42013-01-28 19:01:06 +00002236 efx_device_detach_sync(efx);
2237 efx_stop_all(efx);
2238
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002239 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002240 net_dev->mtu = new_mtu;
Edward Cree0d322412015-05-20 11:10:03 +01002241 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002242 mutex_unlock(&efx->mac_lock);
2243
Ben Hutchings8ceee662008-04-27 12:55:59 +01002244 efx_start_all(efx);
Ben Hutchings29c69a42013-01-28 19:01:06 +00002245 netif_device_attach(efx->net_dev);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00002246 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002247}
2248
2249static int efx_set_mac_address(struct net_device *net_dev, void *data)
2250{
Ben Hutchings767e4682008-09-01 12:43:14 +01002251 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002252 struct sockaddr *addr = data;
Ben Hutchingse0b3ae32014-02-12 18:59:54 +00002253 u8 *new_addr = addr->sa_data;
Shradha Shahcfc77c22015-05-20 11:09:30 +01002254 u8 old_addr[6];
2255 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002256
Ben Hutchings8ceee662008-04-27 12:55:59 +01002257 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002258 netif_err(efx, drv, efx->net_dev,
2259 "invalid ethernet MAC address requested: %pM\n",
2260 new_addr);
Danny Kukawka504f9b52012-02-21 02:07:49 +00002261 return -EADDRNOTAVAIL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002262 }
2263
Shradha Shahcfc77c22015-05-20 11:09:30 +01002264 /* save old address */
2265 ether_addr_copy(old_addr, net_dev->dev_addr);
Edward Creecd84ff42014-03-07 18:27:41 +00002266 ether_addr_copy(net_dev->dev_addr, new_addr);
Shradha Shah910c8782015-05-20 11:12:48 +01002267 if (efx->type->set_mac_address) {
2268 rc = efx->type->set_mac_address(efx);
Shradha Shahcfc77c22015-05-20 11:09:30 +01002269 if (rc) {
2270 ether_addr_copy(net_dev->dev_addr, old_addr);
2271 return rc;
2272 }
2273 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002274
2275 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002276 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01002277 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002278 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002279
2280 return 0;
2281}
2282
Ben Hutchingsa816f752008-09-01 12:49:12 +01002283/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002284static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002285{
Ben Hutchings767e4682008-09-01 12:43:14 +01002286 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002287
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00002288 if (efx->port_enabled)
2289 queue_work(efx->workqueue, &efx->mac_work);
2290 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002291}
2292
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002293static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002294{
2295 struct efx_nic *efx = netdev_priv(net_dev);
2296
2297 /* If disabling RX n-tuple filtering, clear existing filters */
2298 if (net_dev->features & ~data & NETIF_F_NTUPLE)
Ben Hutchingsfbd79122013-11-21 19:15:03 +00002299 return efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002300
2301 return 0;
2302}
2303
Shradha Shah7fa8d542015-05-06 00:55:13 +01002304static const struct net_device_ops efx_netdev_ops = {
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002305 .ndo_open = efx_net_open,
2306 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00002307 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002308 .ndo_tx_timeout = efx_watchdog,
2309 .ndo_start_xmit = efx_hard_start_xmit,
2310 .ndo_validate_addr = eth_validate_addr,
2311 .ndo_do_ioctl = efx_ioctl,
2312 .ndo_change_mtu = efx_change_mtu,
2313 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002314 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002315 .ndo_set_features = efx_set_features,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002316#ifdef CONFIG_SFC_SRIOV
Shradha Shah7fa8d542015-05-06 00:55:13 +01002317 .ndo_set_vf_mac = efx_sriov_set_vf_mac,
2318 .ndo_set_vf_vlan = efx_sriov_set_vf_vlan,
2319 .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk,
2320 .ndo_get_vf_config = efx_sriov_get_vf_config,
Edward Cree4392dc62015-05-20 11:12:13 +01002321 .ndo_set_vf_link_state = efx_sriov_set_vf_link_state,
Shradha Shah1d051e02015-06-02 11:38:16 +01002322 .ndo_get_phys_port_id = efx_sriov_get_phys_port_id,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002323#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002324#ifdef CONFIG_NET_POLL_CONTROLLER
2325 .ndo_poll_controller = efx_netpoll,
2326#endif
Ben Hutchings94b274b2011-01-10 21:18:20 +00002327 .ndo_setup_tc = efx_setup_tc,
Alexandre Rames36763262014-07-22 14:03:25 +01002328#ifdef CONFIG_NET_RX_BUSY_POLL
2329 .ndo_busy_poll = efx_busy_poll,
2330#endif
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002331#ifdef CONFIG_RFS_ACCEL
2332 .ndo_rx_flow_steer = efx_filter_rfs,
2333#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002334};
2335
Ben Hutchings7dde5962008-12-12 22:09:38 -08002336static void efx_update_name(struct efx_nic *efx)
2337{
2338 strcpy(efx->name, efx->net_dev->name);
2339 efx_mtd_rename(efx);
2340 efx_set_channel_names(efx);
2341}
2342
Ben Hutchings8ceee662008-04-27 12:55:59 +01002343static int efx_netdev_event(struct notifier_block *this,
2344 unsigned long event, void *ptr)
2345{
Jiri Pirko351638e2013-05-28 01:30:21 +00002346 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002347
Shradha Shah7fa8d542015-05-06 00:55:13 +01002348 if ((net_dev->netdev_ops == &efx_netdev_ops) &&
Ben Hutchings7dde5962008-12-12 22:09:38 -08002349 event == NETDEV_CHANGENAME)
2350 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002351
2352 return NOTIFY_DONE;
2353}
2354
2355static struct notifier_block efx_netdev_notifier = {
2356 .notifier_call = efx_netdev_event,
2357};
2358
Ben Hutchings06d5e192008-12-12 21:47:23 -08002359static ssize_t
2360show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2361{
2362 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2363 return sprintf(buf, "%d\n", efx->phy_type);
2364}
Ben Hutchings776fbcc2013-06-18 17:45:40 +01002365static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002366
Edward Creee7fef9b2015-05-27 13:14:01 +01002367#ifdef CONFIG_SFC_MCDI_LOGGING
2368static ssize_t show_mcdi_log(struct device *dev, struct device_attribute *attr,
2369 char *buf)
2370{
2371 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2372 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2373
2374 return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled);
2375}
2376static ssize_t set_mcdi_log(struct device *dev, struct device_attribute *attr,
2377 const char *buf, size_t count)
2378{
2379 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2380 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2381 bool enable = count > 0 && *buf != '0';
2382
2383 mcdi->logging_enabled = enable;
2384 return count;
2385}
2386static DEVICE_ATTR(mcdi_logging, 0644, show_mcdi_log, set_mcdi_log);
2387#endif
2388
Ben Hutchings8ceee662008-04-27 12:55:59 +01002389static int efx_register_netdev(struct efx_nic *efx)
2390{
2391 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002392 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002393 int rc;
2394
2395 net_dev->watchdog_timeo = 5 * HZ;
2396 net_dev->irq = efx->pci_dev->irq;
Shradha Shah7fa8d542015-05-06 00:55:13 +01002397 net_dev->netdev_ops = &efx_netdev_ops;
2398 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0)
Ben Hutchings8127d662013-08-29 19:19:29 +01002399 net_dev->priv_flags |= IFF_UNICAST_FLT;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002400 net_dev->ethtool_ops = &efx_ethtool_ops;
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002401 net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002402
Ben Hutchings7dde5962008-12-12 22:09:38 -08002403 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00002404
Ben Hutchings7153f622012-07-27 20:50:52 +01002405 /* Enable resets to be scheduled and check whether any were
2406 * already requested. If so, the NIC is probably hosed so we
2407 * abort.
2408 */
2409 efx->state = STATE_READY;
2410 smp_mb(); /* ensure we change state before checking reset_pending */
2411 if (efx->reset_pending) {
2412 netif_err(efx, probe, efx->net_dev,
2413 "aborting probe due to scheduled reset\n");
2414 rc = -EIO;
2415 goto fail_locked;
2416 }
2417
Ben Hutchingsaed06282009-08-26 08:16:27 +00002418 rc = dev_alloc_name(net_dev, net_dev->name);
2419 if (rc < 0)
2420 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002421 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002422
Ben Hutchings8f8b3d52012-08-24 18:04:38 +01002423 /* Always start with carrier off; PHY events will detect the link */
2424 netif_carrier_off(net_dev);
2425
Ben Hutchingsaed06282009-08-26 08:16:27 +00002426 rc = register_netdevice(net_dev);
2427 if (rc)
2428 goto fail_locked;
2429
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002430 efx_for_each_channel(channel, efx) {
2431 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00002432 efx_for_each_channel_tx_queue(tx_queue, channel)
2433 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002434 }
2435
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002436 efx_associate(efx);
2437
Ben Hutchings7dde5962008-12-12 22:09:38 -08002438 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002439
Ben Hutchings06d5e192008-12-12 21:47:23 -08002440 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2441 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002442 netif_err(efx, drv, efx->net_dev,
2443 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08002444 goto fail_registered;
2445 }
Edward Creee7fef9b2015-05-27 13:14:01 +01002446#ifdef CONFIG_SFC_MCDI_LOGGING
2447 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2448 if (rc) {
2449 netif_err(efx, drv, efx->net_dev,
2450 "failed to init net dev attributes\n");
2451 goto fail_attr_mcdi_logging;
2452 }
2453#endif
Ben Hutchings06d5e192008-12-12 21:47:23 -08002454
Ben Hutchings8ceee662008-04-27 12:55:59 +01002455 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08002456
Edward Creee7fef9b2015-05-27 13:14:01 +01002457#ifdef CONFIG_SFC_MCDI_LOGGING
2458fail_attr_mcdi_logging:
2459 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2460#endif
Ben Hutchings7153f622012-07-27 20:50:52 +01002461fail_registered:
2462 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002463 efx_dissociate(efx);
Ben Hutchings7153f622012-07-27 20:50:52 +01002464 unregister_netdevice(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002465fail_locked:
Ben Hutchings7153f622012-07-27 20:50:52 +01002466 efx->state = STATE_UNINIT;
Ben Hutchingsaed06282009-08-26 08:16:27 +00002467 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00002468 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00002469 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002470}
2471
2472static void efx_unregister_netdev(struct efx_nic *efx)
2473{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002474 if (!efx->net_dev)
2475 return;
2476
Ben Hutchings767e4682008-09-01 12:43:14 +01002477 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002478
Edward Creee7fef9b2015-05-27 13:14:01 +01002479 if (efx_dev_registered(efx)) {
2480 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2481#ifdef CONFIG_SFC_MCDI_LOGGING
2482 device_remove_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2483#endif
2484 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2485 unregister_netdev(efx->net_dev);
2486 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002487}
2488
2489/**************************************************************************
2490 *
2491 * Device reset and suspend
2492 *
2493 **************************************************************************/
2494
Ben Hutchings2467ca42008-09-01 12:48:50 +01002495/* Tears down the entire software state and most of the hardware state
2496 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002497void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002498{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002499 EFX_ASSERT_RESET_SERIALISED(efx);
2500
Edward Creee2835462014-04-16 19:27:48 +01002501 if (method == RESET_TYPE_MCDI_TIMEOUT)
2502 efx->type->prepare_flr(efx);
2503
Ben Hutchings2467ca42008-09-01 12:48:50 +01002504 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002505 efx_disable_interrupts(efx);
Ben Hutchings5642cee2012-07-27 19:35:52 +01002506
2507 mutex_lock(&efx->mac_lock);
Jon Cooper087e9022015-05-20 11:11:35 +01002508 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2509 method != RESET_TYPE_DATAPATH)
Steve Hodgson4b988282009-01-29 17:50:51 +00002510 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002511 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002512}
2513
Ben Hutchings2467ca42008-09-01 12:48:50 +01002514/* This function will always ensure that the locks acquired in
2515 * efx_reset_down() are released. A failure return code indicates
2516 * that we were unable to reinitialise the hardware, and the
2517 * driver should be disabled. If ok is false, then the rx and tx
2518 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002519int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002520{
2521 int rc;
2522
Ben Hutchings2467ca42008-09-01 12:48:50 +01002523 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002524
Edward Creee2835462014-04-16 19:27:48 +01002525 if (method == RESET_TYPE_MCDI_TIMEOUT)
2526 efx->type->finish_flr(efx);
2527
2528 /* Ensure that SRAM is initialised even if we're disabling the device */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002529 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002530 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002531 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002532 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002533 }
2534
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002535 if (!ok)
2536 goto fail;
2537
Jon Cooper087e9022015-05-20 11:11:35 +01002538 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2539 method != RESET_TYPE_DATAPATH) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002540 rc = efx->phy_op->init(efx);
2541 if (rc)
2542 goto fail;
Edward Cree267d9d72015-05-06 00:59:18 +01002543 rc = efx->phy_op->reconfigure(efx);
2544 if (rc && rc != -EPERM)
Ben Hutchings62776d02010-06-23 11:30:07 +00002545 netif_err(efx, drv, efx->net_dev,
2546 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002547 }
2548
Jon Cooper261e4d92013-04-15 18:51:54 +01002549 rc = efx_enable_interrupts(efx);
2550 if (rc)
2551 goto fail;
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002552
2553#ifdef CONFIG_SFC_SRIOV
2554 rc = efx->type->vswitching_restore(efx);
2555 if (rc) /* not fatal; the PF will still work fine */
2556 netif_warn(efx, probe, efx->net_dev,
2557 "failed to restore vswitching rc=%d;"
2558 " VFs may not function\n", rc);
2559#endif
2560
Edward Cree0d322412015-05-20 11:10:03 +01002561 down_read(&efx->filter_sem);
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002562 efx_restore_filters(efx);
Edward Cree0d322412015-05-20 11:10:03 +01002563 up_read(&efx->filter_sem);
Shradha Shah7fa8d542015-05-06 00:55:13 +01002564 if (efx->type->sriov_reset)
2565 efx->type->sriov_reset(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002566
2567 mutex_unlock(&efx->mac_lock);
2568
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002569 efx_start_all(efx);
2570
2571 return 0;
2572
2573fail:
2574 efx->port_initialized = false;
2575
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002576 mutex_unlock(&efx->mac_lock);
2577
Ben Hutchings8ceee662008-04-27 12:55:59 +01002578 return rc;
2579}
2580
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002581/* Reset the NIC using the specified method. Note that the reset may
2582 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002583 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002584 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002585 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002586int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002587{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002588 int rc, rc2;
2589 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002590
Ben Hutchings62776d02010-06-23 11:30:07 +00002591 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2592 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002593
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002594 efx_device_detach_sync(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002595 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002596
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002597 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002598 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002599 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002600 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002601 }
2602
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002603 /* Clear flags for the scopes we covered. We assume the NIC and
2604 * driver are now quiescent so that there is no race here.
2605 */
Edward Creee2835462014-04-16 19:27:48 +01002606 if (method < RESET_TYPE_MAX_METHOD)
2607 efx->reset_pending &= -(1 << (method + 1));
2608 else /* it doesn't fit into the well-ordered scope hierarchy */
2609 __clear_bit(method, &efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002610
2611 /* Reinitialise bus-mastering, which may have been turned off before
2612 * the reset was scheduled. This is still appropriate, even in the
2613 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2614 * can respond to requests. */
2615 pci_set_master(efx->pci_dev);
2616
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002617out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002618 /* Leave device stopped if necessary */
Alexandre Rames626950d2013-01-14 17:20:22 +00002619 disabled = rc ||
2620 method == RESET_TYPE_DISABLE ||
2621 method == RESET_TYPE_RECOVER_OR_DISABLE;
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002622 rc2 = efx_reset_up(efx, method, !disabled);
2623 if (rc2) {
2624 disabled = true;
2625 if (!rc)
2626 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002627 }
2628
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002629 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002630 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002631 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002632 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002633 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002634 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingse4abce82011-05-16 18:51:24 +01002635 netif_device_attach(efx->net_dev);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002636 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002637 return rc;
2638}
2639
Alexandre Rames626950d2013-01-14 17:20:22 +00002640/* Try recovery mechanisms.
2641 * For now only EEH is supported.
2642 * Returns 0 if the recovery mechanisms are unsuccessful.
2643 * Returns a non-zero value otherwise.
2644 */
Alexandre Ramesb28405b2013-03-21 16:41:43 +00002645int efx_try_recovery(struct efx_nic *efx)
Alexandre Rames626950d2013-01-14 17:20:22 +00002646{
2647#ifdef CONFIG_EEH
2648 /* A PCI error can occur and not be seen by EEH because nothing
2649 * happens on the PCI bus. In this case the driver may fail and
2650 * schedule a 'recover or reset', leading to this recovery handler.
2651 * Manually call the eeh failure check function.
2652 */
Benjamin Herrenschmidt12a89db2015-03-23 14:00:47 +11002653 struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002654 if (eeh_dev_check_failure(eehdev)) {
2655 /* The EEH mechanisms will handle the error and reset the
2656 * device if necessary.
2657 */
2658 return 1;
2659 }
2660#endif
2661 return 0;
2662}
2663
Jon Cooper74cd60a2013-09-16 14:18:51 +01002664static void efx_wait_for_bist_end(struct efx_nic *efx)
2665{
2666 int i;
2667
2668 for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
2669 if (efx_mcdi_poll_reboot(efx))
2670 goto out;
2671 msleep(BIST_WAIT_DELAY_MS);
2672 }
2673
2674 netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
2675out:
2676 /* Either way unset the BIST flag. If we found no reboot we probably
2677 * won't recover, but we should try.
2678 */
2679 efx->mc_bist_for_other_fn = false;
2680}
2681
Ben Hutchings8ceee662008-04-27 12:55:59 +01002682/* The worker thread exists so that code that cannot sleep can
2683 * schedule a reset for later.
2684 */
2685static void efx_reset_work(struct work_struct *data)
2686{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002687 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Alexandre Rames626950d2013-01-14 17:20:22 +00002688 unsigned long pending;
2689 enum reset_type method;
2690
2691 pending = ACCESS_ONCE(efx->reset_pending);
2692 method = fls(pending) - 1;
2693
Jon Cooper74cd60a2013-09-16 14:18:51 +01002694 if (method == RESET_TYPE_MC_BIST)
2695 efx_wait_for_bist_end(efx);
2696
Alexandre Rames626950d2013-01-14 17:20:22 +00002697 if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
2698 method == RESET_TYPE_RECOVER_OR_ALL) &&
2699 efx_try_recovery(efx))
2700 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002701
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002702 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00002703 return;
2704
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002705 rtnl_lock();
Ben Hutchings7153f622012-07-27 20:50:52 +01002706
2707 /* We checked the state in efx_schedule_reset() but it may
2708 * have changed by now. Now that we have the RTNL lock,
2709 * it cannot change again.
2710 */
2711 if (efx->state == STATE_READY)
Alexandre Rames626950d2013-01-14 17:20:22 +00002712 (void)efx_reset(efx, method);
Ben Hutchings7153f622012-07-27 20:50:52 +01002713
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002714 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002715}
2716
2717void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2718{
2719 enum reset_type method;
2720
Alexandre Rames626950d2013-01-14 17:20:22 +00002721 if (efx->state == STATE_RECOVERY) {
2722 netif_dbg(efx, drv, efx->net_dev,
2723 "recovering: skip scheduling %s reset\n",
2724 RESET_TYPE(type));
2725 return;
2726 }
2727
Ben Hutchings8ceee662008-04-27 12:55:59 +01002728 switch (type) {
2729 case RESET_TYPE_INVISIBLE:
2730 case RESET_TYPE_ALL:
Alexandre Rames626950d2013-01-14 17:20:22 +00002731 case RESET_TYPE_RECOVER_OR_ALL:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002732 case RESET_TYPE_WORLD:
2733 case RESET_TYPE_DISABLE:
Alexandre Rames626950d2013-01-14 17:20:22 +00002734 case RESET_TYPE_RECOVER_OR_DISABLE:
Jon Cooper087e9022015-05-20 11:11:35 +01002735 case RESET_TYPE_DATAPATH:
Jon Cooper74cd60a2013-09-16 14:18:51 +01002736 case RESET_TYPE_MC_BIST:
Edward Creee2835462014-04-16 19:27:48 +01002737 case RESET_TYPE_MCDI_TIMEOUT:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002738 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002739 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2740 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002741 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002742 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002743 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00002744 netif_dbg(efx, drv, efx->net_dev,
2745 "scheduling %s reset for %s\n",
2746 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002747 break;
2748 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002749
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002750 set_bit(method, &efx->reset_pending);
Ben Hutchings7153f622012-07-27 20:50:52 +01002751 smp_mb(); /* ensure we change reset_pending before checking state */
2752
2753 /* If we're not READY then just leave the flags set as the cue
2754 * to abort probing or reschedule the reset later.
2755 */
2756 if (ACCESS_ONCE(efx->state) != STATE_READY)
2757 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002758
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002759 /* efx_process_channel() will no longer read events once a
2760 * reset is scheduled. So switch back to poll'd MCDI completions. */
2761 efx_mcdi_mode_poll(efx);
2762
Steve Hodgson1ab00622008-12-12 21:33:02 -08002763 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002764}
2765
2766/**************************************************************************
2767 *
2768 * List of NICs we support
2769 *
2770 **************************************************************************/
2771
2772/* PCI device ID table */
Benoit Taine9baa3c32014-08-08 15:56:03 +02002773static const struct pci_device_id efx_pci_table[] = {
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002774 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2775 PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002776 .driver_data = (unsigned long) &falcon_a1_nic_type},
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002777 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2778 PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002779 .driver_data = (unsigned long) &falcon_b0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002780 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002781 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002782 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002783 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8127d662013-08-29 19:19:29 +01002784 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */
2785 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01002786 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1903), /* SFC9120 VF */
2787 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Mateusz Wrzesinski3b06a002014-07-14 08:38:49 +01002788 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923), /* SFC9140 PF */
2789 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002790 {0} /* end of list */
2791};
2792
2793/**************************************************************************
2794 *
Ben Hutchings37594332009-11-23 16:05:45 +00002795 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002796 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002797 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002798 * Needed so all function pointers are valid and do not have to be tested
2799 * before use
2800 *
2801 **************************************************************************/
2802int efx_port_dummy_op_int(struct efx_nic *efx)
2803{
2804 return 0;
2805}
2806void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002807
2808static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002809{
2810 return false;
2811}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002812
stephen hemminger6c8c2512011-04-14 05:50:12 +00002813static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002814 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002815 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002816 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002817 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002818};
2819
Ben Hutchings8ceee662008-04-27 12:55:59 +01002820/**************************************************************************
2821 *
2822 * Data housekeeping
2823 *
2824 **************************************************************************/
2825
2826/* This zeroes out and then fills in the invariants in a struct
2827 * efx_nic (including all sub-structures).
2828 */
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002829static int efx_init_struct(struct efx_nic *efx,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002830 struct pci_dev *pci_dev, struct net_device *net_dev)
2831{
Ben Hutchings46426102010-09-10 06:42:33 +00002832 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002833
2834 /* Initialise common structures */
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002835 INIT_LIST_HEAD(&efx->node);
2836 INIT_LIST_HEAD(&efx->secondary_list);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002837 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002838#ifdef CONFIG_SFC_MTD
2839 INIT_LIST_HEAD(&efx->mtd_list);
2840#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002841 INIT_WORK(&efx->reset_work, efx_reset_work);
2842 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002843 INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002844 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002845 efx->msg_enable = debug;
Ben Hutchingsf16aeea2012-07-27 19:31:16 +01002846 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002847 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002848
2849 efx->net_dev = net_dev;
Jon Cooper43a37392012-10-18 15:49:54 +01002850 efx->rx_prefix_size = efx->type->rx_prefix_size;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +04002851 efx->rx_ip_align =
2852 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
Jon Cooper43a37392012-10-18 15:49:54 +01002853 efx->rx_packet_hash_offset =
2854 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
Jon Cooperbd9a2652013-11-18 12:54:41 +00002855 efx->rx_packet_ts_offset =
2856 efx->type->rx_ts_offset - efx->type->rx_prefix_size;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002857 spin_lock_init(&efx->stats_lock);
2858 mutex_init(&efx->mac_lock);
2859 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002860 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002861 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002862 init_waitqueue_head(&efx->flush_wq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002863
2864 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002865 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2866 if (!efx->channel[i])
2867 goto fail;
Ben Hutchingsd8291182012-10-05 23:35:41 +01002868 efx->msi_context[i].efx = efx;
2869 efx->msi_context[i].index = i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002870 }
2871
Ben Hutchings8ceee662008-04-27 12:55:59 +01002872 /* Higher numbered interrupt modes are less capable! */
2873 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2874 interrupt_mode);
2875
Ben Hutchings6977dc62008-12-26 13:44:39 -08002876 /* Would be good to use the net_dev name, but we're too early */
2877 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2878 pci_name(pci_dev));
2879 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002880 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00002881 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002882
Ben Hutchings8ceee662008-04-27 12:55:59 +01002883 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00002884
2885fail:
2886 efx_fini_struct(efx);
2887 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002888}
2889
2890static void efx_fini_struct(struct efx_nic *efx)
2891{
Ben Hutchings8313aca2010-09-10 06:41:57 +00002892 int i;
2893
2894 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2895 kfree(efx->channel[i]);
2896
Ben Hutchingsef215e62013-12-05 20:13:22 +00002897 kfree(efx->vpd_sn);
2898
Ben Hutchings8ceee662008-04-27 12:55:59 +01002899 if (efx->workqueue) {
2900 destroy_workqueue(efx->workqueue);
2901 efx->workqueue = NULL;
2902 }
2903}
2904
Edward Creee4d112e2014-07-15 11:58:12 +01002905void efx_update_sw_stats(struct efx_nic *efx, u64 *stats)
2906{
2907 u64 n_rx_nodesc_trunc = 0;
2908 struct efx_channel *channel;
2909
2910 efx_for_each_channel(channel, efx)
2911 n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc;
2912 stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc;
2913 stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops);
2914}
2915
Ben Hutchings8ceee662008-04-27 12:55:59 +01002916/**************************************************************************
2917 *
2918 * PCI interface
2919 *
2920 **************************************************************************/
2921
2922/* Main body of final NIC shutdown code
2923 * This is called only at module unload (or hotplug removal).
2924 */
2925static void efx_pci_remove_main(struct efx_nic *efx)
2926{
Ben Hutchings7153f622012-07-27 20:50:52 +01002927 /* Flush reset_work. It can no longer be scheduled since we
2928 * are not READY.
2929 */
2930 BUG_ON(efx->state == STATE_READY);
2931 cancel_work_sync(&efx->reset_work);
2932
Ben Hutchingsd8291182012-10-05 23:35:41 +01002933 efx_disable_interrupts(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00002934 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002935 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002936 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002937 efx_fini_napi(efx);
2938 efx_remove_all(efx);
2939}
2940
2941/* Final NIC shutdown
Daniel Pieczko2a3fc312015-06-02 11:40:46 +01002942 * This is called only at module unload (or hotplug removal). A PF can call
2943 * this on its VFs to ensure they are unbound first.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002944 */
2945static void efx_pci_remove(struct pci_dev *pci_dev)
2946{
2947 struct efx_nic *efx;
2948
2949 efx = pci_get_drvdata(pci_dev);
2950 if (!efx)
2951 return;
2952
2953 /* Mark the NIC as fini, then stop the interface */
2954 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002955 efx_dissociate(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002956 dev_close(efx->net_dev);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002957 efx_disable_interrupts(efx);
Edward Creeea6bb992015-06-15 18:27:54 +01002958 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002959 rtnl_unlock();
2960
Shradha Shah7fa8d542015-05-06 00:55:13 +01002961 if (efx->type->sriov_fini)
2962 efx->type->sriov_fini(efx);
2963
Ben Hutchings8ceee662008-04-27 12:55:59 +01002964 efx_unregister_netdev(efx);
2965
Ben Hutchings7dde5962008-12-12 22:09:38 -08002966 efx_mtd_remove(efx);
2967
Ben Hutchings8ceee662008-04-27 12:55:59 +01002968 efx_pci_remove_main(efx);
2969
Ben Hutchings8ceee662008-04-27 12:55:59 +01002970 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002971 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002972
Ben Hutchings8ceee662008-04-27 12:55:59 +01002973 efx_fini_struct(efx);
2974 free_netdev(efx->net_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002975
2976 pci_disable_pcie_error_reporting(pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002977};
2978
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002979/* NIC VPD information
2980 * Called during probe to display the part number of the
2981 * installed NIC. VPD is potentially very large but this should
2982 * always appear within the first 512 bytes.
2983 */
2984#define SFC_VPD_LEN 512
Ben Hutchingsef215e62013-12-05 20:13:22 +00002985static void efx_probe_vpd_strings(struct efx_nic *efx)
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002986{
2987 struct pci_dev *dev = efx->pci_dev;
2988 char vpd_data[SFC_VPD_LEN];
2989 ssize_t vpd_size;
Ben Hutchingsef215e62013-12-05 20:13:22 +00002990 int ro_start, ro_size, i, j;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002991
2992 /* Get the vpd data from the device */
2993 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
2994 if (vpd_size <= 0) {
2995 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
2996 return;
2997 }
2998
2999 /* Get the Read only section */
Ben Hutchingsef215e62013-12-05 20:13:22 +00003000 ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
3001 if (ro_start < 0) {
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003002 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
3003 return;
3004 }
3005
Ben Hutchingsef215e62013-12-05 20:13:22 +00003006 ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
3007 j = ro_size;
3008 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003009 if (i + j > vpd_size)
3010 j = vpd_size - i;
3011
3012 /* Get the Part number */
3013 i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
3014 if (i < 0) {
3015 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
3016 return;
3017 }
3018
3019 j = pci_vpd_info_field_size(&vpd_data[i]);
3020 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3021 if (i + j > vpd_size) {
3022 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
3023 return;
3024 }
3025
3026 netif_info(efx, drv, efx->net_dev,
3027 "Part Number : %.*s\n", j, &vpd_data[i]);
Ben Hutchingsef215e62013-12-05 20:13:22 +00003028
3029 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
3030 j = ro_size;
3031 i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN");
3032 if (i < 0) {
3033 netif_err(efx, drv, efx->net_dev, "Serial number not found\n");
3034 return;
3035 }
3036
3037 j = pci_vpd_info_field_size(&vpd_data[i]);
3038 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3039 if (i + j > vpd_size) {
3040 netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n");
3041 return;
3042 }
3043
3044 efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL);
3045 if (!efx->vpd_sn)
3046 return;
3047
3048 snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003049}
3050
3051
Ben Hutchings8ceee662008-04-27 12:55:59 +01003052/* Main body of NIC initialisation
3053 * This is called at module load (or hotplug insertion, theoretically).
3054 */
3055static int efx_pci_probe_main(struct efx_nic *efx)
3056{
3057 int rc;
3058
3059 /* Do start-of-day initialisation */
3060 rc = efx_probe_all(efx);
3061 if (rc)
3062 goto fail1;
3063
Ben Hutchingse8f14992010-12-07 19:47:34 +00003064 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003065
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003066 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003067 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003068 netif_err(efx, probe, efx->net_dev,
3069 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003070 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003071 }
3072
3073 rc = efx_init_port(efx);
3074 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003075 netif_err(efx, probe, efx->net_dev,
3076 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003077 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003078 }
3079
Ben Hutchings152b6a62009-11-29 03:43:56 +00003080 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003081 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00003082 goto fail5;
Jon Cooper261e4d92013-04-15 18:51:54 +01003083 rc = efx_enable_interrupts(efx);
3084 if (rc)
3085 goto fail6;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003086
3087 return 0;
3088
Jon Cooper261e4d92013-04-15 18:51:54 +01003089 fail6:
3090 efx_nic_fini_interrupt(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00003091 fail5:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003092 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003093 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003094 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003095 fail3:
3096 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003097 efx_remove_all(efx);
3098 fail1:
3099 return rc;
3100}
3101
3102/* NIC initialisation
3103 *
3104 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00003105 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003106 * sets up and registers the network devices with the kernel and hooks
3107 * the interrupt service routine. It does not prepare the device for
3108 * transmission; this is left to the first time one of the network
3109 * interfaces is brought up (i.e. efx_net_open).
3110 */
Bill Pemberton87d1fc12012-12-03 09:23:32 -05003111static int efx_pci_probe(struct pci_dev *pci_dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00003112 const struct pci_device_id *entry)
Ben Hutchings8ceee662008-04-27 12:55:59 +01003113{
Ben Hutchings8ceee662008-04-27 12:55:59 +01003114 struct net_device *net_dev;
3115 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003116 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003117
3118 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00003119 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
3120 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003121 if (!net_dev)
3122 return -ENOMEM;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003123 efx = netdev_priv(net_dev);
3124 efx->type = (const struct efx_nic_type *) entry->driver_data;
3125 net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
Ben Hutchings97bc5412009-05-19 16:19:08 -07003126 NETIF_F_HIGHDMA | NETIF_F_TSO |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01003127 NETIF_F_RXCSUM);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003128 if (efx->type->offload_features & NETIF_F_V6_CSUM)
Ben Hutchings738a8f42009-11-29 15:16:05 +00003129 net_dev->features |= NETIF_F_TSO6;
Ben Hutchings285065632008-09-01 12:46:54 +01003130 /* Mask for features that also apply to VLAN devices */
3131 net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01003132 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
3133 NETIF_F_RXCSUM);
3134 /* All offloads can be toggled */
3135 net_dev->hw_features = net_dev->features & ~NETIF_F_HIGHDMA;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003136 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003137 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003138 rc = efx_init_struct(efx, pci_dev, net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003139 if (rc)
3140 goto fail1;
3141
Ben Hutchings62776d02010-06-23 11:30:07 +00003142 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01003143 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003144
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01003145 if (!efx->type->is_vf)
3146 efx_probe_vpd_strings(efx);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003147
Ben Hutchings8ceee662008-04-27 12:55:59 +01003148 /* Set up basic I/O (BAR mappings etc) */
3149 rc = efx_init_io(efx);
3150 if (rc)
3151 goto fail2;
3152
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003153 rc = efx_pci_probe_main(efx);
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003154 if (rc)
3155 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08003156
Ben Hutchings8ceee662008-04-27 12:55:59 +01003157 rc = efx_register_netdev(efx);
3158 if (rc)
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003159 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003160
Shradha Shah7fa8d542015-05-06 00:55:13 +01003161 if (efx->type->sriov_init) {
3162 rc = efx->type->sriov_init(efx);
3163 if (rc)
3164 netif_err(efx, probe, efx->net_dev,
3165 "SR-IOV can't be enabled rc %d\n", rc);
3166 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003167
Ben Hutchings62776d02010-06-23 11:30:07 +00003168 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003169
Ben Hutchings7c431612012-01-27 17:23:58 +00003170 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003171 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003172 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003173 rtnl_unlock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003174 if (rc)
3175 netif_warn(efx, probe, efx->net_dev,
3176 "failed to create MTDs (%d)\n", rc);
3177
Alexandre Rames626950d2013-01-14 17:20:22 +00003178 rc = pci_enable_pcie_error_reporting(pci_dev);
3179 if (rc && rc != -EINVAL)
3180 netif_warn(efx, probe, efx->net_dev,
3181 "pci_enable_pcie_error_reporting failed (%d)\n", rc);
3182
Ben Hutchings8ceee662008-04-27 12:55:59 +01003183 return 0;
3184
Ben Hutchings8ceee662008-04-27 12:55:59 +01003185 fail4:
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003186 efx_pci_remove_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003187 fail3:
3188 efx_fini_io(efx);
3189 fail2:
3190 efx_fini_struct(efx);
3191 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08003192 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00003193 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003194 free_netdev(net_dev);
3195 return rc;
3196}
3197
Shradha Shah834e23d2015-05-06 00:55:58 +01003198/* efx_pci_sriov_configure returns the actual number of Virtual Functions
3199 * enabled on success
3200 */
3201#ifdef CONFIG_SFC_SRIOV
3202static int efx_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
3203{
3204 int rc;
3205 struct efx_nic *efx = pci_get_drvdata(dev);
3206
3207 if (efx->type->sriov_configure) {
3208 rc = efx->type->sriov_configure(efx, num_vfs);
3209 if (rc)
3210 return rc;
3211 else
3212 return num_vfs;
3213 } else
3214 return -EOPNOTSUPP;
3215}
3216#endif
3217
Ben Hutchings89c758f2009-11-29 03:43:07 +00003218static int efx_pm_freeze(struct device *dev)
3219{
3220 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3221
Ben Hutchings61da0262012-07-27 19:35:39 +01003222 rtnl_lock();
3223
Ben Hutchings6032fb52012-07-27 19:35:47 +01003224 if (efx->state != STATE_DISABLED) {
3225 efx->state = STATE_UNINIT;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003226
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01003227 efx_device_detach_sync(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003228
Ben Hutchings6032fb52012-07-27 19:35:47 +01003229 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003230 efx_disable_interrupts(efx);
Ben Hutchings6032fb52012-07-27 19:35:47 +01003231 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003232
Ben Hutchings61da0262012-07-27 19:35:39 +01003233 rtnl_unlock();
3234
Ben Hutchings89c758f2009-11-29 03:43:07 +00003235 return 0;
3236}
3237
3238static int efx_pm_thaw(struct device *dev)
3239{
Jon Cooper261e4d92013-04-15 18:51:54 +01003240 int rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003241 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3242
Ben Hutchings61da0262012-07-27 19:35:39 +01003243 rtnl_lock();
3244
Ben Hutchings6032fb52012-07-27 19:35:47 +01003245 if (efx->state != STATE_DISABLED) {
Jon Cooper261e4d92013-04-15 18:51:54 +01003246 rc = efx_enable_interrupts(efx);
3247 if (rc)
3248 goto fail;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003249
Ben Hutchings6032fb52012-07-27 19:35:47 +01003250 mutex_lock(&efx->mac_lock);
3251 efx->phy_op->reconfigure(efx);
3252 mutex_unlock(&efx->mac_lock);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003253
Ben Hutchings6032fb52012-07-27 19:35:47 +01003254 efx_start_all(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003255
Ben Hutchings6032fb52012-07-27 19:35:47 +01003256 netif_device_attach(efx->net_dev);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003257
Ben Hutchings6032fb52012-07-27 19:35:47 +01003258 efx->state = STATE_READY;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003259
Ben Hutchings6032fb52012-07-27 19:35:47 +01003260 efx->type->resume_wol(efx);
3261 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003262
Ben Hutchings61da0262012-07-27 19:35:39 +01003263 rtnl_unlock();
3264
Steve Hodgson319ba642010-06-01 11:17:24 +00003265 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
3266 queue_work(reset_workqueue, &efx->reset_work);
3267
Ben Hutchings89c758f2009-11-29 03:43:07 +00003268 return 0;
Jon Cooper261e4d92013-04-15 18:51:54 +01003269
3270fail:
3271 rtnl_unlock();
3272
3273 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003274}
3275
3276static int efx_pm_poweroff(struct device *dev)
3277{
3278 struct pci_dev *pci_dev = to_pci_dev(dev);
3279 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3280
3281 efx->type->fini(efx);
3282
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003283 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003284
3285 pci_save_state(pci_dev);
3286 return pci_set_power_state(pci_dev, PCI_D3hot);
3287}
3288
3289/* Used for both resume and restore */
3290static int efx_pm_resume(struct device *dev)
3291{
3292 struct pci_dev *pci_dev = to_pci_dev(dev);
3293 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3294 int rc;
3295
3296 rc = pci_set_power_state(pci_dev, PCI_D0);
3297 if (rc)
3298 return rc;
3299 pci_restore_state(pci_dev);
3300 rc = pci_enable_device(pci_dev);
3301 if (rc)
3302 return rc;
3303 pci_set_master(efx->pci_dev);
3304 rc = efx->type->reset(efx, RESET_TYPE_ALL);
3305 if (rc)
3306 return rc;
3307 rc = efx->type->init(efx);
3308 if (rc)
3309 return rc;
Jon Cooper261e4d92013-04-15 18:51:54 +01003310 rc = efx_pm_thaw(dev);
3311 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003312}
3313
3314static int efx_pm_suspend(struct device *dev)
3315{
3316 int rc;
3317
3318 efx_pm_freeze(dev);
3319 rc = efx_pm_poweroff(dev);
3320 if (rc)
3321 efx_pm_resume(dev);
3322 return rc;
3323}
3324
Ben Hutchings18e83e42012-01-05 19:05:20 +00003325static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00003326 .suspend = efx_pm_suspend,
3327 .resume = efx_pm_resume,
3328 .freeze = efx_pm_freeze,
3329 .thaw = efx_pm_thaw,
3330 .poweroff = efx_pm_poweroff,
3331 .restore = efx_pm_resume,
3332};
3333
Alexandre Rames626950d2013-01-14 17:20:22 +00003334/* A PCI error affecting this device was detected.
3335 * At this point MMIO and DMA may be disabled.
3336 * Stop the software path and request a slot reset.
3337 */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003338static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3339 enum pci_channel_state state)
Alexandre Rames626950d2013-01-14 17:20:22 +00003340{
3341 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3342 struct efx_nic *efx = pci_get_drvdata(pdev);
3343
3344 if (state == pci_channel_io_perm_failure)
3345 return PCI_ERS_RESULT_DISCONNECT;
3346
3347 rtnl_lock();
3348
3349 if (efx->state != STATE_DISABLED) {
3350 efx->state = STATE_RECOVERY;
3351 efx->reset_pending = 0;
3352
3353 efx_device_detach_sync(efx);
3354
3355 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003356 efx_disable_interrupts(efx);
Alexandre Rames626950d2013-01-14 17:20:22 +00003357
3358 status = PCI_ERS_RESULT_NEED_RESET;
3359 } else {
3360 /* If the interface is disabled we don't want to do anything
3361 * with it.
3362 */
3363 status = PCI_ERS_RESULT_RECOVERED;
3364 }
3365
3366 rtnl_unlock();
3367
3368 pci_disable_device(pdev);
3369
3370 return status;
3371}
3372
Joe Perchesdbedd442015-03-06 20:49:12 -08003373/* Fake a successful reset, which will be performed later in efx_io_resume. */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003374static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
Alexandre Rames626950d2013-01-14 17:20:22 +00003375{
3376 struct efx_nic *efx = pci_get_drvdata(pdev);
3377 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3378 int rc;
3379
3380 if (pci_enable_device(pdev)) {
3381 netif_err(efx, hw, efx->net_dev,
3382 "Cannot re-enable PCI device after reset.\n");
3383 status = PCI_ERS_RESULT_DISCONNECT;
3384 }
3385
3386 rc = pci_cleanup_aer_uncorrect_error_status(pdev);
3387 if (rc) {
3388 netif_err(efx, hw, efx->net_dev,
3389 "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc);
3390 /* Non-fatal error. Continue. */
3391 }
3392
3393 return status;
3394}
3395
3396/* Perform the actual reset and resume I/O operations. */
3397static void efx_io_resume(struct pci_dev *pdev)
3398{
3399 struct efx_nic *efx = pci_get_drvdata(pdev);
3400 int rc;
3401
3402 rtnl_lock();
3403
3404 if (efx->state == STATE_DISABLED)
3405 goto out;
3406
3407 rc = efx_reset(efx, RESET_TYPE_ALL);
3408 if (rc) {
3409 netif_err(efx, hw, efx->net_dev,
3410 "efx_reset failed after PCI error (%d)\n", rc);
3411 } else {
3412 efx->state = STATE_READY;
3413 netif_dbg(efx, hw, efx->net_dev,
3414 "Done resetting and resuming IO after PCI error.\n");
3415 }
3416
3417out:
3418 rtnl_unlock();
3419}
3420
3421/* For simplicity and reliability, we always require a slot reset and try to
3422 * reset the hardware when a pci error affecting the device is detected.
3423 * We leave both the link_reset and mmio_enabled callback unimplemented:
3424 * with our request for slot reset the mmio_enabled callback will never be
3425 * called, and the link_reset callback is not used by AER or EEH mechanisms.
3426 */
3427static struct pci_error_handlers efx_err_handlers = {
3428 .error_detected = efx_io_error_detected,
3429 .slot_reset = efx_io_slot_reset,
3430 .resume = efx_io_resume,
3431};
3432
Ben Hutchings8ceee662008-04-27 12:55:59 +01003433static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00003434 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003435 .id_table = efx_pci_table,
3436 .probe = efx_pci_probe,
3437 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00003438 .driver.pm = &efx_pm_ops,
Alexandre Rames626950d2013-01-14 17:20:22 +00003439 .err_handler = &efx_err_handlers,
Shradha Shah834e23d2015-05-06 00:55:58 +01003440#ifdef CONFIG_SFC_SRIOV
3441 .sriov_configure = efx_pci_sriov_configure,
3442#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003443};
3444
3445/**************************************************************************
3446 *
3447 * Kernel module interface
3448 *
3449 *************************************************************************/
3450
3451module_param(interrupt_mode, uint, 0444);
3452MODULE_PARM_DESC(interrupt_mode,
3453 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
3454
3455static int __init efx_init_module(void)
3456{
3457 int rc;
3458
3459 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
3460
3461 rc = register_netdevice_notifier(&efx_netdev_notifier);
3462 if (rc)
3463 goto err_notifier;
3464
Shradha Shah7fa8d542015-05-06 00:55:13 +01003465#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003466 rc = efx_init_sriov();
3467 if (rc)
3468 goto err_sriov;
Shradha Shah7fa8d542015-05-06 00:55:13 +01003469#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003470
Steve Hodgson1ab00622008-12-12 21:33:02 -08003471 reset_workqueue = create_singlethread_workqueue("sfc_reset");
3472 if (!reset_workqueue) {
3473 rc = -ENOMEM;
3474 goto err_reset;
3475 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003476
3477 rc = pci_register_driver(&efx_pci_driver);
3478 if (rc < 0)
3479 goto err_pci;
3480
3481 return 0;
3482
3483 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08003484 destroy_workqueue(reset_workqueue);
3485 err_reset:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003486#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003487 efx_fini_sriov();
3488 err_sriov:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003489#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003490 unregister_netdevice_notifier(&efx_netdev_notifier);
3491 err_notifier:
3492 return rc;
3493}
3494
3495static void __exit efx_exit_module(void)
3496{
3497 printk(KERN_INFO "Solarflare NET driver unloading\n");
3498
3499 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003500 destroy_workqueue(reset_workqueue);
Shradha Shah7fa8d542015-05-06 00:55:13 +01003501#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003502 efx_fini_sriov();
Shradha Shah7fa8d542015-05-06 00:55:13 +01003503#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003504 unregister_netdevice_notifier(&efx_netdev_notifier);
3505
3506}
3507
3508module_init(efx_init_module);
3509module_exit(efx_exit_module);
3510
Ben Hutchings906bb262009-11-29 15:16:19 +00003511MODULE_AUTHOR("Solarflare Communications and "
3512 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings6a350fd2014-02-12 19:00:07 +00003513MODULE_DESCRIPTION("Solarflare network driver");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003514MODULE_LICENSE("GPL");
3515MODULE_DEVICE_TABLE(pci, efx_pci_table);