blob: 2eecd2873c79686eae669a9d49ce1588c86f219f [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{
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100603 netdev_features_t old_features = efx->net_dev->features;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000604 bool old_rx_scatter = efx->rx_scatter;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100605 struct efx_tx_queue *tx_queue;
606 struct efx_rx_queue *rx_queue;
607 struct efx_channel *channel;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000608 size_t rx_buf_len;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100609
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100610 /* Calculate the rx buffer allocation parameters required to
611 * support the current MTU, including padding for header
612 * alignment and overruns.
613 */
Jon Cooper43a37392012-10-18 15:49:54 +0100614 efx->rx_dma_len = (efx->rx_prefix_size +
Ben Hutchings272baee2013-01-29 23:33:14 +0000615 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
616 efx->type->rx_buffer_padding);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000617 rx_buf_len = (sizeof(struct efx_rx_page_state) +
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400618 efx->rx_ip_align + efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000619 if (rx_buf_len <= PAGE_SIZE) {
Jon Coopere8c68c02013-03-08 10:18:28 +0000620 efx->rx_scatter = efx->type->always_rx_scatter;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000621 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000622 } else if (efx->type->can_rx_scatter) {
Ben Hutchings950c54d2013-05-13 12:01:22 +0000623 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000624 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
Ben Hutchings950c54d2013-05-13 12:01:22 +0000625 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
626 EFX_RX_BUF_ALIGNMENT) >
627 PAGE_SIZE);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000628 efx->rx_scatter = true;
629 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
630 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000631 } else {
632 efx->rx_scatter = false;
633 efx->rx_buffer_order = get_order(rx_buf_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000634 }
635
Daniel Pieczko1648a232013-02-13 10:54:41 +0000636 efx_rx_config_page_split(efx);
637 if (efx->rx_buffer_order)
638 netif_dbg(efx, drv, efx->net_dev,
639 "RX buf len=%u; page order=%u batch=%u\n",
640 efx->rx_dma_len, efx->rx_buffer_order,
641 efx->rx_pages_per_batch);
642 else
643 netif_dbg(efx, drv, efx->net_dev,
644 "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
645 efx->rx_dma_len, efx->rx_page_buf_step,
646 efx->rx_bufs_per_page, efx->rx_pages_per_batch);
Daniel Pieczko27689352013-02-13 10:54:41 +0000647
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100648 /* Restore previously fixed features in hw_features and remove
649 * features which are fixed now
650 */
651 efx->net_dev->hw_features |= efx->net_dev->features;
652 efx->net_dev->hw_features &= ~efx->fixed_features;
653 efx->net_dev->features |= efx->fixed_features;
654 if (efx->net_dev->features != old_features)
655 netdev_features_change(efx->net_dev);
656
Jon Coopere8c68c02013-03-08 10:18:28 +0000657 /* RX filters may also have scatter-enabled flags */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000658 if (efx->rx_scatter != old_rx_scatter)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000659 efx->type->filter_update_rx_scatter(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100660
Ben Hutchings14bf7182012-05-22 01:27:58 +0100661 /* We must keep at least one descriptor in a TX ring empty.
662 * We could avoid this when the queue size does not exactly
663 * match the hardware ring size, but it's not that important.
664 * Therefore we stop the queue when one more skb might fill
665 * the ring completely. We wake it when half way back to
666 * empty.
667 */
668 efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
669 efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
670
Ben Hutchings8ceee662008-04-27 12:55:59 +0100671 /* Initialise the channels */
672 efx_for_each_channel(channel, efx) {
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100673 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100674 efx_init_tx_queue(tx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100675 atomic_inc(&efx->active_queues);
676 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100677
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000678 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100679 efx_init_rx_queue(rx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100680 atomic_inc(&efx->active_queues);
Jon Coopercce28792013-10-02 11:04:14 +0100681 efx_stop_eventq(channel);
682 efx_fast_push_rx_descriptors(rx_queue, false);
683 efx_start_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000684 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100685
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000686 WARN_ON(channel->rx_pkt_n_frags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100687 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000688
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000689 efx_ptp_start_datapath(efx);
690
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000691 if (netif_device_present(efx->net_dev))
692 netif_tx_wake_all_queues(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100693}
694
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000695static void efx_stop_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100696{
697 struct efx_channel *channel;
698 struct efx_tx_queue *tx_queue;
699 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100700 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100701
702 EFX_ASSERT_RESET_SERIALISED(efx);
703 BUG_ON(efx->port_enabled);
704
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000705 efx_ptp_stop_datapath(efx);
706
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100707 /* Stop RX refill */
708 efx_for_each_channel(channel, efx) {
709 efx_for_each_channel_rx_queue(rx_queue, channel)
710 rx_queue->refill_enabled = false;
711 }
712
Ben Hutchings8ceee662008-04-27 12:55:59 +0100713 efx_for_each_channel(channel, efx) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000714 /* RX packet processing is pipelined, so wait for the
715 * NAPI handler to complete. At least event queue 0
716 * might be kept active by non-data events, so don't
717 * use napi_synchronize() but actually disable NAPI
718 * temporarily.
719 */
720 if (efx_channel_has_rx_queue(channel)) {
721 efx_stop_eventq(channel);
722 efx_start_eventq(channel);
723 }
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100724 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100725
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100726 rc = efx->type->fini_dmaq(efx);
727 if (rc && EFX_WORKAROUND_7803(efx)) {
728 /* Schedule a reset to recover from the flush failure. The
729 * descriptor caches reference memory we're about to free,
730 * but falcon_reconfigure_mac_wrapper() won't reconnect
731 * the MACs because of the pending reset.
732 */
733 netif_err(efx, drv, efx->net_dev,
734 "Resetting to recover from flush failure\n");
735 efx_schedule_reset(efx, RESET_TYPE_ALL);
736 } else if (rc) {
737 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
738 } else {
739 netif_dbg(efx, drv, efx->net_dev,
740 "successfully flushed all queues\n");
741 }
742
743 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100744 efx_for_each_channel_rx_queue(rx_queue, channel)
745 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000746 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100747 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100748 }
749}
750
751static void efx_remove_channel(struct efx_channel *channel)
752{
753 struct efx_tx_queue *tx_queue;
754 struct efx_rx_queue *rx_queue;
755
Ben Hutchings62776d02010-06-23 11:30:07 +0000756 netif_dbg(channel->efx, drv, channel->efx->net_dev,
757 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100758
759 efx_for_each_channel_rx_queue(rx_queue, channel)
760 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000761 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100762 efx_remove_tx_queue(tx_queue);
763 efx_remove_eventq(channel);
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100764 channel->type->post_remove(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100765}
766
Ben Hutchings46426102010-09-10 06:42:33 +0000767static void efx_remove_channels(struct efx_nic *efx)
768{
769 struct efx_channel *channel;
770
771 efx_for_each_channel(channel, efx)
772 efx_remove_channel(channel);
773}
774
775int
776efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
777{
778 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
779 u32 old_rxq_entries, old_txq_entries;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000780 unsigned i, next_buffer_table = 0;
Jon Cooper261e4d92013-04-15 18:51:54 +0100781 int rc, rc2;
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100782
783 rc = efx_check_disabled(efx);
784 if (rc)
785 return rc;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000786
787 /* Not all channels should be reallocated. We must avoid
788 * reallocating their buffer table entries.
789 */
790 efx_for_each_channel(channel, efx) {
791 struct efx_rx_queue *rx_queue;
792 struct efx_tx_queue *tx_queue;
793
794 if (channel->type->copy)
795 continue;
796 next_buffer_table = max(next_buffer_table,
797 channel->eventq.index +
798 channel->eventq.entries);
799 efx_for_each_channel_rx_queue(rx_queue, channel)
800 next_buffer_table = max(next_buffer_table,
801 rx_queue->rxd.index +
802 rx_queue->rxd.entries);
803 efx_for_each_channel_tx_queue(tx_queue, channel)
804 next_buffer_table = max(next_buffer_table,
805 tx_queue->txd.index +
806 tx_queue->txd.entries);
807 }
Ben Hutchings46426102010-09-10 06:42:33 +0000808
Ben Hutchings29c69a42013-01-28 19:01:06 +0000809 efx_device_detach_sync(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000810 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100811 efx_soft_disable_interrupts(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000812
Ben Hutchings7f967c02012-02-13 23:45:02 +0000813 /* Clone channels (where possible) */
Ben Hutchings46426102010-09-10 06:42:33 +0000814 memset(other_channel, 0, sizeof(other_channel));
815 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000816 channel = efx->channel[i];
817 if (channel->type->copy)
818 channel = channel->type->copy(channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000819 if (!channel) {
820 rc = -ENOMEM;
821 goto out;
822 }
823 other_channel[i] = channel;
824 }
825
826 /* Swap entry counts and channel pointers */
827 old_rxq_entries = efx->rxq_entries;
828 old_txq_entries = efx->txq_entries;
829 efx->rxq_entries = rxq_entries;
830 efx->txq_entries = txq_entries;
831 for (i = 0; i < efx->n_channels; i++) {
832 channel = efx->channel[i];
833 efx->channel[i] = other_channel[i];
834 other_channel[i] = channel;
835 }
836
Ben Hutchings7f967c02012-02-13 23:45:02 +0000837 /* Restart buffer table allocation */
838 efx->next_buffer_table = next_buffer_table;
Ben Hutchings46426102010-09-10 06:42:33 +0000839
Ben Hutchingse8f14992010-12-07 19:47:34 +0000840 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000841 channel = efx->channel[i];
842 if (!channel->type->copy)
843 continue;
844 rc = efx_probe_channel(channel);
845 if (rc)
846 goto rollback;
847 efx_init_napi_channel(efx->channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000848 }
Ben Hutchings46426102010-09-10 06:42:33 +0000849
Ben Hutchings7f967c02012-02-13 23:45:02 +0000850out:
851 /* Destroy unused channel structures */
852 for (i = 0; i < efx->n_channels; i++) {
853 channel = other_channel[i];
854 if (channel && channel->type->copy) {
855 efx_fini_napi_channel(channel);
856 efx_remove_channel(channel);
857 kfree(channel);
858 }
859 }
860
Jon Cooper261e4d92013-04-15 18:51:54 +0100861 rc2 = efx_soft_enable_interrupts(efx);
862 if (rc2) {
863 rc = rc ? rc : rc2;
864 netif_err(efx, drv, efx->net_dev,
865 "unable to restart interrupts on channel reallocation\n");
866 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
867 } else {
868 efx_start_all(efx);
869 netif_device_attach(efx->net_dev);
870 }
Ben Hutchings46426102010-09-10 06:42:33 +0000871 return rc;
872
873rollback:
874 /* Swap back */
875 efx->rxq_entries = old_rxq_entries;
876 efx->txq_entries = old_txq_entries;
877 for (i = 0; i < efx->n_channels; i++) {
878 channel = efx->channel[i];
879 efx->channel[i] = other_channel[i];
880 other_channel[i] = channel;
881 }
882 goto out;
883}
884
Steve Hodgson90d683a2010-06-01 11:19:39 +0000885void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100886{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000887 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100888}
889
Ben Hutchings7f967c02012-02-13 23:45:02 +0000890static const struct efx_channel_type efx_default_channel_type = {
891 .pre_probe = efx_channel_dummy_op_int,
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100892 .post_remove = efx_channel_dummy_op_void,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000893 .get_name = efx_get_channel_name,
894 .copy = efx_copy_channel,
895 .keep_eventq = false,
896};
897
898int efx_channel_dummy_op_int(struct efx_channel *channel)
899{
900 return 0;
901}
902
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100903void efx_channel_dummy_op_void(struct efx_channel *channel)
904{
905}
906
Ben Hutchings8ceee662008-04-27 12:55:59 +0100907/**************************************************************************
908 *
909 * Port handling
910 *
911 **************************************************************************/
912
913/* This ensures that the kernel is kept informed (via
914 * netif_carrier_on/off) of the link status, and also maintains the
915 * link status's stop on the port's TX queue.
916 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000917void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100918{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000919 struct efx_link_state *link_state = &efx->link_state;
920
Ben Hutchings8ceee662008-04-27 12:55:59 +0100921 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
922 * that no events are triggered between unregister_netdev() and the
923 * driver unloading. A more general condition is that NETDEV_CHANGE
924 * can only be generated between NETDEV_UP and NETDEV_DOWN */
925 if (!netif_running(efx->net_dev))
926 return;
927
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000928 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100929 efx->n_link_state_changes++;
930
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000931 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100932 netif_carrier_on(efx->net_dev);
933 else
934 netif_carrier_off(efx->net_dev);
935 }
936
937 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000938 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000939 netif_info(efx, link, efx->net_dev,
Ben Hutchings964e6132012-11-19 23:08:22 +0000940 "link up at %uMbps %s-duplex (MTU %d)\n",
Ben Hutchings62776d02010-06-23 11:30:07 +0000941 link_state->speed, link_state->fd ? "full" : "half",
Ben Hutchings964e6132012-11-19 23:08:22 +0000942 efx->net_dev->mtu);
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000943 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000944 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100945}
946
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000947void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
948{
949 efx->link_advertising = advertising;
950 if (advertising) {
951 if (advertising & ADVERTISED_Pause)
952 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
953 else
954 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
955 if (advertising & ADVERTISED_Asym_Pause)
956 efx->wanted_fc ^= EFX_FC_TX;
957 }
958}
959
David S. Millerb56269462011-05-17 17:53:22 -0400960void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000961{
962 efx->wanted_fc = wanted_fc;
963 if (efx->link_advertising) {
964 if (wanted_fc & EFX_FC_RX)
965 efx->link_advertising |= (ADVERTISED_Pause |
966 ADVERTISED_Asym_Pause);
967 else
968 efx->link_advertising &= ~(ADVERTISED_Pause |
969 ADVERTISED_Asym_Pause);
970 if (wanted_fc & EFX_FC_TX)
971 efx->link_advertising ^= ADVERTISED_Asym_Pause;
972 }
973}
974
Ben Hutchings115122a2009-03-04 09:52:52 +0000975static void efx_fini_port(struct efx_nic *efx);
976
Edward Cree0d322412015-05-20 11:10:03 +0100977/* We assume that efx->type->reconfigure_mac will always try to sync RX
978 * filters and therefore needs to read-lock the filter table against freeing
979 */
980void efx_mac_reconfigure(struct efx_nic *efx)
981{
982 down_read(&efx->filter_sem);
983 efx->type->reconfigure_mac(efx);
984 up_read(&efx->filter_sem);
985}
986
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000987/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
988 * the MAC appropriately. All other PHY configuration changes are pushed
989 * through phy_op->set_settings(), and pushed asynchronously to the MAC
990 * through efx_monitor().
991 *
992 * Callers must hold the mac_lock
993 */
994int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100995{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000996 enum efx_phy_mode phy_mode;
997 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100998
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000999 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001000
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001001 /* Disable PHY transmit in mac level loopbacks */
1002 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001003 if (LOOPBACK_INTERNAL(efx))
1004 efx->phy_mode |= PHY_MODE_TX_DISABLED;
1005 else
1006 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001007
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001008 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001009
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001010 if (rc)
1011 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001012
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001013 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001014}
1015
1016/* Reinitialise the MAC to pick up new PHY settings, even if the port is
1017 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001018int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001019{
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001020 int rc;
1021
Ben Hutchings8ceee662008-04-27 12:55:59 +01001022 EFX_ASSERT_RESET_SERIALISED(efx);
1023
1024 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001025 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001026 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001027
1028 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001029}
1030
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001031/* Asynchronous work item for changing MAC promiscuity and multicast
1032 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
1033 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001034static void efx_mac_work(struct work_struct *data)
1035{
1036 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
1037
1038 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +01001039 if (efx->port_enabled)
Edward Cree0d322412015-05-20 11:10:03 +01001040 efx_mac_reconfigure(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001041 mutex_unlock(&efx->mac_lock);
1042}
1043
Ben Hutchings8ceee662008-04-27 12:55:59 +01001044static int efx_probe_port(struct efx_nic *efx)
1045{
1046 int rc;
1047
Ben Hutchings62776d02010-06-23 11:30:07 +00001048 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001049
Steve Hodgsonff3b00a2009-12-23 13:46:36 +00001050 if (phy_flash_cfg)
1051 efx->phy_mode = PHY_MODE_SPECIAL;
1052
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001053 /* Connect up MAC/PHY operations table */
1054 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001055 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +00001056 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001057
Ben Hutchingse332bcb2011-12-20 01:22:51 +00001058 /* Initialise MAC address to permanent address */
Edward Creecd84ff42014-03-07 18:27:41 +00001059 ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001060
1061 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001062}
1063
1064static int efx_init_port(struct efx_nic *efx)
1065{
1066 int rc;
1067
Ben Hutchings62776d02010-06-23 11:30:07 +00001068 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001069
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001070 mutex_lock(&efx->mac_lock);
1071
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001072 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001073 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001074 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001075
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001076 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001077
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001078 /* Reconfigure the MAC before creating dma queues (required for
1079 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Edward Cree0d322412015-05-20 11:10:03 +01001080 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001081
1082 /* Ensure the PHY advertises the correct flow control settings */
1083 rc = efx->phy_op->reconfigure(efx);
Edward Cree267d9d72015-05-06 00:59:18 +01001084 if (rc && rc != -EPERM)
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001085 goto fail2;
1086
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001087 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001088 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001089
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001090fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001091 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001092fail1:
1093 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001094 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001095}
1096
Ben Hutchings8ceee662008-04-27 12:55:59 +01001097static void efx_start_port(struct efx_nic *efx)
1098{
Ben Hutchings62776d02010-06-23 11:30:07 +00001099 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001100 BUG_ON(efx->port_enabled);
1101
1102 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001103 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001104
Ben Hutchingsd615c032013-10-08 17:33:20 +01001105 /* Ensure MAC ingress/egress is enabled */
Edward Cree0d322412015-05-20 11:10:03 +01001106 efx_mac_reconfigure(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001107
Ben Hutchings8ceee662008-04-27 12:55:59 +01001108 mutex_unlock(&efx->mac_lock);
1109}
1110
Ben Hutchingsd615c032013-10-08 17:33:20 +01001111/* Cancel work for MAC reconfiguration, periodic hardware monitoring
1112 * and the async self-test, wait for them to finish and prevent them
1113 * being scheduled again. This doesn't cover online resets, which
1114 * should only be cancelled when removing the device.
1115 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001116static void efx_stop_port(struct efx_nic *efx)
1117{
Ben Hutchings62776d02010-06-23 11:30:07 +00001118 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001119
Ben Hutchingsd615c032013-10-08 17:33:20 +01001120 EFX_ASSERT_RESET_SERIALISED(efx);
1121
Ben Hutchings8ceee662008-04-27 12:55:59 +01001122 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001123 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001124 mutex_unlock(&efx->mac_lock);
1125
1126 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001127 netif_addr_lock_bh(efx->net_dev);
1128 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchingsd615c032013-10-08 17:33:20 +01001129
1130 cancel_delayed_work_sync(&efx->monitor_work);
1131 efx_selftest_async_cancel(efx);
1132 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001133}
1134
1135static void efx_fini_port(struct efx_nic *efx)
1136{
Ben Hutchings62776d02010-06-23 11:30:07 +00001137 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001138
1139 if (!efx->port_initialized)
1140 return;
1141
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001142 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001143 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001144
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001145 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001146 efx_link_status_changed(efx);
1147}
1148
1149static void efx_remove_port(struct efx_nic *efx)
1150{
Ben Hutchings62776d02010-06-23 11:30:07 +00001151 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001152
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001153 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001154}
1155
1156/**************************************************************************
1157 *
1158 * NIC handling
1159 *
1160 **************************************************************************/
1161
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01001162static LIST_HEAD(efx_primary_list);
1163static LIST_HEAD(efx_unassociated_list);
1164
1165static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right)
1166{
1167 return left->type == right->type &&
1168 left->vpd_sn && right->vpd_sn &&
1169 !strcmp(left->vpd_sn, right->vpd_sn);
1170}
1171
1172static void efx_associate(struct efx_nic *efx)
1173{
1174 struct efx_nic *other, *next;
1175
1176 if (efx->primary == efx) {
1177 /* Adding primary function; look for secondaries */
1178
1179 netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n");
1180 list_add_tail(&efx->node, &efx_primary_list);
1181
1182 list_for_each_entry_safe(other, next, &efx_unassociated_list,
1183 node) {
1184 if (efx_same_controller(efx, other)) {
1185 list_del(&other->node);
1186 netif_dbg(other, probe, other->net_dev,
1187 "moving to secondary list of %s %s\n",
1188 pci_name(efx->pci_dev),
1189 efx->net_dev->name);
1190 list_add_tail(&other->node,
1191 &efx->secondary_list);
1192 other->primary = efx;
1193 }
1194 }
1195 } else {
1196 /* Adding secondary function; look for primary */
1197
1198 list_for_each_entry(other, &efx_primary_list, node) {
1199 if (efx_same_controller(efx, other)) {
1200 netif_dbg(efx, probe, efx->net_dev,
1201 "adding to secondary list of %s %s\n",
1202 pci_name(other->pci_dev),
1203 other->net_dev->name);
1204 list_add_tail(&efx->node,
1205 &other->secondary_list);
1206 efx->primary = other;
1207 return;
1208 }
1209 }
1210
1211 netif_dbg(efx, probe, efx->net_dev,
1212 "adding to unassociated list\n");
1213 list_add_tail(&efx->node, &efx_unassociated_list);
1214 }
1215}
1216
1217static void efx_dissociate(struct efx_nic *efx)
1218{
1219 struct efx_nic *other, *next;
1220
1221 list_del(&efx->node);
1222 efx->primary = NULL;
1223
1224 list_for_each_entry_safe(other, next, &efx->secondary_list, node) {
1225 list_del(&other->node);
1226 netif_dbg(other, probe, other->net_dev,
1227 "moving to unassociated list\n");
1228 list_add_tail(&other->node, &efx_unassociated_list);
1229 other->primary = NULL;
1230 }
1231}
1232
Ben Hutchings8ceee662008-04-27 12:55:59 +01001233/* This configures the PCI device to enable I/O and DMA. */
1234static int efx_init_io(struct efx_nic *efx)
1235{
1236 struct pci_dev *pci_dev = efx->pci_dev;
1237 dma_addr_t dma_mask = efx->type->max_dma_mask;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001238 unsigned int mem_map_size = efx->type->mem_map_size(efx);
Shradha Shah02246a72015-05-06 00:58:14 +01001239 int rc, bar;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001240
Ben Hutchings62776d02010-06-23 11:30:07 +00001241 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001242
Shradha Shah02246a72015-05-06 00:58:14 +01001243 bar = efx->type->mem_bar;
1244
Ben Hutchings8ceee662008-04-27 12:55:59 +01001245 rc = pci_enable_device(pci_dev);
1246 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001247 netif_err(efx, probe, efx->net_dev,
1248 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001249 goto fail1;
1250 }
1251
1252 pci_set_master(pci_dev);
1253
1254 /* Set the PCI DMA mask. Try all possibilities from our
1255 * genuine mask down to 32 bits, because some architectures
1256 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1257 * masks event though they reject 46 bit masks.
1258 */
1259 while (dma_mask > 0x7fffffffUL) {
Christoph Hellwig8722b8f2015-11-10 14:45:42 -08001260 rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
1261 if (rc == 0)
1262 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001263 dma_mask >>= 1;
1264 }
1265 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001266 netif_err(efx, probe, efx->net_dev,
1267 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001268 goto fail2;
1269 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001270 netif_dbg(efx, probe, efx->net_dev,
1271 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001272
Shradha Shah02246a72015-05-06 00:58:14 +01001273 efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
1274 rc = pci_request_region(pci_dev, bar, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001275 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001276 netif_err(efx, probe, efx->net_dev,
1277 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001278 rc = -EIO;
1279 goto fail3;
1280 }
Ben Hutchingsb1057982012-09-19 00:56:47 +01001281 efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001282 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001283 netif_err(efx, probe, efx->net_dev,
1284 "could not map memory BAR at %llx+%x\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001285 (unsigned long long)efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001286 rc = -ENOMEM;
1287 goto fail4;
1288 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001289 netif_dbg(efx, probe, efx->net_dev,
1290 "memory BAR at %llx+%x (virtual %p)\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001291 (unsigned long long)efx->membase_phys, mem_map_size,
1292 efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001293
1294 return 0;
1295
1296 fail4:
Shradha Shah02246a72015-05-06 00:58:14 +01001297 pci_release_region(efx->pci_dev, bar);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001298 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001299 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001300 fail2:
1301 pci_disable_device(efx->pci_dev);
1302 fail1:
1303 return rc;
1304}
1305
1306static void efx_fini_io(struct efx_nic *efx)
1307{
Shradha Shah02246a72015-05-06 00:58:14 +01001308 int bar;
1309
Ben Hutchings62776d02010-06-23 11:30:07 +00001310 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001311
1312 if (efx->membase) {
1313 iounmap(efx->membase);
1314 efx->membase = NULL;
1315 }
1316
1317 if (efx->membase_phys) {
Shradha Shah02246a72015-05-06 00:58:14 +01001318 bar = efx->type->mem_bar;
1319 pci_release_region(efx->pci_dev, bar);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001320 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001321 }
1322
Daniel Pieczko6598dad2015-06-02 11:41:00 +01001323 /* Don't disable bus-mastering if VFs are assigned */
1324 if (!pci_vfs_assigned(efx->pci_dev))
1325 pci_disable_device(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001326}
1327
Jon Cooper267c0152015-05-06 00:59:38 +01001328void efx_set_default_rx_indir_table(struct efx_nic *efx)
1329{
1330 size_t i;
1331
1332 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
1333 efx->rx_indir_table[i] =
1334 ethtool_rxfh_indir_default(i, efx->rss_spread);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001335}
1336
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001337static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
Ben Hutchings46123d02008-09-01 12:47:33 +01001338{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001339 cpumask_var_t thread_mask;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001340 unsigned int count;
Ben Hutchings46123d02008-09-01 12:47:33 +01001341 int cpu;
1342
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001343 if (rss_cpus) {
1344 count = rss_cpus;
1345 } else {
1346 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1347 netif_warn(efx, probe, efx->net_dev,
1348 "RSS disabled due to allocation failure\n");
1349 return 1;
Ben Hutchings46123d02008-09-01 12:47:33 +01001350 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001351
1352 count = 0;
1353 for_each_online_cpu(cpu) {
1354 if (!cpumask_test_cpu(cpu, thread_mask)) {
1355 ++count;
1356 cpumask_or(thread_mask, thread_mask,
Bartosz Golaszewski06931e62015-05-26 15:11:28 +02001357 topology_sibling_cpumask(cpu));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001358 }
1359 }
1360
1361 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001362 }
1363
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001364 /* If RSS is requested for the PF *and* VFs then we can't write RSS
1365 * table entries that are inaccessible to VFs
1366 */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001367#ifdef CONFIG_SFC_SRIOV
1368 if (efx->type->sriov_wanted) {
1369 if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1370 count > efx_vf_size(efx)) {
1371 netif_warn(efx, probe, efx->net_dev,
1372 "Reducing number of RSS channels from %u to %u for "
1373 "VF support. Increase vf-msix-limit to use more "
1374 "channels on the PF.\n",
1375 count, efx_vf_size(efx));
1376 count = efx_vf_size(efx);
1377 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001378 }
Shradha Shah7fa8d542015-05-06 00:55:13 +01001379#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001380
Ben Hutchings46123d02008-09-01 12:47:33 +01001381 return count;
1382}
1383
1384/* Probe the number and type of interrupts we are able to obtain, and
1385 * the resulting numbers of channels and RX queues.
1386 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001387static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001388{
Ben Hutchings7f967c02012-02-13 23:45:02 +00001389 unsigned int extra_channels = 0;
1390 unsigned int i, j;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001391 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001392
Ben Hutchings7f967c02012-02-13 23:45:02 +00001393 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1394 if (efx->extra_channel_type[i])
1395 ++extra_channels;
1396
Ben Hutchings8ceee662008-04-27 12:55:59 +01001397 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001398 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001399 unsigned int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001400
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001401 n_channels = efx_wanted_parallelism(efx);
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001402 if (efx_separate_tx_channels)
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001403 n_channels *= 2;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001404 n_channels += extra_channels;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001405 n_channels = min(n_channels, efx->max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001406
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001407 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001408 xentries[i].entry = i;
Alexander Gordeev184603d2014-02-18 11:12:00 +01001409 rc = pci_enable_msix_range(efx->pci_dev,
1410 xentries, 1, n_channels);
1411 if (rc < 0) {
1412 /* Fall back to single channel MSI */
1413 efx->interrupt_mode = EFX_INT_MODE_MSI;
1414 netif_err(efx, drv, efx->net_dev,
1415 "could not enable MSI-X\n");
1416 } else if (rc < n_channels) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001417 netif_err(efx, drv, efx->net_dev,
1418 "WARNING: Insufficient MSI-X vectors"
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001419 " available (%d < %u).\n", rc, n_channels);
Ben Hutchings62776d02010-06-23 11:30:07 +00001420 netif_err(efx, drv, efx->net_dev,
1421 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001422 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001423 }
1424
Alexander Gordeev184603d2014-02-18 11:12:00 +01001425 if (rc > 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001426 efx->n_channels = n_channels;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001427 if (n_channels > extra_channels)
1428 n_channels -= extra_channels;
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001429 if (efx_separate_tx_channels) {
1430 efx->n_tx_channels = min(max(n_channels / 2,
1431 1U),
1432 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001433 efx->n_rx_channels = max(n_channels -
1434 efx->n_tx_channels,
1435 1U);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001436 } else {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001437 efx->n_tx_channels = min(n_channels,
1438 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001439 efx->n_rx_channels = n_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001440 }
Ben Hutchings7f967c02012-02-13 23:45:02 +00001441 for (i = 0; i < efx->n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001442 efx_get_channel(efx, i)->irq =
1443 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001444 }
1445 }
1446
1447 /* Try single interrupt MSI */
1448 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001449 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001450 efx->n_rx_channels = 1;
1451 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001452 rc = pci_enable_msi(efx->pci_dev);
1453 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001454 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001455 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001456 netif_err(efx, drv, efx->net_dev,
1457 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001458 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1459 }
1460 }
1461
1462 /* Assume legacy interrupts */
1463 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001464 efx->n_channels = 1 + (efx_separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001465 efx->n_rx_channels = 1;
1466 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001467 efx->legacy_irq = efx->pci_dev->irq;
1468 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001469
Ben Hutchings7f967c02012-02-13 23:45:02 +00001470 /* Assign extra channels if possible */
1471 j = efx->n_channels;
1472 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1473 if (!efx->extra_channel_type[i])
1474 continue;
1475 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1476 efx->n_channels <= extra_channels) {
1477 efx->extra_channel_type[i]->handle_no_channel(efx);
1478 } else {
1479 --j;
1480 efx_get_channel(efx, j)->type =
1481 efx->extra_channel_type[i];
1482 }
1483 }
1484
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001485 /* RSS might be usable on VFs even if it is disabled on the PF */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001486#ifdef CONFIG_SFC_SRIOV
1487 if (efx->type->sriov_wanted) {
1488 efx->rss_spread = ((efx->n_rx_channels > 1 ||
1489 !efx->type->sriov_wanted(efx)) ?
1490 efx->n_rx_channels : efx_vf_size(efx));
1491 return 0;
1492 }
1493#endif
1494 efx->rss_spread = efx->n_rx_channels;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001495
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001496 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001497}
1498
Jon Cooper261e4d92013-04-15 18:51:54 +01001499static int efx_soft_enable_interrupts(struct efx_nic *efx)
Ben Hutchingsd8291182012-10-05 23:35:41 +01001500{
Jon Cooper261e4d92013-04-15 18:51:54 +01001501 struct efx_channel *channel, *end_channel;
1502 int rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001503
1504 BUG_ON(efx->state == STATE_DISABLED);
1505
1506 efx->irq_soft_enabled = true;
1507 smp_wmb();
1508
1509 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001510 if (!channel->type->keep_eventq) {
1511 rc = efx_init_eventq(channel);
1512 if (rc)
1513 goto fail;
1514 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001515 efx_start_eventq(channel);
1516 }
1517
1518 efx_mcdi_mode_event(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01001519
1520 return 0;
1521fail:
1522 end_channel = channel;
1523 efx_for_each_channel(channel, efx) {
1524 if (channel == end_channel)
1525 break;
1526 efx_stop_eventq(channel);
1527 if (!channel->type->keep_eventq)
1528 efx_fini_eventq(channel);
1529 }
1530
1531 return rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001532}
1533
1534static void efx_soft_disable_interrupts(struct efx_nic *efx)
1535{
1536 struct efx_channel *channel;
1537
1538 if (efx->state == STATE_DISABLED)
1539 return;
1540
1541 efx_mcdi_mode_poll(efx);
1542
1543 efx->irq_soft_enabled = false;
1544 smp_wmb();
1545
1546 if (efx->legacy_irq)
1547 synchronize_irq(efx->legacy_irq);
1548
1549 efx_for_each_channel(channel, efx) {
1550 if (channel->irq)
1551 synchronize_irq(channel->irq);
1552
1553 efx_stop_eventq(channel);
1554 if (!channel->type->keep_eventq)
1555 efx_fini_eventq(channel);
1556 }
Ben Hutchingscade7152013-08-27 23:12:31 +01001557
1558 /* Flush the asynchronous MCDI request queue */
1559 efx_mcdi_flush_async(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01001560}
1561
Jon Cooper261e4d92013-04-15 18:51:54 +01001562static int efx_enable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001563{
Jon Cooper261e4d92013-04-15 18:51:54 +01001564 struct efx_channel *channel, *end_channel;
1565 int rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001566
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001567 BUG_ON(efx->state == STATE_DISABLED);
1568
Alexandre Ramesb28405b2013-03-21 16:41:43 +00001569 if (efx->eeh_disabled_legacy_irq) {
1570 enable_irq(efx->legacy_irq);
1571 efx->eeh_disabled_legacy_irq = false;
1572 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001573
Ben Hutchings86094f72013-08-21 19:51:04 +01001574 efx->type->irq_enable_master(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001575
1576 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001577 if (channel->type->keep_eventq) {
1578 rc = efx_init_eventq(channel);
1579 if (rc)
1580 goto fail;
1581 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001582 }
1583
Jon Cooper261e4d92013-04-15 18:51:54 +01001584 rc = efx_soft_enable_interrupts(efx);
1585 if (rc)
1586 goto fail;
1587
1588 return 0;
1589
1590fail:
1591 end_channel = channel;
1592 efx_for_each_channel(channel, efx) {
1593 if (channel == end_channel)
1594 break;
1595 if (channel->type->keep_eventq)
1596 efx_fini_eventq(channel);
1597 }
1598
1599 efx->type->irq_disable_non_ev(efx);
1600
1601 return rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001602}
1603
Ben Hutchingsd8291182012-10-05 23:35:41 +01001604static void efx_disable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001605{
1606 struct efx_channel *channel;
1607
Ben Hutchingsd8291182012-10-05 23:35:41 +01001608 efx_soft_disable_interrupts(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001609
1610 efx_for_each_channel(channel, efx) {
Ben Hutchingsd8291182012-10-05 23:35:41 +01001611 if (channel->type->keep_eventq)
Ben Hutchings7f967c02012-02-13 23:45:02 +00001612 efx_fini_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001613 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001614
Ben Hutchings86094f72013-08-21 19:51:04 +01001615 efx->type->irq_disable_non_ev(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001616}
1617
Ben Hutchings8ceee662008-04-27 12:55:59 +01001618static void efx_remove_interrupts(struct efx_nic *efx)
1619{
1620 struct efx_channel *channel;
1621
1622 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001623 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001624 channel->irq = 0;
1625 pci_disable_msi(efx->pci_dev);
1626 pci_disable_msix(efx->pci_dev);
1627
1628 /* Remove legacy interrupt */
1629 efx->legacy_irq = 0;
1630}
1631
Ben Hutchings8831da72008-09-01 12:47:48 +01001632static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001633{
Ben Hutchings602a5322011-05-16 17:32:39 +01001634 struct efx_channel *channel;
1635 struct efx_tx_queue *tx_queue;
1636
Ben Hutchings97653432011-01-12 18:26:56 +00001637 efx->tx_channel_offset =
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001638 efx_separate_tx_channels ?
1639 efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001640
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001641 /* We need to mark which channels really have RX and TX
1642 * queues, and adjust the TX queue numbers if we have separate
Ben Hutchings602a5322011-05-16 17:32:39 +01001643 * RX-only and TX-only channels.
1644 */
1645 efx_for_each_channel(channel, efx) {
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001646 if (channel->channel < efx->n_rx_channels)
1647 channel->rx_queue.core_index = channel->channel;
1648 else
1649 channel->rx_queue.core_index = -1;
1650
Ben Hutchings602a5322011-05-16 17:32:39 +01001651 efx_for_each_channel_tx_queue(tx_queue, channel)
1652 tx_queue->queue -= (efx->tx_channel_offset *
1653 EFX_TXQ_TYPES);
1654 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001655}
1656
1657static int efx_probe_nic(struct efx_nic *efx)
1658{
1659 int rc;
1660
Ben Hutchings62776d02010-06-23 11:30:07 +00001661 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001662
1663 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001664 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001665 if (rc)
1666 return rc;
1667
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001668 do {
1669 if (!efx->max_channels || !efx->max_tx_channels) {
1670 netif_err(efx, drv, efx->net_dev,
1671 "Insufficient resources to allocate"
1672 " any channels\n");
1673 rc = -ENOSPC;
1674 goto fail1;
1675 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001676
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001677 /* Determine the number of channels and queues by trying
1678 * to hook in MSI-X interrupts.
1679 */
1680 rc = efx_probe_interrupts(efx);
1681 if (rc)
1682 goto fail1;
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001683
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001684 efx_set_channels(efx);
1685
1686 /* dimension_resources can fail with EAGAIN */
1687 rc = efx->type->dimension_resources(efx);
1688 if (rc != 0 && rc != -EAGAIN)
1689 goto fail2;
1690
1691 if (rc == -EAGAIN)
1692 /* try again with new max_channels */
1693 efx_remove_interrupts(efx);
1694
1695 } while (rc == -EAGAIN);
Ben Hutchings28e47c42012-02-15 01:58:49 +00001696
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001697 if (efx->n_channels > 1)
Jon Cooper267c0152015-05-06 00:59:38 +01001698 netdev_rss_key_fill(&efx->rx_hash_key,
1699 sizeof(efx->rx_hash_key));
1700 efx_set_default_rx_indir_table(efx);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001701
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001702 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1703 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001704
1705 /* Initialise the interrupt moderation settings */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001706 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1707 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001708
1709 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001710
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001711fail2:
1712 efx_remove_interrupts(efx);
1713fail1:
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001714 efx->type->remove(efx);
1715 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001716}
1717
1718static void efx_remove_nic(struct efx_nic *efx)
1719{
Ben Hutchings62776d02010-06-23 11:30:07 +00001720 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001721
1722 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001723 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001724}
1725
Ben Hutchingsadd72472012-11-08 01:46:53 +00001726static int efx_probe_filters(struct efx_nic *efx)
1727{
1728 int rc;
1729
1730 spin_lock_init(&efx->filter_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001731 init_rwsem(&efx->filter_sem);
1732 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001733 rc = efx->type->filter_table_probe(efx);
1734 if (rc)
Edward Cree0d322412015-05-20 11:10:03 +01001735 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001736
1737#ifdef CONFIG_RFS_ACCEL
1738 if (efx->type->offload_features & NETIF_F_NTUPLE) {
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001739 struct efx_channel *channel;
1740 int i, success = 1;
1741
1742 efx_for_each_channel(channel, efx) {
1743 channel->rps_flow_id =
1744 kcalloc(efx->type->max_rx_ip_filters,
1745 sizeof(*channel->rps_flow_id),
1746 GFP_KERNEL);
1747 if (!channel->rps_flow_id)
1748 success = 0;
1749 else
1750 for (i = 0;
1751 i < efx->type->max_rx_ip_filters;
1752 ++i)
1753 channel->rps_flow_id[i] =
1754 RPS_FLOW_ID_INVALID;
1755 }
1756
1757 if (!success) {
1758 efx_for_each_channel(channel, efx)
1759 kfree(channel->rps_flow_id);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001760 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001761 rc = -ENOMEM;
1762 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001763 }
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001764
1765 efx->rps_expire_index = efx->rps_expire_channel = 0;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001766 }
1767#endif
Edward Cree0d322412015-05-20 11:10:03 +01001768out_unlock:
1769 up_write(&efx->filter_sem);
1770 return rc;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001771}
1772
1773static void efx_remove_filters(struct efx_nic *efx)
1774{
1775#ifdef CONFIG_RFS_ACCEL
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001776 struct efx_channel *channel;
1777
1778 efx_for_each_channel(channel, efx)
1779 kfree(channel->rps_flow_id);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001780#endif
Edward Cree0d322412015-05-20 11:10:03 +01001781 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001782 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001783 up_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001784}
1785
1786static void efx_restore_filters(struct efx_nic *efx)
1787{
Edward Cree0d322412015-05-20 11:10:03 +01001788 down_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001789 efx->type->filter_table_restore(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001790 up_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001791}
1792
Ben Hutchings8ceee662008-04-27 12:55:59 +01001793/**************************************************************************
1794 *
1795 * NIC startup/shutdown
1796 *
1797 *************************************************************************/
1798
1799static int efx_probe_all(struct efx_nic *efx)
1800{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001801 int rc;
1802
Ben Hutchings8ceee662008-04-27 12:55:59 +01001803 rc = efx_probe_nic(efx);
1804 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001805 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001806 goto fail1;
1807 }
1808
Ben Hutchings8ceee662008-04-27 12:55:59 +01001809 rc = efx_probe_port(efx);
1810 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001811 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001812 goto fail2;
1813 }
1814
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00001815 BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
1816 if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
1817 rc = -EINVAL;
1818 goto fail3;
1819 }
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001820 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001821
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001822#ifdef CONFIG_SFC_SRIOV
1823 rc = efx->type->vswitching_probe(efx);
1824 if (rc) /* not fatal; the PF will still work fine */
1825 netif_warn(efx, probe, efx->net_dev,
1826 "failed to setup vswitching rc=%d;"
1827 " VFs may not function\n", rc);
1828#endif
1829
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001830 rc = efx_probe_filters(efx);
1831 if (rc) {
1832 netif_err(efx, probe, efx->net_dev,
1833 "failed to create filter tables\n");
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001834 goto fail4;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001835 }
1836
Ben Hutchings7f967c02012-02-13 23:45:02 +00001837 rc = efx_probe_channels(efx);
1838 if (rc)
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001839 goto fail5;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001840
Ben Hutchings8ceee662008-04-27 12:55:59 +01001841 return 0;
1842
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001843 fail5:
Ben Hutchings7f967c02012-02-13 23:45:02 +00001844 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001845 fail4:
1846#ifdef CONFIG_SFC_SRIOV
1847 efx->type->vswitching_remove(efx);
1848#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001849 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001850 efx_remove_port(efx);
1851 fail2:
1852 efx_remove_nic(efx);
1853 fail1:
1854 return rc;
1855}
1856
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001857/* If the interface is supposed to be running but is not, start
1858 * the hardware and software data path, regular activity for the port
1859 * (MAC statistics, link polling, etc.) and schedule the port to be
1860 * reconfigured. Interrupts must already be enabled. This function
1861 * is safe to call multiple times, so long as the NIC is not disabled.
1862 * Requires the RTNL lock.
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001863 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001864static void efx_start_all(struct efx_nic *efx)
1865{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001866 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001867 BUG_ON(efx->state == STATE_DISABLED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001868
1869 /* Check that it is appropriate to restart the interface. All
1870 * of these flags are safe to read under just the rtnl lock */
Edward Creee2835462014-04-16 19:27:48 +01001871 if (efx->port_enabled || !netif_running(efx->net_dev) ||
1872 efx->reset_pending)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001873 return;
1874
Ben Hutchings8ceee662008-04-27 12:55:59 +01001875 efx_start_port(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001876 efx_start_datapath(efx);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001877
Alexandre Rames626950d2013-01-14 17:20:22 +00001878 /* Start the hardware monitor if there is one */
1879 if (efx->type->monitor != NULL)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001880 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1881 efx_monitor_interval);
Alexandre Rames626950d2013-01-14 17:20:22 +00001882
1883 /* If link state detection is normally event-driven, we have
1884 * to poll now because we could have missed a change
1885 */
1886 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) {
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001887 mutex_lock(&efx->mac_lock);
1888 if (efx->phy_op->poll(efx))
1889 efx_link_status_changed(efx);
1890 mutex_unlock(&efx->mac_lock);
1891 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001892
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001893 efx->type->start_stats(efx);
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001894 efx->type->pull_stats(efx);
1895 spin_lock_bh(&efx->stats_lock);
1896 efx->type->update_stats(efx, NULL, NULL);
1897 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001898}
1899
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001900/* Quiesce the hardware and software data path, and regular activity
1901 * for the port without bringing the link down. Safe to call multiple
1902 * times with the NIC in almost any state, but interrupts should be
1903 * enabled. Requires the RTNL lock.
1904 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001905static void efx_stop_all(struct efx_nic *efx)
1906{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001907 EFX_ASSERT_RESET_SERIALISED(efx);
1908
1909 /* port_enabled can be read safely under the rtnl lock */
1910 if (!efx->port_enabled)
1911 return;
1912
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001913 /* update stats before we go down so we can accurately count
1914 * rx_nodesc_drops
1915 */
1916 efx->type->pull_stats(efx);
1917 spin_lock_bh(&efx->stats_lock);
1918 efx->type->update_stats(efx, NULL, NULL);
1919 spin_unlock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001920 efx->type->stop_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001921 efx_stop_port(efx);
1922
Ben Hutchings29c69a42013-01-28 19:01:06 +00001923 /* Stop the kernel transmit interface. This is only valid if
1924 * the device is stopped or detached; otherwise the watchdog
1925 * may fire immediately.
1926 */
1927 WARN_ON(netif_running(efx->net_dev) &&
1928 netif_device_present(efx->net_dev));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001929 netif_tx_disable(efx->net_dev);
1930
1931 efx_stop_datapath(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001932}
1933
1934static void efx_remove_all(struct efx_nic *efx)
1935{
Ben Hutchings46426102010-09-10 06:42:33 +00001936 efx_remove_channels(efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001937 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001938#ifdef CONFIG_SFC_SRIOV
1939 efx->type->vswitching_remove(efx);
1940#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001941 efx_remove_port(efx);
1942 efx_remove_nic(efx);
1943}
1944
Ben Hutchings8ceee662008-04-27 12:55:59 +01001945/**************************************************************************
1946 *
1947 * Interrupt moderation
1948 *
1949 **************************************************************************/
1950
Ben Hutchingscc180b62011-12-08 19:51:47 +00001951static unsigned int irq_mod_ticks(unsigned int usecs, unsigned int quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001952{
Ben Hutchingsb548f972011-09-05 07:41:44 +00001953 if (usecs == 0)
1954 return 0;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001955 if (usecs * 1000 < quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001956 return 1; /* never round down to 0 */
Ben Hutchingscc180b62011-12-08 19:51:47 +00001957 return usecs * 1000 / quantum_ns;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001958}
1959
Ben Hutchings8ceee662008-04-27 12:55:59 +01001960/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001961int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1962 unsigned int rx_usecs, bool rx_adaptive,
1963 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001964{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001965 struct efx_channel *channel;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001966 unsigned int irq_mod_max = DIV_ROUND_UP(efx->type->timer_period_max *
1967 efx->timer_quantum_ns,
1968 1000);
1969 unsigned int tx_ticks;
1970 unsigned int rx_ticks;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001971
1972 EFX_ASSERT_RESET_SERIALISED(efx);
1973
Ben Hutchingscc180b62011-12-08 19:51:47 +00001974 if (tx_usecs > irq_mod_max || rx_usecs > irq_mod_max)
Ben Hutchings9e393b32011-09-05 07:43:04 +00001975 return -EINVAL;
1976
Ben Hutchingscc180b62011-12-08 19:51:47 +00001977 tx_ticks = irq_mod_ticks(tx_usecs, efx->timer_quantum_ns);
1978 rx_ticks = irq_mod_ticks(rx_usecs, efx->timer_quantum_ns);
1979
Ben Hutchings9e393b32011-09-05 07:43:04 +00001980 if (tx_ticks != rx_ticks && efx->tx_channel_offset == 0 &&
1981 !rx_may_override_tx) {
1982 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1983 "RX and TX IRQ moderation must be equal\n");
1984 return -EINVAL;
1985 }
1986
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001987 efx->irq_rx_adaptive = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001988 efx->irq_rx_moderation = rx_ticks;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001989 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00001990 if (efx_channel_has_rx_queue(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001991 channel->irq_moderation = rx_ticks;
Ben Hutchings525da902011-02-07 23:04:38 +00001992 else if (efx_channel_has_tx_queues(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001993 channel->irq_moderation = tx_ticks;
1994 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00001995
1996 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001997}
1998
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001999void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
2000 unsigned int *rx_usecs, bool *rx_adaptive)
2001{
Ben Hutchingscc180b62011-12-08 19:51:47 +00002002 /* We must round up when converting ticks to microseconds
2003 * because we round down when converting the other way.
2004 */
2005
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002006 *rx_adaptive = efx->irq_rx_adaptive;
Ben Hutchingscc180b62011-12-08 19:51:47 +00002007 *rx_usecs = DIV_ROUND_UP(efx->irq_rx_moderation *
2008 efx->timer_quantum_ns,
2009 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002010
2011 /* If channels are shared between RX and TX, so is IRQ
2012 * moderation. Otherwise, IRQ moderation is the same for all
2013 * TX channels and is not adaptive.
2014 */
2015 if (efx->tx_channel_offset == 0)
2016 *tx_usecs = *rx_usecs;
2017 else
Ben Hutchingscc180b62011-12-08 19:51:47 +00002018 *tx_usecs = DIV_ROUND_UP(
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002019 efx->channel[efx->tx_channel_offset]->irq_moderation *
Ben Hutchingscc180b62011-12-08 19:51:47 +00002020 efx->timer_quantum_ns,
2021 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002022}
2023
Ben Hutchings8ceee662008-04-27 12:55:59 +01002024/**************************************************************************
2025 *
2026 * Hardware monitor
2027 *
2028 **************************************************************************/
2029
Ben Hutchingse254c272010-09-20 08:44:10 +00002030/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002031static void efx_monitor(struct work_struct *data)
2032{
2033 struct efx_nic *efx = container_of(data, struct efx_nic,
2034 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002035
Ben Hutchings62776d02010-06-23 11:30:07 +00002036 netif_vdbg(efx, timer, efx->net_dev,
2037 "hardware monitor executing on CPU %d\n",
2038 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002039 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002040
Ben Hutchings8ceee662008-04-27 12:55:59 +01002041 /* If the mac_lock is already held then it is likely a port
2042 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00002043 * most of the work of monitor() anyway. */
2044 if (mutex_trylock(&efx->mac_lock)) {
2045 if (efx->port_enabled)
2046 efx->type->monitor(efx);
2047 mutex_unlock(&efx->mac_lock);
2048 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002049
Ben Hutchings8ceee662008-04-27 12:55:59 +01002050 queue_delayed_work(efx->workqueue, &efx->monitor_work,
2051 efx_monitor_interval);
2052}
2053
2054/**************************************************************************
2055 *
2056 * ioctls
2057 *
2058 *************************************************************************/
2059
2060/* Net device ioctl
2061 * Context: process, rtnl_lock() held.
2062 */
2063static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
2064{
Ben Hutchings767e4682008-09-01 12:43:14 +01002065 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002066 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002067
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002068 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings433dc9b2013-11-14 01:26:21 +00002069 return efx_ptp_set_ts_config(efx, ifr);
2070 if (cmd == SIOCGHWTSTAMP)
2071 return efx_ptp_get_ts_config(efx, ifr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002072
Ben Hutchings68e7f452009-04-29 08:05:08 +00002073 /* Convert phy_id from older PRTAD/DEVAD format */
2074 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
2075 (data->phy_id & 0xfc00) == 0x0400)
2076 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
2077
2078 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002079}
2080
2081/**************************************************************************
2082 *
2083 * NAPI interface
2084 *
2085 **************************************************************************/
2086
Ben Hutchings7f967c02012-02-13 23:45:02 +00002087static void efx_init_napi_channel(struct efx_channel *channel)
2088{
2089 struct efx_nic *efx = channel->efx;
2090
2091 channel->napi_dev = efx->net_dev;
2092 netif_napi_add(channel->napi_dev, &channel->napi_str,
2093 efx_poll, napi_weight);
Bert Kenwardc0f9c7e2015-10-26 14:23:42 +00002094 efx_channel_busy_poll_init(channel);
Ben Hutchings7f967c02012-02-13 23:45:02 +00002095}
2096
Ben Hutchingse8f14992010-12-07 19:47:34 +00002097static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002098{
2099 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002100
Ben Hutchings7f967c02012-02-13 23:45:02 +00002101 efx_for_each_channel(channel, efx)
2102 efx_init_napi_channel(channel);
Ben Hutchingse8f14992010-12-07 19:47:34 +00002103}
2104
2105static void efx_fini_napi_channel(struct efx_channel *channel)
2106{
Alexandre Rames36763262014-07-22 14:03:25 +01002107 if (channel->napi_dev) {
Ben Hutchingse8f14992010-12-07 19:47:34 +00002108 netif_napi_del(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +01002109 napi_hash_del(&channel->napi_str);
2110 }
Ben Hutchingse8f14992010-12-07 19:47:34 +00002111 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002112}
2113
2114static void efx_fini_napi(struct efx_nic *efx)
2115{
2116 struct efx_channel *channel;
2117
Ben Hutchingse8f14992010-12-07 19:47:34 +00002118 efx_for_each_channel(channel, efx)
2119 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002120}
2121
2122/**************************************************************************
2123 *
2124 * Kernel netpoll interface
2125 *
2126 *************************************************************************/
2127
2128#ifdef CONFIG_NET_POLL_CONTROLLER
2129
2130/* Although in the common case interrupts will be disabled, this is not
2131 * guaranteed. However, all our work happens inside the NAPI callback,
2132 * so no locking is required.
2133 */
2134static void efx_netpoll(struct net_device *net_dev)
2135{
Ben Hutchings767e4682008-09-01 12:43:14 +01002136 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002137 struct efx_channel *channel;
2138
Ben Hutchings64ee3122008-09-01 12:47:38 +01002139 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002140 efx_schedule_channel(channel);
2141}
2142
2143#endif
2144
Alexandre Rames36763262014-07-22 14:03:25 +01002145#ifdef CONFIG_NET_RX_BUSY_POLL
2146static int efx_busy_poll(struct napi_struct *napi)
2147{
2148 struct efx_channel *channel =
2149 container_of(napi, struct efx_channel, napi_str);
2150 struct efx_nic *efx = channel->efx;
2151 int budget = 4;
2152 int old_rx_packets, rx_packets;
2153
2154 if (!netif_running(efx->net_dev))
2155 return LL_FLUSH_FAILED;
2156
Bert Kenwardc0f9c7e2015-10-26 14:23:42 +00002157 if (!efx_channel_try_lock_poll(channel))
Alexandre Rames36763262014-07-22 14:03:25 +01002158 return LL_FLUSH_BUSY;
2159
2160 old_rx_packets = channel->rx_queue.rx_packets;
2161 efx_process_channel(channel, budget);
2162
2163 rx_packets = channel->rx_queue.rx_packets - old_rx_packets;
2164
2165 /* There is no race condition with NAPI here.
2166 * NAPI will automatically be rescheduled if it yielded during busy
2167 * polling, because it was not able to take the lock and thus returned
2168 * the full budget.
2169 */
2170 efx_channel_unlock_poll(channel);
2171
2172 return rx_packets;
2173}
2174#endif
2175
Ben Hutchings8ceee662008-04-27 12:55:59 +01002176/**************************************************************************
2177 *
2178 * Kernel net device interface
2179 *
2180 *************************************************************************/
2181
2182/* Context: process, rtnl_lock() held. */
Shradha Shahe340be92015-05-20 11:11:03 +01002183int efx_net_open(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 Hutchings8b7325b2012-07-27 20:46:41 +01002186 int rc;
2187
Ben Hutchings62776d02010-06-23 11:30:07 +00002188 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
2189 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002190
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002191 rc = efx_check_disabled(efx);
2192 if (rc)
2193 return rc;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002194 if (efx->phy_mode & PHY_MODE_SPECIAL)
2195 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002196 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
2197 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002198
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00002199 /* Notify the kernel of the link state polled during driver load,
2200 * before the monitor starts running */
2201 efx_link_status_changed(efx);
2202
Ben Hutchings8ceee662008-04-27 12:55:59 +01002203 efx_start_all(efx);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002204 efx_selftest_async_start(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002205 return 0;
2206}
2207
2208/* Context: process, rtnl_lock() held.
2209 * Note that the kernel will ignore our return code; this method
2210 * should really be a void.
2211 */
Shradha Shahe340be92015-05-20 11:11:03 +01002212int efx_net_stop(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002213{
Ben Hutchings767e4682008-09-01 12:43:14 +01002214 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002215
Ben Hutchings62776d02010-06-23 11:30:07 +00002216 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
2217 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002218
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002219 /* Stop the device and flush all the channels */
2220 efx_stop_all(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002221
2222 return 0;
2223}
2224
Ben Hutchings5b9e2072008-05-16 21:18:14 +01002225/* Context: process, dev_base_lock or RTNL held, non-blocking. */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +00002226static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev,
2227 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002228{
Ben Hutchings767e4682008-09-01 12:43:14 +01002229 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002230
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002231 spin_lock_bh(&efx->stats_lock);
Ben Hutchingscd0ecc92012-12-14 21:52:56 +00002232 efx->type->update_stats(efx, NULL, stats);
Ben Hutchings1cb34522011-09-02 23:23:00 +01002233 spin_unlock_bh(&efx->stats_lock);
2234
Ben Hutchings8ceee662008-04-27 12:55:59 +01002235 return stats;
2236}
2237
2238/* Context: netif_tx_lock held, BHs disabled. */
2239static void efx_watchdog(struct net_device *net_dev)
2240{
Ben Hutchings767e4682008-09-01 12:43:14 +01002241 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002242
Ben Hutchings62776d02010-06-23 11:30:07 +00002243 netif_err(efx, tx_err, efx->net_dev,
2244 "TX stuck with port_enabled=%d: resetting channels\n",
2245 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002246
Ben Hutchings739bb23d2008-11-04 20:35:36 +00002247 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002248}
2249
2250
2251/* Context: process, rtnl_lock() held. */
2252static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2253{
Ben Hutchings767e4682008-09-01 12:43:14 +01002254 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002255 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002256
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002257 rc = efx_check_disabled(efx);
2258 if (rc)
2259 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002260 if (new_mtu > EFX_MAX_MTU)
2261 return -EINVAL;
2262
Ben Hutchings62776d02010-06-23 11:30:07 +00002263 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002264
Ben Hutchings29c69a42013-01-28 19:01:06 +00002265 efx_device_detach_sync(efx);
2266 efx_stop_all(efx);
2267
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002268 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002269 net_dev->mtu = new_mtu;
Edward Cree0d322412015-05-20 11:10:03 +01002270 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002271 mutex_unlock(&efx->mac_lock);
2272
Ben Hutchings8ceee662008-04-27 12:55:59 +01002273 efx_start_all(efx);
Ben Hutchings29c69a42013-01-28 19:01:06 +00002274 netif_device_attach(efx->net_dev);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00002275 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002276}
2277
2278static int efx_set_mac_address(struct net_device *net_dev, void *data)
2279{
Ben Hutchings767e4682008-09-01 12:43:14 +01002280 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002281 struct sockaddr *addr = data;
Ben Hutchingse0b3ae32014-02-12 18:59:54 +00002282 u8 *new_addr = addr->sa_data;
Shradha Shahcfc77c22015-05-20 11:09:30 +01002283 u8 old_addr[6];
2284 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002285
Ben Hutchings8ceee662008-04-27 12:55:59 +01002286 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002287 netif_err(efx, drv, efx->net_dev,
2288 "invalid ethernet MAC address requested: %pM\n",
2289 new_addr);
Danny Kukawka504f9b52012-02-21 02:07:49 +00002290 return -EADDRNOTAVAIL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002291 }
2292
Shradha Shahcfc77c22015-05-20 11:09:30 +01002293 /* save old address */
2294 ether_addr_copy(old_addr, net_dev->dev_addr);
Edward Creecd84ff42014-03-07 18:27:41 +00002295 ether_addr_copy(net_dev->dev_addr, new_addr);
Shradha Shah910c8782015-05-20 11:12:48 +01002296 if (efx->type->set_mac_address) {
2297 rc = efx->type->set_mac_address(efx);
Shradha Shahcfc77c22015-05-20 11:09:30 +01002298 if (rc) {
2299 ether_addr_copy(net_dev->dev_addr, old_addr);
2300 return rc;
2301 }
2302 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002303
2304 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002305 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01002306 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002307 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002308
2309 return 0;
2310}
2311
Ben Hutchingsa816f752008-09-01 12:49:12 +01002312/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002313static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002314{
Ben Hutchings767e4682008-09-01 12:43:14 +01002315 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002316
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00002317 if (efx->port_enabled)
2318 queue_work(efx->workqueue, &efx->mac_work);
2319 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002320}
2321
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002322static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002323{
2324 struct efx_nic *efx = netdev_priv(net_dev);
2325
2326 /* If disabling RX n-tuple filtering, clear existing filters */
2327 if (net_dev->features & ~data & NETIF_F_NTUPLE)
Ben Hutchingsfbd79122013-11-21 19:15:03 +00002328 return efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002329
2330 return 0;
2331}
2332
Shradha Shah7fa8d542015-05-06 00:55:13 +01002333static const struct net_device_ops efx_netdev_ops = {
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002334 .ndo_open = efx_net_open,
2335 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00002336 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002337 .ndo_tx_timeout = efx_watchdog,
2338 .ndo_start_xmit = efx_hard_start_xmit,
2339 .ndo_validate_addr = eth_validate_addr,
2340 .ndo_do_ioctl = efx_ioctl,
2341 .ndo_change_mtu = efx_change_mtu,
2342 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002343 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002344 .ndo_set_features = efx_set_features,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002345#ifdef CONFIG_SFC_SRIOV
Shradha Shah7fa8d542015-05-06 00:55:13 +01002346 .ndo_set_vf_mac = efx_sriov_set_vf_mac,
2347 .ndo_set_vf_vlan = efx_sriov_set_vf_vlan,
2348 .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk,
2349 .ndo_get_vf_config = efx_sriov_get_vf_config,
Edward Cree4392dc62015-05-20 11:12:13 +01002350 .ndo_set_vf_link_state = efx_sriov_set_vf_link_state,
Shradha Shah1d051e02015-06-02 11:38:16 +01002351 .ndo_get_phys_port_id = efx_sriov_get_phys_port_id,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002352#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002353#ifdef CONFIG_NET_POLL_CONTROLLER
2354 .ndo_poll_controller = efx_netpoll,
2355#endif
Ben Hutchings94b274b2011-01-10 21:18:20 +00002356 .ndo_setup_tc = efx_setup_tc,
Alexandre Rames36763262014-07-22 14:03:25 +01002357#ifdef CONFIG_NET_RX_BUSY_POLL
2358 .ndo_busy_poll = efx_busy_poll,
2359#endif
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002360#ifdef CONFIG_RFS_ACCEL
2361 .ndo_rx_flow_steer = efx_filter_rfs,
2362#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002363};
2364
Ben Hutchings7dde5962008-12-12 22:09:38 -08002365static void efx_update_name(struct efx_nic *efx)
2366{
2367 strcpy(efx->name, efx->net_dev->name);
2368 efx_mtd_rename(efx);
2369 efx_set_channel_names(efx);
2370}
2371
Ben Hutchings8ceee662008-04-27 12:55:59 +01002372static int efx_netdev_event(struct notifier_block *this,
2373 unsigned long event, void *ptr)
2374{
Jiri Pirko351638e2013-05-28 01:30:21 +00002375 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002376
Shradha Shah7fa8d542015-05-06 00:55:13 +01002377 if ((net_dev->netdev_ops == &efx_netdev_ops) &&
Ben Hutchings7dde5962008-12-12 22:09:38 -08002378 event == NETDEV_CHANGENAME)
2379 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002380
2381 return NOTIFY_DONE;
2382}
2383
2384static struct notifier_block efx_netdev_notifier = {
2385 .notifier_call = efx_netdev_event,
2386};
2387
Ben Hutchings06d5e192008-12-12 21:47:23 -08002388static ssize_t
2389show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2390{
2391 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2392 return sprintf(buf, "%d\n", efx->phy_type);
2393}
Ben Hutchings776fbcc2013-06-18 17:45:40 +01002394static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002395
Edward Creee7fef9b2015-05-27 13:14:01 +01002396#ifdef CONFIG_SFC_MCDI_LOGGING
2397static ssize_t show_mcdi_log(struct device *dev, struct device_attribute *attr,
2398 char *buf)
2399{
2400 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2401 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2402
2403 return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled);
2404}
2405static ssize_t set_mcdi_log(struct device *dev, struct device_attribute *attr,
2406 const char *buf, size_t count)
2407{
2408 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2409 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2410 bool enable = count > 0 && *buf != '0';
2411
2412 mcdi->logging_enabled = enable;
2413 return count;
2414}
2415static DEVICE_ATTR(mcdi_logging, 0644, show_mcdi_log, set_mcdi_log);
2416#endif
2417
Ben Hutchings8ceee662008-04-27 12:55:59 +01002418static int efx_register_netdev(struct efx_nic *efx)
2419{
2420 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002421 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002422 int rc;
2423
2424 net_dev->watchdog_timeo = 5 * HZ;
2425 net_dev->irq = efx->pci_dev->irq;
Shradha Shah7fa8d542015-05-06 00:55:13 +01002426 net_dev->netdev_ops = &efx_netdev_ops;
2427 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0)
Ben Hutchings8127d662013-08-29 19:19:29 +01002428 net_dev->priv_flags |= IFF_UNICAST_FLT;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002429 net_dev->ethtool_ops = &efx_ethtool_ops;
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002430 net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002431
Ben Hutchings7dde5962008-12-12 22:09:38 -08002432 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00002433
Ben Hutchings7153f622012-07-27 20:50:52 +01002434 /* Enable resets to be scheduled and check whether any were
2435 * already requested. If so, the NIC is probably hosed so we
2436 * abort.
2437 */
2438 efx->state = STATE_READY;
2439 smp_mb(); /* ensure we change state before checking reset_pending */
2440 if (efx->reset_pending) {
2441 netif_err(efx, probe, efx->net_dev,
2442 "aborting probe due to scheduled reset\n");
2443 rc = -EIO;
2444 goto fail_locked;
2445 }
2446
Ben Hutchingsaed06282009-08-26 08:16:27 +00002447 rc = dev_alloc_name(net_dev, net_dev->name);
2448 if (rc < 0)
2449 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002450 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002451
Ben Hutchings8f8b3d52012-08-24 18:04:38 +01002452 /* Always start with carrier off; PHY events will detect the link */
2453 netif_carrier_off(net_dev);
2454
Ben Hutchingsaed06282009-08-26 08:16:27 +00002455 rc = register_netdevice(net_dev);
2456 if (rc)
2457 goto fail_locked;
2458
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002459 efx_for_each_channel(channel, efx) {
2460 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00002461 efx_for_each_channel_tx_queue(tx_queue, channel)
2462 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002463 }
2464
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002465 efx_associate(efx);
2466
Ben Hutchings7dde5962008-12-12 22:09:38 -08002467 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002468
Ben Hutchings06d5e192008-12-12 21:47:23 -08002469 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2470 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002471 netif_err(efx, drv, efx->net_dev,
2472 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08002473 goto fail_registered;
2474 }
Edward Creee7fef9b2015-05-27 13:14:01 +01002475#ifdef CONFIG_SFC_MCDI_LOGGING
2476 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2477 if (rc) {
2478 netif_err(efx, drv, efx->net_dev,
2479 "failed to init net dev attributes\n");
2480 goto fail_attr_mcdi_logging;
2481 }
2482#endif
Ben Hutchings06d5e192008-12-12 21:47:23 -08002483
Ben Hutchings8ceee662008-04-27 12:55:59 +01002484 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08002485
Edward Creee7fef9b2015-05-27 13:14:01 +01002486#ifdef CONFIG_SFC_MCDI_LOGGING
2487fail_attr_mcdi_logging:
2488 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2489#endif
Ben Hutchings7153f622012-07-27 20:50:52 +01002490fail_registered:
2491 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002492 efx_dissociate(efx);
Ben Hutchings7153f622012-07-27 20:50:52 +01002493 unregister_netdevice(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002494fail_locked:
Ben Hutchings7153f622012-07-27 20:50:52 +01002495 efx->state = STATE_UNINIT;
Ben Hutchingsaed06282009-08-26 08:16:27 +00002496 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00002497 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00002498 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002499}
2500
2501static void efx_unregister_netdev(struct efx_nic *efx)
2502{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002503 if (!efx->net_dev)
2504 return;
2505
Ben Hutchings767e4682008-09-01 12:43:14 +01002506 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002507
Edward Creee7fef9b2015-05-27 13:14:01 +01002508 if (efx_dev_registered(efx)) {
2509 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2510#ifdef CONFIG_SFC_MCDI_LOGGING
2511 device_remove_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2512#endif
2513 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2514 unregister_netdev(efx->net_dev);
2515 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002516}
2517
2518/**************************************************************************
2519 *
2520 * Device reset and suspend
2521 *
2522 **************************************************************************/
2523
Ben Hutchings2467ca42008-09-01 12:48:50 +01002524/* Tears down the entire software state and most of the hardware state
2525 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002526void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002527{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002528 EFX_ASSERT_RESET_SERIALISED(efx);
2529
Edward Creee2835462014-04-16 19:27:48 +01002530 if (method == RESET_TYPE_MCDI_TIMEOUT)
2531 efx->type->prepare_flr(efx);
2532
Ben Hutchings2467ca42008-09-01 12:48:50 +01002533 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002534 efx_disable_interrupts(efx);
Ben Hutchings5642cee2012-07-27 19:35:52 +01002535
2536 mutex_lock(&efx->mac_lock);
Jon Cooper087e9022015-05-20 11:11:35 +01002537 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2538 method != RESET_TYPE_DATAPATH)
Steve Hodgson4b988282009-01-29 17:50:51 +00002539 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002540 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002541}
2542
Ben Hutchings2467ca42008-09-01 12:48:50 +01002543/* This function will always ensure that the locks acquired in
2544 * efx_reset_down() are released. A failure return code indicates
2545 * that we were unable to reinitialise the hardware, and the
2546 * driver should be disabled. If ok is false, then the rx and tx
2547 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002548int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002549{
2550 int rc;
2551
Ben Hutchings2467ca42008-09-01 12:48:50 +01002552 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002553
Edward Creee2835462014-04-16 19:27:48 +01002554 if (method == RESET_TYPE_MCDI_TIMEOUT)
2555 efx->type->finish_flr(efx);
2556
2557 /* Ensure that SRAM is initialised even if we're disabling the device */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002558 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002559 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002560 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002561 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002562 }
2563
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002564 if (!ok)
2565 goto fail;
2566
Jon Cooper087e9022015-05-20 11:11:35 +01002567 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2568 method != RESET_TYPE_DATAPATH) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002569 rc = efx->phy_op->init(efx);
2570 if (rc)
2571 goto fail;
Edward Cree267d9d72015-05-06 00:59:18 +01002572 rc = efx->phy_op->reconfigure(efx);
2573 if (rc && rc != -EPERM)
Ben Hutchings62776d02010-06-23 11:30:07 +00002574 netif_err(efx, drv, efx->net_dev,
2575 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002576 }
2577
Jon Cooper261e4d92013-04-15 18:51:54 +01002578 rc = efx_enable_interrupts(efx);
2579 if (rc)
2580 goto fail;
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002581
2582#ifdef CONFIG_SFC_SRIOV
2583 rc = efx->type->vswitching_restore(efx);
2584 if (rc) /* not fatal; the PF will still work fine */
2585 netif_warn(efx, probe, efx->net_dev,
2586 "failed to restore vswitching rc=%d;"
2587 " VFs may not function\n", rc);
2588#endif
2589
Edward Cree0d322412015-05-20 11:10:03 +01002590 down_read(&efx->filter_sem);
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002591 efx_restore_filters(efx);
Edward Cree0d322412015-05-20 11:10:03 +01002592 up_read(&efx->filter_sem);
Shradha Shah7fa8d542015-05-06 00:55:13 +01002593 if (efx->type->sriov_reset)
2594 efx->type->sriov_reset(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002595
2596 mutex_unlock(&efx->mac_lock);
2597
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002598 efx_start_all(efx);
2599
2600 return 0;
2601
2602fail:
2603 efx->port_initialized = false;
2604
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002605 mutex_unlock(&efx->mac_lock);
2606
Ben Hutchings8ceee662008-04-27 12:55:59 +01002607 return rc;
2608}
2609
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002610/* Reset the NIC using the specified method. Note that the reset may
2611 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002612 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002613 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002614 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002615int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002616{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002617 int rc, rc2;
2618 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002619
Ben Hutchings62776d02010-06-23 11:30:07 +00002620 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2621 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002622
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002623 efx_device_detach_sync(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002624 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002625
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002626 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002627 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002628 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002629 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002630 }
2631
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002632 /* Clear flags for the scopes we covered. We assume the NIC and
2633 * driver are now quiescent so that there is no race here.
2634 */
Edward Creee2835462014-04-16 19:27:48 +01002635 if (method < RESET_TYPE_MAX_METHOD)
2636 efx->reset_pending &= -(1 << (method + 1));
2637 else /* it doesn't fit into the well-ordered scope hierarchy */
2638 __clear_bit(method, &efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002639
2640 /* Reinitialise bus-mastering, which may have been turned off before
2641 * the reset was scheduled. This is still appropriate, even in the
2642 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2643 * can respond to requests. */
2644 pci_set_master(efx->pci_dev);
2645
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002646out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002647 /* Leave device stopped if necessary */
Alexandre Rames626950d2013-01-14 17:20:22 +00002648 disabled = rc ||
2649 method == RESET_TYPE_DISABLE ||
2650 method == RESET_TYPE_RECOVER_OR_DISABLE;
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002651 rc2 = efx_reset_up(efx, method, !disabled);
2652 if (rc2) {
2653 disabled = true;
2654 if (!rc)
2655 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002656 }
2657
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002658 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002659 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002660 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002661 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002662 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002663 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingse4abce82011-05-16 18:51:24 +01002664 netif_device_attach(efx->net_dev);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002665 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002666 return rc;
2667}
2668
Alexandre Rames626950d2013-01-14 17:20:22 +00002669/* Try recovery mechanisms.
2670 * For now only EEH is supported.
2671 * Returns 0 if the recovery mechanisms are unsuccessful.
2672 * Returns a non-zero value otherwise.
2673 */
Alexandre Ramesb28405b2013-03-21 16:41:43 +00002674int efx_try_recovery(struct efx_nic *efx)
Alexandre Rames626950d2013-01-14 17:20:22 +00002675{
2676#ifdef CONFIG_EEH
2677 /* A PCI error can occur and not be seen by EEH because nothing
2678 * happens on the PCI bus. In this case the driver may fail and
2679 * schedule a 'recover or reset', leading to this recovery handler.
2680 * Manually call the eeh failure check function.
2681 */
Benjamin Herrenschmidt12a89db2015-03-23 14:00:47 +11002682 struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002683 if (eeh_dev_check_failure(eehdev)) {
2684 /* The EEH mechanisms will handle the error and reset the
2685 * device if necessary.
2686 */
2687 return 1;
2688 }
2689#endif
2690 return 0;
2691}
2692
Jon Cooper74cd60a2013-09-16 14:18:51 +01002693static void efx_wait_for_bist_end(struct efx_nic *efx)
2694{
2695 int i;
2696
2697 for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
2698 if (efx_mcdi_poll_reboot(efx))
2699 goto out;
2700 msleep(BIST_WAIT_DELAY_MS);
2701 }
2702
2703 netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
2704out:
2705 /* Either way unset the BIST flag. If we found no reboot we probably
2706 * won't recover, but we should try.
2707 */
2708 efx->mc_bist_for_other_fn = false;
2709}
2710
Ben Hutchings8ceee662008-04-27 12:55:59 +01002711/* The worker thread exists so that code that cannot sleep can
2712 * schedule a reset for later.
2713 */
2714static void efx_reset_work(struct work_struct *data)
2715{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002716 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Alexandre Rames626950d2013-01-14 17:20:22 +00002717 unsigned long pending;
2718 enum reset_type method;
2719
2720 pending = ACCESS_ONCE(efx->reset_pending);
2721 method = fls(pending) - 1;
2722
Jon Cooper74cd60a2013-09-16 14:18:51 +01002723 if (method == RESET_TYPE_MC_BIST)
2724 efx_wait_for_bist_end(efx);
2725
Alexandre Rames626950d2013-01-14 17:20:22 +00002726 if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
2727 method == RESET_TYPE_RECOVER_OR_ALL) &&
2728 efx_try_recovery(efx))
2729 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002730
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002731 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00002732 return;
2733
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002734 rtnl_lock();
Ben Hutchings7153f622012-07-27 20:50:52 +01002735
2736 /* We checked the state in efx_schedule_reset() but it may
2737 * have changed by now. Now that we have the RTNL lock,
2738 * it cannot change again.
2739 */
2740 if (efx->state == STATE_READY)
Alexandre Rames626950d2013-01-14 17:20:22 +00002741 (void)efx_reset(efx, method);
Ben Hutchings7153f622012-07-27 20:50:52 +01002742
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002743 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002744}
2745
2746void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2747{
2748 enum reset_type method;
2749
Alexandre Rames626950d2013-01-14 17:20:22 +00002750 if (efx->state == STATE_RECOVERY) {
2751 netif_dbg(efx, drv, efx->net_dev,
2752 "recovering: skip scheduling %s reset\n",
2753 RESET_TYPE(type));
2754 return;
2755 }
2756
Ben Hutchings8ceee662008-04-27 12:55:59 +01002757 switch (type) {
2758 case RESET_TYPE_INVISIBLE:
2759 case RESET_TYPE_ALL:
Alexandre Rames626950d2013-01-14 17:20:22 +00002760 case RESET_TYPE_RECOVER_OR_ALL:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002761 case RESET_TYPE_WORLD:
2762 case RESET_TYPE_DISABLE:
Alexandre Rames626950d2013-01-14 17:20:22 +00002763 case RESET_TYPE_RECOVER_OR_DISABLE:
Jon Cooper087e9022015-05-20 11:11:35 +01002764 case RESET_TYPE_DATAPATH:
Jon Cooper74cd60a2013-09-16 14:18:51 +01002765 case RESET_TYPE_MC_BIST:
Edward Creee2835462014-04-16 19:27:48 +01002766 case RESET_TYPE_MCDI_TIMEOUT:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002767 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002768 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2769 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002770 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002771 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002772 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00002773 netif_dbg(efx, drv, efx->net_dev,
2774 "scheduling %s reset for %s\n",
2775 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002776 break;
2777 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002778
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002779 set_bit(method, &efx->reset_pending);
Ben Hutchings7153f622012-07-27 20:50:52 +01002780 smp_mb(); /* ensure we change reset_pending before checking state */
2781
2782 /* If we're not READY then just leave the flags set as the cue
2783 * to abort probing or reschedule the reset later.
2784 */
2785 if (ACCESS_ONCE(efx->state) != STATE_READY)
2786 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002787
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002788 /* efx_process_channel() will no longer read events once a
2789 * reset is scheduled. So switch back to poll'd MCDI completions. */
2790 efx_mcdi_mode_poll(efx);
2791
Steve Hodgson1ab00622008-12-12 21:33:02 -08002792 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002793}
2794
2795/**************************************************************************
2796 *
2797 * List of NICs we support
2798 *
2799 **************************************************************************/
2800
2801/* PCI device ID table */
Benoit Taine9baa3c32014-08-08 15:56:03 +02002802static const struct pci_device_id efx_pci_table[] = {
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002803 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2804 PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002805 .driver_data = (unsigned long) &falcon_a1_nic_type},
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002806 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2807 PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002808 .driver_data = (unsigned long) &falcon_b0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002809 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002810 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002811 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002812 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8127d662013-08-29 19:19:29 +01002813 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */
2814 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01002815 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1903), /* SFC9120 VF */
2816 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Mateusz Wrzesinski3b06a002014-07-14 08:38:49 +01002817 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923), /* SFC9140 PF */
2818 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Bert Kenwarddd248f12015-11-30 09:05:47 +00002819 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1923), /* SFC9140 VF */
2820 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
2821 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0a03), /* SFC9220 PF */
2822 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
2823 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1a03), /* SFC9220 VF */
2824 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002825 {0} /* end of list */
2826};
2827
2828/**************************************************************************
2829 *
Ben Hutchings37594332009-11-23 16:05:45 +00002830 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002831 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002832 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002833 * Needed so all function pointers are valid and do not have to be tested
2834 * before use
2835 *
2836 **************************************************************************/
2837int efx_port_dummy_op_int(struct efx_nic *efx)
2838{
2839 return 0;
2840}
2841void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002842
2843static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002844{
2845 return false;
2846}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002847
stephen hemminger6c8c2512011-04-14 05:50:12 +00002848static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002849 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002850 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002851 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002852 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002853};
2854
Ben Hutchings8ceee662008-04-27 12:55:59 +01002855/**************************************************************************
2856 *
2857 * Data housekeeping
2858 *
2859 **************************************************************************/
2860
2861/* This zeroes out and then fills in the invariants in a struct
2862 * efx_nic (including all sub-structures).
2863 */
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002864static int efx_init_struct(struct efx_nic *efx,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002865 struct pci_dev *pci_dev, struct net_device *net_dev)
2866{
Ben Hutchings46426102010-09-10 06:42:33 +00002867 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002868
2869 /* Initialise common structures */
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002870 INIT_LIST_HEAD(&efx->node);
2871 INIT_LIST_HEAD(&efx->secondary_list);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002872 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002873#ifdef CONFIG_SFC_MTD
2874 INIT_LIST_HEAD(&efx->mtd_list);
2875#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002876 INIT_WORK(&efx->reset_work, efx_reset_work);
2877 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002878 INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002879 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002880 efx->msg_enable = debug;
Ben Hutchingsf16aeea2012-07-27 19:31:16 +01002881 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002882 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002883
2884 efx->net_dev = net_dev;
Jon Cooper43a37392012-10-18 15:49:54 +01002885 efx->rx_prefix_size = efx->type->rx_prefix_size;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +04002886 efx->rx_ip_align =
2887 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
Jon Cooper43a37392012-10-18 15:49:54 +01002888 efx->rx_packet_hash_offset =
2889 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
Jon Cooperbd9a2652013-11-18 12:54:41 +00002890 efx->rx_packet_ts_offset =
2891 efx->type->rx_ts_offset - efx->type->rx_prefix_size;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002892 spin_lock_init(&efx->stats_lock);
2893 mutex_init(&efx->mac_lock);
2894 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002895 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002896 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002897 init_waitqueue_head(&efx->flush_wq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002898
2899 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002900 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2901 if (!efx->channel[i])
2902 goto fail;
Ben Hutchingsd8291182012-10-05 23:35:41 +01002903 efx->msi_context[i].efx = efx;
2904 efx->msi_context[i].index = i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002905 }
2906
Ben Hutchings8ceee662008-04-27 12:55:59 +01002907 /* Higher numbered interrupt modes are less capable! */
2908 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2909 interrupt_mode);
2910
Ben Hutchings6977dc62008-12-26 13:44:39 -08002911 /* Would be good to use the net_dev name, but we're too early */
2912 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2913 pci_name(pci_dev));
2914 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002915 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00002916 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002917
Ben Hutchings8ceee662008-04-27 12:55:59 +01002918 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00002919
2920fail:
2921 efx_fini_struct(efx);
2922 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002923}
2924
2925static void efx_fini_struct(struct efx_nic *efx)
2926{
Ben Hutchings8313aca2010-09-10 06:41:57 +00002927 int i;
2928
2929 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2930 kfree(efx->channel[i]);
2931
Ben Hutchingsef215e62013-12-05 20:13:22 +00002932 kfree(efx->vpd_sn);
2933
Ben Hutchings8ceee662008-04-27 12:55:59 +01002934 if (efx->workqueue) {
2935 destroy_workqueue(efx->workqueue);
2936 efx->workqueue = NULL;
2937 }
2938}
2939
Edward Creee4d112e2014-07-15 11:58:12 +01002940void efx_update_sw_stats(struct efx_nic *efx, u64 *stats)
2941{
2942 u64 n_rx_nodesc_trunc = 0;
2943 struct efx_channel *channel;
2944
2945 efx_for_each_channel(channel, efx)
2946 n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc;
2947 stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc;
2948 stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops);
2949}
2950
Ben Hutchings8ceee662008-04-27 12:55:59 +01002951/**************************************************************************
2952 *
2953 * PCI interface
2954 *
2955 **************************************************************************/
2956
2957/* Main body of final NIC shutdown code
2958 * This is called only at module unload (or hotplug removal).
2959 */
2960static void efx_pci_remove_main(struct efx_nic *efx)
2961{
Ben Hutchings7153f622012-07-27 20:50:52 +01002962 /* Flush reset_work. It can no longer be scheduled since we
2963 * are not READY.
2964 */
2965 BUG_ON(efx->state == STATE_READY);
2966 cancel_work_sync(&efx->reset_work);
2967
Ben Hutchingsd8291182012-10-05 23:35:41 +01002968 efx_disable_interrupts(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00002969 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002970 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002971 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002972 efx_fini_napi(efx);
2973 efx_remove_all(efx);
2974}
2975
2976/* Final NIC shutdown
Daniel Pieczko2a3fc312015-06-02 11:40:46 +01002977 * This is called only at module unload (or hotplug removal). A PF can call
2978 * this on its VFs to ensure they are unbound first.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002979 */
2980static void efx_pci_remove(struct pci_dev *pci_dev)
2981{
2982 struct efx_nic *efx;
2983
2984 efx = pci_get_drvdata(pci_dev);
2985 if (!efx)
2986 return;
2987
2988 /* Mark the NIC as fini, then stop the interface */
2989 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002990 efx_dissociate(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002991 dev_close(efx->net_dev);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002992 efx_disable_interrupts(efx);
Edward Creeea6bb992015-06-15 18:27:54 +01002993 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002994 rtnl_unlock();
2995
Shradha Shah7fa8d542015-05-06 00:55:13 +01002996 if (efx->type->sriov_fini)
2997 efx->type->sriov_fini(efx);
2998
Ben Hutchings8ceee662008-04-27 12:55:59 +01002999 efx_unregister_netdev(efx);
3000
Ben Hutchings7dde5962008-12-12 22:09:38 -08003001 efx_mtd_remove(efx);
3002
Ben Hutchings8ceee662008-04-27 12:55:59 +01003003 efx_pci_remove_main(efx);
3004
Ben Hutchings8ceee662008-04-27 12:55:59 +01003005 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003006 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003007
Ben Hutchings8ceee662008-04-27 12:55:59 +01003008 efx_fini_struct(efx);
3009 free_netdev(efx->net_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00003010
3011 pci_disable_pcie_error_reporting(pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003012};
3013
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003014/* NIC VPD information
3015 * Called during probe to display the part number of the
3016 * installed NIC. VPD is potentially very large but this should
3017 * always appear within the first 512 bytes.
3018 */
3019#define SFC_VPD_LEN 512
Ben Hutchingsef215e62013-12-05 20:13:22 +00003020static void efx_probe_vpd_strings(struct efx_nic *efx)
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003021{
3022 struct pci_dev *dev = efx->pci_dev;
3023 char vpd_data[SFC_VPD_LEN];
3024 ssize_t vpd_size;
Ben Hutchingsef215e62013-12-05 20:13:22 +00003025 int ro_start, ro_size, i, j;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003026
3027 /* Get the vpd data from the device */
3028 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
3029 if (vpd_size <= 0) {
3030 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
3031 return;
3032 }
3033
3034 /* Get the Read only section */
Ben Hutchingsef215e62013-12-05 20:13:22 +00003035 ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
3036 if (ro_start < 0) {
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003037 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
3038 return;
3039 }
3040
Ben Hutchingsef215e62013-12-05 20:13:22 +00003041 ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
3042 j = ro_size;
3043 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003044 if (i + j > vpd_size)
3045 j = vpd_size - i;
3046
3047 /* Get the Part number */
3048 i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
3049 if (i < 0) {
3050 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
3051 return;
3052 }
3053
3054 j = pci_vpd_info_field_size(&vpd_data[i]);
3055 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3056 if (i + j > vpd_size) {
3057 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
3058 return;
3059 }
3060
3061 netif_info(efx, drv, efx->net_dev,
3062 "Part Number : %.*s\n", j, &vpd_data[i]);
Ben Hutchingsef215e62013-12-05 20:13:22 +00003063
3064 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
3065 j = ro_size;
3066 i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN");
3067 if (i < 0) {
3068 netif_err(efx, drv, efx->net_dev, "Serial number not found\n");
3069 return;
3070 }
3071
3072 j = pci_vpd_info_field_size(&vpd_data[i]);
3073 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3074 if (i + j > vpd_size) {
3075 netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n");
3076 return;
3077 }
3078
3079 efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL);
3080 if (!efx->vpd_sn)
3081 return;
3082
3083 snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003084}
3085
3086
Ben Hutchings8ceee662008-04-27 12:55:59 +01003087/* Main body of NIC initialisation
3088 * This is called at module load (or hotplug insertion, theoretically).
3089 */
3090static int efx_pci_probe_main(struct efx_nic *efx)
3091{
3092 int rc;
3093
3094 /* Do start-of-day initialisation */
3095 rc = efx_probe_all(efx);
3096 if (rc)
3097 goto fail1;
3098
Ben Hutchingse8f14992010-12-07 19:47:34 +00003099 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003100
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003101 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003102 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003103 netif_err(efx, probe, efx->net_dev,
3104 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003105 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003106 }
3107
3108 rc = efx_init_port(efx);
3109 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003110 netif_err(efx, probe, efx->net_dev,
3111 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003112 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003113 }
3114
Ben Hutchings152b6a62009-11-29 03:43:56 +00003115 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003116 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00003117 goto fail5;
Jon Cooper261e4d92013-04-15 18:51:54 +01003118 rc = efx_enable_interrupts(efx);
3119 if (rc)
3120 goto fail6;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003121
3122 return 0;
3123
Jon Cooper261e4d92013-04-15 18:51:54 +01003124 fail6:
3125 efx_nic_fini_interrupt(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00003126 fail5:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003127 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003128 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003129 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003130 fail3:
3131 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003132 efx_remove_all(efx);
3133 fail1:
3134 return rc;
3135}
3136
3137/* NIC initialisation
3138 *
3139 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00003140 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003141 * sets up and registers the network devices with the kernel and hooks
3142 * the interrupt service routine. It does not prepare the device for
3143 * transmission; this is left to the first time one of the network
3144 * interfaces is brought up (i.e. efx_net_open).
3145 */
Bill Pemberton87d1fc12012-12-03 09:23:32 -05003146static int efx_pci_probe(struct pci_dev *pci_dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00003147 const struct pci_device_id *entry)
Ben Hutchings8ceee662008-04-27 12:55:59 +01003148{
Ben Hutchings8ceee662008-04-27 12:55:59 +01003149 struct net_device *net_dev;
3150 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003151 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003152
3153 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00003154 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
3155 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003156 if (!net_dev)
3157 return -ENOMEM;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003158 efx = netdev_priv(net_dev);
3159 efx->type = (const struct efx_nic_type *) entry->driver_data;
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +01003160 efx->fixed_features |= NETIF_F_HIGHDMA;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003161 net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +01003162 NETIF_F_TSO | NETIF_F_RXCSUM);
Tom Herbertc8cd0982015-12-14 11:19:44 -08003163 if (efx->type->offload_features & (NETIF_F_IPV6_CSUM | NETIF_F_HW_CSUM))
Ben Hutchings738a8f42009-11-29 15:16:05 +00003164 net_dev->features |= NETIF_F_TSO6;
Ben Hutchings285065632008-09-01 12:46:54 +01003165 /* Mask for features that also apply to VLAN devices */
Tom Herberta1882222015-12-14 11:19:43 -08003166 net_dev->vlan_features |= (NETIF_F_HW_CSUM | NETIF_F_SG |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01003167 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
3168 NETIF_F_RXCSUM);
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +01003169 net_dev->features |= efx->fixed_features;
3170 net_dev->hw_features = net_dev->features & ~efx->fixed_features;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003171 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003172 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003173 rc = efx_init_struct(efx, pci_dev, net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003174 if (rc)
3175 goto fail1;
3176
Ben Hutchings62776d02010-06-23 11:30:07 +00003177 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01003178 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003179
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01003180 if (!efx->type->is_vf)
3181 efx_probe_vpd_strings(efx);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003182
Ben Hutchings8ceee662008-04-27 12:55:59 +01003183 /* Set up basic I/O (BAR mappings etc) */
3184 rc = efx_init_io(efx);
3185 if (rc)
3186 goto fail2;
3187
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003188 rc = efx_pci_probe_main(efx);
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003189 if (rc)
3190 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08003191
Ben Hutchings8ceee662008-04-27 12:55:59 +01003192 rc = efx_register_netdev(efx);
3193 if (rc)
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003194 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003195
Shradha Shah7fa8d542015-05-06 00:55:13 +01003196 if (efx->type->sriov_init) {
3197 rc = efx->type->sriov_init(efx);
3198 if (rc)
3199 netif_err(efx, probe, efx->net_dev,
3200 "SR-IOV can't be enabled rc %d\n", rc);
3201 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003202
Ben Hutchings62776d02010-06-23 11:30:07 +00003203 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003204
Ben Hutchings7c431612012-01-27 17:23:58 +00003205 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003206 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003207 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003208 rtnl_unlock();
Bert Kenward09a04202015-12-23 08:58:15 +00003209 if (rc && rc != -EPERM)
Ben Hutchings7c431612012-01-27 17:23:58 +00003210 netif_warn(efx, probe, efx->net_dev,
3211 "failed to create MTDs (%d)\n", rc);
3212
Alexandre Rames626950d2013-01-14 17:20:22 +00003213 rc = pci_enable_pcie_error_reporting(pci_dev);
3214 if (rc && rc != -EINVAL)
Bert Kenward09a04202015-12-23 08:58:15 +00003215 netif_notice(efx, probe, efx->net_dev,
3216 "PCIE error reporting unavailable (%d).\n",
3217 rc);
Alexandre Rames626950d2013-01-14 17:20:22 +00003218
Ben Hutchings8ceee662008-04-27 12:55:59 +01003219 return 0;
3220
Ben Hutchings8ceee662008-04-27 12:55:59 +01003221 fail4:
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003222 efx_pci_remove_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003223 fail3:
3224 efx_fini_io(efx);
3225 fail2:
3226 efx_fini_struct(efx);
3227 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08003228 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00003229 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003230 free_netdev(net_dev);
3231 return rc;
3232}
3233
Shradha Shah834e23d2015-05-06 00:55:58 +01003234/* efx_pci_sriov_configure returns the actual number of Virtual Functions
3235 * enabled on success
3236 */
3237#ifdef CONFIG_SFC_SRIOV
3238static int efx_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
3239{
3240 int rc;
3241 struct efx_nic *efx = pci_get_drvdata(dev);
3242
3243 if (efx->type->sriov_configure) {
3244 rc = efx->type->sriov_configure(efx, num_vfs);
3245 if (rc)
3246 return rc;
3247 else
3248 return num_vfs;
3249 } else
3250 return -EOPNOTSUPP;
3251}
3252#endif
3253
Ben Hutchings89c758f2009-11-29 03:43:07 +00003254static int efx_pm_freeze(struct device *dev)
3255{
3256 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3257
Ben Hutchings61da0262012-07-27 19:35:39 +01003258 rtnl_lock();
3259
Ben Hutchings6032fb52012-07-27 19:35:47 +01003260 if (efx->state != STATE_DISABLED) {
3261 efx->state = STATE_UNINIT;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003262
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01003263 efx_device_detach_sync(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003264
Ben Hutchings6032fb52012-07-27 19:35:47 +01003265 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003266 efx_disable_interrupts(efx);
Ben Hutchings6032fb52012-07-27 19:35:47 +01003267 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003268
Ben Hutchings61da0262012-07-27 19:35:39 +01003269 rtnl_unlock();
3270
Ben Hutchings89c758f2009-11-29 03:43:07 +00003271 return 0;
3272}
3273
3274static int efx_pm_thaw(struct device *dev)
3275{
Jon Cooper261e4d92013-04-15 18:51:54 +01003276 int rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003277 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3278
Ben Hutchings61da0262012-07-27 19:35:39 +01003279 rtnl_lock();
3280
Ben Hutchings6032fb52012-07-27 19:35:47 +01003281 if (efx->state != STATE_DISABLED) {
Jon Cooper261e4d92013-04-15 18:51:54 +01003282 rc = efx_enable_interrupts(efx);
3283 if (rc)
3284 goto fail;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003285
Ben Hutchings6032fb52012-07-27 19:35:47 +01003286 mutex_lock(&efx->mac_lock);
3287 efx->phy_op->reconfigure(efx);
3288 mutex_unlock(&efx->mac_lock);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003289
Ben Hutchings6032fb52012-07-27 19:35:47 +01003290 efx_start_all(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003291
Ben Hutchings6032fb52012-07-27 19:35:47 +01003292 netif_device_attach(efx->net_dev);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003293
Ben Hutchings6032fb52012-07-27 19:35:47 +01003294 efx->state = STATE_READY;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003295
Ben Hutchings6032fb52012-07-27 19:35:47 +01003296 efx->type->resume_wol(efx);
3297 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003298
Ben Hutchings61da0262012-07-27 19:35:39 +01003299 rtnl_unlock();
3300
Steve Hodgson319ba642010-06-01 11:17:24 +00003301 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
3302 queue_work(reset_workqueue, &efx->reset_work);
3303
Ben Hutchings89c758f2009-11-29 03:43:07 +00003304 return 0;
Jon Cooper261e4d92013-04-15 18:51:54 +01003305
3306fail:
3307 rtnl_unlock();
3308
3309 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003310}
3311
3312static int efx_pm_poweroff(struct device *dev)
3313{
3314 struct pci_dev *pci_dev = to_pci_dev(dev);
3315 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3316
3317 efx->type->fini(efx);
3318
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003319 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003320
3321 pci_save_state(pci_dev);
3322 return pci_set_power_state(pci_dev, PCI_D3hot);
3323}
3324
3325/* Used for both resume and restore */
3326static int efx_pm_resume(struct device *dev)
3327{
3328 struct pci_dev *pci_dev = to_pci_dev(dev);
3329 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3330 int rc;
3331
3332 rc = pci_set_power_state(pci_dev, PCI_D0);
3333 if (rc)
3334 return rc;
3335 pci_restore_state(pci_dev);
3336 rc = pci_enable_device(pci_dev);
3337 if (rc)
3338 return rc;
3339 pci_set_master(efx->pci_dev);
3340 rc = efx->type->reset(efx, RESET_TYPE_ALL);
3341 if (rc)
3342 return rc;
3343 rc = efx->type->init(efx);
3344 if (rc)
3345 return rc;
Jon Cooper261e4d92013-04-15 18:51:54 +01003346 rc = efx_pm_thaw(dev);
3347 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003348}
3349
3350static int efx_pm_suspend(struct device *dev)
3351{
3352 int rc;
3353
3354 efx_pm_freeze(dev);
3355 rc = efx_pm_poweroff(dev);
3356 if (rc)
3357 efx_pm_resume(dev);
3358 return rc;
3359}
3360
Ben Hutchings18e83e42012-01-05 19:05:20 +00003361static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00003362 .suspend = efx_pm_suspend,
3363 .resume = efx_pm_resume,
3364 .freeze = efx_pm_freeze,
3365 .thaw = efx_pm_thaw,
3366 .poweroff = efx_pm_poweroff,
3367 .restore = efx_pm_resume,
3368};
3369
Alexandre Rames626950d2013-01-14 17:20:22 +00003370/* A PCI error affecting this device was detected.
3371 * At this point MMIO and DMA may be disabled.
3372 * Stop the software path and request a slot reset.
3373 */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003374static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3375 enum pci_channel_state state)
Alexandre Rames626950d2013-01-14 17:20:22 +00003376{
3377 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3378 struct efx_nic *efx = pci_get_drvdata(pdev);
3379
3380 if (state == pci_channel_io_perm_failure)
3381 return PCI_ERS_RESULT_DISCONNECT;
3382
3383 rtnl_lock();
3384
3385 if (efx->state != STATE_DISABLED) {
3386 efx->state = STATE_RECOVERY;
3387 efx->reset_pending = 0;
3388
3389 efx_device_detach_sync(efx);
3390
3391 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003392 efx_disable_interrupts(efx);
Alexandre Rames626950d2013-01-14 17:20:22 +00003393
3394 status = PCI_ERS_RESULT_NEED_RESET;
3395 } else {
3396 /* If the interface is disabled we don't want to do anything
3397 * with it.
3398 */
3399 status = PCI_ERS_RESULT_RECOVERED;
3400 }
3401
3402 rtnl_unlock();
3403
3404 pci_disable_device(pdev);
3405
3406 return status;
3407}
3408
Joe Perchesdbedd442015-03-06 20:49:12 -08003409/* Fake a successful reset, which will be performed later in efx_io_resume. */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003410static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
Alexandre Rames626950d2013-01-14 17:20:22 +00003411{
3412 struct efx_nic *efx = pci_get_drvdata(pdev);
3413 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3414 int rc;
3415
3416 if (pci_enable_device(pdev)) {
3417 netif_err(efx, hw, efx->net_dev,
3418 "Cannot re-enable PCI device after reset.\n");
3419 status = PCI_ERS_RESULT_DISCONNECT;
3420 }
3421
3422 rc = pci_cleanup_aer_uncorrect_error_status(pdev);
3423 if (rc) {
3424 netif_err(efx, hw, efx->net_dev,
3425 "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc);
3426 /* Non-fatal error. Continue. */
3427 }
3428
3429 return status;
3430}
3431
3432/* Perform the actual reset and resume I/O operations. */
3433static void efx_io_resume(struct pci_dev *pdev)
3434{
3435 struct efx_nic *efx = pci_get_drvdata(pdev);
3436 int rc;
3437
3438 rtnl_lock();
3439
3440 if (efx->state == STATE_DISABLED)
3441 goto out;
3442
3443 rc = efx_reset(efx, RESET_TYPE_ALL);
3444 if (rc) {
3445 netif_err(efx, hw, efx->net_dev,
3446 "efx_reset failed after PCI error (%d)\n", rc);
3447 } else {
3448 efx->state = STATE_READY;
3449 netif_dbg(efx, hw, efx->net_dev,
3450 "Done resetting and resuming IO after PCI error.\n");
3451 }
3452
3453out:
3454 rtnl_unlock();
3455}
3456
3457/* For simplicity and reliability, we always require a slot reset and try to
3458 * reset the hardware when a pci error affecting the device is detected.
3459 * We leave both the link_reset and mmio_enabled callback unimplemented:
3460 * with our request for slot reset the mmio_enabled callback will never be
3461 * called, and the link_reset callback is not used by AER or EEH mechanisms.
3462 */
Julia Lawallc300366b2015-11-14 11:06:57 +01003463static const struct pci_error_handlers efx_err_handlers = {
Alexandre Rames626950d2013-01-14 17:20:22 +00003464 .error_detected = efx_io_error_detected,
3465 .slot_reset = efx_io_slot_reset,
3466 .resume = efx_io_resume,
3467};
3468
Ben Hutchings8ceee662008-04-27 12:55:59 +01003469static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00003470 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003471 .id_table = efx_pci_table,
3472 .probe = efx_pci_probe,
3473 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00003474 .driver.pm = &efx_pm_ops,
Alexandre Rames626950d2013-01-14 17:20:22 +00003475 .err_handler = &efx_err_handlers,
Shradha Shah834e23d2015-05-06 00:55:58 +01003476#ifdef CONFIG_SFC_SRIOV
3477 .sriov_configure = efx_pci_sriov_configure,
3478#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003479};
3480
3481/**************************************************************************
3482 *
3483 * Kernel module interface
3484 *
3485 *************************************************************************/
3486
3487module_param(interrupt_mode, uint, 0444);
3488MODULE_PARM_DESC(interrupt_mode,
3489 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
3490
3491static int __init efx_init_module(void)
3492{
3493 int rc;
3494
3495 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
3496
3497 rc = register_netdevice_notifier(&efx_netdev_notifier);
3498 if (rc)
3499 goto err_notifier;
3500
Shradha Shah7fa8d542015-05-06 00:55:13 +01003501#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003502 rc = efx_init_sriov();
3503 if (rc)
3504 goto err_sriov;
Shradha Shah7fa8d542015-05-06 00:55:13 +01003505#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003506
Steve Hodgson1ab00622008-12-12 21:33:02 -08003507 reset_workqueue = create_singlethread_workqueue("sfc_reset");
3508 if (!reset_workqueue) {
3509 rc = -ENOMEM;
3510 goto err_reset;
3511 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003512
3513 rc = pci_register_driver(&efx_pci_driver);
3514 if (rc < 0)
3515 goto err_pci;
3516
3517 return 0;
3518
3519 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08003520 destroy_workqueue(reset_workqueue);
3521 err_reset:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003522#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003523 efx_fini_sriov();
3524 err_sriov:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003525#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003526 unregister_netdevice_notifier(&efx_netdev_notifier);
3527 err_notifier:
3528 return rc;
3529}
3530
3531static void __exit efx_exit_module(void)
3532{
3533 printk(KERN_INFO "Solarflare NET driver unloading\n");
3534
3535 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003536 destroy_workqueue(reset_workqueue);
Shradha Shah7fa8d542015-05-06 00:55:13 +01003537#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003538 efx_fini_sriov();
Shradha Shah7fa8d542015-05-06 00:55:13 +01003539#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003540 unregister_netdevice_notifier(&efx_netdev_notifier);
3541
3542}
3543
3544module_init(efx_init_module);
3545module_exit(efx_exit_module);
3546
Ben Hutchings906bb262009-11-29 15:16:19 +00003547MODULE_AUTHOR("Solarflare Communications and "
3548 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings6a350fd2014-02-12 19:00:07 +00003549MODULE_DESCRIPTION("Solarflare network driver");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003550MODULE_LICENSE("GPL");
3551MODULE_DEVICE_TABLE(pci, efx_pci_table);