blob: 5e2454d071374641938541c47f84ac97acf93f04 [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"
Ben Hutchings8ceee662008-04-27 12:55:59 +010029
Ben Hutchings8880f4e2009-11-29 15:15:41 +000030#include "mcdi.h"
Steve Hodgsonfd371e32010-06-01 11:17:51 +000031#include "workarounds.h"
Ben Hutchings8880f4e2009-11-29 15:15:41 +000032
Ben Hutchingsc4593022009-11-23 16:08:17 +000033/**************************************************************************
34 *
35 * Type name strings
36 *
37 **************************************************************************
38 */
39
40/* Loopback mode names (see LOOPBACK_MODE()) */
41const unsigned int efx_loopback_mode_max = LOOPBACK_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000042const char *const efx_loopback_mode_names[] = {
Ben Hutchingsc4593022009-11-23 16:08:17 +000043 [LOOPBACK_NONE] = "NONE",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000044 [LOOPBACK_DATA] = "DATAPATH",
Ben Hutchingsc4593022009-11-23 16:08:17 +000045 [LOOPBACK_GMAC] = "GMAC",
46 [LOOPBACK_XGMII] = "XGMII",
47 [LOOPBACK_XGXS] = "XGXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000048 [LOOPBACK_XAUI] = "XAUI",
49 [LOOPBACK_GMII] = "GMII",
50 [LOOPBACK_SGMII] = "SGMII",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000051 [LOOPBACK_XGBR] = "XGBR",
52 [LOOPBACK_XFI] = "XFI",
53 [LOOPBACK_XAUI_FAR] = "XAUI_FAR",
54 [LOOPBACK_GMII_FAR] = "GMII_FAR",
55 [LOOPBACK_SGMII_FAR] = "SGMII_FAR",
56 [LOOPBACK_XFI_FAR] = "XFI_FAR",
Ben Hutchingsc4593022009-11-23 16:08:17 +000057 [LOOPBACK_GPHY] = "GPHY",
58 [LOOPBACK_PHYXS] = "PHYXS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000059 [LOOPBACK_PCS] = "PCS",
60 [LOOPBACK_PMAPMD] = "PMA/PMD",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000061 [LOOPBACK_XPORT] = "XPORT",
62 [LOOPBACK_XGMII_WS] = "XGMII_WS",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000063 [LOOPBACK_XAUI_WS] = "XAUI_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000064 [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR",
65 [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000066 [LOOPBACK_GMII_WS] = "GMII_WS",
Ben Hutchingse58f69f2009-11-29 15:08:41 +000067 [LOOPBACK_XFI_WS] = "XFI_WS",
68 [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR",
Ben Hutchings9c636ba2012-01-05 17:19:45 +000069 [LOOPBACK_PHYXS_WS] = "PHYXS_WS",
Ben Hutchingsc4593022009-11-23 16:08:17 +000070};
71
Ben Hutchingsc4593022009-11-23 16:08:17 +000072const unsigned int efx_reset_type_max = RESET_TYPE_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000073const char *const efx_reset_type_names[] = {
Alexandre Rames626950d2013-01-14 17:20:22 +000074 [RESET_TYPE_INVISIBLE] = "INVISIBLE",
75 [RESET_TYPE_ALL] = "ALL",
76 [RESET_TYPE_RECOVER_OR_ALL] = "RECOVER_OR_ALL",
77 [RESET_TYPE_WORLD] = "WORLD",
78 [RESET_TYPE_RECOVER_OR_DISABLE] = "RECOVER_OR_DISABLE",
79 [RESET_TYPE_DISABLE] = "DISABLE",
80 [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG",
81 [RESET_TYPE_INT_ERROR] = "INT_ERROR",
82 [RESET_TYPE_RX_RECOVERY] = "RX_RECOVERY",
Alexandre Rames3de82b92013-06-13 11:36:15 +010083 [RESET_TYPE_DMA_ERROR] = "DMA_ERROR",
Alexandre Rames626950d2013-01-14 17:20:22 +000084 [RESET_TYPE_TX_SKIP] = "TX_SKIP",
85 [RESET_TYPE_MC_FAILURE] = "MC_FAILURE",
Jon Cooper74cd60a2013-09-16 14:18:51 +010086 [RESET_TYPE_MC_BIST] = "MC_BIST",
Ben Hutchingsc4593022009-11-23 16:08:17 +000087};
88
Steve Hodgson1ab00622008-12-12 21:33:02 -080089/* Reset workqueue. If any NIC has a hardware failure then a reset will be
90 * queued onto this work queue. This is not a per-nic work queue, because
91 * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised.
92 */
93static struct workqueue_struct *reset_workqueue;
94
Jon Cooper74cd60a2013-09-16 14:18:51 +010095/* How often and how many times to poll for a reset while waiting for a
96 * BIST that another function started to complete.
97 */
98#define BIST_WAIT_DELAY_MS 100
99#define BIST_WAIT_DELAY_COUNT 100
100
Ben Hutchings8ceee662008-04-27 12:55:59 +0100101/**************************************************************************
102 *
103 * Configurable values
104 *
105 *************************************************************************/
106
107/*
Ben Hutchings8ceee662008-04-27 12:55:59 +0100108 * Use separate channels for TX and RX events
109 *
Neil Turton28b581a2008-12-12 21:41:06 -0800110 * Set this to 1 to use separate channels for TX and RX. It allows us
111 * to control interrupt affinity separately for TX and RX.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100112 *
Neil Turton28b581a2008-12-12 21:41:06 -0800113 * This is only used in MSI-X interrupt mode
Ben Hutchings8ceee662008-04-27 12:55:59 +0100114 */
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000115static bool separate_tx_channels;
116module_param(separate_tx_channels, bool, 0444);
Neil Turton28b581a2008-12-12 21:41:06 -0800117MODULE_PARM_DESC(separate_tx_channels,
118 "Use separate channels for TX and RX");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100119
120/* This is the weight assigned to each of the (per-channel) virtual
121 * NAPI devices.
122 */
123static int napi_weight = 64;
124
125/* This is the time (in jiffies) between invocations of the hardware
Alexandre Rames626950d2013-01-14 17:20:22 +0000126 * monitor.
127 * On Falcon-based NICs, this will:
Ben Hutchingse254c272010-09-20 08:44:10 +0000128 * - Check the on-board hardware monitor;
129 * - Poll the link state and reconfigure the hardware as necessary.
Alexandre Rames626950d2013-01-14 17:20:22 +0000130 * On Siena-based NICs for power systems with EEH support, this will give EEH a
131 * chance to start.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100132 */
stephen hemmingerd2156972010-10-18 05:27:31 +0000133static unsigned int efx_monitor_interval = 1 * HZ;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100134
Ben Hutchings8ceee662008-04-27 12:55:59 +0100135/* Initial interrupt moderation settings. They can be modified after
136 * module load with ethtool.
137 *
138 * The default for RX should strike a balance between increasing the
139 * round-trip latency and reducing overhead.
140 */
141static unsigned int rx_irq_mod_usec = 60;
142
143/* Initial interrupt moderation settings. They can be modified after
144 * module load with ethtool.
145 *
146 * This default is chosen to ensure that a 10G link does not go idle
147 * while a TX queue is stopped after it has become full. A queue is
148 * restarted when it drops below half full. The time this takes (assuming
149 * worst case 3 descriptors per packet and 1024 descriptors) is
150 * 512 / 3 * 1.2 = 205 usec.
151 */
152static unsigned int tx_irq_mod_usec = 150;
153
154/* This is the first interrupt mode to try out of:
155 * 0 => MSI-X
156 * 1 => MSI
157 * 2 => legacy
158 */
159static unsigned int interrupt_mode;
160
161/* This is the requested number of CPUs to use for Receive-Side Scaling (RSS),
162 * i.e. the number of CPUs among which we may distribute simultaneous
163 * interrupt handling.
164 *
165 * Cards without MSI-X will only target one CPU via legacy or MSI interrupt.
Ben Hutchingscdb08f82011-12-20 01:08:05 +0000166 * The default (0) means to assign an interrupt to each core.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100167 */
168static unsigned int rss_cpus;
169module_param(rss_cpus, uint, 0444);
170MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling");
171
Ben Hutchingsb9cc9772012-11-28 04:12:41 +0000172static bool phy_flash_cfg;
173module_param(phy_flash_cfg, bool, 0644);
Ben Hutchings84ae48f2008-12-12 21:34:54 -0800174MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially");
175
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000176static unsigned irq_adapt_low_thresh = 8000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000177module_param(irq_adapt_low_thresh, uint, 0644);
178MODULE_PARM_DESC(irq_adapt_low_thresh,
179 "Threshold score for reducing IRQ moderation");
180
Ben Hutchingse7bed9c2012-02-28 18:44:13 +0000181static unsigned irq_adapt_high_thresh = 16000;
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000182module_param(irq_adapt_high_thresh, uint, 0644);
183MODULE_PARM_DESC(irq_adapt_high_thresh,
184 "Threshold score for increasing IRQ moderation");
185
Ben Hutchings62776d02010-06-23 11:30:07 +0000186static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
187 NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
188 NETIF_MSG_IFUP | NETIF_MSG_RX_ERR |
189 NETIF_MSG_TX_ERR | NETIF_MSG_HW);
190module_param(debug, uint, 0);
191MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value");
192
Ben Hutchings8ceee662008-04-27 12:55:59 +0100193/**************************************************************************
194 *
195 * Utility functions and prototypes
196 *
197 *************************************************************************/
Ben Hutchings46426102010-09-10 06:42:33 +0000198
Jon Cooper261e4d92013-04-15 18:51:54 +0100199static int efx_soft_enable_interrupts(struct efx_nic *efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100200static void efx_soft_disable_interrupts(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000201static void efx_remove_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000202static void efx_remove_channels(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000203static const struct efx_channel_type efx_default_channel_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100204static void efx_remove_port(struct efx_nic *efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +0000205static void efx_init_napi_channel(struct efx_channel *channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100206static void efx_fini_napi(struct efx_nic *efx);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000207static void efx_fini_napi_channel(struct efx_channel *channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000208static void efx_fini_struct(struct efx_nic *efx);
209static void efx_start_all(struct efx_nic *efx);
210static void efx_stop_all(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100211
212#define EFX_ASSERT_RESET_SERIALISED(efx) \
213 do { \
Ben Hutchingsf16aeea2012-07-27 19:31:16 +0100214 if ((efx->state == STATE_READY) || \
Alexandre Rames626950d2013-01-14 17:20:22 +0000215 (efx->state == STATE_RECOVERY) || \
Ben Hutchings332c1ce2009-11-25 16:08:52 +0000216 (efx->state == STATE_DISABLED)) \
Ben Hutchings8ceee662008-04-27 12:55:59 +0100217 ASSERT_RTNL(); \
218 } while (0)
219
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100220static int efx_check_disabled(struct efx_nic *efx)
221{
Alexandre Rames626950d2013-01-14 17:20:22 +0000222 if (efx->state == STATE_DISABLED || efx->state == STATE_RECOVERY) {
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100223 netif_err(efx, drv, efx->net_dev,
224 "device is disabled due to earlier errors\n");
225 return -EIO;
226 }
227 return 0;
228}
229
Ben Hutchings8ceee662008-04-27 12:55:59 +0100230/**************************************************************************
231 *
232 * Event queue processing
233 *
234 *************************************************************************/
235
236/* Process channel's event queue
237 *
238 * This function is responsible for processing the event queue of a
239 * single channel. The caller must guarantee that this function will
240 * never be concurrently called more than once on the same channel,
241 * though different channels may be being processed concurrently.
242 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000243static int efx_process_channel(struct efx_channel *channel, int budget)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100244{
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000245 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100246
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000247 if (unlikely(!channel->enabled))
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100248 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100249
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000250 spent = efx_nic_process_eventq(channel, budget);
Ben Hutchingsd9ab7002012-02-13 23:29:16 +0000251 if (spent && efx_channel_has_rx_queue(channel)) {
252 struct efx_rx_queue *rx_queue =
253 efx_channel_get_rx_queue(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100254
Ben Hutchingsff734ef2013-01-29 23:33:14 +0000255 efx_rx_flush_packet(channel);
Jon Coopercce28792013-10-02 11:04:14 +0100256 efx_fast_push_rx_descriptors(rx_queue, true);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100257 }
258
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000259 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100260}
261
Ben Hutchings8ceee662008-04-27 12:55:59 +0100262/* NAPI poll handler
263 *
264 * NAPI guarantees serialisation of polls of the same device, which
265 * provides the guarantee required by efx_process_channel().
266 */
267static int efx_poll(struct napi_struct *napi, int budget)
268{
269 struct efx_channel *channel =
270 container_of(napi, struct efx_channel, napi_str);
Ben Hutchings62776d02010-06-23 11:30:07 +0000271 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000272 int spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100273
Ben Hutchings62776d02010-06-23 11:30:07 +0000274 netif_vdbg(efx, intr, efx->net_dev,
275 "channel %d NAPI poll executing on CPU %d\n",
276 channel->channel, raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100277
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000278 spent = efx_process_channel(channel, budget);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100279
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000280 if (spent < budget) {
Ben Hutchings9d9a6972012-02-10 23:01:48 +0000281 if (efx_channel_has_rx_queue(channel) &&
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000282 efx->irq_rx_adaptive &&
283 unlikely(++channel->irq_count == 1000)) {
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000284 if (unlikely(channel->irq_mod_score <
285 irq_adapt_low_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000286 if (channel->irq_moderation > 1) {
287 channel->irq_moderation -= 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000288 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000289 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000290 } else if (unlikely(channel->irq_mod_score >
291 irq_adapt_high_thresh)) {
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000292 if (channel->irq_moderation <
293 efx->irq_rx_moderation) {
294 channel->irq_moderation += 1;
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000295 efx->type->push_irq_moderation(channel);
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000296 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000297 }
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000298 channel->irq_count = 0;
299 channel->irq_mod_score = 0;
300 }
301
Ben Hutchings64d8ad62011-01-05 00:50:41 +0000302 efx_filter_rfs_expire(channel);
303
Ben Hutchings8ceee662008-04-27 12:55:59 +0100304 /* There is no race here; although napi_disable() will
Ben Hutchings288379f2009-01-19 16:43:59 -0800305 * only wait for napi_complete(), this isn't a problem
Ben Hutchings514bedb2012-10-05 19:30:16 +0100306 * since efx_nic_eventq_read_ack() will have no effect if
Ben Hutchings8ceee662008-04-27 12:55:59 +0100307 * interrupts have already been disabled.
308 */
Ben Hutchings288379f2009-01-19 16:43:59 -0800309 napi_complete(napi);
Ben Hutchings514bedb2012-10-05 19:30:16 +0100310 efx_nic_eventq_read_ack(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100311 }
312
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000313 return spent;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100314}
315
Ben Hutchings8ceee662008-04-27 12:55:59 +0100316/* Create event queue
317 * Event queue memory allocations are done only once. If the channel
318 * is reset, the memory buffer will be reused; this guards against
319 * errors during channel reset and also simplifies interrupt handling.
320 */
321static int efx_probe_eventq(struct efx_channel *channel)
322{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000323 struct efx_nic *efx = channel->efx;
324 unsigned long entries;
325
Ben Hutchings86ee5302012-01-09 19:51:22 +0000326 netif_dbg(efx, probe, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000327 "chan %d create event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100328
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000329 /* Build an event queue with room for one event per tx and rx buffer,
330 * plus some extra for link state events and MCDI completions. */
331 entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128);
332 EFX_BUG_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE);
333 channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1;
334
Ben Hutchings152b6a62009-11-29 03:43:56 +0000335 return efx_nic_probe_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100336}
337
338/* Prepare channel's event queue */
Jon Cooper261e4d92013-04-15 18:51:54 +0100339static int efx_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100340{
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100341 struct efx_nic *efx = channel->efx;
Jon Cooper261e4d92013-04-15 18:51:54 +0100342 int rc;
343
344 EFX_WARN_ON_PARANOID(channel->eventq_init);
345
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100346 netif_dbg(efx, drv, efx->net_dev,
Ben Hutchings62776d02010-06-23 11:30:07 +0000347 "chan %d init event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100348
Jon Cooper261e4d92013-04-15 18:51:54 +0100349 rc = efx_nic_init_eventq(channel);
350 if (rc == 0) {
Ben Hutchings15acb1c2013-05-01 16:30:17 +0100351 efx->type->push_irq_moderation(channel);
Jon Cooper261e4d92013-04-15 18:51:54 +0100352 channel->eventq_read_ptr = 0;
353 channel->eventq_init = true;
354 }
355 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100356}
357
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000358/* Enable event queue processing and NAPI */
359static void efx_start_eventq(struct efx_channel *channel)
360{
361 netif_dbg(channel->efx, ifup, channel->efx->net_dev,
362 "chan %d start event queue\n", channel->channel);
363
Ben Hutchings514bedb2012-10-05 19:30:16 +0100364 /* Make sure the NAPI handler sees the enabled flag set */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000365 channel->enabled = true;
366 smp_wmb();
367
368 napi_enable(&channel->napi_str);
369 efx_nic_eventq_read_ack(channel);
370}
371
372/* Disable event queue processing and NAPI */
373static void efx_stop_eventq(struct efx_channel *channel)
374{
375 if (!channel->enabled)
376 return;
377
378 napi_disable(&channel->napi_str);
379 channel->enabled = false;
380}
381
Ben Hutchings8ceee662008-04-27 12:55:59 +0100382static void efx_fini_eventq(struct efx_channel *channel)
383{
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100384 if (!channel->eventq_init)
385 return;
386
Ben Hutchings62776d02010-06-23 11:30:07 +0000387 netif_dbg(channel->efx, drv, channel->efx->net_dev,
388 "chan %d fini event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100389
Ben Hutchings152b6a62009-11-29 03:43:56 +0000390 efx_nic_fini_eventq(channel);
Ben Hutchingsbe3fc092012-10-08 18:21:51 +0100391 channel->eventq_init = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100392}
393
394static void efx_remove_eventq(struct efx_channel *channel)
395{
Ben Hutchings62776d02010-06-23 11:30:07 +0000396 netif_dbg(channel->efx, drv, channel->efx->net_dev,
397 "chan %d remove event queue\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100398
Ben Hutchings152b6a62009-11-29 03:43:56 +0000399 efx_nic_remove_eventq(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100400}
401
402/**************************************************************************
403 *
404 * Channel handling
405 *
406 *************************************************************************/
407
Ben Hutchings7f967c02012-02-13 23:45:02 +0000408/* Allocate and initialise a channel structure. */
Ben Hutchings46426102010-09-10 06:42:33 +0000409static struct efx_channel *
410efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel)
411{
412 struct efx_channel *channel;
413 struct efx_rx_queue *rx_queue;
414 struct efx_tx_queue *tx_queue;
415 int j;
416
Ben Hutchings7f967c02012-02-13 23:45:02 +0000417 channel = kzalloc(sizeof(*channel), GFP_KERNEL);
418 if (!channel)
419 return NULL;
Ben Hutchings46426102010-09-10 06:42:33 +0000420
Ben Hutchings7f967c02012-02-13 23:45:02 +0000421 channel->efx = efx;
422 channel->channel = i;
423 channel->type = &efx_default_channel_type;
Ben Hutchings46426102010-09-10 06:42:33 +0000424
Ben Hutchings7f967c02012-02-13 23:45:02 +0000425 for (j = 0; j < EFX_TXQ_TYPES; j++) {
426 tx_queue = &channel->tx_queue[j];
427 tx_queue->efx = efx;
428 tx_queue->queue = i * EFX_TXQ_TYPES + j;
429 tx_queue->channel = channel;
Ben Hutchings46426102010-09-10 06:42:33 +0000430 }
431
Ben Hutchings46426102010-09-10 06:42:33 +0000432 rx_queue = &channel->rx_queue;
433 rx_queue->efx = efx;
434 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
435 (unsigned long)rx_queue);
436
437 return channel;
438}
439
Ben Hutchings7f967c02012-02-13 23:45:02 +0000440/* Allocate and initialise a channel structure, copying parameters
441 * (but not resources) from an old channel structure.
442 */
443static struct efx_channel *
444efx_copy_channel(const struct efx_channel *old_channel)
445{
446 struct efx_channel *channel;
447 struct efx_rx_queue *rx_queue;
448 struct efx_tx_queue *tx_queue;
449 int j;
450
451 channel = kmalloc(sizeof(*channel), GFP_KERNEL);
452 if (!channel)
453 return NULL;
454
455 *channel = *old_channel;
456
457 channel->napi_dev = NULL;
458 memset(&channel->eventq, 0, sizeof(channel->eventq));
459
460 for (j = 0; j < EFX_TXQ_TYPES; j++) {
461 tx_queue = &channel->tx_queue[j];
462 if (tx_queue->channel)
463 tx_queue->channel = channel;
464 tx_queue->buffer = NULL;
465 memset(&tx_queue->txd, 0, sizeof(tx_queue->txd));
466 }
467
468 rx_queue = &channel->rx_queue;
469 rx_queue->buffer = NULL;
470 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd));
471 setup_timer(&rx_queue->slow_fill, efx_rx_slow_fill,
472 (unsigned long)rx_queue);
473
474 return channel;
475}
476
Ben Hutchings8ceee662008-04-27 12:55:59 +0100477static int efx_probe_channel(struct efx_channel *channel)
478{
479 struct efx_tx_queue *tx_queue;
480 struct efx_rx_queue *rx_queue;
481 int rc;
482
Ben Hutchings62776d02010-06-23 11:30:07 +0000483 netif_dbg(channel->efx, probe, channel->efx->net_dev,
484 "creating channel %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100485
Ben Hutchings7f967c02012-02-13 23:45:02 +0000486 rc = channel->type->pre_probe(channel);
487 if (rc)
488 goto fail;
489
Ben Hutchings8ceee662008-04-27 12:55:59 +0100490 rc = efx_probe_eventq(channel);
491 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000492 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100493
494 efx_for_each_channel_tx_queue(tx_queue, channel) {
495 rc = efx_probe_tx_queue(tx_queue);
496 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000497 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100498 }
499
500 efx_for_each_channel_rx_queue(rx_queue, channel) {
501 rc = efx_probe_rx_queue(rx_queue);
502 if (rc)
Ben Hutchings7f967c02012-02-13 23:45:02 +0000503 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100504 }
505
506 channel->n_rx_frm_trunc = 0;
507
508 return 0;
509
Ben Hutchings7f967c02012-02-13 23:45:02 +0000510fail:
511 efx_remove_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100512 return rc;
513}
514
Ben Hutchings7f967c02012-02-13 23:45:02 +0000515static void
516efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len)
517{
518 struct efx_nic *efx = channel->efx;
519 const char *type;
520 int number;
521
522 number = channel->channel;
523 if (efx->tx_channel_offset == 0) {
524 type = "";
525 } else if (channel->channel < efx->tx_channel_offset) {
526 type = "-rx";
527 } else {
528 type = "-tx";
529 number -= efx->tx_channel_offset;
530 }
531 snprintf(buf, len, "%s%s-%d", efx->name, type, number);
532}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100533
Ben Hutchings56536e92008-12-12 21:37:02 -0800534static void efx_set_channel_names(struct efx_nic *efx)
535{
536 struct efx_channel *channel;
Ben Hutchings56536e92008-12-12 21:37:02 -0800537
Ben Hutchings7f967c02012-02-13 23:45:02 +0000538 efx_for_each_channel(channel, efx)
539 channel->type->get_name(channel,
Ben Hutchingsd8291182012-10-05 23:35:41 +0100540 efx->msi_context[channel->channel].name,
541 sizeof(efx->msi_context[0].name));
Ben Hutchings56536e92008-12-12 21:37:02 -0800542}
543
Ben Hutchings46426102010-09-10 06:42:33 +0000544static int efx_probe_channels(struct efx_nic *efx)
545{
546 struct efx_channel *channel;
547 int rc;
548
549 /* Restart special buffer allocation */
550 efx->next_buffer_table = 0;
551
Ben Hutchingsc92aaff2012-02-21 23:22:00 +0000552 /* Probe channels in reverse, so that any 'extra' channels
553 * use the start of the buffer table. This allows the traffic
554 * channels to be resized without moving them or wasting the
555 * entries before them.
556 */
557 efx_for_each_channel_rev(channel, efx) {
Ben Hutchings46426102010-09-10 06:42:33 +0000558 rc = efx_probe_channel(channel);
559 if (rc) {
560 netif_err(efx, probe, efx->net_dev,
561 "failed to create channel %d\n",
562 channel->channel);
563 goto fail;
564 }
565 }
566 efx_set_channel_names(efx);
567
568 return 0;
569
570fail:
571 efx_remove_channels(efx);
572 return rc;
573}
574
Ben Hutchings8ceee662008-04-27 12:55:59 +0100575/* Channels are shutdown and reinitialised whilst the NIC is running
576 * to propagate configuration changes (mtu, checksum offload), or
577 * to clear hardware error conditions
578 */
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000579static void efx_start_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100580{
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000581 bool old_rx_scatter = efx->rx_scatter;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100582 struct efx_tx_queue *tx_queue;
583 struct efx_rx_queue *rx_queue;
584 struct efx_channel *channel;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000585 size_t rx_buf_len;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100586
Ben Hutchingsf7f13b02008-05-16 21:15:06 +0100587 /* Calculate the rx buffer allocation parameters required to
588 * support the current MTU, including padding for header
589 * alignment and overruns.
590 */
Jon Cooper43a37392012-10-18 15:49:54 +0100591 efx->rx_dma_len = (efx->rx_prefix_size +
Ben Hutchings272baee2013-01-29 23:33:14 +0000592 EFX_MAX_FRAME_LEN(efx->net_dev->mtu) +
593 efx->type->rx_buffer_padding);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000594 rx_buf_len = (sizeof(struct efx_rx_page_state) +
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400595 efx->rx_ip_align + efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000596 if (rx_buf_len <= PAGE_SIZE) {
Jon Coopere8c68c02013-03-08 10:18:28 +0000597 efx->rx_scatter = efx->type->always_rx_scatter;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000598 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000599 } else if (efx->type->can_rx_scatter) {
Ben Hutchings950c54d2013-05-13 12:01:22 +0000600 BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000601 BUILD_BUG_ON(sizeof(struct efx_rx_page_state) +
Ben Hutchings950c54d2013-05-13 12:01:22 +0000602 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE,
603 EFX_RX_BUF_ALIGNMENT) >
604 PAGE_SIZE);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000605 efx->rx_scatter = true;
606 efx->rx_dma_len = EFX_RX_USR_BUF_SIZE;
607 efx->rx_buffer_order = 0;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000608 } else {
609 efx->rx_scatter = false;
610 efx->rx_buffer_order = get_order(rx_buf_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000611 }
612
Daniel Pieczko1648a232013-02-13 10:54:41 +0000613 efx_rx_config_page_split(efx);
614 if (efx->rx_buffer_order)
615 netif_dbg(efx, drv, efx->net_dev,
616 "RX buf len=%u; page order=%u batch=%u\n",
617 efx->rx_dma_len, efx->rx_buffer_order,
618 efx->rx_pages_per_batch);
619 else
620 netif_dbg(efx, drv, efx->net_dev,
621 "RX buf len=%u step=%u bpp=%u; page batch=%u\n",
622 efx->rx_dma_len, efx->rx_page_buf_step,
623 efx->rx_bufs_per_page, efx->rx_pages_per_batch);
Daniel Pieczko27689352013-02-13 10:54:41 +0000624
Jon Coopere8c68c02013-03-08 10:18:28 +0000625 /* RX filters may also have scatter-enabled flags */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000626 if (efx->rx_scatter != old_rx_scatter)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000627 efx->type->filter_update_rx_scatter(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100628
Ben Hutchings14bf7182012-05-22 01:27:58 +0100629 /* We must keep at least one descriptor in a TX ring empty.
630 * We could avoid this when the queue size does not exactly
631 * match the hardware ring size, but it's not that important.
632 * Therefore we stop the queue when one more skb might fill
633 * the ring completely. We wake it when half way back to
634 * empty.
635 */
636 efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx);
637 efx->txq_wake_thresh = efx->txq_stop_thresh / 2;
638
Ben Hutchings8ceee662008-04-27 12:55:59 +0100639 /* Initialise the channels */
640 efx_for_each_channel(channel, efx) {
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100641 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100642 efx_init_tx_queue(tx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100643 atomic_inc(&efx->active_queues);
644 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100645
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000646 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100647 efx_init_rx_queue(rx_queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100648 atomic_inc(&efx->active_queues);
Jon Coopercce28792013-10-02 11:04:14 +0100649 efx_stop_eventq(channel);
650 efx_fast_push_rx_descriptors(rx_queue, false);
651 efx_start_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000652 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100653
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000654 WARN_ON(channel->rx_pkt_n_frags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100655 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000656
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000657 efx_ptp_start_datapath(efx);
658
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000659 if (netif_device_present(efx->net_dev))
660 netif_tx_wake_all_queues(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100661}
662
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000663static void efx_stop_datapath(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100664{
665 struct efx_channel *channel;
666 struct efx_tx_queue *tx_queue;
667 struct efx_rx_queue *rx_queue;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100668 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100669
670 EFX_ASSERT_RESET_SERIALISED(efx);
671 BUG_ON(efx->port_enabled);
672
Alexandre Rames2ea4dc22013-11-08 10:20:31 +0000673 efx_ptp_stop_datapath(efx);
674
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100675 /* Stop RX refill */
676 efx_for_each_channel(channel, efx) {
677 efx_for_each_channel_rx_queue(rx_queue, channel)
678 rx_queue->refill_enabled = false;
679 }
680
Ben Hutchings8ceee662008-04-27 12:55:59 +0100681 efx_for_each_channel(channel, efx) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000682 /* RX packet processing is pipelined, so wait for the
683 * NAPI handler to complete. At least event queue 0
684 * might be kept active by non-data events, so don't
685 * use napi_synchronize() but actually disable NAPI
686 * temporarily.
687 */
688 if (efx_channel_has_rx_queue(channel)) {
689 efx_stop_eventq(channel);
690 efx_start_eventq(channel);
691 }
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100692 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100693
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100694 rc = efx->type->fini_dmaq(efx);
695 if (rc && EFX_WORKAROUND_7803(efx)) {
696 /* Schedule a reset to recover from the flush failure. The
697 * descriptor caches reference memory we're about to free,
698 * but falcon_reconfigure_mac_wrapper() won't reconnect
699 * the MACs because of the pending reset.
700 */
701 netif_err(efx, drv, efx->net_dev,
702 "Resetting to recover from flush failure\n");
703 efx_schedule_reset(efx, RESET_TYPE_ALL);
704 } else if (rc) {
705 netif_err(efx, drv, efx->net_dev, "failed to flush queues\n");
706 } else {
707 netif_dbg(efx, drv, efx->net_dev,
708 "successfully flushed all queues\n");
709 }
710
711 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100712 efx_for_each_channel_rx_queue(rx_queue, channel)
713 efx_fini_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000714 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100715 efx_fini_tx_queue(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100716 }
717}
718
719static void efx_remove_channel(struct efx_channel *channel)
720{
721 struct efx_tx_queue *tx_queue;
722 struct efx_rx_queue *rx_queue;
723
Ben Hutchings62776d02010-06-23 11:30:07 +0000724 netif_dbg(channel->efx, drv, channel->efx->net_dev,
725 "destroy chan %d\n", channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100726
727 efx_for_each_channel_rx_queue(rx_queue, channel)
728 efx_remove_rx_queue(rx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000729 efx_for_each_possible_channel_tx_queue(tx_queue, channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100730 efx_remove_tx_queue(tx_queue);
731 efx_remove_eventq(channel);
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100732 channel->type->post_remove(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100733}
734
Ben Hutchings46426102010-09-10 06:42:33 +0000735static void efx_remove_channels(struct efx_nic *efx)
736{
737 struct efx_channel *channel;
738
739 efx_for_each_channel(channel, efx)
740 efx_remove_channel(channel);
741}
742
743int
744efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries)
745{
746 struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel;
747 u32 old_rxq_entries, old_txq_entries;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000748 unsigned i, next_buffer_table = 0;
Jon Cooper261e4d92013-04-15 18:51:54 +0100749 int rc, rc2;
Ben Hutchings8b7325b2012-07-27 20:46:41 +0100750
751 rc = efx_check_disabled(efx);
752 if (rc)
753 return rc;
Ben Hutchings7f967c02012-02-13 23:45:02 +0000754
755 /* Not all channels should be reallocated. We must avoid
756 * reallocating their buffer table entries.
757 */
758 efx_for_each_channel(channel, efx) {
759 struct efx_rx_queue *rx_queue;
760 struct efx_tx_queue *tx_queue;
761
762 if (channel->type->copy)
763 continue;
764 next_buffer_table = max(next_buffer_table,
765 channel->eventq.index +
766 channel->eventq.entries);
767 efx_for_each_channel_rx_queue(rx_queue, channel)
768 next_buffer_table = max(next_buffer_table,
769 rx_queue->rxd.index +
770 rx_queue->rxd.entries);
771 efx_for_each_channel_tx_queue(tx_queue, channel)
772 next_buffer_table = max(next_buffer_table,
773 tx_queue->txd.index +
774 tx_queue->txd.entries);
775 }
Ben Hutchings46426102010-09-10 06:42:33 +0000776
Ben Hutchings29c69a42013-01-28 19:01:06 +0000777 efx_device_detach_sync(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000778 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +0100779 efx_soft_disable_interrupts(efx);
Ben Hutchings46426102010-09-10 06:42:33 +0000780
Ben Hutchings7f967c02012-02-13 23:45:02 +0000781 /* Clone channels (where possible) */
Ben Hutchings46426102010-09-10 06:42:33 +0000782 memset(other_channel, 0, sizeof(other_channel));
783 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000784 channel = efx->channel[i];
785 if (channel->type->copy)
786 channel = channel->type->copy(channel);
Ben Hutchings46426102010-09-10 06:42:33 +0000787 if (!channel) {
788 rc = -ENOMEM;
789 goto out;
790 }
791 other_channel[i] = channel;
792 }
793
794 /* Swap entry counts and channel pointers */
795 old_rxq_entries = efx->rxq_entries;
796 old_txq_entries = efx->txq_entries;
797 efx->rxq_entries = rxq_entries;
798 efx->txq_entries = txq_entries;
799 for (i = 0; i < efx->n_channels; i++) {
800 channel = efx->channel[i];
801 efx->channel[i] = other_channel[i];
802 other_channel[i] = channel;
803 }
804
Ben Hutchings7f967c02012-02-13 23:45:02 +0000805 /* Restart buffer table allocation */
806 efx->next_buffer_table = next_buffer_table;
Ben Hutchings46426102010-09-10 06:42:33 +0000807
Ben Hutchingse8f14992010-12-07 19:47:34 +0000808 for (i = 0; i < efx->n_channels; i++) {
Ben Hutchings7f967c02012-02-13 23:45:02 +0000809 channel = efx->channel[i];
810 if (!channel->type->copy)
811 continue;
812 rc = efx_probe_channel(channel);
813 if (rc)
814 goto rollback;
815 efx_init_napi_channel(efx->channel[i]);
Ben Hutchingse8f14992010-12-07 19:47:34 +0000816 }
Ben Hutchings46426102010-09-10 06:42:33 +0000817
Ben Hutchings7f967c02012-02-13 23:45:02 +0000818out:
819 /* Destroy unused channel structures */
820 for (i = 0; i < efx->n_channels; i++) {
821 channel = other_channel[i];
822 if (channel && channel->type->copy) {
823 efx_fini_napi_channel(channel);
824 efx_remove_channel(channel);
825 kfree(channel);
826 }
827 }
828
Jon Cooper261e4d92013-04-15 18:51:54 +0100829 rc2 = efx_soft_enable_interrupts(efx);
830 if (rc2) {
831 rc = rc ? rc : rc2;
832 netif_err(efx, drv, efx->net_dev,
833 "unable to restart interrupts on channel reallocation\n");
834 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
835 } else {
836 efx_start_all(efx);
837 netif_device_attach(efx->net_dev);
838 }
Ben Hutchings46426102010-09-10 06:42:33 +0000839 return rc;
840
841rollback:
842 /* Swap back */
843 efx->rxq_entries = old_rxq_entries;
844 efx->txq_entries = old_txq_entries;
845 for (i = 0; i < efx->n_channels; i++) {
846 channel = efx->channel[i];
847 efx->channel[i] = other_channel[i];
848 other_channel[i] = channel;
849 }
850 goto out;
851}
852
Steve Hodgson90d683a2010-06-01 11:19:39 +0000853void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100854{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000855 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100856}
857
Ben Hutchings7f967c02012-02-13 23:45:02 +0000858static const struct efx_channel_type efx_default_channel_type = {
859 .pre_probe = efx_channel_dummy_op_int,
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100860 .post_remove = efx_channel_dummy_op_void,
Ben Hutchings7f967c02012-02-13 23:45:02 +0000861 .get_name = efx_get_channel_name,
862 .copy = efx_copy_channel,
863 .keep_eventq = false,
864};
865
866int efx_channel_dummy_op_int(struct efx_channel *channel)
867{
868 return 0;
869}
870
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100871void efx_channel_dummy_op_void(struct efx_channel *channel)
872{
873}
874
Ben Hutchings8ceee662008-04-27 12:55:59 +0100875/**************************************************************************
876 *
877 * Port handling
878 *
879 **************************************************************************/
880
881/* This ensures that the kernel is kept informed (via
882 * netif_carrier_on/off) of the link status, and also maintains the
883 * link status's stop on the port's TX queue.
884 */
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000885void efx_link_status_changed(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100886{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000887 struct efx_link_state *link_state = &efx->link_state;
888
Ben Hutchings8ceee662008-04-27 12:55:59 +0100889 /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure
890 * that no events are triggered between unregister_netdev() and the
891 * driver unloading. A more general condition is that NETDEV_CHANGE
892 * can only be generated between NETDEV_UP and NETDEV_DOWN */
893 if (!netif_running(efx->net_dev))
894 return;
895
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000896 if (link_state->up != netif_carrier_ok(efx->net_dev)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100897 efx->n_link_state_changes++;
898
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000899 if (link_state->up)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100900 netif_carrier_on(efx->net_dev);
901 else
902 netif_carrier_off(efx->net_dev);
903 }
904
905 /* Status message for kernel log */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000906 if (link_state->up)
Ben Hutchings62776d02010-06-23 11:30:07 +0000907 netif_info(efx, link, efx->net_dev,
Ben Hutchings964e6132012-11-19 23:08:22 +0000908 "link up at %uMbps %s-duplex (MTU %d)\n",
Ben Hutchings62776d02010-06-23 11:30:07 +0000909 link_state->speed, link_state->fd ? "full" : "half",
Ben Hutchings964e6132012-11-19 23:08:22 +0000910 efx->net_dev->mtu);
Ben Hutchings2aa9ef12012-01-09 19:53:41 +0000911 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000912 netif_info(efx, link, efx->net_dev, "link down\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100913}
914
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000915void efx_link_set_advertising(struct efx_nic *efx, u32 advertising)
916{
917 efx->link_advertising = advertising;
918 if (advertising) {
919 if (advertising & ADVERTISED_Pause)
920 efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX);
921 else
922 efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX);
923 if (advertising & ADVERTISED_Asym_Pause)
924 efx->wanted_fc ^= EFX_FC_TX;
925 }
926}
927
David S. Millerb56269462011-05-17 17:53:22 -0400928void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000929{
930 efx->wanted_fc = wanted_fc;
931 if (efx->link_advertising) {
932 if (wanted_fc & EFX_FC_RX)
933 efx->link_advertising |= (ADVERTISED_Pause |
934 ADVERTISED_Asym_Pause);
935 else
936 efx->link_advertising &= ~(ADVERTISED_Pause |
937 ADVERTISED_Asym_Pause);
938 if (wanted_fc & EFX_FC_TX)
939 efx->link_advertising ^= ADVERTISED_Asym_Pause;
940 }
941}
942
Ben Hutchings115122a2009-03-04 09:52:52 +0000943static void efx_fini_port(struct efx_nic *efx);
944
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000945/* Push loopback/power/transmit disable settings to the PHY, and reconfigure
946 * the MAC appropriately. All other PHY configuration changes are pushed
947 * through phy_op->set_settings(), and pushed asynchronously to the MAC
948 * through efx_monitor().
949 *
950 * Callers must hold the mac_lock
951 */
952int __efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100953{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000954 enum efx_phy_mode phy_mode;
955 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100956
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000957 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100958
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000959 /* Disable PHY transmit in mac level loopbacks */
960 phy_mode = efx->phy_mode;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800961 if (LOOPBACK_INTERNAL(efx))
962 efx->phy_mode |= PHY_MODE_TX_DISABLED;
963 else
964 efx->phy_mode &= ~PHY_MODE_TX_DISABLED;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800965
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000966 rc = efx->type->reconfigure_port(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800967
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000968 if (rc)
969 efx->phy_mode = phy_mode;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100970
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000971 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100972}
973
974/* Reinitialise the MAC to pick up new PHY settings, even if the port is
975 * disabled. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000976int efx_reconfigure_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100977{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000978 int rc;
979
Ben Hutchings8ceee662008-04-27 12:55:59 +0100980 EFX_ASSERT_RESET_SERIALISED(efx);
981
982 mutex_lock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000983 rc = __efx_reconfigure_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100984 mutex_unlock(&efx->mac_lock);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000985
986 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100987}
988
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000989/* Asynchronous work item for changing MAC promiscuity and multicast
990 * hash. Avoid a drain/rx_ingress enable by reconfiguring the current
991 * MAC directly. */
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800992static void efx_mac_work(struct work_struct *data)
993{
994 struct efx_nic *efx = container_of(data, struct efx_nic, mac_work);
995
996 mutex_lock(&efx->mac_lock);
Ben Hutchings30b81cd2011-09-13 19:47:48 +0100997 if (efx->port_enabled)
Ben Hutchings710b2082011-09-03 00:15:00 +0100998 efx->type->reconfigure_mac(efx);
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800999 mutex_unlock(&efx->mac_lock);
1000}
1001
Ben Hutchings8ceee662008-04-27 12:55:59 +01001002static int efx_probe_port(struct efx_nic *efx)
1003{
1004 int rc;
1005
Ben Hutchings62776d02010-06-23 11:30:07 +00001006 netif_dbg(efx, probe, efx->net_dev, "create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001007
Steve Hodgsonff3b00a2009-12-23 13:46:36 +00001008 if (phy_flash_cfg)
1009 efx->phy_mode = PHY_MODE_SPECIAL;
1010
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001011 /* Connect up MAC/PHY operations table */
1012 rc = efx->type->probe_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001013 if (rc)
Ben Hutchingse42de262010-09-10 06:41:19 +00001014 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001015
Ben Hutchingse332bcb2011-12-20 01:22:51 +00001016 /* Initialise MAC address to permanent address */
1017 memcpy(efx->net_dev->dev_addr, efx->net_dev->perm_addr, ETH_ALEN);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001018
1019 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001020}
1021
1022static int efx_init_port(struct efx_nic *efx)
1023{
1024 int rc;
1025
Ben Hutchings62776d02010-06-23 11:30:07 +00001026 netif_dbg(efx, drv, efx->net_dev, "init port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001027
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001028 mutex_lock(&efx->mac_lock);
1029
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001030 rc = efx->phy_op->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001031 if (rc)
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001032 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001033
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001034 efx->port_initialized = true;
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001035
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001036 /* Reconfigure the MAC before creating dma queues (required for
1037 * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */
Ben Hutchings710b2082011-09-03 00:15:00 +01001038 efx->type->reconfigure_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001039
1040 /* Ensure the PHY advertises the correct flow control settings */
1041 rc = efx->phy_op->reconfigure(efx);
1042 if (rc)
1043 goto fail2;
1044
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001045 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001046 return 0;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001047
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001048fail2:
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001049 efx->phy_op->fini(efx);
Ben Hutchings1dfc5ce2009-11-25 16:11:19 +00001050fail1:
1051 mutex_unlock(&efx->mac_lock);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001052 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001053}
1054
Ben Hutchings8ceee662008-04-27 12:55:59 +01001055static void efx_start_port(struct efx_nic *efx)
1056{
Ben Hutchings62776d02010-06-23 11:30:07 +00001057 netif_dbg(efx, ifup, efx->net_dev, "start port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001058 BUG_ON(efx->port_enabled);
1059
1060 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001061 efx->port_enabled = true;
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001062
1063 /* efx_mac_work() might have been scheduled after efx_stop_port(),
1064 * and then cancelled by efx_flush_all() */
Ben Hutchings710b2082011-09-03 00:15:00 +01001065 efx->type->reconfigure_mac(efx);
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00001066
Ben Hutchings8ceee662008-04-27 12:55:59 +01001067 mutex_unlock(&efx->mac_lock);
1068}
1069
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00001070/* Prevent efx_mac_work() and efx_monitor() from working */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001071static void efx_stop_port(struct efx_nic *efx)
1072{
Ben Hutchings62776d02010-06-23 11:30:07 +00001073 netif_dbg(efx, ifdown, efx->net_dev, "stop port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001074
1075 mutex_lock(&efx->mac_lock);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001076 efx->port_enabled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001077 mutex_unlock(&efx->mac_lock);
1078
1079 /* Serialise against efx_set_multicast_list() */
Ben Hutchings73ba7b62012-01-09 19:47:08 +00001080 netif_addr_lock_bh(efx->net_dev);
1081 netif_addr_unlock_bh(efx->net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001082}
1083
1084static void efx_fini_port(struct efx_nic *efx)
1085{
Ben Hutchings62776d02010-06-23 11:30:07 +00001086 netif_dbg(efx, drv, efx->net_dev, "shut down port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001087
1088 if (!efx->port_initialized)
1089 return;
1090
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001091 efx->phy_op->fini(efx);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001092 efx->port_initialized = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001093
Ben Hutchingseb50c0d2009-11-23 16:06:30 +00001094 efx->link_state.up = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001095 efx_link_status_changed(efx);
1096}
1097
1098static void efx_remove_port(struct efx_nic *efx)
1099{
Ben Hutchings62776d02010-06-23 11:30:07 +00001100 netif_dbg(efx, drv, efx->net_dev, "destroying port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001101
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001102 efx->type->remove_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001103}
1104
1105/**************************************************************************
1106 *
1107 * NIC handling
1108 *
1109 **************************************************************************/
1110
1111/* This configures the PCI device to enable I/O and DMA. */
1112static int efx_init_io(struct efx_nic *efx)
1113{
1114 struct pci_dev *pci_dev = efx->pci_dev;
1115 dma_addr_t dma_mask = efx->type->max_dma_mask;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001116 unsigned int mem_map_size = efx->type->mem_map_size(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001117 int rc;
1118
Ben Hutchings62776d02010-06-23 11:30:07 +00001119 netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001120
1121 rc = pci_enable_device(pci_dev);
1122 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001123 netif_err(efx, probe, efx->net_dev,
1124 "failed to enable PCI device\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001125 goto fail1;
1126 }
1127
1128 pci_set_master(pci_dev);
1129
1130 /* Set the PCI DMA mask. Try all possibilities from our
1131 * genuine mask down to 32 bits, because some architectures
1132 * (e.g. x86_64 with iommu_sac_force set) will allow 40 bit
1133 * masks event though they reject 46 bit masks.
1134 */
1135 while (dma_mask > 0x7fffffffUL) {
Ben Hutchings0e33d872012-05-17 17:46:55 +01001136 if (dma_supported(&pci_dev->dev, dma_mask)) {
Russell King9663ded2013-06-26 23:49:11 +01001137 rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
Ben Hutchingse9e01842012-01-05 18:50:29 +00001138 if (rc == 0)
1139 break;
1140 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001141 dma_mask >>= 1;
1142 }
1143 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001144 netif_err(efx, probe, efx->net_dev,
1145 "could not find a suitable DMA mask\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001146 goto fail2;
1147 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001148 netif_dbg(efx, probe, efx->net_dev,
1149 "using DMA mask %llx\n", (unsigned long long) dma_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001150
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001151 efx->membase_phys = pci_resource_start(efx->pci_dev, EFX_MEM_BAR);
1152 rc = pci_request_region(pci_dev, EFX_MEM_BAR, "sfc");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001153 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001154 netif_err(efx, probe, efx->net_dev,
1155 "request for memory BAR failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001156 rc = -EIO;
1157 goto fail3;
1158 }
Ben Hutchingsb1057982012-09-19 00:56:47 +01001159 efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001160 if (!efx->membase) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001161 netif_err(efx, probe, efx->net_dev,
1162 "could not map memory BAR at %llx+%x\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001163 (unsigned long long)efx->membase_phys, mem_map_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001164 rc = -ENOMEM;
1165 goto fail4;
1166 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001167 netif_dbg(efx, probe, efx->net_dev,
1168 "memory BAR at %llx+%x (virtual %p)\n",
Ben Hutchingsb1057982012-09-19 00:56:47 +01001169 (unsigned long long)efx->membase_phys, mem_map_size,
1170 efx->membase);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001171
1172 return 0;
1173
1174 fail4:
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001175 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001176 fail3:
Ben Hutchings2c118e02008-05-16 21:15:29 +01001177 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001178 fail2:
1179 pci_disable_device(efx->pci_dev);
1180 fail1:
1181 return rc;
1182}
1183
1184static void efx_fini_io(struct efx_nic *efx)
1185{
Ben Hutchings62776d02010-06-23 11:30:07 +00001186 netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001187
1188 if (efx->membase) {
1189 iounmap(efx->membase);
1190 efx->membase = NULL;
1191 }
1192
1193 if (efx->membase_phys) {
Ben Hutchingsdc803df2009-10-23 08:32:33 +00001194 pci_release_region(efx->pci_dev, EFX_MEM_BAR);
Ben Hutchings2c118e02008-05-16 21:15:29 +01001195 efx->membase_phys = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001196 }
1197
1198 pci_disable_device(efx->pci_dev);
1199}
1200
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001201static unsigned int efx_wanted_parallelism(struct efx_nic *efx)
Ben Hutchings46123d02008-09-01 12:47:33 +01001202{
Ben Hutchingscdb08f82011-12-20 01:08:05 +00001203 cpumask_var_t thread_mask;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001204 unsigned int count;
Ben Hutchings46123d02008-09-01 12:47:33 +01001205 int cpu;
1206
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001207 if (rss_cpus) {
1208 count = rss_cpus;
1209 } else {
1210 if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) {
1211 netif_warn(efx, probe, efx->net_dev,
1212 "RSS disabled due to allocation failure\n");
1213 return 1;
Ben Hutchings46123d02008-09-01 12:47:33 +01001214 }
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001215
1216 count = 0;
1217 for_each_online_cpu(cpu) {
1218 if (!cpumask_test_cpu(cpu, thread_mask)) {
1219 ++count;
1220 cpumask_or(thread_mask, thread_mask,
1221 topology_thread_cpumask(cpu));
1222 }
1223 }
1224
1225 free_cpumask_var(thread_mask);
Ben Hutchings46123d02008-09-01 12:47:33 +01001226 }
1227
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001228 /* If RSS is requested for the PF *and* VFs then we can't write RSS
1229 * table entries that are inaccessible to VFs
1230 */
1231 if (efx_sriov_wanted(efx) && efx_vf_size(efx) > 1 &&
1232 count > efx_vf_size(efx)) {
1233 netif_warn(efx, probe, efx->net_dev,
1234 "Reducing number of RSS channels from %u to %u for "
1235 "VF support. Increase vf-msix-limit to use more "
1236 "channels on the PF.\n",
1237 count, efx_vf_size(efx));
1238 count = efx_vf_size(efx);
1239 }
1240
Ben Hutchings46123d02008-09-01 12:47:33 +01001241 return count;
1242}
1243
1244/* Probe the number and type of interrupts we are able to obtain, and
1245 * the resulting numbers of channels and RX queues.
1246 */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001247static int efx_probe_interrupts(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001248{
Ben Hutchings7f967c02012-02-13 23:45:02 +00001249 unsigned int extra_channels = 0;
1250 unsigned int i, j;
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001251 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001252
Ben Hutchings7f967c02012-02-13 23:45:02 +00001253 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++)
1254 if (efx->extra_channel_type[i])
1255 ++extra_channels;
1256
Ben Hutchings8ceee662008-04-27 12:55:59 +01001257 if (efx->interrupt_mode == EFX_INT_MODE_MSIX) {
Ben Hutchings46123d02008-09-01 12:47:33 +01001258 struct msix_entry xentries[EFX_MAX_CHANNELS];
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001259 unsigned int n_channels;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001260
Ben Hutchingsa9a525062012-02-14 20:15:57 +00001261 n_channels = efx_wanted_parallelism(efx);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001262 if (separate_tx_channels)
1263 n_channels *= 2;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001264 n_channels += extra_channels;
Ben Hutchingsb1057982012-09-19 00:56:47 +01001265 n_channels = min(n_channels, efx->max_channels);
Ben Hutchingsaa6ef272008-07-18 19:03:10 +01001266
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001267 for (i = 0; i < n_channels; i++)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001268 xentries[i].entry = i;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001269 rc = pci_enable_msix(efx->pci_dev, xentries, n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001270 if (rc > 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001271 netif_err(efx, drv, efx->net_dev,
1272 "WARNING: Insufficient MSI-X vectors"
Ben Hutchingsa16e5b22012-02-14 00:40:12 +00001273 " available (%d < %u).\n", rc, n_channels);
Ben Hutchings62776d02010-06-23 11:30:07 +00001274 netif_err(efx, drv, efx->net_dev,
1275 "WARNING: Performance may be reduced.\n");
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001276 EFX_BUG_ON_PARANOID(rc >= n_channels);
1277 n_channels = rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001278 rc = pci_enable_msix(efx->pci_dev, xentries,
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001279 n_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001280 }
1281
1282 if (rc == 0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001283 efx->n_channels = n_channels;
Ben Hutchings7f967c02012-02-13 23:45:02 +00001284 if (n_channels > extra_channels)
1285 n_channels -= extra_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001286 if (separate_tx_channels) {
Ben Hutchings7f967c02012-02-13 23:45:02 +00001287 efx->n_tx_channels = max(n_channels / 2, 1U);
1288 efx->n_rx_channels = max(n_channels -
1289 efx->n_tx_channels,
1290 1U);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001291 } else {
Ben Hutchings7f967c02012-02-13 23:45:02 +00001292 efx->n_tx_channels = n_channels;
1293 efx->n_rx_channels = n_channels;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001294 }
Ben Hutchings7f967c02012-02-13 23:45:02 +00001295 for (i = 0; i < efx->n_channels; i++)
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001296 efx_get_channel(efx, i)->irq =
1297 xentries[i].vector;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001298 } else {
1299 /* Fall back to single channel MSI */
1300 efx->interrupt_mode = EFX_INT_MODE_MSI;
Ben Hutchings62776d02010-06-23 11:30:07 +00001301 netif_err(efx, drv, efx->net_dev,
1302 "could not enable MSI-X\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001303 }
1304 }
1305
1306 /* Try single interrupt MSI */
1307 if (efx->interrupt_mode == EFX_INT_MODE_MSI) {
Neil Turton28b581a2008-12-12 21:41:06 -08001308 efx->n_channels = 1;
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001309 efx->n_rx_channels = 1;
1310 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001311 rc = pci_enable_msi(efx->pci_dev);
1312 if (rc == 0) {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001313 efx_get_channel(efx, 0)->irq = efx->pci_dev->irq;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001314 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001315 netif_err(efx, drv, efx->net_dev,
1316 "could not enable MSI\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001317 efx->interrupt_mode = EFX_INT_MODE_LEGACY;
1318 }
1319 }
1320
1321 /* Assume legacy interrupts */
1322 if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) {
Neil Turton28b581a2008-12-12 21:41:06 -08001323 efx->n_channels = 1 + (separate_tx_channels ? 1 : 0);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001324 efx->n_rx_channels = 1;
1325 efx->n_tx_channels = 1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001326 efx->legacy_irq = efx->pci_dev->irq;
1327 }
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001328
Ben Hutchings7f967c02012-02-13 23:45:02 +00001329 /* Assign extra channels if possible */
1330 j = efx->n_channels;
1331 for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) {
1332 if (!efx->extra_channel_type[i])
1333 continue;
1334 if (efx->interrupt_mode != EFX_INT_MODE_MSIX ||
1335 efx->n_channels <= extra_channels) {
1336 efx->extra_channel_type[i]->handle_no_channel(efx);
1337 } else {
1338 --j;
1339 efx_get_channel(efx, j)->type =
1340 efx->extra_channel_type[i];
1341 }
1342 }
1343
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001344 /* RSS might be usable on VFs even if it is disabled on the PF */
Ben Hutchings3132d282012-05-05 02:31:23 +01001345 efx->rss_spread = ((efx->n_rx_channels > 1 || !efx_sriov_wanted(efx)) ?
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001346 efx->n_rx_channels : efx_vf_size(efx));
1347
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001348 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001349}
1350
Jon Cooper261e4d92013-04-15 18:51:54 +01001351static int efx_soft_enable_interrupts(struct efx_nic *efx)
Ben Hutchingsd8291182012-10-05 23:35:41 +01001352{
Jon Cooper261e4d92013-04-15 18:51:54 +01001353 struct efx_channel *channel, *end_channel;
1354 int rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001355
1356 BUG_ON(efx->state == STATE_DISABLED);
1357
1358 efx->irq_soft_enabled = true;
1359 smp_wmb();
1360
1361 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001362 if (!channel->type->keep_eventq) {
1363 rc = efx_init_eventq(channel);
1364 if (rc)
1365 goto fail;
1366 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001367 efx_start_eventq(channel);
1368 }
1369
1370 efx_mcdi_mode_event(efx);
Jon Cooper261e4d92013-04-15 18:51:54 +01001371
1372 return 0;
1373fail:
1374 end_channel = channel;
1375 efx_for_each_channel(channel, efx) {
1376 if (channel == end_channel)
1377 break;
1378 efx_stop_eventq(channel);
1379 if (!channel->type->keep_eventq)
1380 efx_fini_eventq(channel);
1381 }
1382
1383 return rc;
Ben Hutchingsd8291182012-10-05 23:35:41 +01001384}
1385
1386static void efx_soft_disable_interrupts(struct efx_nic *efx)
1387{
1388 struct efx_channel *channel;
1389
1390 if (efx->state == STATE_DISABLED)
1391 return;
1392
1393 efx_mcdi_mode_poll(efx);
1394
1395 efx->irq_soft_enabled = false;
1396 smp_wmb();
1397
1398 if (efx->legacy_irq)
1399 synchronize_irq(efx->legacy_irq);
1400
1401 efx_for_each_channel(channel, efx) {
1402 if (channel->irq)
1403 synchronize_irq(channel->irq);
1404
1405 efx_stop_eventq(channel);
1406 if (!channel->type->keep_eventq)
1407 efx_fini_eventq(channel);
1408 }
Ben Hutchingscade7152013-08-27 23:12:31 +01001409
1410 /* Flush the asynchronous MCDI request queue */
1411 efx_mcdi_flush_async(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01001412}
1413
Jon Cooper261e4d92013-04-15 18:51:54 +01001414static int efx_enable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001415{
Jon Cooper261e4d92013-04-15 18:51:54 +01001416 struct efx_channel *channel, *end_channel;
1417 int rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001418
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001419 BUG_ON(efx->state == STATE_DISABLED);
1420
Alexandre Ramesb28405b2013-03-21 16:41:43 +00001421 if (efx->eeh_disabled_legacy_irq) {
1422 enable_irq(efx->legacy_irq);
1423 efx->eeh_disabled_legacy_irq = false;
1424 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001425
Ben Hutchings86094f72013-08-21 19:51:04 +01001426 efx->type->irq_enable_master(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001427
1428 efx_for_each_channel(channel, efx) {
Jon Cooper261e4d92013-04-15 18:51:54 +01001429 if (channel->type->keep_eventq) {
1430 rc = efx_init_eventq(channel);
1431 if (rc)
1432 goto fail;
1433 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001434 }
1435
Jon Cooper261e4d92013-04-15 18:51:54 +01001436 rc = efx_soft_enable_interrupts(efx);
1437 if (rc)
1438 goto fail;
1439
1440 return 0;
1441
1442fail:
1443 end_channel = channel;
1444 efx_for_each_channel(channel, efx) {
1445 if (channel == end_channel)
1446 break;
1447 if (channel->type->keep_eventq)
1448 efx_fini_eventq(channel);
1449 }
1450
1451 efx->type->irq_disable_non_ev(efx);
1452
1453 return rc;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001454}
1455
Ben Hutchingsd8291182012-10-05 23:35:41 +01001456static void efx_disable_interrupts(struct efx_nic *efx)
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001457{
1458 struct efx_channel *channel;
1459
Ben Hutchingsd8291182012-10-05 23:35:41 +01001460 efx_soft_disable_interrupts(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001461
1462 efx_for_each_channel(channel, efx) {
Ben Hutchingsd8291182012-10-05 23:35:41 +01001463 if (channel->type->keep_eventq)
Ben Hutchings7f967c02012-02-13 23:45:02 +00001464 efx_fini_eventq(channel);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001465 }
Ben Hutchingsd8291182012-10-05 23:35:41 +01001466
Ben Hutchings86094f72013-08-21 19:51:04 +01001467 efx->type->irq_disable_non_ev(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001468}
1469
Ben Hutchings8ceee662008-04-27 12:55:59 +01001470static void efx_remove_interrupts(struct efx_nic *efx)
1471{
1472 struct efx_channel *channel;
1473
1474 /* Remove MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001475 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001476 channel->irq = 0;
1477 pci_disable_msi(efx->pci_dev);
1478 pci_disable_msix(efx->pci_dev);
1479
1480 /* Remove legacy interrupt */
1481 efx->legacy_irq = 0;
1482}
1483
Ben Hutchings8831da72008-09-01 12:47:48 +01001484static void efx_set_channels(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001485{
Ben Hutchings602a5322011-05-16 17:32:39 +01001486 struct efx_channel *channel;
1487 struct efx_tx_queue *tx_queue;
1488
Ben Hutchings97653432011-01-12 18:26:56 +00001489 efx->tx_channel_offset =
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001490 separate_tx_channels ? efx->n_channels - efx->n_tx_channels : 0;
Ben Hutchings602a5322011-05-16 17:32:39 +01001491
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001492 /* We need to mark which channels really have RX and TX
1493 * queues, and adjust the TX queue numbers if we have separate
Ben Hutchings602a5322011-05-16 17:32:39 +01001494 * RX-only and TX-only channels.
1495 */
1496 efx_for_each_channel(channel, efx) {
Stuart Hodgson79d68b32012-07-16 17:08:33 +01001497 if (channel->channel < efx->n_rx_channels)
1498 channel->rx_queue.core_index = channel->channel;
1499 else
1500 channel->rx_queue.core_index = -1;
1501
Ben Hutchings602a5322011-05-16 17:32:39 +01001502 efx_for_each_channel_tx_queue(tx_queue, channel)
1503 tx_queue->queue -= (efx->tx_channel_offset *
1504 EFX_TXQ_TYPES);
1505 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001506}
1507
1508static int efx_probe_nic(struct efx_nic *efx)
1509{
Ben Hutchings765c9f42010-06-30 05:06:28 +00001510 size_t i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001511 int rc;
1512
Ben Hutchings62776d02010-06-23 11:30:07 +00001513 netif_dbg(efx, probe, efx->net_dev, "creating NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001514
1515 /* Carry out hardware-type specific initialisation */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001516 rc = efx->type->probe(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001517 if (rc)
1518 return rc;
1519
Ben Hutchingsa4900ac2010-04-28 09:30:43 +00001520 /* Determine the number of channels and queues by trying to hook
Ben Hutchings8ceee662008-04-27 12:55:59 +01001521 * in MSI-X interrupts. */
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001522 rc = efx_probe_interrupts(efx);
1523 if (rc)
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001524 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001525
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001526 rc = efx->type->dimension_resources(efx);
1527 if (rc)
1528 goto fail2;
Ben Hutchings28e47c42012-02-15 01:58:49 +00001529
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001530 if (efx->n_channels > 1)
1531 get_random_bytes(&efx->rx_hash_key, sizeof(efx->rx_hash_key));
Ben Hutchings765c9f42010-06-30 05:06:28 +00001532 for (i = 0; i < ARRAY_SIZE(efx->rx_indir_table); i++)
Ben Hutchings278bc422011-12-15 13:56:49 +00001533 efx->rx_indir_table[i] =
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001534 ethtool_rxfh_indir_default(i, efx->rss_spread);
Ben Hutchings5d3a6fc2010-06-25 07:05:43 +00001535
Ben Hutchings8831da72008-09-01 12:47:48 +01001536 efx_set_channels(efx);
Ben Hutchingsc4f4adc2010-09-27 08:31:07 +00001537 netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels);
1538 netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001539
1540 /* Initialise the interrupt moderation settings */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001541 efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true,
1542 true);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001543
1544 return 0;
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001545
Ben Hutchingsc15eed22013-08-29 00:45:48 +01001546fail2:
1547 efx_remove_interrupts(efx);
1548fail1:
Ben Hutchings64d8ad62011-01-05 00:50:41 +00001549 efx->type->remove(efx);
1550 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001551}
1552
1553static void efx_remove_nic(struct efx_nic *efx)
1554{
Ben Hutchings62776d02010-06-23 11:30:07 +00001555 netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001556
1557 efx_remove_interrupts(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001558 efx->type->remove(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001559}
1560
Ben Hutchingsadd72472012-11-08 01:46:53 +00001561static int efx_probe_filters(struct efx_nic *efx)
1562{
1563 int rc;
1564
1565 spin_lock_init(&efx->filter_lock);
1566
1567 rc = efx->type->filter_table_probe(efx);
1568 if (rc)
1569 return rc;
1570
1571#ifdef CONFIG_RFS_ACCEL
1572 if (efx->type->offload_features & NETIF_F_NTUPLE) {
1573 efx->rps_flow_id = kcalloc(efx->type->max_rx_ip_filters,
1574 sizeof(*efx->rps_flow_id),
1575 GFP_KERNEL);
1576 if (!efx->rps_flow_id) {
1577 efx->type->filter_table_remove(efx);
1578 return -ENOMEM;
1579 }
1580 }
1581#endif
1582
1583 return 0;
1584}
1585
1586static void efx_remove_filters(struct efx_nic *efx)
1587{
1588#ifdef CONFIG_RFS_ACCEL
1589 kfree(efx->rps_flow_id);
1590#endif
1591 efx->type->filter_table_remove(efx);
1592}
1593
1594static void efx_restore_filters(struct efx_nic *efx)
1595{
1596 efx->type->filter_table_restore(efx);
1597}
1598
Ben Hutchings8ceee662008-04-27 12:55:59 +01001599/**************************************************************************
1600 *
1601 * NIC startup/shutdown
1602 *
1603 *************************************************************************/
1604
1605static int efx_probe_all(struct efx_nic *efx)
1606{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001607 int rc;
1608
Ben Hutchings8ceee662008-04-27 12:55:59 +01001609 rc = efx_probe_nic(efx);
1610 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001611 netif_err(efx, probe, efx->net_dev, "failed to create NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001612 goto fail1;
1613 }
1614
Ben Hutchings8ceee662008-04-27 12:55:59 +01001615 rc = efx_probe_port(efx);
1616 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001617 netif_err(efx, probe, efx->net_dev, "failed to create port\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001618 goto fail2;
1619 }
1620
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00001621 BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT);
1622 if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) {
1623 rc = -EINVAL;
1624 goto fail3;
1625 }
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001626 efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001627
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001628 rc = efx_probe_filters(efx);
1629 if (rc) {
1630 netif_err(efx, probe, efx->net_dev,
1631 "failed to create filter tables\n");
Ben Hutchings7f967c02012-02-13 23:45:02 +00001632 goto fail3;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001633 }
1634
Ben Hutchings7f967c02012-02-13 23:45:02 +00001635 rc = efx_probe_channels(efx);
1636 if (rc)
1637 goto fail4;
1638
Ben Hutchings8ceee662008-04-27 12:55:59 +01001639 return 0;
1640
Ben Hutchings64eebcf2010-09-20 08:43:07 +00001641 fail4:
Ben Hutchings7f967c02012-02-13 23:45:02 +00001642 efx_remove_filters(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001643 fail3:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001644 efx_remove_port(efx);
1645 fail2:
1646 efx_remove_nic(efx);
1647 fail1:
1648 return rc;
1649}
1650
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001651/* If the interface is supposed to be running but is not, start
1652 * the hardware and software data path, regular activity for the port
1653 * (MAC statistics, link polling, etc.) and schedule the port to be
1654 * reconfigured. Interrupts must already be enabled. This function
1655 * is safe to call multiple times, so long as the NIC is not disabled.
1656 * Requires the RTNL lock.
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001657 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001658static void efx_start_all(struct efx_nic *efx)
1659{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001660 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001661 BUG_ON(efx->state == STATE_DISABLED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001662
1663 /* Check that it is appropriate to restart the interface. All
1664 * of these flags are safe to read under just the rtnl lock */
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001665 if (efx->port_enabled || !netif_running(efx->net_dev))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001666 return;
1667
Ben Hutchings8ceee662008-04-27 12:55:59 +01001668 efx_start_port(efx);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001669 efx_start_datapath(efx);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001670
Alexandre Rames626950d2013-01-14 17:20:22 +00001671 /* Start the hardware monitor if there is one */
1672 if (efx->type->monitor != NULL)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001673 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1674 efx_monitor_interval);
Alexandre Rames626950d2013-01-14 17:20:22 +00001675
1676 /* If link state detection is normally event-driven, we have
1677 * to poll now because we could have missed a change
1678 */
1679 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) {
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001680 mutex_lock(&efx->mac_lock);
1681 if (efx->phy_op->poll(efx))
1682 efx_link_status_changed(efx);
1683 mutex_unlock(&efx->mac_lock);
1684 }
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001685
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001686 efx->type->start_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001687}
1688
1689/* Flush all delayed work. Should only be called when no more delayed work
1690 * will be scheduled. This doesn't flush pending online resets (efx_reset),
1691 * since we're holding the rtnl_lock at this point. */
1692static void efx_flush_all(struct efx_nic *efx)
1693{
Ben Hutchingsdd407812012-02-28 23:40:21 +00001694 /* Make sure the hardware monitor and event self-test are stopped */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001695 cancel_delayed_work_sync(&efx->monitor_work);
Ben Hutchingsdd407812012-02-28 23:40:21 +00001696 efx_selftest_async_cancel(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001697 /* Stop scheduled port reconfigurations */
Ben Hutchings766ca0f2008-12-12 21:59:24 -08001698 cancel_work_sync(&efx->mac_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001699}
1700
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001701/* Quiesce the hardware and software data path, and regular activity
1702 * for the port without bringing the link down. Safe to call multiple
1703 * times with the NIC in almost any state, but interrupts should be
1704 * enabled. Requires the RTNL lock.
1705 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001706static void efx_stop_all(struct efx_nic *efx)
1707{
Ben Hutchings8ceee662008-04-27 12:55:59 +01001708 EFX_ASSERT_RESET_SERIALISED(efx);
1709
1710 /* port_enabled can be read safely under the rtnl lock */
1711 if (!efx->port_enabled)
1712 return;
1713
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001714 efx->type->stop_stats(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001715 efx_stop_port(efx);
1716
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00001717 /* Flush efx_mac_work(), refill_workqueue, monitor_work */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001718 efx_flush_all(efx);
1719
Ben Hutchings29c69a42013-01-28 19:01:06 +00001720 /* Stop the kernel transmit interface. This is only valid if
1721 * the device is stopped or detached; otherwise the watchdog
1722 * may fire immediately.
1723 */
1724 WARN_ON(netif_running(efx->net_dev) &&
1725 netif_device_present(efx->net_dev));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001726 netif_tx_disable(efx->net_dev);
1727
1728 efx_stop_datapath(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001729}
1730
1731static void efx_remove_all(struct efx_nic *efx)
1732{
Ben Hutchings46426102010-09-10 06:42:33 +00001733 efx_remove_channels(efx);
Ben Hutchings7f967c02012-02-13 23:45:02 +00001734 efx_remove_filters(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001735 efx_remove_port(efx);
1736 efx_remove_nic(efx);
1737}
1738
Ben Hutchings8ceee662008-04-27 12:55:59 +01001739/**************************************************************************
1740 *
1741 * Interrupt moderation
1742 *
1743 **************************************************************************/
1744
Ben Hutchingscc180b62011-12-08 19:51:47 +00001745static unsigned int irq_mod_ticks(unsigned int usecs, unsigned int quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001746{
Ben Hutchingsb548f972011-09-05 07:41:44 +00001747 if (usecs == 0)
1748 return 0;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001749 if (usecs * 1000 < quantum_ns)
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001750 return 1; /* never round down to 0 */
Ben Hutchingscc180b62011-12-08 19:51:47 +00001751 return usecs * 1000 / quantum_ns;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001752}
1753
Ben Hutchings8ceee662008-04-27 12:55:59 +01001754/* Set interrupt moderation parameters */
Ben Hutchings9e393b32011-09-05 07:43:04 +00001755int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs,
1756 unsigned int rx_usecs, bool rx_adaptive,
1757 bool rx_may_override_tx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001758{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001759 struct efx_channel *channel;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001760 unsigned int irq_mod_max = DIV_ROUND_UP(efx->type->timer_period_max *
1761 efx->timer_quantum_ns,
1762 1000);
1763 unsigned int tx_ticks;
1764 unsigned int rx_ticks;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001765
1766 EFX_ASSERT_RESET_SERIALISED(efx);
1767
Ben Hutchingscc180b62011-12-08 19:51:47 +00001768 if (tx_usecs > irq_mod_max || rx_usecs > irq_mod_max)
Ben Hutchings9e393b32011-09-05 07:43:04 +00001769 return -EINVAL;
1770
Ben Hutchingscc180b62011-12-08 19:51:47 +00001771 tx_ticks = irq_mod_ticks(tx_usecs, efx->timer_quantum_ns);
1772 rx_ticks = irq_mod_ticks(rx_usecs, efx->timer_quantum_ns);
1773
Ben Hutchings9e393b32011-09-05 07:43:04 +00001774 if (tx_ticks != rx_ticks && efx->tx_channel_offset == 0 &&
1775 !rx_may_override_tx) {
1776 netif_err(efx, drv, efx->net_dev, "Channels are shared. "
1777 "RX and TX IRQ moderation must be equal\n");
1778 return -EINVAL;
1779 }
1780
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001781 efx->irq_rx_adaptive = rx_adaptive;
Ben Hutchings0d86ebd2009-10-23 08:32:13 +00001782 efx->irq_rx_moderation = rx_ticks;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001783 efx_for_each_channel(channel, efx) {
Ben Hutchings525da902011-02-07 23:04:38 +00001784 if (efx_channel_has_rx_queue(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001785 channel->irq_moderation = rx_ticks;
Ben Hutchings525da902011-02-07 23:04:38 +00001786 else if (efx_channel_has_tx_queues(channel))
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001787 channel->irq_moderation = tx_ticks;
1788 }
Ben Hutchings9e393b32011-09-05 07:43:04 +00001789
1790 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001791}
1792
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001793void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs,
1794 unsigned int *rx_usecs, bool *rx_adaptive)
1795{
Ben Hutchingscc180b62011-12-08 19:51:47 +00001796 /* We must round up when converting ticks to microseconds
1797 * because we round down when converting the other way.
1798 */
1799
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001800 *rx_adaptive = efx->irq_rx_adaptive;
Ben Hutchingscc180b62011-12-08 19:51:47 +00001801 *rx_usecs = DIV_ROUND_UP(efx->irq_rx_moderation *
1802 efx->timer_quantum_ns,
1803 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001804
1805 /* If channels are shared between RX and TX, so is IRQ
1806 * moderation. Otherwise, IRQ moderation is the same for all
1807 * TX channels and is not adaptive.
1808 */
1809 if (efx->tx_channel_offset == 0)
1810 *tx_usecs = *rx_usecs;
1811 else
Ben Hutchingscc180b62011-12-08 19:51:47 +00001812 *tx_usecs = DIV_ROUND_UP(
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001813 efx->channel[efx->tx_channel_offset]->irq_moderation *
Ben Hutchingscc180b62011-12-08 19:51:47 +00001814 efx->timer_quantum_ns,
1815 1000);
Ben Hutchingsa0c4faf2011-09-05 07:42:25 +00001816}
1817
Ben Hutchings8ceee662008-04-27 12:55:59 +01001818/**************************************************************************
1819 *
1820 * Hardware monitor
1821 *
1822 **************************************************************************/
1823
Ben Hutchingse254c272010-09-20 08:44:10 +00001824/* Run periodically off the general workqueue */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001825static void efx_monitor(struct work_struct *data)
1826{
1827 struct efx_nic *efx = container_of(data, struct efx_nic,
1828 monitor_work.work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001829
Ben Hutchings62776d02010-06-23 11:30:07 +00001830 netif_vdbg(efx, timer, efx->net_dev,
1831 "hardware monitor executing on CPU %d\n",
1832 raw_smp_processor_id());
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001833 BUG_ON(efx->type->monitor == NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001834
Ben Hutchings8ceee662008-04-27 12:55:59 +01001835 /* If the mac_lock is already held then it is likely a port
1836 * reconfiguration is already in place, which will likely do
Ben Hutchingse254c272010-09-20 08:44:10 +00001837 * most of the work of monitor() anyway. */
1838 if (mutex_trylock(&efx->mac_lock)) {
1839 if (efx->port_enabled)
1840 efx->type->monitor(efx);
1841 mutex_unlock(&efx->mac_lock);
1842 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001843
Ben Hutchings8ceee662008-04-27 12:55:59 +01001844 queue_delayed_work(efx->workqueue, &efx->monitor_work,
1845 efx_monitor_interval);
1846}
1847
1848/**************************************************************************
1849 *
1850 * ioctls
1851 *
1852 *************************************************************************/
1853
1854/* Net device ioctl
1855 * Context: process, rtnl_lock() held.
1856 */
1857static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd)
1858{
Ben Hutchings767e4682008-09-01 12:43:14 +01001859 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings68e7f452009-04-29 08:05:08 +00001860 struct mii_ioctl_data *data = if_mii(ifr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001861
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001862 if (cmd == SIOCSHWTSTAMP)
Ben Hutchings433dc9b2013-11-14 01:26:21 +00001863 return efx_ptp_set_ts_config(efx, ifr);
1864 if (cmd == SIOCGHWTSTAMP)
1865 return efx_ptp_get_ts_config(efx, ifr);
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001866
Ben Hutchings68e7f452009-04-29 08:05:08 +00001867 /* Convert phy_id from older PRTAD/DEVAD format */
1868 if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) &&
1869 (data->phy_id & 0xfc00) == 0x0400)
1870 data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400;
1871
1872 return mdio_mii_ioctl(&efx->mdio, data, cmd);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001873}
1874
1875/**************************************************************************
1876 *
1877 * NAPI interface
1878 *
1879 **************************************************************************/
1880
Ben Hutchings7f967c02012-02-13 23:45:02 +00001881static void efx_init_napi_channel(struct efx_channel *channel)
1882{
1883 struct efx_nic *efx = channel->efx;
1884
1885 channel->napi_dev = efx->net_dev;
1886 netif_napi_add(channel->napi_dev, &channel->napi_str,
1887 efx_poll, napi_weight);
1888}
1889
Ben Hutchingse8f14992010-12-07 19:47:34 +00001890static void efx_init_napi(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001891{
1892 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001893
Ben Hutchings7f967c02012-02-13 23:45:02 +00001894 efx_for_each_channel(channel, efx)
1895 efx_init_napi_channel(channel);
Ben Hutchingse8f14992010-12-07 19:47:34 +00001896}
1897
1898static void efx_fini_napi_channel(struct efx_channel *channel)
1899{
1900 if (channel->napi_dev)
1901 netif_napi_del(&channel->napi_str);
1902 channel->napi_dev = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001903}
1904
1905static void efx_fini_napi(struct efx_nic *efx)
1906{
1907 struct efx_channel *channel;
1908
Ben Hutchingse8f14992010-12-07 19:47:34 +00001909 efx_for_each_channel(channel, efx)
1910 efx_fini_napi_channel(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001911}
1912
1913/**************************************************************************
1914 *
1915 * Kernel netpoll interface
1916 *
1917 *************************************************************************/
1918
1919#ifdef CONFIG_NET_POLL_CONTROLLER
1920
1921/* Although in the common case interrupts will be disabled, this is not
1922 * guaranteed. However, all our work happens inside the NAPI callback,
1923 * so no locking is required.
1924 */
1925static void efx_netpoll(struct net_device *net_dev)
1926{
Ben Hutchings767e4682008-09-01 12:43:14 +01001927 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001928 struct efx_channel *channel;
1929
Ben Hutchings64ee3122008-09-01 12:47:38 +01001930 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001931 efx_schedule_channel(channel);
1932}
1933
1934#endif
1935
1936/**************************************************************************
1937 *
1938 * Kernel net device interface
1939 *
1940 *************************************************************************/
1941
1942/* Context: process, rtnl_lock() held. */
1943static int efx_net_open(struct net_device *net_dev)
1944{
Ben Hutchings767e4682008-09-01 12:43:14 +01001945 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001946 int rc;
1947
Ben Hutchings62776d02010-06-23 11:30:07 +00001948 netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n",
1949 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01001950
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001951 rc = efx_check_disabled(efx);
1952 if (rc)
1953 return rc;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01001954 if (efx->phy_mode & PHY_MODE_SPECIAL)
1955 return -EBUSY;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001956 if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL))
1957 return -EIO;
Ben Hutchingsf8b87c12008-09-01 12:48:17 +01001958
Steve Hodgson78c1f0a2009-11-29 03:43:00 +00001959 /* Notify the kernel of the link state polled during driver load,
1960 * before the monitor starts running */
1961 efx_link_status_changed(efx);
1962
Ben Hutchings8ceee662008-04-27 12:55:59 +01001963 efx_start_all(efx);
Ben Hutchingsdd407812012-02-28 23:40:21 +00001964 efx_selftest_async_start(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001965 return 0;
1966}
1967
1968/* Context: process, rtnl_lock() held.
1969 * Note that the kernel will ignore our return code; this method
1970 * should really be a void.
1971 */
1972static int efx_net_stop(struct net_device *net_dev)
1973{
Ben Hutchings767e4682008-09-01 12:43:14 +01001974 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001975
Ben Hutchings62776d02010-06-23 11:30:07 +00001976 netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n",
1977 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +01001978
Ben Hutchings8b7325b2012-07-27 20:46:41 +01001979 /* Stop the device and flush all the channels */
1980 efx_stop_all(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001981
1982 return 0;
1983}
1984
Ben Hutchings5b9e2072008-05-16 21:18:14 +01001985/* Context: process, dev_base_lock or RTNL held, non-blocking. */
Ben Hutchings2aa9ef12012-01-09 19:53:41 +00001986static struct rtnl_link_stats64 *efx_net_stats(struct net_device *net_dev,
1987 struct rtnl_link_stats64 *stats)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001988{
Ben Hutchings767e4682008-09-01 12:43:14 +01001989 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001990
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001991 spin_lock_bh(&efx->stats_lock);
Ben Hutchingscd0ecc92012-12-14 21:52:56 +00001992 efx->type->update_stats(efx, NULL, stats);
Ben Hutchings1cb34522011-09-02 23:23:00 +01001993 spin_unlock_bh(&efx->stats_lock);
1994
Ben Hutchings8ceee662008-04-27 12:55:59 +01001995 return stats;
1996}
1997
1998/* Context: netif_tx_lock held, BHs disabled. */
1999static void efx_watchdog(struct net_device *net_dev)
2000{
Ben Hutchings767e4682008-09-01 12:43:14 +01002001 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002002
Ben Hutchings62776d02010-06-23 11:30:07 +00002003 netif_err(efx, tx_err, efx->net_dev,
2004 "TX stuck with port_enabled=%d: resetting channels\n",
2005 efx->port_enabled);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002006
Ben Hutchings739bb23d2008-11-04 20:35:36 +00002007 efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002008}
2009
2010
2011/* Context: process, rtnl_lock() held. */
2012static int efx_change_mtu(struct net_device *net_dev, int new_mtu)
2013{
Ben Hutchings767e4682008-09-01 12:43:14 +01002014 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002015 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002016
Ben Hutchings8b7325b2012-07-27 20:46:41 +01002017 rc = efx_check_disabled(efx);
2018 if (rc)
2019 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002020 if (new_mtu > EFX_MAX_MTU)
2021 return -EINVAL;
2022
Ben Hutchings62776d02010-06-23 11:30:07 +00002023 netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002024
Ben Hutchings29c69a42013-01-28 19:01:06 +00002025 efx_device_detach_sync(efx);
2026 efx_stop_all(efx);
2027
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002028 mutex_lock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002029 net_dev->mtu = new_mtu;
Ben Hutchings710b2082011-09-03 00:15:00 +01002030 efx->type->reconfigure_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002031 mutex_unlock(&efx->mac_lock);
2032
Ben Hutchings8ceee662008-04-27 12:55:59 +01002033 efx_start_all(efx);
Ben Hutchings29c69a42013-01-28 19:01:06 +00002034 netif_device_attach(efx->net_dev);
Ben Hutchings6c8eef42012-01-09 19:54:16 +00002035 return 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002036}
2037
2038static int efx_set_mac_address(struct net_device *net_dev, void *data)
2039{
Ben Hutchings767e4682008-09-01 12:43:14 +01002040 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002041 struct sockaddr *addr = data;
2042 char *new_addr = addr->sa_data;
2043
Ben Hutchings8ceee662008-04-27 12:55:59 +01002044 if (!is_valid_ether_addr(new_addr)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002045 netif_err(efx, drv, efx->net_dev,
2046 "invalid ethernet MAC address requested: %pM\n",
2047 new_addr);
Danny Kukawka504f9b52012-02-21 02:07:49 +00002048 return -EADDRNOTAVAIL;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002049 }
2050
2051 memcpy(net_dev->dev_addr, new_addr, net_dev->addr_len);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002052 efx_sriov_mac_address_changed(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002053
2054 /* Reconfigure the MAC */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002055 mutex_lock(&efx->mac_lock);
Ben Hutchings710b2082011-09-03 00:15:00 +01002056 efx->type->reconfigure_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002057 mutex_unlock(&efx->mac_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002058
2059 return 0;
2060}
2061
Ben Hutchingsa816f752008-09-01 12:49:12 +01002062/* Context: netif_addr_lock held, BHs disabled. */
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002063static void efx_set_rx_mode(struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002064{
Ben Hutchings767e4682008-09-01 12:43:14 +01002065 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002066
Ben Hutchings8be4f3e2009-11-25 16:12:16 +00002067 if (efx->port_enabled)
2068 queue_work(efx->workqueue, &efx->mac_work);
2069 /* Otherwise efx_start_port() will do this */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002070}
2071
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002072static int efx_set_features(struct net_device *net_dev, netdev_features_t data)
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002073{
2074 struct efx_nic *efx = netdev_priv(net_dev);
2075
2076 /* If disabling RX n-tuple filtering, clear existing filters */
2077 if (net_dev->features & ~data & NETIF_F_NTUPLE)
2078 efx_filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL);
2079
2080 return 0;
2081}
2082
Ben Hutchings8127d662013-08-29 19:19:29 +01002083static const struct net_device_ops efx_farch_netdev_ops = {
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002084 .ndo_open = efx_net_open,
2085 .ndo_stop = efx_net_stop,
Ben Hutchings44727022010-06-08 07:21:12 +00002086 .ndo_get_stats64 = efx_net_stats,
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002087 .ndo_tx_timeout = efx_watchdog,
2088 .ndo_start_xmit = efx_hard_start_xmit,
2089 .ndo_validate_addr = eth_validate_addr,
2090 .ndo_do_ioctl = efx_ioctl,
2091 .ndo_change_mtu = efx_change_mtu,
2092 .ndo_set_mac_address = efx_set_mac_address,
Ben Hutchings0fca8c92012-01-09 19:54:44 +00002093 .ndo_set_rx_mode = efx_set_rx_mode,
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002094 .ndo_set_features = efx_set_features,
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002095#ifdef CONFIG_SFC_SRIOV
2096 .ndo_set_vf_mac = efx_sriov_set_vf_mac,
2097 .ndo_set_vf_vlan = efx_sriov_set_vf_vlan,
2098 .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk,
2099 .ndo_get_vf_config = efx_sriov_get_vf_config,
2100#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002101#ifdef CONFIG_NET_POLL_CONTROLLER
2102 .ndo_poll_controller = efx_netpoll,
2103#endif
Ben Hutchings94b274b2011-01-10 21:18:20 +00002104 .ndo_setup_tc = efx_setup_tc,
Ben Hutchings64d8ad62011-01-05 00:50:41 +00002105#ifdef CONFIG_RFS_ACCEL
2106 .ndo_rx_flow_steer = efx_filter_rfs,
2107#endif
Stephen Hemmingerc3ecb9f2008-11-21 17:32:54 -08002108};
2109
Ben Hutchings8127d662013-08-29 19:19:29 +01002110static const struct net_device_ops efx_ef10_netdev_ops = {
2111 .ndo_open = efx_net_open,
2112 .ndo_stop = efx_net_stop,
2113 .ndo_get_stats64 = efx_net_stats,
2114 .ndo_tx_timeout = efx_watchdog,
2115 .ndo_start_xmit = efx_hard_start_xmit,
2116 .ndo_validate_addr = eth_validate_addr,
2117 .ndo_do_ioctl = efx_ioctl,
2118 .ndo_change_mtu = efx_change_mtu,
2119 .ndo_set_mac_address = efx_set_mac_address,
2120 .ndo_set_rx_mode = efx_set_rx_mode,
2121 .ndo_set_features = efx_set_features,
2122#ifdef CONFIG_NET_POLL_CONTROLLER
2123 .ndo_poll_controller = efx_netpoll,
2124#endif
2125#ifdef CONFIG_RFS_ACCEL
2126 .ndo_rx_flow_steer = efx_filter_rfs,
2127#endif
2128};
2129
Ben Hutchings7dde5962008-12-12 22:09:38 -08002130static void efx_update_name(struct efx_nic *efx)
2131{
2132 strcpy(efx->name, efx->net_dev->name);
2133 efx_mtd_rename(efx);
2134 efx_set_channel_names(efx);
2135}
2136
Ben Hutchings8ceee662008-04-27 12:55:59 +01002137static int efx_netdev_event(struct notifier_block *this,
2138 unsigned long event, void *ptr)
2139{
Jiri Pirko351638e2013-05-28 01:30:21 +00002140 struct net_device *net_dev = netdev_notifier_info_to_dev(ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002141
Ben Hutchings8127d662013-08-29 19:19:29 +01002142 if ((net_dev->netdev_ops == &efx_farch_netdev_ops ||
2143 net_dev->netdev_ops == &efx_ef10_netdev_ops) &&
Ben Hutchings7dde5962008-12-12 22:09:38 -08002144 event == NETDEV_CHANGENAME)
2145 efx_update_name(netdev_priv(net_dev));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002146
2147 return NOTIFY_DONE;
2148}
2149
2150static struct notifier_block efx_netdev_notifier = {
2151 .notifier_call = efx_netdev_event,
2152};
2153
Ben Hutchings06d5e192008-12-12 21:47:23 -08002154static ssize_t
2155show_phy_type(struct device *dev, struct device_attribute *attr, char *buf)
2156{
2157 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2158 return sprintf(buf, "%d\n", efx->phy_type);
2159}
Ben Hutchings776fbcc2013-06-18 17:45:40 +01002160static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL);
Ben Hutchings06d5e192008-12-12 21:47:23 -08002161
Ben Hutchings8ceee662008-04-27 12:55:59 +01002162static int efx_register_netdev(struct efx_nic *efx)
2163{
2164 struct net_device *net_dev = efx->net_dev;
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002165 struct efx_channel *channel;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002166 int rc;
2167
2168 net_dev->watchdog_timeo = 5 * HZ;
2169 net_dev->irq = efx->pci_dev->irq;
Ben Hutchings8127d662013-08-29 19:19:29 +01002170 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0) {
2171 net_dev->netdev_ops = &efx_ef10_netdev_ops;
2172 net_dev->priv_flags |= IFF_UNICAST_FLT;
2173 } else {
2174 net_dev->netdev_ops = &efx_farch_netdev_ops;
2175 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002176 SET_ETHTOOL_OPS(net_dev, &efx_ethtool_ops);
Ben Hutchings7e6d06f2012-07-30 15:57:44 +00002177 net_dev->gso_max_segs = EFX_TSO_MAX_SEGS;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002178
Ben Hutchings7dde5962008-12-12 22:09:38 -08002179 rtnl_lock();
Ben Hutchingsaed06282009-08-26 08:16:27 +00002180
Ben Hutchings7153f622012-07-27 20:50:52 +01002181 /* Enable resets to be scheduled and check whether any were
2182 * already requested. If so, the NIC is probably hosed so we
2183 * abort.
2184 */
2185 efx->state = STATE_READY;
2186 smp_mb(); /* ensure we change state before checking reset_pending */
2187 if (efx->reset_pending) {
2188 netif_err(efx, probe, efx->net_dev,
2189 "aborting probe due to scheduled reset\n");
2190 rc = -EIO;
2191 goto fail_locked;
2192 }
2193
Ben Hutchingsaed06282009-08-26 08:16:27 +00002194 rc = dev_alloc_name(net_dev, net_dev->name);
2195 if (rc < 0)
2196 goto fail_locked;
Ben Hutchings7dde5962008-12-12 22:09:38 -08002197 efx_update_name(efx);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002198
Ben Hutchings8f8b3d52012-08-24 18:04:38 +01002199 /* Always start with carrier off; PHY events will detect the link */
2200 netif_carrier_off(net_dev);
2201
Ben Hutchingsaed06282009-08-26 08:16:27 +00002202 rc = register_netdevice(net_dev);
2203 if (rc)
2204 goto fail_locked;
2205
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002206 efx_for_each_channel(channel, efx) {
2207 struct efx_tx_queue *tx_queue;
Ben Hutchings60031fc2011-01-12 18:39:40 +00002208 efx_for_each_channel_tx_queue(tx_queue, channel)
2209 efx_init_tx_queue_core_txq(tx_queue);
Ben Hutchingsc04bfc62010-12-10 01:24:16 +00002210 }
2211
Ben Hutchings7dde5962008-12-12 22:09:38 -08002212 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002213
Ben Hutchings06d5e192008-12-12 21:47:23 -08002214 rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type);
2215 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002216 netif_err(efx, drv, efx->net_dev,
2217 "failed to init net dev attributes\n");
Ben Hutchings06d5e192008-12-12 21:47:23 -08002218 goto fail_registered;
2219 }
2220
Ben Hutchings8ceee662008-04-27 12:55:59 +01002221 return 0;
Ben Hutchings06d5e192008-12-12 21:47:23 -08002222
Ben Hutchings7153f622012-07-27 20:50:52 +01002223fail_registered:
2224 rtnl_lock();
2225 unregister_netdevice(net_dev);
Ben Hutchingsaed06282009-08-26 08:16:27 +00002226fail_locked:
Ben Hutchings7153f622012-07-27 20:50:52 +01002227 efx->state = STATE_UNINIT;
Ben Hutchingsaed06282009-08-26 08:16:27 +00002228 rtnl_unlock();
Ben Hutchings62776d02010-06-23 11:30:07 +00002229 netif_err(efx, drv, efx->net_dev, "could not register net dev\n");
Ben Hutchingsaed06282009-08-26 08:16:27 +00002230 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002231}
2232
2233static void efx_unregister_netdev(struct efx_nic *efx)
2234{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002235 if (!efx->net_dev)
2236 return;
2237
Ben Hutchings767e4682008-09-01 12:43:14 +01002238 BUG_ON(netdev_priv(efx->net_dev) != efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002239
Ben Hutchings73ba7b62012-01-09 19:47:08 +00002240 strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name));
2241 device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type);
Ben Hutchings7153f622012-07-27 20:50:52 +01002242
2243 rtnl_lock();
2244 unregister_netdevice(efx->net_dev);
2245 efx->state = STATE_UNINIT;
2246 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002247}
2248
2249/**************************************************************************
2250 *
2251 * Device reset and suspend
2252 *
2253 **************************************************************************/
2254
Ben Hutchings2467ca42008-09-01 12:48:50 +01002255/* Tears down the entire software state and most of the hardware state
2256 * before reset. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002257void efx_reset_down(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002258{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002259 EFX_ASSERT_RESET_SERIALISED(efx);
2260
Ben Hutchings2467ca42008-09-01 12:48:50 +01002261 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002262 efx_disable_interrupts(efx);
Ben Hutchings5642cee2012-07-27 19:35:52 +01002263
2264 mutex_lock(&efx->mac_lock);
Steve Hodgson4b988282009-01-29 17:50:51 +00002265 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE)
2266 efx->phy_op->fini(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002267 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002268}
2269
Ben Hutchings2467ca42008-09-01 12:48:50 +01002270/* This function will always ensure that the locks acquired in
2271 * efx_reset_down() are released. A failure return code indicates
2272 * that we were unable to reinitialise the hardware, and the
2273 * driver should be disabled. If ok is false, then the rx and tx
2274 * engines are not restarted, pending a RESET_DISABLE. */
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002275int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002276{
2277 int rc;
2278
Ben Hutchings2467ca42008-09-01 12:48:50 +01002279 EFX_ASSERT_RESET_SERIALISED(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002280
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002281 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002282 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002283 netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002284 goto fail;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002285 }
2286
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002287 if (!ok)
2288 goto fail;
2289
Steve Hodgson4b988282009-01-29 17:50:51 +00002290 if (efx->port_initialized && method != RESET_TYPE_INVISIBLE) {
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002291 rc = efx->phy_op->init(efx);
2292 if (rc)
2293 goto fail;
2294 if (efx->phy_op->reconfigure(efx))
Ben Hutchings62776d02010-06-23 11:30:07 +00002295 netif_err(efx, drv, efx->net_dev,
2296 "could not restore PHY settings\n");
Steve Hodgson4b988282009-01-29 17:50:51 +00002297 }
2298
Jon Cooper261e4d92013-04-15 18:51:54 +01002299 rc = efx_enable_interrupts(efx);
2300 if (rc)
2301 goto fail;
Ben Hutchings64eebcf2010-09-20 08:43:07 +00002302 efx_restore_filters(efx);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002303 efx_sriov_reset(efx);
Ben Hutchings2467ca42008-09-01 12:48:50 +01002304
2305 mutex_unlock(&efx->mac_lock);
2306
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002307 efx_start_all(efx);
2308
2309 return 0;
2310
2311fail:
2312 efx->port_initialized = false;
2313
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002314 mutex_unlock(&efx->mac_lock);
2315
Ben Hutchings8ceee662008-04-27 12:55:59 +01002316 return rc;
2317}
2318
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002319/* Reset the NIC using the specified method. Note that the reset may
2320 * fail, in which case the card will be left in an unusable state.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002321 *
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002322 * Caller must hold the rtnl_lock.
Ben Hutchings8ceee662008-04-27 12:55:59 +01002323 */
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002324int efx_reset(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002325{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002326 int rc, rc2;
2327 bool disabled;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002328
Ben Hutchings62776d02010-06-23 11:30:07 +00002329 netif_info(efx, drv, efx->net_dev, "resetting (%s)\n",
2330 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002331
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002332 efx_device_detach_sync(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002333 efx_reset_down(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002334
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002335 rc = efx->type->reset(efx, method);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002336 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002337 netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n");
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002338 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002339 }
2340
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002341 /* Clear flags for the scopes we covered. We assume the NIC and
2342 * driver are now quiescent so that there is no race here.
2343 */
2344 efx->reset_pending &= -(1 << (method + 1));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002345
2346 /* Reinitialise bus-mastering, which may have been turned off before
2347 * the reset was scheduled. This is still appropriate, even in the
2348 * RESET_TYPE_DISABLE since this driver generally assumes the hardware
2349 * can respond to requests. */
2350 pci_set_master(efx->pci_dev);
2351
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002352out:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002353 /* Leave device stopped if necessary */
Alexandre Rames626950d2013-01-14 17:20:22 +00002354 disabled = rc ||
2355 method == RESET_TYPE_DISABLE ||
2356 method == RESET_TYPE_RECOVER_OR_DISABLE;
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002357 rc2 = efx_reset_up(efx, method, !disabled);
2358 if (rc2) {
2359 disabled = true;
2360 if (!rc)
2361 rc = rc2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002362 }
2363
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002364 if (disabled) {
Ben Hutchingsf49a4582010-04-28 09:01:33 +00002365 dev_close(efx->net_dev);
Ben Hutchings62776d02010-06-23 11:30:07 +00002366 netif_err(efx, drv, efx->net_dev, "has been disabled\n");
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002367 efx->state = STATE_DISABLED;
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002368 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00002369 netif_dbg(efx, drv, efx->net_dev, "reset complete\n");
Ben Hutchingse4abce82011-05-16 18:51:24 +01002370 netif_device_attach(efx->net_dev);
Ben Hutchingsf4bd9542008-12-26 13:48:51 -08002371 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002372 return rc;
2373}
2374
Alexandre Rames626950d2013-01-14 17:20:22 +00002375/* Try recovery mechanisms.
2376 * For now only EEH is supported.
2377 * Returns 0 if the recovery mechanisms are unsuccessful.
2378 * Returns a non-zero value otherwise.
2379 */
Alexandre Ramesb28405b2013-03-21 16:41:43 +00002380int efx_try_recovery(struct efx_nic *efx)
Alexandre Rames626950d2013-01-14 17:20:22 +00002381{
2382#ifdef CONFIG_EEH
2383 /* A PCI error can occur and not be seen by EEH because nothing
2384 * happens on the PCI bus. In this case the driver may fail and
2385 * schedule a 'recover or reset', leading to this recovery handler.
2386 * Manually call the eeh failure check function.
2387 */
2388 struct eeh_dev *eehdev =
2389 of_node_to_eeh_dev(pci_device_to_OF_node(efx->pci_dev));
2390
2391 if (eeh_dev_check_failure(eehdev)) {
2392 /* The EEH mechanisms will handle the error and reset the
2393 * device if necessary.
2394 */
2395 return 1;
2396 }
2397#endif
2398 return 0;
2399}
2400
Jon Cooper74cd60a2013-09-16 14:18:51 +01002401static void efx_wait_for_bist_end(struct efx_nic *efx)
2402{
2403 int i;
2404
2405 for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) {
2406 if (efx_mcdi_poll_reboot(efx))
2407 goto out;
2408 msleep(BIST_WAIT_DELAY_MS);
2409 }
2410
2411 netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n");
2412out:
2413 /* Either way unset the BIST flag. If we found no reboot we probably
2414 * won't recover, but we should try.
2415 */
2416 efx->mc_bist_for_other_fn = false;
2417}
2418
Ben Hutchings8ceee662008-04-27 12:55:59 +01002419/* The worker thread exists so that code that cannot sleep can
2420 * schedule a reset for later.
2421 */
2422static void efx_reset_work(struct work_struct *data)
2423{
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002424 struct efx_nic *efx = container_of(data, struct efx_nic, reset_work);
Alexandre Rames626950d2013-01-14 17:20:22 +00002425 unsigned long pending;
2426 enum reset_type method;
2427
2428 pending = ACCESS_ONCE(efx->reset_pending);
2429 method = fls(pending) - 1;
2430
Jon Cooper74cd60a2013-09-16 14:18:51 +01002431 if (method == RESET_TYPE_MC_BIST)
2432 efx_wait_for_bist_end(efx);
2433
Alexandre Rames626950d2013-01-14 17:20:22 +00002434 if ((method == RESET_TYPE_RECOVER_OR_DISABLE ||
2435 method == RESET_TYPE_RECOVER_OR_ALL) &&
2436 efx_try_recovery(efx))
2437 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002438
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002439 if (!pending)
Steve Hodgson319ba642010-06-01 11:17:24 +00002440 return;
2441
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002442 rtnl_lock();
Ben Hutchings7153f622012-07-27 20:50:52 +01002443
2444 /* We checked the state in efx_schedule_reset() but it may
2445 * have changed by now. Now that we have the RTNL lock,
2446 * it cannot change again.
2447 */
2448 if (efx->state == STATE_READY)
Alexandre Rames626950d2013-01-14 17:20:22 +00002449 (void)efx_reset(efx, method);
Ben Hutchings7153f622012-07-27 20:50:52 +01002450
Ben Hutchingseb9f6742009-11-29 03:43:15 +00002451 rtnl_unlock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002452}
2453
2454void efx_schedule_reset(struct efx_nic *efx, enum reset_type type)
2455{
2456 enum reset_type method;
2457
Alexandre Rames626950d2013-01-14 17:20:22 +00002458 if (efx->state == STATE_RECOVERY) {
2459 netif_dbg(efx, drv, efx->net_dev,
2460 "recovering: skip scheduling %s reset\n",
2461 RESET_TYPE(type));
2462 return;
2463 }
2464
Ben Hutchings8ceee662008-04-27 12:55:59 +01002465 switch (type) {
2466 case RESET_TYPE_INVISIBLE:
2467 case RESET_TYPE_ALL:
Alexandre Rames626950d2013-01-14 17:20:22 +00002468 case RESET_TYPE_RECOVER_OR_ALL:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002469 case RESET_TYPE_WORLD:
2470 case RESET_TYPE_DISABLE:
Alexandre Rames626950d2013-01-14 17:20:22 +00002471 case RESET_TYPE_RECOVER_OR_DISABLE:
Jon Cooper74cd60a2013-09-16 14:18:51 +01002472 case RESET_TYPE_MC_BIST:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002473 method = type;
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002474 netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n",
2475 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002476 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002477 default:
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002478 method = efx->type->map_reset_reason(type);
Ben Hutchings62776d02010-06-23 11:30:07 +00002479 netif_dbg(efx, drv, efx->net_dev,
2480 "scheduling %s reset for %s\n",
2481 RESET_TYPE(method), RESET_TYPE(type));
Ben Hutchings0e2a9c72011-06-24 20:50:07 +01002482 break;
2483 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002484
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002485 set_bit(method, &efx->reset_pending);
Ben Hutchings7153f622012-07-27 20:50:52 +01002486 smp_mb(); /* ensure we change reset_pending before checking state */
2487
2488 /* If we're not READY then just leave the flags set as the cue
2489 * to abort probing or reschedule the reset later.
2490 */
2491 if (ACCESS_ONCE(efx->state) != STATE_READY)
2492 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002493
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002494 /* efx_process_channel() will no longer read events once a
2495 * reset is scheduled. So switch back to poll'd MCDI completions. */
2496 efx_mcdi_mode_poll(efx);
2497
Steve Hodgson1ab00622008-12-12 21:33:02 -08002498 queue_work(reset_workqueue, &efx->reset_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002499}
2500
2501/**************************************************************************
2502 *
2503 * List of NICs we support
2504 *
2505 **************************************************************************/
2506
2507/* PCI device ID table */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +00002508static DEFINE_PCI_DEVICE_TABLE(efx_pci_table) = {
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002509 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2510 PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002511 .driver_data = (unsigned long) &falcon_a1_nic_type},
Linus Torvalds0e59e7e72011-10-28 14:20:44 -07002512 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE,
2513 PCI_DEVICE_ID_SOLARFLARE_SFC4000B),
Ben Hutchingsdaeda632009-11-28 05:36:04 +00002514 .driver_data = (unsigned long) &falcon_b0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002515 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002516 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings547c4742011-12-02 18:23:56 +00002517 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00002518 .driver_data = (unsigned long) &siena_a0_nic_type},
Ben Hutchings8127d662013-08-29 19:19:29 +01002519 {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */
2520 .driver_data = (unsigned long) &efx_hunt_a0_nic_type},
Ben Hutchings8ceee662008-04-27 12:55:59 +01002521 {0} /* end of list */
2522};
2523
2524/**************************************************************************
2525 *
Ben Hutchings37594332009-11-23 16:05:45 +00002526 * Dummy PHY/MAC operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002527 *
Ben Hutchings01aad7b2008-09-01 12:48:36 +01002528 * Can be used for some unimplemented operations
Ben Hutchings8ceee662008-04-27 12:55:59 +01002529 * Needed so all function pointers are valid and do not have to be tested
2530 * before use
2531 *
2532 **************************************************************************/
2533int efx_port_dummy_op_int(struct efx_nic *efx)
2534{
2535 return 0;
2536}
2537void efx_port_dummy_op_void(struct efx_nic *efx) {}
stephen hemmingerd2156972010-10-18 05:27:31 +00002538
2539static bool efx_port_dummy_op_poll(struct efx_nic *efx)
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002540{
2541 return false;
2542}
Ben Hutchings8ceee662008-04-27 12:55:59 +01002543
stephen hemminger6c8c2512011-04-14 05:50:12 +00002544static const struct efx_phy_operations efx_dummy_phy_operations = {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002545 .init = efx_port_dummy_op_int,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00002546 .reconfigure = efx_port_dummy_op_int,
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00002547 .poll = efx_port_dummy_op_poll,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002548 .fini = efx_port_dummy_op_void,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002549};
2550
Ben Hutchings8ceee662008-04-27 12:55:59 +01002551/**************************************************************************
2552 *
2553 * Data housekeeping
2554 *
2555 **************************************************************************/
2556
2557/* This zeroes out and then fills in the invariants in a struct
2558 * efx_nic (including all sub-structures).
2559 */
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002560static int efx_init_struct(struct efx_nic *efx,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002561 struct pci_dev *pci_dev, struct net_device *net_dev)
2562{
Ben Hutchings46426102010-09-10 06:42:33 +00002563 int i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002564
2565 /* Initialise common structures */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002566 spin_lock_init(&efx->biu_lock);
Ben Hutchings76884832009-11-29 15:10:44 +00002567#ifdef CONFIG_SFC_MTD
2568 INIT_LIST_HEAD(&efx->mtd_list);
2569#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +01002570 INIT_WORK(&efx->reset_work, efx_reset_work);
2571 INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor);
Ben Hutchingsdd407812012-02-28 23:40:21 +00002572 INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002573 efx->pci_dev = pci_dev;
Ben Hutchings62776d02010-06-23 11:30:07 +00002574 efx->msg_enable = debug;
Ben Hutchingsf16aeea2012-07-27 19:31:16 +01002575 efx->state = STATE_UNINIT;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002576 strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002577
2578 efx->net_dev = net_dev;
Jon Cooper43a37392012-10-18 15:49:54 +01002579 efx->rx_prefix_size = efx->type->rx_prefix_size;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +04002580 efx->rx_ip_align =
2581 NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0;
Jon Cooper43a37392012-10-18 15:49:54 +01002582 efx->rx_packet_hash_offset =
2583 efx->type->rx_hash_offset - efx->type->rx_prefix_size;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002584 spin_lock_init(&efx->stats_lock);
2585 mutex_init(&efx->mac_lock);
2586 efx->phy_op = &efx_dummy_phy_operations;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002587 efx->mdio.dev = net_dev;
Ben Hutchings766ca0f2008-12-12 21:59:24 -08002588 INIT_WORK(&efx->mac_work, efx_mac_work);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00002589 init_waitqueue_head(&efx->flush_wq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002590
2591 for (i = 0; i < EFX_MAX_CHANNELS; i++) {
Ben Hutchings46426102010-09-10 06:42:33 +00002592 efx->channel[i] = efx_alloc_channel(efx, i, NULL);
2593 if (!efx->channel[i])
2594 goto fail;
Ben Hutchingsd8291182012-10-05 23:35:41 +01002595 efx->msi_context[i].efx = efx;
2596 efx->msi_context[i].index = i;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002597 }
2598
Ben Hutchings8ceee662008-04-27 12:55:59 +01002599 /* Higher numbered interrupt modes are less capable! */
2600 efx->interrupt_mode = max(efx->type->max_interrupt_mode,
2601 interrupt_mode);
2602
Ben Hutchings6977dc62008-12-26 13:44:39 -08002603 /* Would be good to use the net_dev name, but we're too early */
2604 snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s",
2605 pci_name(pci_dev));
2606 efx->workqueue = create_singlethread_workqueue(efx->workqueue_name);
Steve Hodgson1ab00622008-12-12 21:33:02 -08002607 if (!efx->workqueue)
Ben Hutchings46426102010-09-10 06:42:33 +00002608 goto fail;
Ben Hutchings8d9853d2008-07-18 19:01:20 +01002609
Ben Hutchings8ceee662008-04-27 12:55:59 +01002610 return 0;
Ben Hutchings46426102010-09-10 06:42:33 +00002611
2612fail:
2613 efx_fini_struct(efx);
2614 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002615}
2616
2617static void efx_fini_struct(struct efx_nic *efx)
2618{
Ben Hutchings8313aca2010-09-10 06:41:57 +00002619 int i;
2620
2621 for (i = 0; i < EFX_MAX_CHANNELS; i++)
2622 kfree(efx->channel[i]);
2623
Ben Hutchings8ceee662008-04-27 12:55:59 +01002624 if (efx->workqueue) {
2625 destroy_workqueue(efx->workqueue);
2626 efx->workqueue = NULL;
2627 }
2628}
2629
2630/**************************************************************************
2631 *
2632 * PCI interface
2633 *
2634 **************************************************************************/
2635
2636/* Main body of final NIC shutdown code
2637 * This is called only at module unload (or hotplug removal).
2638 */
2639static void efx_pci_remove_main(struct efx_nic *efx)
2640{
Ben Hutchings7153f622012-07-27 20:50:52 +01002641 /* Flush reset_work. It can no longer be scheduled since we
2642 * are not READY.
2643 */
2644 BUG_ON(efx->state == STATE_READY);
2645 cancel_work_sync(&efx->reset_work);
2646
Ben Hutchingsd8291182012-10-05 23:35:41 +01002647 efx_disable_interrupts(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00002648 efx_nic_fini_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002649 efx_fini_port(efx);
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002650 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002651 efx_fini_napi(efx);
2652 efx_remove_all(efx);
2653}
2654
2655/* Final NIC shutdown
2656 * This is called only at module unload (or hotplug removal).
2657 */
2658static void efx_pci_remove(struct pci_dev *pci_dev)
2659{
2660 struct efx_nic *efx;
2661
2662 efx = pci_get_drvdata(pci_dev);
2663 if (!efx)
2664 return;
2665
2666 /* Mark the NIC as fini, then stop the interface */
2667 rtnl_lock();
Ben Hutchings8ceee662008-04-27 12:55:59 +01002668 dev_close(efx->net_dev);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002669 efx_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002670 rtnl_unlock();
2671
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002672 efx_sriov_fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002673 efx_unregister_netdev(efx);
2674
Ben Hutchings7dde5962008-12-12 22:09:38 -08002675 efx_mtd_remove(efx);
2676
Ben Hutchings8ceee662008-04-27 12:55:59 +01002677 efx_pci_remove_main(efx);
2678
Ben Hutchings8ceee662008-04-27 12:55:59 +01002679 efx_fini_io(efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002680 netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002681
Ben Hutchings8ceee662008-04-27 12:55:59 +01002682 efx_fini_struct(efx);
Ben Hutchings3de4e302012-04-05 00:22:19 +01002683 pci_set_drvdata(pci_dev, NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002684 free_netdev(efx->net_dev);
Alexandre Rames626950d2013-01-14 17:20:22 +00002685
2686 pci_disable_pcie_error_reporting(pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002687};
2688
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002689/* NIC VPD information
2690 * Called during probe to display the part number of the
2691 * installed NIC. VPD is potentially very large but this should
2692 * always appear within the first 512 bytes.
2693 */
2694#define SFC_VPD_LEN 512
2695static void efx_print_product_vpd(struct efx_nic *efx)
2696{
2697 struct pci_dev *dev = efx->pci_dev;
2698 char vpd_data[SFC_VPD_LEN];
2699 ssize_t vpd_size;
2700 int i, j;
2701
2702 /* Get the vpd data from the device */
2703 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
2704 if (vpd_size <= 0) {
2705 netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n");
2706 return;
2707 }
2708
2709 /* Get the Read only section */
2710 i = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA);
2711 if (i < 0) {
2712 netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n");
2713 return;
2714 }
2715
2716 j = pci_vpd_lrdt_size(&vpd_data[i]);
2717 i += PCI_VPD_LRDT_TAG_SIZE;
2718 if (i + j > vpd_size)
2719 j = vpd_size - i;
2720
2721 /* Get the Part number */
2722 i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN");
2723 if (i < 0) {
2724 netif_err(efx, drv, efx->net_dev, "Part number not found\n");
2725 return;
2726 }
2727
2728 j = pci_vpd_info_field_size(&vpd_data[i]);
2729 i += PCI_VPD_INFO_FLD_HDR_SIZE;
2730 if (i + j > vpd_size) {
2731 netif_err(efx, drv, efx->net_dev, "Incomplete part number\n");
2732 return;
2733 }
2734
2735 netif_info(efx, drv, efx->net_dev,
2736 "Part Number : %.*s\n", j, &vpd_data[i]);
2737}
2738
2739
Ben Hutchings8ceee662008-04-27 12:55:59 +01002740/* Main body of NIC initialisation
2741 * This is called at module load (or hotplug insertion, theoretically).
2742 */
2743static int efx_pci_probe_main(struct efx_nic *efx)
2744{
2745 int rc;
2746
2747 /* Do start-of-day initialisation */
2748 rc = efx_probe_all(efx);
2749 if (rc)
2750 goto fail1;
2751
Ben Hutchingse8f14992010-12-07 19:47:34 +00002752 efx_init_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002753
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002754 rc = efx->type->init(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002755 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002756 netif_err(efx, probe, efx->net_dev,
2757 "failed to initialise NIC\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002758 goto fail3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002759 }
2760
2761 rc = efx_init_port(efx);
2762 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00002763 netif_err(efx, probe, efx->net_dev,
2764 "failed to initialise port\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00002765 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002766 }
2767
Ben Hutchings152b6a62009-11-29 03:43:56 +00002768 rc = efx_nic_init_interrupt(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002769 if (rc)
Ben Hutchings278c0622009-11-23 16:05:12 +00002770 goto fail5;
Jon Cooper261e4d92013-04-15 18:51:54 +01002771 rc = efx_enable_interrupts(efx);
2772 if (rc)
2773 goto fail6;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002774
2775 return 0;
2776
Jon Cooper261e4d92013-04-15 18:51:54 +01002777 fail6:
2778 efx_nic_fini_interrupt(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00002779 fail5:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002780 efx_fini_port(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002781 fail4:
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00002782 efx->type->fini(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002783 fail3:
2784 efx_fini_napi(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002785 efx_remove_all(efx);
2786 fail1:
2787 return rc;
2788}
2789
2790/* NIC initialisation
2791 *
2792 * This is called at module load (or hotplug insertion,
Ben Hutchings73ba7b62012-01-09 19:47:08 +00002793 * theoretically). It sets up PCI mappings, resets the NIC,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002794 * sets up and registers the network devices with the kernel and hooks
2795 * the interrupt service routine. It does not prepare the device for
2796 * transmission; this is left to the first time one of the network
2797 * interfaces is brought up (i.e. efx_net_open).
2798 */
Bill Pemberton87d1fc12012-12-03 09:23:32 -05002799static int efx_pci_probe(struct pci_dev *pci_dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00002800 const struct pci_device_id *entry)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002801{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002802 struct net_device *net_dev;
2803 struct efx_nic *efx;
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002804 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002805
2806 /* Allocate and initialise a struct net_device and struct efx_nic */
Ben Hutchings94b274b2011-01-10 21:18:20 +00002807 net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES,
2808 EFX_MAX_RX_QUEUES);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002809 if (!net_dev)
2810 return -ENOMEM;
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002811 efx = netdev_priv(net_dev);
2812 efx->type = (const struct efx_nic_type *) entry->driver_data;
2813 net_dev->features |= (efx->type->offload_features | NETIF_F_SG |
Ben Hutchings97bc5412009-05-19 16:19:08 -07002814 NETIF_F_HIGHDMA | NETIF_F_TSO |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002815 NETIF_F_RXCSUM);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002816 if (efx->type->offload_features & NETIF_F_V6_CSUM)
Ben Hutchings738a8f42009-11-29 15:16:05 +00002817 net_dev->features |= NETIF_F_TSO6;
Ben Hutchings285065632008-09-01 12:46:54 +01002818 /* Mask for features that also apply to VLAN devices */
2819 net_dev->vlan_features |= (NETIF_F_ALL_CSUM | NETIF_F_SG |
Ben Hutchingsabfe9032011-04-05 15:00:02 +01002820 NETIF_F_HIGHDMA | NETIF_F_ALL_TSO |
2821 NETIF_F_RXCSUM);
2822 /* All offloads can be toggled */
2823 net_dev->hw_features = net_dev->features & ~NETIF_F_HIGHDMA;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002824 pci_set_drvdata(pci_dev, efx);
Ben Hutchings62776d02010-06-23 11:30:07 +00002825 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
Ben Hutchingsadeb15a2012-08-02 01:39:38 +01002826 rc = efx_init_struct(efx, pci_dev, net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002827 if (rc)
2828 goto fail1;
2829
Ben Hutchings62776d02010-06-23 11:30:07 +00002830 netif_info(efx, probe, efx->net_dev,
Ben Hutchingsff79c8a2011-07-13 16:21:24 +01002831 "Solarflare NIC detected\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002832
Ben Hutchings460eeaa2012-03-05 15:35:39 +00002833 efx_print_product_vpd(efx);
2834
Ben Hutchings8ceee662008-04-27 12:55:59 +01002835 /* Set up basic I/O (BAR mappings etc) */
2836 rc = efx_init_io(efx);
2837 if (rc)
2838 goto fail2;
2839
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002840 rc = efx_pci_probe_main(efx);
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002841 if (rc)
2842 goto fail3;
Steve Hodgsonfa402b22008-12-12 22:08:16 -08002843
Ben Hutchings8ceee662008-04-27 12:55:59 +01002844 rc = efx_register_netdev(efx);
2845 if (rc)
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002846 goto fail4;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002847
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00002848 rc = efx_sriov_init(efx);
2849 if (rc)
2850 netif_err(efx, probe, efx->net_dev,
2851 "SR-IOV can't be enabled rc %d\n", rc);
2852
Ben Hutchings62776d02010-06-23 11:30:07 +00002853 netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n");
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00002854
Ben Hutchings7c431612012-01-27 17:23:58 +00002855 /* Try to create MTDs, but allow this to fail */
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00002856 rtnl_lock();
Ben Hutchings7c431612012-01-27 17:23:58 +00002857 rc = efx_mtd_probe(efx);
Ben Hutchingsa5211bb2009-10-23 08:33:09 +00002858 rtnl_unlock();
Ben Hutchings7c431612012-01-27 17:23:58 +00002859 if (rc)
2860 netif_warn(efx, probe, efx->net_dev,
2861 "failed to create MTDs (%d)\n", rc);
2862
Alexandre Rames626950d2013-01-14 17:20:22 +00002863 rc = pci_enable_pcie_error_reporting(pci_dev);
2864 if (rc && rc != -EINVAL)
2865 netif_warn(efx, probe, efx->net_dev,
2866 "pci_enable_pcie_error_reporting failed (%d)\n", rc);
2867
Ben Hutchings8ceee662008-04-27 12:55:59 +01002868 return 0;
2869
Ben Hutchings8ceee662008-04-27 12:55:59 +01002870 fail4:
Ben Hutchingsfadac6a2011-11-19 00:35:47 +00002871 efx_pci_remove_main(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002872 fail3:
2873 efx_fini_io(efx);
2874 fail2:
2875 efx_fini_struct(efx);
2876 fail1:
Ben Hutchings3de4e302012-04-05 00:22:19 +01002877 pci_set_drvdata(pci_dev, NULL);
Steve Hodgson5e2a9112010-02-12 12:32:27 -08002878 WARN_ON(rc > 0);
Ben Hutchings62776d02010-06-23 11:30:07 +00002879 netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002880 free_netdev(net_dev);
2881 return rc;
2882}
2883
Ben Hutchings89c758f2009-11-29 03:43:07 +00002884static int efx_pm_freeze(struct device *dev)
2885{
2886 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2887
Ben Hutchings61da0262012-07-27 19:35:39 +01002888 rtnl_lock();
2889
Ben Hutchings6032fb52012-07-27 19:35:47 +01002890 if (efx->state != STATE_DISABLED) {
2891 efx->state = STATE_UNINIT;
Ben Hutchings89c758f2009-11-29 03:43:07 +00002892
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +01002893 efx_device_detach_sync(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00002894
Ben Hutchings6032fb52012-07-27 19:35:47 +01002895 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01002896 efx_disable_interrupts(efx);
Ben Hutchings6032fb52012-07-27 19:35:47 +01002897 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00002898
Ben Hutchings61da0262012-07-27 19:35:39 +01002899 rtnl_unlock();
2900
Ben Hutchings89c758f2009-11-29 03:43:07 +00002901 return 0;
2902}
2903
2904static int efx_pm_thaw(struct device *dev)
2905{
Jon Cooper261e4d92013-04-15 18:51:54 +01002906 int rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00002907 struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev));
2908
Ben Hutchings61da0262012-07-27 19:35:39 +01002909 rtnl_lock();
2910
Ben Hutchings6032fb52012-07-27 19:35:47 +01002911 if (efx->state != STATE_DISABLED) {
Jon Cooper261e4d92013-04-15 18:51:54 +01002912 rc = efx_enable_interrupts(efx);
2913 if (rc)
2914 goto fail;
Ben Hutchings89c758f2009-11-29 03:43:07 +00002915
Ben Hutchings6032fb52012-07-27 19:35:47 +01002916 mutex_lock(&efx->mac_lock);
2917 efx->phy_op->reconfigure(efx);
2918 mutex_unlock(&efx->mac_lock);
Ben Hutchings89c758f2009-11-29 03:43:07 +00002919
Ben Hutchings6032fb52012-07-27 19:35:47 +01002920 efx_start_all(efx);
Ben Hutchings89c758f2009-11-29 03:43:07 +00002921
Ben Hutchings6032fb52012-07-27 19:35:47 +01002922 netif_device_attach(efx->net_dev);
Ben Hutchings89c758f2009-11-29 03:43:07 +00002923
Ben Hutchings6032fb52012-07-27 19:35:47 +01002924 efx->state = STATE_READY;
Ben Hutchings89c758f2009-11-29 03:43:07 +00002925
Ben Hutchings6032fb52012-07-27 19:35:47 +01002926 efx->type->resume_wol(efx);
2927 }
Ben Hutchings89c758f2009-11-29 03:43:07 +00002928
Ben Hutchings61da0262012-07-27 19:35:39 +01002929 rtnl_unlock();
2930
Steve Hodgson319ba642010-06-01 11:17:24 +00002931 /* Reschedule any quenched resets scheduled during efx_pm_freeze() */
2932 queue_work(reset_workqueue, &efx->reset_work);
2933
Ben Hutchings89c758f2009-11-29 03:43:07 +00002934 return 0;
Jon Cooper261e4d92013-04-15 18:51:54 +01002935
2936fail:
2937 rtnl_unlock();
2938
2939 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00002940}
2941
2942static int efx_pm_poweroff(struct device *dev)
2943{
2944 struct pci_dev *pci_dev = to_pci_dev(dev);
2945 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2946
2947 efx->type->fini(efx);
2948
Ben Hutchingsa7d529a2011-06-24 20:46:31 +01002949 efx->reset_pending = 0;
Ben Hutchings89c758f2009-11-29 03:43:07 +00002950
2951 pci_save_state(pci_dev);
2952 return pci_set_power_state(pci_dev, PCI_D3hot);
2953}
2954
2955/* Used for both resume and restore */
2956static int efx_pm_resume(struct device *dev)
2957{
2958 struct pci_dev *pci_dev = to_pci_dev(dev);
2959 struct efx_nic *efx = pci_get_drvdata(pci_dev);
2960 int rc;
2961
2962 rc = pci_set_power_state(pci_dev, PCI_D0);
2963 if (rc)
2964 return rc;
2965 pci_restore_state(pci_dev);
2966 rc = pci_enable_device(pci_dev);
2967 if (rc)
2968 return rc;
2969 pci_set_master(efx->pci_dev);
2970 rc = efx->type->reset(efx, RESET_TYPE_ALL);
2971 if (rc)
2972 return rc;
2973 rc = efx->type->init(efx);
2974 if (rc)
2975 return rc;
Jon Cooper261e4d92013-04-15 18:51:54 +01002976 rc = efx_pm_thaw(dev);
2977 return rc;
Ben Hutchings89c758f2009-11-29 03:43:07 +00002978}
2979
2980static int efx_pm_suspend(struct device *dev)
2981{
2982 int rc;
2983
2984 efx_pm_freeze(dev);
2985 rc = efx_pm_poweroff(dev);
2986 if (rc)
2987 efx_pm_resume(dev);
2988 return rc;
2989}
2990
Ben Hutchings18e83e42012-01-05 19:05:20 +00002991static const struct dev_pm_ops efx_pm_ops = {
Ben Hutchings89c758f2009-11-29 03:43:07 +00002992 .suspend = efx_pm_suspend,
2993 .resume = efx_pm_resume,
2994 .freeze = efx_pm_freeze,
2995 .thaw = efx_pm_thaw,
2996 .poweroff = efx_pm_poweroff,
2997 .restore = efx_pm_resume,
2998};
2999
Alexandre Rames626950d2013-01-14 17:20:22 +00003000/* A PCI error affecting this device was detected.
3001 * At this point MMIO and DMA may be disabled.
3002 * Stop the software path and request a slot reset.
3003 */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003004static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev,
3005 enum pci_channel_state state)
Alexandre Rames626950d2013-01-14 17:20:22 +00003006{
3007 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3008 struct efx_nic *efx = pci_get_drvdata(pdev);
3009
3010 if (state == pci_channel_io_perm_failure)
3011 return PCI_ERS_RESULT_DISCONNECT;
3012
3013 rtnl_lock();
3014
3015 if (efx->state != STATE_DISABLED) {
3016 efx->state = STATE_RECOVERY;
3017 efx->reset_pending = 0;
3018
3019 efx_device_detach_sync(efx);
3020
3021 efx_stop_all(efx);
Ben Hutchingsd8291182012-10-05 23:35:41 +01003022 efx_disable_interrupts(efx);
Alexandre Rames626950d2013-01-14 17:20:22 +00003023
3024 status = PCI_ERS_RESULT_NEED_RESET;
3025 } else {
3026 /* If the interface is disabled we don't want to do anything
3027 * with it.
3028 */
3029 status = PCI_ERS_RESULT_RECOVERED;
3030 }
3031
3032 rtnl_unlock();
3033
3034 pci_disable_device(pdev);
3035
3036 return status;
3037}
3038
3039/* Fake a successfull reset, which will be performed later in efx_io_resume. */
stephen hemmingerdebd0032013-03-16 06:57:51 +00003040static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev)
Alexandre Rames626950d2013-01-14 17:20:22 +00003041{
3042 struct efx_nic *efx = pci_get_drvdata(pdev);
3043 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
3044 int rc;
3045
3046 if (pci_enable_device(pdev)) {
3047 netif_err(efx, hw, efx->net_dev,
3048 "Cannot re-enable PCI device after reset.\n");
3049 status = PCI_ERS_RESULT_DISCONNECT;
3050 }
3051
3052 rc = pci_cleanup_aer_uncorrect_error_status(pdev);
3053 if (rc) {
3054 netif_err(efx, hw, efx->net_dev,
3055 "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc);
3056 /* Non-fatal error. Continue. */
3057 }
3058
3059 return status;
3060}
3061
3062/* Perform the actual reset and resume I/O operations. */
3063static void efx_io_resume(struct pci_dev *pdev)
3064{
3065 struct efx_nic *efx = pci_get_drvdata(pdev);
3066 int rc;
3067
3068 rtnl_lock();
3069
3070 if (efx->state == STATE_DISABLED)
3071 goto out;
3072
3073 rc = efx_reset(efx, RESET_TYPE_ALL);
3074 if (rc) {
3075 netif_err(efx, hw, efx->net_dev,
3076 "efx_reset failed after PCI error (%d)\n", rc);
3077 } else {
3078 efx->state = STATE_READY;
3079 netif_dbg(efx, hw, efx->net_dev,
3080 "Done resetting and resuming IO after PCI error.\n");
3081 }
3082
3083out:
3084 rtnl_unlock();
3085}
3086
3087/* For simplicity and reliability, we always require a slot reset and try to
3088 * reset the hardware when a pci error affecting the device is detected.
3089 * We leave both the link_reset and mmio_enabled callback unimplemented:
3090 * with our request for slot reset the mmio_enabled callback will never be
3091 * called, and the link_reset callback is not used by AER or EEH mechanisms.
3092 */
3093static struct pci_error_handlers efx_err_handlers = {
3094 .error_detected = efx_io_error_detected,
3095 .slot_reset = efx_io_slot_reset,
3096 .resume = efx_io_resume,
3097};
3098
Ben Hutchings8ceee662008-04-27 12:55:59 +01003099static struct pci_driver efx_pci_driver = {
Ben Hutchingsc5d5f5f2010-06-23 11:30:26 +00003100 .name = KBUILD_MODNAME,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003101 .id_table = efx_pci_table,
3102 .probe = efx_pci_probe,
3103 .remove = efx_pci_remove,
Ben Hutchings89c758f2009-11-29 03:43:07 +00003104 .driver.pm = &efx_pm_ops,
Alexandre Rames626950d2013-01-14 17:20:22 +00003105 .err_handler = &efx_err_handlers,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003106};
3107
3108/**************************************************************************
3109 *
3110 * Kernel module interface
3111 *
3112 *************************************************************************/
3113
3114module_param(interrupt_mode, uint, 0444);
3115MODULE_PARM_DESC(interrupt_mode,
3116 "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)");
3117
3118static int __init efx_init_module(void)
3119{
3120 int rc;
3121
3122 printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n");
3123
3124 rc = register_netdevice_notifier(&efx_netdev_notifier);
3125 if (rc)
3126 goto err_notifier;
3127
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003128 rc = efx_init_sriov();
3129 if (rc)
3130 goto err_sriov;
3131
Steve Hodgson1ab00622008-12-12 21:33:02 -08003132 reset_workqueue = create_singlethread_workqueue("sfc_reset");
3133 if (!reset_workqueue) {
3134 rc = -ENOMEM;
3135 goto err_reset;
3136 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003137
3138 rc = pci_register_driver(&efx_pci_driver);
3139 if (rc < 0)
3140 goto err_pci;
3141
3142 return 0;
3143
3144 err_pci:
Steve Hodgson1ab00622008-12-12 21:33:02 -08003145 destroy_workqueue(reset_workqueue);
3146 err_reset:
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003147 efx_fini_sriov();
3148 err_sriov:
Ben Hutchings8ceee662008-04-27 12:55:59 +01003149 unregister_netdevice_notifier(&efx_netdev_notifier);
3150 err_notifier:
3151 return rc;
3152}
3153
3154static void __exit efx_exit_module(void)
3155{
3156 printk(KERN_INFO "Solarflare NET driver unloading\n");
3157
3158 pci_unregister_driver(&efx_pci_driver);
Steve Hodgson1ab00622008-12-12 21:33:02 -08003159 destroy_workqueue(reset_workqueue);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00003160 efx_fini_sriov();
Ben Hutchings8ceee662008-04-27 12:55:59 +01003161 unregister_netdevice_notifier(&efx_netdev_notifier);
3162
3163}
3164
3165module_init(efx_init_module);
3166module_exit(efx_exit_module);
3167
Ben Hutchings906bb262009-11-29 15:16:19 +00003168MODULE_AUTHOR("Solarflare Communications and "
3169 "Michael Brown <mbrown@fensystems.co.uk>");
Ben Hutchings8ceee662008-04-27 12:55:59 +01003170MODULE_DESCRIPTION("Solarflare Communications network driver");
3171MODULE_LICENSE("GPL");
3172MODULE_DEVICE_TABLE(pci, efx_pci_table);