blob: 649bc508fa4b9ea42aa08331c50335e1a51f9259 [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 */
Bert Kenward539de7c2016-08-11 13:02:09 +0100284static void efx_update_irq_mod(struct efx_nic *efx, struct efx_channel *channel)
285{
286 int step = efx->irq_mod_step_us;
287
288 if (channel->irq_mod_score < irq_adapt_low_thresh) {
289 if (channel->irq_moderation_us > step) {
290 channel->irq_moderation_us -= step;
291 efx->type->push_irq_moderation(channel);
292 }
293 } else if (channel->irq_mod_score > irq_adapt_high_thresh) {
294 if (channel->irq_moderation_us <
295 efx->irq_rx_moderation_us) {
296 channel->irq_moderation_us += step;
297 efx->type->push_irq_moderation(channel);
298 }
299 }
300
301 channel->irq_count = 0;
302 channel->irq_mod_score = 0;
303}
304
Ben Hutchings8ceee662008-04-27 12:55:59 +0100305static int efx_poll(struct napi_struct *napi, int budget)
306{
307 struct efx_channel *channel =
308 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000309 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000310 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100311
Alexandre Rames36763262014-07-22 14:03:25 +0100312 if (!efx_channel_lock_napi(channel))
313 return budget;
314
Ben Hutchings62776d02010-06-23 11:30:07 +0000315 netif_vdbg(efx, intr, efx->net_dev,
316 "channel %d NAPI poll executing on CPU %d\n",
317 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100318
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000319 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100320
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000321 if (spent < budget) {
Ben Hutchings9d9a6972012-02-10 23:01:48 +0000322 if (efx_channel_has_rx_queue(channel) &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000323 efx->irq_rx_adaptive &&
324 unlikely(++channel->irq_count == 1000)) {
Bert Kenward539de7c2016-08-11 13:02:09 +0100325 efx_update_irq_mod(efx, channel);
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000326 }
327
Ben Hutchings64d8ad62011-01-05 00:50:41 +0000328 efx_filter_rfs_expire(channel);
329
Ben Hutchings8ceee662008-04-27 12:55:59 +0100330 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800331 * only wait for napi_complete(), this isn't a problem
Ben Hutchings514bedb2012-10-05 19:30:16 +0100332 * since efx_nic_eventq_read_ack() will have no effect if
Ben Hutchings8ceee662008-04-27 12:55:59 +0100333 * interrupts have already been disabled.
334 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800335 napi_complete(napi);
Ben Hutchings514bedb2012-10-05 19:30:16 +0100336 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100337 }
338
Alexandre Rames36763262014-07-22 14:03:25 +0100339 efx_channel_unlock_napi(channel);
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000340 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100341}
342
Ben Hutchings8ceee662008-04-27 12:55:59 +0100343/* Create event queue
344 * Event queue memory allocations are done only once. If the channel
345 * is reset, the memory buffer will be reused; this guards against
346 * errors during channel reset and also simplifies interrupt handling.
347 */
348static int efx_probe_eventq(struct efx_channel *channel)
349{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000350 struct efx_nic *efx = channel->efx;
351 unsigned long entries;
352
Ben Hutchings86ee5302012-01-09 19:51:22 +0000353 netif_dbg(efx, probe, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000354 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100355
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000356 /* Build an event queue with room for one event per tx and rx buffer,
357 * plus some extra for link state events and MCDI completions. */
358 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
359 EFX_BUG_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
360 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
361
Ben Hutchings152b6a62009-11-29 03:43:56 +0000362 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100363}
364
365/* Prepare channel's event queue */
Jon Cooper261e4d92013-04-15 18:51:54 +0100366static int efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100367{
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100368 struct efx_nic *efx = channel->efx;
Jon Cooper261e4d92013-04-15 18:51:54 +0100369 int rc;
370
371 EFX_WARN_ON_PARANOID(channel->eventq_init);
372
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100373 netif_dbg(efx, drv, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000374 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100375
Jon Cooper261e4d92013-04-15 18:51:54 +0100376 rc = efx_nic_init_eventq(channel);
377 if (rc == 0) {
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100378 efx->type->push_irq_moderation(channel);
Jon Cooper261e4d92013-04-15 18:51:54 +0100379 channel->eventq_read_ptr = 0;
380 channel->eventq_init = true;
381 }
382 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100383}
384
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000385/* Enable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100386void efx_start_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000387{
388 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
389 "chan %d start event queue\n", channel->channel);
390
Ben Hutchings514bedb2012-10-05 19:30:16 +0100391 /* Make sure the NAPI handler sees the enabled flag set */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000392 channel->enabled = true;
393 smp_wmb();
394
Alexandre Rames36763262014-07-22 14:03:25 +0100395 efx_channel_enable(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000396 napi_enable(&channel->napi_str);
397 efx_nic_eventq_read_ack(channel);
398}
399
400/* Disable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100401void efx_stop_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000402{
403 if (!channel->enabled)
404 return;
405
406 napi_disable(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +0100407 while (!efx_channel_disable(channel))
408 usleep_range(1000, 20000);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000409 channel->enabled = false;
410}
411
Ben Hutchings8ceee662008-04-27 12:55:59 +0100412static void efx_fini_eventq(struct efx_channel *channel)
413{
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100414 if (!channel->eventq_init)
415 return;
416
Ben Hutchings62776d02010-06-23 11:30:07 +0000417 netif_dbg(channel->efx, drv, channel->efx->net_dev,
418 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100419
Ben Hutchings152b6a62009-11-29 03:43:56 +0000420 efx_nic_fini_eventq(channel);
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100421 channel->eventq_init = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100422}
423
424static void efx_remove_eventq(struct efx_channel *channel)
425{
Ben Hutchings62776d02010-06-23 11:30:07 +0000426 netif_dbg(channel->efx, drv, channel->efx->net_dev,
427 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100428
Ben Hutchings152b6a62009-11-29 03:43:56 +0000429 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100430}
431
432/**************************************************************************
433 *
434 * Channel handling
435 *
436 *************************************************************************/
437
Ben Hutchings7f967c02012-02-13 23:45:02 +0000438/* Allocate and initialise a channel structure. */
Ben Hutchings46426102010-09-10 06:42:33 +0000439static struct efx_channel *
440efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
441{
442 struct efx_channel *channel;
443 struct efx_rx_queue *rx_queue;
444 struct efx_tx_queue *tx_queue;
445 int j;
446
Ben Hutchings7f967c02012-02-13 23:45:02 +0000447 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
448 if (!channel)
449 return NULL;
Ben Hutchings46426102010-09-10 06:42:33 +0000450
Ben Hutchings7f967c02012-02-13 23:45:02 +0000451 channel->efx = efx;
452 channel->channel = i;
453 channel->type = &efx_default_channel_type;
Ben Hutchings46426102010-09-10 06:42:33 +0000454
Ben Hutchings7f967c02012-02-13 23:45:02 +0000455 for (j = 0; j < EFX_TXQ_TYPES; j++) {
456 tx_queue = &channel->tx_queue[j];
457 tx_queue->efx = efx;
458 tx_queue->queue = i * EFX_TXQ_TYPES + j;
459 tx_queue->channel = channel;
Ben Hutchings46426102010-09-10 06:42:33 +0000460 }
461
Ben Hutchings46426102010-09-10 06:42:33 +0000462 rx_queue = &channel->rx_queue;
463 rx_queue->efx = efx;
464 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
465 (unsigned long)rx_queue);
466
467 return channel;
468}
469
Ben Hutchings7f967c02012-02-13 23:45:02 +0000470/* Allocate and initialise a channel structure, copying parameters
471 * (but not resources) from an old channel structure.
472 */
473static struct efx_channel *
474efx_copy_channel(const struct efx_channel *old_channel)
475{
476 struct efx_channel *channel;
477 struct efx_rx_queue *rx_queue;
478 struct efx_tx_queue *tx_queue;
479 int j;
480
481 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
482 if (!channel)
483 return NULL;
484
485 *channel = *old_channel;
486
487 channel->napi_dev = NULL;
Bert Kenward46d054f2016-11-11 15:56:51 +0000488 INIT_HLIST_NODE(&channel->napi_str.napi_hash_node);
489 channel->napi_str.napi_id = 0;
490 channel->napi_str.state = 0;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000491 memset(&channel->eventq, 0, sizeof(channel->eventq));
492
493 for (j = 0; j < EFX_TXQ_TYPES; j++) {
494 tx_queue = &channel->tx_queue[j];
495 if (tx_queue->channel)
496 tx_queue->channel = channel;
497 tx_queue->buffer = NULL;
498 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
499 }
500
501 rx_queue = &channel->rx_queue;
502 rx_queue->buffer = NULL;
503 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
504 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
505 (unsigned long)rx_queue);
506
507 return channel;
508}
509
Ben Hutchings8ceee662008-04-27 12:55:59 +0100510static int efx_probe_channel(struct efx_channel *channel)
511{
512 struct efx_tx_queue *tx_queue;
513 struct efx_rx_queue *rx_queue;
514 int rc;
515
Ben Hutchings62776d02010-06-23 11:30:07 +0000516 netif_dbg(channel->efx, probe, channel->efx->net_dev,
517 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100518
Ben Hutchings7f967c02012-02-13 23:45:02 +0000519 rc = channel->type->pre_probe(channel);
520 if (rc)
521 goto fail;
522
Ben Hutchings8ceee662008-04-27 12:55:59 +0100523 rc = efx_probe_eventq(channel);
524 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000525 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100526
527 efx_for_each_channel_tx_queue(tx_queue, channel) {
528 rc = efx_probe_tx_queue(tx_queue);
529 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000530 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100531 }
532
533 efx_for_each_channel_rx_queue(rx_queue, channel) {
534 rc = efx_probe_rx_queue(rx_queue);
535 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000536 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100537 }
538
Ben Hutchings8ceee662008-04-27 12:55:59 +0100539 return 0;
540
Ben Hutchings7f967c02012-02-13 23:45:02 +0000541fail:
542 efx_remove_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100543 return rc;
544}
545
Ben Hutchings7f967c02012-02-13 23:45:02 +0000546static void
547efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
548{
549 struct efx_nic *efx = channel->efx;
550 const char *type;
551 int number;
552
553 number = channel->channel;
554 if (efx->tx_channel_offset == 0) {
555 type = "";
556 } else if (channel->channel < efx->tx_channel_offset) {
557 type = "-rx";
558 } else {
559 type = "-tx";
560 number -= efx->tx_channel_offset;
561 }
562 snprintf(buf, len, "%s%s-%d", efx->name, type, number);
563}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100564
Ben Hutchings56536e92008-12-12 21:37:02 -0800565static void efx_set_channel_names(struct efx_nic *efx)
566{
567 struct efx_channel *channel;
Ben Hutchings56536e92008-12-12 21:37:02 -0800568
Ben Hutchings7f967c02012-02-13 23:45:02 +0000569 efx_for_each_channel(channel, efx)
570 channel->type->get_name(channel,
Ben Hutchingsd8291182012-10-05 23:35:41 +0100571 efx->msi_context[channel->channel].name,
572 sizeof(efx->msi_context[0].name));
Ben Hutchings56536e92008-12-12 21:37:02 -0800573}
574
Ben Hutchings46426102010-09-10 06:42:33 +0000575static int efx_probe_channels(struct efx_nic *efx)
576{
577 struct efx_channel *channel;
578 int rc;
579
580 /* Restart special buffer allocation */
581 efx->next_buffer_table = 0;
582
Ben Hutchingsc92aaff2012-02-21 23:22:00 +0000583 /* Probe channels in reverse, so that any 'extra' channels
584 * use the start of the buffer table. This allows the traffic
585 * channels to be resized without moving them or wasting the
586 * entries before them.
587 */
588 efx_for_each_channel_rev(channel, efx) {
Ben Hutchings46426102010-09-10 06:42:33 +0000589 rc = efx_probe_channel(channel);
590 if (rc) {
591 netif_err(efx, probe, efx->net_dev,
592 "failed to create channel %d\n",
593 channel->channel);
594 goto fail;
595 }
596 }
597 efx_set_channel_names(efx);
598
599 return 0;
600
601fail:
602 efx_remove_channels(efx);
603 return rc;
604}
605
Ben Hutchings8ceee662008-04-27 12:55:59 +0100606/* Channels are shutdown and reinitialised whilst the NIC is running
607 * to propagate configuration changes (mtu, checksum offload), or
608 * to clear hardware error conditions
609 */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000610static void efx_start_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100611{
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100612 netdev_features_t old_features = efx->net_dev->features;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000613 bool old_rx_scatter = efx->rx_scatter;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100614 struct efx_tx_queue *tx_queue;
615 struct efx_rx_queue *rx_queue;
616 struct efx_channel *channel;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000617 size_t rx_buf_len;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100618
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100619 /* Calculate the rx buffer allocation parameters required to
620 * support the current MTU, including padding for header
621 * alignment and overruns.
622 */
Jon Cooper43a37392012-10-18 15:49:54 +0100623 efx->rx_dma_len = (efx->rx_prefix_size +
Ben Hutchings272baee2013-01-29 23:33:14 +0000624 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
625 efx->type->rx_buffer_padding);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000626 rx_buf_len = (sizeof(struct efx_rx_page_state) +
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400627 efx->rx_ip_align + efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000628 if (rx_buf_len <= PAGE_SIZE) {
Jon Coopere8c68c02013-03-08 10:18:28 +0000629 efx->rx_scatter = efx->type->always_rx_scatter;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000630 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000631 } else if (efx->type->can_rx_scatter) {
Ben Hutchings950c54d2013-05-13 12:01:22 +0000632 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000633 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
Ben Hutchings950c54d2013-05-13 12:01:22 +0000634 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
635 EFX_RX_BUF_ALIGNMENT) >
636 PAGE_SIZE);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000637 efx->rx_scatter = true;
638 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
639 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000640 } else {
641 efx->rx_scatter = false;
642 efx->rx_buffer_order = get_order(rx_buf_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000643 }
644
Daniel Pieczko1648a232013-02-13 10:54:41 +0000645 efx_rx_config_page_split(efx);
646 if (efx->rx_buffer_order)
647 netif_dbg(efx, drv, efx->net_dev,
648 "RX buf len=%u; page order=%u batch=%u\n",
649 efx->rx_dma_len, efx->rx_buffer_order,
650 efx->rx_pages_per_batch);
651 else
652 netif_dbg(efx, drv, efx->net_dev,
653 "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
654 efx->rx_dma_len, efx->rx_page_buf_step,
655 efx->rx_bufs_per_page, efx->rx_pages_per_batch);
Daniel Pieczko27689352013-02-13 10:54:41 +0000656
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100657 /* Restore previously fixed features in hw_features and remove
658 * features which are fixed now
659 */
660 efx->net_dev->hw_features |= efx->net_dev->features;
661 efx->net_dev->hw_features &= ~efx->fixed_features;
662 efx->net_dev->features |= efx->fixed_features;
663 if (efx->net_dev->features != old_features)
664 netdev_features_change(efx->net_dev);
665
Jon Coopere8c68c02013-03-08 10:18:28 +0000666 /* RX filters may also have scatter-enabled flags */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000667 if (efx->rx_scatter != old_rx_scatter)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000668 efx->type->filter_update_rx_scatter(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100669
Ben Hutchings14bf7182012-05-22 01:27:58 +0100670 /* We must keep at least one descriptor in a TX ring empty.
671 * We could avoid this when the queue size does not exactly
672 * match the hardware ring size, but it's not that important.
673 * Therefore we stop the queue when one more skb might fill
674 * the ring completely. We wake it when half way back to
675 * empty.
676 */
677 efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
678 efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
679
Ben Hutchings8ceee662008-04-27 12:55:59 +0100680 /* Initialise the channels */
681 efx_for_each_channel(channel, efx) {
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100682 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100683 efx_init_tx_queue(tx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100684 atomic_inc(&efx->active_queues);
685 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100686
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000687 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100688 efx_init_rx_queue(rx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100689 atomic_inc(&efx->active_queues);
Jon Coopercce28792013-10-02 11:04:14 +0100690 efx_stop_eventq(channel);
691 efx_fast_push_rx_descriptors(rx_queue, false);
692 efx_start_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000693 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100694
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000695 WARN_ON(channel->rx_pkt_n_frags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100696 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000697
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000698 efx_ptp_start_datapath(efx);
699
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000700 if (netif_device_present(efx->net_dev))
701 netif_tx_wake_all_queues(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100702}
703
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000704static void efx_stop_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100705{
706 struct efx_channel *channel;
707 struct efx_tx_queue *tx_queue;
708 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100709 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100710
711 EFX_ASSERT_RESET_SERIALISED(efx);
712 BUG_ON(efx->port_enabled);
713
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000714 efx_ptp_stop_datapath(efx);
715
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100716 /* Stop RX refill */
717 efx_for_each_channel(channel, efx) {
718 efx_for_each_channel_rx_queue(rx_queue, channel)
719 rx_queue->refill_enabled = false;
720 }
721
Ben Hutchings8ceee662008-04-27 12:55:59 +0100722 efx_for_each_channel(channel, efx) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000723 /* RX packet processing is pipelined, so wait for the
724 * NAPI handler to complete. At least event queue 0
725 * might be kept active by non-data events, so don't
726 * use napi_synchronize() but actually disable NAPI
727 * temporarily.
728 */
729 if (efx_channel_has_rx_queue(channel)) {
730 efx_stop_eventq(channel);
731 efx_start_eventq(channel);
732 }
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100733 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100734
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100735 rc = efx->type->fini_dmaq(efx);
736 if (rc && EFX_WORKAROUND_7803(efx)) {
737 /* Schedule a reset to recover from the flush failure. The
738 * descriptor caches reference memory we're about to free,
739 * but falcon_reconfigure_mac_wrapper() won't reconnect
740 * the MACs because of the pending reset.
741 */
742 netif_err(efx, drv, efx->net_dev,
743 "Resetting to recover from flush failure\n");
744 efx_schedule_reset(efx, RESET_TYPE_ALL);
745 } else if (rc) {
746 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
747 } else {
748 netif_dbg(efx, drv, efx->net_dev,
749 "successfully flushed all queues\n");
750 }
751
752 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100753 efx_for_each_channel_rx_queue(rx_queue, channel)
754 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000755 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100756 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100757 }
758}
759
760static void efx_remove_channel(struct efx_channel *channel)
761{
762 struct efx_tx_queue *tx_queue;
763 struct efx_rx_queue *rx_queue;
764
Ben Hutchings62776d02010-06-23 11:30:07 +0000765 netif_dbg(channel->efx, drv, channel->efx->net_dev,
766 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100767
768 efx_for_each_channel_rx_queue(rx_queue, channel)
769 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000770 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100771 efx_remove_tx_queue(tx_queue);
772 efx_remove_eventq(channel);
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100773 channel->type->post_remove(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100774}
775
Ben Hutchings46426102010-09-10 06:42:33 +0000776static void efx_remove_channels(struct efx_nic *efx)
777{
778 struct efx_channel *channel;
779
780 efx_for_each_channel(channel, efx)
781 efx_remove_channel(channel);
782}
783
784int
785efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
786{
787 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
788 u32 old_rxq_entries, old_txq_entries;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000789 unsigned i, next_buffer_table = 0;
Jon Cooper261e4d92013-04-15 18:51:54 +0100790 int rc, rc2;
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100791
792 rc = efx_check_disabled(efx);
793 if (rc)
794 return rc;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000795
796 /* Not all channels should be reallocated. We must avoid
797 * reallocating their buffer table entries.
798 */
799 efx_for_each_channel(channel, efx) {
800 struct efx_rx_queue *rx_queue;
801 struct efx_tx_queue *tx_queue;
802
803 if (channel->type->copy)
804 continue;
805 next_buffer_table = max(next_buffer_table,
806 channel->eventq.index +
807 channel->eventq.entries);
808 efx_for_each_channel_rx_queue(rx_queue, channel)
809 next_buffer_table = max(next_buffer_table,
810 rx_queue->rxd.index +
811 rx_queue->rxd.entries);
812 efx_for_each_channel_tx_queue(tx_queue, channel)
813 next_buffer_table = max(next_buffer_table,
814 tx_queue->txd.index +
815 tx_queue->txd.entries);
816 }
Ben Hutchings46426102010-09-10 06:42:33 +0000817
Ben Hutchings29c69a42013-01-28 19:01:06 +0000818 efx_device_detach_sync(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000819 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100820 efx_soft_disable_interrupts(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000821
Ben Hutchings7f967c02012-02-13 23:45:02 +0000822 /* Clone channels (where possible) */
Ben Hutchings46426102010-09-10 06:42:33 +0000823 memset(other_channel, 0, sizeof(other_channel));
824 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000825 channel = efx->channel[i];
826 if (channel->type->copy)
827 channel = channel->type->copy(channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000828 if (!channel) {
829 rc = -ENOMEM;
830 goto out;
831 }
832 other_channel[i] = channel;
833 }
834
835 /* Swap entry counts and channel pointers */
836 old_rxq_entries = efx->rxq_entries;
837 old_txq_entries = efx->txq_entries;
838 efx->rxq_entries = rxq_entries;
839 efx->txq_entries = txq_entries;
840 for (i = 0; i < efx->n_channels; i++) {
841 channel = efx->channel[i];
842 efx->channel[i] = other_channel[i];
843 other_channel[i] = channel;
844 }
845
Ben Hutchings7f967c02012-02-13 23:45:02 +0000846 /* Restart buffer table allocation */
847 efx->next_buffer_table = next_buffer_table;
Ben Hutchings46426102010-09-10 06:42:33 +0000848
Ben Hutchingse8f14992010-12-07 19:47:34 +0000849 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000850 channel = efx->channel[i];
851 if (!channel->type->copy)
852 continue;
853 rc = efx_probe_channel(channel);
854 if (rc)
855 goto rollback;
856 efx_init_napi_channel(efx->channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000857 }
Ben Hutchings46426102010-09-10 06:42:33 +0000858
Ben Hutchings7f967c02012-02-13 23:45:02 +0000859out:
860 /* Destroy unused channel structures */
861 for (i = 0; i < efx->n_channels; i++) {
862 channel = other_channel[i];
863 if (channel && channel->type->copy) {
864 efx_fini_napi_channel(channel);
865 efx_remove_channel(channel);
866 kfree(channel);
867 }
868 }
869
Jon Cooper261e4d92013-04-15 18:51:54 +0100870 rc2 = efx_soft_enable_interrupts(efx);
871 if (rc2) {
872 rc = rc ? rc : rc2;
873 netif_err(efx, drv, efx->net_dev,
874 "unable to restart interrupts on channel reallocation\n");
875 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
876 } else {
877 efx_start_all(efx);
878 netif_device_attach(efx->net_dev);
879 }
Ben Hutchings46426102010-09-10 06:42:33 +0000880 return rc;
881
882rollback:
883 /* Swap back */
884 efx->rxq_entries = old_rxq_entries;
885 efx->txq_entries = old_txq_entries;
886 for (i = 0; i < efx->n_channels; i++) {
887 channel = efx->channel[i];
888 efx->channel[i] = other_channel[i];
889 other_channel[i] = channel;
890 }
891 goto out;
892}
893
Steve Hodgson90d683a2010-06-01 11:19:39 +0000894void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100895{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000896 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100897}
898
Ben Hutchings7f967c02012-02-13 23:45:02 +0000899static const struct efx_channel_type efx_default_channel_type = {
900 .pre_probe = efx_channel_dummy_op_int,
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100901 .post_remove = efx_channel_dummy_op_void,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000902 .get_name = efx_get_channel_name,
903 .copy = efx_copy_channel,
904 .keep_eventq = false,
905};
906
907int efx_channel_dummy_op_int(struct efx_channel *channel)
908{
909 return 0;
910}
911
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100912void efx_channel_dummy_op_void(struct efx_channel *channel)
913{
914}
915
Ben Hutchings8ceee662008-04-27 12:55:59 +0100916/**************************************************************************
917 *
918 * Port handling
919 *
920 **************************************************************************/
921
922/* This ensures that the kernel is kept informed (via
923 * netif_carrier_on/off) of the link status, and also maintains the
924 * link status's stop on the port's TX queue.
925 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000926void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100927{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000928 struct efx_link_state *link_state = &efx->link_state;
929
Ben Hutchings8ceee662008-04-27 12:55:59 +0100930 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
931 * that no events are triggered between unregister_netdev() and the
932 * driver unloading. A more general condition is that NETDEV_CHANGE
933 * can only be generated between NETDEV_UP and NETDEV_DOWN */
934 if (!netif_running(efx->net_dev))
935 return;
936
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000937 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100938 efx->n_link_state_changes++;
939
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000940 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100941 netif_carrier_on(efx->net_dev);
942 else
943 netif_carrier_off(efx->net_dev);
944 }
945
946 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000947 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000948 netif_info(efx, link, efx->net_dev,
Ben Hutchings964e6132012-11-19 23:08:22 +0000949 "link up at %uMbps %s-duplex (MTU %d)\n",
Ben Hutchings62776d02010-06-23 11:30:07 +0000950 link_state->speed, link_state->fd ? "full" : "half",
Ben Hutchings964e6132012-11-19 23:08:22 +0000951 efx->net_dev->mtu);
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000952 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000953 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100954}
955
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000956void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
957{
958 efx->link_advertising = advertising;
959 if (advertising) {
960 if (advertising & ADVERTISED_Pause)
961 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
962 else
963 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
964 if (advertising & ADVERTISED_Asym_Pause)
965 efx->wanted_fc ^= EFX_FC_TX;
966 }
967}
968
David S. Millerb56269462011-05-17 17:53:22 -0400969void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000970{
971 efx->wanted_fc = wanted_fc;
972 if (efx->link_advertising) {
973 if (wanted_fc & EFX_FC_RX)
974 efx->link_advertising |= (ADVERTISED_Pause |
975 ADVERTISED_Asym_Pause);
976 else
977 efx->link_advertising &= ~(ADVERTISED_Pause |
978 ADVERTISED_Asym_Pause);
979 if (wanted_fc & EFX_FC_TX)
980 efx->link_advertising ^= ADVERTISED_Asym_Pause;
981 }
982}
983
Ben Hutchings115122a2009-03-04 09:52:52 +0000984static void efx_fini_port(struct efx_nic *efx);
985
Edward Cree0d322412015-05-20 11:10:03 +0100986/* We assume that efx->type->reconfigure_mac will always try to sync RX
987 * filters and therefore needs to read-lock the filter table against freeing
988 */
989void efx_mac_reconfigure(struct efx_nic *efx)
990{
991 down_read(&efx->filter_sem);
992 efx->type->reconfigure_mac(efx);
993 up_read(&efx->filter_sem);
994}
995
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000996/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
997 * the MAC appropriately. All other PHY configuration changes are pushed
998 * through phy_op->set_settings(), and pushed asynchronously to the MAC
999 * through efx_monitor().
1000 *
1001 * Callers must hold the mac_lock
1002 */
1003int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001004{
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001005 enum efx_phy_mode phy_mode;
1006 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001007
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001008 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001009
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001010 /* Disable PHY transmit in mac level loopbacks */
1011 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001012 if (LOOPBACK_INTERNAL(efx))
1013 efx->phy_mode |= PHY_MODE_TX_DISABLED;
1014 else
1015 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001016
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001017 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001018
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001019 if (rc)
1020 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001021
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001022 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001023}
1024
1025/* Reinitialise the MAC to pick up new PHY settings, even if the port is
1026 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001027int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001028{
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001029 int rc;
1030
Ben Hutchings8ceee662008-04-27 12:55:59 +01001031 EFX_ASSERT_RESET_SERIALISED(efx);
1032
1033 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001034 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001035 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001036
1037 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001038}
1039
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001040/* Asynchronous work item for changing MAC promiscuity and multicast
1041 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
1042 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001043static void efx_mac_work(struct work_struct *data)
1044{
1045 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
1046
1047 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +01001048 if (efx->port_enabled)
Edward Cree0d322412015-05-20 11:10:03 +01001049 efx_mac_reconfigure(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001050 mutex_unlock(&efx->mac_lock);
1051}
1052
Ben Hutchings8ceee662008-04-27 12:55:59 +01001053static int efx_probe_port(struct efx_nic *efx)
1054{
1055 int rc;
1056
Ben Hutchings62776d02010-06-23 11:30:07 +00001057 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001058
Steve Hodgsonff3b00a2009-12-23 13:46:36 +00001059 if (phy_flash_cfg)
1060 efx->phy_mode = PHY_MODE_SPECIAL;
1061
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001062 /* Connect up MAC/PHY operations table */
1063 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001064 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +00001065 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001066
Ben Hutchingse332bcb2011-12-20 01:22:51 +00001067 /* Initialise MAC address to permanent address */
Edward Creecd84ff42014-03-07 18:27:41 +00001068 ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001069
1070 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001071}
1072
1073static int efx_init_port(struct efx_nic *efx)
1074{
1075 int rc;
1076
Ben Hutchings62776d02010-06-23 11:30:07 +00001077 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001078
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001079 mutex_lock(&efx->mac_lock);
1080
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001081 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001082 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001083 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001084
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001085 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001086
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001087 /* Reconfigure the MAC before creating dma queues (required for
1088 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Edward Cree0d322412015-05-20 11:10:03 +01001089 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001090
1091 /* Ensure the PHY advertises the correct flow control settings */
1092 rc = efx->phy_op->reconfigure(efx);
Edward Cree267d9d72015-05-06 00:59:18 +01001093 if (rc && rc != -EPERM)
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001094 goto fail2;
1095
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001096 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001097 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001098
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001099fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001100 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001101fail1:
1102 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001103 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001104}
1105
Ben Hutchings8ceee662008-04-27 12:55:59 +01001106static void efx_start_port(struct efx_nic *efx)
1107{
Ben Hutchings62776d02010-06-23 11:30:07 +00001108 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001109 BUG_ON(efx->port_enabled);
1110
1111 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001112 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001113
Ben Hutchingsd615c032013-10-08 17:33:20 +01001114 /* Ensure MAC ingress/egress is enabled */
Edward Cree0d322412015-05-20 11:10:03 +01001115 efx_mac_reconfigure(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001116
Ben Hutchings8ceee662008-04-27 12:55:59 +01001117 mutex_unlock(&efx->mac_lock);
1118}
1119
Ben Hutchingsd615c032013-10-08 17:33:20 +01001120/* Cancel work for MAC reconfiguration, periodic hardware monitoring
1121 * and the async self-test, wait for them to finish and prevent them
1122 * being scheduled again. This doesn't cover online resets, which
1123 * should only be cancelled when removing the device.
1124 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001125static void efx_stop_port(struct efx_nic *efx)
1126{
Ben Hutchings62776d02010-06-23 11:30:07 +00001127 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001128
Ben Hutchingsd615c032013-10-08 17:33:20 +01001129 EFX_ASSERT_RESET_SERIALISED(efx);
1130
Ben Hutchings8ceee662008-04-27 12:55:59 +01001131 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001132 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001133 mutex_unlock(&efx->mac_lock);
1134
1135 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001136 netif_addr_lock_bh(efx->net_dev);
1137 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchingsd615c032013-10-08 17:33:20 +01001138
1139 cancel_delayed_work_sync(&efx->monitor_work);
1140 efx_selftest_async_cancel(efx);
1141 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001142}
1143
1144static void efx_fini_port(struct efx_nic *efx)
1145{
Ben Hutchings62776d02010-06-23 11:30:07 +00001146 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001147
1148 if (!efx->port_initialized)
1149 return;
1150
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001151 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001152 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001153
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001154 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001155 efx_link_status_changed(efx);
1156}
1157
1158static void efx_remove_port(struct efx_nic *efx)
1159{
Ben Hutchings62776d02010-06-23 11:30:07 +00001160 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001161
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001162 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001163}
1164
1165/**************************************************************************
1166 *
1167 * NIC handling
1168 *
1169 **************************************************************************/
1170
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01001171static LIST_HEAD(efx_primary_list);
1172static LIST_HEAD(efx_unassociated_list);
1173
1174static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right)
1175{
1176 return left->type == right->type &&
1177 left->vpd_sn && right->vpd_sn &&
1178 !strcmp(left->vpd_sn, right->vpd_sn);
1179}
1180
1181static void efx_associate(struct efx_nic *efx)
1182{
1183 struct efx_nic *other, *next;
1184
1185 if (efx->primary == efx) {
1186 /* Adding primary function; look for secondaries */
1187
1188 netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n");
1189 list_add_tail(&efx->node, &efx_primary_list);
1190
1191 list_for_each_entry_safe(other, next, &efx_unassociated_list,
1192 node) {
1193 if (efx_same_controller(efx, other)) {
1194 list_del(&other->node);
1195 netif_dbg(other, probe, other->net_dev,
1196 "moving to secondary list of %s %s\n",
1197 pci_name(efx->pci_dev),
1198 efx->net_dev->name);
1199 list_add_tail(&other->node,
1200 &efx->secondary_list);
1201 other->primary = efx;
1202 }
1203 }
1204 } else {
1205 /* Adding secondary function; look for primary */
1206
1207 list_for_each_entry(other, &efx_primary_list, node) {
1208 if (efx_same_controller(efx, other)) {
1209 netif_dbg(efx, probe, efx->net_dev,
1210 "adding to secondary list of %s %s\n",
1211 pci_name(other->pci_dev),
1212 other->net_dev->name);
1213 list_add_tail(&efx->node,
1214 &other->secondary_list);
1215 efx->primary = other;
1216 return;
1217 }
1218 }
1219
1220 netif_dbg(efx, probe, efx->net_dev,
1221 "adding to unassociated list\n");
1222 list_add_tail(&efx->node, &efx_unassociated_list);
1223 }
1224}
1225
1226static void efx_dissociate(struct efx_nic *efx)
1227{
1228 struct efx_nic *other, *next;
1229
1230 list_del(&efx->node);
1231 efx->primary = NULL;
1232
1233 list_for_each_entry_safe(other, next, &efx->secondary_list, node) {
1234 list_del(&other->node);
1235 netif_dbg(other, probe, other->net_dev,
1236 "moving to unassociated list\n");
1237 list_add_tail(&other->node, &efx_unassociated_list);
1238 other->primary = NULL;
1239 }
1240}
1241
Ben Hutchings8ceee662008-04-27 12:55:59 +01001242/* This configures the PCI device to enable I/O and DMA. */
1243static int efx_init_io(struct efx_nic *efx)
1244{
1245 struct pci_dev *pci_dev = efx->pci_dev;
1246 dma_addr_t dma_mask = efx->type->max_dma_mask;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001247 unsigned int mem_map_size = efx->type->mem_map_size(efx);
Shradha Shah02246a72015-05-06 00:58:14 +01001248 int rc, bar;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001249
Ben Hutchings62776d02010-06-23 11:30:07 +00001250 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001251
Shradha Shah02246a72015-05-06 00:58:14 +01001252 bar = efx->type->mem_bar;
1253
Ben Hutchings8ceee662008-04-27 12:55:59 +01001254 rc = pci_enable_device(pci_dev);
1255 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001256 netif_err(efx, probe, efx->net_dev,
1257 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001258 goto fail1;
1259 }
1260
1261 pci_set_master(pci_dev);
1262
1263 /* Set the PCI DMA mask. Try all possibilities from our
1264 * genuine mask down to 32 bits, because some architectures
1265 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1266 * masks event though they reject 46 bit masks.
1267 */
1268 while (dma_mask > 0x7fffffffUL) {
Christoph Hellwig8722b8f2015-11-10 14:45:42 -08001269 rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
1270 if (rc == 0)
1271 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001272 dma_mask >>= 1;
1273 }
1274 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001275 netif_err(efx, probe, efx->net_dev,
1276 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001277 goto fail2;
1278 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001279 netif_dbg(efx, probe, efx->net_dev,
1280 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001281
Shradha Shah02246a72015-05-06 00:58:14 +01001282 efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
1283 rc = pci_request_region(pci_dev, bar, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001284 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001285 netif_err(efx, probe, efx->net_dev,
1286 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001287 rc = -EIO;
1288 goto fail3;
1289 }
Ben Hutchingsb1057982012-09-19 00:56:47 +01001290 efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001291 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001292 netif_err(efx, probe, efx->net_dev,
1293 "could not map memory BAR at %llx+%x\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001294 (unsigned long long)efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001295 rc = -ENOMEM;
1296 goto fail4;
1297 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001298 netif_dbg(efx, probe, efx->net_dev,
1299 "memory BAR at %llx+%x (virtual %p)\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001300 (unsigned long long)efx->membase_phys, mem_map_size,
1301 efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001302
1303 return 0;
1304
1305 fail4:
Shradha Shah02246a72015-05-06 00:58:14 +01001306 pci_release_region(efx->pci_dev, bar);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001307 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001308 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001309 fail2:
1310 pci_disable_device(efx->pci_dev);
1311 fail1:
1312 return rc;
1313}
1314
1315static void efx_fini_io(struct efx_nic *efx)
1316{
Shradha Shah02246a72015-05-06 00:58:14 +01001317 int bar;
1318
Ben Hutchings62776d02010-06-23 11:30:07 +00001319 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001320
1321 if (efx->membase) {
1322 iounmap(efx->membase);
1323 efx->membase = NULL;
1324 }
1325
1326 if (efx->membase_phys) {
Shradha Shah02246a72015-05-06 00:58:14 +01001327 bar = efx->type->mem_bar;
1328 pci_release_region(efx->pci_dev, bar);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001329 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001330 }
1331
Daniel Pieczko6598dad2015-06-02 11:41:00 +01001332 /* Don't disable bus-mastering if VFs are assigned */
1333 if (!pci_vfs_assigned(efx->pci_dev))
1334 pci_disable_device(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001335}
1336
Jon Cooper267c0152015-05-06 00:59:38 +01001337void efx_set_default_rx_indir_table(struct efx_nic *efx)
1338{
1339 size_t i;
1340
1341 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
1342 efx->rx_indir_table[i] =
1343 ethtool_rxfh_indir_default(i, efx->rss_spread);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001344}
1345
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001346static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
Ben Hutchings46123d02008-09-01 12:47:33 +01001347{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001348 cpumask_var_t thread_mask;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001349 unsigned int count;
Ben Hutchings46123d02008-09-01 12:47:33 +01001350 int cpu;
1351
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001352 if (rss_cpus) {
1353 count = rss_cpus;
1354 } else {
1355 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1356 netif_warn(efx, probe, efx->net_dev,
1357 "RSS disabled due to allocation failure\n");
1358 return 1;
Ben Hutchings46123d02008-09-01 12:47:33 +01001359 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001360
1361 count = 0;
1362 for_each_online_cpu(cpu) {
1363 if (!cpumask_test_cpu(cpu, thread_mask)) {
1364 ++count;
1365 cpumask_or(thread_mask, thread_mask,
Bartosz Golaszewski06931e62015-05-26 15:11:28 +02001366 topology_sibling_cpumask(cpu));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001367 }
1368 }
1369
1370 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001371 }
1372
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001373 /* If RSS is requested for the PF *and* VFs then we can't write RSS
1374 * table entries that are inaccessible to VFs
1375 */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001376#ifdef CONFIG_SFC_SRIOV
1377 if (efx->type->sriov_wanted) {
1378 if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1379 count > efx_vf_size(efx)) {
1380 netif_warn(efx, probe, efx->net_dev,
1381 "Reducing number of RSS channels from %u to %u for "
1382 "VF support. Increase vf-msix-limit to use more "
1383 "channels on the PF.\n",
1384 count, efx_vf_size(efx));
1385 count = efx_vf_size(efx);
1386 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001387 }
Shradha Shah7fa8d542015-05-06 00:55:13 +01001388#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001389
Ben Hutchings46123d02008-09-01 12:47:33 +01001390 return count;
1391}
1392
1393/* Probe the number and type of interrupts we are able to obtain, and
1394 * the resulting numbers of channels and RX queues.
1395 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001396static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001397{
Ben Hutchings7f967c02012-02-13 23:45:02 +00001398 unsigned int extra_channels = 0;
1399 unsigned int i, j;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001400 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001401
Ben Hutchings7f967c02012-02-13 23:45:02 +00001402 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1403 if (efx->extra_channel_type[i])
1404 ++extra_channels;
1405
Ben Hutchings8ceee662008-04-27 12:55:59 +01001406 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001407 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001408 unsigned int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001409
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001410 n_channels = efx_wanted_parallelism(efx);
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001411 if (efx_separate_tx_channels)
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001412 n_channels *= 2;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001413 n_channels += extra_channels;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001414 n_channels = min(n_channels, efx->max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001415
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001416 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001417 xentries[i].entry = i;
Alexander Gordeev184603d2014-02-18 11:12:00 +01001418 rc = pci_enable_msix_range(efx->pci_dev,
1419 xentries, 1, n_channels);
1420 if (rc < 0) {
1421 /* Fall back to single channel MSI */
1422 efx->interrupt_mode = EFX_INT_MODE_MSI;
1423 netif_err(efx, drv, efx->net_dev,
1424 "could not enable MSI-X\n");
1425 } else if (rc < n_channels) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001426 netif_err(efx, drv, efx->net_dev,
1427 "WARNING: Insufficient MSI-X vectors"
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001428 " available (%d < %u).\n", rc, n_channels);
Ben Hutchings62776d02010-06-23 11:30:07 +00001429 netif_err(efx, drv, efx->net_dev,
1430 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001431 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001432 }
1433
Alexander Gordeev184603d2014-02-18 11:12:00 +01001434 if (rc > 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001435 efx->n_channels = n_channels;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001436 if (n_channels > extra_channels)
1437 n_channels -= extra_channels;
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001438 if (efx_separate_tx_channels) {
1439 efx->n_tx_channels = min(max(n_channels / 2,
1440 1U),
1441 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001442 efx->n_rx_channels = max(n_channels -
1443 efx->n_tx_channels,
1444 1U);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001445 } else {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001446 efx->n_tx_channels = min(n_channels,
1447 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001448 efx->n_rx_channels = n_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001449 }
Ben Hutchings7f967c02012-02-13 23:45:02 +00001450 for (i = 0; i < efx->n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001451 efx_get_channel(efx, i)->irq =
1452 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001453 }
1454 }
1455
1456 /* Try single interrupt MSI */
1457 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001458 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001459 efx->n_rx_channels = 1;
1460 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001461 rc = pci_enable_msi(efx->pci_dev);
1462 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001463 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001464 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001465 netif_err(efx, drv, efx->net_dev,
1466 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001467 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1468 }
1469 }
1470
1471 /* Assume legacy interrupts */
1472 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001473 efx->n_channels = 1 + (efx_separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001474 efx->n_rx_channels = 1;
1475 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001476 efx->legacy_irq = efx->pci_dev->irq;
1477 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001478
Ben Hutchings7f967c02012-02-13 23:45:02 +00001479 /* Assign extra channels if possible */
1480 j = efx->n_channels;
1481 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1482 if (!efx->extra_channel_type[i])
1483 continue;
1484 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1485 efx->n_channels <= extra_channels) {
1486 efx->extra_channel_type[i]->handle_no_channel(efx);
1487 } else {
1488 --j;
1489 efx_get_channel(efx, j)->type =
1490 efx->extra_channel_type[i];
1491 }
1492 }
1493
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001494 /* RSS might be usable on VFs even if it is disabled on the PF */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001495#ifdef CONFIG_SFC_SRIOV
1496 if (efx->type->sriov_wanted) {
1497 efx->rss_spread = ((efx->n_rx_channels > 1 ||
1498 !efx->type->sriov_wanted(efx)) ?
1499 efx->n_rx_channels : efx_vf_size(efx));
1500 return 0;
1501 }
1502#endif
1503 efx->rss_spread = efx->n_rx_channels;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001504
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001505 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001506}
1507
Jon Cooper261e4d92013-04-15 18:51:54 +01001508static int efx_soft_enable_interrupts(struct efx_nic *efx)
Ben Hutchingsd8291182012-10-05 23:35:41 +01001509{
Jon Cooper261e4d92013-04-15 18:51:54 +01001510 struct efx_channel *channel, *end_channel;
1511 int rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001512
1513 BUG_ON(efx->state == STATE_DISABLED);
1514
1515 efx->irq_soft_enabled = true;
1516 smp_wmb();
1517
1518 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001519 if (!channel->type->keep_eventq) {
1520 rc = efx_init_eventq(channel);
1521 if (rc)
1522 goto fail;
1523 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001524 efx_start_eventq(channel);
1525 }
1526
1527 efx_mcdi_mode_event(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01001528
1529 return 0;
1530fail:
1531 end_channel = channel;
1532 efx_for_each_channel(channel, efx) {
1533 if (channel == end_channel)
1534 break;
1535 efx_stop_eventq(channel);
1536 if (!channel->type->keep_eventq)
1537 efx_fini_eventq(channel);
1538 }
1539
1540 return rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001541}
1542
1543static void efx_soft_disable_interrupts(struct efx_nic *efx)
1544{
1545 struct efx_channel *channel;
1546
1547 if (efx->state == STATE_DISABLED)
1548 return;
1549
1550 efx_mcdi_mode_poll(efx);
1551
1552 efx->irq_soft_enabled = false;
1553 smp_wmb();
1554
1555 if (efx->legacy_irq)
1556 synchronize_irq(efx->legacy_irq);
1557
1558 efx_for_each_channel(channel, efx) {
1559 if (channel->irq)
1560 synchronize_irq(channel->irq);
1561
1562 efx_stop_eventq(channel);
1563 if (!channel->type->keep_eventq)
1564 efx_fini_eventq(channel);
1565 }
Ben Hutchingscade7152013-08-27 23:12:31 +01001566
1567 /* Flush the asynchronous MCDI request queue */
1568 efx_mcdi_flush_async(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01001569}
1570
Jon Cooper261e4d92013-04-15 18:51:54 +01001571static int efx_enable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001572{
Jon Cooper261e4d92013-04-15 18:51:54 +01001573 struct efx_channel *channel, *end_channel;
1574 int rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001575
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001576 BUG_ON(efx->state == STATE_DISABLED);
1577
Alexandre Ramesb28405b2013-03-21 16:41:43 +00001578 if (efx->eeh_disabled_legacy_irq) {
1579 enable_irq(efx->legacy_irq);
1580 efx->eeh_disabled_legacy_irq = false;
1581 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001582
Ben Hutchings86094f72013-08-21 19:51:04 +01001583 efx->type->irq_enable_master(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001584
1585 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001586 if (channel->type->keep_eventq) {
1587 rc = efx_init_eventq(channel);
1588 if (rc)
1589 goto fail;
1590 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001591 }
1592
Jon Cooper261e4d92013-04-15 18:51:54 +01001593 rc = efx_soft_enable_interrupts(efx);
1594 if (rc)
1595 goto fail;
1596
1597 return 0;
1598
1599fail:
1600 end_channel = channel;
1601 efx_for_each_channel(channel, efx) {
1602 if (channel == end_channel)
1603 break;
1604 if (channel->type->keep_eventq)
1605 efx_fini_eventq(channel);
1606 }
1607
1608 efx->type->irq_disable_non_ev(efx);
1609
1610 return rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001611}
1612
Ben Hutchingsd8291182012-10-05 23:35:41 +01001613static void efx_disable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001614{
1615 struct efx_channel *channel;
1616
Ben Hutchingsd8291182012-10-05 23:35:41 +01001617 efx_soft_disable_interrupts(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001618
1619 efx_for_each_channel(channel, efx) {
Ben Hutchingsd8291182012-10-05 23:35:41 +01001620 if (channel->type->keep_eventq)
Ben Hutchings7f967c02012-02-13 23:45:02 +00001621 efx_fini_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001622 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001623
Ben Hutchings86094f72013-08-21 19:51:04 +01001624 efx->type->irq_disable_non_ev(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001625}
1626
Ben Hutchings8ceee662008-04-27 12:55:59 +01001627static void efx_remove_interrupts(struct efx_nic *efx)
1628{
1629 struct efx_channel *channel;
1630
1631 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001632 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001633 channel->irq = 0;
1634 pci_disable_msi(efx->pci_dev);
1635 pci_disable_msix(efx->pci_dev);
1636
1637 /* Remove legacy interrupt */
1638 efx->legacy_irq = 0;
1639}
1640
Ben Hutchings8831da72008-09-01 12:47:48 +01001641static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001642{
Ben Hutchings602a5322011-05-16 17:32:39 +01001643 struct efx_channel *channel;
1644 struct efx_tx_queue *tx_queue;
1645
Ben Hutchings97653432011-01-12 18:26:56 +00001646 efx->tx_channel_offset =
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001647 efx_separate_tx_channels ?
1648 efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001649
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001650 /* We need to mark which channels really have RX and TX
1651 * queues, and adjust the TX queue numbers if we have separate
Ben Hutchings602a5322011-05-16 17:32:39 +01001652 * RX-only and TX-only channels.
1653 */
1654 efx_for_each_channel(channel, efx) {
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001655 if (channel->channel < efx->n_rx_channels)
1656 channel->rx_queue.core_index = channel->channel;
1657 else
1658 channel->rx_queue.core_index = -1;
1659
Ben Hutchings602a5322011-05-16 17:32:39 +01001660 efx_for_each_channel_tx_queue(tx_queue, channel)
1661 tx_queue->queue -= (efx->tx_channel_offset *
1662 EFX_TXQ_TYPES);
1663 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001664}
1665
1666static int efx_probe_nic(struct efx_nic *efx)
1667{
1668 int rc;
1669
Ben Hutchings62776d02010-06-23 11:30:07 +00001670 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001671
1672 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001673 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001674 if (rc)
1675 return rc;
1676
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001677 do {
1678 if (!efx->max_channels || !efx->max_tx_channels) {
1679 netif_err(efx, drv, efx->net_dev,
1680 "Insufficient resources to allocate"
1681 " any channels\n");
1682 rc = -ENOSPC;
1683 goto fail1;
1684 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001685
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001686 /* Determine the number of channels and queues by trying
1687 * to hook in MSI-X interrupts.
1688 */
1689 rc = efx_probe_interrupts(efx);
1690 if (rc)
1691 goto fail1;
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001692
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001693 efx_set_channels(efx);
1694
1695 /* dimension_resources can fail with EAGAIN */
1696 rc = efx->type->dimension_resources(efx);
1697 if (rc != 0 && rc != -EAGAIN)
1698 goto fail2;
1699
1700 if (rc == -EAGAIN)
1701 /* try again with new max_channels */
1702 efx_remove_interrupts(efx);
1703
1704 } while (rc == -EAGAIN);
Ben Hutchings28e47c42012-02-15 01:58:49 +00001705
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001706 if (efx->n_channels > 1)
Jon Cooper267c0152015-05-06 00:59:38 +01001707 netdev_rss_key_fill(&efx->rx_hash_key,
1708 sizeof(efx->rx_hash_key));
1709 efx_set_default_rx_indir_table(efx);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001710
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001711 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1712 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001713
1714 /* Initialise the interrupt moderation settings */
Bert Kenward539de7c2016-08-11 13:02:09 +01001715 efx->irq_mod_step_us = DIV_ROUND_UP(efx->timer_quantum_ns, 1000);
Ben Hutchings9e393b32011-09-05 07:43:04 +00001716 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1717 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001718
1719 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001720
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001721fail2:
1722 efx_remove_interrupts(efx);
1723fail1:
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001724 efx->type->remove(efx);
1725 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001726}
1727
1728static void efx_remove_nic(struct efx_nic *efx)
1729{
Ben Hutchings62776d02010-06-23 11:30:07 +00001730 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001731
1732 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001733 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001734}
1735
Ben Hutchingsadd72472012-11-08 01:46:53 +00001736static int efx_probe_filters(struct efx_nic *efx)
1737{
1738 int rc;
1739
1740 spin_lock_init(&efx->filter_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001741 init_rwsem(&efx->filter_sem);
Martin Habetsd2489532016-06-15 17:48:49 +01001742 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001743 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001744 rc = efx->type->filter_table_probe(efx);
1745 if (rc)
Edward Cree0d322412015-05-20 11:10:03 +01001746 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001747
1748#ifdef CONFIG_RFS_ACCEL
1749 if (efx->type->offload_features & NETIF_F_NTUPLE) {
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001750 struct efx_channel *channel;
1751 int i, success = 1;
1752
1753 efx_for_each_channel(channel, efx) {
1754 channel->rps_flow_id =
1755 kcalloc(efx->type->max_rx_ip_filters,
1756 sizeof(*channel->rps_flow_id),
1757 GFP_KERNEL);
1758 if (!channel->rps_flow_id)
1759 success = 0;
1760 else
1761 for (i = 0;
1762 i < efx->type->max_rx_ip_filters;
1763 ++i)
1764 channel->rps_flow_id[i] =
1765 RPS_FLOW_ID_INVALID;
1766 }
1767
1768 if (!success) {
1769 efx_for_each_channel(channel, efx)
1770 kfree(channel->rps_flow_id);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001771 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001772 rc = -ENOMEM;
1773 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001774 }
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001775
1776 efx->rps_expire_index = efx->rps_expire_channel = 0;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001777 }
1778#endif
Edward Cree0d322412015-05-20 11:10:03 +01001779out_unlock:
1780 up_write(&efx->filter_sem);
Martin Habetsd2489532016-06-15 17:48:49 +01001781 mutex_unlock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001782 return rc;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001783}
1784
1785static void efx_remove_filters(struct efx_nic *efx)
1786{
1787#ifdef CONFIG_RFS_ACCEL
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001788 struct efx_channel *channel;
1789
1790 efx_for_each_channel(channel, efx)
1791 kfree(channel->rps_flow_id);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001792#endif
Edward Cree0d322412015-05-20 11:10:03 +01001793 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001794 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001795 up_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001796}
1797
1798static void efx_restore_filters(struct efx_nic *efx)
1799{
Edward Cree0d322412015-05-20 11:10:03 +01001800 down_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001801 efx->type->filter_table_restore(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001802 up_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001803}
1804
Ben Hutchings8ceee662008-04-27 12:55:59 +01001805/**************************************************************************
1806 *
1807 * NIC startup/shutdown
1808 *
1809 *************************************************************************/
1810
1811static int efx_probe_all(struct efx_nic *efx)
1812{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001813 int rc;
1814
Ben Hutchings8ceee662008-04-27 12:55:59 +01001815 rc = efx_probe_nic(efx);
1816 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001817 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001818 goto fail1;
1819 }
1820
Ben Hutchings8ceee662008-04-27 12:55:59 +01001821 rc = efx_probe_port(efx);
1822 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001823 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001824 goto fail2;
1825 }
1826
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00001827 BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
1828 if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
1829 rc = -EINVAL;
1830 goto fail3;
1831 }
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001832 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001833
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001834#ifdef CONFIG_SFC_SRIOV
1835 rc = efx->type->vswitching_probe(efx);
1836 if (rc) /* not fatal; the PF will still work fine */
1837 netif_warn(efx, probe, efx->net_dev,
1838 "failed to setup vswitching rc=%d;"
1839 " VFs may not function\n", rc);
1840#endif
1841
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001842 rc = efx_probe_filters(efx);
1843 if (rc) {
1844 netif_err(efx, probe, efx->net_dev,
1845 "failed to create filter tables\n");
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001846 goto fail4;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001847 }
1848
Ben Hutchings7f967c02012-02-13 23:45:02 +00001849 rc = efx_probe_channels(efx);
1850 if (rc)
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001851 goto fail5;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001852
Ben Hutchings8ceee662008-04-27 12:55:59 +01001853 return 0;
1854
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001855 fail5:
Ben Hutchings7f967c02012-02-13 23:45:02 +00001856 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001857 fail4:
1858#ifdef CONFIG_SFC_SRIOV
1859 efx->type->vswitching_remove(efx);
1860#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001861 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001862 efx_remove_port(efx);
1863 fail2:
1864 efx_remove_nic(efx);
1865 fail1:
1866 return rc;
1867}
1868
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001869/* If the interface is supposed to be running but is not, start
1870 * the hardware and software data path, regular activity for the port
1871 * (MAC statistics, link polling, etc.) and schedule the port to be
1872 * reconfigured. Interrupts must already be enabled. This function
1873 * is safe to call multiple times, so long as the NIC is not disabled.
1874 * Requires the RTNL lock.
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001875 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001876static void efx_start_all(struct efx_nic *efx)
1877{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001878 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001879 BUG_ON(efx->state == STATE_DISABLED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001880
1881 /* Check that it is appropriate to restart the interface. All
1882 * of these flags are safe to read under just the rtnl lock */
Edward Creee2835462014-04-16 19:27:48 +01001883 if (efx->port_enabled || !netif_running(efx->net_dev) ||
1884 efx->reset_pending)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001885 return;
1886
Ben Hutchings8ceee662008-04-27 12:55:59 +01001887 efx_start_port(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001888 efx_start_datapath(efx);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001889
Alexandre Rames626950d2013-01-14 17:20:22 +00001890 /* Start the hardware monitor if there is one */
1891 if (efx->type->monitor != NULL)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001892 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1893 efx_monitor_interval);
Alexandre Rames626950d2013-01-14 17:20:22 +00001894
1895 /* If link state detection is normally event-driven, we have
1896 * to poll now because we could have missed a change
1897 */
1898 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) {
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001899 mutex_lock(&efx->mac_lock);
1900 if (efx->phy_op->poll(efx))
1901 efx_link_status_changed(efx);
1902 mutex_unlock(&efx->mac_lock);
1903 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001904
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001905 efx->type->start_stats(efx);
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001906 efx->type->pull_stats(efx);
1907 spin_lock_bh(&efx->stats_lock);
1908 efx->type->update_stats(efx, NULL, NULL);
1909 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001910}
1911
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001912/* Quiesce the hardware and software data path, and regular activity
1913 * for the port without bringing the link down. Safe to call multiple
1914 * times with the NIC in almost any state, but interrupts should be
1915 * enabled. Requires the RTNL lock.
1916 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001917static void efx_stop_all(struct efx_nic *efx)
1918{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001919 EFX_ASSERT_RESET_SERIALISED(efx);
1920
1921 /* port_enabled can be read safely under the rtnl lock */
1922 if (!efx->port_enabled)
1923 return;
1924
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001925 /* update stats before we go down so we can accurately count
1926 * rx_nodesc_drops
1927 */
1928 efx->type->pull_stats(efx);
1929 spin_lock_bh(&efx->stats_lock);
1930 efx->type->update_stats(efx, NULL, NULL);
1931 spin_unlock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001932 efx->type->stop_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001933 efx_stop_port(efx);
1934
Ben Hutchings29c69a42013-01-28 19:01:06 +00001935 /* Stop the kernel transmit interface. This is only valid if
1936 * the device is stopped or detached; otherwise the watchdog
1937 * may fire immediately.
1938 */
1939 WARN_ON(netif_running(efx->net_dev) &&
1940 netif_device_present(efx->net_dev));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001941 netif_tx_disable(efx->net_dev);
1942
1943 efx_stop_datapath(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001944}
1945
1946static void efx_remove_all(struct efx_nic *efx)
1947{
Ben Hutchings46426102010-09-10 06:42:33 +00001948 efx_remove_channels(efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001949 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001950#ifdef CONFIG_SFC_SRIOV
1951 efx->type->vswitching_remove(efx);
1952#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001953 efx_remove_port(efx);
1954 efx_remove_nic(efx);
1955}
1956
Ben Hutchings8ceee662008-04-27 12:55:59 +01001957/**************************************************************************
1958 *
1959 * Interrupt moderation
1960 *
1961 **************************************************************************/
Bert Kenward539de7c2016-08-11 13:02:09 +01001962unsigned int efx_usecs_to_ticks(struct efx_nic *efx, unsigned int usecs)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001963{
Ben Hutchingsb548f972011-09-05 07:41:44 +00001964 if (usecs == 0)
1965 return 0;
Bert Kenward539de7c2016-08-11 13:02:09 +01001966 if (usecs * 1000 < efx->timer_quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001967 return 1; /* never round down to 0 */
Bert Kenward539de7c2016-08-11 13:02:09 +01001968 return usecs * 1000 / efx->timer_quantum_ns;
1969}
1970
1971unsigned int efx_ticks_to_usecs(struct efx_nic *efx, unsigned int ticks)
1972{
1973 /* We must round up when converting ticks to microseconds
1974 * because we round down when converting the other way.
1975 */
1976 return DIV_ROUND_UP(ticks * efx->timer_quantum_ns, 1000);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001977}
1978
Ben Hutchings8ceee662008-04-27 12:55:59 +01001979/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001980int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1981 unsigned int rx_usecs, bool rx_adaptive,
1982 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001983{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001984 struct efx_channel *channel;
Bert Kenwardd95e3292016-08-11 13:02:36 +01001985 unsigned int timer_max_us;
1986
Ben Hutchings8ceee662008-04-27 12:55:59 +01001987 EFX_ASSERT_RESET_SERIALISED(efx);
1988
Bert Kenwardd95e3292016-08-11 13:02:36 +01001989 timer_max_us = efx->timer_max_ns / 1000;
1990
1991 if (tx_usecs > timer_max_us || rx_usecs > timer_max_us)
Ben Hutchings9e393b32011-09-05 07:43:04 +00001992 return -EINVAL;
1993
Bert Kenward539de7c2016-08-11 13:02:09 +01001994 if (tx_usecs != rx_usecs && efx->tx_channel_offset == 0 &&
Ben Hutchings9e393b32011-09-05 07:43:04 +00001995 !rx_may_override_tx) {
1996 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1997 "RX and TX IRQ moderation must be equal\n");
1998 return -EINVAL;
1999 }
2000
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00002001 efx->irq_rx_adaptive = rx_adaptive;
Bert Kenward539de7c2016-08-11 13:02:09 +01002002 efx->irq_rx_moderation_us = rx_usecs;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00002003 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00002004 if (efx_channel_has_rx_queue(channel))
Bert Kenward539de7c2016-08-11 13:02:09 +01002005 channel->irq_moderation_us = rx_usecs;
Ben Hutchings525da902011-02-07 23:04:38 +00002006 else if (efx_channel_has_tx_queues(channel))
Bert Kenward539de7c2016-08-11 13:02:09 +01002007 channel->irq_moderation_us = tx_usecs;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00002008 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00002009
2010 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002011}
2012
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002013void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
2014 unsigned int *rx_usecs, bool *rx_adaptive)
2015{
2016 *rx_adaptive = efx->irq_rx_adaptive;
Bert Kenward539de7c2016-08-11 13:02:09 +01002017 *rx_usecs = efx->irq_rx_moderation_us;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002018
2019 /* If channels are shared between RX and TX, so is IRQ
2020 * moderation. Otherwise, IRQ moderation is the same for all
2021 * TX channels and is not adaptive.
2022 */
Bert Kenward539de7c2016-08-11 13:02:09 +01002023 if (efx->tx_channel_offset == 0) {
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002024 *tx_usecs = *rx_usecs;
Bert Kenward539de7c2016-08-11 13:02:09 +01002025 } else {
2026 struct efx_channel *tx_channel;
2027
2028 tx_channel = efx->channel[efx->tx_channel_offset];
2029 *tx_usecs = tx_channel->irq_moderation_us;
2030 }
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002031}
2032
Ben Hutchings8ceee662008-04-27 12:55:59 +01002033/**************************************************************************
2034 *
2035 * Hardware monitor
2036 *
2037 **************************************************************************/
2038
Ben Hutchingse254c272010-09-20 08:44:10 +00002039/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002040static void efx_monitor(struct work_struct *data)
2041{
2042 struct efx_nic *efx = container_of(data, struct efx_nic,
2043 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002044
Ben Hutchings62776d02010-06-23 11:30:07 +00002045 netif_vdbg(efx, timer, efx->net_dev,
2046 "hardware monitor executing on CPU %d\n",
2047 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002048 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002049
Ben Hutchings8ceee662008-04-27 12:55:59 +01002050 /* If the mac_lock is already held then it is likely a port
2051 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00002052 * most of the work of monitor() anyway. */
2053 if (mutex_trylock(&efx->mac_lock)) {
2054 if (efx->port_enabled)
2055 efx->type->monitor(efx);
2056 mutex_unlock(&efx->mac_lock);
2057 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002058
Ben Hutchings8ceee662008-04-27 12:55:59 +01002059 queue_delayed_work(efx->workqueue, &efx->monitor_work,
2060 efx_monitor_interval);
2061}
2062
2063/**************************************************************************
2064 *
2065 * ioctls
2066 *
2067 *************************************************************************/
2068
2069/* Net device ioctl
2070 * Context: process, rtnl_lock() held.
2071 */
2072static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
2073{
Ben Hutchings767e4682008-09-01 12:43:14 +01002074 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002075 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002076
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002077 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings433dc9b2013-11-14 01:26:21 +00002078 return efx_ptp_set_ts_config(efx, ifr);
2079 if (cmd == SIOCGHWTSTAMP)
2080 return efx_ptp_get_ts_config(efx, ifr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002081
Ben Hutchings68e7f452009-04-29 08:05:08 +00002082 /* Convert phy_id from older PRTAD/DEVAD format */
2083 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
2084 (data->phy_id & 0xfc00) == 0x0400)
2085 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
2086
2087 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002088}
2089
2090/**************************************************************************
2091 *
2092 * NAPI interface
2093 *
2094 **************************************************************************/
2095
Ben Hutchings7f967c02012-02-13 23:45:02 +00002096static void efx_init_napi_channel(struct efx_channel *channel)
2097{
2098 struct efx_nic *efx = channel->efx;
2099
2100 channel->napi_dev = efx->net_dev;
2101 netif_napi_add(channel->napi_dev, &channel->napi_str,
2102 efx_poll, napi_weight);
Bert Kenwardc0f9c7e2015-10-26 14:23:42 +00002103 efx_channel_busy_poll_init(channel);
Ben Hutchings7f967c02012-02-13 23:45:02 +00002104}
2105
Ben Hutchingse8f14992010-12-07 19:47:34 +00002106static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002107{
2108 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002109
Ben Hutchings7f967c02012-02-13 23:45:02 +00002110 efx_for_each_channel(channel, efx)
2111 efx_init_napi_channel(channel);
Ben Hutchingse8f14992010-12-07 19:47:34 +00002112}
2113
2114static void efx_fini_napi_channel(struct efx_channel *channel)
2115{
Alexandre Rames36763262014-07-22 14:03:25 +01002116 if (channel->napi_dev) {
Ben Hutchingse8f14992010-12-07 19:47:34 +00002117 netif_napi_del(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +01002118 napi_hash_del(&channel->napi_str);
2119 }
Ben Hutchingse8f14992010-12-07 19:47:34 +00002120 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002121}
2122
2123static void efx_fini_napi(struct efx_nic *efx)
2124{
2125 struct efx_channel *channel;
2126
Ben Hutchingse8f14992010-12-07 19:47:34 +00002127 efx_for_each_channel(channel, efx)
2128 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002129}
2130
2131/**************************************************************************
2132 *
2133 * Kernel netpoll interface
2134 *
2135 *************************************************************************/
2136
2137#ifdef CONFIG_NET_POLL_CONTROLLER
2138
2139/* Although in the common case interrupts will be disabled, this is not
2140 * guaranteed. However, all our work happens inside the NAPI callback,
2141 * so no locking is required.
2142 */
2143static void efx_netpoll(struct net_device *net_dev)
2144{
Ben Hutchings767e4682008-09-01 12:43:14 +01002145 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002146 struct efx_channel *channel;
2147
Ben Hutchings64ee3122008-09-01 12:47:38 +01002148 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002149 efx_schedule_channel(channel);
2150}
2151
2152#endif
2153
Alexandre Rames36763262014-07-22 14:03:25 +01002154#ifdef CONFIG_NET_RX_BUSY_POLL
2155static int efx_busy_poll(struct napi_struct *napi)
2156{
2157 struct efx_channel *channel =
2158 container_of(napi, struct efx_channel, napi_str);
2159 struct efx_nic *efx = channel->efx;
2160 int budget = 4;
2161 int old_rx_packets, rx_packets;
2162
2163 if (!netif_running(efx->net_dev))
2164 return LL_FLUSH_FAILED;
2165
Bert Kenwardc0f9c7e2015-10-26 14:23:42 +00002166 if (!efx_channel_try_lock_poll(channel))
Alexandre Rames36763262014-07-22 14:03:25 +01002167 return LL_FLUSH_BUSY;
2168
2169 old_rx_packets = channel->rx_queue.rx_packets;
2170 efx_process_channel(channel, budget);
2171
2172 rx_packets = channel->rx_queue.rx_packets - old_rx_packets;
2173
2174 /* There is no race condition with NAPI here.
2175 * NAPI will automatically be rescheduled if it yielded during busy
2176 * polling, because it was not able to take the lock and thus returned
2177 * the full budget.
2178 */
2179 efx_channel_unlock_poll(channel);
2180
2181 return rx_packets;
2182}
2183#endif
2184
Ben Hutchings8ceee662008-04-27 12:55:59 +01002185/**************************************************************************
2186 *
2187 * Kernel net device interface
2188 *
2189 *************************************************************************/
2190
2191/* Context: process, rtnl_lock() held. */
Shradha Shahe340be92015-05-20 11:11:03 +01002192int efx_net_open(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002193{
Ben Hutchings767e4682008-09-01 12:43:14 +01002194 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002195 int rc;
2196
Ben Hutchings62776d02010-06-23 11:30:07 +00002197 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
2198 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002199
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002200 rc = efx_check_disabled(efx);
2201 if (rc)
2202 return rc;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002203 if (efx->phy_mode & PHY_MODE_SPECIAL)
2204 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002205 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
2206 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002207
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00002208 /* Notify the kernel of the link state polled during driver load,
2209 * before the monitor starts running */
2210 efx_link_status_changed(efx);
2211
Ben Hutchings8ceee662008-04-27 12:55:59 +01002212 efx_start_all(efx);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002213 efx_selftest_async_start(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002214 return 0;
2215}
2216
2217/* Context: process, rtnl_lock() held.
2218 * Note that the kernel will ignore our return code; this method
2219 * should really be a void.
2220 */
Shradha Shahe340be92015-05-20 11:11:03 +01002221int efx_net_stop(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002222{
Ben Hutchings767e4682008-09-01 12:43:14 +01002223 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002224
Ben Hutchings62776d02010-06-23 11:30:07 +00002225 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
2226 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002227
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002228 /* Stop the device and flush all the channels */
2229 efx_stop_all(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002230
2231 return 0;
2232}
2233
Ben Hutchings5b9e2072008-05-16 21:18:14 +01002234/* Context: process, dev_base_lock or RTNL held, non-blocking. */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +00002235static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev,
2236 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002237{
Ben Hutchings767e4682008-09-01 12:43:14 +01002238 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002239
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002240 spin_lock_bh(&efx->stats_lock);
Ben Hutchingscd0ecc92012-12-14 21:52:56 +00002241 efx->type->update_stats(efx, NULL, stats);
Ben Hutchings1cb34522011-09-02 23:23:00 +01002242 spin_unlock_bh(&efx->stats_lock);
2243
Ben Hutchings8ceee662008-04-27 12:55:59 +01002244 return stats;
2245}
2246
2247/* Context: netif_tx_lock held, BHs disabled. */
2248static void efx_watchdog(struct net_device *net_dev)
2249{
Ben Hutchings767e4682008-09-01 12:43:14 +01002250 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002251
Ben Hutchings62776d02010-06-23 11:30:07 +00002252 netif_err(efx, tx_err, efx->net_dev,
2253 "TX stuck with port_enabled=%d: resetting channels\n",
2254 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002255
Ben Hutchings739bb23d2008-11-04 20:35:36 +00002256 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002257}
2258
2259
2260/* Context: process, rtnl_lock() held. */
2261static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2262{
Ben Hutchings767e4682008-09-01 12:43:14 +01002263 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002264 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002265
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002266 rc = efx_check_disabled(efx);
2267 if (rc)
2268 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002269
Ben Hutchings62776d02010-06-23 11:30:07 +00002270 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002271
Ben Hutchings29c69a42013-01-28 19:01:06 +00002272 efx_device_detach_sync(efx);
2273 efx_stop_all(efx);
2274
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002275 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002276 net_dev->mtu = new_mtu;
Edward Cree0d322412015-05-20 11:10:03 +01002277 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002278 mutex_unlock(&efx->mac_lock);
2279
Ben Hutchings8ceee662008-04-27 12:55:59 +01002280 efx_start_all(efx);
Ben Hutchings29c69a42013-01-28 19:01:06 +00002281 netif_device_attach(efx->net_dev);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00002282 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002283}
2284
2285static int efx_set_mac_address(struct net_device *net_dev, void *data)
2286{
Ben Hutchings767e4682008-09-01 12:43:14 +01002287 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002288 struct sockaddr *addr = data;
Ben Hutchingse0b3ae32014-02-12 18:59:54 +00002289 u8 *new_addr = addr->sa_data;
Shradha Shahcfc77c22015-05-20 11:09:30 +01002290 u8 old_addr[6];
2291 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002292
Ben Hutchings8ceee662008-04-27 12:55:59 +01002293 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002294 netif_err(efx, drv, efx->net_dev,
2295 "invalid ethernet MAC address requested: %pM\n",
2296 new_addr);
Danny Kukawka504f9b52012-02-21 02:07:49 +00002297 return -EADDRNOTAVAIL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002298 }
2299
Shradha Shahcfc77c22015-05-20 11:09:30 +01002300 /* save old address */
2301 ether_addr_copy(old_addr, net_dev->dev_addr);
Edward Creecd84ff42014-03-07 18:27:41 +00002302 ether_addr_copy(net_dev->dev_addr, new_addr);
Shradha Shah910c8782015-05-20 11:12:48 +01002303 if (efx->type->set_mac_address) {
2304 rc = efx->type->set_mac_address(efx);
Shradha Shahcfc77c22015-05-20 11:09:30 +01002305 if (rc) {
2306 ether_addr_copy(net_dev->dev_addr, old_addr);
2307 return rc;
2308 }
2309 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002310
2311 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002312 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01002313 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002314 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002315
2316 return 0;
2317}
2318
Ben Hutchingsa816f752008-09-01 12:49:12 +01002319/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002320static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002321{
Ben Hutchings767e4682008-09-01 12:43:14 +01002322 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002323
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00002324 if (efx->port_enabled)
2325 queue_work(efx->workqueue, &efx->mac_work);
2326 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002327}
2328
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002329static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002330{
2331 struct efx_nic *efx = netdev_priv(net_dev);
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002332 int rc;
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002333
2334 /* If disabling RX n-tuple filtering, clear existing filters */
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002335 if (net_dev->features & ~data & NETIF_F_NTUPLE) {
2336 rc = efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
2337 if (rc)
2338 return rc;
2339 }
2340
2341 /* If Rx VLAN filter is changed, update filters via mac_reconfigure */
2342 if ((net_dev->features ^ data) & NETIF_F_HW_VLAN_CTAG_FILTER) {
2343 /* efx_set_rx_mode() will schedule MAC work to update filters
2344 * when a new features are finally set in net_dev.
2345 */
2346 efx_set_rx_mode(net_dev);
2347 }
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002348
2349 return 0;
2350}
2351
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002352static int efx_vlan_rx_add_vid(struct net_device *net_dev, __be16 proto, u16 vid)
2353{
2354 struct efx_nic *efx = netdev_priv(net_dev);
2355
2356 if (efx->type->vlan_rx_add_vid)
2357 return efx->type->vlan_rx_add_vid(efx, proto, vid);
2358 else
2359 return -EOPNOTSUPP;
2360}
2361
2362static int efx_vlan_rx_kill_vid(struct net_device *net_dev, __be16 proto, u16 vid)
2363{
2364 struct efx_nic *efx = netdev_priv(net_dev);
2365
2366 if (efx->type->vlan_rx_kill_vid)
2367 return efx->type->vlan_rx_kill_vid(efx, proto, vid);
2368 else
2369 return -EOPNOTSUPP;
2370}
2371
Shradha Shah7fa8d542015-05-06 00:55:13 +01002372static const struct net_device_ops efx_netdev_ops = {
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002373 .ndo_open = efx_net_open,
2374 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00002375 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002376 .ndo_tx_timeout = efx_watchdog,
2377 .ndo_start_xmit = efx_hard_start_xmit,
2378 .ndo_validate_addr = eth_validate_addr,
2379 .ndo_do_ioctl = efx_ioctl,
2380 .ndo_change_mtu = efx_change_mtu,
2381 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002382 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002383 .ndo_set_features = efx_set_features,
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002384 .ndo_vlan_rx_add_vid = efx_vlan_rx_add_vid,
2385 .ndo_vlan_rx_kill_vid = efx_vlan_rx_kill_vid,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002386#ifdef CONFIG_SFC_SRIOV
Shradha Shah7fa8d542015-05-06 00:55:13 +01002387 .ndo_set_vf_mac = efx_sriov_set_vf_mac,
2388 .ndo_set_vf_vlan = efx_sriov_set_vf_vlan,
2389 .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk,
2390 .ndo_get_vf_config = efx_sriov_get_vf_config,
Edward Cree4392dc62015-05-20 11:12:13 +01002391 .ndo_set_vf_link_state = efx_sriov_set_vf_link_state,
Shradha Shah1d051e02015-06-02 11:38:16 +01002392 .ndo_get_phys_port_id = efx_sriov_get_phys_port_id,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002393#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002394#ifdef CONFIG_NET_POLL_CONTROLLER
2395 .ndo_poll_controller = efx_netpoll,
2396#endif
Ben Hutchings94b274b2011-01-10 21:18:20 +00002397 .ndo_setup_tc = efx_setup_tc,
Alexandre Rames36763262014-07-22 14:03:25 +01002398#ifdef CONFIG_NET_RX_BUSY_POLL
2399 .ndo_busy_poll = efx_busy_poll,
2400#endif
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002401#ifdef CONFIG_RFS_ACCEL
2402 .ndo_rx_flow_steer = efx_filter_rfs,
2403#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002404};
2405
Ben Hutchings7dde5962008-12-12 22:09:38 -08002406static void efx_update_name(struct efx_nic *efx)
2407{
2408 strcpy(efx->name, efx->net_dev->name);
2409 efx_mtd_rename(efx);
2410 efx_set_channel_names(efx);
2411}
2412
Ben Hutchings8ceee662008-04-27 12:55:59 +01002413static int efx_netdev_event(struct notifier_block *this,
2414 unsigned long event, void *ptr)
2415{
Jiri Pirko351638e2013-05-28 01:30:21 +00002416 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002417
Shradha Shah7fa8d542015-05-06 00:55:13 +01002418 if ((net_dev->netdev_ops == &efx_netdev_ops) &&
Ben Hutchings7dde5962008-12-12 22:09:38 -08002419 event == NETDEV_CHANGENAME)
2420 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002421
2422 return NOTIFY_DONE;
2423}
2424
2425static struct notifier_block efx_netdev_notifier = {
2426 .notifier_call = efx_netdev_event,
2427};
2428
Ben Hutchings06d5e192008-12-12 21:47:23 -08002429static ssize_t
2430show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2431{
2432 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2433 return sprintf(buf, "%d\n", efx->phy_type);
2434}
Ben Hutchings776fbcc2013-06-18 17:45:40 +01002435static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002436
Edward Creee7fef9b2015-05-27 13:14:01 +01002437#ifdef CONFIG_SFC_MCDI_LOGGING
2438static ssize_t show_mcdi_log(struct device *dev, struct device_attribute *attr,
2439 char *buf)
2440{
2441 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2442 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2443
2444 return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled);
2445}
2446static ssize_t set_mcdi_log(struct device *dev, struct device_attribute *attr,
2447 const char *buf, size_t count)
2448{
2449 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2450 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2451 bool enable = count > 0 && *buf != '0';
2452
2453 mcdi->logging_enabled = enable;
2454 return count;
2455}
2456static DEVICE_ATTR(mcdi_logging, 0644, show_mcdi_log, set_mcdi_log);
2457#endif
2458
Ben Hutchings8ceee662008-04-27 12:55:59 +01002459static int efx_register_netdev(struct efx_nic *efx)
2460{
2461 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002462 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002463 int rc;
2464
2465 net_dev->watchdog_timeo = 5 * HZ;
2466 net_dev->irq = efx->pci_dev->irq;
Shradha Shah7fa8d542015-05-06 00:55:13 +01002467 net_dev->netdev_ops = &efx_netdev_ops;
2468 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0)
Ben Hutchings8127d662013-08-29 19:19:29 +01002469 net_dev->priv_flags |= IFF_UNICAST_FLT;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002470 net_dev->ethtool_ops = &efx_ethtool_ops;
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002471 net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
Bert Kenwardcd94e512016-10-18 17:47:45 +01002472 net_dev->min_mtu = EFX_MIN_MTU;
2473 net_dev->max_mtu = EFX_MAX_MTU;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002474
Ben Hutchings7dde5962008-12-12 22:09:38 -08002475 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00002476
Ben Hutchings7153f622012-07-27 20:50:52 +01002477 /* Enable resets to be scheduled and check whether any were
2478 * already requested. If so, the NIC is probably hosed so we
2479 * abort.
2480 */
2481 efx->state = STATE_READY;
2482 smp_mb(); /* ensure we change state before checking reset_pending */
2483 if (efx->reset_pending) {
2484 netif_err(efx, probe, efx->net_dev,
2485 "aborting probe due to scheduled reset\n");
2486 rc = -EIO;
2487 goto fail_locked;
2488 }
2489
Ben Hutchingsaed06282009-08-26 08:16:27 +00002490 rc = dev_alloc_name(net_dev, net_dev->name);
2491 if (rc < 0)
2492 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002493 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002494
Ben Hutchings8f8b3d52012-08-24 18:04:38 +01002495 /* Always start with carrier off; PHY events will detect the link */
2496 netif_carrier_off(net_dev);
2497
Ben Hutchingsaed06282009-08-26 08:16:27 +00002498 rc = register_netdevice(net_dev);
2499 if (rc)
2500 goto fail_locked;
2501
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002502 efx_for_each_channel(channel, efx) {
2503 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00002504 efx_for_each_channel_tx_queue(tx_queue, channel)
2505 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002506 }
2507
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002508 efx_associate(efx);
2509
Ben Hutchings7dde5962008-12-12 22:09:38 -08002510 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002511
Ben Hutchings06d5e192008-12-12 21:47:23 -08002512 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2513 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002514 netif_err(efx, drv, efx->net_dev,
2515 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08002516 goto fail_registered;
2517 }
Edward Creee7fef9b2015-05-27 13:14:01 +01002518#ifdef CONFIG_SFC_MCDI_LOGGING
2519 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2520 if (rc) {
2521 netif_err(efx, drv, efx->net_dev,
2522 "failed to init net dev attributes\n");
2523 goto fail_attr_mcdi_logging;
2524 }
2525#endif
Ben Hutchings06d5e192008-12-12 21:47:23 -08002526
Ben Hutchings8ceee662008-04-27 12:55:59 +01002527 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08002528
Edward Creee7fef9b2015-05-27 13:14:01 +01002529#ifdef CONFIG_SFC_MCDI_LOGGING
2530fail_attr_mcdi_logging:
2531 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2532#endif
Ben Hutchings7153f622012-07-27 20:50:52 +01002533fail_registered:
2534 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002535 efx_dissociate(efx);
Ben Hutchings7153f622012-07-27 20:50:52 +01002536 unregister_netdevice(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002537fail_locked:
Ben Hutchings7153f622012-07-27 20:50:52 +01002538 efx->state = STATE_UNINIT;
Ben Hutchingsaed06282009-08-26 08:16:27 +00002539 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00002540 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00002541 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002542}
2543
2544static void efx_unregister_netdev(struct efx_nic *efx)
2545{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002546 if (!efx->net_dev)
2547 return;
2548
Ben Hutchings767e4682008-09-01 12:43:14 +01002549 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002550
Edward Creee7fef9b2015-05-27 13:14:01 +01002551 if (efx_dev_registered(efx)) {
2552 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2553#ifdef CONFIG_SFC_MCDI_LOGGING
2554 device_remove_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2555#endif
2556 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2557 unregister_netdev(efx->net_dev);
2558 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002559}
2560
2561/**************************************************************************
2562 *
2563 * Device reset and suspend
2564 *
2565 **************************************************************************/
2566
Ben Hutchings2467ca42008-09-01 12:48:50 +01002567/* Tears down the entire software state and most of the hardware state
2568 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002569void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002570{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002571 EFX_ASSERT_RESET_SERIALISED(efx);
2572
Edward Creee2835462014-04-16 19:27:48 +01002573 if (method == RESET_TYPE_MCDI_TIMEOUT)
2574 efx->type->prepare_flr(efx);
2575
Ben Hutchings2467ca42008-09-01 12:48:50 +01002576 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002577 efx_disable_interrupts(efx);
Ben Hutchings5642cee2012-07-27 19:35:52 +01002578
2579 mutex_lock(&efx->mac_lock);
Jon Cooper087e9022015-05-20 11:11:35 +01002580 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2581 method != RESET_TYPE_DATAPATH)
Steve Hodgson4b988282009-01-29 17:50:51 +00002582 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002583 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002584}
2585
Ben Hutchings2467ca42008-09-01 12:48:50 +01002586/* This function will always ensure that the locks acquired in
2587 * efx_reset_down() are released. A failure return code indicates
2588 * that we were unable to reinitialise the hardware, and the
2589 * driver should be disabled. If ok is false, then the rx and tx
2590 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002591int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002592{
2593 int rc;
2594
Ben Hutchings2467ca42008-09-01 12:48:50 +01002595 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002596
Edward Creee2835462014-04-16 19:27:48 +01002597 if (method == RESET_TYPE_MCDI_TIMEOUT)
2598 efx->type->finish_flr(efx);
2599
2600 /* Ensure that SRAM is initialised even if we're disabling the device */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002601 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002602 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002603 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002604 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002605 }
2606
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002607 if (!ok)
2608 goto fail;
2609
Jon Cooper087e9022015-05-20 11:11:35 +01002610 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2611 method != RESET_TYPE_DATAPATH) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002612 rc = efx->phy_op->init(efx);
2613 if (rc)
2614 goto fail;
Edward Cree267d9d72015-05-06 00:59:18 +01002615 rc = efx->phy_op->reconfigure(efx);
2616 if (rc && rc != -EPERM)
Ben Hutchings62776d02010-06-23 11:30:07 +00002617 netif_err(efx, drv, efx->net_dev,
2618 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002619 }
2620
Jon Cooper261e4d92013-04-15 18:51:54 +01002621 rc = efx_enable_interrupts(efx);
2622 if (rc)
2623 goto fail;
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002624
2625#ifdef CONFIG_SFC_SRIOV
2626 rc = efx->type->vswitching_restore(efx);
2627 if (rc) /* not fatal; the PF will still work fine */
2628 netif_warn(efx, probe, efx->net_dev,
2629 "failed to restore vswitching rc=%d;"
2630 " VFs may not function\n", rc);
2631#endif
2632
Edward Cree0d322412015-05-20 11:10:03 +01002633 down_read(&efx->filter_sem);
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002634 efx_restore_filters(efx);
Edward Cree0d322412015-05-20 11:10:03 +01002635 up_read(&efx->filter_sem);
Shradha Shah7fa8d542015-05-06 00:55:13 +01002636 if (efx->type->sriov_reset)
2637 efx->type->sriov_reset(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002638
2639 mutex_unlock(&efx->mac_lock);
2640
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002641 efx_start_all(efx);
2642
2643 return 0;
2644
2645fail:
2646 efx->port_initialized = false;
2647
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002648 mutex_unlock(&efx->mac_lock);
2649
Ben Hutchings8ceee662008-04-27 12:55:59 +01002650 return rc;
2651}
2652
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002653/* Reset the NIC using the specified method. Note that the reset may
2654 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002655 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002656 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002657 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002658int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002659{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002660 int rc, rc2;
2661 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002662
Ben Hutchings62776d02010-06-23 11:30:07 +00002663 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2664 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002665
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002666 efx_device_detach_sync(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002667 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002668
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002669 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002670 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002671 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002672 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002673 }
2674
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002675 /* Clear flags for the scopes we covered. We assume the NIC and
2676 * driver are now quiescent so that there is no race here.
2677 */
Edward Creee2835462014-04-16 19:27:48 +01002678 if (method < RESET_TYPE_MAX_METHOD)
2679 efx->reset_pending &= -(1 << (method + 1));
2680 else /* it doesn't fit into the well-ordered scope hierarchy */
2681 __clear_bit(method, &efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002682
2683 /* Reinitialise bus-mastering, which may have been turned off before
2684 * the reset was scheduled. This is still appropriate, even in the
2685 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2686 * can respond to requests. */
2687 pci_set_master(efx->pci_dev);
2688
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002689out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002690 /* Leave device stopped if necessary */
Alexandre Rames626950d2013-01-14 17:20:22 +00002691 disabled = rc ||
2692 method == RESET_TYPE_DISABLE ||
2693 method == RESET_TYPE_RECOVER_OR_DISABLE;
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002694 rc2 = efx_reset_up(efx, method, !disabled);
2695 if (rc2) {
2696 disabled = true;
2697 if (!rc)
2698 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002699 }
2700
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002701 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002702 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002703 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002704 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002705 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002706 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingse4abce82011-05-16 18:51:24 +01002707 netif_device_attach(efx->net_dev);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002708 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002709 return rc;
2710}
2711
Alexandre Rames626950d2013-01-14 17:20:22 +00002712/* Try recovery mechanisms.
2713 * For now only EEH is supported.
2714 * Returns 0 if the recovery mechanisms are unsuccessful.
2715 * Returns a non-zero value otherwise.
2716 */
Alexandre Ramesb28405b2013-03-21 16:41:43 +00002717int efx_try_recovery(struct efx_nic *efx)
Alexandre Rames626950d2013-01-14 17:20:22 +00002718{
2719#ifdef CONFIG_EEH
2720 /* A PCI error can occur and not be seen by EEH because nothing
2721 * happens on the PCI bus. In this case the driver may fail and
2722 * schedule a 'recover or reset', leading to this recovery handler.
2723 * Manually call the eeh failure check function.
2724 */
Benjamin Herrenschmidt12a89db2015-03-23 14:00:47 +11002725 struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002726 if (eeh_dev_check_failure(eehdev)) {
2727 /* The EEH mechanisms will handle the error and reset the
2728 * device if necessary.
2729 */
2730 return 1;
2731 }
2732#endif
2733 return 0;
2734}
2735
Jon Cooper74cd60a2013-09-16 14:18:51 +01002736static void efx_wait_for_bist_end(struct efx_nic *efx)
2737{
2738 int i;
2739
2740 for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
2741 if (efx_mcdi_poll_reboot(efx))
2742 goto out;
2743 msleep(BIST_WAIT_DELAY_MS);
2744 }
2745
2746 netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
2747out:
2748 /* Either way unset the BIST flag. If we found no reboot we probably
2749 * won't recover, but we should try.
2750 */
2751 efx->mc_bist_for_other_fn = false;
2752}
2753
Ben Hutchings8ceee662008-04-27 12:55:59 +01002754/* The worker thread exists so that code that cannot sleep can
2755 * schedule a reset for later.
2756 */
2757static void efx_reset_work(struct work_struct *data)
2758{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002759 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Alexandre Rames626950d2013-01-14 17:20:22 +00002760 unsigned long pending;
2761 enum reset_type method;
2762
2763 pending = ACCESS_ONCE(efx->reset_pending);
2764 method = fls(pending) - 1;
2765
Jon Cooper74cd60a2013-09-16 14:18:51 +01002766 if (method == RESET_TYPE_MC_BIST)
2767 efx_wait_for_bist_end(efx);
2768
Alexandre Rames626950d2013-01-14 17:20:22 +00002769 if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
2770 method == RESET_TYPE_RECOVER_OR_ALL) &&
2771 efx_try_recovery(efx))
2772 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002773
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002774 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00002775 return;
2776
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002777 rtnl_lock();
Ben Hutchings7153f622012-07-27 20:50:52 +01002778
2779 /* We checked the state in efx_schedule_reset() but it may
2780 * have changed by now. Now that we have the RTNL lock,
2781 * it cannot change again.
2782 */
2783 if (efx->state == STATE_READY)
Alexandre Rames626950d2013-01-14 17:20:22 +00002784 (void)efx_reset(efx, method);
Ben Hutchings7153f622012-07-27 20:50:52 +01002785
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002786 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002787}
2788
2789void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2790{
2791 enum reset_type method;
2792
Alexandre Rames626950d2013-01-14 17:20:22 +00002793 if (efx->state == STATE_RECOVERY) {
2794 netif_dbg(efx, drv, efx->net_dev,
2795 "recovering: skip scheduling %s reset\n",
2796 RESET_TYPE(type));
2797 return;
2798 }
2799
Ben Hutchings8ceee662008-04-27 12:55:59 +01002800 switch (type) {
2801 case RESET_TYPE_INVISIBLE:
2802 case RESET_TYPE_ALL:
Alexandre Rames626950d2013-01-14 17:20:22 +00002803 case RESET_TYPE_RECOVER_OR_ALL:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002804 case RESET_TYPE_WORLD:
2805 case RESET_TYPE_DISABLE:
Alexandre Rames626950d2013-01-14 17:20:22 +00002806 case RESET_TYPE_RECOVER_OR_DISABLE:
Jon Cooper087e9022015-05-20 11:11:35 +01002807 case RESET_TYPE_DATAPATH:
Jon Cooper74cd60a2013-09-16 14:18:51 +01002808 case RESET_TYPE_MC_BIST:
Edward Creee2835462014-04-16 19:27:48 +01002809 case RESET_TYPE_MCDI_TIMEOUT:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002810 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002811 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2812 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002813 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002814 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002815 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00002816 netif_dbg(efx, drv, efx->net_dev,
2817 "scheduling %s reset for %s\n",
2818 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002819 break;
2820 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002821
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002822 set_bit(method, &efx->reset_pending);
Ben Hutchings7153f622012-07-27 20:50:52 +01002823 smp_mb(); /* ensure we change reset_pending before checking state */
2824
2825 /* If we're not READY then just leave the flags set as the cue
2826 * to abort probing or reschedule the reset later.
2827 */
2828 if (ACCESS_ONCE(efx->state) != STATE_READY)
2829 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002830
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002831 /* efx_process_channel() will no longer read events once a
2832 * reset is scheduled. So switch back to poll'd MCDI completions. */
2833 efx_mcdi_mode_poll(efx);
2834
Steve Hodgson1ab00622008-12-12 21:33:02 -08002835 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002836}
2837
2838/**************************************************************************
2839 *
2840 * List of NICs we support
2841 *
2842 **************************************************************************/
2843
2844/* PCI device ID table */
Benoit Taine9baa3c32014-08-08 15:56:03 +02002845static const struct pci_device_id efx_pci_table[] = {
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002846 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2847 PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002848 .driver_data = (unsigned long) &falcon_a1_nic_type},
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002849 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2850 PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002851 .driver_data = (unsigned long) &falcon_b0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002852 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002853 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002854 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002855 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8127d662013-08-29 19:19:29 +01002856 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */
2857 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01002858 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1903), /* SFC9120 VF */
2859 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Mateusz Wrzesinski3b06a002014-07-14 08:38:49 +01002860 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923), /* SFC9140 PF */
2861 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Bert Kenwarddd248f12015-11-30 09:05:47 +00002862 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1923), /* SFC9140 VF */
2863 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
2864 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0a03), /* SFC9220 PF */
2865 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
2866 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1a03), /* SFC9220 VF */
2867 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002868 {0} /* end of list */
2869};
2870
2871/**************************************************************************
2872 *
Ben Hutchings37594332009-11-23 16:05:45 +00002873 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002874 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002875 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002876 * Needed so all function pointers are valid and do not have to be tested
2877 * before use
2878 *
2879 **************************************************************************/
2880int efx_port_dummy_op_int(struct efx_nic *efx)
2881{
2882 return 0;
2883}
2884void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002885
2886static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002887{
2888 return false;
2889}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002890
stephen hemminger6c8c2512011-04-14 05:50:12 +00002891static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002892 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002893 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002894 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002895 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002896};
2897
Ben Hutchings8ceee662008-04-27 12:55:59 +01002898/**************************************************************************
2899 *
2900 * Data housekeeping
2901 *
2902 **************************************************************************/
2903
2904/* This zeroes out and then fills in the invariants in a struct
2905 * efx_nic (including all sub-structures).
2906 */
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002907static int efx_init_struct(struct efx_nic *efx,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002908 struct pci_dev *pci_dev, struct net_device *net_dev)
2909{
Ben Hutchings46426102010-09-10 06:42:33 +00002910 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002911
2912 /* Initialise common structures */
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002913 INIT_LIST_HEAD(&efx->node);
2914 INIT_LIST_HEAD(&efx->secondary_list);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002915 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002916#ifdef CONFIG_SFC_MTD
2917 INIT_LIST_HEAD(&efx->mtd_list);
2918#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002919 INIT_WORK(&efx->reset_work, efx_reset_work);
2920 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002921 INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002922 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002923 efx->msg_enable = debug;
Ben Hutchingsf16aeea2012-07-27 19:31:16 +01002924 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002925 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002926
2927 efx->net_dev = net_dev;
Jon Cooper43a37392012-10-18 15:49:54 +01002928 efx->rx_prefix_size = efx->type->rx_prefix_size;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +04002929 efx->rx_ip_align =
2930 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
Jon Cooper43a37392012-10-18 15:49:54 +01002931 efx->rx_packet_hash_offset =
2932 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
Jon Cooperbd9a2652013-11-18 12:54:41 +00002933 efx->rx_packet_ts_offset =
2934 efx->type->rx_ts_offset - efx->type->rx_prefix_size;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002935 spin_lock_init(&efx->stats_lock);
2936 mutex_init(&efx->mac_lock);
2937 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002938 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002939 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002940 init_waitqueue_head(&efx->flush_wq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002941
2942 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002943 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2944 if (!efx->channel[i])
2945 goto fail;
Ben Hutchingsd8291182012-10-05 23:35:41 +01002946 efx->msi_context[i].efx = efx;
2947 efx->msi_context[i].index = i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002948 }
2949
Ben Hutchings8ceee662008-04-27 12:55:59 +01002950 /* Higher numbered interrupt modes are less capable! */
2951 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2952 interrupt_mode);
2953
Ben Hutchings6977dc62008-12-26 13:44:39 -08002954 /* Would be good to use the net_dev name, but we're too early */
2955 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2956 pci_name(pci_dev));
2957 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002958 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00002959 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002960
Ben Hutchings8ceee662008-04-27 12:55:59 +01002961 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00002962
2963fail:
2964 efx_fini_struct(efx);
2965 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002966}
2967
2968static void efx_fini_struct(struct efx_nic *efx)
2969{
Ben Hutchings8313aca2010-09-10 06:41:57 +00002970 int i;
2971
2972 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2973 kfree(efx->channel[i]);
2974
Ben Hutchingsef215e62013-12-05 20:13:22 +00002975 kfree(efx->vpd_sn);
2976
Ben Hutchings8ceee662008-04-27 12:55:59 +01002977 if (efx->workqueue) {
2978 destroy_workqueue(efx->workqueue);
2979 efx->workqueue = NULL;
2980 }
2981}
2982
Edward Creee4d112e2014-07-15 11:58:12 +01002983void efx_update_sw_stats(struct efx_nic *efx, u64 *stats)
2984{
2985 u64 n_rx_nodesc_trunc = 0;
2986 struct efx_channel *channel;
2987
2988 efx_for_each_channel(channel, efx)
2989 n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc;
2990 stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc;
2991 stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops);
2992}
2993
Ben Hutchings8ceee662008-04-27 12:55:59 +01002994/**************************************************************************
2995 *
2996 * PCI interface
2997 *
2998 **************************************************************************/
2999
3000/* Main body of final NIC shutdown code
3001 * This is called only at module unload (or hotplug removal).
3002 */
3003static void efx_pci_remove_main(struct efx_nic *efx)
3004{
Ben Hutchings7153f622012-07-27 20:50:52 +01003005 /* Flush reset_work. It can no longer be scheduled since we
3006 * are not READY.
3007 */
3008 BUG_ON(efx->state == STATE_READY);
3009 cancel_work_sync(&efx->reset_work);
3010
Ben Hutchingsd8291182012-10-05 23:35:41 +01003011 efx_disable_interrupts(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00003012 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003013 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003014 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003015 efx_fini_napi(efx);
3016 efx_remove_all(efx);
3017}
3018
3019/* Final NIC shutdown
Daniel Pieczko2a3fc312015-06-02 11:40:46 +01003020 * This is called only at module unload (or hotplug removal). A PF can call
3021 * this on its VFs to ensure they are unbound first.
Ben Hutchings8ceee662008-04-27 12:55:59 +01003022 */
3023static void efx_pci_remove(struct pci_dev *pci_dev)
3024{
3025 struct efx_nic *efx;
3026
3027 efx = pci_get_drvdata(pci_dev);
3028 if (!efx)
3029 return;
3030
3031 /* Mark the NIC as fini, then stop the interface */
3032 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01003033 efx_dissociate(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003034 dev_close(efx->net_dev);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003035 efx_disable_interrupts(efx);
Edward Creeea6bb992015-06-15 18:27:54 +01003036 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003037 rtnl_unlock();
3038
Shradha Shah7fa8d542015-05-06 00:55:13 +01003039 if (efx->type->sriov_fini)
3040 efx->type->sriov_fini(efx);
3041
Ben Hutchings8ceee662008-04-27 12:55:59 +01003042 efx_unregister_netdev(efx);
3043
Ben Hutchings7dde5962008-12-12 22:09:38 -08003044 efx_mtd_remove(efx);
3045
Ben Hutchings8ceee662008-04-27 12:55:59 +01003046 efx_pci_remove_main(efx);
3047
Ben Hutchings8ceee662008-04-27 12:55:59 +01003048 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003049 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003050
Ben Hutchings8ceee662008-04-27 12:55:59 +01003051 efx_fini_struct(efx);
3052 free_netdev(efx->net_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00003053
3054 pci_disable_pcie_error_reporting(pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003055};
3056
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003057/* NIC VPD information
3058 * Called during probe to display the part number of the
3059 * installed NIC. VPD is potentially very large but this should
3060 * always appear within the first 512 bytes.
3061 */
3062#define SFC_VPD_LEN 512
Ben Hutchingsef215e62013-12-05 20:13:22 +00003063static void efx_probe_vpd_strings(struct efx_nic *efx)
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003064{
3065 struct pci_dev *dev = efx->pci_dev;
3066 char vpd_data[SFC_VPD_LEN];
3067 ssize_t vpd_size;
Ben Hutchingsef215e62013-12-05 20:13:22 +00003068 int ro_start, ro_size, i, j;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003069
3070 /* Get the vpd data from the device */
3071 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
3072 if (vpd_size <= 0) {
3073 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
3074 return;
3075 }
3076
3077 /* Get the Read only section */
Ben Hutchingsef215e62013-12-05 20:13:22 +00003078 ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
3079 if (ro_start < 0) {
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003080 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
3081 return;
3082 }
3083
Ben Hutchingsef215e62013-12-05 20:13:22 +00003084 ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
3085 j = ro_size;
3086 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003087 if (i + j > vpd_size)
3088 j = vpd_size - i;
3089
3090 /* Get the Part number */
3091 i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
3092 if (i < 0) {
3093 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
3094 return;
3095 }
3096
3097 j = pci_vpd_info_field_size(&vpd_data[i]);
3098 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3099 if (i + j > vpd_size) {
3100 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
3101 return;
3102 }
3103
3104 netif_info(efx, drv, efx->net_dev,
3105 "Part Number : %.*s\n", j, &vpd_data[i]);
Ben Hutchingsef215e62013-12-05 20:13:22 +00003106
3107 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
3108 j = ro_size;
3109 i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN");
3110 if (i < 0) {
3111 netif_err(efx, drv, efx->net_dev, "Serial number not found\n");
3112 return;
3113 }
3114
3115 j = pci_vpd_info_field_size(&vpd_data[i]);
3116 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3117 if (i + j > vpd_size) {
3118 netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n");
3119 return;
3120 }
3121
3122 efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL);
3123 if (!efx->vpd_sn)
3124 return;
3125
3126 snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003127}
3128
3129
Ben Hutchings8ceee662008-04-27 12:55:59 +01003130/* Main body of NIC initialisation
3131 * This is called at module load (or hotplug insertion, theoretically).
3132 */
3133static int efx_pci_probe_main(struct efx_nic *efx)
3134{
3135 int rc;
3136
3137 /* Do start-of-day initialisation */
3138 rc = efx_probe_all(efx);
3139 if (rc)
3140 goto fail1;
3141
Ben Hutchingse8f14992010-12-07 19:47:34 +00003142 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003143
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003144 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003145 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003146 netif_err(efx, probe, efx->net_dev,
3147 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003148 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003149 }
3150
3151 rc = efx_init_port(efx);
3152 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003153 netif_err(efx, probe, efx->net_dev,
3154 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003155 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003156 }
3157
Ben Hutchings152b6a62009-11-29 03:43:56 +00003158 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003159 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00003160 goto fail5;
Jon Cooper261e4d92013-04-15 18:51:54 +01003161 rc = efx_enable_interrupts(efx);
3162 if (rc)
3163 goto fail6;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003164
3165 return 0;
3166
Jon Cooper261e4d92013-04-15 18:51:54 +01003167 fail6:
3168 efx_nic_fini_interrupt(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00003169 fail5:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003170 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003171 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003172 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003173 fail3:
3174 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003175 efx_remove_all(efx);
3176 fail1:
3177 return rc;
3178}
3179
3180/* NIC initialisation
3181 *
3182 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00003183 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003184 * sets up and registers the network devices with the kernel and hooks
3185 * the interrupt service routine. It does not prepare the device for
3186 * transmission; this is left to the first time one of the network
3187 * interfaces is brought up (i.e. efx_net_open).
3188 */
Bill Pemberton87d1fc12012-12-03 09:23:32 -05003189static int efx_pci_probe(struct pci_dev *pci_dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00003190 const struct pci_device_id *entry)
Ben Hutchings8ceee662008-04-27 12:55:59 +01003191{
Ben Hutchings8ceee662008-04-27 12:55:59 +01003192 struct net_device *net_dev;
3193 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003194 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003195
3196 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00003197 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
3198 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003199 if (!net_dev)
3200 return -ENOMEM;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003201 efx = netdev_priv(net_dev);
3202 efx->type = (const struct efx_nic_type *) entry->driver_data;
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +01003203 efx->fixed_features |= NETIF_F_HIGHDMA;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003204 net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +01003205 NETIF_F_TSO | NETIF_F_RXCSUM);
Tom Herbertc8cd0982015-12-14 11:19:44 -08003206 if (efx->type->offload_features & (NETIF_F_IPV6_CSUM | NETIF_F_HW_CSUM))
Ben Hutchings738a8f42009-11-29 15:16:05 +00003207 net_dev->features |= NETIF_F_TSO6;
Ben Hutchings285065632008-09-01 12:46:54 +01003208 /* Mask for features that also apply to VLAN devices */
Tom Herberta1882222015-12-14 11:19:43 -08003209 net_dev->vlan_features |= (NETIF_F_HW_CSUM | NETIF_F_SG |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01003210 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
3211 NETIF_F_RXCSUM);
Andrew Rybchenkoeb7cfd82016-06-15 17:51:36 +01003212
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +01003213 net_dev->hw_features = net_dev->features & ~efx->fixed_features;
Andrew Rybchenkoeb7cfd82016-06-15 17:51:36 +01003214
3215 /* Disable VLAN filtering by default. It may be enforced if
3216 * the feature is fixed (i.e. VLAN filters are required to
3217 * receive VLAN tagged packets due to vPort restrictions).
3218 */
3219 net_dev->features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
3220 net_dev->features |= efx->fixed_features;
3221
Ben Hutchings8ceee662008-04-27 12:55:59 +01003222 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003223 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003224 rc = efx_init_struct(efx, pci_dev, net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003225 if (rc)
3226 goto fail1;
3227
Ben Hutchings62776d02010-06-23 11:30:07 +00003228 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01003229 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003230
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01003231 if (!efx->type->is_vf)
3232 efx_probe_vpd_strings(efx);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003233
Ben Hutchings8ceee662008-04-27 12:55:59 +01003234 /* Set up basic I/O (BAR mappings etc) */
3235 rc = efx_init_io(efx);
3236 if (rc)
3237 goto fail2;
3238
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003239 rc = efx_pci_probe_main(efx);
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003240 if (rc)
3241 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08003242
Ben Hutchings8ceee662008-04-27 12:55:59 +01003243 rc = efx_register_netdev(efx);
3244 if (rc)
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003245 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003246
Shradha Shah7fa8d542015-05-06 00:55:13 +01003247 if (efx->type->sriov_init) {
3248 rc = efx->type->sriov_init(efx);
3249 if (rc)
3250 netif_err(efx, probe, efx->net_dev,
3251 "SR-IOV can't be enabled rc %d\n", rc);
3252 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003253
Ben Hutchings62776d02010-06-23 11:30:07 +00003254 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003255
Ben Hutchings7c431612012-01-27 17:23:58 +00003256 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003257 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003258 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003259 rtnl_unlock();
Bert Kenward09a04202015-12-23 08:58:15 +00003260 if (rc && rc != -EPERM)
Ben Hutchings7c431612012-01-27 17:23:58 +00003261 netif_warn(efx, probe, efx->net_dev,
3262 "failed to create MTDs (%d)\n", rc);
3263
Alexandre Rames626950d2013-01-14 17:20:22 +00003264 rc = pci_enable_pcie_error_reporting(pci_dev);
3265 if (rc && rc != -EINVAL)
Bert Kenward09a04202015-12-23 08:58:15 +00003266 netif_notice(efx, probe, efx->net_dev,
3267 "PCIE error reporting unavailable (%d).\n",
3268 rc);
Alexandre Rames626950d2013-01-14 17:20:22 +00003269
Ben Hutchings8ceee662008-04-27 12:55:59 +01003270 return 0;
3271
Ben Hutchings8ceee662008-04-27 12:55:59 +01003272 fail4:
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003273 efx_pci_remove_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003274 fail3:
3275 efx_fini_io(efx);
3276 fail2:
3277 efx_fini_struct(efx);
3278 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08003279 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00003280 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003281 free_netdev(net_dev);
3282 return rc;
3283}
3284
Shradha Shah834e23d2015-05-06 00:55:58 +01003285/* efx_pci_sriov_configure returns the actual number of Virtual Functions
3286 * enabled on success
3287 */
3288#ifdef CONFIG_SFC_SRIOV
3289static int efx_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
3290{
3291 int rc;
3292 struct efx_nic *efx = pci_get_drvdata(dev);
3293
3294 if (efx->type->sriov_configure) {
3295 rc = efx->type->sriov_configure(efx, num_vfs);
3296 if (rc)
3297 return rc;
3298 else
3299 return num_vfs;
3300 } else
3301 return -EOPNOTSUPP;
3302}
3303#endif
3304
Ben Hutchings89c758f2009-11-29 03:43:07 +00003305static int efx_pm_freeze(struct device *dev)
3306{
3307 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3308
Ben Hutchings61da0262012-07-27 19:35:39 +01003309 rtnl_lock();
3310
Ben Hutchings6032fb52012-07-27 19:35:47 +01003311 if (efx->state != STATE_DISABLED) {
3312 efx->state = STATE_UNINIT;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003313
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01003314 efx_device_detach_sync(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003315
Ben Hutchings6032fb52012-07-27 19:35:47 +01003316 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003317 efx_disable_interrupts(efx);
Ben Hutchings6032fb52012-07-27 19:35:47 +01003318 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003319
Ben Hutchings61da0262012-07-27 19:35:39 +01003320 rtnl_unlock();
3321
Ben Hutchings89c758f2009-11-29 03:43:07 +00003322 return 0;
3323}
3324
3325static int efx_pm_thaw(struct device *dev)
3326{
Jon Cooper261e4d92013-04-15 18:51:54 +01003327 int rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003328 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3329
Ben Hutchings61da0262012-07-27 19:35:39 +01003330 rtnl_lock();
3331
Ben Hutchings6032fb52012-07-27 19:35:47 +01003332 if (efx->state != STATE_DISABLED) {
Jon Cooper261e4d92013-04-15 18:51:54 +01003333 rc = efx_enable_interrupts(efx);
3334 if (rc)
3335 goto fail;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003336
Ben Hutchings6032fb52012-07-27 19:35:47 +01003337 mutex_lock(&efx->mac_lock);
3338 efx->phy_op->reconfigure(efx);
3339 mutex_unlock(&efx->mac_lock);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003340
Ben Hutchings6032fb52012-07-27 19:35:47 +01003341 efx_start_all(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003342
Ben Hutchings6032fb52012-07-27 19:35:47 +01003343 netif_device_attach(efx->net_dev);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003344
Ben Hutchings6032fb52012-07-27 19:35:47 +01003345 efx->state = STATE_READY;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003346
Ben Hutchings6032fb52012-07-27 19:35:47 +01003347 efx->type->resume_wol(efx);
3348 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003349
Ben Hutchings61da0262012-07-27 19:35:39 +01003350 rtnl_unlock();
3351
Steve Hodgson319ba642010-06-01 11:17:24 +00003352 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
3353 queue_work(reset_workqueue, &efx->reset_work);
3354
Ben Hutchings89c758f2009-11-29 03:43:07 +00003355 return 0;
Jon Cooper261e4d92013-04-15 18:51:54 +01003356
3357fail:
3358 rtnl_unlock();
3359
3360 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003361}
3362
3363static int efx_pm_poweroff(struct device *dev)
3364{
3365 struct pci_dev *pci_dev = to_pci_dev(dev);
3366 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3367
3368 efx->type->fini(efx);
3369
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003370 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003371
3372 pci_save_state(pci_dev);
3373 return pci_set_power_state(pci_dev, PCI_D3hot);
3374}
3375
3376/* Used for both resume and restore */
3377static int efx_pm_resume(struct device *dev)
3378{
3379 struct pci_dev *pci_dev = to_pci_dev(dev);
3380 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3381 int rc;
3382
3383 rc = pci_set_power_state(pci_dev, PCI_D0);
3384 if (rc)
3385 return rc;
3386 pci_restore_state(pci_dev);
3387 rc = pci_enable_device(pci_dev);
3388 if (rc)
3389 return rc;
3390 pci_set_master(efx->pci_dev);
3391 rc = efx->type->reset(efx, RESET_TYPE_ALL);
3392 if (rc)
3393 return rc;
3394 rc = efx->type->init(efx);
3395 if (rc)
3396 return rc;
Jon Cooper261e4d92013-04-15 18:51:54 +01003397 rc = efx_pm_thaw(dev);
3398 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003399}
3400
3401static int efx_pm_suspend(struct device *dev)
3402{
3403 int rc;
3404
3405 efx_pm_freeze(dev);
3406 rc = efx_pm_poweroff(dev);
3407 if (rc)
3408 efx_pm_resume(dev);
3409 return rc;
3410}
3411
Ben Hutchings18e83e42012-01-05 19:05:20 +00003412static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00003413 .suspend = efx_pm_suspend,
3414 .resume = efx_pm_resume,
3415 .freeze = efx_pm_freeze,
3416 .thaw = efx_pm_thaw,
3417 .poweroff = efx_pm_poweroff,
3418 .restore = efx_pm_resume,
3419};
3420
Alexandre Rames626950d2013-01-14 17:20:22 +00003421/* A PCI error affecting this device was detected.
3422 * At this point MMIO and DMA may be disabled.
3423 * Stop the software path and request a slot reset.
3424 */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003425static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3426 enum pci_channel_state state)
Alexandre Rames626950d2013-01-14 17:20:22 +00003427{
3428 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3429 struct efx_nic *efx = pci_get_drvdata(pdev);
3430
3431 if (state == pci_channel_io_perm_failure)
3432 return PCI_ERS_RESULT_DISCONNECT;
3433
3434 rtnl_lock();
3435
3436 if (efx->state != STATE_DISABLED) {
3437 efx->state = STATE_RECOVERY;
3438 efx->reset_pending = 0;
3439
3440 efx_device_detach_sync(efx);
3441
3442 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003443 efx_disable_interrupts(efx);
Alexandre Rames626950d2013-01-14 17:20:22 +00003444
3445 status = PCI_ERS_RESULT_NEED_RESET;
3446 } else {
3447 /* If the interface is disabled we don't want to do anything
3448 * with it.
3449 */
3450 status = PCI_ERS_RESULT_RECOVERED;
3451 }
3452
3453 rtnl_unlock();
3454
3455 pci_disable_device(pdev);
3456
3457 return status;
3458}
3459
Joe Perchesdbedd442015-03-06 20:49:12 -08003460/* Fake a successful reset, which will be performed later in efx_io_resume. */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003461static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
Alexandre Rames626950d2013-01-14 17:20:22 +00003462{
3463 struct efx_nic *efx = pci_get_drvdata(pdev);
3464 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3465 int rc;
3466
3467 if (pci_enable_device(pdev)) {
3468 netif_err(efx, hw, efx->net_dev,
3469 "Cannot re-enable PCI device after reset.\n");
3470 status = PCI_ERS_RESULT_DISCONNECT;
3471 }
3472
3473 rc = pci_cleanup_aer_uncorrect_error_status(pdev);
3474 if (rc) {
3475 netif_err(efx, hw, efx->net_dev,
3476 "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc);
3477 /* Non-fatal error. Continue. */
3478 }
3479
3480 return status;
3481}
3482
3483/* Perform the actual reset and resume I/O operations. */
3484static void efx_io_resume(struct pci_dev *pdev)
3485{
3486 struct efx_nic *efx = pci_get_drvdata(pdev);
3487 int rc;
3488
3489 rtnl_lock();
3490
3491 if (efx->state == STATE_DISABLED)
3492 goto out;
3493
3494 rc = efx_reset(efx, RESET_TYPE_ALL);
3495 if (rc) {
3496 netif_err(efx, hw, efx->net_dev,
3497 "efx_reset failed after PCI error (%d)\n", rc);
3498 } else {
3499 efx->state = STATE_READY;
3500 netif_dbg(efx, hw, efx->net_dev,
3501 "Done resetting and resuming IO after PCI error.\n");
3502 }
3503
3504out:
3505 rtnl_unlock();
3506}
3507
3508/* For simplicity and reliability, we always require a slot reset and try to
3509 * reset the hardware when a pci error affecting the device is detected.
3510 * We leave both the link_reset and mmio_enabled callback unimplemented:
3511 * with our request for slot reset the mmio_enabled callback will never be
3512 * called, and the link_reset callback is not used by AER or EEH mechanisms.
3513 */
Julia Lawallc300366b2015-11-14 11:06:57 +01003514static const struct pci_error_handlers efx_err_handlers = {
Alexandre Rames626950d2013-01-14 17:20:22 +00003515 .error_detected = efx_io_error_detected,
3516 .slot_reset = efx_io_slot_reset,
3517 .resume = efx_io_resume,
3518};
3519
Ben Hutchings8ceee662008-04-27 12:55:59 +01003520static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00003521 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003522 .id_table = efx_pci_table,
3523 .probe = efx_pci_probe,
3524 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00003525 .driver.pm = &efx_pm_ops,
Alexandre Rames626950d2013-01-14 17:20:22 +00003526 .err_handler = &efx_err_handlers,
Shradha Shah834e23d2015-05-06 00:55:58 +01003527#ifdef CONFIG_SFC_SRIOV
3528 .sriov_configure = efx_pci_sriov_configure,
3529#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003530};
3531
3532/**************************************************************************
3533 *
3534 * Kernel module interface
3535 *
3536 *************************************************************************/
3537
3538module_param(interrupt_mode, uint, 0444);
3539MODULE_PARM_DESC(interrupt_mode,
3540 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
3541
3542static int __init efx_init_module(void)
3543{
3544 int rc;
3545
3546 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
3547
3548 rc = register_netdevice_notifier(&efx_netdev_notifier);
3549 if (rc)
3550 goto err_notifier;
3551
Shradha Shah7fa8d542015-05-06 00:55:13 +01003552#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003553 rc = efx_init_sriov();
3554 if (rc)
3555 goto err_sriov;
Shradha Shah7fa8d542015-05-06 00:55:13 +01003556#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003557
Steve Hodgson1ab00622008-12-12 21:33:02 -08003558 reset_workqueue = create_singlethread_workqueue("sfc_reset");
3559 if (!reset_workqueue) {
3560 rc = -ENOMEM;
3561 goto err_reset;
3562 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003563
3564 rc = pci_register_driver(&efx_pci_driver);
3565 if (rc < 0)
3566 goto err_pci;
3567
3568 return 0;
3569
3570 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08003571 destroy_workqueue(reset_workqueue);
3572 err_reset:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003573#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003574 efx_fini_sriov();
3575 err_sriov:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003576#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003577 unregister_netdevice_notifier(&efx_netdev_notifier);
3578 err_notifier:
3579 return rc;
3580}
3581
3582static void __exit efx_exit_module(void)
3583{
3584 printk(KERN_INFO "Solarflare NET driver unloading\n");
3585
3586 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003587 destroy_workqueue(reset_workqueue);
Shradha Shah7fa8d542015-05-06 00:55:13 +01003588#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003589 efx_fini_sriov();
Shradha Shah7fa8d542015-05-06 00:55:13 +01003590#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003591 unregister_netdevice_notifier(&efx_netdev_notifier);
3592
3593}
3594
3595module_init(efx_init_module);
3596module_exit(efx_exit_module);
3597
Ben Hutchings906bb262009-11-29 15:16:19 +00003598MODULE_AUTHOR("Solarflare Communications and "
3599 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings6a350fd2014-02-12 19:00:07 +00003600MODULE_DESCRIPTION("Solarflare network driver");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003601MODULE_LICENSE("GPL");
3602MODULE_DEVICE_TABLE(pci, efx_pci_table);