blob: ebeecb8fed451247caf01f43c0df4f74f3208b80 [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",
Alexandre Rames3de82b92013-06-13 11:36:15 +010085 [RESET_TYPE_DMA_ERROR] = "DMA_ERROR",
Alexandre Rames626950d2013-01-14 17:20:22 +000086 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
87 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
Edward Creee2835462014-04-16 19:27:48 +010088 [RESET_TYPE_MCDI_TIMEOUT] = "MCDI_TIMEOUT (FLR)",
Ben Hutchingsc4593022009-11-23 16:08:17 +000089};
90
Steve Hodgson1ab00622008-12-12 21:33:02 -080091/* Reset workqueue. If any NIC has a hardware failure then a reset will be
92 * queued onto this work queue. This is not a per-nic work queue, because
93 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
94 */
95static struct workqueue_struct *reset_workqueue;
96
Jon Cooper74cd60a2013-09-16 14:18:51 +010097/* How often and how many times to poll for a reset while waiting for a
98 * BIST that another function started to complete.
99 */
100#define BIST_WAIT_DELAY_MS 100
101#define BIST_WAIT_DELAY_COUNT 100
102
Ben Hutchings8ceee662008-04-27 12:55:59 +0100103/**************************************************************************
104 *
105 * Configurable values
106 *
107 *************************************************************************/
108
109/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100110 * Use separate channels for TX and RX events
111 *
Neil Turton28b581a2008-12-12 21:41:06 -0800112 * Set this to 1 to use separate channels for TX and RX. It allows us
113 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100114 *
Neil Turton28b581a2008-12-12 21:41:06 -0800115 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100116 */
Shradha Shahb0fbdae2015-08-28 10:55:42 +0100117bool efx_separate_tx_channels;
118module_param(efx_separate_tx_channels, bool, 0444);
119MODULE_PARM_DESC(efx_separate_tx_channels,
Neil Turton28b581a2008-12-12 21:41:06 -0800120 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100121
122/* This is the weight assigned to each of the (per-channel) virtual
123 * NAPI devices.
124 */
125static int napi_weight = 64;
126
127/* This is the time (in jiffies) between invocations of the hardware
Alexandre Rames626950d2013-01-14 17:20:22 +0000128 * monitor.
129 * On Falcon-based NICs, this will:
Ben Hutchingse254c272010-09-20 08:44:10 +0000130 * - Check the on-board hardware monitor;
131 * - Poll the link state and reconfigure the hardware as necessary.
Alexandre Rames626950d2013-01-14 17:20:22 +0000132 * On Siena-based NICs for power systems with EEH support, this will give EEH a
133 * chance to start.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100134 */
stephen hemmingerd2156972010-10-18 05:27:31 +0000135static unsigned int efx_monitor_interval = 1 * HZ;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100136
Ben Hutchings8ceee662008-04-27 12:55:59 +0100137/* Initial interrupt moderation settings. They can be modified after
138 * module load with ethtool.
139 *
140 * The default for RX should strike a balance between increasing the
141 * round-trip latency and reducing overhead.
142 */
143static unsigned int rx_irq_mod_usec = 60;
144
145/* Initial interrupt moderation settings. They can be modified after
146 * module load with ethtool.
147 *
148 * This default is chosen to ensure that a 10G link does not go idle
149 * while a TX queue is stopped after it has become full. A queue is
150 * restarted when it drops below half full. The time this takes (assuming
151 * worst case 3 descriptors per packet and 1024 descriptors) is
152 * 512 / 3 * 1.2 = 205 usec.
153 */
154static unsigned int tx_irq_mod_usec = 150;
155
156/* This is the first interrupt mode to try out of:
157 * 0 => MSI-X
158 * 1 => MSI
159 * 2 => legacy
160 */
161static unsigned int interrupt_mode;
162
163/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
164 * i.e. the number of CPUs among which we may distribute simultaneous
165 * interrupt handling.
166 *
167 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
Ben Hutchingscdb08f82011-12-20 01:08:05 +0000168 * The default (0) means to assign an interrupt to each core.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100169 */
170static unsigned int rss_cpus;
171module_param(rss_cpus, uint, 0444);
172MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
173
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000174static bool phy_flash_cfg;
175module_param(phy_flash_cfg, bool, 0644);
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800176MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
177
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000178static unsigned irq_adapt_low_thresh = 8000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000179module_param(irq_adapt_low_thresh, uint, 0644);
180MODULE_PARM_DESC(irq_adapt_low_thresh,
181 "Threshold score for reducing IRQ moderation");
182
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000183static unsigned irq_adapt_high_thresh = 16000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000184module_param(irq_adapt_high_thresh, uint, 0644);
185MODULE_PARM_DESC(irq_adapt_high_thresh,
186 "Threshold score for increasing IRQ moderation");
187
Ben Hutchings62776d02010-06-23 11:30:07 +0000188static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
189 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
190 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
191 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
192module_param(debug, uint, 0);
193MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
194
Ben Hutchings8ceee662008-04-27 12:55:59 +0100195/**************************************************************************
196 *
197 * Utility functions and prototypes
198 *
199 *************************************************************************/
Ben Hutchings46426102010-09-10 06:42:33 +0000200
Jon Cooper261e4d92013-04-15 18:51:54 +0100201static int efx_soft_enable_interrupts(struct efx_nic *efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100202static void efx_soft_disable_interrupts(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000203static void efx_remove_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000204static void efx_remove_channels(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000205static const struct efx_channel_type efx_default_channel_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100206static void efx_remove_port(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000207static void efx_init_napi_channel(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100208static void efx_fini_napi(struct efx_nic *efx);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000209static void efx_fini_napi_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000210static void efx_fini_struct(struct efx_nic *efx);
211static void efx_start_all(struct efx_nic *efx);
212static void efx_stop_all(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100213
214#define EFX_ASSERT_RESET_SERIALISED(efx) \
215 do { \
Ben Hutchingsf16aeea2012-07-27 19:31:16 +0100216 if ((efx->state == STATE_READY) || \
Alexandre Rames626950d2013-01-14 17:20:22 +0000217 (efx->state == STATE_RECOVERY) || \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000218 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100219 ASSERT_RTNL(); \
220 } while (0)
221
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100222static int efx_check_disabled(struct efx_nic *efx)
223{
Alexandre Rames626950d2013-01-14 17:20:22 +0000224 if (efx->state == STATE_DISABLED || efx->state == STATE_RECOVERY) {
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100225 netif_err(efx, drv, efx->net_dev,
226 "device is disabled due to earlier errors\n");
227 return -EIO;
228 }
229 return 0;
230}
231
Ben Hutchings8ceee662008-04-27 12:55:59 +0100232/**************************************************************************
233 *
234 * Event queue processing
235 *
236 *************************************************************************/
237
238/* Process channel's event queue
239 *
240 * This function is responsible for processing the event queue of a
241 * single channel. The caller must guarantee that this function will
242 * never be concurrently called more than once on the same channel,
243 * though different channels may be being processed concurrently.
244 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000245static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100246{
Peter Dunningc9368352015-07-08 10:05:10 +0100247 struct efx_tx_queue *tx_queue;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000248 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100249
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000250 if (unlikely(!channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100251 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100252
Peter Dunningc9368352015-07-08 10:05:10 +0100253 efx_for_each_channel_tx_queue(tx_queue, channel) {
254 tx_queue->pkts_compl = 0;
255 tx_queue->bytes_compl = 0;
256 }
257
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000258 spent = efx_nic_process_eventq(channel, budget);
Ben Hutchingsd9ab7002012-02-13 23:29:16 +0000259 if (spent && efx_channel_has_rx_queue(channel)) {
260 struct efx_rx_queue *rx_queue =
261 efx_channel_get_rx_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100262
Ben Hutchingsff734ef2013-01-29 23:33:14 +0000263 efx_rx_flush_packet(channel);
Jon Coopercce28792013-10-02 11:04:14 +0100264 efx_fast_push_rx_descriptors(rx_queue, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100265 }
266
Peter Dunningc9368352015-07-08 10:05:10 +0100267 /* Update BQL */
268 efx_for_each_channel_tx_queue(tx_queue, channel) {
269 if (tx_queue->bytes_compl) {
270 netdev_tx_completed_queue(tx_queue->core_txq,
271 tx_queue->pkts_compl, tx_queue->bytes_compl);
272 }
273 }
274
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000275 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100276}
277
Ben Hutchings8ceee662008-04-27 12:55:59 +0100278/* NAPI poll handler
279 *
280 * NAPI guarantees serialisation of polls of the same device, which
281 * provides the guarantee required by efx_process_channel().
282 */
Bert Kenward539de7c2016-08-11 13:02:09 +0100283static void efx_update_irq_mod(struct efx_nic *efx, struct efx_channel *channel)
284{
285 int step = efx->irq_mod_step_us;
286
287 if (channel->irq_mod_score < irq_adapt_low_thresh) {
288 if (channel->irq_moderation_us > step) {
289 channel->irq_moderation_us -= step;
290 efx->type->push_irq_moderation(channel);
291 }
292 } else if (channel->irq_mod_score > irq_adapt_high_thresh) {
293 if (channel->irq_moderation_us <
294 efx->irq_rx_moderation_us) {
295 channel->irq_moderation_us += step;
296 efx->type->push_irq_moderation(channel);
297 }
298 }
299
300 channel->irq_count = 0;
301 channel->irq_mod_score = 0;
302}
303
Ben Hutchings8ceee662008-04-27 12:55:59 +0100304static int efx_poll(struct napi_struct *napi, int budget)
305{
306 struct efx_channel *channel =
307 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000308 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000309 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100310
Alexandre Rames36763262014-07-22 14:03:25 +0100311 if (!efx_channel_lock_napi(channel))
312 return budget;
313
Ben Hutchings62776d02010-06-23 11:30:07 +0000314 netif_vdbg(efx, intr, efx->net_dev,
315 "channel %d NAPI poll executing on CPU %d\n",
316 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100317
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000318 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100319
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000320 if (spent < budget) {
Ben Hutchings9d9a6972012-02-10 23:01:48 +0000321 if (efx_channel_has_rx_queue(channel) &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000322 efx->irq_rx_adaptive &&
323 unlikely(++channel->irq_count == 1000)) {
Bert Kenward539de7c2016-08-11 13:02:09 +0100324 efx_update_irq_mod(efx, channel);
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000325 }
326
Ben Hutchings64d8ad62011-01-05 00:50:41 +0000327 efx_filter_rfs_expire(channel);
328
Ben Hutchings8ceee662008-04-27 12:55:59 +0100329 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800330 * only wait for napi_complete(), this isn't a problem
Ben Hutchings514bedb2012-10-05 19:30:16 +0100331 * since efx_nic_eventq_read_ack() will have no effect if
Ben Hutchings8ceee662008-04-27 12:55:59 +0100332 * interrupts have already been disabled.
333 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800334 napi_complete(napi);
Ben Hutchings514bedb2012-10-05 19:30:16 +0100335 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100336 }
337
Alexandre Rames36763262014-07-22 14:03:25 +0100338 efx_channel_unlock_napi(channel);
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000339 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100340}
341
Ben Hutchings8ceee662008-04-27 12:55:59 +0100342/* Create event queue
343 * Event queue memory allocations are done only once. If the channel
344 * is reset, the memory buffer will be reused; this guards against
345 * errors during channel reset and also simplifies interrupt handling.
346 */
347static int efx_probe_eventq(struct efx_channel *channel)
348{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000349 struct efx_nic *efx = channel->efx;
350 unsigned long entries;
351
Ben Hutchings86ee5302012-01-09 19:51:22 +0000352 netif_dbg(efx, probe, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000353 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100354
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000355 /* Build an event queue with room for one event per tx and rx buffer,
356 * plus some extra for link state events and MCDI completions. */
357 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
Edward Creee01b16a2016-12-02 15:51:33 +0000358 EFX_WARN_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000359 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
360
Ben Hutchings152b6a62009-11-29 03:43:56 +0000361 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100362}
363
364/* Prepare channel's event queue */
Jon Cooper261e4d92013-04-15 18:51:54 +0100365static int efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100366{
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100367 struct efx_nic *efx = channel->efx;
Jon Cooper261e4d92013-04-15 18:51:54 +0100368 int rc;
369
370 EFX_WARN_ON_PARANOID(channel->eventq_init);
371
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100372 netif_dbg(efx, drv, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000373 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100374
Jon Cooper261e4d92013-04-15 18:51:54 +0100375 rc = efx_nic_init_eventq(channel);
376 if (rc == 0) {
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100377 efx->type->push_irq_moderation(channel);
Jon Cooper261e4d92013-04-15 18:51:54 +0100378 channel->eventq_read_ptr = 0;
379 channel->eventq_init = true;
380 }
381 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100382}
383
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000384/* Enable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100385void efx_start_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000386{
387 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
388 "chan %d start event queue\n", channel->channel);
389
Ben Hutchings514bedb2012-10-05 19:30:16 +0100390 /* Make sure the NAPI handler sees the enabled flag set */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000391 channel->enabled = true;
392 smp_wmb();
393
Alexandre Rames36763262014-07-22 14:03:25 +0100394 efx_channel_enable(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000395 napi_enable(&channel->napi_str);
396 efx_nic_eventq_read_ack(channel);
397}
398
399/* Disable event queue processing and NAPI */
Alexandre Rames36763262014-07-22 14:03:25 +0100400void efx_stop_eventq(struct efx_channel *channel)
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000401{
402 if (!channel->enabled)
403 return;
404
405 napi_disable(&channel->napi_str);
Alexandre Rames36763262014-07-22 14:03:25 +0100406 while (!efx_channel_disable(channel))
407 usleep_range(1000, 20000);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000408 channel->enabled = false;
409}
410
Ben Hutchings8ceee662008-04-27 12:55:59 +0100411static void efx_fini_eventq(struct efx_channel *channel)
412{
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100413 if (!channel->eventq_init)
414 return;
415
Ben Hutchings62776d02010-06-23 11:30:07 +0000416 netif_dbg(channel->efx, drv, channel->efx->net_dev,
417 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100418
Ben Hutchings152b6a62009-11-29 03:43:56 +0000419 efx_nic_fini_eventq(channel);
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100420 channel->eventq_init = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100421}
422
423static void efx_remove_eventq(struct efx_channel *channel)
424{
Ben Hutchings62776d02010-06-23 11:30:07 +0000425 netif_dbg(channel->efx, drv, channel->efx->net_dev,
426 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100427
Ben Hutchings152b6a62009-11-29 03:43:56 +0000428 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100429}
430
431/**************************************************************************
432 *
433 * Channel handling
434 *
435 *************************************************************************/
436
Ben Hutchings7f967c02012-02-13 23:45:02 +0000437/* Allocate and initialise a channel structure. */
Ben Hutchings46426102010-09-10 06:42:33 +0000438static struct efx_channel *
439efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
440{
441 struct efx_channel *channel;
442 struct efx_rx_queue *rx_queue;
443 struct efx_tx_queue *tx_queue;
444 int j;
445
Ben Hutchings7f967c02012-02-13 23:45:02 +0000446 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
447 if (!channel)
448 return NULL;
Ben Hutchings46426102010-09-10 06:42:33 +0000449
Ben Hutchings7f967c02012-02-13 23:45:02 +0000450 channel->efx = efx;
451 channel->channel = i;
452 channel->type = &efx_default_channel_type;
Ben Hutchings46426102010-09-10 06:42:33 +0000453
Ben Hutchings7f967c02012-02-13 23:45:02 +0000454 for (j = 0; j < EFX_TXQ_TYPES; j++) {
455 tx_queue = &channel->tx_queue[j];
456 tx_queue->efx = efx;
457 tx_queue->queue = i * EFX_TXQ_TYPES + j;
458 tx_queue->channel = channel;
Ben Hutchings46426102010-09-10 06:42:33 +0000459 }
460
Ben Hutchings46426102010-09-10 06:42:33 +0000461 rx_queue = &channel->rx_queue;
462 rx_queue->efx = efx;
463 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
464 (unsigned long)rx_queue);
465
466 return channel;
467}
468
Ben Hutchings7f967c02012-02-13 23:45:02 +0000469/* Allocate and initialise a channel structure, copying parameters
470 * (but not resources) from an old channel structure.
471 */
472static struct efx_channel *
473efx_copy_channel(const struct efx_channel *old_channel)
474{
475 struct efx_channel *channel;
476 struct efx_rx_queue *rx_queue;
477 struct efx_tx_queue *tx_queue;
478 int j;
479
480 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
481 if (!channel)
482 return NULL;
483
484 *channel = *old_channel;
485
486 channel->napi_dev = NULL;
Bert Kenward46d054f2016-11-11 15:56:51 +0000487 INIT_HLIST_NODE(&channel->napi_str.napi_hash_node);
488 channel->napi_str.napi_id = 0;
489 channel->napi_str.state = 0;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000490 memset(&channel->eventq, 0, sizeof(channel->eventq));
491
492 for (j = 0; j < EFX_TXQ_TYPES; j++) {
493 tx_queue = &channel->tx_queue[j];
494 if (tx_queue->channel)
495 tx_queue->channel = channel;
496 tx_queue->buffer = NULL;
497 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
498 }
499
500 rx_queue = &channel->rx_queue;
501 rx_queue->buffer = NULL;
502 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
503 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
504 (unsigned long)rx_queue);
505
506 return channel;
507}
508
Ben Hutchings8ceee662008-04-27 12:55:59 +0100509static int efx_probe_channel(struct efx_channel *channel)
510{
511 struct efx_tx_queue *tx_queue;
512 struct efx_rx_queue *rx_queue;
513 int rc;
514
Ben Hutchings62776d02010-06-23 11:30:07 +0000515 netif_dbg(channel->efx, probe, channel->efx->net_dev,
516 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100517
Ben Hutchings7f967c02012-02-13 23:45:02 +0000518 rc = channel->type->pre_probe(channel);
519 if (rc)
520 goto fail;
521
Ben Hutchings8ceee662008-04-27 12:55:59 +0100522 rc = efx_probe_eventq(channel);
523 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000524 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100525
526 efx_for_each_channel_tx_queue(tx_queue, channel) {
527 rc = efx_probe_tx_queue(tx_queue);
528 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000529 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100530 }
531
532 efx_for_each_channel_rx_queue(rx_queue, channel) {
533 rc = efx_probe_rx_queue(rx_queue);
534 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000535 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100536 }
537
Ben Hutchings8ceee662008-04-27 12:55:59 +0100538 return 0;
539
Ben Hutchings7f967c02012-02-13 23:45:02 +0000540fail:
541 efx_remove_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100542 return rc;
543}
544
Ben Hutchings7f967c02012-02-13 23:45:02 +0000545static void
546efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
547{
548 struct efx_nic *efx = channel->efx;
549 const char *type;
550 int number;
551
552 number = channel->channel;
553 if (efx->tx_channel_offset == 0) {
554 type = "";
555 } else if (channel->channel < efx->tx_channel_offset) {
556 type = "-rx";
557 } else {
558 type = "-tx";
559 number -= efx->tx_channel_offset;
560 }
561 snprintf(buf, len, "%s%s-%d", efx->name, type, number);
562}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100563
Ben Hutchings56536e92008-12-12 21:37:02 -0800564static void efx_set_channel_names(struct efx_nic *efx)
565{
566 struct efx_channel *channel;
Ben Hutchings56536e92008-12-12 21:37:02 -0800567
Ben Hutchings7f967c02012-02-13 23:45:02 +0000568 efx_for_each_channel(channel, efx)
569 channel->type->get_name(channel,
Ben Hutchingsd8291182012-10-05 23:35:41 +0100570 efx->msi_context[channel->channel].name,
571 sizeof(efx->msi_context[0].name));
Ben Hutchings56536e92008-12-12 21:37:02 -0800572}
573
Ben Hutchings46426102010-09-10 06:42:33 +0000574static int efx_probe_channels(struct efx_nic *efx)
575{
576 struct efx_channel *channel;
577 int rc;
578
579 /* Restart special buffer allocation */
580 efx->next_buffer_table = 0;
581
Ben Hutchingsc92aaff2012-02-21 23:22:00 +0000582 /* Probe channels in reverse, so that any 'extra' channels
583 * use the start of the buffer table. This allows the traffic
584 * channels to be resized without moving them or wasting the
585 * entries before them.
586 */
587 efx_for_each_channel_rev(channel, efx) {
Ben Hutchings46426102010-09-10 06:42:33 +0000588 rc = efx_probe_channel(channel);
589 if (rc) {
590 netif_err(efx, probe, efx->net_dev,
591 "failed to create channel %d\n",
592 channel->channel);
593 goto fail;
594 }
595 }
596 efx_set_channel_names(efx);
597
598 return 0;
599
600fail:
601 efx_remove_channels(efx);
602 return rc;
603}
604
Ben Hutchings8ceee662008-04-27 12:55:59 +0100605/* Channels are shutdown and reinitialised whilst the NIC is running
606 * to propagate configuration changes (mtu, checksum offload), or
607 * to clear hardware error conditions
608 */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000609static void efx_start_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100610{
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100611 netdev_features_t old_features = efx->net_dev->features;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000612 bool old_rx_scatter = efx->rx_scatter;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100613 struct efx_tx_queue *tx_queue;
614 struct efx_rx_queue *rx_queue;
615 struct efx_channel *channel;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000616 size_t rx_buf_len;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100617
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100618 /* Calculate the rx buffer allocation parameters required to
619 * support the current MTU, including padding for header
620 * alignment and overruns.
621 */
Jon Cooper43a37392012-10-18 15:49:54 +0100622 efx->rx_dma_len = (efx->rx_prefix_size +
Ben Hutchings272baee2013-01-29 23:33:14 +0000623 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
624 efx->type->rx_buffer_padding);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000625 rx_buf_len = (sizeof(struct efx_rx_page_state) +
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400626 efx->rx_ip_align + efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000627 if (rx_buf_len <= PAGE_SIZE) {
Jon Coopere8c68c02013-03-08 10:18:28 +0000628 efx->rx_scatter = efx->type->always_rx_scatter;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000629 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000630 } else if (efx->type->can_rx_scatter) {
Ben Hutchings950c54d2013-05-13 12:01:22 +0000631 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000632 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
Ben Hutchings950c54d2013-05-13 12:01:22 +0000633 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
634 EFX_RX_BUF_ALIGNMENT) >
635 PAGE_SIZE);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000636 efx->rx_scatter = true;
637 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
638 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000639 } else {
640 efx->rx_scatter = false;
641 efx->rx_buffer_order = get_order(rx_buf_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000642 }
643
Daniel Pieczko1648a232013-02-13 10:54:41 +0000644 efx_rx_config_page_split(efx);
645 if (efx->rx_buffer_order)
646 netif_dbg(efx, drv, efx->net_dev,
647 "RX buf len=%u; page order=%u batch=%u\n",
648 efx->rx_dma_len, efx->rx_buffer_order,
649 efx->rx_pages_per_batch);
650 else
651 netif_dbg(efx, drv, efx->net_dev,
652 "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
653 efx->rx_dma_len, efx->rx_page_buf_step,
654 efx->rx_bufs_per_page, efx->rx_pages_per_batch);
Daniel Pieczko27689352013-02-13 10:54:41 +0000655
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +0100656 /* Restore previously fixed features in hw_features and remove
657 * features which are fixed now
658 */
659 efx->net_dev->hw_features |= efx->net_dev->features;
660 efx->net_dev->hw_features &= ~efx->fixed_features;
661 efx->net_dev->features |= efx->fixed_features;
662 if (efx->net_dev->features != old_features)
663 netdev_features_change(efx->net_dev);
664
Jon Coopere8c68c02013-03-08 10:18:28 +0000665 /* RX filters may also have scatter-enabled flags */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000666 if (efx->rx_scatter != old_rx_scatter)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000667 efx->type->filter_update_rx_scatter(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100668
Ben Hutchings14bf7182012-05-22 01:27:58 +0100669 /* We must keep at least one descriptor in a TX ring empty.
670 * We could avoid this when the queue size does not exactly
671 * match the hardware ring size, but it's not that important.
672 * Therefore we stop the queue when one more skb might fill
673 * the ring completely. We wake it when half way back to
674 * empty.
675 */
676 efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
677 efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
678
Ben Hutchings8ceee662008-04-27 12:55:59 +0100679 /* Initialise the channels */
680 efx_for_each_channel(channel, efx) {
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100681 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100682 efx_init_tx_queue(tx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100683 atomic_inc(&efx->active_queues);
684 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100685
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000686 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100687 efx_init_rx_queue(rx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100688 atomic_inc(&efx->active_queues);
Jon Coopercce28792013-10-02 11:04:14 +0100689 efx_stop_eventq(channel);
690 efx_fast_push_rx_descriptors(rx_queue, false);
691 efx_start_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000692 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100693
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000694 WARN_ON(channel->rx_pkt_n_frags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100695 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000696
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000697 efx_ptp_start_datapath(efx);
698
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000699 if (netif_device_present(efx->net_dev))
700 netif_tx_wake_all_queues(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100701}
702
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000703static void efx_stop_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100704{
705 struct efx_channel *channel;
706 struct efx_tx_queue *tx_queue;
707 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100708 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100709
710 EFX_ASSERT_RESET_SERIALISED(efx);
711 BUG_ON(efx->port_enabled);
712
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000713 efx_ptp_stop_datapath(efx);
714
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100715 /* Stop RX refill */
716 efx_for_each_channel(channel, efx) {
717 efx_for_each_channel_rx_queue(rx_queue, channel)
718 rx_queue->refill_enabled = false;
719 }
720
Ben Hutchings8ceee662008-04-27 12:55:59 +0100721 efx_for_each_channel(channel, efx) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000722 /* RX packet processing is pipelined, so wait for the
723 * NAPI handler to complete. At least event queue 0
724 * might be kept active by non-data events, so don't
725 * use napi_synchronize() but actually disable NAPI
726 * temporarily.
727 */
728 if (efx_channel_has_rx_queue(channel)) {
729 efx_stop_eventq(channel);
730 efx_start_eventq(channel);
731 }
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100732 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100733
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100734 rc = efx->type->fini_dmaq(efx);
Edward Cree5a6681e2016-11-28 18:55:34 +0000735 if (rc) {
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100736 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
737 } else {
738 netif_dbg(efx, drv, efx->net_dev,
739 "successfully flushed all queues\n");
740 }
741
742 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100743 efx_for_each_channel_rx_queue(rx_queue, channel)
744 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000745 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100746 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100747 }
748}
749
750static void efx_remove_channel(struct efx_channel *channel)
751{
752 struct efx_tx_queue *tx_queue;
753 struct efx_rx_queue *rx_queue;
754
Ben Hutchings62776d02010-06-23 11:30:07 +0000755 netif_dbg(channel->efx, drv, channel->efx->net_dev,
756 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100757
758 efx_for_each_channel_rx_queue(rx_queue, channel)
759 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000760 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100761 efx_remove_tx_queue(tx_queue);
762 efx_remove_eventq(channel);
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100763 channel->type->post_remove(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100764}
765
Ben Hutchings46426102010-09-10 06:42:33 +0000766static void efx_remove_channels(struct efx_nic *efx)
767{
768 struct efx_channel *channel;
769
770 efx_for_each_channel(channel, efx)
771 efx_remove_channel(channel);
772}
773
774int
775efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
776{
777 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
778 u32 old_rxq_entries, old_txq_entries;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000779 unsigned i, next_buffer_table = 0;
Jon Cooper261e4d92013-04-15 18:51:54 +0100780 int rc, rc2;
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100781
782 rc = efx_check_disabled(efx);
783 if (rc)
784 return rc;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000785
786 /* Not all channels should be reallocated. We must avoid
787 * reallocating their buffer table entries.
788 */
789 efx_for_each_channel(channel, efx) {
790 struct efx_rx_queue *rx_queue;
791 struct efx_tx_queue *tx_queue;
792
793 if (channel->type->copy)
794 continue;
795 next_buffer_table = max(next_buffer_table,
796 channel->eventq.index +
797 channel->eventq.entries);
798 efx_for_each_channel_rx_queue(rx_queue, channel)
799 next_buffer_table = max(next_buffer_table,
800 rx_queue->rxd.index +
801 rx_queue->rxd.entries);
802 efx_for_each_channel_tx_queue(tx_queue, channel)
803 next_buffer_table = max(next_buffer_table,
804 tx_queue->txd.index +
805 tx_queue->txd.entries);
806 }
Ben Hutchings46426102010-09-10 06:42:33 +0000807
Ben Hutchings29c69a42013-01-28 19:01:06 +0000808 efx_device_detach_sync(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000809 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100810 efx_soft_disable_interrupts(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000811
Ben Hutchings7f967c02012-02-13 23:45:02 +0000812 /* Clone channels (where possible) */
Ben Hutchings46426102010-09-10 06:42:33 +0000813 memset(other_channel, 0, sizeof(other_channel));
814 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000815 channel = efx->channel[i];
816 if (channel->type->copy)
817 channel = channel->type->copy(channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000818 if (!channel) {
819 rc = -ENOMEM;
820 goto out;
821 }
822 other_channel[i] = channel;
823 }
824
825 /* Swap entry counts and channel pointers */
826 old_rxq_entries = efx->rxq_entries;
827 old_txq_entries = efx->txq_entries;
828 efx->rxq_entries = rxq_entries;
829 efx->txq_entries = txq_entries;
830 for (i = 0; i < efx->n_channels; i++) {
831 channel = efx->channel[i];
832 efx->channel[i] = other_channel[i];
833 other_channel[i] = channel;
834 }
835
Ben Hutchings7f967c02012-02-13 23:45:02 +0000836 /* Restart buffer table allocation */
837 efx->next_buffer_table = next_buffer_table;
Ben Hutchings46426102010-09-10 06:42:33 +0000838
Ben Hutchingse8f14992010-12-07 19:47:34 +0000839 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000840 channel = efx->channel[i];
841 if (!channel->type->copy)
842 continue;
843 rc = efx_probe_channel(channel);
844 if (rc)
845 goto rollback;
846 efx_init_napi_channel(efx->channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000847 }
Ben Hutchings46426102010-09-10 06:42:33 +0000848
Ben Hutchings7f967c02012-02-13 23:45:02 +0000849out:
850 /* Destroy unused channel structures */
851 for (i = 0; i < efx->n_channels; i++) {
852 channel = other_channel[i];
853 if (channel && channel->type->copy) {
854 efx_fini_napi_channel(channel);
855 efx_remove_channel(channel);
856 kfree(channel);
857 }
858 }
859
Jon Cooper261e4d92013-04-15 18:51:54 +0100860 rc2 = efx_soft_enable_interrupts(efx);
861 if (rc2) {
862 rc = rc ? rc : rc2;
863 netif_err(efx, drv, efx->net_dev,
864 "unable to restart interrupts on channel reallocation\n");
865 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
866 } else {
867 efx_start_all(efx);
868 netif_device_attach(efx->net_dev);
869 }
Ben Hutchings46426102010-09-10 06:42:33 +0000870 return rc;
871
872rollback:
873 /* Swap back */
874 efx->rxq_entries = old_rxq_entries;
875 efx->txq_entries = old_txq_entries;
876 for (i = 0; i < efx->n_channels; i++) {
877 channel = efx->channel[i];
878 efx->channel[i] = other_channel[i];
879 other_channel[i] = channel;
880 }
881 goto out;
882}
883
Steve Hodgson90d683a2010-06-01 11:19:39 +0000884void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100885{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000886 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100887}
888
Ben Hutchings7f967c02012-02-13 23:45:02 +0000889static const struct efx_channel_type efx_default_channel_type = {
890 .pre_probe = efx_channel_dummy_op_int,
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100891 .post_remove = efx_channel_dummy_op_void,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000892 .get_name = efx_get_channel_name,
893 .copy = efx_copy_channel,
894 .keep_eventq = false,
895};
896
897int efx_channel_dummy_op_int(struct efx_channel *channel)
898{
899 return 0;
900}
901
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100902void efx_channel_dummy_op_void(struct efx_channel *channel)
903{
904}
905
Ben Hutchings8ceee662008-04-27 12:55:59 +0100906/**************************************************************************
907 *
908 * Port handling
909 *
910 **************************************************************************/
911
912/* This ensures that the kernel is kept informed (via
913 * netif_carrier_on/off) of the link status, and also maintains the
914 * link status's stop on the port's TX queue.
915 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000916void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100917{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000918 struct efx_link_state *link_state = &efx->link_state;
919
Ben Hutchings8ceee662008-04-27 12:55:59 +0100920 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
921 * that no events are triggered between unregister_netdev() and the
922 * driver unloading. A more general condition is that NETDEV_CHANGE
923 * can only be generated between NETDEV_UP and NETDEV_DOWN */
924 if (!netif_running(efx->net_dev))
925 return;
926
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000927 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100928 efx->n_link_state_changes++;
929
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000930 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100931 netif_carrier_on(efx->net_dev);
932 else
933 netif_carrier_off(efx->net_dev);
934 }
935
936 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000937 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000938 netif_info(efx, link, efx->net_dev,
Ben Hutchings964e6132012-11-19 23:08:22 +0000939 "link up at %uMbps %s-duplex (MTU %d)\n",
Ben Hutchings62776d02010-06-23 11:30:07 +0000940 link_state->speed, link_state->fd ? "full" : "half",
Ben Hutchings964e6132012-11-19 23:08:22 +0000941 efx->net_dev->mtu);
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000942 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000943 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100944}
945
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000946void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
947{
948 efx->link_advertising = advertising;
949 if (advertising) {
950 if (advertising & ADVERTISED_Pause)
951 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
952 else
953 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
954 if (advertising & ADVERTISED_Asym_Pause)
955 efx->wanted_fc ^= EFX_FC_TX;
956 }
957}
958
David S. Millerb56269462011-05-17 17:53:22 -0400959void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000960{
961 efx->wanted_fc = wanted_fc;
962 if (efx->link_advertising) {
963 if (wanted_fc & EFX_FC_RX)
964 efx->link_advertising |= (ADVERTISED_Pause |
965 ADVERTISED_Asym_Pause);
966 else
967 efx->link_advertising &= ~(ADVERTISED_Pause |
968 ADVERTISED_Asym_Pause);
969 if (wanted_fc & EFX_FC_TX)
970 efx->link_advertising ^= ADVERTISED_Asym_Pause;
971 }
972}
973
Ben Hutchings115122a2009-03-04 09:52:52 +0000974static void efx_fini_port(struct efx_nic *efx);
975
Edward Cree0d322412015-05-20 11:10:03 +0100976/* We assume that efx->type->reconfigure_mac will always try to sync RX
977 * filters and therefore needs to read-lock the filter table against freeing
978 */
979void efx_mac_reconfigure(struct efx_nic *efx)
980{
981 down_read(&efx->filter_sem);
982 efx->type->reconfigure_mac(efx);
983 up_read(&efx->filter_sem);
984}
985
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000986/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
987 * the MAC appropriately. All other PHY configuration changes are pushed
988 * through phy_op->set_settings(), and pushed asynchronously to the MAC
989 * through efx_monitor().
990 *
991 * Callers must hold the mac_lock
992 */
993int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100994{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000995 enum efx_phy_mode phy_mode;
996 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100997
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000998 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100999
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001000 /* Disable PHY transmit in mac level loopbacks */
1001 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001002 if (LOOPBACK_INTERNAL(efx))
1003 efx->phy_mode |= PHY_MODE_TX_DISABLED;
1004 else
1005 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001006
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001007 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001008
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001009 if (rc)
1010 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001011
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001012 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001013}
1014
1015/* Reinitialise the MAC to pick up new PHY settings, even if the port is
1016 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001017int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001018{
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001019 int rc;
1020
Ben Hutchings8ceee662008-04-27 12:55:59 +01001021 EFX_ASSERT_RESET_SERIALISED(efx);
1022
1023 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001024 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001025 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001026
1027 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001028}
1029
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001030/* Asynchronous work item for changing MAC promiscuity and multicast
1031 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
1032 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001033static void efx_mac_work(struct work_struct *data)
1034{
1035 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
1036
1037 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +01001038 if (efx->port_enabled)
Edward Cree0d322412015-05-20 11:10:03 +01001039 efx_mac_reconfigure(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001040 mutex_unlock(&efx->mac_lock);
1041}
1042
Ben Hutchings8ceee662008-04-27 12:55:59 +01001043static int efx_probe_port(struct efx_nic *efx)
1044{
1045 int rc;
1046
Ben Hutchings62776d02010-06-23 11:30:07 +00001047 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001048
Steve Hodgsonff3b00a2009-12-23 13:46:36 +00001049 if (phy_flash_cfg)
1050 efx->phy_mode = PHY_MODE_SPECIAL;
1051
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001052 /* Connect up MAC/PHY operations table */
1053 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001054 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +00001055 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001056
Ben Hutchingse332bcb2011-12-20 01:22:51 +00001057 /* Initialise MAC address to permanent address */
Edward Creecd84ff42014-03-07 18:27:41 +00001058 ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001059
1060 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001061}
1062
1063static int efx_init_port(struct efx_nic *efx)
1064{
1065 int rc;
1066
Ben Hutchings62776d02010-06-23 11:30:07 +00001067 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001068
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001069 mutex_lock(&efx->mac_lock);
1070
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001071 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001072 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001073 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001074
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001075 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001076
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001077 /* Reconfigure the MAC before creating dma queues (required for
1078 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Edward Cree0d322412015-05-20 11:10:03 +01001079 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001080
1081 /* Ensure the PHY advertises the correct flow control settings */
1082 rc = efx->phy_op->reconfigure(efx);
Edward Cree267d9d72015-05-06 00:59:18 +01001083 if (rc && rc != -EPERM)
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001084 goto fail2;
1085
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001086 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001087 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001088
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001089fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001090 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001091fail1:
1092 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001093 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001094}
1095
Ben Hutchings8ceee662008-04-27 12:55:59 +01001096static void efx_start_port(struct efx_nic *efx)
1097{
Ben Hutchings62776d02010-06-23 11:30:07 +00001098 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001099 BUG_ON(efx->port_enabled);
1100
1101 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001102 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001103
Ben Hutchingsd615c032013-10-08 17:33:20 +01001104 /* Ensure MAC ingress/egress is enabled */
Edward Cree0d322412015-05-20 11:10:03 +01001105 efx_mac_reconfigure(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001106
Ben Hutchings8ceee662008-04-27 12:55:59 +01001107 mutex_unlock(&efx->mac_lock);
1108}
1109
Ben Hutchingsd615c032013-10-08 17:33:20 +01001110/* Cancel work for MAC reconfiguration, periodic hardware monitoring
1111 * and the async self-test, wait for them to finish and prevent them
1112 * being scheduled again. This doesn't cover online resets, which
1113 * should only be cancelled when removing the device.
1114 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001115static void efx_stop_port(struct efx_nic *efx)
1116{
Ben Hutchings62776d02010-06-23 11:30:07 +00001117 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001118
Ben Hutchingsd615c032013-10-08 17:33:20 +01001119 EFX_ASSERT_RESET_SERIALISED(efx);
1120
Ben Hutchings8ceee662008-04-27 12:55:59 +01001121 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001122 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001123 mutex_unlock(&efx->mac_lock);
1124
1125 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001126 netif_addr_lock_bh(efx->net_dev);
1127 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchingsd615c032013-10-08 17:33:20 +01001128
1129 cancel_delayed_work_sync(&efx->monitor_work);
1130 efx_selftest_async_cancel(efx);
1131 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001132}
1133
1134static void efx_fini_port(struct efx_nic *efx)
1135{
Ben Hutchings62776d02010-06-23 11:30:07 +00001136 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001137
1138 if (!efx->port_initialized)
1139 return;
1140
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001141 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001142 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001143
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001144 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001145 efx_link_status_changed(efx);
1146}
1147
1148static void efx_remove_port(struct efx_nic *efx)
1149{
Ben Hutchings62776d02010-06-23 11:30:07 +00001150 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001151
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001152 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001153}
1154
1155/**************************************************************************
1156 *
1157 * NIC handling
1158 *
1159 **************************************************************************/
1160
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01001161static LIST_HEAD(efx_primary_list);
1162static LIST_HEAD(efx_unassociated_list);
1163
1164static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right)
1165{
1166 return left->type == right->type &&
1167 left->vpd_sn && right->vpd_sn &&
1168 !strcmp(left->vpd_sn, right->vpd_sn);
1169}
1170
1171static void efx_associate(struct efx_nic *efx)
1172{
1173 struct efx_nic *other, *next;
1174
1175 if (efx->primary == efx) {
1176 /* Adding primary function; look for secondaries */
1177
1178 netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n");
1179 list_add_tail(&efx->node, &efx_primary_list);
1180
1181 list_for_each_entry_safe(other, next, &efx_unassociated_list,
1182 node) {
1183 if (efx_same_controller(efx, other)) {
1184 list_del(&other->node);
1185 netif_dbg(other, probe, other->net_dev,
1186 "moving to secondary list of %s %s\n",
1187 pci_name(efx->pci_dev),
1188 efx->net_dev->name);
1189 list_add_tail(&other->node,
1190 &efx->secondary_list);
1191 other->primary = efx;
1192 }
1193 }
1194 } else {
1195 /* Adding secondary function; look for primary */
1196
1197 list_for_each_entry(other, &efx_primary_list, node) {
1198 if (efx_same_controller(efx, other)) {
1199 netif_dbg(efx, probe, efx->net_dev,
1200 "adding to secondary list of %s %s\n",
1201 pci_name(other->pci_dev),
1202 other->net_dev->name);
1203 list_add_tail(&efx->node,
1204 &other->secondary_list);
1205 efx->primary = other;
1206 return;
1207 }
1208 }
1209
1210 netif_dbg(efx, probe, efx->net_dev,
1211 "adding to unassociated list\n");
1212 list_add_tail(&efx->node, &efx_unassociated_list);
1213 }
1214}
1215
1216static void efx_dissociate(struct efx_nic *efx)
1217{
1218 struct efx_nic *other, *next;
1219
1220 list_del(&efx->node);
1221 efx->primary = NULL;
1222
1223 list_for_each_entry_safe(other, next, &efx->secondary_list, node) {
1224 list_del(&other->node);
1225 netif_dbg(other, probe, other->net_dev,
1226 "moving to unassociated list\n");
1227 list_add_tail(&other->node, &efx_unassociated_list);
1228 other->primary = NULL;
1229 }
1230}
1231
Ben Hutchings8ceee662008-04-27 12:55:59 +01001232/* This configures the PCI device to enable I/O and DMA. */
1233static int efx_init_io(struct efx_nic *efx)
1234{
1235 struct pci_dev *pci_dev = efx->pci_dev;
1236 dma_addr_t dma_mask = efx->type->max_dma_mask;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001237 unsigned int mem_map_size = efx->type->mem_map_size(efx);
Shradha Shah02246a72015-05-06 00:58:14 +01001238 int rc, bar;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001239
Ben Hutchings62776d02010-06-23 11:30:07 +00001240 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001241
Shradha Shah02246a72015-05-06 00:58:14 +01001242 bar = efx->type->mem_bar;
1243
Ben Hutchings8ceee662008-04-27 12:55:59 +01001244 rc = pci_enable_device(pci_dev);
1245 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001246 netif_err(efx, probe, efx->net_dev,
1247 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001248 goto fail1;
1249 }
1250
1251 pci_set_master(pci_dev);
1252
1253 /* Set the PCI DMA mask. Try all possibilities from our
1254 * genuine mask down to 32 bits, because some architectures
1255 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1256 * masks event though they reject 46 bit masks.
1257 */
1258 while (dma_mask > 0x7fffffffUL) {
Christoph Hellwig8722b8f2015-11-10 14:45:42 -08001259 rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
1260 if (rc == 0)
1261 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001262 dma_mask >>= 1;
1263 }
1264 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001265 netif_err(efx, probe, efx->net_dev,
1266 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001267 goto fail2;
1268 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001269 netif_dbg(efx, probe, efx->net_dev,
1270 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001271
Shradha Shah02246a72015-05-06 00:58:14 +01001272 efx->membase_phys = pci_resource_start(efx->pci_dev, bar);
1273 rc = pci_request_region(pci_dev, bar, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001274 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001275 netif_err(efx, probe, efx->net_dev,
1276 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001277 rc = -EIO;
1278 goto fail3;
1279 }
Ben Hutchingsb1057982012-09-19 00:56:47 +01001280 efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001281 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001282 netif_err(efx, probe, efx->net_dev,
1283 "could not map memory BAR at %llx+%x\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001284 (unsigned long long)efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001285 rc = -ENOMEM;
1286 goto fail4;
1287 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001288 netif_dbg(efx, probe, efx->net_dev,
1289 "memory BAR at %llx+%x (virtual %p)\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001290 (unsigned long long)efx->membase_phys, mem_map_size,
1291 efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001292
1293 return 0;
1294
1295 fail4:
Shradha Shah02246a72015-05-06 00:58:14 +01001296 pci_release_region(efx->pci_dev, bar);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001297 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001298 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001299 fail2:
1300 pci_disable_device(efx->pci_dev);
1301 fail1:
1302 return rc;
1303}
1304
1305static void efx_fini_io(struct efx_nic *efx)
1306{
Shradha Shah02246a72015-05-06 00:58:14 +01001307 int bar;
1308
Ben Hutchings62776d02010-06-23 11:30:07 +00001309 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001310
1311 if (efx->membase) {
1312 iounmap(efx->membase);
1313 efx->membase = NULL;
1314 }
1315
1316 if (efx->membase_phys) {
Shradha Shah02246a72015-05-06 00:58:14 +01001317 bar = efx->type->mem_bar;
1318 pci_release_region(efx->pci_dev, bar);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001319 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001320 }
1321
Daniel Pieczko6598dad2015-06-02 11:41:00 +01001322 /* Don't disable bus-mastering if VFs are assigned */
1323 if (!pci_vfs_assigned(efx->pci_dev))
1324 pci_disable_device(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001325}
1326
Jon Cooper267c0152015-05-06 00:59:38 +01001327void efx_set_default_rx_indir_table(struct efx_nic *efx)
1328{
1329 size_t i;
1330
1331 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
1332 efx->rx_indir_table[i] =
1333 ethtool_rxfh_indir_default(i, efx->rss_spread);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001334}
1335
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001336static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
Ben Hutchings46123d02008-09-01 12:47:33 +01001337{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001338 cpumask_var_t thread_mask;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001339 unsigned int count;
Ben Hutchings46123d02008-09-01 12:47:33 +01001340 int cpu;
1341
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001342 if (rss_cpus) {
1343 count = rss_cpus;
1344 } else {
1345 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1346 netif_warn(efx, probe, efx->net_dev,
1347 "RSS disabled due to allocation failure\n");
1348 return 1;
Ben Hutchings46123d02008-09-01 12:47:33 +01001349 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001350
1351 count = 0;
1352 for_each_online_cpu(cpu) {
1353 if (!cpumask_test_cpu(cpu, thread_mask)) {
1354 ++count;
1355 cpumask_or(thread_mask, thread_mask,
Bartosz Golaszewski06931e62015-05-26 15:11:28 +02001356 topology_sibling_cpumask(cpu));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001357 }
1358 }
1359
1360 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001361 }
1362
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001363 /* If RSS is requested for the PF *and* VFs then we can't write RSS
1364 * table entries that are inaccessible to VFs
1365 */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001366#ifdef CONFIG_SFC_SRIOV
1367 if (efx->type->sriov_wanted) {
1368 if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1369 count > efx_vf_size(efx)) {
1370 netif_warn(efx, probe, efx->net_dev,
1371 "Reducing number of RSS channels from %u to %u for "
1372 "VF support. Increase vf-msix-limit to use more "
1373 "channels on the PF.\n",
1374 count, efx_vf_size(efx));
1375 count = efx_vf_size(efx);
1376 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001377 }
Shradha Shah7fa8d542015-05-06 00:55:13 +01001378#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001379
Ben Hutchings46123d02008-09-01 12:47:33 +01001380 return count;
1381}
1382
1383/* Probe the number and type of interrupts we are able to obtain, and
1384 * the resulting numbers of channels and RX queues.
1385 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001386static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001387{
Ben Hutchings7f967c02012-02-13 23:45:02 +00001388 unsigned int extra_channels = 0;
1389 unsigned int i, j;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001390 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001391
Ben Hutchings7f967c02012-02-13 23:45:02 +00001392 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1393 if (efx->extra_channel_type[i])
1394 ++extra_channels;
1395
Ben Hutchings8ceee662008-04-27 12:55:59 +01001396 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001397 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001398 unsigned int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001399
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001400 n_channels = efx_wanted_parallelism(efx);
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001401 if (efx_separate_tx_channels)
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001402 n_channels *= 2;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001403 n_channels += extra_channels;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001404 n_channels = min(n_channels, efx->max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001405
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001406 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001407 xentries[i].entry = i;
Alexander Gordeev184603d2014-02-18 11:12:00 +01001408 rc = pci_enable_msix_range(efx->pci_dev,
1409 xentries, 1, n_channels);
1410 if (rc < 0) {
1411 /* Fall back to single channel MSI */
1412 efx->interrupt_mode = EFX_INT_MODE_MSI;
1413 netif_err(efx, drv, efx->net_dev,
1414 "could not enable MSI-X\n");
1415 } else if (rc < n_channels) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001416 netif_err(efx, drv, efx->net_dev,
1417 "WARNING: Insufficient MSI-X vectors"
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001418 " available (%d < %u).\n", rc, n_channels);
Ben Hutchings62776d02010-06-23 11:30:07 +00001419 netif_err(efx, drv, efx->net_dev,
1420 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001421 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001422 }
1423
Alexander Gordeev184603d2014-02-18 11:12:00 +01001424 if (rc > 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001425 efx->n_channels = n_channels;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001426 if (n_channels > extra_channels)
1427 n_channels -= extra_channels;
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001428 if (efx_separate_tx_channels) {
1429 efx->n_tx_channels = min(max(n_channels / 2,
1430 1U),
1431 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001432 efx->n_rx_channels = max(n_channels -
1433 efx->n_tx_channels,
1434 1U);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001435 } else {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001436 efx->n_tx_channels = min(n_channels,
1437 efx->max_tx_channels);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001438 efx->n_rx_channels = n_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001439 }
Ben Hutchings7f967c02012-02-13 23:45:02 +00001440 for (i = 0; i < efx->n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001441 efx_get_channel(efx, i)->irq =
1442 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001443 }
1444 }
1445
1446 /* Try single interrupt MSI */
1447 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001448 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001449 efx->n_rx_channels = 1;
1450 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001451 rc = pci_enable_msi(efx->pci_dev);
1452 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001453 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001454 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001455 netif_err(efx, drv, efx->net_dev,
1456 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001457 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1458 }
1459 }
1460
1461 /* Assume legacy interrupts */
1462 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001463 efx->n_channels = 1 + (efx_separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001464 efx->n_rx_channels = 1;
1465 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001466 efx->legacy_irq = efx->pci_dev->irq;
1467 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001468
Ben Hutchings7f967c02012-02-13 23:45:02 +00001469 /* Assign extra channels if possible */
1470 j = efx->n_channels;
1471 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1472 if (!efx->extra_channel_type[i])
1473 continue;
1474 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1475 efx->n_channels <= extra_channels) {
1476 efx->extra_channel_type[i]->handle_no_channel(efx);
1477 } else {
1478 --j;
1479 efx_get_channel(efx, j)->type =
1480 efx->extra_channel_type[i];
1481 }
1482 }
1483
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001484 /* RSS might be usable on VFs even if it is disabled on the PF */
Shradha Shah7fa8d542015-05-06 00:55:13 +01001485#ifdef CONFIG_SFC_SRIOV
1486 if (efx->type->sriov_wanted) {
1487 efx->rss_spread = ((efx->n_rx_channels > 1 ||
1488 !efx->type->sriov_wanted(efx)) ?
1489 efx->n_rx_channels : efx_vf_size(efx));
1490 return 0;
1491 }
1492#endif
1493 efx->rss_spread = efx->n_rx_channels;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001494
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001495 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001496}
1497
Jon Cooper261e4d92013-04-15 18:51:54 +01001498static int efx_soft_enable_interrupts(struct efx_nic *efx)
Ben Hutchingsd8291182012-10-05 23:35:41 +01001499{
Jon Cooper261e4d92013-04-15 18:51:54 +01001500 struct efx_channel *channel, *end_channel;
1501 int rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001502
1503 BUG_ON(efx->state == STATE_DISABLED);
1504
1505 efx->irq_soft_enabled = true;
1506 smp_wmb();
1507
1508 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001509 if (!channel->type->keep_eventq) {
1510 rc = efx_init_eventq(channel);
1511 if (rc)
1512 goto fail;
1513 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001514 efx_start_eventq(channel);
1515 }
1516
1517 efx_mcdi_mode_event(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01001518
1519 return 0;
1520fail:
1521 end_channel = channel;
1522 efx_for_each_channel(channel, efx) {
1523 if (channel == end_channel)
1524 break;
1525 efx_stop_eventq(channel);
1526 if (!channel->type->keep_eventq)
1527 efx_fini_eventq(channel);
1528 }
1529
1530 return rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001531}
1532
1533static void efx_soft_disable_interrupts(struct efx_nic *efx)
1534{
1535 struct efx_channel *channel;
1536
1537 if (efx->state == STATE_DISABLED)
1538 return;
1539
1540 efx_mcdi_mode_poll(efx);
1541
1542 efx->irq_soft_enabled = false;
1543 smp_wmb();
1544
1545 if (efx->legacy_irq)
1546 synchronize_irq(efx->legacy_irq);
1547
1548 efx_for_each_channel(channel, efx) {
1549 if (channel->irq)
1550 synchronize_irq(channel->irq);
1551
1552 efx_stop_eventq(channel);
1553 if (!channel->type->keep_eventq)
1554 efx_fini_eventq(channel);
1555 }
Ben Hutchingscade7152013-08-27 23:12:31 +01001556
1557 /* Flush the asynchronous MCDI request queue */
1558 efx_mcdi_flush_async(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01001559}
1560
Jon Cooper261e4d92013-04-15 18:51:54 +01001561static int efx_enable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001562{
Jon Cooper261e4d92013-04-15 18:51:54 +01001563 struct efx_channel *channel, *end_channel;
1564 int rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001565
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001566 BUG_ON(efx->state == STATE_DISABLED);
1567
Alexandre Ramesb28405b2013-03-21 16:41:43 +00001568 if (efx->eeh_disabled_legacy_irq) {
1569 enable_irq(efx->legacy_irq);
1570 efx->eeh_disabled_legacy_irq = false;
1571 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001572
Ben Hutchings86094f72013-08-21 19:51:04 +01001573 efx->type->irq_enable_master(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001574
1575 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001576 if (channel->type->keep_eventq) {
1577 rc = efx_init_eventq(channel);
1578 if (rc)
1579 goto fail;
1580 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001581 }
1582
Jon Cooper261e4d92013-04-15 18:51:54 +01001583 rc = efx_soft_enable_interrupts(efx);
1584 if (rc)
1585 goto fail;
1586
1587 return 0;
1588
1589fail:
1590 end_channel = channel;
1591 efx_for_each_channel(channel, efx) {
1592 if (channel == end_channel)
1593 break;
1594 if (channel->type->keep_eventq)
1595 efx_fini_eventq(channel);
1596 }
1597
1598 efx->type->irq_disable_non_ev(efx);
1599
1600 return rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001601}
1602
Ben Hutchingsd8291182012-10-05 23:35:41 +01001603static void efx_disable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001604{
1605 struct efx_channel *channel;
1606
Ben Hutchingsd8291182012-10-05 23:35:41 +01001607 efx_soft_disable_interrupts(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001608
1609 efx_for_each_channel(channel, efx) {
Ben Hutchingsd8291182012-10-05 23:35:41 +01001610 if (channel->type->keep_eventq)
Ben Hutchings7f967c02012-02-13 23:45:02 +00001611 efx_fini_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001612 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001613
Ben Hutchings86094f72013-08-21 19:51:04 +01001614 efx->type->irq_disable_non_ev(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001615}
1616
Ben Hutchings8ceee662008-04-27 12:55:59 +01001617static void efx_remove_interrupts(struct efx_nic *efx)
1618{
1619 struct efx_channel *channel;
1620
1621 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001622 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001623 channel->irq = 0;
1624 pci_disable_msi(efx->pci_dev);
1625 pci_disable_msix(efx->pci_dev);
1626
1627 /* Remove legacy interrupt */
1628 efx->legacy_irq = 0;
1629}
1630
Ben Hutchings8831da72008-09-01 12:47:48 +01001631static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001632{
Ben Hutchings602a5322011-05-16 17:32:39 +01001633 struct efx_channel *channel;
1634 struct efx_tx_queue *tx_queue;
1635
Ben Hutchings97653432011-01-12 18:26:56 +00001636 efx->tx_channel_offset =
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001637 efx_separate_tx_channels ?
1638 efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001639
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001640 /* We need to mark which channels really have RX and TX
1641 * queues, and adjust the TX queue numbers if we have separate
Ben Hutchings602a5322011-05-16 17:32:39 +01001642 * RX-only and TX-only channels.
1643 */
1644 efx_for_each_channel(channel, efx) {
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001645 if (channel->channel < efx->n_rx_channels)
1646 channel->rx_queue.core_index = channel->channel;
1647 else
1648 channel->rx_queue.core_index = -1;
1649
Ben Hutchings602a5322011-05-16 17:32:39 +01001650 efx_for_each_channel_tx_queue(tx_queue, channel)
1651 tx_queue->queue -= (efx->tx_channel_offset *
1652 EFX_TXQ_TYPES);
1653 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001654}
1655
1656static int efx_probe_nic(struct efx_nic *efx)
1657{
1658 int rc;
1659
Ben Hutchings62776d02010-06-23 11:30:07 +00001660 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001661
1662 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001663 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001664 if (rc)
1665 return rc;
1666
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001667 do {
1668 if (!efx->max_channels || !efx->max_tx_channels) {
1669 netif_err(efx, drv, efx->net_dev,
1670 "Insufficient resources to allocate"
1671 " any channels\n");
1672 rc = -ENOSPC;
1673 goto fail1;
1674 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001675
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001676 /* Determine the number of channels and queues by trying
1677 * to hook in MSI-X interrupts.
1678 */
1679 rc = efx_probe_interrupts(efx);
1680 if (rc)
1681 goto fail1;
Daniel Pieczko52ad7622014-04-01 13:10:34 +01001682
Shradha Shahb0fbdae2015-08-28 10:55:42 +01001683 efx_set_channels(efx);
1684
1685 /* dimension_resources can fail with EAGAIN */
1686 rc = efx->type->dimension_resources(efx);
1687 if (rc != 0 && rc != -EAGAIN)
1688 goto fail2;
1689
1690 if (rc == -EAGAIN)
1691 /* try again with new max_channels */
1692 efx_remove_interrupts(efx);
1693
1694 } while (rc == -EAGAIN);
Ben Hutchings28e47c42012-02-15 01:58:49 +00001695
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001696 if (efx->n_channels > 1)
Jon Cooper267c0152015-05-06 00:59:38 +01001697 netdev_rss_key_fill(&efx->rx_hash_key,
1698 sizeof(efx->rx_hash_key));
1699 efx_set_default_rx_indir_table(efx);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001700
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001701 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1702 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001703
1704 /* Initialise the interrupt moderation settings */
Bert Kenward539de7c2016-08-11 13:02:09 +01001705 efx->irq_mod_step_us = DIV_ROUND_UP(efx->timer_quantum_ns, 1000);
Ben Hutchings9e393b32011-09-05 07:43:04 +00001706 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1707 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001708
1709 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001710
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001711fail2:
1712 efx_remove_interrupts(efx);
1713fail1:
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001714 efx->type->remove(efx);
1715 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001716}
1717
1718static void efx_remove_nic(struct efx_nic *efx)
1719{
Ben Hutchings62776d02010-06-23 11:30:07 +00001720 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001721
1722 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001723 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001724}
1725
Ben Hutchingsadd72472012-11-08 01:46:53 +00001726static int efx_probe_filters(struct efx_nic *efx)
1727{
1728 int rc;
1729
1730 spin_lock_init(&efx->filter_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001731 init_rwsem(&efx->filter_sem);
Martin Habetsd2489532016-06-15 17:48:49 +01001732 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001733 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001734 rc = efx->type->filter_table_probe(efx);
1735 if (rc)
Edward Cree0d322412015-05-20 11:10:03 +01001736 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001737
1738#ifdef CONFIG_RFS_ACCEL
1739 if (efx->type->offload_features & NETIF_F_NTUPLE) {
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001740 struct efx_channel *channel;
1741 int i, success = 1;
1742
1743 efx_for_each_channel(channel, efx) {
1744 channel->rps_flow_id =
1745 kcalloc(efx->type->max_rx_ip_filters,
1746 sizeof(*channel->rps_flow_id),
1747 GFP_KERNEL);
1748 if (!channel->rps_flow_id)
1749 success = 0;
1750 else
1751 for (i = 0;
1752 i < efx->type->max_rx_ip_filters;
1753 ++i)
1754 channel->rps_flow_id[i] =
1755 RPS_FLOW_ID_INVALID;
1756 }
1757
1758 if (!success) {
1759 efx_for_each_channel(channel, efx)
1760 kfree(channel->rps_flow_id);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001761 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001762 rc = -ENOMEM;
1763 goto out_unlock;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001764 }
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001765
1766 efx->rps_expire_index = efx->rps_expire_channel = 0;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001767 }
1768#endif
Edward Cree0d322412015-05-20 11:10:03 +01001769out_unlock:
1770 up_write(&efx->filter_sem);
Martin Habetsd2489532016-06-15 17:48:49 +01001771 mutex_unlock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01001772 return rc;
Ben Hutchingsadd72472012-11-08 01:46:53 +00001773}
1774
1775static void efx_remove_filters(struct efx_nic *efx)
1776{
1777#ifdef CONFIG_RFS_ACCEL
Jon Cooperfaf8dcc2016-05-31 19:12:32 +01001778 struct efx_channel *channel;
1779
1780 efx_for_each_channel(channel, efx)
1781 kfree(channel->rps_flow_id);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001782#endif
Edward Cree0d322412015-05-20 11:10:03 +01001783 down_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001784 efx->type->filter_table_remove(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001785 up_write(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001786}
1787
1788static void efx_restore_filters(struct efx_nic *efx)
1789{
Edward Cree0d322412015-05-20 11:10:03 +01001790 down_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001791 efx->type->filter_table_restore(efx);
Edward Cree0d322412015-05-20 11:10:03 +01001792 up_read(&efx->filter_sem);
Ben Hutchingsadd72472012-11-08 01:46:53 +00001793}
1794
Ben Hutchings8ceee662008-04-27 12:55:59 +01001795/**************************************************************************
1796 *
1797 * NIC startup/shutdown
1798 *
1799 *************************************************************************/
1800
1801static int efx_probe_all(struct efx_nic *efx)
1802{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001803 int rc;
1804
Ben Hutchings8ceee662008-04-27 12:55:59 +01001805 rc = efx_probe_nic(efx);
1806 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001807 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001808 goto fail1;
1809 }
1810
Ben Hutchings8ceee662008-04-27 12:55:59 +01001811 rc = efx_probe_port(efx);
1812 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001813 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001814 goto fail2;
1815 }
1816
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00001817 BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
1818 if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
1819 rc = -EINVAL;
1820 goto fail3;
1821 }
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001822 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001823
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001824#ifdef CONFIG_SFC_SRIOV
1825 rc = efx->type->vswitching_probe(efx);
1826 if (rc) /* not fatal; the PF will still work fine */
1827 netif_warn(efx, probe, efx->net_dev,
1828 "failed to setup vswitching rc=%d;"
1829 " VFs may not function\n", rc);
1830#endif
1831
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001832 rc = efx_probe_filters(efx);
1833 if (rc) {
1834 netif_err(efx, probe, efx->net_dev,
1835 "failed to create filter tables\n");
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001836 goto fail4;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001837 }
1838
Ben Hutchings7f967c02012-02-13 23:45:02 +00001839 rc = efx_probe_channels(efx);
1840 if (rc)
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001841 goto fail5;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001842
Ben Hutchings8ceee662008-04-27 12:55:59 +01001843 return 0;
1844
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001845 fail5:
Ben Hutchings7f967c02012-02-13 23:45:02 +00001846 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001847 fail4:
1848#ifdef CONFIG_SFC_SRIOV
1849 efx->type->vswitching_remove(efx);
1850#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001851 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001852 efx_remove_port(efx);
1853 fail2:
1854 efx_remove_nic(efx);
1855 fail1:
1856 return rc;
1857}
1858
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001859/* If the interface is supposed to be running but is not, start
1860 * the hardware and software data path, regular activity for the port
1861 * (MAC statistics, link polling, etc.) and schedule the port to be
1862 * reconfigured. Interrupts must already be enabled. This function
1863 * is safe to call multiple times, so long as the NIC is not disabled.
1864 * Requires the RTNL lock.
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001865 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001866static void efx_start_all(struct efx_nic *efx)
1867{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001868 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001869 BUG_ON(efx->state == STATE_DISABLED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001870
1871 /* Check that it is appropriate to restart the interface. All
1872 * of these flags are safe to read under just the rtnl lock */
Edward Creee2835462014-04-16 19:27:48 +01001873 if (efx->port_enabled || !netif_running(efx->net_dev) ||
1874 efx->reset_pending)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001875 return;
1876
Ben Hutchings8ceee662008-04-27 12:55:59 +01001877 efx_start_port(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001878 efx_start_datapath(efx);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001879
Alexandre Rames626950d2013-01-14 17:20:22 +00001880 /* Start the hardware monitor if there is one */
1881 if (efx->type->monitor != NULL)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001882 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1883 efx_monitor_interval);
Alexandre Rames626950d2013-01-14 17:20:22 +00001884
Edward Cree5a6681e2016-11-28 18:55:34 +00001885 /* Link state detection is normally event-driven; we have
Alexandre Rames626950d2013-01-14 17:20:22 +00001886 * to poll now because we could have missed a change
1887 */
Edward Cree5a6681e2016-11-28 18:55:34 +00001888 mutex_lock(&efx->mac_lock);
1889 if (efx->phy_op->poll(efx))
1890 efx_link_status_changed(efx);
1891 mutex_unlock(&efx->mac_lock);
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001892
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001893 efx->type->start_stats(efx);
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001894 efx->type->pull_stats(efx);
1895 spin_lock_bh(&efx->stats_lock);
1896 efx->type->update_stats(efx, NULL, NULL);
1897 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001898}
1899
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001900/* Quiesce the hardware and software data path, and regular activity
1901 * for the port without bringing the link down. Safe to call multiple
1902 * times with the NIC in almost any state, but interrupts should be
1903 * enabled. Requires the RTNL lock.
1904 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001905static void efx_stop_all(struct efx_nic *efx)
1906{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001907 EFX_ASSERT_RESET_SERIALISED(efx);
1908
1909 /* port_enabled can be read safely under the rtnl lock */
1910 if (!efx->port_enabled)
1911 return;
1912
Jon Cooperf8f3b5a2013-09-30 17:36:50 +01001913 /* update stats before we go down so we can accurately count
1914 * rx_nodesc_drops
1915 */
1916 efx->type->pull_stats(efx);
1917 spin_lock_bh(&efx->stats_lock);
1918 efx->type->update_stats(efx, NULL, NULL);
1919 spin_unlock_bh(&efx->stats_lock);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001920 efx->type->stop_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001921 efx_stop_port(efx);
1922
Ben Hutchings29c69a42013-01-28 19:01:06 +00001923 /* Stop the kernel transmit interface. This is only valid if
1924 * the device is stopped or detached; otherwise the watchdog
1925 * may fire immediately.
1926 */
1927 WARN_ON(netif_running(efx->net_dev) &&
1928 netif_device_present(efx->net_dev));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001929 netif_tx_disable(efx->net_dev);
1930
1931 efx_stop_datapath(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001932}
1933
1934static void efx_remove_all(struct efx_nic *efx)
1935{
Ben Hutchings46426102010-09-10 06:42:33 +00001936 efx_remove_channels(efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001937 efx_remove_filters(efx);
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01001938#ifdef CONFIG_SFC_SRIOV
1939 efx->type->vswitching_remove(efx);
1940#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01001941 efx_remove_port(efx);
1942 efx_remove_nic(efx);
1943}
1944
Ben Hutchings8ceee662008-04-27 12:55:59 +01001945/**************************************************************************
1946 *
1947 * Interrupt moderation
1948 *
1949 **************************************************************************/
Bert Kenward539de7c2016-08-11 13:02:09 +01001950unsigned int efx_usecs_to_ticks(struct efx_nic *efx, unsigned int usecs)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001951{
Ben Hutchingsb548f972011-09-05 07:41:44 +00001952 if (usecs == 0)
1953 return 0;
Bert Kenward539de7c2016-08-11 13:02:09 +01001954 if (usecs * 1000 < efx->timer_quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001955 return 1; /* never round down to 0 */
Bert Kenward539de7c2016-08-11 13:02:09 +01001956 return usecs * 1000 / efx->timer_quantum_ns;
1957}
1958
1959unsigned int efx_ticks_to_usecs(struct efx_nic *efx, unsigned int ticks)
1960{
1961 /* We must round up when converting ticks to microseconds
1962 * because we round down when converting the other way.
1963 */
1964 return DIV_ROUND_UP(ticks * efx->timer_quantum_ns, 1000);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001965}
1966
Ben Hutchings8ceee662008-04-27 12:55:59 +01001967/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001968int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1969 unsigned int rx_usecs, bool rx_adaptive,
1970 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001971{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001972 struct efx_channel *channel;
Bert Kenwardd95e3292016-08-11 13:02:36 +01001973 unsigned int timer_max_us;
1974
Ben Hutchings8ceee662008-04-27 12:55:59 +01001975 EFX_ASSERT_RESET_SERIALISED(efx);
1976
Bert Kenwardd95e3292016-08-11 13:02:36 +01001977 timer_max_us = efx->timer_max_ns / 1000;
1978
1979 if (tx_usecs > timer_max_us || rx_usecs > timer_max_us)
Ben Hutchings9e393b32011-09-05 07:43:04 +00001980 return -EINVAL;
1981
Bert Kenward539de7c2016-08-11 13:02:09 +01001982 if (tx_usecs != rx_usecs && efx->tx_channel_offset == 0 &&
Ben Hutchings9e393b32011-09-05 07:43:04 +00001983 !rx_may_override_tx) {
1984 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1985 "RX and TX IRQ moderation must be equal\n");
1986 return -EINVAL;
1987 }
1988
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001989 efx->irq_rx_adaptive = rx_adaptive;
Bert Kenward539de7c2016-08-11 13:02:09 +01001990 efx->irq_rx_moderation_us = rx_usecs;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001991 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00001992 if (efx_channel_has_rx_queue(channel))
Bert Kenward539de7c2016-08-11 13:02:09 +01001993 channel->irq_moderation_us = rx_usecs;
Ben Hutchings525da902011-02-07 23:04:38 +00001994 else if (efx_channel_has_tx_queues(channel))
Bert Kenward539de7c2016-08-11 13:02:09 +01001995 channel->irq_moderation_us = tx_usecs;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001996 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00001997
1998 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001999}
2000
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002001void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
2002 unsigned int *rx_usecs, bool *rx_adaptive)
2003{
2004 *rx_adaptive = efx->irq_rx_adaptive;
Bert Kenward539de7c2016-08-11 13:02:09 +01002005 *rx_usecs = efx->irq_rx_moderation_us;
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002006
2007 /* If channels are shared between RX and TX, so is IRQ
2008 * moderation. Otherwise, IRQ moderation is the same for all
2009 * TX channels and is not adaptive.
2010 */
Bert Kenward539de7c2016-08-11 13:02:09 +01002011 if (efx->tx_channel_offset == 0) {
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002012 *tx_usecs = *rx_usecs;
Bert Kenward539de7c2016-08-11 13:02:09 +01002013 } else {
2014 struct efx_channel *tx_channel;
2015
2016 tx_channel = efx->channel[efx->tx_channel_offset];
2017 *tx_usecs = tx_channel->irq_moderation_us;
2018 }
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00002019}
2020
Ben Hutchings8ceee662008-04-27 12:55:59 +01002021/**************************************************************************
2022 *
2023 * Hardware monitor
2024 *
2025 **************************************************************************/
2026
Ben Hutchingse254c272010-09-20 08:44:10 +00002027/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002028static void efx_monitor(struct work_struct *data)
2029{
2030 struct efx_nic *efx = container_of(data, struct efx_nic,
2031 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002032
Ben Hutchings62776d02010-06-23 11:30:07 +00002033 netif_vdbg(efx, timer, efx->net_dev,
2034 "hardware monitor executing on CPU %d\n",
2035 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002036 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002037
Ben Hutchings8ceee662008-04-27 12:55:59 +01002038 /* If the mac_lock is already held then it is likely a port
2039 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00002040 * most of the work of monitor() anyway. */
2041 if (mutex_trylock(&efx->mac_lock)) {
2042 if (efx->port_enabled)
2043 efx->type->monitor(efx);
2044 mutex_unlock(&efx->mac_lock);
2045 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002046
Ben Hutchings8ceee662008-04-27 12:55:59 +01002047 queue_delayed_work(efx->workqueue, &efx->monitor_work,
2048 efx_monitor_interval);
2049}
2050
2051/**************************************************************************
2052 *
2053 * ioctls
2054 *
2055 *************************************************************************/
2056
2057/* Net device ioctl
2058 * Context: process, rtnl_lock() held.
2059 */
2060static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
2061{
Ben Hutchings767e4682008-09-01 12:43:14 +01002062 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002063 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002064
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002065 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings433dc9b2013-11-14 01:26:21 +00002066 return efx_ptp_set_ts_config(efx, ifr);
2067 if (cmd == SIOCGHWTSTAMP)
2068 return efx_ptp_get_ts_config(efx, ifr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01002069
Ben Hutchings68e7f452009-04-29 08:05:08 +00002070 /* Convert phy_id from older PRTAD/DEVAD format */
2071 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
2072 (data->phy_id & 0xfc00) == 0x0400)
2073 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
2074
2075 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002076}
2077
2078/**************************************************************************
2079 *
2080 * NAPI interface
2081 *
2082 **************************************************************************/
2083
Ben Hutchings7f967c02012-02-13 23:45:02 +00002084static void efx_init_napi_channel(struct efx_channel *channel)
2085{
2086 struct efx_nic *efx = channel->efx;
2087
2088 channel->napi_dev = efx->net_dev;
2089 netif_napi_add(channel->napi_dev, &channel->napi_str,
2090 efx_poll, napi_weight);
Bert Kenwardc0f9c7e2015-10-26 14:23:42 +00002091 efx_channel_busy_poll_init(channel);
Ben Hutchings7f967c02012-02-13 23:45:02 +00002092}
2093
Ben Hutchingse8f14992010-12-07 19:47:34 +00002094static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002095{
2096 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002097
Ben Hutchings7f967c02012-02-13 23:45:02 +00002098 efx_for_each_channel(channel, efx)
2099 efx_init_napi_channel(channel);
Ben Hutchingse8f14992010-12-07 19:47:34 +00002100}
2101
2102static void efx_fini_napi_channel(struct efx_channel *channel)
2103{
Eric Dumazet973334a2016-11-16 06:01:47 -08002104 if (channel->napi_dev)
Ben Hutchingse8f14992010-12-07 19:47:34 +00002105 netif_napi_del(&channel->napi_str);
Eric Dumazet973334a2016-11-16 06:01:47 -08002106
Ben Hutchingse8f14992010-12-07 19:47:34 +00002107 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002108}
2109
2110static void efx_fini_napi(struct efx_nic *efx)
2111{
2112 struct efx_channel *channel;
2113
Ben Hutchingse8f14992010-12-07 19:47:34 +00002114 efx_for_each_channel(channel, efx)
2115 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002116}
2117
2118/**************************************************************************
2119 *
2120 * Kernel netpoll interface
2121 *
2122 *************************************************************************/
2123
2124#ifdef CONFIG_NET_POLL_CONTROLLER
2125
2126/* Although in the common case interrupts will be disabled, this is not
2127 * guaranteed. However, all our work happens inside the NAPI callback,
2128 * so no locking is required.
2129 */
2130static void efx_netpoll(struct net_device *net_dev)
2131{
Ben Hutchings767e4682008-09-01 12:43:14 +01002132 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002133 struct efx_channel *channel;
2134
Ben Hutchings64ee3122008-09-01 12:47:38 +01002135 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002136 efx_schedule_channel(channel);
2137}
2138
2139#endif
2140
Alexandre Rames36763262014-07-22 14:03:25 +01002141#ifdef CONFIG_NET_RX_BUSY_POLL
2142static int efx_busy_poll(struct napi_struct *napi)
2143{
2144 struct efx_channel *channel =
2145 container_of(napi, struct efx_channel, napi_str);
2146 struct efx_nic *efx = channel->efx;
2147 int budget = 4;
2148 int old_rx_packets, rx_packets;
2149
2150 if (!netif_running(efx->net_dev))
2151 return LL_FLUSH_FAILED;
2152
Bert Kenwardc0f9c7e2015-10-26 14:23:42 +00002153 if (!efx_channel_try_lock_poll(channel))
Alexandre Rames36763262014-07-22 14:03:25 +01002154 return LL_FLUSH_BUSY;
2155
2156 old_rx_packets = channel->rx_queue.rx_packets;
2157 efx_process_channel(channel, budget);
2158
2159 rx_packets = channel->rx_queue.rx_packets - old_rx_packets;
2160
2161 /* There is no race condition with NAPI here.
2162 * NAPI will automatically be rescheduled if it yielded during busy
2163 * polling, because it was not able to take the lock and thus returned
2164 * the full budget.
2165 */
2166 efx_channel_unlock_poll(channel);
2167
2168 return rx_packets;
2169}
2170#endif
2171
Ben Hutchings8ceee662008-04-27 12:55:59 +01002172/**************************************************************************
2173 *
2174 * Kernel net device interface
2175 *
2176 *************************************************************************/
2177
2178/* Context: process, rtnl_lock() held. */
Shradha Shahe340be92015-05-20 11:11:03 +01002179int efx_net_open(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002180{
Ben Hutchings767e4682008-09-01 12:43:14 +01002181 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002182 int rc;
2183
Ben Hutchings62776d02010-06-23 11:30:07 +00002184 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
2185 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002186
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002187 rc = efx_check_disabled(efx);
2188 if (rc)
2189 return rc;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002190 if (efx->phy_mode & PHY_MODE_SPECIAL)
2191 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002192 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
2193 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01002194
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00002195 /* Notify the kernel of the link state polled during driver load,
2196 * before the monitor starts running */
2197 efx_link_status_changed(efx);
2198
Ben Hutchings8ceee662008-04-27 12:55:59 +01002199 efx_start_all(efx);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002200 efx_selftest_async_start(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002201 return 0;
2202}
2203
2204/* Context: process, rtnl_lock() held.
2205 * Note that the kernel will ignore our return code; this method
2206 * should really be a void.
2207 */
Shradha Shahe340be92015-05-20 11:11:03 +01002208int efx_net_stop(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002209{
Ben Hutchings767e4682008-09-01 12:43:14 +01002210 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002211
Ben Hutchings62776d02010-06-23 11:30:07 +00002212 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
2213 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01002214
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002215 /* Stop the device and flush all the channels */
2216 efx_stop_all(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002217
2218 return 0;
2219}
2220
Ben Hutchings5b9e2072008-05-16 21:18:14 +01002221/* Context: process, dev_base_lock or RTNL held, non-blocking. */
stephen hemmingerbc1f4472017-01-06 19:12:52 -08002222static void efx_net_stats(struct net_device *net_dev,
2223 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002224{
Ben Hutchings767e4682008-09-01 12:43:14 +01002225 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002226
Ben Hutchings55edc6e2009-11-25 16:11:35 +00002227 spin_lock_bh(&efx->stats_lock);
Ben Hutchingscd0ecc92012-12-14 21:52:56 +00002228 efx->type->update_stats(efx, NULL, stats);
Ben Hutchings1cb34522011-09-02 23:23:00 +01002229 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002230}
2231
2232/* Context: netif_tx_lock held, BHs disabled. */
2233static void efx_watchdog(struct net_device *net_dev)
2234{
Ben Hutchings767e4682008-09-01 12:43:14 +01002235 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002236
Ben Hutchings62776d02010-06-23 11:30:07 +00002237 netif_err(efx, tx_err, efx->net_dev,
2238 "TX stuck with port_enabled=%d: resetting channels\n",
2239 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002240
Ben Hutchings739bb23d2008-11-04 20:35:36 +00002241 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002242}
2243
2244
2245/* Context: process, rtnl_lock() held. */
2246static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2247{
Ben Hutchings767e4682008-09-01 12:43:14 +01002248 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002249 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002250
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002251 rc = efx_check_disabled(efx);
2252 if (rc)
2253 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002254
Ben Hutchings62776d02010-06-23 11:30:07 +00002255 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002256
Ben Hutchings29c69a42013-01-28 19:01:06 +00002257 efx_device_detach_sync(efx);
2258 efx_stop_all(efx);
2259
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002260 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002261 net_dev->mtu = new_mtu;
Edward Cree0d322412015-05-20 11:10:03 +01002262 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002263 mutex_unlock(&efx->mac_lock);
2264
Ben Hutchings8ceee662008-04-27 12:55:59 +01002265 efx_start_all(efx);
Ben Hutchings29c69a42013-01-28 19:01:06 +00002266 netif_device_attach(efx->net_dev);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00002267 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002268}
2269
2270static int efx_set_mac_address(struct net_device *net_dev, void *data)
2271{
Ben Hutchings767e4682008-09-01 12:43:14 +01002272 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002273 struct sockaddr *addr = data;
Ben Hutchingse0b3ae32014-02-12 18:59:54 +00002274 u8 *new_addr = addr->sa_data;
Shradha Shahcfc77c22015-05-20 11:09:30 +01002275 u8 old_addr[6];
2276 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002277
Ben Hutchings8ceee662008-04-27 12:55:59 +01002278 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002279 netif_err(efx, drv, efx->net_dev,
2280 "invalid ethernet MAC address requested: %pM\n",
2281 new_addr);
Danny Kukawka504f9b52012-02-21 02:07:49 +00002282 return -EADDRNOTAVAIL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002283 }
2284
Shradha Shahcfc77c22015-05-20 11:09:30 +01002285 /* save old address */
2286 ether_addr_copy(old_addr, net_dev->dev_addr);
Edward Creecd84ff42014-03-07 18:27:41 +00002287 ether_addr_copy(net_dev->dev_addr, new_addr);
Shradha Shah910c8782015-05-20 11:12:48 +01002288 if (efx->type->set_mac_address) {
2289 rc = efx->type->set_mac_address(efx);
Shradha Shahcfc77c22015-05-20 11:09:30 +01002290 if (rc) {
2291 ether_addr_copy(net_dev->dev_addr, old_addr);
2292 return rc;
2293 }
2294 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002295
2296 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002297 mutex_lock(&efx->mac_lock);
Edward Cree0d322412015-05-20 11:10:03 +01002298 efx_mac_reconfigure(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002299 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002300
2301 return 0;
2302}
2303
Ben Hutchingsa816f752008-09-01 12:49:12 +01002304/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002305static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002306{
Ben Hutchings767e4682008-09-01 12:43:14 +01002307 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002308
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00002309 if (efx->port_enabled)
2310 queue_work(efx->workqueue, &efx->mac_work);
2311 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002312}
2313
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002314static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002315{
2316 struct efx_nic *efx = netdev_priv(net_dev);
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002317 int rc;
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002318
2319 /* If disabling RX n-tuple filtering, clear existing filters */
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002320 if (net_dev->features & ~data & NETIF_F_NTUPLE) {
2321 rc = efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
2322 if (rc)
2323 return rc;
2324 }
2325
2326 /* If Rx VLAN filter is changed, update filters via mac_reconfigure */
2327 if ((net_dev->features ^ data) & NETIF_F_HW_VLAN_CTAG_FILTER) {
2328 /* efx_set_rx_mode() will schedule MAC work to update filters
2329 * when a new features are finally set in net_dev.
2330 */
2331 efx_set_rx_mode(net_dev);
2332 }
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002333
2334 return 0;
2335}
2336
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002337static int efx_vlan_rx_add_vid(struct net_device *net_dev, __be16 proto, u16 vid)
2338{
2339 struct efx_nic *efx = netdev_priv(net_dev);
2340
2341 if (efx->type->vlan_rx_add_vid)
2342 return efx->type->vlan_rx_add_vid(efx, proto, vid);
2343 else
2344 return -EOPNOTSUPP;
2345}
2346
2347static int efx_vlan_rx_kill_vid(struct net_device *net_dev, __be16 proto, u16 vid)
2348{
2349 struct efx_nic *efx = netdev_priv(net_dev);
2350
2351 if (efx->type->vlan_rx_kill_vid)
2352 return efx->type->vlan_rx_kill_vid(efx, proto, vid);
2353 else
2354 return -EOPNOTSUPP;
2355}
2356
Shradha Shah7fa8d542015-05-06 00:55:13 +01002357static const struct net_device_ops efx_netdev_ops = {
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002358 .ndo_open = efx_net_open,
2359 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00002360 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002361 .ndo_tx_timeout = efx_watchdog,
2362 .ndo_start_xmit = efx_hard_start_xmit,
2363 .ndo_validate_addr = eth_validate_addr,
2364 .ndo_do_ioctl = efx_ioctl,
2365 .ndo_change_mtu = efx_change_mtu,
2366 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002367 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002368 .ndo_set_features = efx_set_features,
Andrew Rybchenko4a53ea82016-06-15 17:48:32 +01002369 .ndo_vlan_rx_add_vid = efx_vlan_rx_add_vid,
2370 .ndo_vlan_rx_kill_vid = efx_vlan_rx_kill_vid,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002371#ifdef CONFIG_SFC_SRIOV
Shradha Shah7fa8d542015-05-06 00:55:13 +01002372 .ndo_set_vf_mac = efx_sriov_set_vf_mac,
2373 .ndo_set_vf_vlan = efx_sriov_set_vf_vlan,
2374 .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk,
2375 .ndo_get_vf_config = efx_sriov_get_vf_config,
Edward Cree4392dc62015-05-20 11:12:13 +01002376 .ndo_set_vf_link_state = efx_sriov_set_vf_link_state,
Shradha Shah1d051e02015-06-02 11:38:16 +01002377 .ndo_get_phys_port_id = efx_sriov_get_phys_port_id,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002378#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002379#ifdef CONFIG_NET_POLL_CONTROLLER
2380 .ndo_poll_controller = efx_netpoll,
2381#endif
Ben Hutchings94b274b2011-01-10 21:18:20 +00002382 .ndo_setup_tc = efx_setup_tc,
Alexandre Rames36763262014-07-22 14:03:25 +01002383#ifdef CONFIG_NET_RX_BUSY_POLL
2384 .ndo_busy_poll = efx_busy_poll,
2385#endif
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002386#ifdef CONFIG_RFS_ACCEL
2387 .ndo_rx_flow_steer = efx_filter_rfs,
2388#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002389};
2390
Ben Hutchings7dde5962008-12-12 22:09:38 -08002391static void efx_update_name(struct efx_nic *efx)
2392{
2393 strcpy(efx->name, efx->net_dev->name);
2394 efx_mtd_rename(efx);
2395 efx_set_channel_names(efx);
2396}
2397
Ben Hutchings8ceee662008-04-27 12:55:59 +01002398static int efx_netdev_event(struct notifier_block *this,
2399 unsigned long event, void *ptr)
2400{
Jiri Pirko351638e2013-05-28 01:30:21 +00002401 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002402
Shradha Shah7fa8d542015-05-06 00:55:13 +01002403 if ((net_dev->netdev_ops == &efx_netdev_ops) &&
Ben Hutchings7dde5962008-12-12 22:09:38 -08002404 event == NETDEV_CHANGENAME)
2405 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002406
2407 return NOTIFY_DONE;
2408}
2409
2410static struct notifier_block efx_netdev_notifier = {
2411 .notifier_call = efx_netdev_event,
2412};
2413
Ben Hutchings06d5e192008-12-12 21:47:23 -08002414static ssize_t
2415show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2416{
2417 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2418 return sprintf(buf, "%d\n", efx->phy_type);
2419}
Ben Hutchings776fbcc2013-06-18 17:45:40 +01002420static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002421
Edward Creee7fef9b2015-05-27 13:14:01 +01002422#ifdef CONFIG_SFC_MCDI_LOGGING
2423static ssize_t show_mcdi_log(struct device *dev, struct device_attribute *attr,
2424 char *buf)
2425{
2426 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2427 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2428
2429 return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled);
2430}
2431static ssize_t set_mcdi_log(struct device *dev, struct device_attribute *attr,
2432 const char *buf, size_t count)
2433{
2434 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2435 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
2436 bool enable = count > 0 && *buf != '0';
2437
2438 mcdi->logging_enabled = enable;
2439 return count;
2440}
2441static DEVICE_ATTR(mcdi_logging, 0644, show_mcdi_log, set_mcdi_log);
2442#endif
2443
Ben Hutchings8ceee662008-04-27 12:55:59 +01002444static int efx_register_netdev(struct efx_nic *efx)
2445{
2446 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002447 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002448 int rc;
2449
2450 net_dev->watchdog_timeo = 5 * HZ;
2451 net_dev->irq = efx->pci_dev->irq;
Shradha Shah7fa8d542015-05-06 00:55:13 +01002452 net_dev->netdev_ops = &efx_netdev_ops;
2453 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0)
Ben Hutchings8127d662013-08-29 19:19:29 +01002454 net_dev->priv_flags |= IFF_UNICAST_FLT;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002455 net_dev->ethtool_ops = &efx_ethtool_ops;
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002456 net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
Bert Kenwardcd94e512016-10-18 17:47:45 +01002457 net_dev->min_mtu = EFX_MIN_MTU;
2458 net_dev->max_mtu = EFX_MAX_MTU;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002459
Ben Hutchings7dde5962008-12-12 22:09:38 -08002460 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00002461
Ben Hutchings7153f622012-07-27 20:50:52 +01002462 /* Enable resets to be scheduled and check whether any were
2463 * already requested. If so, the NIC is probably hosed so we
2464 * abort.
2465 */
2466 efx->state = STATE_READY;
2467 smp_mb(); /* ensure we change state before checking reset_pending */
2468 if (efx->reset_pending) {
2469 netif_err(efx, probe, efx->net_dev,
2470 "aborting probe due to scheduled reset\n");
2471 rc = -EIO;
2472 goto fail_locked;
2473 }
2474
Ben Hutchingsaed06282009-08-26 08:16:27 +00002475 rc = dev_alloc_name(net_dev, net_dev->name);
2476 if (rc < 0)
2477 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002478 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002479
Ben Hutchings8f8b3d52012-08-24 18:04:38 +01002480 /* Always start with carrier off; PHY events will detect the link */
2481 netif_carrier_off(net_dev);
2482
Ben Hutchingsaed06282009-08-26 08:16:27 +00002483 rc = register_netdevice(net_dev);
2484 if (rc)
2485 goto fail_locked;
2486
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002487 efx_for_each_channel(channel, efx) {
2488 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00002489 efx_for_each_channel_tx_queue(tx_queue, channel)
2490 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002491 }
2492
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002493 efx_associate(efx);
2494
Ben Hutchings7dde5962008-12-12 22:09:38 -08002495 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002496
Ben Hutchings06d5e192008-12-12 21:47:23 -08002497 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2498 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002499 netif_err(efx, drv, efx->net_dev,
2500 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08002501 goto fail_registered;
2502 }
Edward Creee7fef9b2015-05-27 13:14:01 +01002503#ifdef CONFIG_SFC_MCDI_LOGGING
2504 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2505 if (rc) {
2506 netif_err(efx, drv, efx->net_dev,
2507 "failed to init net dev attributes\n");
2508 goto fail_attr_mcdi_logging;
2509 }
2510#endif
Ben Hutchings06d5e192008-12-12 21:47:23 -08002511
Ben Hutchings8ceee662008-04-27 12:55:59 +01002512 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08002513
Edward Creee7fef9b2015-05-27 13:14:01 +01002514#ifdef CONFIG_SFC_MCDI_LOGGING
2515fail_attr_mcdi_logging:
2516 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2517#endif
Ben Hutchings7153f622012-07-27 20:50:52 +01002518fail_registered:
2519 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002520 efx_dissociate(efx);
Ben Hutchings7153f622012-07-27 20:50:52 +01002521 unregister_netdevice(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002522fail_locked:
Ben Hutchings7153f622012-07-27 20:50:52 +01002523 efx->state = STATE_UNINIT;
Ben Hutchingsaed06282009-08-26 08:16:27 +00002524 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00002525 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00002526 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002527}
2528
2529static void efx_unregister_netdev(struct efx_nic *efx)
2530{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002531 if (!efx->net_dev)
2532 return;
2533
Ben Hutchings767e4682008-09-01 12:43:14 +01002534 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002535
Edward Creee7fef9b2015-05-27 13:14:01 +01002536 if (efx_dev_registered(efx)) {
2537 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2538#ifdef CONFIG_SFC_MCDI_LOGGING
2539 device_remove_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging);
2540#endif
2541 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2542 unregister_netdev(efx->net_dev);
2543 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002544}
2545
2546/**************************************************************************
2547 *
2548 * Device reset and suspend
2549 *
2550 **************************************************************************/
2551
Ben Hutchings2467ca42008-09-01 12:48:50 +01002552/* Tears down the entire software state and most of the hardware state
2553 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002554void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002555{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002556 EFX_ASSERT_RESET_SERIALISED(efx);
2557
Edward Creee2835462014-04-16 19:27:48 +01002558 if (method == RESET_TYPE_MCDI_TIMEOUT)
2559 efx->type->prepare_flr(efx);
2560
Ben Hutchings2467ca42008-09-01 12:48:50 +01002561 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002562 efx_disable_interrupts(efx);
Ben Hutchings5642cee2012-07-27 19:35:52 +01002563
2564 mutex_lock(&efx->mac_lock);
Jon Cooper087e9022015-05-20 11:11:35 +01002565 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2566 method != RESET_TYPE_DATAPATH)
Steve Hodgson4b988282009-01-29 17:50:51 +00002567 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002568 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002569}
2570
Ben Hutchings2467ca42008-09-01 12:48:50 +01002571/* This function will always ensure that the locks acquired in
2572 * efx_reset_down() are released. A failure return code indicates
2573 * that we were unable to reinitialise the hardware, and the
2574 * driver should be disabled. If ok is false, then the rx and tx
2575 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002576int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002577{
2578 int rc;
2579
Ben Hutchings2467ca42008-09-01 12:48:50 +01002580 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002581
Edward Creee2835462014-04-16 19:27:48 +01002582 if (method == RESET_TYPE_MCDI_TIMEOUT)
2583 efx->type->finish_flr(efx);
2584
2585 /* Ensure that SRAM is initialised even if we're disabling the device */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002586 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002587 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002588 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002589 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002590 }
2591
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002592 if (!ok)
2593 goto fail;
2594
Jon Cooper087e9022015-05-20 11:11:35 +01002595 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE &&
2596 method != RESET_TYPE_DATAPATH) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002597 rc = efx->phy_op->init(efx);
2598 if (rc)
2599 goto fail;
Edward Cree267d9d72015-05-06 00:59:18 +01002600 rc = efx->phy_op->reconfigure(efx);
2601 if (rc && rc != -EPERM)
Ben Hutchings62776d02010-06-23 11:30:07 +00002602 netif_err(efx, drv, efx->net_dev,
2603 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002604 }
2605
Jon Cooper261e4d92013-04-15 18:51:54 +01002606 rc = efx_enable_interrupts(efx);
2607 if (rc)
2608 goto fail;
Daniel Pieczko6d8aaaf2015-05-06 00:57:34 +01002609
2610#ifdef CONFIG_SFC_SRIOV
2611 rc = efx->type->vswitching_restore(efx);
2612 if (rc) /* not fatal; the PF will still work fine */
2613 netif_warn(efx, probe, efx->net_dev,
2614 "failed to restore vswitching rc=%d;"
2615 " VFs may not function\n", rc);
2616#endif
2617
Edward Cree0d322412015-05-20 11:10:03 +01002618 down_read(&efx->filter_sem);
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002619 efx_restore_filters(efx);
Edward Cree0d322412015-05-20 11:10:03 +01002620 up_read(&efx->filter_sem);
Shradha Shah7fa8d542015-05-06 00:55:13 +01002621 if (efx->type->sriov_reset)
2622 efx->type->sriov_reset(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002623
2624 mutex_unlock(&efx->mac_lock);
2625
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002626 efx_start_all(efx);
2627
2628 return 0;
2629
2630fail:
2631 efx->port_initialized = false;
2632
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002633 mutex_unlock(&efx->mac_lock);
2634
Ben Hutchings8ceee662008-04-27 12:55:59 +01002635 return rc;
2636}
2637
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002638/* Reset the NIC using the specified method. Note that the reset may
2639 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002640 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002641 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002642 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002643int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002644{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002645 int rc, rc2;
2646 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002647
Ben Hutchings62776d02010-06-23 11:30:07 +00002648 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2649 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002650
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002651 efx_device_detach_sync(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002652 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002653
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002654 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002655 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002656 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002657 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002658 }
2659
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002660 /* Clear flags for the scopes we covered. We assume the NIC and
2661 * driver are now quiescent so that there is no race here.
2662 */
Edward Creee2835462014-04-16 19:27:48 +01002663 if (method < RESET_TYPE_MAX_METHOD)
2664 efx->reset_pending &= -(1 << (method + 1));
2665 else /* it doesn't fit into the well-ordered scope hierarchy */
2666 __clear_bit(method, &efx->reset_pending);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002667
2668 /* Reinitialise bus-mastering, which may have been turned off before
2669 * the reset was scheduled. This is still appropriate, even in the
2670 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2671 * can respond to requests. */
2672 pci_set_master(efx->pci_dev);
2673
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002674out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002675 /* Leave device stopped if necessary */
Alexandre Rames626950d2013-01-14 17:20:22 +00002676 disabled = rc ||
2677 method == RESET_TYPE_DISABLE ||
2678 method == RESET_TYPE_RECOVER_OR_DISABLE;
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002679 rc2 = efx_reset_up(efx, method, !disabled);
2680 if (rc2) {
2681 disabled = true;
2682 if (!rc)
2683 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002684 }
2685
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002686 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002687 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002688 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002689 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002690 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002691 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingse4abce82011-05-16 18:51:24 +01002692 netif_device_attach(efx->net_dev);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002693 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002694 return rc;
2695}
2696
Alexandre Rames626950d2013-01-14 17:20:22 +00002697/* Try recovery mechanisms.
2698 * For now only EEH is supported.
2699 * Returns 0 if the recovery mechanisms are unsuccessful.
2700 * Returns a non-zero value otherwise.
2701 */
Alexandre Ramesb28405b2013-03-21 16:41:43 +00002702int efx_try_recovery(struct efx_nic *efx)
Alexandre Rames626950d2013-01-14 17:20:22 +00002703{
2704#ifdef CONFIG_EEH
2705 /* A PCI error can occur and not be seen by EEH because nothing
2706 * happens on the PCI bus. In this case the driver may fail and
2707 * schedule a 'recover or reset', leading to this recovery handler.
2708 * Manually call the eeh failure check function.
2709 */
Benjamin Herrenschmidt12a89db2015-03-23 14:00:47 +11002710 struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002711 if (eeh_dev_check_failure(eehdev)) {
2712 /* The EEH mechanisms will handle the error and reset the
2713 * device if necessary.
2714 */
2715 return 1;
2716 }
2717#endif
2718 return 0;
2719}
2720
Jon Cooper74cd60a2013-09-16 14:18:51 +01002721static void efx_wait_for_bist_end(struct efx_nic *efx)
2722{
2723 int i;
2724
2725 for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
2726 if (efx_mcdi_poll_reboot(efx))
2727 goto out;
2728 msleep(BIST_WAIT_DELAY_MS);
2729 }
2730
2731 netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
2732out:
2733 /* Either way unset the BIST flag. If we found no reboot we probably
2734 * won't recover, but we should try.
2735 */
2736 efx->mc_bist_for_other_fn = false;
2737}
2738
Ben Hutchings8ceee662008-04-27 12:55:59 +01002739/* The worker thread exists so that code that cannot sleep can
2740 * schedule a reset for later.
2741 */
2742static void efx_reset_work(struct work_struct *data)
2743{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002744 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Alexandre Rames626950d2013-01-14 17:20:22 +00002745 unsigned long pending;
2746 enum reset_type method;
2747
2748 pending = ACCESS_ONCE(efx->reset_pending);
2749 method = fls(pending) - 1;
2750
Jon Cooper74cd60a2013-09-16 14:18:51 +01002751 if (method == RESET_TYPE_MC_BIST)
2752 efx_wait_for_bist_end(efx);
2753
Alexandre Rames626950d2013-01-14 17:20:22 +00002754 if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
2755 method == RESET_TYPE_RECOVER_OR_ALL) &&
2756 efx_try_recovery(efx))
2757 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002758
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002759 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00002760 return;
2761
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002762 rtnl_lock();
Ben Hutchings7153f622012-07-27 20:50:52 +01002763
2764 /* We checked the state in efx_schedule_reset() but it may
2765 * have changed by now. Now that we have the RTNL lock,
2766 * it cannot change again.
2767 */
2768 if (efx->state == STATE_READY)
Alexandre Rames626950d2013-01-14 17:20:22 +00002769 (void)efx_reset(efx, method);
Ben Hutchings7153f622012-07-27 20:50:52 +01002770
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002771 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002772}
2773
2774void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2775{
2776 enum reset_type method;
2777
Alexandre Rames626950d2013-01-14 17:20:22 +00002778 if (efx->state == STATE_RECOVERY) {
2779 netif_dbg(efx, drv, efx->net_dev,
2780 "recovering: skip scheduling %s reset\n",
2781 RESET_TYPE(type));
2782 return;
2783 }
2784
Ben Hutchings8ceee662008-04-27 12:55:59 +01002785 switch (type) {
2786 case RESET_TYPE_INVISIBLE:
2787 case RESET_TYPE_ALL:
Alexandre Rames626950d2013-01-14 17:20:22 +00002788 case RESET_TYPE_RECOVER_OR_ALL:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002789 case RESET_TYPE_WORLD:
2790 case RESET_TYPE_DISABLE:
Alexandre Rames626950d2013-01-14 17:20:22 +00002791 case RESET_TYPE_RECOVER_OR_DISABLE:
Jon Cooper087e9022015-05-20 11:11:35 +01002792 case RESET_TYPE_DATAPATH:
Jon Cooper74cd60a2013-09-16 14:18:51 +01002793 case RESET_TYPE_MC_BIST:
Edward Creee2835462014-04-16 19:27:48 +01002794 case RESET_TYPE_MCDI_TIMEOUT:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002795 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002796 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2797 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002798 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002799 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002800 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00002801 netif_dbg(efx, drv, efx->net_dev,
2802 "scheduling %s reset for %s\n",
2803 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002804 break;
2805 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002806
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002807 set_bit(method, &efx->reset_pending);
Ben Hutchings7153f622012-07-27 20:50:52 +01002808 smp_mb(); /* ensure we change reset_pending before checking state */
2809
2810 /* If we're not READY then just leave the flags set as the cue
2811 * to abort probing or reschedule the reset later.
2812 */
2813 if (ACCESS_ONCE(efx->state) != STATE_READY)
2814 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002815
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002816 /* efx_process_channel() will no longer read events once a
2817 * reset is scheduled. So switch back to poll'd MCDI completions. */
2818 efx_mcdi_mode_poll(efx);
2819
Steve Hodgson1ab00622008-12-12 21:33:02 -08002820 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002821}
2822
2823/**************************************************************************
2824 *
2825 * List of NICs we support
2826 *
2827 **************************************************************************/
2828
2829/* PCI device ID table */
Benoit Taine9baa3c32014-08-08 15:56:03 +02002830static const struct pci_device_id efx_pci_table[] = {
Ben Hutchings547c4742011-12-02 18:23:56 +00002831 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002832 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002833 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002834 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8127d662013-08-29 19:19:29 +01002835 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */
2836 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01002837 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1903), /* SFC9120 VF */
2838 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Mateusz Wrzesinski3b06a002014-07-14 08:38:49 +01002839 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923), /* SFC9140 PF */
2840 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Bert Kenwarddd248f12015-11-30 09:05:47 +00002841 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1923), /* SFC9140 VF */
2842 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
2843 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0a03), /* SFC9220 PF */
2844 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
2845 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1a03), /* SFC9220 VF */
2846 .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002847 {0} /* end of list */
2848};
2849
2850/**************************************************************************
2851 *
Ben Hutchings37594332009-11-23 16:05:45 +00002852 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002853 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002854 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002855 * Needed so all function pointers are valid and do not have to be tested
2856 * before use
2857 *
2858 **************************************************************************/
2859int efx_port_dummy_op_int(struct efx_nic *efx)
2860{
2861 return 0;
2862}
2863void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002864
2865static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002866{
2867 return false;
2868}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002869
stephen hemminger6c8c2512011-04-14 05:50:12 +00002870static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002871 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002872 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002873 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002874 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002875};
2876
Ben Hutchings8ceee662008-04-27 12:55:59 +01002877/**************************************************************************
2878 *
2879 * Data housekeeping
2880 *
2881 **************************************************************************/
2882
2883/* This zeroes out and then fills in the invariants in a struct
2884 * efx_nic (including all sub-structures).
2885 */
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002886static int efx_init_struct(struct efx_nic *efx,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002887 struct pci_dev *pci_dev, struct net_device *net_dev)
2888{
Ben Hutchings46426102010-09-10 06:42:33 +00002889 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002890
2891 /* Initialise common structures */
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01002892 INIT_LIST_HEAD(&efx->node);
2893 INIT_LIST_HEAD(&efx->secondary_list);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002894 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002895#ifdef CONFIG_SFC_MTD
2896 INIT_LIST_HEAD(&efx->mtd_list);
2897#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002898 INIT_WORK(&efx->reset_work, efx_reset_work);
2899 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002900 INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002901 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002902 efx->msg_enable = debug;
Ben Hutchingsf16aeea2012-07-27 19:31:16 +01002903 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002904 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002905
2906 efx->net_dev = net_dev;
Jon Cooper43a37392012-10-18 15:49:54 +01002907 efx->rx_prefix_size = efx->type->rx_prefix_size;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +04002908 efx->rx_ip_align =
2909 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
Jon Cooper43a37392012-10-18 15:49:54 +01002910 efx->rx_packet_hash_offset =
2911 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
Jon Cooperbd9a2652013-11-18 12:54:41 +00002912 efx->rx_packet_ts_offset =
2913 efx->type->rx_ts_offset - efx->type->rx_prefix_size;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002914 spin_lock_init(&efx->stats_lock);
2915 mutex_init(&efx->mac_lock);
2916 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002917 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002918 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002919 init_waitqueue_head(&efx->flush_wq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002920
2921 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002922 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2923 if (!efx->channel[i])
2924 goto fail;
Ben Hutchingsd8291182012-10-05 23:35:41 +01002925 efx->msi_context[i].efx = efx;
2926 efx->msi_context[i].index = i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002927 }
2928
Ben Hutchings8ceee662008-04-27 12:55:59 +01002929 /* Higher numbered interrupt modes are less capable! */
2930 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2931 interrupt_mode);
2932
Ben Hutchings6977dc62008-12-26 13:44:39 -08002933 /* Would be good to use the net_dev name, but we're too early */
2934 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2935 pci_name(pci_dev));
2936 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002937 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00002938 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002939
Ben Hutchings8ceee662008-04-27 12:55:59 +01002940 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00002941
2942fail:
2943 efx_fini_struct(efx);
2944 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002945}
2946
2947static void efx_fini_struct(struct efx_nic *efx)
2948{
Ben Hutchings8313aca2010-09-10 06:41:57 +00002949 int i;
2950
2951 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2952 kfree(efx->channel[i]);
2953
Ben Hutchingsef215e62013-12-05 20:13:22 +00002954 kfree(efx->vpd_sn);
2955
Ben Hutchings8ceee662008-04-27 12:55:59 +01002956 if (efx->workqueue) {
2957 destroy_workqueue(efx->workqueue);
2958 efx->workqueue = NULL;
2959 }
2960}
2961
Edward Creee4d112e2014-07-15 11:58:12 +01002962void efx_update_sw_stats(struct efx_nic *efx, u64 *stats)
2963{
2964 u64 n_rx_nodesc_trunc = 0;
2965 struct efx_channel *channel;
2966
2967 efx_for_each_channel(channel, efx)
2968 n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc;
2969 stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc;
2970 stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops);
2971}
2972
Ben Hutchings8ceee662008-04-27 12:55:59 +01002973/**************************************************************************
2974 *
2975 * PCI interface
2976 *
2977 **************************************************************************/
2978
2979/* Main body of final NIC shutdown code
2980 * This is called only at module unload (or hotplug removal).
2981 */
2982static void efx_pci_remove_main(struct efx_nic *efx)
2983{
Ben Hutchings7153f622012-07-27 20:50:52 +01002984 /* Flush reset_work. It can no longer be scheduled since we
2985 * are not READY.
2986 */
2987 BUG_ON(efx->state == STATE_READY);
2988 cancel_work_sync(&efx->reset_work);
2989
Ben Hutchingsd8291182012-10-05 23:35:41 +01002990 efx_disable_interrupts(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00002991 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002992 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002993 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002994 efx_fini_napi(efx);
2995 efx_remove_all(efx);
2996}
2997
2998/* Final NIC shutdown
Daniel Pieczko2a3fc312015-06-02 11:40:46 +01002999 * This is called only at module unload (or hotplug removal). A PF can call
3000 * this on its VFs to ensure they are unbound first.
Ben Hutchings8ceee662008-04-27 12:55:59 +01003001 */
3002static void efx_pci_remove(struct pci_dev *pci_dev)
3003{
3004 struct efx_nic *efx;
3005
3006 efx = pci_get_drvdata(pci_dev);
3007 if (!efx)
3008 return;
3009
3010 /* Mark the NIC as fini, then stop the interface */
3011 rtnl_lock();
Ben Hutchings0bcf4a62013-10-18 19:21:45 +01003012 efx_dissociate(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003013 dev_close(efx->net_dev);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003014 efx_disable_interrupts(efx);
Edward Creeea6bb992015-06-15 18:27:54 +01003015 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003016 rtnl_unlock();
3017
Shradha Shah7fa8d542015-05-06 00:55:13 +01003018 if (efx->type->sriov_fini)
3019 efx->type->sriov_fini(efx);
3020
Ben Hutchings8ceee662008-04-27 12:55:59 +01003021 efx_unregister_netdev(efx);
3022
Ben Hutchings7dde5962008-12-12 22:09:38 -08003023 efx_mtd_remove(efx);
3024
Ben Hutchings8ceee662008-04-27 12:55:59 +01003025 efx_pci_remove_main(efx);
3026
Ben Hutchings8ceee662008-04-27 12:55:59 +01003027 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003028 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003029
Ben Hutchings8ceee662008-04-27 12:55:59 +01003030 efx_fini_struct(efx);
3031 free_netdev(efx->net_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00003032
3033 pci_disable_pcie_error_reporting(pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003034};
3035
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003036/* NIC VPD information
3037 * Called during probe to display the part number of the
3038 * installed NIC. VPD is potentially very large but this should
3039 * always appear within the first 512 bytes.
3040 */
3041#define SFC_VPD_LEN 512
Ben Hutchingsef215e62013-12-05 20:13:22 +00003042static void efx_probe_vpd_strings(struct efx_nic *efx)
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003043{
3044 struct pci_dev *dev = efx->pci_dev;
3045 char vpd_data[SFC_VPD_LEN];
3046 ssize_t vpd_size;
Ben Hutchingsef215e62013-12-05 20:13:22 +00003047 int ro_start, ro_size, i, j;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003048
3049 /* Get the vpd data from the device */
3050 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
3051 if (vpd_size <= 0) {
3052 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
3053 return;
3054 }
3055
3056 /* Get the Read only section */
Ben Hutchingsef215e62013-12-05 20:13:22 +00003057 ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
3058 if (ro_start < 0) {
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003059 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
3060 return;
3061 }
3062
Ben Hutchingsef215e62013-12-05 20:13:22 +00003063 ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
3064 j = ro_size;
3065 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003066 if (i + j > vpd_size)
3067 j = vpd_size - i;
3068
3069 /* Get the Part number */
3070 i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
3071 if (i < 0) {
3072 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
3073 return;
3074 }
3075
3076 j = pci_vpd_info_field_size(&vpd_data[i]);
3077 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3078 if (i + j > vpd_size) {
3079 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
3080 return;
3081 }
3082
3083 netif_info(efx, drv, efx->net_dev,
3084 "Part Number : %.*s\n", j, &vpd_data[i]);
Ben Hutchingsef215e62013-12-05 20:13:22 +00003085
3086 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
3087 j = ro_size;
3088 i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN");
3089 if (i < 0) {
3090 netif_err(efx, drv, efx->net_dev, "Serial number not found\n");
3091 return;
3092 }
3093
3094 j = pci_vpd_info_field_size(&vpd_data[i]);
3095 i += PCI_VPD_INFO_FLD_HDR_SIZE;
3096 if (i + j > vpd_size) {
3097 netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n");
3098 return;
3099 }
3100
3101 efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL);
3102 if (!efx->vpd_sn)
3103 return;
3104
3105 snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003106}
3107
3108
Ben Hutchings8ceee662008-04-27 12:55:59 +01003109/* Main body of NIC initialisation
3110 * This is called at module load (or hotplug insertion, theoretically).
3111 */
3112static int efx_pci_probe_main(struct efx_nic *efx)
3113{
3114 int rc;
3115
3116 /* Do start-of-day initialisation */
3117 rc = efx_probe_all(efx);
3118 if (rc)
3119 goto fail1;
3120
Ben Hutchingse8f14992010-12-07 19:47:34 +00003121 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003122
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003123 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003124 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003125 netif_err(efx, probe, efx->net_dev,
3126 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003127 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003128 }
3129
3130 rc = efx_init_port(efx);
3131 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00003132 netif_err(efx, probe, efx->net_dev,
3133 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00003134 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003135 }
3136
Ben Hutchings152b6a62009-11-29 03:43:56 +00003137 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003138 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00003139 goto fail5;
Jon Cooper261e4d92013-04-15 18:51:54 +01003140 rc = efx_enable_interrupts(efx);
3141 if (rc)
3142 goto fail6;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003143
3144 return 0;
3145
Jon Cooper261e4d92013-04-15 18:51:54 +01003146 fail6:
3147 efx_nic_fini_interrupt(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00003148 fail5:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003149 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003150 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00003151 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003152 fail3:
3153 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003154 efx_remove_all(efx);
3155 fail1:
3156 return rc;
3157}
3158
3159/* NIC initialisation
3160 *
3161 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00003162 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003163 * sets up and registers the network devices with the kernel and hooks
3164 * the interrupt service routine. It does not prepare the device for
3165 * transmission; this is left to the first time one of the network
3166 * interfaces is brought up (i.e. efx_net_open).
3167 */
Bill Pemberton87d1fc12012-12-03 09:23:32 -05003168static int efx_pci_probe(struct pci_dev *pci_dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00003169 const struct pci_device_id *entry)
Ben Hutchings8ceee662008-04-27 12:55:59 +01003170{
Ben Hutchings8ceee662008-04-27 12:55:59 +01003171 struct net_device *net_dev;
3172 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003173 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003174
3175 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00003176 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
3177 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003178 if (!net_dev)
3179 return -ENOMEM;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003180 efx = netdev_priv(net_dev);
3181 efx->type = (const struct efx_nic_type *) entry->driver_data;
Andrew Rybchenkoebfcd0f2016-06-15 17:43:20 +01003182 efx->fixed_features |= NETIF_F_HIGHDMA;
Andrew Rybchenkoeb7cfd82016-06-15 17:51:36 +01003183
Ben Hutchings8ceee662008-04-27 12:55:59 +01003184 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00003185 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01003186 rc = efx_init_struct(efx, pci_dev, net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003187 if (rc)
3188 goto fail1;
3189
Ben Hutchings62776d02010-06-23 11:30:07 +00003190 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01003191 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003192
Shradha Shah6f7f8aa2015-05-06 01:00:07 +01003193 if (!efx->type->is_vf)
3194 efx_probe_vpd_strings(efx);
Ben Hutchings460eeaa2012-03-05 15:35:39 +00003195
Ben Hutchings8ceee662008-04-27 12:55:59 +01003196 /* Set up basic I/O (BAR mappings etc) */
3197 rc = efx_init_io(efx);
3198 if (rc)
3199 goto fail2;
3200
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003201 rc = efx_pci_probe_main(efx);
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003202 if (rc)
3203 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08003204
Edward Cree46d1efd2016-11-17 10:52:36 +00003205 net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
3206 NETIF_F_TSO | NETIF_F_RXCSUM);
3207 if (efx->type->offload_features & (NETIF_F_IPV6_CSUM | NETIF_F_HW_CSUM))
3208 net_dev->features |= NETIF_F_TSO6;
3209 /* Check whether device supports TSO */
3210 if (!efx->type->tso_versions || !efx->type->tso_versions(efx))
3211 net_dev->features &= ~NETIF_F_ALL_TSO;
3212 /* Mask for features that also apply to VLAN devices */
3213 net_dev->vlan_features |= (NETIF_F_HW_CSUM | NETIF_F_SG |
3214 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
3215 NETIF_F_RXCSUM);
3216
3217 net_dev->hw_features = net_dev->features & ~efx->fixed_features;
3218
3219 /* Disable VLAN filtering by default. It may be enforced if
3220 * the feature is fixed (i.e. VLAN filters are required to
3221 * receive VLAN tagged packets due to vPort restrictions).
3222 */
3223 net_dev->features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
3224 net_dev->features |= efx->fixed_features;
3225
Ben Hutchings8ceee662008-04-27 12:55:59 +01003226 rc = efx_register_netdev(efx);
3227 if (rc)
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003228 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01003229
Shradha Shah7fa8d542015-05-06 00:55:13 +01003230 if (efx->type->sriov_init) {
3231 rc = efx->type->sriov_init(efx);
3232 if (rc)
3233 netif_err(efx, probe, efx->net_dev,
3234 "SR-IOV can't be enabled rc %d\n", rc);
3235 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003236
Ben Hutchings62776d02010-06-23 11:30:07 +00003237 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003238
Ben Hutchings7c431612012-01-27 17:23:58 +00003239 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003240 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00003241 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00003242 rtnl_unlock();
Bert Kenward09a04202015-12-23 08:58:15 +00003243 if (rc && rc != -EPERM)
Ben Hutchings7c431612012-01-27 17:23:58 +00003244 netif_warn(efx, probe, efx->net_dev,
3245 "failed to create MTDs (%d)\n", rc);
3246
Alexandre Rames626950d2013-01-14 17:20:22 +00003247 rc = pci_enable_pcie_error_reporting(pci_dev);
3248 if (rc && rc != -EINVAL)
Bert Kenward09a04202015-12-23 08:58:15 +00003249 netif_notice(efx, probe, efx->net_dev,
3250 "PCIE error reporting unavailable (%d).\n",
3251 rc);
Alexandre Rames626950d2013-01-14 17:20:22 +00003252
Ben Hutchings8ceee662008-04-27 12:55:59 +01003253 return 0;
3254
Ben Hutchings8ceee662008-04-27 12:55:59 +01003255 fail4:
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00003256 efx_pci_remove_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003257 fail3:
3258 efx_fini_io(efx);
3259 fail2:
3260 efx_fini_struct(efx);
3261 fail1:
Steve Hodgson5e2a9112010-02-12 12:32:27 -08003262 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00003263 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003264 free_netdev(net_dev);
3265 return rc;
3266}
3267
Shradha Shah834e23d2015-05-06 00:55:58 +01003268/* efx_pci_sriov_configure returns the actual number of Virtual Functions
3269 * enabled on success
3270 */
3271#ifdef CONFIG_SFC_SRIOV
3272static int efx_pci_sriov_configure(struct pci_dev *dev, int num_vfs)
3273{
3274 int rc;
3275 struct efx_nic *efx = pci_get_drvdata(dev);
3276
3277 if (efx->type->sriov_configure) {
3278 rc = efx->type->sriov_configure(efx, num_vfs);
3279 if (rc)
3280 return rc;
3281 else
3282 return num_vfs;
3283 } else
3284 return -EOPNOTSUPP;
3285}
3286#endif
3287
Ben Hutchings89c758f2009-11-29 03:43:07 +00003288static int efx_pm_freeze(struct device *dev)
3289{
3290 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3291
Ben Hutchings61da0262012-07-27 19:35:39 +01003292 rtnl_lock();
3293
Ben Hutchings6032fb52012-07-27 19:35:47 +01003294 if (efx->state != STATE_DISABLED) {
3295 efx->state = STATE_UNINIT;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003296
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01003297 efx_device_detach_sync(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003298
Ben Hutchings6032fb52012-07-27 19:35:47 +01003299 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003300 efx_disable_interrupts(efx);
Ben Hutchings6032fb52012-07-27 19:35:47 +01003301 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003302
Ben Hutchings61da0262012-07-27 19:35:39 +01003303 rtnl_unlock();
3304
Ben Hutchings89c758f2009-11-29 03:43:07 +00003305 return 0;
3306}
3307
3308static int efx_pm_thaw(struct device *dev)
3309{
Jon Cooper261e4d92013-04-15 18:51:54 +01003310 int rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003311 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
3312
Ben Hutchings61da0262012-07-27 19:35:39 +01003313 rtnl_lock();
3314
Ben Hutchings6032fb52012-07-27 19:35:47 +01003315 if (efx->state != STATE_DISABLED) {
Jon Cooper261e4d92013-04-15 18:51:54 +01003316 rc = efx_enable_interrupts(efx);
3317 if (rc)
3318 goto fail;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003319
Ben Hutchings6032fb52012-07-27 19:35:47 +01003320 mutex_lock(&efx->mac_lock);
3321 efx->phy_op->reconfigure(efx);
3322 mutex_unlock(&efx->mac_lock);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003323
Ben Hutchings6032fb52012-07-27 19:35:47 +01003324 efx_start_all(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003325
Ben Hutchings6032fb52012-07-27 19:35:47 +01003326 netif_device_attach(efx->net_dev);
Ben Hutchings89c758f2009-11-29 03:43:07 +00003327
Ben Hutchings6032fb52012-07-27 19:35:47 +01003328 efx->state = STATE_READY;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003329
Ben Hutchings6032fb52012-07-27 19:35:47 +01003330 efx->type->resume_wol(efx);
3331 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00003332
Ben Hutchings61da0262012-07-27 19:35:39 +01003333 rtnl_unlock();
3334
Steve Hodgson319ba642010-06-01 11:17:24 +00003335 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
3336 queue_work(reset_workqueue, &efx->reset_work);
3337
Ben Hutchings89c758f2009-11-29 03:43:07 +00003338 return 0;
Jon Cooper261e4d92013-04-15 18:51:54 +01003339
3340fail:
3341 rtnl_unlock();
3342
3343 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003344}
3345
3346static int efx_pm_poweroff(struct device *dev)
3347{
3348 struct pci_dev *pci_dev = to_pci_dev(dev);
3349 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3350
3351 efx->type->fini(efx);
3352
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01003353 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003354
3355 pci_save_state(pci_dev);
3356 return pci_set_power_state(pci_dev, PCI_D3hot);
3357}
3358
3359/* Used for both resume and restore */
3360static int efx_pm_resume(struct device *dev)
3361{
3362 struct pci_dev *pci_dev = to_pci_dev(dev);
3363 struct efx_nic *efx = pci_get_drvdata(pci_dev);
3364 int rc;
3365
3366 rc = pci_set_power_state(pci_dev, PCI_D0);
3367 if (rc)
3368 return rc;
3369 pci_restore_state(pci_dev);
3370 rc = pci_enable_device(pci_dev);
3371 if (rc)
3372 return rc;
3373 pci_set_master(efx->pci_dev);
3374 rc = efx->type->reset(efx, RESET_TYPE_ALL);
3375 if (rc)
3376 return rc;
3377 rc = efx->type->init(efx);
3378 if (rc)
3379 return rc;
Jon Cooper261e4d92013-04-15 18:51:54 +01003380 rc = efx_pm_thaw(dev);
3381 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00003382}
3383
3384static int efx_pm_suspend(struct device *dev)
3385{
3386 int rc;
3387
3388 efx_pm_freeze(dev);
3389 rc = efx_pm_poweroff(dev);
3390 if (rc)
3391 efx_pm_resume(dev);
3392 return rc;
3393}
3394
Ben Hutchings18e83e42012-01-05 19:05:20 +00003395static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00003396 .suspend = efx_pm_suspend,
3397 .resume = efx_pm_resume,
3398 .freeze = efx_pm_freeze,
3399 .thaw = efx_pm_thaw,
3400 .poweroff = efx_pm_poweroff,
3401 .restore = efx_pm_resume,
3402};
3403
Alexandre Rames626950d2013-01-14 17:20:22 +00003404/* A PCI error affecting this device was detected.
3405 * At this point MMIO and DMA may be disabled.
3406 * Stop the software path and request a slot reset.
3407 */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003408static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3409 enum pci_channel_state state)
Alexandre Rames626950d2013-01-14 17:20:22 +00003410{
3411 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3412 struct efx_nic *efx = pci_get_drvdata(pdev);
3413
3414 if (state == pci_channel_io_perm_failure)
3415 return PCI_ERS_RESULT_DISCONNECT;
3416
3417 rtnl_lock();
3418
3419 if (efx->state != STATE_DISABLED) {
3420 efx->state = STATE_RECOVERY;
3421 efx->reset_pending = 0;
3422
3423 efx_device_detach_sync(efx);
3424
3425 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003426 efx_disable_interrupts(efx);
Alexandre Rames626950d2013-01-14 17:20:22 +00003427
3428 status = PCI_ERS_RESULT_NEED_RESET;
3429 } else {
3430 /* If the interface is disabled we don't want to do anything
3431 * with it.
3432 */
3433 status = PCI_ERS_RESULT_RECOVERED;
3434 }
3435
3436 rtnl_unlock();
3437
3438 pci_disable_device(pdev);
3439
3440 return status;
3441}
3442
Joe Perchesdbedd442015-03-06 20:49:12 -08003443/* Fake a successful reset, which will be performed later in efx_io_resume. */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003444static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
Alexandre Rames626950d2013-01-14 17:20:22 +00003445{
3446 struct efx_nic *efx = pci_get_drvdata(pdev);
3447 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3448 int rc;
3449
3450 if (pci_enable_device(pdev)) {
3451 netif_err(efx, hw, efx->net_dev,
3452 "Cannot re-enable PCI device after reset.\n");
3453 status = PCI_ERS_RESULT_DISCONNECT;
3454 }
3455
3456 rc = pci_cleanup_aer_uncorrect_error_status(pdev);
3457 if (rc) {
3458 netif_err(efx, hw, efx->net_dev,
3459 "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc);
3460 /* Non-fatal error. Continue. */
3461 }
3462
3463 return status;
3464}
3465
3466/* Perform the actual reset and resume I/O operations. */
3467static void efx_io_resume(struct pci_dev *pdev)
3468{
3469 struct efx_nic *efx = pci_get_drvdata(pdev);
3470 int rc;
3471
3472 rtnl_lock();
3473
3474 if (efx->state == STATE_DISABLED)
3475 goto out;
3476
3477 rc = efx_reset(efx, RESET_TYPE_ALL);
3478 if (rc) {
3479 netif_err(efx, hw, efx->net_dev,
3480 "efx_reset failed after PCI error (%d)\n", rc);
3481 } else {
3482 efx->state = STATE_READY;
3483 netif_dbg(efx, hw, efx->net_dev,
3484 "Done resetting and resuming IO after PCI error.\n");
3485 }
3486
3487out:
3488 rtnl_unlock();
3489}
3490
3491/* For simplicity and reliability, we always require a slot reset and try to
3492 * reset the hardware when a pci error affecting the device is detected.
3493 * We leave both the link_reset and mmio_enabled callback unimplemented:
3494 * with our request for slot reset the mmio_enabled callback will never be
3495 * called, and the link_reset callback is not used by AER or EEH mechanisms.
3496 */
Julia Lawallc300366b2015-11-14 11:06:57 +01003497static const struct pci_error_handlers efx_err_handlers = {
Alexandre Rames626950d2013-01-14 17:20:22 +00003498 .error_detected = efx_io_error_detected,
3499 .slot_reset = efx_io_slot_reset,
3500 .resume = efx_io_resume,
3501};
3502
Ben Hutchings8ceee662008-04-27 12:55:59 +01003503static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00003504 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003505 .id_table = efx_pci_table,
3506 .probe = efx_pci_probe,
3507 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00003508 .driver.pm = &efx_pm_ops,
Alexandre Rames626950d2013-01-14 17:20:22 +00003509 .err_handler = &efx_err_handlers,
Shradha Shah834e23d2015-05-06 00:55:58 +01003510#ifdef CONFIG_SFC_SRIOV
3511 .sriov_configure = efx_pci_sriov_configure,
3512#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003513};
3514
3515/**************************************************************************
3516 *
3517 * Kernel module interface
3518 *
3519 *************************************************************************/
3520
3521module_param(interrupt_mode, uint, 0444);
3522MODULE_PARM_DESC(interrupt_mode,
3523 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
3524
3525static int __init efx_init_module(void)
3526{
3527 int rc;
3528
3529 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
3530
3531 rc = register_netdevice_notifier(&efx_netdev_notifier);
3532 if (rc)
3533 goto err_notifier;
3534
Shradha Shah7fa8d542015-05-06 00:55:13 +01003535#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003536 rc = efx_init_sriov();
3537 if (rc)
3538 goto err_sriov;
Shradha Shah7fa8d542015-05-06 00:55:13 +01003539#endif
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003540
Steve Hodgson1ab00622008-12-12 21:33:02 -08003541 reset_workqueue = create_singlethread_workqueue("sfc_reset");
3542 if (!reset_workqueue) {
3543 rc = -ENOMEM;
3544 goto err_reset;
3545 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003546
3547 rc = pci_register_driver(&efx_pci_driver);
3548 if (rc < 0)
3549 goto err_pci;
3550
3551 return 0;
3552
3553 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08003554 destroy_workqueue(reset_workqueue);
3555 err_reset:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003556#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003557 efx_fini_sriov();
3558 err_sriov:
Shradha Shah7fa8d542015-05-06 00:55:13 +01003559#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003560 unregister_netdevice_notifier(&efx_netdev_notifier);
3561 err_notifier:
3562 return rc;
3563}
3564
3565static void __exit efx_exit_module(void)
3566{
3567 printk(KERN_INFO "Solarflare NET driver unloading\n");
3568
3569 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003570 destroy_workqueue(reset_workqueue);
Shradha Shah7fa8d542015-05-06 00:55:13 +01003571#ifdef CONFIG_SFC_SRIOV
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003572 efx_fini_sriov();
Shradha Shah7fa8d542015-05-06 00:55:13 +01003573#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01003574 unregister_netdevice_notifier(&efx_netdev_notifier);
3575
3576}
3577
3578module_init(efx_init_module);
3579module_exit(efx_exit_module);
3580
Ben Hutchings906bb262009-11-29 15:16:19 +00003581MODULE_AUTHOR("Solarflare Communications and "
3582 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings6a350fd2014-02-12 19:00:07 +00003583MODULE_DESCRIPTION("Solarflare network driver");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003584MODULE_LICENSE("GPL");
3585MODULE_DEVICE_TABLE(pci, efx_pci_table);
Edward Cree14077e92017-01-03 15:46:00 +00003586MODULE_VERSION(EFX_DRIVER_VERSION);