Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1 | /**************************************************************************** |
Ben Hutchings | f7a6d2c | 2013-08-29 23:32:48 +0100 | [diff] [blame] | 2 | * Driver for Solarflare network controllers and boards |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3 | * Copyright 2005-2006 Fen Systems Ltd. |
Ben Hutchings | f7a6d2c | 2013-08-29 23:32:48 +0100 | [diff] [blame] | 4 | * Copyright 2005-2013 Solarflare Communications Inc. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5 | * |
| 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 20 | #include <linux/ethtool.h> |
Ben Hutchings | aa6ef27 | 2008-07-18 19:03:10 +0100 | [diff] [blame] | 21 | #include <linux/topology.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/gfp.h> |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 23 | #include <linux/aer.h> |
Alexandre Rames | b28405b | 2013-03-21 16:41:43 +0000 | [diff] [blame] | 24 | #include <linux/interrupt.h> |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 25 | #include "net_driver.h" |
Jon Cooper | e5fbd97 | 2017-02-08 16:52:10 +0000 | [diff] [blame] | 26 | #include <net/gre.h> |
| 27 | #include <net/udp_tunnel.h> |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 28 | #include "efx.h" |
Ben Hutchings | 744093c | 2009-11-29 15:12:08 +0000 | [diff] [blame] | 29 | #include "nic.h" |
Edward Cree | 7182744 | 2017-12-18 16:56:19 +0000 | [diff] [blame] | 30 | #include "io.h" |
Ben Hutchings | dd40781 | 2012-02-28 23:40:21 +0000 | [diff] [blame] | 31 | #include "selftest.h" |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 32 | #include "sriov.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 33 | |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 34 | #include "mcdi.h" |
Jon Cooper | e5fbd97 | 2017-02-08 16:52:10 +0000 | [diff] [blame] | 35 | #include "mcdi_pcol.h" |
Steve Hodgson | fd371e3 | 2010-06-01 11:17:51 +0000 | [diff] [blame] | 36 | #include "workarounds.h" |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 37 | |
Ben Hutchings | c459302 | 2009-11-23 16:08:17 +0000 | [diff] [blame] | 38 | /************************************************************************** |
| 39 | * |
| 40 | * Type name strings |
| 41 | * |
| 42 | ************************************************************************** |
| 43 | */ |
| 44 | |
| 45 | /* Loopback mode names (see LOOPBACK_MODE()) */ |
| 46 | const unsigned int efx_loopback_mode_max = LOOPBACK_MAX; |
Ben Hutchings | 18e83e4 | 2012-01-05 19:05:20 +0000 | [diff] [blame] | 47 | const char *const efx_loopback_mode_names[] = { |
Ben Hutchings | c459302 | 2009-11-23 16:08:17 +0000 | [diff] [blame] | 48 | [LOOPBACK_NONE] = "NONE", |
Ben Hutchings | e58f69f | 2009-11-29 15:08:41 +0000 | [diff] [blame] | 49 | [LOOPBACK_DATA] = "DATAPATH", |
Ben Hutchings | c459302 | 2009-11-23 16:08:17 +0000 | [diff] [blame] | 50 | [LOOPBACK_GMAC] = "GMAC", |
| 51 | [LOOPBACK_XGMII] = "XGMII", |
| 52 | [LOOPBACK_XGXS] = "XGXS", |
Ben Hutchings | 9c636ba | 2012-01-05 17:19:45 +0000 | [diff] [blame] | 53 | [LOOPBACK_XAUI] = "XAUI", |
| 54 | [LOOPBACK_GMII] = "GMII", |
| 55 | [LOOPBACK_SGMII] = "SGMII", |
Ben Hutchings | e58f69f | 2009-11-29 15:08:41 +0000 | [diff] [blame] | 56 | [LOOPBACK_XGBR] = "XGBR", |
| 57 | [LOOPBACK_XFI] = "XFI", |
| 58 | [LOOPBACK_XAUI_FAR] = "XAUI_FAR", |
| 59 | [LOOPBACK_GMII_FAR] = "GMII_FAR", |
| 60 | [LOOPBACK_SGMII_FAR] = "SGMII_FAR", |
| 61 | [LOOPBACK_XFI_FAR] = "XFI_FAR", |
Ben Hutchings | c459302 | 2009-11-23 16:08:17 +0000 | [diff] [blame] | 62 | [LOOPBACK_GPHY] = "GPHY", |
| 63 | [LOOPBACK_PHYXS] = "PHYXS", |
Ben Hutchings | 9c636ba | 2012-01-05 17:19:45 +0000 | [diff] [blame] | 64 | [LOOPBACK_PCS] = "PCS", |
| 65 | [LOOPBACK_PMAPMD] = "PMA/PMD", |
Ben Hutchings | e58f69f | 2009-11-29 15:08:41 +0000 | [diff] [blame] | 66 | [LOOPBACK_XPORT] = "XPORT", |
| 67 | [LOOPBACK_XGMII_WS] = "XGMII_WS", |
Ben Hutchings | 9c636ba | 2012-01-05 17:19:45 +0000 | [diff] [blame] | 68 | [LOOPBACK_XAUI_WS] = "XAUI_WS", |
Ben Hutchings | e58f69f | 2009-11-29 15:08:41 +0000 | [diff] [blame] | 69 | [LOOPBACK_XAUI_WS_FAR] = "XAUI_WS_FAR", |
| 70 | [LOOPBACK_XAUI_WS_NEAR] = "XAUI_WS_NEAR", |
Ben Hutchings | 9c636ba | 2012-01-05 17:19:45 +0000 | [diff] [blame] | 71 | [LOOPBACK_GMII_WS] = "GMII_WS", |
Ben Hutchings | e58f69f | 2009-11-29 15:08:41 +0000 | [diff] [blame] | 72 | [LOOPBACK_XFI_WS] = "XFI_WS", |
| 73 | [LOOPBACK_XFI_WS_FAR] = "XFI_WS_FAR", |
Ben Hutchings | 9c636ba | 2012-01-05 17:19:45 +0000 | [diff] [blame] | 74 | [LOOPBACK_PHYXS_WS] = "PHYXS_WS", |
Ben Hutchings | c459302 | 2009-11-23 16:08:17 +0000 | [diff] [blame] | 75 | }; |
| 76 | |
Ben Hutchings | c459302 | 2009-11-23 16:08:17 +0000 | [diff] [blame] | 77 | const unsigned int efx_reset_type_max = RESET_TYPE_MAX; |
Ben Hutchings | 18e83e4 | 2012-01-05 19:05:20 +0000 | [diff] [blame] | 78 | const char *const efx_reset_type_names[] = { |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 79 | [RESET_TYPE_INVISIBLE] = "INVISIBLE", |
| 80 | [RESET_TYPE_ALL] = "ALL", |
| 81 | [RESET_TYPE_RECOVER_OR_ALL] = "RECOVER_OR_ALL", |
| 82 | [RESET_TYPE_WORLD] = "WORLD", |
| 83 | [RESET_TYPE_RECOVER_OR_DISABLE] = "RECOVER_OR_DISABLE", |
Jon Cooper | 087e902 | 2015-05-20 11:11:35 +0100 | [diff] [blame] | 84 | [RESET_TYPE_DATAPATH] = "DATAPATH", |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 85 | [RESET_TYPE_MC_BIST] = "MC_BIST", |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 86 | [RESET_TYPE_DISABLE] = "DISABLE", |
| 87 | [RESET_TYPE_TX_WATCHDOG] = "TX_WATCHDOG", |
| 88 | [RESET_TYPE_INT_ERROR] = "INT_ERROR", |
Alexandre Rames | 3de82b9 | 2013-06-13 11:36:15 +0100 | [diff] [blame] | 89 | [RESET_TYPE_DMA_ERROR] = "DMA_ERROR", |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 90 | [RESET_TYPE_TX_SKIP] = "TX_SKIP", |
| 91 | [RESET_TYPE_MC_FAILURE] = "MC_FAILURE", |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 92 | [RESET_TYPE_MCDI_TIMEOUT] = "MCDI_TIMEOUT (FLR)", |
Ben Hutchings | c459302 | 2009-11-23 16:08:17 +0000 | [diff] [blame] | 93 | }; |
| 94 | |
Jon Cooper | e5fbd97 | 2017-02-08 16:52:10 +0000 | [diff] [blame] | 95 | /* UDP tunnel type names */ |
| 96 | static const char *const efx_udp_tunnel_type_names[] = { |
| 97 | [TUNNEL_ENCAP_UDP_PORT_ENTRY_VXLAN] = "vxlan", |
| 98 | [TUNNEL_ENCAP_UDP_PORT_ENTRY_GENEVE] = "geneve", |
| 99 | }; |
| 100 | |
| 101 | void efx_get_udp_tunnel_type_name(u16 type, char *buf, size_t buflen) |
| 102 | { |
| 103 | if (type < ARRAY_SIZE(efx_udp_tunnel_type_names) && |
| 104 | efx_udp_tunnel_type_names[type] != NULL) |
| 105 | snprintf(buf, buflen, "%s", efx_udp_tunnel_type_names[type]); |
| 106 | else |
| 107 | snprintf(buf, buflen, "type %d", type); |
| 108 | } |
| 109 | |
Steve Hodgson | 1ab0062 | 2008-12-12 21:33:02 -0800 | [diff] [blame] | 110 | /* Reset workqueue. If any NIC has a hardware failure then a reset will be |
| 111 | * queued onto this work queue. This is not a per-nic work queue, because |
| 112 | * efx_reset_work() acquires the rtnl lock, so resets are naturally serialised. |
| 113 | */ |
| 114 | static struct workqueue_struct *reset_workqueue; |
| 115 | |
Jon Cooper | 74cd60a | 2013-09-16 14:18:51 +0100 | [diff] [blame] | 116 | /* How often and how many times to poll for a reset while waiting for a |
| 117 | * BIST that another function started to complete. |
| 118 | */ |
| 119 | #define BIST_WAIT_DELAY_MS 100 |
| 120 | #define BIST_WAIT_DELAY_COUNT 100 |
| 121 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 122 | /************************************************************************** |
| 123 | * |
| 124 | * Configurable values |
| 125 | * |
| 126 | *************************************************************************/ |
| 127 | |
| 128 | /* |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 129 | * Use separate channels for TX and RX events |
| 130 | * |
Neil Turton | 28b581a | 2008-12-12 21:41:06 -0800 | [diff] [blame] | 131 | * Set this to 1 to use separate channels for TX and RX. It allows us |
| 132 | * to control interrupt affinity separately for TX and RX. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 133 | * |
Neil Turton | 28b581a | 2008-12-12 21:41:06 -0800 | [diff] [blame] | 134 | * This is only used in MSI-X interrupt mode |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 135 | */ |
Shradha Shah | b0fbdae | 2015-08-28 10:55:42 +0100 | [diff] [blame] | 136 | bool efx_separate_tx_channels; |
| 137 | module_param(efx_separate_tx_channels, bool, 0444); |
| 138 | MODULE_PARM_DESC(efx_separate_tx_channels, |
Neil Turton | 28b581a | 2008-12-12 21:41:06 -0800 | [diff] [blame] | 139 | "Use separate channels for TX and RX"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 140 | |
| 141 | /* This is the weight assigned to each of the (per-channel) virtual |
| 142 | * NAPI devices. |
| 143 | */ |
| 144 | static int napi_weight = 64; |
| 145 | |
| 146 | /* This is the time (in jiffies) between invocations of the hardware |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 147 | * monitor. |
| 148 | * On Falcon-based NICs, this will: |
Ben Hutchings | e254c27 | 2010-09-20 08:44:10 +0000 | [diff] [blame] | 149 | * - Check the on-board hardware monitor; |
| 150 | * - Poll the link state and reconfigure the hardware as necessary. |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 151 | * On Siena-based NICs for power systems with EEH support, this will give EEH a |
| 152 | * chance to start. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 153 | */ |
stephen hemminger | d215697 | 2010-10-18 05:27:31 +0000 | [diff] [blame] | 154 | static unsigned int efx_monitor_interval = 1 * HZ; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 155 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 156 | /* Initial interrupt moderation settings. They can be modified after |
| 157 | * module load with ethtool. |
| 158 | * |
| 159 | * The default for RX should strike a balance between increasing the |
| 160 | * round-trip latency and reducing overhead. |
| 161 | */ |
| 162 | static unsigned int rx_irq_mod_usec = 60; |
| 163 | |
| 164 | /* Initial interrupt moderation settings. They can be modified after |
| 165 | * module load with ethtool. |
| 166 | * |
| 167 | * This default is chosen to ensure that a 10G link does not go idle |
| 168 | * while a TX queue is stopped after it has become full. A queue is |
| 169 | * restarted when it drops below half full. The time this takes (assuming |
| 170 | * worst case 3 descriptors per packet and 1024 descriptors) is |
| 171 | * 512 / 3 * 1.2 = 205 usec. |
| 172 | */ |
| 173 | static unsigned int tx_irq_mod_usec = 150; |
| 174 | |
| 175 | /* This is the first interrupt mode to try out of: |
| 176 | * 0 => MSI-X |
| 177 | * 1 => MSI |
| 178 | * 2 => legacy |
| 179 | */ |
| 180 | static unsigned int interrupt_mode; |
| 181 | |
| 182 | /* This is the requested number of CPUs to use for Receive-Side Scaling (RSS), |
| 183 | * i.e. the number of CPUs among which we may distribute simultaneous |
| 184 | * interrupt handling. |
| 185 | * |
| 186 | * Cards without MSI-X will only target one CPU via legacy or MSI interrupt. |
Ben Hutchings | cdb08f8 | 2011-12-20 01:08:05 +0000 | [diff] [blame] | 187 | * The default (0) means to assign an interrupt to each core. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 188 | */ |
| 189 | static unsigned int rss_cpus; |
| 190 | module_param(rss_cpus, uint, 0444); |
| 191 | MODULE_PARM_DESC(rss_cpus, "Number of CPUs to use for Receive-Side Scaling"); |
| 192 | |
Ben Hutchings | b9cc977 | 2012-11-28 04:12:41 +0000 | [diff] [blame] | 193 | static bool phy_flash_cfg; |
| 194 | module_param(phy_flash_cfg, bool, 0644); |
Ben Hutchings | 84ae48f | 2008-12-12 21:34:54 -0800 | [diff] [blame] | 195 | MODULE_PARM_DESC(phy_flash_cfg, "Set PHYs into reflash mode initially"); |
| 196 | |
Ben Hutchings | e7bed9c | 2012-02-28 18:44:13 +0000 | [diff] [blame] | 197 | static unsigned irq_adapt_low_thresh = 8000; |
Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 198 | module_param(irq_adapt_low_thresh, uint, 0644); |
| 199 | MODULE_PARM_DESC(irq_adapt_low_thresh, |
| 200 | "Threshold score for reducing IRQ moderation"); |
| 201 | |
Ben Hutchings | e7bed9c | 2012-02-28 18:44:13 +0000 | [diff] [blame] | 202 | static unsigned irq_adapt_high_thresh = 16000; |
Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 203 | module_param(irq_adapt_high_thresh, uint, 0644); |
| 204 | MODULE_PARM_DESC(irq_adapt_high_thresh, |
| 205 | "Threshold score for increasing IRQ moderation"); |
| 206 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 207 | static unsigned debug = (NETIF_MSG_DRV | NETIF_MSG_PROBE | |
| 208 | NETIF_MSG_LINK | NETIF_MSG_IFDOWN | |
| 209 | NETIF_MSG_IFUP | NETIF_MSG_RX_ERR | |
| 210 | NETIF_MSG_TX_ERR | NETIF_MSG_HW); |
| 211 | module_param(debug, uint, 0); |
| 212 | MODULE_PARM_DESC(debug, "Bitmapped debugging message enable value"); |
| 213 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 214 | /************************************************************************** |
| 215 | * |
| 216 | * Utility functions and prototypes |
| 217 | * |
| 218 | *************************************************************************/ |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 219 | |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 220 | static int efx_soft_enable_interrupts(struct efx_nic *efx); |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 221 | static void efx_soft_disable_interrupts(struct efx_nic *efx); |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 222 | static void efx_remove_channel(struct efx_channel *channel); |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 223 | static void efx_remove_channels(struct efx_nic *efx); |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 224 | static const struct efx_channel_type efx_default_channel_type; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 225 | static void efx_remove_port(struct efx_nic *efx); |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 226 | static void efx_init_napi_channel(struct efx_channel *channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 227 | static void efx_fini_napi(struct efx_nic *efx); |
Ben Hutchings | e8f1499 | 2010-12-07 19:47:34 +0000 | [diff] [blame] | 228 | static void efx_fini_napi_channel(struct efx_channel *channel); |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 229 | static void efx_fini_struct(struct efx_nic *efx); |
| 230 | static void efx_start_all(struct efx_nic *efx); |
| 231 | static void efx_stop_all(struct efx_nic *efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 232 | |
| 233 | #define EFX_ASSERT_RESET_SERIALISED(efx) \ |
| 234 | do { \ |
Ben Hutchings | f16aeea | 2012-07-27 19:31:16 +0100 | [diff] [blame] | 235 | if ((efx->state == STATE_READY) || \ |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 236 | (efx->state == STATE_RECOVERY) || \ |
Ben Hutchings | 332c1ce | 2009-11-25 16:08:52 +0000 | [diff] [blame] | 237 | (efx->state == STATE_DISABLED)) \ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 238 | ASSERT_RTNL(); \ |
| 239 | } while (0) |
| 240 | |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 241 | static int efx_check_disabled(struct efx_nic *efx) |
| 242 | { |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 243 | if (efx->state == STATE_DISABLED || efx->state == STATE_RECOVERY) { |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 244 | netif_err(efx, drv, efx->net_dev, |
| 245 | "device is disabled due to earlier errors\n"); |
| 246 | return -EIO; |
| 247 | } |
| 248 | return 0; |
| 249 | } |
| 250 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 251 | /************************************************************************** |
| 252 | * |
| 253 | * Event queue processing |
| 254 | * |
| 255 | *************************************************************************/ |
| 256 | |
| 257 | /* Process channel's event queue |
| 258 | * |
| 259 | * This function is responsible for processing the event queue of a |
| 260 | * single channel. The caller must guarantee that this function will |
| 261 | * never be concurrently called more than once on the same channel, |
| 262 | * though different channels may be being processed concurrently. |
| 263 | */ |
Ben Hutchings | fa236e1 | 2010-04-28 09:29:42 +0000 | [diff] [blame] | 264 | static int efx_process_channel(struct efx_channel *channel, int budget) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 265 | { |
Peter Dunning | c936835 | 2015-07-08 10:05:10 +0100 | [diff] [blame] | 266 | struct efx_tx_queue *tx_queue; |
Ben Hutchings | fa236e1 | 2010-04-28 09:29:42 +0000 | [diff] [blame] | 267 | int spent; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 268 | |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 269 | if (unlikely(!channel->enabled)) |
Ben Hutchings | 42cbe2d | 2008-09-01 12:48:08 +0100 | [diff] [blame] | 270 | return 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 271 | |
Peter Dunning | c936835 | 2015-07-08 10:05:10 +0100 | [diff] [blame] | 272 | efx_for_each_channel_tx_queue(tx_queue, channel) { |
| 273 | tx_queue->pkts_compl = 0; |
| 274 | tx_queue->bytes_compl = 0; |
| 275 | } |
| 276 | |
Ben Hutchings | fa236e1 | 2010-04-28 09:29:42 +0000 | [diff] [blame] | 277 | spent = efx_nic_process_eventq(channel, budget); |
Ben Hutchings | d9ab700 | 2012-02-13 23:29:16 +0000 | [diff] [blame] | 278 | if (spent && efx_channel_has_rx_queue(channel)) { |
| 279 | struct efx_rx_queue *rx_queue = |
| 280 | efx_channel_get_rx_queue(channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 281 | |
Ben Hutchings | ff734ef | 2013-01-29 23:33:14 +0000 | [diff] [blame] | 282 | efx_rx_flush_packet(channel); |
Jon Cooper | cce2879 | 2013-10-02 11:04:14 +0100 | [diff] [blame] | 283 | efx_fast_push_rx_descriptors(rx_queue, true); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 284 | } |
| 285 | |
Peter Dunning | c936835 | 2015-07-08 10:05:10 +0100 | [diff] [blame] | 286 | /* Update BQL */ |
| 287 | efx_for_each_channel_tx_queue(tx_queue, channel) { |
| 288 | if (tx_queue->bytes_compl) { |
| 289 | netdev_tx_completed_queue(tx_queue->core_txq, |
| 290 | tx_queue->pkts_compl, tx_queue->bytes_compl); |
| 291 | } |
| 292 | } |
| 293 | |
Ben Hutchings | fa236e1 | 2010-04-28 09:29:42 +0000 | [diff] [blame] | 294 | return spent; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 295 | } |
| 296 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 297 | /* NAPI poll handler |
| 298 | * |
| 299 | * NAPI guarantees serialisation of polls of the same device, which |
| 300 | * provides the guarantee required by efx_process_channel(). |
| 301 | */ |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 302 | static void efx_update_irq_mod(struct efx_nic *efx, struct efx_channel *channel) |
| 303 | { |
| 304 | int step = efx->irq_mod_step_us; |
| 305 | |
| 306 | if (channel->irq_mod_score < irq_adapt_low_thresh) { |
| 307 | if (channel->irq_moderation_us > step) { |
| 308 | channel->irq_moderation_us -= step; |
| 309 | efx->type->push_irq_moderation(channel); |
| 310 | } |
| 311 | } else if (channel->irq_mod_score > irq_adapt_high_thresh) { |
| 312 | if (channel->irq_moderation_us < |
| 313 | efx->irq_rx_moderation_us) { |
| 314 | channel->irq_moderation_us += step; |
| 315 | efx->type->push_irq_moderation(channel); |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | channel->irq_count = 0; |
| 320 | channel->irq_mod_score = 0; |
| 321 | } |
| 322 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 323 | static int efx_poll(struct napi_struct *napi, int budget) |
| 324 | { |
| 325 | struct efx_channel *channel = |
| 326 | container_of(napi, struct efx_channel, napi_str); |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 327 | struct efx_nic *efx = channel->efx; |
Ben Hutchings | fa236e1 | 2010-04-28 09:29:42 +0000 | [diff] [blame] | 328 | int spent; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 329 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 330 | netif_vdbg(efx, intr, efx->net_dev, |
| 331 | "channel %d NAPI poll executing on CPU %d\n", |
| 332 | channel->channel, raw_smp_processor_id()); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 333 | |
Ben Hutchings | fa236e1 | 2010-04-28 09:29:42 +0000 | [diff] [blame] | 334 | spent = efx_process_channel(channel, budget); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 335 | |
Ben Hutchings | fa236e1 | 2010-04-28 09:29:42 +0000 | [diff] [blame] | 336 | if (spent < budget) { |
Ben Hutchings | 9d9a697 | 2012-02-10 23:01:48 +0000 | [diff] [blame] | 337 | if (efx_channel_has_rx_queue(channel) && |
Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 338 | efx->irq_rx_adaptive && |
| 339 | unlikely(++channel->irq_count == 1000)) { |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 340 | efx_update_irq_mod(efx, channel); |
Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 341 | } |
| 342 | |
Edward Cree | 3af0f34 | 2018-03-27 17:41:59 +0100 | [diff] [blame] | 343 | #ifdef CONFIG_RFS_ACCEL |
| 344 | /* Perhaps expire some ARFS filters */ |
| 345 | schedule_work(&channel->filter_work); |
| 346 | #endif |
Ben Hutchings | 64d8ad6 | 2011-01-05 00:50:41 +0000 | [diff] [blame] | 347 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 348 | /* There is no race here; although napi_disable() will |
Ben Hutchings | 288379f | 2009-01-19 16:43:59 -0800 | [diff] [blame] | 349 | * only wait for napi_complete(), this isn't a problem |
Ben Hutchings | 514bedb | 2012-10-05 19:30:16 +0100 | [diff] [blame] | 350 | * since efx_nic_eventq_read_ack() will have no effect if |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 351 | * interrupts have already been disabled. |
| 352 | */ |
Bert Kenward | f820c0a | 2017-02-06 16:50:55 +0000 | [diff] [blame] | 353 | if (napi_complete_done(napi, spent)) |
| 354 | efx_nic_eventq_read_ack(channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 355 | } |
| 356 | |
Ben Hutchings | fa236e1 | 2010-04-28 09:29:42 +0000 | [diff] [blame] | 357 | return spent; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 358 | } |
| 359 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 360 | /* Create event queue |
| 361 | * Event queue memory allocations are done only once. If the channel |
| 362 | * is reset, the memory buffer will be reused; this guards against |
| 363 | * errors during channel reset and also simplifies interrupt handling. |
| 364 | */ |
| 365 | static int efx_probe_eventq(struct efx_channel *channel) |
| 366 | { |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 367 | struct efx_nic *efx = channel->efx; |
| 368 | unsigned long entries; |
| 369 | |
Ben Hutchings | 86ee530 | 2012-01-09 19:51:22 +0000 | [diff] [blame] | 370 | netif_dbg(efx, probe, efx->net_dev, |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 371 | "chan %d create event queue\n", channel->channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 372 | |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 373 | /* Build an event queue with room for one event per tx and rx buffer, |
| 374 | * plus some extra for link state events and MCDI completions. */ |
| 375 | entries = roundup_pow_of_two(efx->rxq_entries + efx->txq_entries + 128); |
Edward Cree | e01b16a | 2016-12-02 15:51:33 +0000 | [diff] [blame] | 376 | EFX_WARN_ON_PARANOID(entries > EFX_MAX_EVQ_SIZE); |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 377 | channel->eventq_mask = max(entries, EFX_MIN_EVQ_SIZE) - 1; |
| 378 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 379 | return efx_nic_probe_eventq(channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | /* Prepare channel's event queue */ |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 383 | static int efx_init_eventq(struct efx_channel *channel) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 384 | { |
Ben Hutchings | 15acb1c | 2013-05-01 16:30:17 +0100 | [diff] [blame] | 385 | struct efx_nic *efx = channel->efx; |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 386 | int rc; |
| 387 | |
| 388 | EFX_WARN_ON_PARANOID(channel->eventq_init); |
| 389 | |
Ben Hutchings | 15acb1c | 2013-05-01 16:30:17 +0100 | [diff] [blame] | 390 | netif_dbg(efx, drv, efx->net_dev, |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 391 | "chan %d init event queue\n", channel->channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 392 | |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 393 | rc = efx_nic_init_eventq(channel); |
| 394 | if (rc == 0) { |
Ben Hutchings | 15acb1c | 2013-05-01 16:30:17 +0100 | [diff] [blame] | 395 | efx->type->push_irq_moderation(channel); |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 396 | channel->eventq_read_ptr = 0; |
| 397 | channel->eventq_init = true; |
| 398 | } |
| 399 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 400 | } |
| 401 | |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 402 | /* Enable event queue processing and NAPI */ |
Alexandre Rames | 3676326 | 2014-07-22 14:03:25 +0100 | [diff] [blame] | 403 | void efx_start_eventq(struct efx_channel *channel) |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 404 | { |
| 405 | netif_dbg(channel->efx, ifup, channel->efx->net_dev, |
| 406 | "chan %d start event queue\n", channel->channel); |
| 407 | |
Ben Hutchings | 514bedb | 2012-10-05 19:30:16 +0100 | [diff] [blame] | 408 | /* Make sure the NAPI handler sees the enabled flag set */ |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 409 | channel->enabled = true; |
| 410 | smp_wmb(); |
| 411 | |
| 412 | napi_enable(&channel->napi_str); |
| 413 | efx_nic_eventq_read_ack(channel); |
| 414 | } |
| 415 | |
| 416 | /* Disable event queue processing and NAPI */ |
Alexandre Rames | 3676326 | 2014-07-22 14:03:25 +0100 | [diff] [blame] | 417 | void efx_stop_eventq(struct efx_channel *channel) |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 418 | { |
| 419 | if (!channel->enabled) |
| 420 | return; |
| 421 | |
| 422 | napi_disable(&channel->napi_str); |
| 423 | channel->enabled = false; |
| 424 | } |
| 425 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 426 | static void efx_fini_eventq(struct efx_channel *channel) |
| 427 | { |
Ben Hutchings | be3fc09 | 2012-10-08 18:21:51 +0100 | [diff] [blame] | 428 | if (!channel->eventq_init) |
| 429 | return; |
| 430 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 431 | netif_dbg(channel->efx, drv, channel->efx->net_dev, |
| 432 | "chan %d fini event queue\n", channel->channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 433 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 434 | efx_nic_fini_eventq(channel); |
Ben Hutchings | be3fc09 | 2012-10-08 18:21:51 +0100 | [diff] [blame] | 435 | channel->eventq_init = false; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | static void efx_remove_eventq(struct efx_channel *channel) |
| 439 | { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 440 | netif_dbg(channel->efx, drv, channel->efx->net_dev, |
| 441 | "chan %d remove event queue\n", channel->channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 442 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 443 | efx_nic_remove_eventq(channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | /************************************************************************** |
| 447 | * |
| 448 | * Channel handling |
| 449 | * |
| 450 | *************************************************************************/ |
| 451 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 452 | /* Allocate and initialise a channel structure. */ |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 453 | static struct efx_channel * |
| 454 | efx_alloc_channel(struct efx_nic *efx, int i, struct efx_channel *old_channel) |
| 455 | { |
| 456 | struct efx_channel *channel; |
| 457 | struct efx_rx_queue *rx_queue; |
| 458 | struct efx_tx_queue *tx_queue; |
| 459 | int j; |
| 460 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 461 | channel = kzalloc(sizeof(*channel), GFP_KERNEL); |
| 462 | if (!channel) |
| 463 | return NULL; |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 464 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 465 | channel->efx = efx; |
| 466 | channel->channel = i; |
| 467 | channel->type = &efx_default_channel_type; |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 468 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 469 | for (j = 0; j < EFX_TXQ_TYPES; j++) { |
| 470 | tx_queue = &channel->tx_queue[j]; |
| 471 | tx_queue->efx = efx; |
| 472 | tx_queue->queue = i * EFX_TXQ_TYPES + j; |
| 473 | tx_queue->channel = channel; |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Edward Cree | 3af0f34 | 2018-03-27 17:41:59 +0100 | [diff] [blame] | 476 | #ifdef CONFIG_RFS_ACCEL |
| 477 | INIT_WORK(&channel->filter_work, efx_filter_rfs_expire); |
| 478 | #endif |
| 479 | |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 480 | rx_queue = &channel->rx_queue; |
| 481 | rx_queue->efx = efx; |
Kees Cook | 7aa1402 | 2017-10-24 01:45:59 -0700 | [diff] [blame] | 482 | timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 483 | |
| 484 | return channel; |
| 485 | } |
| 486 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 487 | /* Allocate and initialise a channel structure, copying parameters |
| 488 | * (but not resources) from an old channel structure. |
| 489 | */ |
| 490 | static struct efx_channel * |
| 491 | efx_copy_channel(const struct efx_channel *old_channel) |
| 492 | { |
| 493 | struct efx_channel *channel; |
| 494 | struct efx_rx_queue *rx_queue; |
| 495 | struct efx_tx_queue *tx_queue; |
| 496 | int j; |
| 497 | |
| 498 | channel = kmalloc(sizeof(*channel), GFP_KERNEL); |
| 499 | if (!channel) |
| 500 | return NULL; |
| 501 | |
| 502 | *channel = *old_channel; |
| 503 | |
| 504 | channel->napi_dev = NULL; |
Bert Kenward | 46d054f | 2016-11-11 15:56:51 +0000 | [diff] [blame] | 505 | INIT_HLIST_NODE(&channel->napi_str.napi_hash_node); |
| 506 | channel->napi_str.napi_id = 0; |
| 507 | channel->napi_str.state = 0; |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 508 | memset(&channel->eventq, 0, sizeof(channel->eventq)); |
| 509 | |
| 510 | for (j = 0; j < EFX_TXQ_TYPES; j++) { |
| 511 | tx_queue = &channel->tx_queue[j]; |
| 512 | if (tx_queue->channel) |
| 513 | tx_queue->channel = channel; |
| 514 | tx_queue->buffer = NULL; |
| 515 | memset(&tx_queue->txd, 0, sizeof(tx_queue->txd)); |
| 516 | } |
| 517 | |
| 518 | rx_queue = &channel->rx_queue; |
| 519 | rx_queue->buffer = NULL; |
| 520 | memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd)); |
Kees Cook | 7aa1402 | 2017-10-24 01:45:59 -0700 | [diff] [blame] | 521 | timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); |
Edward Cree | 3af0f34 | 2018-03-27 17:41:59 +0100 | [diff] [blame] | 522 | #ifdef CONFIG_RFS_ACCEL |
| 523 | INIT_WORK(&channel->filter_work, efx_filter_rfs_expire); |
| 524 | #endif |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 525 | |
| 526 | return channel; |
| 527 | } |
| 528 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 529 | static int efx_probe_channel(struct efx_channel *channel) |
| 530 | { |
| 531 | struct efx_tx_queue *tx_queue; |
| 532 | struct efx_rx_queue *rx_queue; |
| 533 | int rc; |
| 534 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 535 | netif_dbg(channel->efx, probe, channel->efx->net_dev, |
| 536 | "creating channel %d\n", channel->channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 537 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 538 | rc = channel->type->pre_probe(channel); |
| 539 | if (rc) |
| 540 | goto fail; |
| 541 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 542 | rc = efx_probe_eventq(channel); |
| 543 | if (rc) |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 544 | goto fail; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 545 | |
| 546 | efx_for_each_channel_tx_queue(tx_queue, channel) { |
| 547 | rc = efx_probe_tx_queue(tx_queue); |
| 548 | if (rc) |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 549 | goto fail; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | efx_for_each_channel_rx_queue(rx_queue, channel) { |
| 553 | rc = efx_probe_rx_queue(rx_queue); |
| 554 | if (rc) |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 555 | goto fail; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 556 | } |
| 557 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 558 | return 0; |
| 559 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 560 | fail: |
| 561 | efx_remove_channel(channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 562 | return rc; |
| 563 | } |
| 564 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 565 | static void |
| 566 | efx_get_channel_name(struct efx_channel *channel, char *buf, size_t len) |
| 567 | { |
| 568 | struct efx_nic *efx = channel->efx; |
| 569 | const char *type; |
| 570 | int number; |
| 571 | |
| 572 | number = channel->channel; |
| 573 | if (efx->tx_channel_offset == 0) { |
| 574 | type = ""; |
| 575 | } else if (channel->channel < efx->tx_channel_offset) { |
| 576 | type = "-rx"; |
| 577 | } else { |
| 578 | type = "-tx"; |
| 579 | number -= efx->tx_channel_offset; |
| 580 | } |
| 581 | snprintf(buf, len, "%s%s-%d", efx->name, type, number); |
| 582 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 583 | |
Ben Hutchings | 56536e9 | 2008-12-12 21:37:02 -0800 | [diff] [blame] | 584 | static void efx_set_channel_names(struct efx_nic *efx) |
| 585 | { |
| 586 | struct efx_channel *channel; |
Ben Hutchings | 56536e9 | 2008-12-12 21:37:02 -0800 | [diff] [blame] | 587 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 588 | efx_for_each_channel(channel, efx) |
| 589 | channel->type->get_name(channel, |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 590 | efx->msi_context[channel->channel].name, |
| 591 | sizeof(efx->msi_context[0].name)); |
Ben Hutchings | 56536e9 | 2008-12-12 21:37:02 -0800 | [diff] [blame] | 592 | } |
| 593 | |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 594 | static int efx_probe_channels(struct efx_nic *efx) |
| 595 | { |
| 596 | struct efx_channel *channel; |
| 597 | int rc; |
| 598 | |
| 599 | /* Restart special buffer allocation */ |
| 600 | efx->next_buffer_table = 0; |
| 601 | |
Ben Hutchings | c92aaff | 2012-02-21 23:22:00 +0000 | [diff] [blame] | 602 | /* Probe channels in reverse, so that any 'extra' channels |
| 603 | * use the start of the buffer table. This allows the traffic |
| 604 | * channels to be resized without moving them or wasting the |
| 605 | * entries before them. |
| 606 | */ |
| 607 | efx_for_each_channel_rev(channel, efx) { |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 608 | rc = efx_probe_channel(channel); |
| 609 | if (rc) { |
| 610 | netif_err(efx, probe, efx->net_dev, |
| 611 | "failed to create channel %d\n", |
| 612 | channel->channel); |
| 613 | goto fail; |
| 614 | } |
| 615 | } |
| 616 | efx_set_channel_names(efx); |
| 617 | |
| 618 | return 0; |
| 619 | |
| 620 | fail: |
| 621 | efx_remove_channels(efx); |
| 622 | return rc; |
| 623 | } |
| 624 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 625 | /* Channels are shutdown and reinitialised whilst the NIC is running |
| 626 | * to propagate configuration changes (mtu, checksum offload), or |
| 627 | * to clear hardware error conditions |
| 628 | */ |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 629 | static void efx_start_datapath(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 630 | { |
Andrew Rybchenko | ebfcd0f | 2016-06-15 17:43:20 +0100 | [diff] [blame] | 631 | netdev_features_t old_features = efx->net_dev->features; |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 632 | bool old_rx_scatter = efx->rx_scatter; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 633 | struct efx_tx_queue *tx_queue; |
| 634 | struct efx_rx_queue *rx_queue; |
| 635 | struct efx_channel *channel; |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 636 | size_t rx_buf_len; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 637 | |
Ben Hutchings | f7f13b0 | 2008-05-16 21:15:06 +0100 | [diff] [blame] | 638 | /* Calculate the rx buffer allocation parameters required to |
| 639 | * support the current MTU, including padding for header |
| 640 | * alignment and overruns. |
| 641 | */ |
Jon Cooper | 43a3739 | 2012-10-18 15:49:54 +0100 | [diff] [blame] | 642 | efx->rx_dma_len = (efx->rx_prefix_size + |
Ben Hutchings | 272baee | 2013-01-29 23:33:14 +0000 | [diff] [blame] | 643 | EFX_MAX_FRAME_LEN(efx->net_dev->mtu) + |
| 644 | efx->type->rx_buffer_padding); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 645 | rx_buf_len = (sizeof(struct efx_rx_page_state) + |
Andrew Rybchenko | 2ec0301 | 2013-11-16 11:02:27 +0400 | [diff] [blame] | 646 | efx->rx_ip_align + efx->rx_dma_len); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 647 | if (rx_buf_len <= PAGE_SIZE) { |
Jon Cooper | e8c68c0 | 2013-03-08 10:18:28 +0000 | [diff] [blame] | 648 | efx->rx_scatter = efx->type->always_rx_scatter; |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 649 | efx->rx_buffer_order = 0; |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 650 | } else if (efx->type->can_rx_scatter) { |
Ben Hutchings | 950c54d | 2013-05-13 12:01:22 +0000 | [diff] [blame] | 651 | BUILD_BUG_ON(EFX_RX_USR_BUF_SIZE % L1_CACHE_BYTES); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 652 | BUILD_BUG_ON(sizeof(struct efx_rx_page_state) + |
Ben Hutchings | 950c54d | 2013-05-13 12:01:22 +0000 | [diff] [blame] | 653 | 2 * ALIGN(NET_IP_ALIGN + EFX_RX_USR_BUF_SIZE, |
| 654 | EFX_RX_BUF_ALIGNMENT) > |
| 655 | PAGE_SIZE); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 656 | efx->rx_scatter = true; |
| 657 | efx->rx_dma_len = EFX_RX_USR_BUF_SIZE; |
| 658 | efx->rx_buffer_order = 0; |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 659 | } else { |
| 660 | efx->rx_scatter = false; |
| 661 | efx->rx_buffer_order = get_order(rx_buf_len); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 662 | } |
| 663 | |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 664 | efx_rx_config_page_split(efx); |
| 665 | if (efx->rx_buffer_order) |
| 666 | netif_dbg(efx, drv, efx->net_dev, |
| 667 | "RX buf len=%u; page order=%u batch=%u\n", |
| 668 | efx->rx_dma_len, efx->rx_buffer_order, |
| 669 | efx->rx_pages_per_batch); |
| 670 | else |
| 671 | netif_dbg(efx, drv, efx->net_dev, |
| 672 | "RX buf len=%u step=%u bpp=%u; page batch=%u\n", |
| 673 | efx->rx_dma_len, efx->rx_page_buf_step, |
| 674 | efx->rx_bufs_per_page, efx->rx_pages_per_batch); |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 675 | |
Andrew Rybchenko | ebfcd0f | 2016-06-15 17:43:20 +0100 | [diff] [blame] | 676 | /* Restore previously fixed features in hw_features and remove |
| 677 | * features which are fixed now |
| 678 | */ |
| 679 | efx->net_dev->hw_features |= efx->net_dev->features; |
| 680 | efx->net_dev->hw_features &= ~efx->fixed_features; |
| 681 | efx->net_dev->features |= efx->fixed_features; |
| 682 | if (efx->net_dev->features != old_features) |
| 683 | netdev_features_change(efx->net_dev); |
| 684 | |
Jon Cooper | e8c68c0 | 2013-03-08 10:18:28 +0000 | [diff] [blame] | 685 | /* RX filters may also have scatter-enabled flags */ |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 686 | if (efx->rx_scatter != old_rx_scatter) |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 687 | efx->type->filter_update_rx_scatter(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 688 | |
Ben Hutchings | 14bf718 | 2012-05-22 01:27:58 +0100 | [diff] [blame] | 689 | /* We must keep at least one descriptor in a TX ring empty. |
| 690 | * We could avoid this when the queue size does not exactly |
| 691 | * match the hardware ring size, but it's not that important. |
| 692 | * Therefore we stop the queue when one more skb might fill |
| 693 | * the ring completely. We wake it when half way back to |
| 694 | * empty. |
| 695 | */ |
| 696 | efx->txq_stop_thresh = efx->txq_entries - efx_tx_max_skb_descs(efx); |
| 697 | efx->txq_wake_thresh = efx->txq_stop_thresh / 2; |
| 698 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 699 | /* Initialise the channels */ |
| 700 | efx_for_each_channel(channel, efx) { |
Alexandre Rames | 3881d8a | 2013-06-10 11:03:21 +0100 | [diff] [blame] | 701 | efx_for_each_channel_tx_queue(tx_queue, channel) { |
Ben Hutchings | bc3c90a | 2008-09-01 12:48:46 +0100 | [diff] [blame] | 702 | efx_init_tx_queue(tx_queue); |
Alexandre Rames | 3881d8a | 2013-06-10 11:03:21 +0100 | [diff] [blame] | 703 | atomic_inc(&efx->active_queues); |
| 704 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 705 | |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 706 | efx_for_each_channel_rx_queue(rx_queue, channel) { |
Ben Hutchings | bc3c90a | 2008-09-01 12:48:46 +0100 | [diff] [blame] | 707 | efx_init_rx_queue(rx_queue); |
Alexandre Rames | 3881d8a | 2013-06-10 11:03:21 +0100 | [diff] [blame] | 708 | atomic_inc(&efx->active_queues); |
Jon Cooper | cce2879 | 2013-10-02 11:04:14 +0100 | [diff] [blame] | 709 | efx_stop_eventq(channel); |
| 710 | efx_fast_push_rx_descriptors(rx_queue, false); |
| 711 | efx_start_eventq(channel); |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 712 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 713 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 714 | WARN_ON(channel->rx_pkt_n_frags); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 715 | } |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 716 | |
Alexandre Rames | 2ea4dc2 | 2013-11-08 10:20:31 +0000 | [diff] [blame] | 717 | efx_ptp_start_datapath(efx); |
| 718 | |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 719 | if (netif_device_present(efx->net_dev)) |
| 720 | netif_tx_wake_all_queues(efx->net_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 721 | } |
| 722 | |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 723 | static void efx_stop_datapath(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 724 | { |
| 725 | struct efx_channel *channel; |
| 726 | struct efx_tx_queue *tx_queue; |
| 727 | struct efx_rx_queue *rx_queue; |
Ben Hutchings | 6bc5d3a | 2008-09-01 12:49:37 +0100 | [diff] [blame] | 728 | int rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 729 | |
| 730 | EFX_ASSERT_RESET_SERIALISED(efx); |
| 731 | BUG_ON(efx->port_enabled); |
| 732 | |
Alexandre Rames | 2ea4dc2 | 2013-11-08 10:20:31 +0000 | [diff] [blame] | 733 | efx_ptp_stop_datapath(efx); |
| 734 | |
Ben Hutchings | d8aec74 | 2013-05-27 16:52:54 +0100 | [diff] [blame] | 735 | /* Stop RX refill */ |
| 736 | efx_for_each_channel(channel, efx) { |
| 737 | efx_for_each_channel_rx_queue(rx_queue, channel) |
| 738 | rx_queue->refill_enabled = false; |
| 739 | } |
| 740 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 741 | efx_for_each_channel(channel, efx) { |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 742 | /* RX packet processing is pipelined, so wait for the |
| 743 | * NAPI handler to complete. At least event queue 0 |
| 744 | * might be kept active by non-data events, so don't |
| 745 | * use napi_synchronize() but actually disable NAPI |
| 746 | * temporarily. |
| 747 | */ |
| 748 | if (efx_channel_has_rx_queue(channel)) { |
| 749 | efx_stop_eventq(channel); |
| 750 | efx_start_eventq(channel); |
| 751 | } |
Ben Hutchings | e42c3d8 | 2013-05-27 16:52:54 +0100 | [diff] [blame] | 752 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 753 | |
Ben Hutchings | e42c3d8 | 2013-05-27 16:52:54 +0100 | [diff] [blame] | 754 | rc = efx->type->fini_dmaq(efx); |
Edward Cree | 5a6681e | 2016-11-28 18:55:34 +0000 | [diff] [blame] | 755 | if (rc) { |
Ben Hutchings | e42c3d8 | 2013-05-27 16:52:54 +0100 | [diff] [blame] | 756 | netif_err(efx, drv, efx->net_dev, "failed to flush queues\n"); |
| 757 | } else { |
| 758 | netif_dbg(efx, drv, efx->net_dev, |
| 759 | "successfully flushed all queues\n"); |
| 760 | } |
| 761 | |
| 762 | efx_for_each_channel(channel, efx) { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 763 | efx_for_each_channel_rx_queue(rx_queue, channel) |
| 764 | efx_fini_rx_queue(rx_queue); |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 765 | efx_for_each_possible_channel_tx_queue(tx_queue, channel) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 766 | efx_fini_tx_queue(tx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 767 | } |
| 768 | } |
| 769 | |
| 770 | static void efx_remove_channel(struct efx_channel *channel) |
| 771 | { |
| 772 | struct efx_tx_queue *tx_queue; |
| 773 | struct efx_rx_queue *rx_queue; |
| 774 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 775 | netif_dbg(channel->efx, drv, channel->efx->net_dev, |
| 776 | "destroy chan %d\n", channel->channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 777 | |
| 778 | efx_for_each_channel_rx_queue(rx_queue, channel) |
| 779 | efx_remove_rx_queue(rx_queue); |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 780 | efx_for_each_possible_channel_tx_queue(tx_queue, channel) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 781 | efx_remove_tx_queue(tx_queue); |
| 782 | efx_remove_eventq(channel); |
Stuart Hodgson | c31e5f9 | 2012-07-18 09:52:11 +0100 | [diff] [blame] | 783 | channel->type->post_remove(channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 784 | } |
| 785 | |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 786 | static void efx_remove_channels(struct efx_nic *efx) |
| 787 | { |
| 788 | struct efx_channel *channel; |
| 789 | |
| 790 | efx_for_each_channel(channel, efx) |
| 791 | efx_remove_channel(channel); |
| 792 | } |
| 793 | |
| 794 | int |
| 795 | efx_realloc_channels(struct efx_nic *efx, u32 rxq_entries, u32 txq_entries) |
| 796 | { |
| 797 | struct efx_channel *other_channel[EFX_MAX_CHANNELS], *channel; |
| 798 | u32 old_rxq_entries, old_txq_entries; |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 799 | unsigned i, next_buffer_table = 0; |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 800 | int rc, rc2; |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 801 | |
| 802 | rc = efx_check_disabled(efx); |
| 803 | if (rc) |
| 804 | return rc; |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 805 | |
| 806 | /* Not all channels should be reallocated. We must avoid |
| 807 | * reallocating their buffer table entries. |
| 808 | */ |
| 809 | efx_for_each_channel(channel, efx) { |
| 810 | struct efx_rx_queue *rx_queue; |
| 811 | struct efx_tx_queue *tx_queue; |
| 812 | |
| 813 | if (channel->type->copy) |
| 814 | continue; |
| 815 | next_buffer_table = max(next_buffer_table, |
| 816 | channel->eventq.index + |
| 817 | channel->eventq.entries); |
| 818 | efx_for_each_channel_rx_queue(rx_queue, channel) |
| 819 | next_buffer_table = max(next_buffer_table, |
| 820 | rx_queue->rxd.index + |
| 821 | rx_queue->rxd.entries); |
| 822 | efx_for_each_channel_tx_queue(tx_queue, channel) |
| 823 | next_buffer_table = max(next_buffer_table, |
| 824 | tx_queue->txd.index + |
| 825 | tx_queue->txd.entries); |
| 826 | } |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 827 | |
Ben Hutchings | 29c69a4 | 2013-01-28 19:01:06 +0000 | [diff] [blame] | 828 | efx_device_detach_sync(efx); |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 829 | efx_stop_all(efx); |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 830 | efx_soft_disable_interrupts(efx); |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 831 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 832 | /* Clone channels (where possible) */ |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 833 | memset(other_channel, 0, sizeof(other_channel)); |
| 834 | for (i = 0; i < efx->n_channels; i++) { |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 835 | channel = efx->channel[i]; |
| 836 | if (channel->type->copy) |
| 837 | channel = channel->type->copy(channel); |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 838 | if (!channel) { |
| 839 | rc = -ENOMEM; |
| 840 | goto out; |
| 841 | } |
| 842 | other_channel[i] = channel; |
| 843 | } |
| 844 | |
| 845 | /* Swap entry counts and channel pointers */ |
| 846 | old_rxq_entries = efx->rxq_entries; |
| 847 | old_txq_entries = efx->txq_entries; |
| 848 | efx->rxq_entries = rxq_entries; |
| 849 | efx->txq_entries = txq_entries; |
| 850 | for (i = 0; i < efx->n_channels; i++) { |
| 851 | channel = efx->channel[i]; |
| 852 | efx->channel[i] = other_channel[i]; |
| 853 | other_channel[i] = channel; |
| 854 | } |
| 855 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 856 | /* Restart buffer table allocation */ |
| 857 | efx->next_buffer_table = next_buffer_table; |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 858 | |
Ben Hutchings | e8f1499 | 2010-12-07 19:47:34 +0000 | [diff] [blame] | 859 | for (i = 0; i < efx->n_channels; i++) { |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 860 | channel = efx->channel[i]; |
| 861 | if (!channel->type->copy) |
| 862 | continue; |
| 863 | rc = efx_probe_channel(channel); |
| 864 | if (rc) |
| 865 | goto rollback; |
| 866 | efx_init_napi_channel(efx->channel[i]); |
Ben Hutchings | e8f1499 | 2010-12-07 19:47:34 +0000 | [diff] [blame] | 867 | } |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 868 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 869 | out: |
| 870 | /* Destroy unused channel structures */ |
| 871 | for (i = 0; i < efx->n_channels; i++) { |
| 872 | channel = other_channel[i]; |
| 873 | if (channel && channel->type->copy) { |
| 874 | efx_fini_napi_channel(channel); |
| 875 | efx_remove_channel(channel); |
| 876 | kfree(channel); |
| 877 | } |
| 878 | } |
| 879 | |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 880 | rc2 = efx_soft_enable_interrupts(efx); |
| 881 | if (rc2) { |
| 882 | rc = rc ? rc : rc2; |
| 883 | netif_err(efx, drv, efx->net_dev, |
| 884 | "unable to restart interrupts on channel reallocation\n"); |
| 885 | efx_schedule_reset(efx, RESET_TYPE_DISABLE); |
| 886 | } else { |
| 887 | efx_start_all(efx); |
Peter Dunning | 9c568fd | 2017-02-17 15:50:43 +0000 | [diff] [blame] | 888 | efx_device_attach_if_not_resetting(efx); |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 889 | } |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 890 | return rc; |
| 891 | |
| 892 | rollback: |
| 893 | /* Swap back */ |
| 894 | efx->rxq_entries = old_rxq_entries; |
| 895 | efx->txq_entries = old_txq_entries; |
| 896 | for (i = 0; i < efx->n_channels; i++) { |
| 897 | channel = efx->channel[i]; |
| 898 | efx->channel[i] = other_channel[i]; |
| 899 | other_channel[i] = channel; |
| 900 | } |
| 901 | goto out; |
| 902 | } |
| 903 | |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 904 | void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 905 | { |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 906 | mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 907 | } |
| 908 | |
kbuild test robot | e7345ba | 2018-01-26 17:00:39 +0000 | [diff] [blame] | 909 | static bool efx_default_channel_want_txqs(struct efx_channel *channel) |
Edward Cree | 2935e3c | 2018-01-25 17:26:06 +0000 | [diff] [blame] | 910 | { |
| 911 | return channel->channel - channel->efx->tx_channel_offset < |
| 912 | channel->efx->n_tx_channels; |
| 913 | } |
| 914 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 915 | static const struct efx_channel_type efx_default_channel_type = { |
| 916 | .pre_probe = efx_channel_dummy_op_int, |
Stuart Hodgson | c31e5f9 | 2012-07-18 09:52:11 +0100 | [diff] [blame] | 917 | .post_remove = efx_channel_dummy_op_void, |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 918 | .get_name = efx_get_channel_name, |
| 919 | .copy = efx_copy_channel, |
Edward Cree | 2935e3c | 2018-01-25 17:26:06 +0000 | [diff] [blame] | 920 | .want_txqs = efx_default_channel_want_txqs, |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 921 | .keep_eventq = false, |
Edward Cree | 2935e3c | 2018-01-25 17:26:06 +0000 | [diff] [blame] | 922 | .want_pio = true, |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 923 | }; |
| 924 | |
| 925 | int efx_channel_dummy_op_int(struct efx_channel *channel) |
| 926 | { |
| 927 | return 0; |
| 928 | } |
| 929 | |
Stuart Hodgson | c31e5f9 | 2012-07-18 09:52:11 +0100 | [diff] [blame] | 930 | void efx_channel_dummy_op_void(struct efx_channel *channel) |
| 931 | { |
| 932 | } |
| 933 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 934 | /************************************************************************** |
| 935 | * |
| 936 | * Port handling |
| 937 | * |
| 938 | **************************************************************************/ |
| 939 | |
| 940 | /* This ensures that the kernel is kept informed (via |
| 941 | * netif_carrier_on/off) of the link status, and also maintains the |
| 942 | * link status's stop on the port's TX queue. |
| 943 | */ |
Steve Hodgson | fdaa9ae | 2009-11-28 05:34:05 +0000 | [diff] [blame] | 944 | void efx_link_status_changed(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 945 | { |
Ben Hutchings | eb50c0d | 2009-11-23 16:06:30 +0000 | [diff] [blame] | 946 | struct efx_link_state *link_state = &efx->link_state; |
| 947 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 948 | /* SFC Bug 5356: A net_dev notifier is registered, so we must ensure |
| 949 | * that no events are triggered between unregister_netdev() and the |
| 950 | * driver unloading. A more general condition is that NETDEV_CHANGE |
| 951 | * can only be generated between NETDEV_UP and NETDEV_DOWN */ |
| 952 | if (!netif_running(efx->net_dev)) |
| 953 | return; |
| 954 | |
Ben Hutchings | eb50c0d | 2009-11-23 16:06:30 +0000 | [diff] [blame] | 955 | if (link_state->up != netif_carrier_ok(efx->net_dev)) { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 956 | efx->n_link_state_changes++; |
| 957 | |
Ben Hutchings | eb50c0d | 2009-11-23 16:06:30 +0000 | [diff] [blame] | 958 | if (link_state->up) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 959 | netif_carrier_on(efx->net_dev); |
| 960 | else |
| 961 | netif_carrier_off(efx->net_dev); |
| 962 | } |
| 963 | |
| 964 | /* Status message for kernel log */ |
Ben Hutchings | 2aa9ef1 | 2012-01-09 19:53:41 +0000 | [diff] [blame] | 965 | if (link_state->up) |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 966 | netif_info(efx, link, efx->net_dev, |
Ben Hutchings | 964e613 | 2012-11-19 23:08:22 +0000 | [diff] [blame] | 967 | "link up at %uMbps %s-duplex (MTU %d)\n", |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 968 | link_state->speed, link_state->fd ? "full" : "half", |
Ben Hutchings | 964e613 | 2012-11-19 23:08:22 +0000 | [diff] [blame] | 969 | efx->net_dev->mtu); |
Ben Hutchings | 2aa9ef1 | 2012-01-09 19:53:41 +0000 | [diff] [blame] | 970 | else |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 971 | netif_info(efx, link, efx->net_dev, "link down\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 972 | } |
| 973 | |
Edward Cree | c2ab85d | 2018-01-10 18:00:14 +0000 | [diff] [blame] | 974 | void efx_link_set_advertising(struct efx_nic *efx, |
| 975 | const unsigned long *advertising) |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 976 | { |
Edward Cree | c2ab85d | 2018-01-10 18:00:14 +0000 | [diff] [blame] | 977 | memcpy(efx->link_advertising, advertising, |
| 978 | sizeof(__ETHTOOL_DECLARE_LINK_MODE_MASK())); |
| 979 | |
| 980 | efx->link_advertising[0] |= ADVERTISED_Autoneg; |
| 981 | if (advertising[0] & ADVERTISED_Pause) |
| 982 | efx->wanted_fc |= (EFX_FC_TX | EFX_FC_RX); |
| 983 | else |
| 984 | efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX); |
| 985 | if (advertising[0] & ADVERTISED_Asym_Pause) |
| 986 | efx->wanted_fc ^= EFX_FC_TX; |
| 987 | } |
| 988 | |
| 989 | /* Equivalent to efx_link_set_advertising with all-zeroes, except does not |
| 990 | * force the Autoneg bit on. |
| 991 | */ |
| 992 | void efx_link_clear_advertising(struct efx_nic *efx) |
| 993 | { |
| 994 | bitmap_zero(efx->link_advertising, __ETHTOOL_LINK_MODE_MASK_NBITS); |
| 995 | efx->wanted_fc &= ~(EFX_FC_TX | EFX_FC_RX); |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 996 | } |
| 997 | |
David S. Miller | b5626946 | 2011-05-17 17:53:22 -0400 | [diff] [blame] | 998 | void efx_link_set_wanted_fc(struct efx_nic *efx, u8 wanted_fc) |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 999 | { |
| 1000 | efx->wanted_fc = wanted_fc; |
Edward Cree | c2ab85d | 2018-01-10 18:00:14 +0000 | [diff] [blame] | 1001 | if (efx->link_advertising[0]) { |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1002 | if (wanted_fc & EFX_FC_RX) |
Edward Cree | c2ab85d | 2018-01-10 18:00:14 +0000 | [diff] [blame] | 1003 | efx->link_advertising[0] |= (ADVERTISED_Pause | |
| 1004 | ADVERTISED_Asym_Pause); |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1005 | else |
Edward Cree | c2ab85d | 2018-01-10 18:00:14 +0000 | [diff] [blame] | 1006 | efx->link_advertising[0] &= ~(ADVERTISED_Pause | |
| 1007 | ADVERTISED_Asym_Pause); |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1008 | if (wanted_fc & EFX_FC_TX) |
Edward Cree | c2ab85d | 2018-01-10 18:00:14 +0000 | [diff] [blame] | 1009 | efx->link_advertising[0] ^= ADVERTISED_Asym_Pause; |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1010 | } |
| 1011 | } |
| 1012 | |
Ben Hutchings | 115122a | 2009-03-04 09:52:52 +0000 | [diff] [blame] | 1013 | static void efx_fini_port(struct efx_nic *efx); |
| 1014 | |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1015 | /* We assume that efx->type->reconfigure_mac will always try to sync RX |
| 1016 | * filters and therefore needs to read-lock the filter table against freeing |
| 1017 | */ |
| 1018 | void efx_mac_reconfigure(struct efx_nic *efx) |
| 1019 | { |
| 1020 | down_read(&efx->filter_sem); |
| 1021 | efx->type->reconfigure_mac(efx); |
| 1022 | up_read(&efx->filter_sem); |
| 1023 | } |
| 1024 | |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1025 | /* Push loopback/power/transmit disable settings to the PHY, and reconfigure |
| 1026 | * the MAC appropriately. All other PHY configuration changes are pushed |
| 1027 | * through phy_op->set_settings(), and pushed asynchronously to the MAC |
| 1028 | * through efx_monitor(). |
| 1029 | * |
| 1030 | * Callers must hold the mac_lock |
| 1031 | */ |
| 1032 | int __efx_reconfigure_port(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1033 | { |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1034 | enum efx_phy_mode phy_mode; |
| 1035 | int rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1036 | |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1037 | WARN_ON(!mutex_is_locked(&efx->mac_lock)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1038 | |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1039 | /* Disable PHY transmit in mac level loopbacks */ |
| 1040 | phy_mode = efx->phy_mode; |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 1041 | if (LOOPBACK_INTERNAL(efx)) |
| 1042 | efx->phy_mode |= PHY_MODE_TX_DISABLED; |
| 1043 | else |
| 1044 | efx->phy_mode &= ~PHY_MODE_TX_DISABLED; |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 1045 | |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1046 | rc = efx->type->reconfigure_port(efx); |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 1047 | |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1048 | if (rc) |
| 1049 | efx->phy_mode = phy_mode; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1050 | |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1051 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1052 | } |
| 1053 | |
| 1054 | /* Reinitialise the MAC to pick up new PHY settings, even if the port is |
| 1055 | * disabled. */ |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1056 | int efx_reconfigure_port(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1057 | { |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1058 | int rc; |
| 1059 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1060 | EFX_ASSERT_RESET_SERIALISED(efx); |
| 1061 | |
| 1062 | mutex_lock(&efx->mac_lock); |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1063 | rc = __efx_reconfigure_port(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1064 | mutex_unlock(&efx->mac_lock); |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1065 | |
| 1066 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1067 | } |
| 1068 | |
Ben Hutchings | 8be4f3e | 2009-11-25 16:12:16 +0000 | [diff] [blame] | 1069 | /* Asynchronous work item for changing MAC promiscuity and multicast |
| 1070 | * hash. Avoid a drain/rx_ingress enable by reconfiguring the current |
| 1071 | * MAC directly. */ |
Ben Hutchings | 766ca0f | 2008-12-12 21:59:24 -0800 | [diff] [blame] | 1072 | static void efx_mac_work(struct work_struct *data) |
| 1073 | { |
| 1074 | struct efx_nic *efx = container_of(data, struct efx_nic, mac_work); |
| 1075 | |
| 1076 | mutex_lock(&efx->mac_lock); |
Ben Hutchings | 30b81cd | 2011-09-13 19:47:48 +0100 | [diff] [blame] | 1077 | if (efx->port_enabled) |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1078 | efx_mac_reconfigure(efx); |
Ben Hutchings | 766ca0f | 2008-12-12 21:59:24 -0800 | [diff] [blame] | 1079 | mutex_unlock(&efx->mac_lock); |
| 1080 | } |
| 1081 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1082 | static int efx_probe_port(struct efx_nic *efx) |
| 1083 | { |
| 1084 | int rc; |
| 1085 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1086 | netif_dbg(efx, probe, efx->net_dev, "create port\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1087 | |
Steve Hodgson | ff3b00a | 2009-12-23 13:46:36 +0000 | [diff] [blame] | 1088 | if (phy_flash_cfg) |
| 1089 | efx->phy_mode = PHY_MODE_SPECIAL; |
| 1090 | |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 1091 | /* Connect up MAC/PHY operations table */ |
| 1092 | rc = efx->type->probe_port(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1093 | if (rc) |
Ben Hutchings | e42de26 | 2010-09-10 06:41:19 +0000 | [diff] [blame] | 1094 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1095 | |
Ben Hutchings | e332bcb | 2011-12-20 01:22:51 +0000 | [diff] [blame] | 1096 | /* Initialise MAC address to permanent address */ |
Edward Cree | cd84ff4 | 2014-03-07 18:27:41 +0000 | [diff] [blame] | 1097 | ether_addr_copy(efx->net_dev->dev_addr, efx->net_dev->perm_addr); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1098 | |
| 1099 | return 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1100 | } |
| 1101 | |
| 1102 | static int efx_init_port(struct efx_nic *efx) |
| 1103 | { |
| 1104 | int rc; |
| 1105 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1106 | netif_dbg(efx, drv, efx->net_dev, "init port\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1107 | |
Ben Hutchings | 1dfc5ce | 2009-11-25 16:11:19 +0000 | [diff] [blame] | 1108 | mutex_lock(&efx->mac_lock); |
| 1109 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 1110 | rc = efx->phy_op->init(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1111 | if (rc) |
Ben Hutchings | 1dfc5ce | 2009-11-25 16:11:19 +0000 | [diff] [blame] | 1112 | goto fail1; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1113 | |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 1114 | efx->port_initialized = true; |
Ben Hutchings | 1dfc5ce | 2009-11-25 16:11:19 +0000 | [diff] [blame] | 1115 | |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1116 | /* Reconfigure the MAC before creating dma queues (required for |
| 1117 | * Falcon/A1 where RX_INGR_EN/TX_DRAIN_EN isn't supported) */ |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1118 | efx_mac_reconfigure(efx); |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1119 | |
| 1120 | /* Ensure the PHY advertises the correct flow control settings */ |
| 1121 | rc = efx->phy_op->reconfigure(efx); |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 1122 | if (rc && rc != -EPERM) |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 1123 | goto fail2; |
| 1124 | |
Ben Hutchings | 1dfc5ce | 2009-11-25 16:11:19 +0000 | [diff] [blame] | 1125 | mutex_unlock(&efx->mac_lock); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1126 | return 0; |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 1127 | |
Ben Hutchings | 1dfc5ce | 2009-11-25 16:11:19 +0000 | [diff] [blame] | 1128 | fail2: |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 1129 | efx->phy_op->fini(efx); |
Ben Hutchings | 1dfc5ce | 2009-11-25 16:11:19 +0000 | [diff] [blame] | 1130 | fail1: |
| 1131 | mutex_unlock(&efx->mac_lock); |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 1132 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1133 | } |
| 1134 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1135 | static void efx_start_port(struct efx_nic *efx) |
| 1136 | { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1137 | netif_dbg(efx, ifup, efx->net_dev, "start port\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1138 | BUG_ON(efx->port_enabled); |
| 1139 | |
| 1140 | mutex_lock(&efx->mac_lock); |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 1141 | efx->port_enabled = true; |
Ben Hutchings | 8be4f3e | 2009-11-25 16:12:16 +0000 | [diff] [blame] | 1142 | |
Ben Hutchings | d615c03 | 2013-10-08 17:33:20 +0100 | [diff] [blame] | 1143 | /* Ensure MAC ingress/egress is enabled */ |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1144 | efx_mac_reconfigure(efx); |
Ben Hutchings | 8be4f3e | 2009-11-25 16:12:16 +0000 | [diff] [blame] | 1145 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1146 | mutex_unlock(&efx->mac_lock); |
| 1147 | } |
| 1148 | |
Ben Hutchings | d615c03 | 2013-10-08 17:33:20 +0100 | [diff] [blame] | 1149 | /* Cancel work for MAC reconfiguration, periodic hardware monitoring |
| 1150 | * and the async self-test, wait for them to finish and prevent them |
| 1151 | * being scheduled again. This doesn't cover online resets, which |
| 1152 | * should only be cancelled when removing the device. |
| 1153 | */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1154 | static void efx_stop_port(struct efx_nic *efx) |
| 1155 | { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1156 | netif_dbg(efx, ifdown, efx->net_dev, "stop port\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1157 | |
Ben Hutchings | d615c03 | 2013-10-08 17:33:20 +0100 | [diff] [blame] | 1158 | EFX_ASSERT_RESET_SERIALISED(efx); |
| 1159 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1160 | mutex_lock(&efx->mac_lock); |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 1161 | efx->port_enabled = false; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1162 | mutex_unlock(&efx->mac_lock); |
| 1163 | |
| 1164 | /* Serialise against efx_set_multicast_list() */ |
Ben Hutchings | 73ba7b6 | 2012-01-09 19:47:08 +0000 | [diff] [blame] | 1165 | netif_addr_lock_bh(efx->net_dev); |
| 1166 | netif_addr_unlock_bh(efx->net_dev); |
Ben Hutchings | d615c03 | 2013-10-08 17:33:20 +0100 | [diff] [blame] | 1167 | |
| 1168 | cancel_delayed_work_sync(&efx->monitor_work); |
| 1169 | efx_selftest_async_cancel(efx); |
| 1170 | cancel_work_sync(&efx->mac_work); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1171 | } |
| 1172 | |
| 1173 | static void efx_fini_port(struct efx_nic *efx) |
| 1174 | { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1175 | netif_dbg(efx, drv, efx->net_dev, "shut down port\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1176 | |
| 1177 | if (!efx->port_initialized) |
| 1178 | return; |
| 1179 | |
Ben Hutchings | 177dfcd | 2008-12-12 21:50:08 -0800 | [diff] [blame] | 1180 | efx->phy_op->fini(efx); |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 1181 | efx->port_initialized = false; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1182 | |
Ben Hutchings | eb50c0d | 2009-11-23 16:06:30 +0000 | [diff] [blame] | 1183 | efx->link_state.up = false; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1184 | efx_link_status_changed(efx); |
| 1185 | } |
| 1186 | |
| 1187 | static void efx_remove_port(struct efx_nic *efx) |
| 1188 | { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1189 | netif_dbg(efx, drv, efx->net_dev, "destroying port\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1190 | |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 1191 | efx->type->remove_port(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1192 | } |
| 1193 | |
| 1194 | /************************************************************************** |
| 1195 | * |
| 1196 | * NIC handling |
| 1197 | * |
| 1198 | **************************************************************************/ |
| 1199 | |
Ben Hutchings | 0bcf4a6 | 2013-10-18 19:21:45 +0100 | [diff] [blame] | 1200 | static LIST_HEAD(efx_primary_list); |
| 1201 | static LIST_HEAD(efx_unassociated_list); |
| 1202 | |
| 1203 | static bool efx_same_controller(struct efx_nic *left, struct efx_nic *right) |
| 1204 | { |
| 1205 | return left->type == right->type && |
| 1206 | left->vpd_sn && right->vpd_sn && |
| 1207 | !strcmp(left->vpd_sn, right->vpd_sn); |
| 1208 | } |
| 1209 | |
| 1210 | static void efx_associate(struct efx_nic *efx) |
| 1211 | { |
| 1212 | struct efx_nic *other, *next; |
| 1213 | |
| 1214 | if (efx->primary == efx) { |
| 1215 | /* Adding primary function; look for secondaries */ |
| 1216 | |
| 1217 | netif_dbg(efx, probe, efx->net_dev, "adding to primary list\n"); |
| 1218 | list_add_tail(&efx->node, &efx_primary_list); |
| 1219 | |
| 1220 | list_for_each_entry_safe(other, next, &efx_unassociated_list, |
| 1221 | node) { |
| 1222 | if (efx_same_controller(efx, other)) { |
| 1223 | list_del(&other->node); |
| 1224 | netif_dbg(other, probe, other->net_dev, |
| 1225 | "moving to secondary list of %s %s\n", |
| 1226 | pci_name(efx->pci_dev), |
| 1227 | efx->net_dev->name); |
| 1228 | list_add_tail(&other->node, |
| 1229 | &efx->secondary_list); |
| 1230 | other->primary = efx; |
| 1231 | } |
| 1232 | } |
| 1233 | } else { |
| 1234 | /* Adding secondary function; look for primary */ |
| 1235 | |
| 1236 | list_for_each_entry(other, &efx_primary_list, node) { |
| 1237 | if (efx_same_controller(efx, other)) { |
| 1238 | netif_dbg(efx, probe, efx->net_dev, |
| 1239 | "adding to secondary list of %s %s\n", |
| 1240 | pci_name(other->pci_dev), |
| 1241 | other->net_dev->name); |
| 1242 | list_add_tail(&efx->node, |
| 1243 | &other->secondary_list); |
| 1244 | efx->primary = other; |
| 1245 | return; |
| 1246 | } |
| 1247 | } |
| 1248 | |
| 1249 | netif_dbg(efx, probe, efx->net_dev, |
| 1250 | "adding to unassociated list\n"); |
| 1251 | list_add_tail(&efx->node, &efx_unassociated_list); |
| 1252 | } |
| 1253 | } |
| 1254 | |
| 1255 | static void efx_dissociate(struct efx_nic *efx) |
| 1256 | { |
| 1257 | struct efx_nic *other, *next; |
| 1258 | |
| 1259 | list_del(&efx->node); |
| 1260 | efx->primary = NULL; |
| 1261 | |
| 1262 | list_for_each_entry_safe(other, next, &efx->secondary_list, node) { |
| 1263 | list_del(&other->node); |
| 1264 | netif_dbg(other, probe, other->net_dev, |
| 1265 | "moving to unassociated list\n"); |
| 1266 | list_add_tail(&other->node, &efx_unassociated_list); |
| 1267 | other->primary = NULL; |
| 1268 | } |
| 1269 | } |
| 1270 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1271 | /* This configures the PCI device to enable I/O and DMA. */ |
| 1272 | static int efx_init_io(struct efx_nic *efx) |
| 1273 | { |
| 1274 | struct pci_dev *pci_dev = efx->pci_dev; |
| 1275 | dma_addr_t dma_mask = efx->type->max_dma_mask; |
Ben Hutchings | b105798 | 2012-09-19 00:56:47 +0100 | [diff] [blame] | 1276 | unsigned int mem_map_size = efx->type->mem_map_size(efx); |
Shradha Shah | 02246a7 | 2015-05-06 00:58:14 +0100 | [diff] [blame] | 1277 | int rc, bar; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1278 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1279 | netif_dbg(efx, probe, efx->net_dev, "initialising I/O\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1280 | |
Edward Cree | 03714bb | 2017-12-18 16:55:50 +0000 | [diff] [blame] | 1281 | bar = efx->type->mem_bar(efx); |
Shradha Shah | 02246a7 | 2015-05-06 00:58:14 +0100 | [diff] [blame] | 1282 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1283 | rc = pci_enable_device(pci_dev); |
| 1284 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1285 | netif_err(efx, probe, efx->net_dev, |
| 1286 | "failed to enable PCI device\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1287 | goto fail1; |
| 1288 | } |
| 1289 | |
| 1290 | pci_set_master(pci_dev); |
| 1291 | |
Christoph Hellwig | 06e9552 | 2018-04-27 09:13:24 +0200 | [diff] [blame] | 1292 | /* Set the PCI DMA mask. Try all possibilities from our genuine mask |
| 1293 | * down to 32 bits, because some architectures will allow 40 bit |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1294 | * masks event though they reject 46 bit masks. |
| 1295 | */ |
| 1296 | while (dma_mask > 0x7fffffffUL) { |
Christoph Hellwig | 8722b8f | 2015-11-10 14:45:42 -0800 | [diff] [blame] | 1297 | rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask); |
| 1298 | if (rc == 0) |
| 1299 | break; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1300 | dma_mask >>= 1; |
| 1301 | } |
| 1302 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1303 | netif_err(efx, probe, efx->net_dev, |
| 1304 | "could not find a suitable DMA mask\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1305 | goto fail2; |
| 1306 | } |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1307 | netif_dbg(efx, probe, efx->net_dev, |
| 1308 | "using DMA mask %llx\n", (unsigned long long) dma_mask); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1309 | |
Shradha Shah | 02246a7 | 2015-05-06 00:58:14 +0100 | [diff] [blame] | 1310 | efx->membase_phys = pci_resource_start(efx->pci_dev, bar); |
| 1311 | rc = pci_request_region(pci_dev, bar, "sfc"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1312 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1313 | netif_err(efx, probe, efx->net_dev, |
| 1314 | "request for memory BAR failed\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1315 | rc = -EIO; |
| 1316 | goto fail3; |
| 1317 | } |
Ben Hutchings | b105798 | 2012-09-19 00:56:47 +0100 | [diff] [blame] | 1318 | efx->membase = ioremap_nocache(efx->membase_phys, mem_map_size); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1319 | if (!efx->membase) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1320 | netif_err(efx, probe, efx->net_dev, |
| 1321 | "could not map memory BAR at %llx+%x\n", |
Ben Hutchings | b105798 | 2012-09-19 00:56:47 +0100 | [diff] [blame] | 1322 | (unsigned long long)efx->membase_phys, mem_map_size); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1323 | rc = -ENOMEM; |
| 1324 | goto fail4; |
| 1325 | } |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1326 | netif_dbg(efx, probe, efx->net_dev, |
| 1327 | "memory BAR at %llx+%x (virtual %p)\n", |
Ben Hutchings | b105798 | 2012-09-19 00:56:47 +0100 | [diff] [blame] | 1328 | (unsigned long long)efx->membase_phys, mem_map_size, |
| 1329 | efx->membase); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1330 | |
| 1331 | return 0; |
| 1332 | |
| 1333 | fail4: |
Shradha Shah | 02246a7 | 2015-05-06 00:58:14 +0100 | [diff] [blame] | 1334 | pci_release_region(efx->pci_dev, bar); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1335 | fail3: |
Ben Hutchings | 2c118e0 | 2008-05-16 21:15:29 +0100 | [diff] [blame] | 1336 | efx->membase_phys = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1337 | fail2: |
| 1338 | pci_disable_device(efx->pci_dev); |
| 1339 | fail1: |
| 1340 | return rc; |
| 1341 | } |
| 1342 | |
| 1343 | static void efx_fini_io(struct efx_nic *efx) |
| 1344 | { |
Shradha Shah | 02246a7 | 2015-05-06 00:58:14 +0100 | [diff] [blame] | 1345 | int bar; |
| 1346 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1347 | netif_dbg(efx, drv, efx->net_dev, "shutting down I/O\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1348 | |
| 1349 | if (efx->membase) { |
| 1350 | iounmap(efx->membase); |
| 1351 | efx->membase = NULL; |
| 1352 | } |
| 1353 | |
| 1354 | if (efx->membase_phys) { |
Edward Cree | 03714bb | 2017-12-18 16:55:50 +0000 | [diff] [blame] | 1355 | bar = efx->type->mem_bar(efx); |
Shradha Shah | 02246a7 | 2015-05-06 00:58:14 +0100 | [diff] [blame] | 1356 | pci_release_region(efx->pci_dev, bar); |
Ben Hutchings | 2c118e0 | 2008-05-16 21:15:29 +0100 | [diff] [blame] | 1357 | efx->membase_phys = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1358 | } |
| 1359 | |
Daniel Pieczko | 6598dad | 2015-06-02 11:41:00 +0100 | [diff] [blame] | 1360 | /* Don't disable bus-mastering if VFs are assigned */ |
| 1361 | if (!pci_vfs_assigned(efx->pci_dev)) |
| 1362 | pci_disable_device(efx->pci_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1363 | } |
| 1364 | |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 1365 | void efx_set_default_rx_indir_table(struct efx_nic *efx, |
| 1366 | struct efx_rss_context *ctx) |
Jon Cooper | 267c015 | 2015-05-06 00:59:38 +0100 | [diff] [blame] | 1367 | { |
| 1368 | size_t i; |
| 1369 | |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 1370 | for (i = 0; i < ARRAY_SIZE(ctx->rx_indir_table); i++) |
| 1371 | ctx->rx_indir_table[i] = |
Jon Cooper | 267c015 | 2015-05-06 00:59:38 +0100 | [diff] [blame] | 1372 | ethtool_rxfh_indir_default(i, efx->rss_spread); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1373 | } |
| 1374 | |
Ben Hutchings | a9a52506 | 2012-02-14 20:15:57 +0000 | [diff] [blame] | 1375 | static unsigned int efx_wanted_parallelism(struct efx_nic *efx) |
Ben Hutchings | 46123d0 | 2008-09-01 12:47:33 +0100 | [diff] [blame] | 1376 | { |
Ben Hutchings | cdb08f8 | 2011-12-20 01:08:05 +0000 | [diff] [blame] | 1377 | cpumask_var_t thread_mask; |
Ben Hutchings | a16e5b2 | 2012-02-14 00:40:12 +0000 | [diff] [blame] | 1378 | unsigned int count; |
Ben Hutchings | 46123d0 | 2008-09-01 12:47:33 +0100 | [diff] [blame] | 1379 | int cpu; |
| 1380 | |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1381 | if (rss_cpus) { |
| 1382 | count = rss_cpus; |
| 1383 | } else { |
| 1384 | if (unlikely(!zalloc_cpumask_var(&thread_mask, GFP_KERNEL))) { |
| 1385 | netif_warn(efx, probe, efx->net_dev, |
| 1386 | "RSS disabled due to allocation failure\n"); |
| 1387 | return 1; |
Ben Hutchings | 46123d0 | 2008-09-01 12:47:33 +0100 | [diff] [blame] | 1388 | } |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1389 | |
| 1390 | count = 0; |
| 1391 | for_each_online_cpu(cpu) { |
| 1392 | if (!cpumask_test_cpu(cpu, thread_mask)) { |
| 1393 | ++count; |
| 1394 | cpumask_or(thread_mask, thread_mask, |
Bartosz Golaszewski | 06931e6 | 2015-05-26 15:11:28 +0200 | [diff] [blame] | 1395 | topology_sibling_cpumask(cpu)); |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1396 | } |
| 1397 | } |
| 1398 | |
| 1399 | free_cpumask_var(thread_mask); |
Ben Hutchings | 46123d0 | 2008-09-01 12:47:33 +0100 | [diff] [blame] | 1400 | } |
| 1401 | |
Bert Kenward | 271a8b4 | 2017-04-12 17:06:52 +0100 | [diff] [blame] | 1402 | if (count > EFX_MAX_RX_QUEUES) { |
| 1403 | netif_cond_dbg(efx, probe, efx->net_dev, !rss_cpus, warn, |
| 1404 | "Reducing number of rx queues from %u to %u.\n", |
| 1405 | count, EFX_MAX_RX_QUEUES); |
| 1406 | count = EFX_MAX_RX_QUEUES; |
| 1407 | } |
| 1408 | |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1409 | /* If RSS is requested for the PF *and* VFs then we can't write RSS |
| 1410 | * table entries that are inaccessible to VFs |
| 1411 | */ |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 1412 | #ifdef CONFIG_SFC_SRIOV |
| 1413 | if (efx->type->sriov_wanted) { |
| 1414 | if (efx->type->sriov_wanted(efx) && efx_vf_size(efx) > 1 && |
| 1415 | count > efx_vf_size(efx)) { |
| 1416 | netif_warn(efx, probe, efx->net_dev, |
| 1417 | "Reducing number of RSS channels from %u to %u for " |
| 1418 | "VF support. Increase vf-msix-limit to use more " |
| 1419 | "channels on the PF.\n", |
| 1420 | count, efx_vf_size(efx)); |
| 1421 | count = efx_vf_size(efx); |
| 1422 | } |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1423 | } |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 1424 | #endif |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1425 | |
Ben Hutchings | 46123d0 | 2008-09-01 12:47:33 +0100 | [diff] [blame] | 1426 | return count; |
| 1427 | } |
| 1428 | |
| 1429 | /* Probe the number and type of interrupts we are able to obtain, and |
| 1430 | * the resulting numbers of channels and RX queues. |
| 1431 | */ |
Ben Hutchings | 64d8ad6 | 2011-01-05 00:50:41 +0000 | [diff] [blame] | 1432 | static int efx_probe_interrupts(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1433 | { |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1434 | unsigned int extra_channels = 0; |
| 1435 | unsigned int i, j; |
Ben Hutchings | a16e5b2 | 2012-02-14 00:40:12 +0000 | [diff] [blame] | 1436 | int rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1437 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1438 | for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) |
| 1439 | if (efx->extra_channel_type[i]) |
| 1440 | ++extra_channels; |
| 1441 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1442 | if (efx->interrupt_mode == EFX_INT_MODE_MSIX) { |
Ben Hutchings | 46123d0 | 2008-09-01 12:47:33 +0100 | [diff] [blame] | 1443 | struct msix_entry xentries[EFX_MAX_CHANNELS]; |
Ben Hutchings | a16e5b2 | 2012-02-14 00:40:12 +0000 | [diff] [blame] | 1444 | unsigned int n_channels; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1445 | |
Ben Hutchings | a9a52506 | 2012-02-14 20:15:57 +0000 | [diff] [blame] | 1446 | n_channels = efx_wanted_parallelism(efx); |
Shradha Shah | b0fbdae | 2015-08-28 10:55:42 +0100 | [diff] [blame] | 1447 | if (efx_separate_tx_channels) |
Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 1448 | n_channels *= 2; |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1449 | n_channels += extra_channels; |
Ben Hutchings | b105798 | 2012-09-19 00:56:47 +0100 | [diff] [blame] | 1450 | n_channels = min(n_channels, efx->max_channels); |
Ben Hutchings | aa6ef27 | 2008-07-18 19:03:10 +0100 | [diff] [blame] | 1451 | |
Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 1452 | for (i = 0; i < n_channels; i++) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1453 | xentries[i].entry = i; |
Alexander Gordeev | 184603d | 2014-02-18 11:12:00 +0100 | [diff] [blame] | 1454 | rc = pci_enable_msix_range(efx->pci_dev, |
| 1455 | xentries, 1, n_channels); |
| 1456 | if (rc < 0) { |
| 1457 | /* Fall back to single channel MSI */ |
Alexander Gordeev | 184603d | 2014-02-18 11:12:00 +0100 | [diff] [blame] | 1458 | netif_err(efx, drv, efx->net_dev, |
| 1459 | "could not enable MSI-X\n"); |
Andrew Rybchenko | 62980cb | 2017-02-13 14:59:04 +0000 | [diff] [blame] | 1460 | if (efx->type->min_interrupt_mode >= EFX_INT_MODE_MSI) |
| 1461 | efx->interrupt_mode = EFX_INT_MODE_MSI; |
| 1462 | else |
| 1463 | return rc; |
Alexander Gordeev | 184603d | 2014-02-18 11:12:00 +0100 | [diff] [blame] | 1464 | } else if (rc < n_channels) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1465 | netif_err(efx, drv, efx->net_dev, |
| 1466 | "WARNING: Insufficient MSI-X vectors" |
Ben Hutchings | a16e5b2 | 2012-02-14 00:40:12 +0000 | [diff] [blame] | 1467 | " available (%d < %u).\n", rc, n_channels); |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1468 | netif_err(efx, drv, efx->net_dev, |
| 1469 | "WARNING: Performance may be reduced.\n"); |
Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 1470 | n_channels = rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1471 | } |
| 1472 | |
Alexander Gordeev | 184603d | 2014-02-18 11:12:00 +0100 | [diff] [blame] | 1473 | if (rc > 0) { |
Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 1474 | efx->n_channels = n_channels; |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1475 | if (n_channels > extra_channels) |
| 1476 | n_channels -= extra_channels; |
Shradha Shah | b0fbdae | 2015-08-28 10:55:42 +0100 | [diff] [blame] | 1477 | if (efx_separate_tx_channels) { |
| 1478 | efx->n_tx_channels = min(max(n_channels / 2, |
| 1479 | 1U), |
| 1480 | efx->max_tx_channels); |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1481 | efx->n_rx_channels = max(n_channels - |
| 1482 | efx->n_tx_channels, |
| 1483 | 1U); |
Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 1484 | } else { |
Shradha Shah | b0fbdae | 2015-08-28 10:55:42 +0100 | [diff] [blame] | 1485 | efx->n_tx_channels = min(n_channels, |
| 1486 | efx->max_tx_channels); |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1487 | efx->n_rx_channels = n_channels; |
Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 1488 | } |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1489 | for (i = 0; i < efx->n_channels; i++) |
Ben Hutchings | f7d12cd | 2010-09-10 06:41:47 +0000 | [diff] [blame] | 1490 | efx_get_channel(efx, i)->irq = |
| 1491 | xentries[i].vector; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1492 | } |
| 1493 | } |
| 1494 | |
| 1495 | /* Try single interrupt MSI */ |
| 1496 | if (efx->interrupt_mode == EFX_INT_MODE_MSI) { |
Neil Turton | 28b581a | 2008-12-12 21:41:06 -0800 | [diff] [blame] | 1497 | efx->n_channels = 1; |
Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 1498 | efx->n_rx_channels = 1; |
| 1499 | efx->n_tx_channels = 1; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1500 | rc = pci_enable_msi(efx->pci_dev); |
| 1501 | if (rc == 0) { |
Ben Hutchings | f7d12cd | 2010-09-10 06:41:47 +0000 | [diff] [blame] | 1502 | efx_get_channel(efx, 0)->irq = efx->pci_dev->irq; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1503 | } else { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1504 | netif_err(efx, drv, efx->net_dev, |
| 1505 | "could not enable MSI\n"); |
Andrew Rybchenko | 62980cb | 2017-02-13 14:59:04 +0000 | [diff] [blame] | 1506 | if (efx->type->min_interrupt_mode >= EFX_INT_MODE_LEGACY) |
| 1507 | efx->interrupt_mode = EFX_INT_MODE_LEGACY; |
| 1508 | else |
| 1509 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1510 | } |
| 1511 | } |
| 1512 | |
| 1513 | /* Assume legacy interrupts */ |
| 1514 | if (efx->interrupt_mode == EFX_INT_MODE_LEGACY) { |
Shradha Shah | b0fbdae | 2015-08-28 10:55:42 +0100 | [diff] [blame] | 1515 | efx->n_channels = 1 + (efx_separate_tx_channels ? 1 : 0); |
Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 1516 | efx->n_rx_channels = 1; |
| 1517 | efx->n_tx_channels = 1; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1518 | efx->legacy_irq = efx->pci_dev->irq; |
| 1519 | } |
Ben Hutchings | 64d8ad6 | 2011-01-05 00:50:41 +0000 | [diff] [blame] | 1520 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1521 | /* Assign extra channels if possible */ |
Edward Cree | 2935e3c | 2018-01-25 17:26:06 +0000 | [diff] [blame] | 1522 | efx->n_extra_tx_channels = 0; |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1523 | j = efx->n_channels; |
| 1524 | for (i = 0; i < EFX_MAX_EXTRA_CHANNELS; i++) { |
| 1525 | if (!efx->extra_channel_type[i]) |
| 1526 | continue; |
| 1527 | if (efx->interrupt_mode != EFX_INT_MODE_MSIX || |
| 1528 | efx->n_channels <= extra_channels) { |
| 1529 | efx->extra_channel_type[i]->handle_no_channel(efx); |
| 1530 | } else { |
| 1531 | --j; |
| 1532 | efx_get_channel(efx, j)->type = |
| 1533 | efx->extra_channel_type[i]; |
Edward Cree | 2935e3c | 2018-01-25 17:26:06 +0000 | [diff] [blame] | 1534 | if (efx_channel_has_tx_queues(efx_get_channel(efx, j))) |
| 1535 | efx->n_extra_tx_channels++; |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1536 | } |
| 1537 | } |
| 1538 | |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1539 | /* RSS might be usable on VFs even if it is disabled on the PF */ |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 1540 | #ifdef CONFIG_SFC_SRIOV |
| 1541 | if (efx->type->sriov_wanted) { |
| 1542 | efx->rss_spread = ((efx->n_rx_channels > 1 || |
| 1543 | !efx->type->sriov_wanted(efx)) ? |
| 1544 | efx->n_rx_channels : efx_vf_size(efx)); |
| 1545 | return 0; |
| 1546 | } |
| 1547 | #endif |
| 1548 | efx->rss_spread = efx->n_rx_channels; |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 1549 | |
Ben Hutchings | 64d8ad6 | 2011-01-05 00:50:41 +0000 | [diff] [blame] | 1550 | return 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1551 | } |
| 1552 | |
Bert Kenward | a83762d | 2018-04-19 17:37:25 +0100 | [diff] [blame] | 1553 | #if defined(CONFIG_SMP) |
| 1554 | static void efx_set_interrupt_affinity(struct efx_nic *efx) |
| 1555 | { |
| 1556 | struct efx_channel *channel; |
| 1557 | unsigned int cpu; |
| 1558 | |
| 1559 | efx_for_each_channel(channel, efx) { |
| 1560 | cpu = cpumask_local_spread(channel->channel, |
| 1561 | pcibus_to_node(efx->pci_dev->bus)); |
| 1562 | irq_set_affinity_hint(channel->irq, cpumask_of(cpu)); |
| 1563 | } |
| 1564 | } |
| 1565 | |
| 1566 | static void efx_clear_interrupt_affinity(struct efx_nic *efx) |
| 1567 | { |
| 1568 | struct efx_channel *channel; |
| 1569 | |
| 1570 | efx_for_each_channel(channel, efx) |
| 1571 | irq_set_affinity_hint(channel->irq, NULL); |
| 1572 | } |
| 1573 | #else |
| 1574 | static void |
| 1575 | efx_set_interrupt_affinity(struct efx_nic *efx __attribute__ ((unused))) |
| 1576 | { |
| 1577 | } |
| 1578 | |
| 1579 | static void |
| 1580 | efx_clear_interrupt_affinity(struct efx_nic *efx __attribute__ ((unused))) |
| 1581 | { |
| 1582 | } |
| 1583 | #endif /* CONFIG_SMP */ |
| 1584 | |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 1585 | static int efx_soft_enable_interrupts(struct efx_nic *efx) |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1586 | { |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 1587 | struct efx_channel *channel, *end_channel; |
| 1588 | int rc; |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1589 | |
| 1590 | BUG_ON(efx->state == STATE_DISABLED); |
| 1591 | |
| 1592 | efx->irq_soft_enabled = true; |
| 1593 | smp_wmb(); |
| 1594 | |
| 1595 | efx_for_each_channel(channel, efx) { |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 1596 | if (!channel->type->keep_eventq) { |
| 1597 | rc = efx_init_eventq(channel); |
| 1598 | if (rc) |
| 1599 | goto fail; |
| 1600 | } |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1601 | efx_start_eventq(channel); |
| 1602 | } |
| 1603 | |
| 1604 | efx_mcdi_mode_event(efx); |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 1605 | |
| 1606 | return 0; |
| 1607 | fail: |
| 1608 | end_channel = channel; |
| 1609 | efx_for_each_channel(channel, efx) { |
| 1610 | if (channel == end_channel) |
| 1611 | break; |
| 1612 | efx_stop_eventq(channel); |
| 1613 | if (!channel->type->keep_eventq) |
| 1614 | efx_fini_eventq(channel); |
| 1615 | } |
| 1616 | |
| 1617 | return rc; |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1618 | } |
| 1619 | |
| 1620 | static void efx_soft_disable_interrupts(struct efx_nic *efx) |
| 1621 | { |
| 1622 | struct efx_channel *channel; |
| 1623 | |
| 1624 | if (efx->state == STATE_DISABLED) |
| 1625 | return; |
| 1626 | |
| 1627 | efx_mcdi_mode_poll(efx); |
| 1628 | |
| 1629 | efx->irq_soft_enabled = false; |
| 1630 | smp_wmb(); |
| 1631 | |
| 1632 | if (efx->legacy_irq) |
| 1633 | synchronize_irq(efx->legacy_irq); |
| 1634 | |
| 1635 | efx_for_each_channel(channel, efx) { |
| 1636 | if (channel->irq) |
| 1637 | synchronize_irq(channel->irq); |
| 1638 | |
| 1639 | efx_stop_eventq(channel); |
| 1640 | if (!channel->type->keep_eventq) |
| 1641 | efx_fini_eventq(channel); |
| 1642 | } |
Ben Hutchings | cade715 | 2013-08-27 23:12:31 +0100 | [diff] [blame] | 1643 | |
| 1644 | /* Flush the asynchronous MCDI request queue */ |
| 1645 | efx_mcdi_flush_async(efx); |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1646 | } |
| 1647 | |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 1648 | static int efx_enable_interrupts(struct efx_nic *efx) |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1649 | { |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 1650 | struct efx_channel *channel, *end_channel; |
| 1651 | int rc; |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1652 | |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 1653 | BUG_ON(efx->state == STATE_DISABLED); |
| 1654 | |
Alexandre Rames | b28405b | 2013-03-21 16:41:43 +0000 | [diff] [blame] | 1655 | if (efx->eeh_disabled_legacy_irq) { |
| 1656 | enable_irq(efx->legacy_irq); |
| 1657 | efx->eeh_disabled_legacy_irq = false; |
| 1658 | } |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1659 | |
Ben Hutchings | 86094f7 | 2013-08-21 19:51:04 +0100 | [diff] [blame] | 1660 | efx->type->irq_enable_master(efx); |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1661 | |
| 1662 | efx_for_each_channel(channel, efx) { |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 1663 | if (channel->type->keep_eventq) { |
| 1664 | rc = efx_init_eventq(channel); |
| 1665 | if (rc) |
| 1666 | goto fail; |
| 1667 | } |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1668 | } |
| 1669 | |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 1670 | rc = efx_soft_enable_interrupts(efx); |
| 1671 | if (rc) |
| 1672 | goto fail; |
| 1673 | |
| 1674 | return 0; |
| 1675 | |
| 1676 | fail: |
| 1677 | end_channel = channel; |
| 1678 | efx_for_each_channel(channel, efx) { |
| 1679 | if (channel == end_channel) |
| 1680 | break; |
| 1681 | if (channel->type->keep_eventq) |
| 1682 | efx_fini_eventq(channel); |
| 1683 | } |
| 1684 | |
| 1685 | efx->type->irq_disable_non_ev(efx); |
| 1686 | |
| 1687 | return rc; |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1688 | } |
| 1689 | |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1690 | static void efx_disable_interrupts(struct efx_nic *efx) |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1691 | { |
| 1692 | struct efx_channel *channel; |
| 1693 | |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1694 | efx_soft_disable_interrupts(efx); |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1695 | |
| 1696 | efx_for_each_channel(channel, efx) { |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1697 | if (channel->type->keep_eventq) |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1698 | efx_fini_eventq(channel); |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1699 | } |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 1700 | |
Ben Hutchings | 86094f7 | 2013-08-21 19:51:04 +0100 | [diff] [blame] | 1701 | efx->type->irq_disable_non_ev(efx); |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1702 | } |
| 1703 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1704 | static void efx_remove_interrupts(struct efx_nic *efx) |
| 1705 | { |
| 1706 | struct efx_channel *channel; |
| 1707 | |
| 1708 | /* Remove MSI/MSI-X interrupts */ |
Ben Hutchings | 64ee312 | 2008-09-01 12:47:38 +0100 | [diff] [blame] | 1709 | efx_for_each_channel(channel, efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1710 | channel->irq = 0; |
| 1711 | pci_disable_msi(efx->pci_dev); |
| 1712 | pci_disable_msix(efx->pci_dev); |
| 1713 | |
| 1714 | /* Remove legacy interrupt */ |
| 1715 | efx->legacy_irq = 0; |
| 1716 | } |
| 1717 | |
Ben Hutchings | 8831da7 | 2008-09-01 12:47:48 +0100 | [diff] [blame] | 1718 | static void efx_set_channels(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1719 | { |
Ben Hutchings | 602a532 | 2011-05-16 17:32:39 +0100 | [diff] [blame] | 1720 | struct efx_channel *channel; |
| 1721 | struct efx_tx_queue *tx_queue; |
| 1722 | |
Ben Hutchings | 9765343 | 2011-01-12 18:26:56 +0000 | [diff] [blame] | 1723 | efx->tx_channel_offset = |
Shradha Shah | b0fbdae | 2015-08-28 10:55:42 +0100 | [diff] [blame] | 1724 | efx_separate_tx_channels ? |
| 1725 | efx->n_channels - efx->n_tx_channels : 0; |
Ben Hutchings | 602a532 | 2011-05-16 17:32:39 +0100 | [diff] [blame] | 1726 | |
Stuart Hodgson | 79d68b3 | 2012-07-16 17:08:33 +0100 | [diff] [blame] | 1727 | /* We need to mark which channels really have RX and TX |
| 1728 | * queues, and adjust the TX queue numbers if we have separate |
Ben Hutchings | 602a532 | 2011-05-16 17:32:39 +0100 | [diff] [blame] | 1729 | * RX-only and TX-only channels. |
| 1730 | */ |
| 1731 | efx_for_each_channel(channel, efx) { |
Stuart Hodgson | 79d68b3 | 2012-07-16 17:08:33 +0100 | [diff] [blame] | 1732 | if (channel->channel < efx->n_rx_channels) |
| 1733 | channel->rx_queue.core_index = channel->channel; |
| 1734 | else |
| 1735 | channel->rx_queue.core_index = -1; |
| 1736 | |
Ben Hutchings | 602a532 | 2011-05-16 17:32:39 +0100 | [diff] [blame] | 1737 | efx_for_each_channel_tx_queue(tx_queue, channel) |
| 1738 | tx_queue->queue -= (efx->tx_channel_offset * |
| 1739 | EFX_TXQ_TYPES); |
| 1740 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1741 | } |
| 1742 | |
| 1743 | static int efx_probe_nic(struct efx_nic *efx) |
| 1744 | { |
| 1745 | int rc; |
| 1746 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1747 | netif_dbg(efx, probe, efx->net_dev, "creating NIC\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1748 | |
| 1749 | /* Carry out hardware-type specific initialisation */ |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 1750 | rc = efx->type->probe(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1751 | if (rc) |
| 1752 | return rc; |
| 1753 | |
Shradha Shah | b0fbdae | 2015-08-28 10:55:42 +0100 | [diff] [blame] | 1754 | do { |
| 1755 | if (!efx->max_channels || !efx->max_tx_channels) { |
| 1756 | netif_err(efx, drv, efx->net_dev, |
| 1757 | "Insufficient resources to allocate" |
| 1758 | " any channels\n"); |
| 1759 | rc = -ENOSPC; |
| 1760 | goto fail1; |
| 1761 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1762 | |
Shradha Shah | b0fbdae | 2015-08-28 10:55:42 +0100 | [diff] [blame] | 1763 | /* Determine the number of channels and queues by trying |
| 1764 | * to hook in MSI-X interrupts. |
| 1765 | */ |
| 1766 | rc = efx_probe_interrupts(efx); |
| 1767 | if (rc) |
| 1768 | goto fail1; |
Daniel Pieczko | 52ad762 | 2014-04-01 13:10:34 +0100 | [diff] [blame] | 1769 | |
Shradha Shah | b0fbdae | 2015-08-28 10:55:42 +0100 | [diff] [blame] | 1770 | efx_set_channels(efx); |
| 1771 | |
| 1772 | /* dimension_resources can fail with EAGAIN */ |
| 1773 | rc = efx->type->dimension_resources(efx); |
| 1774 | if (rc != 0 && rc != -EAGAIN) |
| 1775 | goto fail2; |
| 1776 | |
| 1777 | if (rc == -EAGAIN) |
| 1778 | /* try again with new max_channels */ |
| 1779 | efx_remove_interrupts(efx); |
| 1780 | |
| 1781 | } while (rc == -EAGAIN); |
Ben Hutchings | 28e47c4 | 2012-02-15 01:58:49 +0000 | [diff] [blame] | 1782 | |
Ben Hutchings | 5d3a6fc | 2010-06-25 07:05:43 +0000 | [diff] [blame] | 1783 | if (efx->n_channels > 1) |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 1784 | netdev_rss_key_fill(efx->rss_context.rx_hash_key, |
| 1785 | sizeof(efx->rss_context.rx_hash_key)); |
| 1786 | efx_set_default_rx_indir_table(efx, &efx->rss_context); |
Ben Hutchings | 5d3a6fc | 2010-06-25 07:05:43 +0000 | [diff] [blame] | 1787 | |
Ben Hutchings | c4f4adc | 2010-09-27 08:31:07 +0000 | [diff] [blame] | 1788 | netif_set_real_num_tx_queues(efx->net_dev, efx->n_tx_channels); |
| 1789 | netif_set_real_num_rx_queues(efx->net_dev, efx->n_rx_channels); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1790 | |
| 1791 | /* Initialise the interrupt moderation settings */ |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 1792 | efx->irq_mod_step_us = DIV_ROUND_UP(efx->timer_quantum_ns, 1000); |
Ben Hutchings | 9e393b3 | 2011-09-05 07:43:04 +0000 | [diff] [blame] | 1793 | efx_init_irq_moderation(efx, tx_irq_mod_usec, rx_irq_mod_usec, true, |
| 1794 | true); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1795 | |
| 1796 | return 0; |
Ben Hutchings | 64d8ad6 | 2011-01-05 00:50:41 +0000 | [diff] [blame] | 1797 | |
Ben Hutchings | c15eed2 | 2013-08-29 00:45:48 +0100 | [diff] [blame] | 1798 | fail2: |
| 1799 | efx_remove_interrupts(efx); |
| 1800 | fail1: |
Ben Hutchings | 64d8ad6 | 2011-01-05 00:50:41 +0000 | [diff] [blame] | 1801 | efx->type->remove(efx); |
| 1802 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1803 | } |
| 1804 | |
| 1805 | static void efx_remove_nic(struct efx_nic *efx) |
| 1806 | { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1807 | netif_dbg(efx, drv, efx->net_dev, "destroying NIC\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1808 | |
| 1809 | efx_remove_interrupts(efx); |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 1810 | efx->type->remove(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1811 | } |
| 1812 | |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1813 | static int efx_probe_filters(struct efx_nic *efx) |
| 1814 | { |
| 1815 | int rc; |
| 1816 | |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1817 | init_rwsem(&efx->filter_sem); |
Martin Habets | d248953 | 2016-06-15 17:48:49 +0100 | [diff] [blame] | 1818 | mutex_lock(&efx->mac_lock); |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1819 | down_write(&efx->filter_sem); |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1820 | rc = efx->type->filter_table_probe(efx); |
| 1821 | if (rc) |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1822 | goto out_unlock; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1823 | |
| 1824 | #ifdef CONFIG_RFS_ACCEL |
| 1825 | if (efx->type->offload_features & NETIF_F_NTUPLE) { |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 1826 | struct efx_channel *channel; |
| 1827 | int i, success = 1; |
| 1828 | |
| 1829 | efx_for_each_channel(channel, efx) { |
| 1830 | channel->rps_flow_id = |
| 1831 | kcalloc(efx->type->max_rx_ip_filters, |
| 1832 | sizeof(*channel->rps_flow_id), |
| 1833 | GFP_KERNEL); |
| 1834 | if (!channel->rps_flow_id) |
| 1835 | success = 0; |
| 1836 | else |
| 1837 | for (i = 0; |
| 1838 | i < efx->type->max_rx_ip_filters; |
| 1839 | ++i) |
| 1840 | channel->rps_flow_id[i] = |
| 1841 | RPS_FLOW_ID_INVALID; |
| 1842 | } |
| 1843 | |
| 1844 | if (!success) { |
| 1845 | efx_for_each_channel(channel, efx) |
| 1846 | kfree(channel->rps_flow_id); |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1847 | efx->type->filter_table_remove(efx); |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1848 | rc = -ENOMEM; |
| 1849 | goto out_unlock; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1850 | } |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 1851 | |
| 1852 | efx->rps_expire_index = efx->rps_expire_channel = 0; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1853 | } |
| 1854 | #endif |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1855 | out_unlock: |
| 1856 | up_write(&efx->filter_sem); |
Martin Habets | d248953 | 2016-06-15 17:48:49 +0100 | [diff] [blame] | 1857 | mutex_unlock(&efx->mac_lock); |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1858 | return rc; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1859 | } |
| 1860 | |
| 1861 | static void efx_remove_filters(struct efx_nic *efx) |
| 1862 | { |
| 1863 | #ifdef CONFIG_RFS_ACCEL |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 1864 | struct efx_channel *channel; |
| 1865 | |
| 1866 | efx_for_each_channel(channel, efx) |
| 1867 | kfree(channel->rps_flow_id); |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1868 | #endif |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1869 | down_write(&efx->filter_sem); |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1870 | efx->type->filter_table_remove(efx); |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1871 | up_write(&efx->filter_sem); |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1872 | } |
| 1873 | |
| 1874 | static void efx_restore_filters(struct efx_nic *efx) |
| 1875 | { |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1876 | down_read(&efx->filter_sem); |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1877 | efx->type->filter_table_restore(efx); |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 1878 | up_read(&efx->filter_sem); |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 1879 | } |
| 1880 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1881 | /************************************************************************** |
| 1882 | * |
| 1883 | * NIC startup/shutdown |
| 1884 | * |
| 1885 | *************************************************************************/ |
| 1886 | |
| 1887 | static int efx_probe_all(struct efx_nic *efx) |
| 1888 | { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1889 | int rc; |
| 1890 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1891 | rc = efx_probe_nic(efx); |
| 1892 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1893 | netif_err(efx, probe, efx->net_dev, "failed to create NIC\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1894 | goto fail1; |
| 1895 | } |
| 1896 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1897 | rc = efx_probe_port(efx); |
| 1898 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1899 | netif_err(efx, probe, efx->net_dev, "failed to create port\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1900 | goto fail2; |
| 1901 | } |
| 1902 | |
Ben Hutchings | 7e6d06f | 2012-07-30 15:57:44 +0000 | [diff] [blame] | 1903 | BUILD_BUG_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_RXQ_MIN_ENT); |
| 1904 | if (WARN_ON(EFX_DEFAULT_DMAQ_SIZE < EFX_TXQ_MIN_ENT(efx))) { |
| 1905 | rc = -EINVAL; |
| 1906 | goto fail3; |
| 1907 | } |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 1908 | efx->rxq_entries = efx->txq_entries = EFX_DEFAULT_DMAQ_SIZE; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1909 | |
Daniel Pieczko | 6d8aaaf | 2015-05-06 00:57:34 +0100 | [diff] [blame] | 1910 | #ifdef CONFIG_SFC_SRIOV |
| 1911 | rc = efx->type->vswitching_probe(efx); |
| 1912 | if (rc) /* not fatal; the PF will still work fine */ |
| 1913 | netif_warn(efx, probe, efx->net_dev, |
| 1914 | "failed to setup vswitching rc=%d;" |
| 1915 | " VFs may not function\n", rc); |
| 1916 | #endif |
| 1917 | |
Ben Hutchings | 64eebcf | 2010-09-20 08:43:07 +0000 | [diff] [blame] | 1918 | rc = efx_probe_filters(efx); |
| 1919 | if (rc) { |
| 1920 | netif_err(efx, probe, efx->net_dev, |
| 1921 | "failed to create filter tables\n"); |
Daniel Pieczko | 6d8aaaf | 2015-05-06 00:57:34 +0100 | [diff] [blame] | 1922 | goto fail4; |
Ben Hutchings | 64eebcf | 2010-09-20 08:43:07 +0000 | [diff] [blame] | 1923 | } |
| 1924 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1925 | rc = efx_probe_channels(efx); |
| 1926 | if (rc) |
Daniel Pieczko | 6d8aaaf | 2015-05-06 00:57:34 +0100 | [diff] [blame] | 1927 | goto fail5; |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1928 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1929 | return 0; |
| 1930 | |
Daniel Pieczko | 6d8aaaf | 2015-05-06 00:57:34 +0100 | [diff] [blame] | 1931 | fail5: |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 1932 | efx_remove_filters(efx); |
Daniel Pieczko | 6d8aaaf | 2015-05-06 00:57:34 +0100 | [diff] [blame] | 1933 | fail4: |
| 1934 | #ifdef CONFIG_SFC_SRIOV |
| 1935 | efx->type->vswitching_remove(efx); |
| 1936 | #endif |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1937 | fail3: |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1938 | efx_remove_port(efx); |
| 1939 | fail2: |
| 1940 | efx_remove_nic(efx); |
| 1941 | fail1: |
| 1942 | return rc; |
| 1943 | } |
| 1944 | |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 1945 | /* If the interface is supposed to be running but is not, start |
| 1946 | * the hardware and software data path, regular activity for the port |
| 1947 | * (MAC statistics, link polling, etc.) and schedule the port to be |
| 1948 | * reconfigured. Interrupts must already be enabled. This function |
| 1949 | * is safe to call multiple times, so long as the NIC is not disabled. |
| 1950 | * Requires the RTNL lock. |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1951 | */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1952 | static void efx_start_all(struct efx_nic *efx) |
| 1953 | { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1954 | EFX_ASSERT_RESET_SERIALISED(efx); |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 1955 | BUG_ON(efx->state == STATE_DISABLED); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1956 | |
| 1957 | /* Check that it is appropriate to restart the interface. All |
| 1958 | * of these flags are safe to read under just the rtnl lock */ |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 1959 | if (efx->port_enabled || !netif_running(efx->net_dev) || |
| 1960 | efx->reset_pending) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1961 | return; |
| 1962 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1963 | efx_start_port(efx); |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 1964 | efx_start_datapath(efx); |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 1965 | |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 1966 | /* Start the hardware monitor if there is one */ |
| 1967 | if (efx->type->monitor != NULL) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1968 | queue_delayed_work(efx->workqueue, &efx->monitor_work, |
| 1969 | efx_monitor_interval); |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 1970 | |
Edward Cree | 5a6681e | 2016-11-28 18:55:34 +0000 | [diff] [blame] | 1971 | /* Link state detection is normally event-driven; we have |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 1972 | * to poll now because we could have missed a change |
| 1973 | */ |
Edward Cree | 5a6681e | 2016-11-28 18:55:34 +0000 | [diff] [blame] | 1974 | mutex_lock(&efx->mac_lock); |
| 1975 | if (efx->phy_op->poll(efx)) |
| 1976 | efx_link_status_changed(efx); |
| 1977 | mutex_unlock(&efx->mac_lock); |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame] | 1978 | |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 1979 | efx->type->start_stats(efx); |
Jon Cooper | f8f3b5a | 2013-09-30 17:36:50 +0100 | [diff] [blame] | 1980 | efx->type->pull_stats(efx); |
| 1981 | spin_lock_bh(&efx->stats_lock); |
| 1982 | efx->type->update_stats(efx, NULL, NULL); |
| 1983 | spin_unlock_bh(&efx->stats_lock); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1984 | } |
| 1985 | |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 1986 | /* Quiesce the hardware and software data path, and regular activity |
| 1987 | * for the port without bringing the link down. Safe to call multiple |
| 1988 | * times with the NIC in almost any state, but interrupts should be |
| 1989 | * enabled. Requires the RTNL lock. |
| 1990 | */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1991 | static void efx_stop_all(struct efx_nic *efx) |
| 1992 | { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1993 | EFX_ASSERT_RESET_SERIALISED(efx); |
| 1994 | |
| 1995 | /* port_enabled can be read safely under the rtnl lock */ |
| 1996 | if (!efx->port_enabled) |
| 1997 | return; |
| 1998 | |
Jon Cooper | f8f3b5a | 2013-09-30 17:36:50 +0100 | [diff] [blame] | 1999 | /* update stats before we go down so we can accurately count |
| 2000 | * rx_nodesc_drops |
| 2001 | */ |
| 2002 | efx->type->pull_stats(efx); |
| 2003 | spin_lock_bh(&efx->stats_lock); |
| 2004 | efx->type->update_stats(efx, NULL, NULL); |
| 2005 | spin_unlock_bh(&efx->stats_lock); |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 2006 | efx->type->stop_stats(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2007 | efx_stop_port(efx); |
| 2008 | |
Ben Hutchings | 29c69a4 | 2013-01-28 19:01:06 +0000 | [diff] [blame] | 2009 | /* Stop the kernel transmit interface. This is only valid if |
| 2010 | * the device is stopped or detached; otherwise the watchdog |
| 2011 | * may fire immediately. |
| 2012 | */ |
| 2013 | WARN_ON(netif_running(efx->net_dev) && |
| 2014 | netif_device_present(efx->net_dev)); |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 2015 | netif_tx_disable(efx->net_dev); |
| 2016 | |
| 2017 | efx_stop_datapath(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2018 | } |
| 2019 | |
| 2020 | static void efx_remove_all(struct efx_nic *efx) |
| 2021 | { |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 2022 | efx_remove_channels(efx); |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 2023 | efx_remove_filters(efx); |
Daniel Pieczko | 6d8aaaf | 2015-05-06 00:57:34 +0100 | [diff] [blame] | 2024 | #ifdef CONFIG_SFC_SRIOV |
| 2025 | efx->type->vswitching_remove(efx); |
| 2026 | #endif |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2027 | efx_remove_port(efx); |
| 2028 | efx_remove_nic(efx); |
| 2029 | } |
| 2030 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2031 | /************************************************************************** |
| 2032 | * |
| 2033 | * Interrupt moderation |
| 2034 | * |
| 2035 | **************************************************************************/ |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2036 | unsigned int efx_usecs_to_ticks(struct efx_nic *efx, unsigned int usecs) |
Ben Hutchings | 0d86ebd | 2009-10-23 08:32:13 +0000 | [diff] [blame] | 2037 | { |
Ben Hutchings | b548f97 | 2011-09-05 07:41:44 +0000 | [diff] [blame] | 2038 | if (usecs == 0) |
| 2039 | return 0; |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2040 | if (usecs * 1000 < efx->timer_quantum_ns) |
Ben Hutchings | 0d86ebd | 2009-10-23 08:32:13 +0000 | [diff] [blame] | 2041 | return 1; /* never round down to 0 */ |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2042 | return usecs * 1000 / efx->timer_quantum_ns; |
| 2043 | } |
| 2044 | |
| 2045 | unsigned int efx_ticks_to_usecs(struct efx_nic *efx, unsigned int ticks) |
| 2046 | { |
| 2047 | /* We must round up when converting ticks to microseconds |
| 2048 | * because we round down when converting the other way. |
| 2049 | */ |
| 2050 | return DIV_ROUND_UP(ticks * efx->timer_quantum_ns, 1000); |
Ben Hutchings | 0d86ebd | 2009-10-23 08:32:13 +0000 | [diff] [blame] | 2051 | } |
| 2052 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2053 | /* Set interrupt moderation parameters */ |
Ben Hutchings | 9e393b3 | 2011-09-05 07:43:04 +0000 | [diff] [blame] | 2054 | int efx_init_irq_moderation(struct efx_nic *efx, unsigned int tx_usecs, |
| 2055 | unsigned int rx_usecs, bool rx_adaptive, |
| 2056 | bool rx_may_override_tx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2057 | { |
Ben Hutchings | f7d12cd | 2010-09-10 06:41:47 +0000 | [diff] [blame] | 2058 | struct efx_channel *channel; |
Bert Kenward | d95e329 | 2016-08-11 13:02:36 +0100 | [diff] [blame] | 2059 | unsigned int timer_max_us; |
| 2060 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2061 | EFX_ASSERT_RESET_SERIALISED(efx); |
| 2062 | |
Bert Kenward | d95e329 | 2016-08-11 13:02:36 +0100 | [diff] [blame] | 2063 | timer_max_us = efx->timer_max_ns / 1000; |
| 2064 | |
| 2065 | if (tx_usecs > timer_max_us || rx_usecs > timer_max_us) |
Ben Hutchings | 9e393b3 | 2011-09-05 07:43:04 +0000 | [diff] [blame] | 2066 | return -EINVAL; |
| 2067 | |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2068 | if (tx_usecs != rx_usecs && efx->tx_channel_offset == 0 && |
Ben Hutchings | 9e393b3 | 2011-09-05 07:43:04 +0000 | [diff] [blame] | 2069 | !rx_may_override_tx) { |
| 2070 | netif_err(efx, drv, efx->net_dev, "Channels are shared. " |
| 2071 | "RX and TX IRQ moderation must be equal\n"); |
| 2072 | return -EINVAL; |
| 2073 | } |
| 2074 | |
Ben Hutchings | 6fb70fd | 2009-03-20 13:30:37 +0000 | [diff] [blame] | 2075 | efx->irq_rx_adaptive = rx_adaptive; |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2076 | efx->irq_rx_moderation_us = rx_usecs; |
Ben Hutchings | f7d12cd | 2010-09-10 06:41:47 +0000 | [diff] [blame] | 2077 | efx_for_each_channel(channel, efx) { |
Ben Hutchings | 525da90 | 2011-02-07 23:04:38 +0000 | [diff] [blame] | 2078 | if (efx_channel_has_rx_queue(channel)) |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2079 | channel->irq_moderation_us = rx_usecs; |
Ben Hutchings | 525da90 | 2011-02-07 23:04:38 +0000 | [diff] [blame] | 2080 | else if (efx_channel_has_tx_queues(channel)) |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2081 | channel->irq_moderation_us = tx_usecs; |
Ben Hutchings | f7d12cd | 2010-09-10 06:41:47 +0000 | [diff] [blame] | 2082 | } |
Ben Hutchings | 9e393b3 | 2011-09-05 07:43:04 +0000 | [diff] [blame] | 2083 | |
| 2084 | return 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2085 | } |
| 2086 | |
Ben Hutchings | a0c4faf | 2011-09-05 07:42:25 +0000 | [diff] [blame] | 2087 | void efx_get_irq_moderation(struct efx_nic *efx, unsigned int *tx_usecs, |
| 2088 | unsigned int *rx_usecs, bool *rx_adaptive) |
| 2089 | { |
| 2090 | *rx_adaptive = efx->irq_rx_adaptive; |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2091 | *rx_usecs = efx->irq_rx_moderation_us; |
Ben Hutchings | a0c4faf | 2011-09-05 07:42:25 +0000 | [diff] [blame] | 2092 | |
| 2093 | /* If channels are shared between RX and TX, so is IRQ |
| 2094 | * moderation. Otherwise, IRQ moderation is the same for all |
| 2095 | * TX channels and is not adaptive. |
| 2096 | */ |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2097 | if (efx->tx_channel_offset == 0) { |
Ben Hutchings | a0c4faf | 2011-09-05 07:42:25 +0000 | [diff] [blame] | 2098 | *tx_usecs = *rx_usecs; |
Bert Kenward | 539de7c | 2016-08-11 13:02:09 +0100 | [diff] [blame] | 2099 | } else { |
| 2100 | struct efx_channel *tx_channel; |
| 2101 | |
| 2102 | tx_channel = efx->channel[efx->tx_channel_offset]; |
| 2103 | *tx_usecs = tx_channel->irq_moderation_us; |
| 2104 | } |
Ben Hutchings | a0c4faf | 2011-09-05 07:42:25 +0000 | [diff] [blame] | 2105 | } |
| 2106 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2107 | /************************************************************************** |
| 2108 | * |
| 2109 | * Hardware monitor |
| 2110 | * |
| 2111 | **************************************************************************/ |
| 2112 | |
Ben Hutchings | e254c27 | 2010-09-20 08:44:10 +0000 | [diff] [blame] | 2113 | /* Run periodically off the general workqueue */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2114 | static void efx_monitor(struct work_struct *data) |
| 2115 | { |
| 2116 | struct efx_nic *efx = container_of(data, struct efx_nic, |
| 2117 | monitor_work.work); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2118 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2119 | netif_vdbg(efx, timer, efx->net_dev, |
| 2120 | "hardware monitor executing on CPU %d\n", |
| 2121 | raw_smp_processor_id()); |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 2122 | BUG_ON(efx->type->monitor == NULL); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2123 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2124 | /* If the mac_lock is already held then it is likely a port |
| 2125 | * reconfiguration is already in place, which will likely do |
Ben Hutchings | e254c27 | 2010-09-20 08:44:10 +0000 | [diff] [blame] | 2126 | * most of the work of monitor() anyway. */ |
| 2127 | if (mutex_trylock(&efx->mac_lock)) { |
| 2128 | if (efx->port_enabled) |
| 2129 | efx->type->monitor(efx); |
| 2130 | mutex_unlock(&efx->mac_lock); |
| 2131 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2132 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2133 | queue_delayed_work(efx->workqueue, &efx->monitor_work, |
| 2134 | efx_monitor_interval); |
| 2135 | } |
| 2136 | |
| 2137 | /************************************************************************** |
| 2138 | * |
| 2139 | * ioctls |
| 2140 | * |
| 2141 | *************************************************************************/ |
| 2142 | |
| 2143 | /* Net device ioctl |
| 2144 | * Context: process, rtnl_lock() held. |
| 2145 | */ |
| 2146 | static int efx_ioctl(struct net_device *net_dev, struct ifreq *ifr, int cmd) |
| 2147 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2148 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 2149 | struct mii_ioctl_data *data = if_mii(ifr); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2150 | |
Stuart Hodgson | 7c236c4 | 2012-09-03 11:09:36 +0100 | [diff] [blame] | 2151 | if (cmd == SIOCSHWTSTAMP) |
Ben Hutchings | 433dc9b | 2013-11-14 01:26:21 +0000 | [diff] [blame] | 2152 | return efx_ptp_set_ts_config(efx, ifr); |
| 2153 | if (cmd == SIOCGHWTSTAMP) |
| 2154 | return efx_ptp_get_ts_config(efx, ifr); |
Stuart Hodgson | 7c236c4 | 2012-09-03 11:09:36 +0100 | [diff] [blame] | 2155 | |
Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 2156 | /* Convert phy_id from older PRTAD/DEVAD format */ |
| 2157 | if ((cmd == SIOCGMIIREG || cmd == SIOCSMIIREG) && |
| 2158 | (data->phy_id & 0xfc00) == 0x0400) |
| 2159 | data->phy_id ^= MDIO_PHY_ID_C45 | 0x0400; |
| 2160 | |
| 2161 | return mdio_mii_ioctl(&efx->mdio, data, cmd); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2162 | } |
| 2163 | |
| 2164 | /************************************************************************** |
| 2165 | * |
| 2166 | * NAPI interface |
| 2167 | * |
| 2168 | **************************************************************************/ |
| 2169 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 2170 | static void efx_init_napi_channel(struct efx_channel *channel) |
| 2171 | { |
| 2172 | struct efx_nic *efx = channel->efx; |
| 2173 | |
| 2174 | channel->napi_dev = efx->net_dev; |
| 2175 | netif_napi_add(channel->napi_dev, &channel->napi_str, |
| 2176 | efx_poll, napi_weight); |
| 2177 | } |
| 2178 | |
Ben Hutchings | e8f1499 | 2010-12-07 19:47:34 +0000 | [diff] [blame] | 2179 | static void efx_init_napi(struct efx_nic *efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2180 | { |
| 2181 | struct efx_channel *channel; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2182 | |
Ben Hutchings | 7f967c0 | 2012-02-13 23:45:02 +0000 | [diff] [blame] | 2183 | efx_for_each_channel(channel, efx) |
| 2184 | efx_init_napi_channel(channel); |
Ben Hutchings | e8f1499 | 2010-12-07 19:47:34 +0000 | [diff] [blame] | 2185 | } |
| 2186 | |
| 2187 | static void efx_fini_napi_channel(struct efx_channel *channel) |
| 2188 | { |
Eric Dumazet | 973334a | 2016-11-16 06:01:47 -0800 | [diff] [blame] | 2189 | if (channel->napi_dev) |
Ben Hutchings | e8f1499 | 2010-12-07 19:47:34 +0000 | [diff] [blame] | 2190 | netif_napi_del(&channel->napi_str); |
Eric Dumazet | 973334a | 2016-11-16 06:01:47 -0800 | [diff] [blame] | 2191 | |
Ben Hutchings | e8f1499 | 2010-12-07 19:47:34 +0000 | [diff] [blame] | 2192 | channel->napi_dev = NULL; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2193 | } |
| 2194 | |
| 2195 | static void efx_fini_napi(struct efx_nic *efx) |
| 2196 | { |
| 2197 | struct efx_channel *channel; |
| 2198 | |
Ben Hutchings | e8f1499 | 2010-12-07 19:47:34 +0000 | [diff] [blame] | 2199 | efx_for_each_channel(channel, efx) |
| 2200 | efx_fini_napi_channel(channel); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2201 | } |
| 2202 | |
| 2203 | /************************************************************************** |
| 2204 | * |
| 2205 | * Kernel netpoll interface |
| 2206 | * |
| 2207 | *************************************************************************/ |
| 2208 | |
| 2209 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 2210 | |
| 2211 | /* Although in the common case interrupts will be disabled, this is not |
| 2212 | * guaranteed. However, all our work happens inside the NAPI callback, |
| 2213 | * so no locking is required. |
| 2214 | */ |
| 2215 | static void efx_netpoll(struct net_device *net_dev) |
| 2216 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2217 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2218 | struct efx_channel *channel; |
| 2219 | |
Ben Hutchings | 64ee312 | 2008-09-01 12:47:38 +0100 | [diff] [blame] | 2220 | efx_for_each_channel(channel, efx) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2221 | efx_schedule_channel(channel); |
| 2222 | } |
| 2223 | |
| 2224 | #endif |
| 2225 | |
| 2226 | /************************************************************************** |
| 2227 | * |
| 2228 | * Kernel net device interface |
| 2229 | * |
| 2230 | *************************************************************************/ |
| 2231 | |
| 2232 | /* Context: process, rtnl_lock() held. */ |
Shradha Shah | e340be9 | 2015-05-20 11:11:03 +0100 | [diff] [blame] | 2233 | int efx_net_open(struct net_device *net_dev) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2234 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2235 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 2236 | int rc; |
| 2237 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2238 | netif_dbg(efx, ifup, efx->net_dev, "opening device on CPU %d\n", |
| 2239 | raw_smp_processor_id()); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2240 | |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 2241 | rc = efx_check_disabled(efx); |
| 2242 | if (rc) |
| 2243 | return rc; |
Ben Hutchings | f8b87c1 | 2008-09-01 12:48:17 +0100 | [diff] [blame] | 2244 | if (efx->phy_mode & PHY_MODE_SPECIAL) |
| 2245 | return -EBUSY; |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 2246 | if (efx_mcdi_poll_reboot(efx) && efx_reset(efx, RESET_TYPE_ALL)) |
| 2247 | return -EIO; |
Ben Hutchings | f8b87c1 | 2008-09-01 12:48:17 +0100 | [diff] [blame] | 2248 | |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 2249 | /* Notify the kernel of the link state polled during driver load, |
| 2250 | * before the monitor starts running */ |
| 2251 | efx_link_status_changed(efx); |
| 2252 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2253 | efx_start_all(efx); |
Peter Dunning | 9c568fd | 2017-02-17 15:50:43 +0000 | [diff] [blame] | 2254 | if (efx->state == STATE_DISABLED || efx->reset_pending) |
| 2255 | netif_device_detach(efx->net_dev); |
Ben Hutchings | dd40781 | 2012-02-28 23:40:21 +0000 | [diff] [blame] | 2256 | efx_selftest_async_start(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2257 | return 0; |
| 2258 | } |
| 2259 | |
| 2260 | /* Context: process, rtnl_lock() held. |
| 2261 | * Note that the kernel will ignore our return code; this method |
| 2262 | * should really be a void. |
| 2263 | */ |
Shradha Shah | e340be9 | 2015-05-20 11:11:03 +0100 | [diff] [blame] | 2264 | int efx_net_stop(struct net_device *net_dev) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2265 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2266 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2267 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2268 | netif_dbg(efx, ifdown, efx->net_dev, "closing on CPU %d\n", |
| 2269 | raw_smp_processor_id()); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2270 | |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 2271 | /* Stop the device and flush all the channels */ |
| 2272 | efx_stop_all(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2273 | |
| 2274 | return 0; |
| 2275 | } |
| 2276 | |
Ben Hutchings | 5b9e207 | 2008-05-16 21:18:14 +0100 | [diff] [blame] | 2277 | /* Context: process, dev_base_lock or RTNL held, non-blocking. */ |
stephen hemminger | bc1f447 | 2017-01-06 19:12:52 -0800 | [diff] [blame] | 2278 | static void efx_net_stats(struct net_device *net_dev, |
| 2279 | struct rtnl_link_stats64 *stats) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2280 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2281 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2282 | |
Ben Hutchings | 55edc6e | 2009-11-25 16:11:35 +0000 | [diff] [blame] | 2283 | spin_lock_bh(&efx->stats_lock); |
Ben Hutchings | cd0ecc9 | 2012-12-14 21:52:56 +0000 | [diff] [blame] | 2284 | efx->type->update_stats(efx, NULL, stats); |
Ben Hutchings | 1cb3452 | 2011-09-02 23:23:00 +0100 | [diff] [blame] | 2285 | spin_unlock_bh(&efx->stats_lock); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2286 | } |
| 2287 | |
| 2288 | /* Context: netif_tx_lock held, BHs disabled. */ |
| 2289 | static void efx_watchdog(struct net_device *net_dev) |
| 2290 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2291 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2292 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2293 | netif_err(efx, tx_err, efx->net_dev, |
| 2294 | "TX stuck with port_enabled=%d: resetting channels\n", |
| 2295 | efx->port_enabled); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2296 | |
Ben Hutchings | 739bb23d | 2008-11-04 20:35:36 +0000 | [diff] [blame] | 2297 | efx_schedule_reset(efx, RESET_TYPE_TX_WATCHDOG); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2298 | } |
| 2299 | |
| 2300 | |
| 2301 | /* Context: process, rtnl_lock() held. */ |
| 2302 | static int efx_change_mtu(struct net_device *net_dev, int new_mtu) |
| 2303 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2304 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 2305 | int rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2306 | |
Ben Hutchings | 8b7325b | 2012-07-27 20:46:41 +0100 | [diff] [blame] | 2307 | rc = efx_check_disabled(efx); |
| 2308 | if (rc) |
| 2309 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2310 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2311 | netif_dbg(efx, drv, efx->net_dev, "changing MTU to %d\n", new_mtu); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2312 | |
Ben Hutchings | 29c69a4 | 2013-01-28 19:01:06 +0000 | [diff] [blame] | 2313 | efx_device_detach_sync(efx); |
| 2314 | efx_stop_all(efx); |
| 2315 | |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 2316 | mutex_lock(&efx->mac_lock); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2317 | net_dev->mtu = new_mtu; |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 2318 | efx_mac_reconfigure(efx); |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 2319 | mutex_unlock(&efx->mac_lock); |
| 2320 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2321 | efx_start_all(efx); |
Peter Dunning | 9c568fd | 2017-02-17 15:50:43 +0000 | [diff] [blame] | 2322 | efx_device_attach_if_not_resetting(efx); |
Ben Hutchings | 6c8eef4 | 2012-01-09 19:54:16 +0000 | [diff] [blame] | 2323 | return 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2324 | } |
| 2325 | |
| 2326 | static int efx_set_mac_address(struct net_device *net_dev, void *data) |
| 2327 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2328 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2329 | struct sockaddr *addr = data; |
Ben Hutchings | e0b3ae3 | 2014-02-12 18:59:54 +0000 | [diff] [blame] | 2330 | u8 *new_addr = addr->sa_data; |
Shradha Shah | cfc77c2 | 2015-05-20 11:09:30 +0100 | [diff] [blame] | 2331 | u8 old_addr[6]; |
| 2332 | int rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2333 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2334 | if (!is_valid_ether_addr(new_addr)) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2335 | netif_err(efx, drv, efx->net_dev, |
| 2336 | "invalid ethernet MAC address requested: %pM\n", |
| 2337 | new_addr); |
Danny Kukawka | 504f9b5 | 2012-02-21 02:07:49 +0000 | [diff] [blame] | 2338 | return -EADDRNOTAVAIL; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2339 | } |
| 2340 | |
Shradha Shah | cfc77c2 | 2015-05-20 11:09:30 +0100 | [diff] [blame] | 2341 | /* save old address */ |
| 2342 | ether_addr_copy(old_addr, net_dev->dev_addr); |
Edward Cree | cd84ff4 | 2014-03-07 18:27:41 +0000 | [diff] [blame] | 2343 | ether_addr_copy(net_dev->dev_addr, new_addr); |
Shradha Shah | 910c878 | 2015-05-20 11:12:48 +0100 | [diff] [blame] | 2344 | if (efx->type->set_mac_address) { |
| 2345 | rc = efx->type->set_mac_address(efx); |
Shradha Shah | cfc77c2 | 2015-05-20 11:09:30 +0100 | [diff] [blame] | 2346 | if (rc) { |
| 2347 | ether_addr_copy(net_dev->dev_addr, old_addr); |
| 2348 | return rc; |
| 2349 | } |
| 2350 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2351 | |
| 2352 | /* Reconfigure the MAC */ |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 2353 | mutex_lock(&efx->mac_lock); |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 2354 | efx_mac_reconfigure(efx); |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 2355 | mutex_unlock(&efx->mac_lock); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2356 | |
| 2357 | return 0; |
| 2358 | } |
| 2359 | |
Ben Hutchings | a816f75 | 2008-09-01 12:49:12 +0100 | [diff] [blame] | 2360 | /* Context: netif_addr_lock held, BHs disabled. */ |
Ben Hutchings | 0fca8c9 | 2012-01-09 19:54:44 +0000 | [diff] [blame] | 2361 | static void efx_set_rx_mode(struct net_device *net_dev) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2362 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2363 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2364 | |
Ben Hutchings | 8be4f3e | 2009-11-25 16:12:16 +0000 | [diff] [blame] | 2365 | if (efx->port_enabled) |
| 2366 | queue_work(efx->workqueue, &efx->mac_work); |
| 2367 | /* Otherwise efx_start_port() will do this */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2368 | } |
| 2369 | |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 2370 | static int efx_set_features(struct net_device *net_dev, netdev_features_t data) |
Ben Hutchings | abfe903 | 2011-04-05 15:00:02 +0100 | [diff] [blame] | 2371 | { |
| 2372 | struct efx_nic *efx = netdev_priv(net_dev); |
Andrew Rybchenko | 4a53ea8 | 2016-06-15 17:48:32 +0100 | [diff] [blame] | 2373 | int rc; |
Ben Hutchings | abfe903 | 2011-04-05 15:00:02 +0100 | [diff] [blame] | 2374 | |
| 2375 | /* If disabling RX n-tuple filtering, clear existing filters */ |
Andrew Rybchenko | 4a53ea8 | 2016-06-15 17:48:32 +0100 | [diff] [blame] | 2376 | if (net_dev->features & ~data & NETIF_F_NTUPLE) { |
| 2377 | rc = efx->type->filter_clear_rx(efx, EFX_FILTER_PRI_MANUAL); |
| 2378 | if (rc) |
| 2379 | return rc; |
| 2380 | } |
| 2381 | |
Edward Cree | 6978729 | 2017-10-31 14:29:47 +0000 | [diff] [blame] | 2382 | /* If Rx VLAN filter is changed, update filters via mac_reconfigure. |
| 2383 | * If rx-fcs is changed, mac_reconfigure updates that too. |
| 2384 | */ |
| 2385 | if ((net_dev->features ^ data) & (NETIF_F_HW_VLAN_CTAG_FILTER | |
| 2386 | NETIF_F_RXFCS)) { |
Andrew Rybchenko | 4a53ea8 | 2016-06-15 17:48:32 +0100 | [diff] [blame] | 2387 | /* efx_set_rx_mode() will schedule MAC work to update filters |
| 2388 | * when a new features are finally set in net_dev. |
| 2389 | */ |
| 2390 | efx_set_rx_mode(net_dev); |
| 2391 | } |
Ben Hutchings | abfe903 | 2011-04-05 15:00:02 +0100 | [diff] [blame] | 2392 | |
| 2393 | return 0; |
| 2394 | } |
| 2395 | |
Wei Yongjun | b40296f | 2017-01-11 16:16:12 +0000 | [diff] [blame] | 2396 | static int efx_get_phys_port_id(struct net_device *net_dev, |
| 2397 | struct netdev_phys_item_id *ppid) |
Bert Kenward | 08a7b29b | 2017-01-10 16:23:33 +0000 | [diff] [blame] | 2398 | { |
| 2399 | struct efx_nic *efx = netdev_priv(net_dev); |
| 2400 | |
| 2401 | if (efx->type->get_phys_port_id) |
| 2402 | return efx->type->get_phys_port_id(efx, ppid); |
| 2403 | else |
| 2404 | return -EOPNOTSUPP; |
| 2405 | } |
| 2406 | |
Bert Kenward | ac019f0 | 2017-01-10 16:23:56 +0000 | [diff] [blame] | 2407 | static int efx_get_phys_port_name(struct net_device *net_dev, |
| 2408 | char *name, size_t len) |
| 2409 | { |
| 2410 | struct efx_nic *efx = netdev_priv(net_dev); |
| 2411 | |
| 2412 | if (snprintf(name, len, "p%u", efx->port_num) >= len) |
| 2413 | return -EINVAL; |
| 2414 | return 0; |
| 2415 | } |
| 2416 | |
Andrew Rybchenko | 4a53ea8 | 2016-06-15 17:48:32 +0100 | [diff] [blame] | 2417 | static int efx_vlan_rx_add_vid(struct net_device *net_dev, __be16 proto, u16 vid) |
| 2418 | { |
| 2419 | struct efx_nic *efx = netdev_priv(net_dev); |
| 2420 | |
| 2421 | if (efx->type->vlan_rx_add_vid) |
| 2422 | return efx->type->vlan_rx_add_vid(efx, proto, vid); |
| 2423 | else |
| 2424 | return -EOPNOTSUPP; |
| 2425 | } |
| 2426 | |
| 2427 | static int efx_vlan_rx_kill_vid(struct net_device *net_dev, __be16 proto, u16 vid) |
| 2428 | { |
| 2429 | struct efx_nic *efx = netdev_priv(net_dev); |
| 2430 | |
| 2431 | if (efx->type->vlan_rx_kill_vid) |
| 2432 | return efx->type->vlan_rx_kill_vid(efx, proto, vid); |
| 2433 | else |
| 2434 | return -EOPNOTSUPP; |
| 2435 | } |
| 2436 | |
Jon Cooper | e5fbd97 | 2017-02-08 16:52:10 +0000 | [diff] [blame] | 2437 | static int efx_udp_tunnel_type_map(enum udp_parsable_tunnel_type in) |
| 2438 | { |
| 2439 | switch (in) { |
| 2440 | case UDP_TUNNEL_TYPE_VXLAN: |
| 2441 | return TUNNEL_ENCAP_UDP_PORT_ENTRY_VXLAN; |
| 2442 | case UDP_TUNNEL_TYPE_GENEVE: |
| 2443 | return TUNNEL_ENCAP_UDP_PORT_ENTRY_GENEVE; |
| 2444 | default: |
| 2445 | return -1; |
| 2446 | } |
| 2447 | } |
| 2448 | |
| 2449 | static void efx_udp_tunnel_add(struct net_device *dev, struct udp_tunnel_info *ti) |
| 2450 | { |
| 2451 | struct efx_nic *efx = netdev_priv(dev); |
| 2452 | struct efx_udp_tunnel tnl; |
| 2453 | int efx_tunnel_type; |
| 2454 | |
| 2455 | efx_tunnel_type = efx_udp_tunnel_type_map(ti->type); |
| 2456 | if (efx_tunnel_type < 0) |
| 2457 | return; |
| 2458 | |
| 2459 | tnl.type = (u16)efx_tunnel_type; |
| 2460 | tnl.port = ti->port; |
| 2461 | |
| 2462 | if (efx->type->udp_tnl_add_port) |
| 2463 | (void)efx->type->udp_tnl_add_port(efx, tnl); |
| 2464 | } |
| 2465 | |
| 2466 | static void efx_udp_tunnel_del(struct net_device *dev, struct udp_tunnel_info *ti) |
| 2467 | { |
| 2468 | struct efx_nic *efx = netdev_priv(dev); |
| 2469 | struct efx_udp_tunnel tnl; |
| 2470 | int efx_tunnel_type; |
| 2471 | |
| 2472 | efx_tunnel_type = efx_udp_tunnel_type_map(ti->type); |
| 2473 | if (efx_tunnel_type < 0) |
| 2474 | return; |
| 2475 | |
| 2476 | tnl.type = (u16)efx_tunnel_type; |
| 2477 | tnl.port = ti->port; |
| 2478 | |
Dan Carpenter | c04ca61 | 2017-03-22 12:10:02 +0300 | [diff] [blame] | 2479 | if (efx->type->udp_tnl_del_port) |
Jon Cooper | e5fbd97 | 2017-02-08 16:52:10 +0000 | [diff] [blame] | 2480 | (void)efx->type->udp_tnl_del_port(efx, tnl); |
| 2481 | } |
| 2482 | |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 2483 | static const struct net_device_ops efx_netdev_ops = { |
Stephen Hemminger | c3ecb9f | 2008-11-21 17:32:54 -0800 | [diff] [blame] | 2484 | .ndo_open = efx_net_open, |
| 2485 | .ndo_stop = efx_net_stop, |
Ben Hutchings | 4472702 | 2010-06-08 07:21:12 +0000 | [diff] [blame] | 2486 | .ndo_get_stats64 = efx_net_stats, |
Stephen Hemminger | c3ecb9f | 2008-11-21 17:32:54 -0800 | [diff] [blame] | 2487 | .ndo_tx_timeout = efx_watchdog, |
| 2488 | .ndo_start_xmit = efx_hard_start_xmit, |
| 2489 | .ndo_validate_addr = eth_validate_addr, |
| 2490 | .ndo_do_ioctl = efx_ioctl, |
| 2491 | .ndo_change_mtu = efx_change_mtu, |
| 2492 | .ndo_set_mac_address = efx_set_mac_address, |
Ben Hutchings | 0fca8c9 | 2012-01-09 19:54:44 +0000 | [diff] [blame] | 2493 | .ndo_set_rx_mode = efx_set_rx_mode, |
Ben Hutchings | abfe903 | 2011-04-05 15:00:02 +0100 | [diff] [blame] | 2494 | .ndo_set_features = efx_set_features, |
Andrew Rybchenko | 4a53ea8 | 2016-06-15 17:48:32 +0100 | [diff] [blame] | 2495 | .ndo_vlan_rx_add_vid = efx_vlan_rx_add_vid, |
| 2496 | .ndo_vlan_rx_kill_vid = efx_vlan_rx_kill_vid, |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 2497 | #ifdef CONFIG_SFC_SRIOV |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 2498 | .ndo_set_vf_mac = efx_sriov_set_vf_mac, |
| 2499 | .ndo_set_vf_vlan = efx_sriov_set_vf_vlan, |
| 2500 | .ndo_set_vf_spoofchk = efx_sriov_set_vf_spoofchk, |
| 2501 | .ndo_get_vf_config = efx_sriov_get_vf_config, |
Edward Cree | 4392dc6 | 2015-05-20 11:12:13 +0100 | [diff] [blame] | 2502 | .ndo_set_vf_link_state = efx_sriov_set_vf_link_state, |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 2503 | #endif |
Bert Kenward | 08a7b29b | 2017-01-10 16:23:33 +0000 | [diff] [blame] | 2504 | .ndo_get_phys_port_id = efx_get_phys_port_id, |
Bert Kenward | ac019f0 | 2017-01-10 16:23:56 +0000 | [diff] [blame] | 2505 | .ndo_get_phys_port_name = efx_get_phys_port_name, |
Stephen Hemminger | c3ecb9f | 2008-11-21 17:32:54 -0800 | [diff] [blame] | 2506 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 2507 | .ndo_poll_controller = efx_netpoll, |
| 2508 | #endif |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 2509 | .ndo_setup_tc = efx_setup_tc, |
Ben Hutchings | 64d8ad6 | 2011-01-05 00:50:41 +0000 | [diff] [blame] | 2510 | #ifdef CONFIG_RFS_ACCEL |
| 2511 | .ndo_rx_flow_steer = efx_filter_rfs, |
| 2512 | #endif |
Jon Cooper | e5fbd97 | 2017-02-08 16:52:10 +0000 | [diff] [blame] | 2513 | .ndo_udp_tunnel_add = efx_udp_tunnel_add, |
| 2514 | .ndo_udp_tunnel_del = efx_udp_tunnel_del, |
Stephen Hemminger | c3ecb9f | 2008-11-21 17:32:54 -0800 | [diff] [blame] | 2515 | }; |
| 2516 | |
Ben Hutchings | 7dde596 | 2008-12-12 22:09:38 -0800 | [diff] [blame] | 2517 | static void efx_update_name(struct efx_nic *efx) |
| 2518 | { |
| 2519 | strcpy(efx->name, efx->net_dev->name); |
| 2520 | efx_mtd_rename(efx); |
| 2521 | efx_set_channel_names(efx); |
| 2522 | } |
| 2523 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2524 | static int efx_netdev_event(struct notifier_block *this, |
| 2525 | unsigned long event, void *ptr) |
| 2526 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 2527 | struct net_device *net_dev = netdev_notifier_info_to_dev(ptr); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2528 | |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 2529 | if ((net_dev->netdev_ops == &efx_netdev_ops) && |
Ben Hutchings | 7dde596 | 2008-12-12 22:09:38 -0800 | [diff] [blame] | 2530 | event == NETDEV_CHANGENAME) |
| 2531 | efx_update_name(netdev_priv(net_dev)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2532 | |
| 2533 | return NOTIFY_DONE; |
| 2534 | } |
| 2535 | |
| 2536 | static struct notifier_block efx_netdev_notifier = { |
| 2537 | .notifier_call = efx_netdev_event, |
| 2538 | }; |
| 2539 | |
Ben Hutchings | 06d5e19 | 2008-12-12 21:47:23 -0800 | [diff] [blame] | 2540 | static ssize_t |
| 2541 | show_phy_type(struct device *dev, struct device_attribute *attr, char *buf) |
| 2542 | { |
| 2543 | struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev)); |
| 2544 | return sprintf(buf, "%d\n", efx->phy_type); |
| 2545 | } |
Ben Hutchings | 776fbcc | 2013-06-18 17:45:40 +0100 | [diff] [blame] | 2546 | static DEVICE_ATTR(phy_type, 0444, show_phy_type, NULL); |
Ben Hutchings | 06d5e19 | 2008-12-12 21:47:23 -0800 | [diff] [blame] | 2547 | |
Edward Cree | e7fef9b | 2015-05-27 13:14:01 +0100 | [diff] [blame] | 2548 | #ifdef CONFIG_SFC_MCDI_LOGGING |
| 2549 | static ssize_t show_mcdi_log(struct device *dev, struct device_attribute *attr, |
| 2550 | char *buf) |
| 2551 | { |
| 2552 | struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev)); |
| 2553 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 2554 | |
| 2555 | return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled); |
| 2556 | } |
| 2557 | static ssize_t set_mcdi_log(struct device *dev, struct device_attribute *attr, |
| 2558 | const char *buf, size_t count) |
| 2559 | { |
| 2560 | struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev)); |
| 2561 | struct efx_mcdi_iface *mcdi = efx_mcdi(efx); |
| 2562 | bool enable = count > 0 && *buf != '0'; |
| 2563 | |
| 2564 | mcdi->logging_enabled = enable; |
| 2565 | return count; |
| 2566 | } |
| 2567 | static DEVICE_ATTR(mcdi_logging, 0644, show_mcdi_log, set_mcdi_log); |
| 2568 | #endif |
| 2569 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2570 | static int efx_register_netdev(struct efx_nic *efx) |
| 2571 | { |
| 2572 | struct net_device *net_dev = efx->net_dev; |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 2573 | struct efx_channel *channel; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2574 | int rc; |
| 2575 | |
| 2576 | net_dev->watchdog_timeo = 5 * HZ; |
| 2577 | net_dev->irq = efx->pci_dev->irq; |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 2578 | net_dev->netdev_ops = &efx_netdev_ops; |
| 2579 | if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0) |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 2580 | net_dev->priv_flags |= IFF_UNICAST_FLT; |
Wilfried Klaebe | 7ad24ea | 2014-05-11 00:12:32 +0000 | [diff] [blame] | 2581 | net_dev->ethtool_ops = &efx_ethtool_ops; |
Ben Hutchings | 7e6d06f | 2012-07-30 15:57:44 +0000 | [diff] [blame] | 2582 | net_dev->gso_max_segs = EFX_TSO_MAX_SEGS; |
Bert Kenward | cd94e51 | 2016-10-18 17:47:45 +0100 | [diff] [blame] | 2583 | net_dev->min_mtu = EFX_MIN_MTU; |
| 2584 | net_dev->max_mtu = EFX_MAX_MTU; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2585 | |
Ben Hutchings | 7dde596 | 2008-12-12 22:09:38 -0800 | [diff] [blame] | 2586 | rtnl_lock(); |
Ben Hutchings | aed0628 | 2009-08-26 08:16:27 +0000 | [diff] [blame] | 2587 | |
Ben Hutchings | 7153f62 | 2012-07-27 20:50:52 +0100 | [diff] [blame] | 2588 | /* Enable resets to be scheduled and check whether any were |
| 2589 | * already requested. If so, the NIC is probably hosed so we |
| 2590 | * abort. |
| 2591 | */ |
| 2592 | efx->state = STATE_READY; |
| 2593 | smp_mb(); /* ensure we change state before checking reset_pending */ |
| 2594 | if (efx->reset_pending) { |
| 2595 | netif_err(efx, probe, efx->net_dev, |
| 2596 | "aborting probe due to scheduled reset\n"); |
| 2597 | rc = -EIO; |
| 2598 | goto fail_locked; |
| 2599 | } |
| 2600 | |
Ben Hutchings | aed0628 | 2009-08-26 08:16:27 +0000 | [diff] [blame] | 2601 | rc = dev_alloc_name(net_dev, net_dev->name); |
| 2602 | if (rc < 0) |
| 2603 | goto fail_locked; |
Ben Hutchings | 7dde596 | 2008-12-12 22:09:38 -0800 | [diff] [blame] | 2604 | efx_update_name(efx); |
Ben Hutchings | aed0628 | 2009-08-26 08:16:27 +0000 | [diff] [blame] | 2605 | |
Ben Hutchings | 8f8b3d5 | 2012-08-24 18:04:38 +0100 | [diff] [blame] | 2606 | /* Always start with carrier off; PHY events will detect the link */ |
| 2607 | netif_carrier_off(net_dev); |
| 2608 | |
Ben Hutchings | aed0628 | 2009-08-26 08:16:27 +0000 | [diff] [blame] | 2609 | rc = register_netdevice(net_dev); |
| 2610 | if (rc) |
| 2611 | goto fail_locked; |
| 2612 | |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 2613 | efx_for_each_channel(channel, efx) { |
| 2614 | struct efx_tx_queue *tx_queue; |
Ben Hutchings | 60031fc | 2011-01-12 18:39:40 +0000 | [diff] [blame] | 2615 | efx_for_each_channel_tx_queue(tx_queue, channel) |
| 2616 | efx_init_tx_queue_core_txq(tx_queue); |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 2617 | } |
| 2618 | |
Ben Hutchings | 0bcf4a6 | 2013-10-18 19:21:45 +0100 | [diff] [blame] | 2619 | efx_associate(efx); |
| 2620 | |
Ben Hutchings | 7dde596 | 2008-12-12 22:09:38 -0800 | [diff] [blame] | 2621 | rtnl_unlock(); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2622 | |
Ben Hutchings | 06d5e19 | 2008-12-12 21:47:23 -0800 | [diff] [blame] | 2623 | rc = device_create_file(&efx->pci_dev->dev, &dev_attr_phy_type); |
| 2624 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2625 | netif_err(efx, drv, efx->net_dev, |
| 2626 | "failed to init net dev attributes\n"); |
Ben Hutchings | 06d5e19 | 2008-12-12 21:47:23 -0800 | [diff] [blame] | 2627 | goto fail_registered; |
| 2628 | } |
Edward Cree | e7fef9b | 2015-05-27 13:14:01 +0100 | [diff] [blame] | 2629 | #ifdef CONFIG_SFC_MCDI_LOGGING |
| 2630 | rc = device_create_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging); |
| 2631 | if (rc) { |
| 2632 | netif_err(efx, drv, efx->net_dev, |
| 2633 | "failed to init net dev attributes\n"); |
| 2634 | goto fail_attr_mcdi_logging; |
| 2635 | } |
| 2636 | #endif |
Ben Hutchings | 06d5e19 | 2008-12-12 21:47:23 -0800 | [diff] [blame] | 2637 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2638 | return 0; |
Ben Hutchings | 06d5e19 | 2008-12-12 21:47:23 -0800 | [diff] [blame] | 2639 | |
Edward Cree | e7fef9b | 2015-05-27 13:14:01 +0100 | [diff] [blame] | 2640 | #ifdef CONFIG_SFC_MCDI_LOGGING |
| 2641 | fail_attr_mcdi_logging: |
| 2642 | device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type); |
| 2643 | #endif |
Ben Hutchings | 7153f62 | 2012-07-27 20:50:52 +0100 | [diff] [blame] | 2644 | fail_registered: |
| 2645 | rtnl_lock(); |
Ben Hutchings | 0bcf4a6 | 2013-10-18 19:21:45 +0100 | [diff] [blame] | 2646 | efx_dissociate(efx); |
Ben Hutchings | 7153f62 | 2012-07-27 20:50:52 +0100 | [diff] [blame] | 2647 | unregister_netdevice(net_dev); |
Ben Hutchings | aed0628 | 2009-08-26 08:16:27 +0000 | [diff] [blame] | 2648 | fail_locked: |
Ben Hutchings | 7153f62 | 2012-07-27 20:50:52 +0100 | [diff] [blame] | 2649 | efx->state = STATE_UNINIT; |
Ben Hutchings | aed0628 | 2009-08-26 08:16:27 +0000 | [diff] [blame] | 2650 | rtnl_unlock(); |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2651 | netif_err(efx, drv, efx->net_dev, "could not register net dev\n"); |
Ben Hutchings | aed0628 | 2009-08-26 08:16:27 +0000 | [diff] [blame] | 2652 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2653 | } |
| 2654 | |
| 2655 | static void efx_unregister_netdev(struct efx_nic *efx) |
| 2656 | { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2657 | if (!efx->net_dev) |
| 2658 | return; |
| 2659 | |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 2660 | BUG_ON(netdev_priv(efx->net_dev) != efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2661 | |
Edward Cree | e7fef9b | 2015-05-27 13:14:01 +0100 | [diff] [blame] | 2662 | if (efx_dev_registered(efx)) { |
| 2663 | strlcpy(efx->name, pci_name(efx->pci_dev), sizeof(efx->name)); |
| 2664 | #ifdef CONFIG_SFC_MCDI_LOGGING |
| 2665 | device_remove_file(&efx->pci_dev->dev, &dev_attr_mcdi_logging); |
| 2666 | #endif |
| 2667 | device_remove_file(&efx->pci_dev->dev, &dev_attr_phy_type); |
| 2668 | unregister_netdev(efx->net_dev); |
| 2669 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2670 | } |
| 2671 | |
| 2672 | /************************************************************************** |
| 2673 | * |
| 2674 | * Device reset and suspend |
| 2675 | * |
| 2676 | **************************************************************************/ |
| 2677 | |
Ben Hutchings | 2467ca4 | 2008-09-01 12:48:50 +0100 | [diff] [blame] | 2678 | /* Tears down the entire software state and most of the hardware state |
| 2679 | * before reset. */ |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 2680 | void efx_reset_down(struct efx_nic *efx, enum reset_type method) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2681 | { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2682 | EFX_ASSERT_RESET_SERIALISED(efx); |
| 2683 | |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 2684 | if (method == RESET_TYPE_MCDI_TIMEOUT) |
| 2685 | efx->type->prepare_flr(efx); |
| 2686 | |
Ben Hutchings | 2467ca4 | 2008-09-01 12:48:50 +0100 | [diff] [blame] | 2687 | efx_stop_all(efx); |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 2688 | efx_disable_interrupts(efx); |
Ben Hutchings | 5642cee | 2012-07-27 19:35:52 +0100 | [diff] [blame] | 2689 | |
| 2690 | mutex_lock(&efx->mac_lock); |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 2691 | mutex_lock(&efx->rss_lock); |
Jon Cooper | 087e902 | 2015-05-20 11:11:35 +0100 | [diff] [blame] | 2692 | if (efx->port_initialized && method != RESET_TYPE_INVISIBLE && |
| 2693 | method != RESET_TYPE_DATAPATH) |
Steve Hodgson | 4b98828 | 2009-01-29 17:50:51 +0000 | [diff] [blame] | 2694 | efx->phy_op->fini(efx); |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 2695 | efx->type->fini(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2696 | } |
| 2697 | |
Ben Hutchings | 2467ca4 | 2008-09-01 12:48:50 +0100 | [diff] [blame] | 2698 | /* This function will always ensure that the locks acquired in |
| 2699 | * efx_reset_down() are released. A failure return code indicates |
| 2700 | * that we were unable to reinitialise the hardware, and the |
| 2701 | * driver should be disabled. If ok is false, then the rx and tx |
| 2702 | * engines are not restarted, pending a RESET_DISABLE. */ |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 2703 | int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2704 | { |
| 2705 | int rc; |
| 2706 | |
Ben Hutchings | 2467ca4 | 2008-09-01 12:48:50 +0100 | [diff] [blame] | 2707 | EFX_ASSERT_RESET_SERIALISED(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2708 | |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 2709 | if (method == RESET_TYPE_MCDI_TIMEOUT) |
| 2710 | efx->type->finish_flr(efx); |
| 2711 | |
| 2712 | /* Ensure that SRAM is initialised even if we're disabling the device */ |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 2713 | rc = efx->type->init(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2714 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2715 | netif_err(efx, drv, efx->net_dev, "failed to initialise NIC\n"); |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2716 | goto fail; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2717 | } |
| 2718 | |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2719 | if (!ok) |
| 2720 | goto fail; |
| 2721 | |
Jon Cooper | 087e902 | 2015-05-20 11:11:35 +0100 | [diff] [blame] | 2722 | if (efx->port_initialized && method != RESET_TYPE_INVISIBLE && |
| 2723 | method != RESET_TYPE_DATAPATH) { |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2724 | rc = efx->phy_op->init(efx); |
| 2725 | if (rc) |
| 2726 | goto fail; |
Edward Cree | 267d9d7 | 2015-05-06 00:59:18 +0100 | [diff] [blame] | 2727 | rc = efx->phy_op->reconfigure(efx); |
| 2728 | if (rc && rc != -EPERM) |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2729 | netif_err(efx, drv, efx->net_dev, |
| 2730 | "could not restore PHY settings\n"); |
Steve Hodgson | 4b98828 | 2009-01-29 17:50:51 +0000 | [diff] [blame] | 2731 | } |
| 2732 | |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 2733 | rc = efx_enable_interrupts(efx); |
| 2734 | if (rc) |
| 2735 | goto fail; |
Daniel Pieczko | 6d8aaaf | 2015-05-06 00:57:34 +0100 | [diff] [blame] | 2736 | |
| 2737 | #ifdef CONFIG_SFC_SRIOV |
| 2738 | rc = efx->type->vswitching_restore(efx); |
| 2739 | if (rc) /* not fatal; the PF will still work fine */ |
| 2740 | netif_warn(efx, probe, efx->net_dev, |
| 2741 | "failed to restore vswitching rc=%d;" |
| 2742 | " VFs may not function\n", rc); |
| 2743 | #endif |
| 2744 | |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 2745 | if (efx->type->rx_restore_rss_contexts) |
| 2746 | efx->type->rx_restore_rss_contexts(efx); |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 2747 | mutex_unlock(&efx->rss_lock); |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 2748 | down_read(&efx->filter_sem); |
Ben Hutchings | 64eebcf | 2010-09-20 08:43:07 +0000 | [diff] [blame] | 2749 | efx_restore_filters(efx); |
Edward Cree | 0d32241 | 2015-05-20 11:10:03 +0100 | [diff] [blame] | 2750 | up_read(&efx->filter_sem); |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 2751 | if (efx->type->sriov_reset) |
| 2752 | efx->type->sriov_reset(efx); |
Ben Hutchings | 2467ca4 | 2008-09-01 12:48:50 +0100 | [diff] [blame] | 2753 | |
| 2754 | mutex_unlock(&efx->mac_lock); |
| 2755 | |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2756 | efx_start_all(efx); |
| 2757 | |
Jon Cooper | e5fbd97 | 2017-02-08 16:52:10 +0000 | [diff] [blame] | 2758 | if (efx->type->udp_tnl_push_ports) |
| 2759 | efx->type->udp_tnl_push_ports(efx); |
| 2760 | |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2761 | return 0; |
| 2762 | |
| 2763 | fail: |
| 2764 | efx->port_initialized = false; |
| 2765 | |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 2766 | mutex_unlock(&efx->rss_lock); |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2767 | mutex_unlock(&efx->mac_lock); |
| 2768 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2769 | return rc; |
| 2770 | } |
| 2771 | |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2772 | /* Reset the NIC using the specified method. Note that the reset may |
| 2773 | * fail, in which case the card will be left in an unusable state. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2774 | * |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2775 | * Caller must hold the rtnl_lock. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2776 | */ |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2777 | int efx_reset(struct efx_nic *efx, enum reset_type method) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2778 | { |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2779 | int rc, rc2; |
| 2780 | bool disabled; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2781 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2782 | netif_info(efx, drv, efx->net_dev, "resetting (%s)\n", |
| 2783 | RESET_TYPE(method)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2784 | |
Daniel Pieczko | c2f3b8e | 2012-10-17 13:21:23 +0100 | [diff] [blame] | 2785 | efx_device_detach_sync(efx); |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 2786 | efx_reset_down(efx, method); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2787 | |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 2788 | rc = efx->type->reset(efx, method); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2789 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2790 | netif_err(efx, drv, efx->net_dev, "failed to reset hardware\n"); |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2791 | goto out; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2792 | } |
| 2793 | |
Ben Hutchings | a7d529a | 2011-06-24 20:46:31 +0100 | [diff] [blame] | 2794 | /* Clear flags for the scopes we covered. We assume the NIC and |
| 2795 | * driver are now quiescent so that there is no race here. |
| 2796 | */ |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 2797 | if (method < RESET_TYPE_MAX_METHOD) |
| 2798 | efx->reset_pending &= -(1 << (method + 1)); |
| 2799 | else /* it doesn't fit into the well-ordered scope hierarchy */ |
| 2800 | __clear_bit(method, &efx->reset_pending); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2801 | |
| 2802 | /* Reinitialise bus-mastering, which may have been turned off before |
| 2803 | * the reset was scheduled. This is still appropriate, even in the |
| 2804 | * RESET_TYPE_DISABLE since this driver generally assumes the hardware |
| 2805 | * can respond to requests. */ |
| 2806 | pci_set_master(efx->pci_dev); |
| 2807 | |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2808 | out: |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2809 | /* Leave device stopped if necessary */ |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2810 | disabled = rc || |
| 2811 | method == RESET_TYPE_DISABLE || |
| 2812 | method == RESET_TYPE_RECOVER_OR_DISABLE; |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2813 | rc2 = efx_reset_up(efx, method, !disabled); |
| 2814 | if (rc2) { |
| 2815 | disabled = true; |
| 2816 | if (!rc) |
| 2817 | rc = rc2; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2818 | } |
| 2819 | |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2820 | if (disabled) { |
Ben Hutchings | f49a458 | 2010-04-28 09:01:33 +0000 | [diff] [blame] | 2821 | dev_close(efx->net_dev); |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2822 | netif_err(efx, drv, efx->net_dev, "has been disabled\n"); |
Ben Hutchings | f4bd954 | 2008-12-26 13:48:51 -0800 | [diff] [blame] | 2823 | efx->state = STATE_DISABLED; |
Ben Hutchings | f4bd954 | 2008-12-26 13:48:51 -0800 | [diff] [blame] | 2824 | } else { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2825 | netif_dbg(efx, drv, efx->net_dev, "reset complete\n"); |
Peter Dunning | 9c568fd | 2017-02-17 15:50:43 +0000 | [diff] [blame] | 2826 | efx_device_attach_if_not_resetting(efx); |
Ben Hutchings | f4bd954 | 2008-12-26 13:48:51 -0800 | [diff] [blame] | 2827 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2828 | return rc; |
| 2829 | } |
| 2830 | |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2831 | /* Try recovery mechanisms. |
| 2832 | * For now only EEH is supported. |
| 2833 | * Returns 0 if the recovery mechanisms are unsuccessful. |
| 2834 | * Returns a non-zero value otherwise. |
| 2835 | */ |
Alexandre Rames | b28405b | 2013-03-21 16:41:43 +0000 | [diff] [blame] | 2836 | int efx_try_recovery(struct efx_nic *efx) |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2837 | { |
| 2838 | #ifdef CONFIG_EEH |
| 2839 | /* A PCI error can occur and not be seen by EEH because nothing |
| 2840 | * happens on the PCI bus. In this case the driver may fail and |
| 2841 | * schedule a 'recover or reset', leading to this recovery handler. |
| 2842 | * Manually call the eeh failure check function. |
| 2843 | */ |
Benjamin Herrenschmidt | 12a89db | 2015-03-23 14:00:47 +1100 | [diff] [blame] | 2844 | struct eeh_dev *eehdev = pci_dev_to_eeh_dev(efx->pci_dev); |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2845 | if (eeh_dev_check_failure(eehdev)) { |
| 2846 | /* The EEH mechanisms will handle the error and reset the |
| 2847 | * device if necessary. |
| 2848 | */ |
| 2849 | return 1; |
| 2850 | } |
| 2851 | #endif |
| 2852 | return 0; |
| 2853 | } |
| 2854 | |
Jon Cooper | 74cd60a | 2013-09-16 14:18:51 +0100 | [diff] [blame] | 2855 | static void efx_wait_for_bist_end(struct efx_nic *efx) |
| 2856 | { |
| 2857 | int i; |
| 2858 | |
| 2859 | for (i = 0; i < BIST_WAIT_DELAY_COUNT; ++i) { |
| 2860 | if (efx_mcdi_poll_reboot(efx)) |
| 2861 | goto out; |
| 2862 | msleep(BIST_WAIT_DELAY_MS); |
| 2863 | } |
| 2864 | |
| 2865 | netif_err(efx, drv, efx->net_dev, "Warning: No MC reboot after BIST mode\n"); |
| 2866 | out: |
| 2867 | /* Either way unset the BIST flag. If we found no reboot we probably |
| 2868 | * won't recover, but we should try. |
| 2869 | */ |
| 2870 | efx->mc_bist_for_other_fn = false; |
| 2871 | } |
| 2872 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2873 | /* The worker thread exists so that code that cannot sleep can |
| 2874 | * schedule a reset for later. |
| 2875 | */ |
| 2876 | static void efx_reset_work(struct work_struct *data) |
| 2877 | { |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2878 | struct efx_nic *efx = container_of(data, struct efx_nic, reset_work); |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2879 | unsigned long pending; |
| 2880 | enum reset_type method; |
| 2881 | |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 2882 | pending = READ_ONCE(efx->reset_pending); |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2883 | method = fls(pending) - 1; |
| 2884 | |
Jon Cooper | 74cd60a | 2013-09-16 14:18:51 +0100 | [diff] [blame] | 2885 | if (method == RESET_TYPE_MC_BIST) |
| 2886 | efx_wait_for_bist_end(efx); |
| 2887 | |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2888 | if ((method == RESET_TYPE_RECOVER_OR_DISABLE || |
| 2889 | method == RESET_TYPE_RECOVER_OR_ALL) && |
| 2890 | efx_try_recovery(efx)) |
| 2891 | return; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2892 | |
Ben Hutchings | a7d529a | 2011-06-24 20:46:31 +0100 | [diff] [blame] | 2893 | if (!pending) |
Steve Hodgson | 319ba64 | 2010-06-01 11:17:24 +0000 | [diff] [blame] | 2894 | return; |
| 2895 | |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2896 | rtnl_lock(); |
Ben Hutchings | 7153f62 | 2012-07-27 20:50:52 +0100 | [diff] [blame] | 2897 | |
| 2898 | /* We checked the state in efx_schedule_reset() but it may |
| 2899 | * have changed by now. Now that we have the RTNL lock, |
| 2900 | * it cannot change again. |
| 2901 | */ |
| 2902 | if (efx->state == STATE_READY) |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2903 | (void)efx_reset(efx, method); |
Ben Hutchings | 7153f62 | 2012-07-27 20:50:52 +0100 | [diff] [blame] | 2904 | |
Ben Hutchings | eb9f674 | 2009-11-29 03:43:15 +0000 | [diff] [blame] | 2905 | rtnl_unlock(); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2906 | } |
| 2907 | |
| 2908 | void efx_schedule_reset(struct efx_nic *efx, enum reset_type type) |
| 2909 | { |
| 2910 | enum reset_type method; |
| 2911 | |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2912 | if (efx->state == STATE_RECOVERY) { |
| 2913 | netif_dbg(efx, drv, efx->net_dev, |
| 2914 | "recovering: skip scheduling %s reset\n", |
| 2915 | RESET_TYPE(type)); |
| 2916 | return; |
| 2917 | } |
| 2918 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2919 | switch (type) { |
| 2920 | case RESET_TYPE_INVISIBLE: |
| 2921 | case RESET_TYPE_ALL: |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2922 | case RESET_TYPE_RECOVER_OR_ALL: |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2923 | case RESET_TYPE_WORLD: |
| 2924 | case RESET_TYPE_DISABLE: |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 2925 | case RESET_TYPE_RECOVER_OR_DISABLE: |
Jon Cooper | 087e902 | 2015-05-20 11:11:35 +0100 | [diff] [blame] | 2926 | case RESET_TYPE_DATAPATH: |
Jon Cooper | 74cd60a | 2013-09-16 14:18:51 +0100 | [diff] [blame] | 2927 | case RESET_TYPE_MC_BIST: |
Edward Cree | e283546 | 2014-04-16 19:27:48 +0100 | [diff] [blame] | 2928 | case RESET_TYPE_MCDI_TIMEOUT: |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2929 | method = type; |
Ben Hutchings | 0e2a9c7 | 2011-06-24 20:50:07 +0100 | [diff] [blame] | 2930 | netif_dbg(efx, drv, efx->net_dev, "scheduling %s reset\n", |
| 2931 | RESET_TYPE(method)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2932 | break; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2933 | default: |
Ben Hutchings | 0e2a9c7 | 2011-06-24 20:50:07 +0100 | [diff] [blame] | 2934 | method = efx->type->map_reset_reason(type); |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 2935 | netif_dbg(efx, drv, efx->net_dev, |
| 2936 | "scheduling %s reset for %s\n", |
| 2937 | RESET_TYPE(method), RESET_TYPE(type)); |
Ben Hutchings | 0e2a9c7 | 2011-06-24 20:50:07 +0100 | [diff] [blame] | 2938 | break; |
| 2939 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2940 | |
Ben Hutchings | a7d529a | 2011-06-24 20:46:31 +0100 | [diff] [blame] | 2941 | set_bit(method, &efx->reset_pending); |
Ben Hutchings | 7153f62 | 2012-07-27 20:50:52 +0100 | [diff] [blame] | 2942 | smp_mb(); /* ensure we change reset_pending before checking state */ |
| 2943 | |
| 2944 | /* If we're not READY then just leave the flags set as the cue |
| 2945 | * to abort probing or reschedule the reset later. |
| 2946 | */ |
Mark Rutland | 6aa7de0 | 2017-10-23 14:07:29 -0700 | [diff] [blame] | 2947 | if (READ_ONCE(efx->state) != STATE_READY) |
Ben Hutchings | 7153f62 | 2012-07-27 20:50:52 +0100 | [diff] [blame] | 2948 | return; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2949 | |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 2950 | /* efx_process_channel() will no longer read events once a |
| 2951 | * reset is scheduled. So switch back to poll'd MCDI completions. */ |
| 2952 | efx_mcdi_mode_poll(efx); |
| 2953 | |
Steve Hodgson | 1ab0062 | 2008-12-12 21:33:02 -0800 | [diff] [blame] | 2954 | queue_work(reset_workqueue, &efx->reset_work); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2955 | } |
| 2956 | |
| 2957 | /************************************************************************** |
| 2958 | * |
| 2959 | * List of NICs we support |
| 2960 | * |
| 2961 | **************************************************************************/ |
| 2962 | |
| 2963 | /* PCI device ID table */ |
Benoit Taine | 9baa3c3 | 2014-08-08 15:56:03 +0200 | [diff] [blame] | 2964 | static const struct pci_device_id efx_pci_table[] = { |
Ben Hutchings | 547c474 | 2011-12-02 18:23:56 +0000 | [diff] [blame] | 2965 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0803), /* SFC9020 */ |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 2966 | .driver_data = (unsigned long) &siena_a0_nic_type}, |
Ben Hutchings | 547c474 | 2011-12-02 18:23:56 +0000 | [diff] [blame] | 2967 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0813), /* SFL9021 */ |
Ben Hutchings | 8880f4e | 2009-11-29 15:15:41 +0000 | [diff] [blame] | 2968 | .driver_data = (unsigned long) &siena_a0_nic_type}, |
Ben Hutchings | 8127d66 | 2013-08-29 19:19:29 +0100 | [diff] [blame] | 2969 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0903), /* SFC9120 PF */ |
| 2970 | .driver_data = (unsigned long) &efx_hunt_a0_nic_type}, |
Shradha Shah | 6f7f8aa | 2015-05-06 01:00:07 +0100 | [diff] [blame] | 2971 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1903), /* SFC9120 VF */ |
| 2972 | .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type}, |
Mateusz Wrzesinski | 3b06a00 | 2014-07-14 08:38:49 +0100 | [diff] [blame] | 2973 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0923), /* SFC9140 PF */ |
| 2974 | .driver_data = (unsigned long) &efx_hunt_a0_nic_type}, |
Bert Kenward | dd248f1 | 2015-11-30 09:05:47 +0000 | [diff] [blame] | 2975 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1923), /* SFC9140 VF */ |
| 2976 | .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type}, |
| 2977 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0a03), /* SFC9220 PF */ |
| 2978 | .driver_data = (unsigned long) &efx_hunt_a0_nic_type}, |
| 2979 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1a03), /* SFC9220 VF */ |
| 2980 | .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type}, |
Edward Cree | aae5a31 | 2017-12-18 16:56:34 +0000 | [diff] [blame] | 2981 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x0b03), /* SFC9250 PF */ |
| 2982 | .driver_data = (unsigned long) &efx_hunt_a0_nic_type}, |
| 2983 | {PCI_DEVICE(PCI_VENDOR_ID_SOLARFLARE, 0x1b03), /* SFC9250 VF */ |
| 2984 | .driver_data = (unsigned long) &efx_hunt_a0_vf_nic_type}, |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2985 | {0} /* end of list */ |
| 2986 | }; |
| 2987 | |
| 2988 | /************************************************************************** |
| 2989 | * |
Ben Hutchings | 3759433 | 2009-11-23 16:05:45 +0000 | [diff] [blame] | 2990 | * Dummy PHY/MAC operations |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2991 | * |
Ben Hutchings | 01aad7b | 2008-09-01 12:48:36 +0100 | [diff] [blame] | 2992 | * Can be used for some unimplemented operations |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 2993 | * Needed so all function pointers are valid and do not have to be tested |
| 2994 | * before use |
| 2995 | * |
| 2996 | **************************************************************************/ |
| 2997 | int efx_port_dummy_op_int(struct efx_nic *efx) |
| 2998 | { |
| 2999 | return 0; |
| 3000 | } |
| 3001 | void efx_port_dummy_op_void(struct efx_nic *efx) {} |
stephen hemminger | d215697 | 2010-10-18 05:27:31 +0000 | [diff] [blame] | 3002 | |
| 3003 | static bool efx_port_dummy_op_poll(struct efx_nic *efx) |
Steve Hodgson | fdaa9ae | 2009-11-28 05:34:05 +0000 | [diff] [blame] | 3004 | { |
| 3005 | return false; |
| 3006 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3007 | |
stephen hemminger | 6c8c251 | 2011-04-14 05:50:12 +0000 | [diff] [blame] | 3008 | static const struct efx_phy_operations efx_dummy_phy_operations = { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3009 | .init = efx_port_dummy_op_int, |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 3010 | .reconfigure = efx_port_dummy_op_int, |
Steve Hodgson | fdaa9ae | 2009-11-28 05:34:05 +0000 | [diff] [blame] | 3011 | .poll = efx_port_dummy_op_poll, |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3012 | .fini = efx_port_dummy_op_void, |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3013 | }; |
| 3014 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3015 | /************************************************************************** |
| 3016 | * |
| 3017 | * Data housekeeping |
| 3018 | * |
| 3019 | **************************************************************************/ |
| 3020 | |
| 3021 | /* This zeroes out and then fills in the invariants in a struct |
| 3022 | * efx_nic (including all sub-structures). |
| 3023 | */ |
Ben Hutchings | adeb15a | 2012-08-02 01:39:38 +0100 | [diff] [blame] | 3024 | static int efx_init_struct(struct efx_nic *efx, |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3025 | struct pci_dev *pci_dev, struct net_device *net_dev) |
| 3026 | { |
Andrew Rybchenko | 6f9f6ec | 2017-02-13 14:57:39 +0000 | [diff] [blame] | 3027 | int rc = -ENOMEM, i; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3028 | |
| 3029 | /* Initialise common structures */ |
Ben Hutchings | 0bcf4a6 | 2013-10-18 19:21:45 +0100 | [diff] [blame] | 3030 | INIT_LIST_HEAD(&efx->node); |
| 3031 | INIT_LIST_HEAD(&efx->secondary_list); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3032 | spin_lock_init(&efx->biu_lock); |
Ben Hutchings | 7688483 | 2009-11-29 15:10:44 +0000 | [diff] [blame] | 3033 | #ifdef CONFIG_SFC_MTD |
| 3034 | INIT_LIST_HEAD(&efx->mtd_list); |
| 3035 | #endif |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3036 | INIT_WORK(&efx->reset_work, efx_reset_work); |
| 3037 | INIT_DELAYED_WORK(&efx->monitor_work, efx_monitor); |
Ben Hutchings | dd40781 | 2012-02-28 23:40:21 +0000 | [diff] [blame] | 3038 | INIT_DELAYED_WORK(&efx->selftest_work, efx_selftest_async_work); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3039 | efx->pci_dev = pci_dev; |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 3040 | efx->msg_enable = debug; |
Ben Hutchings | f16aeea | 2012-07-27 19:31:16 +0100 | [diff] [blame] | 3041 | efx->state = STATE_UNINIT; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3042 | strlcpy(efx->name, pci_name(pci_dev), sizeof(efx->name)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3043 | |
| 3044 | efx->net_dev = net_dev; |
Jon Cooper | 43a3739 | 2012-10-18 15:49:54 +0100 | [diff] [blame] | 3045 | efx->rx_prefix_size = efx->type->rx_prefix_size; |
Andrew Rybchenko | 2ec0301 | 2013-11-16 11:02:27 +0400 | [diff] [blame] | 3046 | efx->rx_ip_align = |
| 3047 | NET_IP_ALIGN ? (efx->rx_prefix_size + NET_IP_ALIGN) % 4 : 0; |
Jon Cooper | 43a3739 | 2012-10-18 15:49:54 +0100 | [diff] [blame] | 3048 | efx->rx_packet_hash_offset = |
| 3049 | efx->type->rx_hash_offset - efx->type->rx_prefix_size; |
Jon Cooper | bd9a265 | 2013-11-18 12:54:41 +0000 | [diff] [blame] | 3050 | efx->rx_packet_ts_offset = |
| 3051 | efx->type->rx_ts_offset - efx->type->rx_prefix_size; |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 3052 | INIT_LIST_HEAD(&efx->rss_context.list); |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 3053 | mutex_init(&efx->rss_lock); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3054 | spin_lock_init(&efx->stats_lock); |
Edward Cree | 7182744 | 2017-12-18 16:56:19 +0000 | [diff] [blame] | 3055 | efx->vi_stride = EFX_DEFAULT_VI_STRIDE; |
Edward Cree | c1be482 | 2017-12-21 09:00:26 +0000 | [diff] [blame] | 3056 | efx->num_mac_stats = MC_CMD_MAC_NSTATS; |
| 3057 | BUILD_BUG_ON(MC_CMD_MAC_NSTATS - 1 != MC_CMD_MAC_GENERATION_END); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3058 | mutex_init(&efx->mac_lock); |
Edward Cree | 3af0f34 | 2018-03-27 17:41:59 +0100 | [diff] [blame] | 3059 | #ifdef CONFIG_RFS_ACCEL |
| 3060 | mutex_init(&efx->rps_mutex); |
Edward Cree | f8d6203 | 2018-04-24 17:09:30 +0100 | [diff] [blame] | 3061 | spin_lock_init(&efx->rps_hash_lock); |
| 3062 | /* Failure to allocate is not fatal, but may degrade ARFS performance */ |
| 3063 | efx->rps_hash_table = kcalloc(EFX_ARFS_HASH_TABLE_SIZE, |
| 3064 | sizeof(*efx->rps_hash_table), GFP_KERNEL); |
Edward Cree | 3af0f34 | 2018-03-27 17:41:59 +0100 | [diff] [blame] | 3065 | #endif |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3066 | efx->phy_op = &efx_dummy_phy_operations; |
Ben Hutchings | 68e7f45 | 2009-04-29 08:05:08 +0000 | [diff] [blame] | 3067 | efx->mdio.dev = net_dev; |
Ben Hutchings | 766ca0f | 2008-12-12 21:59:24 -0800 | [diff] [blame] | 3068 | INIT_WORK(&efx->mac_work, efx_mac_work); |
Ben Hutchings | 9f2cb71 | 2012-02-08 00:11:20 +0000 | [diff] [blame] | 3069 | init_waitqueue_head(&efx->flush_wq); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3070 | |
| 3071 | for (i = 0; i < EFX_MAX_CHANNELS; i++) { |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 3072 | efx->channel[i] = efx_alloc_channel(efx, i, NULL); |
| 3073 | if (!efx->channel[i]) |
| 3074 | goto fail; |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 3075 | efx->msi_context[i].efx = efx; |
| 3076 | efx->msi_context[i].index = i; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3077 | } |
| 3078 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3079 | /* Higher numbered interrupt modes are less capable! */ |
Andrew Rybchenko | 6f9f6ec | 2017-02-13 14:57:39 +0000 | [diff] [blame] | 3080 | if (WARN_ON_ONCE(efx->type->max_interrupt_mode > |
| 3081 | efx->type->min_interrupt_mode)) { |
| 3082 | rc = -EIO; |
| 3083 | goto fail; |
| 3084 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3085 | efx->interrupt_mode = max(efx->type->max_interrupt_mode, |
| 3086 | interrupt_mode); |
Andrew Rybchenko | 6f9f6ec | 2017-02-13 14:57:39 +0000 | [diff] [blame] | 3087 | efx->interrupt_mode = min(efx->type->min_interrupt_mode, |
| 3088 | interrupt_mode); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3089 | |
Ben Hutchings | 6977dc6 | 2008-12-26 13:44:39 -0800 | [diff] [blame] | 3090 | /* Would be good to use the net_dev name, but we're too early */ |
| 3091 | snprintf(efx->workqueue_name, sizeof(efx->workqueue_name), "sfc%s", |
| 3092 | pci_name(pci_dev)); |
| 3093 | efx->workqueue = create_singlethread_workqueue(efx->workqueue_name); |
Steve Hodgson | 1ab0062 | 2008-12-12 21:33:02 -0800 | [diff] [blame] | 3094 | if (!efx->workqueue) |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 3095 | goto fail; |
Ben Hutchings | 8d9853d | 2008-07-18 19:01:20 +0100 | [diff] [blame] | 3096 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3097 | return 0; |
Ben Hutchings | 4642610 | 2010-09-10 06:42:33 +0000 | [diff] [blame] | 3098 | |
| 3099 | fail: |
| 3100 | efx_fini_struct(efx); |
Andrew Rybchenko | 6f9f6ec | 2017-02-13 14:57:39 +0000 | [diff] [blame] | 3101 | return rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3102 | } |
| 3103 | |
| 3104 | static void efx_fini_struct(struct efx_nic *efx) |
| 3105 | { |
Ben Hutchings | 8313aca | 2010-09-10 06:41:57 +0000 | [diff] [blame] | 3106 | int i; |
| 3107 | |
Edward Cree | f8d6203 | 2018-04-24 17:09:30 +0100 | [diff] [blame] | 3108 | #ifdef CONFIG_RFS_ACCEL |
| 3109 | kfree(efx->rps_hash_table); |
| 3110 | #endif |
| 3111 | |
Ben Hutchings | 8313aca | 2010-09-10 06:41:57 +0000 | [diff] [blame] | 3112 | for (i = 0; i < EFX_MAX_CHANNELS; i++) |
| 3113 | kfree(efx->channel[i]); |
| 3114 | |
Ben Hutchings | ef215e6 | 2013-12-05 20:13:22 +0000 | [diff] [blame] | 3115 | kfree(efx->vpd_sn); |
| 3116 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3117 | if (efx->workqueue) { |
| 3118 | destroy_workqueue(efx->workqueue); |
| 3119 | efx->workqueue = NULL; |
| 3120 | } |
| 3121 | } |
| 3122 | |
Edward Cree | e4d112e | 2014-07-15 11:58:12 +0100 | [diff] [blame] | 3123 | void efx_update_sw_stats(struct efx_nic *efx, u64 *stats) |
| 3124 | { |
| 3125 | u64 n_rx_nodesc_trunc = 0; |
| 3126 | struct efx_channel *channel; |
| 3127 | |
| 3128 | efx_for_each_channel(channel, efx) |
| 3129 | n_rx_nodesc_trunc += channel->n_rx_nodesc_trunc; |
| 3130 | stats[GENERIC_STAT_rx_nodesc_trunc] = n_rx_nodesc_trunc; |
| 3131 | stats[GENERIC_STAT_rx_noskb_drops] = atomic_read(&efx->n_rx_noskb_drops); |
| 3132 | } |
| 3133 | |
Edward Cree | f8d6203 | 2018-04-24 17:09:30 +0100 | [diff] [blame] | 3134 | bool efx_filter_spec_equal(const struct efx_filter_spec *left, |
| 3135 | const struct efx_filter_spec *right) |
| 3136 | { |
| 3137 | if ((left->match_flags ^ right->match_flags) | |
| 3138 | ((left->flags ^ right->flags) & |
| 3139 | (EFX_FILTER_FLAG_RX | EFX_FILTER_FLAG_TX))) |
| 3140 | return false; |
| 3141 | |
| 3142 | return memcmp(&left->outer_vid, &right->outer_vid, |
| 3143 | sizeof(struct efx_filter_spec) - |
| 3144 | offsetof(struct efx_filter_spec, outer_vid)) == 0; |
| 3145 | } |
| 3146 | |
| 3147 | u32 efx_filter_spec_hash(const struct efx_filter_spec *spec) |
| 3148 | { |
| 3149 | BUILD_BUG_ON(offsetof(struct efx_filter_spec, outer_vid) & 3); |
| 3150 | return jhash2((const u32 *)&spec->outer_vid, |
| 3151 | (sizeof(struct efx_filter_spec) - |
| 3152 | offsetof(struct efx_filter_spec, outer_vid)) / 4, |
| 3153 | 0); |
| 3154 | } |
| 3155 | |
| 3156 | #ifdef CONFIG_RFS_ACCEL |
| 3157 | bool efx_rps_check_rule(struct efx_arfs_rule *rule, unsigned int filter_idx, |
| 3158 | bool *force) |
| 3159 | { |
| 3160 | if (rule->filter_id == EFX_ARFS_FILTER_ID_PENDING) { |
| 3161 | /* ARFS is currently updating this entry, leave it */ |
| 3162 | return false; |
| 3163 | } |
| 3164 | if (rule->filter_id == EFX_ARFS_FILTER_ID_ERROR) { |
| 3165 | /* ARFS tried and failed to update this, so it's probably out |
| 3166 | * of date. Remove the filter and the ARFS rule entry. |
| 3167 | */ |
| 3168 | rule->filter_id = EFX_ARFS_FILTER_ID_REMOVING; |
| 3169 | *force = true; |
| 3170 | return true; |
| 3171 | } else if (WARN_ON(rule->filter_id != filter_idx)) { /* can't happen */ |
| 3172 | /* ARFS has moved on, so old filter is not needed. Since we did |
| 3173 | * not mark the rule with EFX_ARFS_FILTER_ID_REMOVING, it will |
| 3174 | * not be removed by efx_rps_hash_del() subsequently. |
| 3175 | */ |
| 3176 | *force = true; |
| 3177 | return true; |
| 3178 | } |
| 3179 | /* Remove it iff ARFS wants to. */ |
| 3180 | return true; |
| 3181 | } |
| 3182 | |
| 3183 | struct hlist_head *efx_rps_hash_bucket(struct efx_nic *efx, |
| 3184 | const struct efx_filter_spec *spec) |
| 3185 | { |
| 3186 | u32 hash = efx_filter_spec_hash(spec); |
| 3187 | |
| 3188 | WARN_ON(!spin_is_locked(&efx->rps_hash_lock)); |
| 3189 | if (!efx->rps_hash_table) |
| 3190 | return NULL; |
| 3191 | return &efx->rps_hash_table[hash % EFX_ARFS_HASH_TABLE_SIZE]; |
| 3192 | } |
| 3193 | |
| 3194 | struct efx_arfs_rule *efx_rps_hash_find(struct efx_nic *efx, |
| 3195 | const struct efx_filter_spec *spec) |
| 3196 | { |
| 3197 | struct efx_arfs_rule *rule; |
| 3198 | struct hlist_head *head; |
| 3199 | struct hlist_node *node; |
| 3200 | |
| 3201 | head = efx_rps_hash_bucket(efx, spec); |
| 3202 | if (!head) |
| 3203 | return NULL; |
| 3204 | hlist_for_each(node, head) { |
| 3205 | rule = container_of(node, struct efx_arfs_rule, node); |
| 3206 | if (efx_filter_spec_equal(spec, &rule->spec)) |
| 3207 | return rule; |
| 3208 | } |
| 3209 | return NULL; |
| 3210 | } |
| 3211 | |
| 3212 | struct efx_arfs_rule *efx_rps_hash_add(struct efx_nic *efx, |
| 3213 | const struct efx_filter_spec *spec, |
| 3214 | bool *new) |
| 3215 | { |
| 3216 | struct efx_arfs_rule *rule; |
| 3217 | struct hlist_head *head; |
| 3218 | struct hlist_node *node; |
| 3219 | |
| 3220 | head = efx_rps_hash_bucket(efx, spec); |
| 3221 | if (!head) |
| 3222 | return NULL; |
| 3223 | hlist_for_each(node, head) { |
| 3224 | rule = container_of(node, struct efx_arfs_rule, node); |
| 3225 | if (efx_filter_spec_equal(spec, &rule->spec)) { |
| 3226 | *new = false; |
| 3227 | return rule; |
| 3228 | } |
| 3229 | } |
| 3230 | rule = kmalloc(sizeof(*rule), GFP_ATOMIC); |
| 3231 | *new = true; |
| 3232 | if (rule) { |
| 3233 | memcpy(&rule->spec, spec, sizeof(rule->spec)); |
| 3234 | hlist_add_head(&rule->node, head); |
| 3235 | } |
| 3236 | return rule; |
| 3237 | } |
| 3238 | |
| 3239 | void efx_rps_hash_del(struct efx_nic *efx, const struct efx_filter_spec *spec) |
| 3240 | { |
| 3241 | struct efx_arfs_rule *rule; |
| 3242 | struct hlist_head *head; |
| 3243 | struct hlist_node *node; |
| 3244 | |
| 3245 | head = efx_rps_hash_bucket(efx, spec); |
| 3246 | if (WARN_ON(!head)) |
| 3247 | return; |
| 3248 | hlist_for_each(node, head) { |
| 3249 | rule = container_of(node, struct efx_arfs_rule, node); |
| 3250 | if (efx_filter_spec_equal(spec, &rule->spec)) { |
| 3251 | /* Someone already reused the entry. We know that if |
| 3252 | * this check doesn't fire (i.e. filter_id == REMOVING) |
| 3253 | * then the REMOVING mark was put there by our caller, |
| 3254 | * because caller is holding a lock on filter table and |
| 3255 | * only holders of that lock set REMOVING. |
| 3256 | */ |
| 3257 | if (rule->filter_id != EFX_ARFS_FILTER_ID_REMOVING) |
| 3258 | return; |
| 3259 | hlist_del(node); |
| 3260 | kfree(rule); |
| 3261 | return; |
| 3262 | } |
| 3263 | } |
| 3264 | /* We didn't find it. */ |
| 3265 | WARN_ON(1); |
| 3266 | } |
| 3267 | #endif |
| 3268 | |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 3269 | /* RSS contexts. We're using linked lists and crappy O(n) algorithms, because |
| 3270 | * (a) this is an infrequent control-plane operation and (b) n is small (max 64) |
| 3271 | */ |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 3272 | struct efx_rss_context *efx_alloc_rss_context_entry(struct efx_nic *efx) |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 3273 | { |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 3274 | struct list_head *head = &efx->rss_context.list; |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 3275 | struct efx_rss_context *ctx, *new; |
| 3276 | u32 id = 1; /* Don't use zero, that refers to the master RSS context */ |
| 3277 | |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 3278 | WARN_ON(!mutex_is_locked(&efx->rss_lock)); |
| 3279 | |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 3280 | /* Search for first gap in the numbering */ |
| 3281 | list_for_each_entry(ctx, head, list) { |
| 3282 | if (ctx->user_id != id) |
| 3283 | break; |
| 3284 | id++; |
| 3285 | /* Check for wrap. If this happens, we have nearly 2^32 |
| 3286 | * allocated RSS contexts, which seems unlikely. |
| 3287 | */ |
| 3288 | if (WARN_ON_ONCE(!id)) |
| 3289 | return NULL; |
| 3290 | } |
| 3291 | |
| 3292 | /* Create the new entry */ |
| 3293 | new = kmalloc(sizeof(struct efx_rss_context), GFP_KERNEL); |
| 3294 | if (!new) |
| 3295 | return NULL; |
| 3296 | new->context_id = EFX_EF10_RSS_CONTEXT_INVALID; |
| 3297 | new->rx_hash_udp_4tuple = false; |
| 3298 | |
| 3299 | /* Insert the new entry into the gap */ |
| 3300 | new->user_id = id; |
| 3301 | list_add_tail(&new->list, &ctx->list); |
| 3302 | return new; |
| 3303 | } |
| 3304 | |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 3305 | struct efx_rss_context *efx_find_rss_context_entry(struct efx_nic *efx, u32 id) |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 3306 | { |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 3307 | struct list_head *head = &efx->rss_context.list; |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 3308 | struct efx_rss_context *ctx; |
| 3309 | |
Edward Cree | e0a65e3 | 2018-03-27 17:44:36 +0100 | [diff] [blame] | 3310 | WARN_ON(!mutex_is_locked(&efx->rss_lock)); |
| 3311 | |
Edward Cree | 42356d9 | 2018-03-08 15:45:17 +0000 | [diff] [blame] | 3312 | list_for_each_entry(ctx, head, list) |
| 3313 | if (ctx->user_id == id) |
| 3314 | return ctx; |
| 3315 | return NULL; |
| 3316 | } |
| 3317 | |
| 3318 | void efx_free_rss_context_entry(struct efx_rss_context *ctx) |
| 3319 | { |
| 3320 | list_del(&ctx->list); |
| 3321 | kfree(ctx); |
| 3322 | } |
| 3323 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3324 | /************************************************************************** |
| 3325 | * |
| 3326 | * PCI interface |
| 3327 | * |
| 3328 | **************************************************************************/ |
| 3329 | |
| 3330 | /* Main body of final NIC shutdown code |
| 3331 | * This is called only at module unload (or hotplug removal). |
| 3332 | */ |
| 3333 | static void efx_pci_remove_main(struct efx_nic *efx) |
| 3334 | { |
Ben Hutchings | 7153f62 | 2012-07-27 20:50:52 +0100 | [diff] [blame] | 3335 | /* Flush reset_work. It can no longer be scheduled since we |
| 3336 | * are not READY. |
| 3337 | */ |
| 3338 | BUG_ON(efx->state == STATE_READY); |
| 3339 | cancel_work_sync(&efx->reset_work); |
| 3340 | |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 3341 | efx_disable_interrupts(efx); |
Bert Kenward | a83762d | 2018-04-19 17:37:25 +0100 | [diff] [blame] | 3342 | efx_clear_interrupt_affinity(efx); |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 3343 | efx_nic_fini_interrupt(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3344 | efx_fini_port(efx); |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 3345 | efx->type->fini(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3346 | efx_fini_napi(efx); |
| 3347 | efx_remove_all(efx); |
| 3348 | } |
| 3349 | |
| 3350 | /* Final NIC shutdown |
Daniel Pieczko | 2a3fc31 | 2015-06-02 11:40:46 +0100 | [diff] [blame] | 3351 | * This is called only at module unload (or hotplug removal). A PF can call |
| 3352 | * this on its VFs to ensure they are unbound first. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3353 | */ |
| 3354 | static void efx_pci_remove(struct pci_dev *pci_dev) |
| 3355 | { |
| 3356 | struct efx_nic *efx; |
| 3357 | |
| 3358 | efx = pci_get_drvdata(pci_dev); |
| 3359 | if (!efx) |
| 3360 | return; |
| 3361 | |
| 3362 | /* Mark the NIC as fini, then stop the interface */ |
| 3363 | rtnl_lock(); |
Ben Hutchings | 0bcf4a6 | 2013-10-18 19:21:45 +0100 | [diff] [blame] | 3364 | efx_dissociate(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3365 | dev_close(efx->net_dev); |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 3366 | efx_disable_interrupts(efx); |
Edward Cree | ea6bb99 | 2015-06-15 18:27:54 +0100 | [diff] [blame] | 3367 | efx->state = STATE_UNINIT; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3368 | rtnl_unlock(); |
| 3369 | |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 3370 | if (efx->type->sriov_fini) |
| 3371 | efx->type->sriov_fini(efx); |
| 3372 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3373 | efx_unregister_netdev(efx); |
| 3374 | |
Ben Hutchings | 7dde596 | 2008-12-12 22:09:38 -0800 | [diff] [blame] | 3375 | efx_mtd_remove(efx); |
| 3376 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3377 | efx_pci_remove_main(efx); |
| 3378 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3379 | efx_fini_io(efx); |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 3380 | netif_dbg(efx, drv, efx->net_dev, "shutdown successful\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3381 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3382 | efx_fini_struct(efx); |
| 3383 | free_netdev(efx->net_dev); |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 3384 | |
| 3385 | pci_disable_pcie_error_reporting(pci_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3386 | }; |
| 3387 | |
Ben Hutchings | 460eeaa | 2012-03-05 15:35:39 +0000 | [diff] [blame] | 3388 | /* NIC VPD information |
| 3389 | * Called during probe to display the part number of the |
| 3390 | * installed NIC. VPD is potentially very large but this should |
| 3391 | * always appear within the first 512 bytes. |
| 3392 | */ |
| 3393 | #define SFC_VPD_LEN 512 |
Ben Hutchings | ef215e6 | 2013-12-05 20:13:22 +0000 | [diff] [blame] | 3394 | static void efx_probe_vpd_strings(struct efx_nic *efx) |
Ben Hutchings | 460eeaa | 2012-03-05 15:35:39 +0000 | [diff] [blame] | 3395 | { |
| 3396 | struct pci_dev *dev = efx->pci_dev; |
| 3397 | char vpd_data[SFC_VPD_LEN]; |
| 3398 | ssize_t vpd_size; |
Ben Hutchings | ef215e6 | 2013-12-05 20:13:22 +0000 | [diff] [blame] | 3399 | int ro_start, ro_size, i, j; |
Ben Hutchings | 460eeaa | 2012-03-05 15:35:39 +0000 | [diff] [blame] | 3400 | |
| 3401 | /* Get the vpd data from the device */ |
| 3402 | vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data); |
| 3403 | if (vpd_size <= 0) { |
| 3404 | netif_err(efx, drv, efx->net_dev, "Unable to read VPD\n"); |
| 3405 | return; |
| 3406 | } |
| 3407 | |
| 3408 | /* Get the Read only section */ |
Ben Hutchings | ef215e6 | 2013-12-05 20:13:22 +0000 | [diff] [blame] | 3409 | ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size, PCI_VPD_LRDT_RO_DATA); |
| 3410 | if (ro_start < 0) { |
Ben Hutchings | 460eeaa | 2012-03-05 15:35:39 +0000 | [diff] [blame] | 3411 | netif_err(efx, drv, efx->net_dev, "VPD Read-only not found\n"); |
| 3412 | return; |
| 3413 | } |
| 3414 | |
Ben Hutchings | ef215e6 | 2013-12-05 20:13:22 +0000 | [diff] [blame] | 3415 | ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]); |
| 3416 | j = ro_size; |
| 3417 | i = ro_start + PCI_VPD_LRDT_TAG_SIZE; |
Ben Hutchings | 460eeaa | 2012-03-05 15:35:39 +0000 | [diff] [blame] | 3418 | if (i + j > vpd_size) |
| 3419 | j = vpd_size - i; |
| 3420 | |
| 3421 | /* Get the Part number */ |
| 3422 | i = pci_vpd_find_info_keyword(vpd_data, i, j, "PN"); |
| 3423 | if (i < 0) { |
| 3424 | netif_err(efx, drv, efx->net_dev, "Part number not found\n"); |
| 3425 | return; |
| 3426 | } |
| 3427 | |
| 3428 | j = pci_vpd_info_field_size(&vpd_data[i]); |
| 3429 | i += PCI_VPD_INFO_FLD_HDR_SIZE; |
| 3430 | if (i + j > vpd_size) { |
| 3431 | netif_err(efx, drv, efx->net_dev, "Incomplete part number\n"); |
| 3432 | return; |
| 3433 | } |
| 3434 | |
| 3435 | netif_info(efx, drv, efx->net_dev, |
| 3436 | "Part Number : %.*s\n", j, &vpd_data[i]); |
Ben Hutchings | ef215e6 | 2013-12-05 20:13:22 +0000 | [diff] [blame] | 3437 | |
| 3438 | i = ro_start + PCI_VPD_LRDT_TAG_SIZE; |
| 3439 | j = ro_size; |
| 3440 | i = pci_vpd_find_info_keyword(vpd_data, i, j, "SN"); |
| 3441 | if (i < 0) { |
| 3442 | netif_err(efx, drv, efx->net_dev, "Serial number not found\n"); |
| 3443 | return; |
| 3444 | } |
| 3445 | |
| 3446 | j = pci_vpd_info_field_size(&vpd_data[i]); |
| 3447 | i += PCI_VPD_INFO_FLD_HDR_SIZE; |
| 3448 | if (i + j > vpd_size) { |
| 3449 | netif_err(efx, drv, efx->net_dev, "Incomplete serial number\n"); |
| 3450 | return; |
| 3451 | } |
| 3452 | |
| 3453 | efx->vpd_sn = kmalloc(j + 1, GFP_KERNEL); |
| 3454 | if (!efx->vpd_sn) |
| 3455 | return; |
| 3456 | |
| 3457 | snprintf(efx->vpd_sn, j + 1, "%s", &vpd_data[i]); |
Ben Hutchings | 460eeaa | 2012-03-05 15:35:39 +0000 | [diff] [blame] | 3458 | } |
| 3459 | |
| 3460 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3461 | /* Main body of NIC initialisation |
| 3462 | * This is called at module load (or hotplug insertion, theoretically). |
| 3463 | */ |
| 3464 | static int efx_pci_probe_main(struct efx_nic *efx) |
| 3465 | { |
| 3466 | int rc; |
| 3467 | |
| 3468 | /* Do start-of-day initialisation */ |
| 3469 | rc = efx_probe_all(efx); |
| 3470 | if (rc) |
| 3471 | goto fail1; |
| 3472 | |
Ben Hutchings | e8f1499 | 2010-12-07 19:47:34 +0000 | [diff] [blame] | 3473 | efx_init_napi(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3474 | |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 3475 | rc = efx->type->init(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3476 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 3477 | netif_err(efx, probe, efx->net_dev, |
| 3478 | "failed to initialise NIC\n"); |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 3479 | goto fail3; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3480 | } |
| 3481 | |
| 3482 | rc = efx_init_port(efx); |
| 3483 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 3484 | netif_err(efx, probe, efx->net_dev, |
| 3485 | "failed to initialise port\n"); |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 3486 | goto fail4; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3487 | } |
| 3488 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 3489 | rc = efx_nic_init_interrupt(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3490 | if (rc) |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 3491 | goto fail5; |
Bert Kenward | a83762d | 2018-04-19 17:37:25 +0100 | [diff] [blame] | 3492 | |
| 3493 | efx_set_interrupt_affinity(efx); |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 3494 | rc = efx_enable_interrupts(efx); |
| 3495 | if (rc) |
| 3496 | goto fail6; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3497 | |
| 3498 | return 0; |
| 3499 | |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 3500 | fail6: |
Bert Kenward | a83762d | 2018-04-19 17:37:25 +0100 | [diff] [blame] | 3501 | efx_clear_interrupt_affinity(efx); |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 3502 | efx_nic_fini_interrupt(efx); |
Ben Hutchings | 278c062 | 2009-11-23 16:05:12 +0000 | [diff] [blame] | 3503 | fail5: |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3504 | efx_fini_port(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3505 | fail4: |
Ben Hutchings | ef2b90e | 2009-11-29 03:42:31 +0000 | [diff] [blame] | 3506 | efx->type->fini(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3507 | fail3: |
| 3508 | efx_fini_napi(efx); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3509 | efx_remove_all(efx); |
| 3510 | fail1: |
| 3511 | return rc; |
| 3512 | } |
| 3513 | |
Jon Cooper | 8a53140 | 2017-02-08 16:51:18 +0000 | [diff] [blame] | 3514 | static int efx_pci_probe_post_io(struct efx_nic *efx) |
| 3515 | { |
| 3516 | struct net_device *net_dev = efx->net_dev; |
| 3517 | int rc = efx_pci_probe_main(efx); |
| 3518 | |
| 3519 | if (rc) |
| 3520 | return rc; |
| 3521 | |
| 3522 | if (efx->type->sriov_init) { |
| 3523 | rc = efx->type->sriov_init(efx); |
| 3524 | if (rc) |
| 3525 | netif_err(efx, probe, efx->net_dev, |
| 3526 | "SR-IOV can't be enabled rc %d\n", rc); |
| 3527 | } |
| 3528 | |
| 3529 | /* Determine netdevice features */ |
| 3530 | net_dev->features |= (efx->type->offload_features | NETIF_F_SG | |
Edward Cree | 6978729 | 2017-10-31 14:29:47 +0000 | [diff] [blame] | 3531 | NETIF_F_TSO | NETIF_F_RXCSUM | NETIF_F_RXALL); |
Jon Cooper | 8a53140 | 2017-02-08 16:51:18 +0000 | [diff] [blame] | 3532 | if (efx->type->offload_features & (NETIF_F_IPV6_CSUM | NETIF_F_HW_CSUM)) |
| 3533 | net_dev->features |= NETIF_F_TSO6; |
| 3534 | /* Check whether device supports TSO */ |
| 3535 | if (!efx->type->tso_versions || !efx->type->tso_versions(efx)) |
| 3536 | net_dev->features &= ~NETIF_F_ALL_TSO; |
| 3537 | /* Mask for features that also apply to VLAN devices */ |
| 3538 | net_dev->vlan_features |= (NETIF_F_HW_CSUM | NETIF_F_SG | |
| 3539 | NETIF_F_HIGHDMA | NETIF_F_ALL_TSO | |
| 3540 | NETIF_F_RXCSUM); |
| 3541 | |
Edward Cree | 6978729 | 2017-10-31 14:29:47 +0000 | [diff] [blame] | 3542 | net_dev->hw_features |= net_dev->features & ~efx->fixed_features; |
| 3543 | |
| 3544 | /* Disable receiving frames with bad FCS, by default. */ |
| 3545 | net_dev->features &= ~NETIF_F_RXALL; |
Jon Cooper | 8a53140 | 2017-02-08 16:51:18 +0000 | [diff] [blame] | 3546 | |
| 3547 | /* Disable VLAN filtering by default. It may be enforced if |
| 3548 | * the feature is fixed (i.e. VLAN filters are required to |
| 3549 | * receive VLAN tagged packets due to vPort restrictions). |
| 3550 | */ |
| 3551 | net_dev->features &= ~NETIF_F_HW_VLAN_CTAG_FILTER; |
| 3552 | net_dev->features |= efx->fixed_features; |
| 3553 | |
| 3554 | rc = efx_register_netdev(efx); |
| 3555 | if (!rc) |
| 3556 | return 0; |
| 3557 | |
| 3558 | efx_pci_remove_main(efx); |
| 3559 | return rc; |
| 3560 | } |
| 3561 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3562 | /* NIC initialisation |
| 3563 | * |
| 3564 | * This is called at module load (or hotplug insertion, |
Ben Hutchings | 73ba7b6 | 2012-01-09 19:47:08 +0000 | [diff] [blame] | 3565 | * theoretically). It sets up PCI mappings, resets the NIC, |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3566 | * sets up and registers the network devices with the kernel and hooks |
| 3567 | * the interrupt service routine. It does not prepare the device for |
| 3568 | * transmission; this is left to the first time one of the network |
| 3569 | * interfaces is brought up (i.e. efx_net_open). |
| 3570 | */ |
Bill Pemberton | 87d1fc1 | 2012-12-03 09:23:32 -0500 | [diff] [blame] | 3571 | static int efx_pci_probe(struct pci_dev *pci_dev, |
Greg Kroah-Hartman | 1dd06ae | 2012-12-06 14:30:56 +0000 | [diff] [blame] | 3572 | const struct pci_device_id *entry) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3573 | { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3574 | struct net_device *net_dev; |
| 3575 | struct efx_nic *efx; |
Ben Hutchings | fadac6a | 2011-11-19 00:35:47 +0000 | [diff] [blame] | 3576 | int rc; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3577 | |
| 3578 | /* Allocate and initialise a struct net_device and struct efx_nic */ |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 3579 | net_dev = alloc_etherdev_mqs(sizeof(*efx), EFX_MAX_CORE_TX_QUEUES, |
| 3580 | EFX_MAX_RX_QUEUES); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3581 | if (!net_dev) |
| 3582 | return -ENOMEM; |
Ben Hutchings | adeb15a | 2012-08-02 01:39:38 +0100 | [diff] [blame] | 3583 | efx = netdev_priv(net_dev); |
| 3584 | efx->type = (const struct efx_nic_type *) entry->driver_data; |
Andrew Rybchenko | ebfcd0f | 2016-06-15 17:43:20 +0100 | [diff] [blame] | 3585 | efx->fixed_features |= NETIF_F_HIGHDMA; |
Andrew Rybchenko | eb7cfd8 | 2016-06-15 17:51:36 +0100 | [diff] [blame] | 3586 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3587 | pci_set_drvdata(pci_dev, efx); |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 3588 | SET_NETDEV_DEV(net_dev, &pci_dev->dev); |
Ben Hutchings | adeb15a | 2012-08-02 01:39:38 +0100 | [diff] [blame] | 3589 | rc = efx_init_struct(efx, pci_dev, net_dev); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3590 | if (rc) |
| 3591 | goto fail1; |
| 3592 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 3593 | netif_info(efx, probe, efx->net_dev, |
Ben Hutchings | ff79c8a | 2011-07-13 16:21:24 +0100 | [diff] [blame] | 3594 | "Solarflare NIC detected\n"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3595 | |
Shradha Shah | 6f7f8aa | 2015-05-06 01:00:07 +0100 | [diff] [blame] | 3596 | if (!efx->type->is_vf) |
| 3597 | efx_probe_vpd_strings(efx); |
Ben Hutchings | 460eeaa | 2012-03-05 15:35:39 +0000 | [diff] [blame] | 3598 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3599 | /* Set up basic I/O (BAR mappings etc) */ |
| 3600 | rc = efx_init_io(efx); |
| 3601 | if (rc) |
| 3602 | goto fail2; |
| 3603 | |
Jon Cooper | 8a53140 | 2017-02-08 16:51:18 +0000 | [diff] [blame] | 3604 | rc = efx_pci_probe_post_io(efx); |
| 3605 | if (rc) { |
| 3606 | /* On failure, retry once immediately. |
| 3607 | * If we aborted probe due to a scheduled reset, dismiss it. |
| 3608 | */ |
| 3609 | efx->reset_pending = 0; |
| 3610 | rc = efx_pci_probe_post_io(efx); |
| 3611 | if (rc) { |
| 3612 | /* On another failure, retry once more |
| 3613 | * after a 50-305ms delay. |
| 3614 | */ |
| 3615 | unsigned char r; |
| 3616 | |
| 3617 | get_random_bytes(&r, 1); |
| 3618 | msleep((unsigned int)r + 50); |
| 3619 | efx->reset_pending = 0; |
| 3620 | rc = efx_pci_probe_post_io(efx); |
| 3621 | } |
| 3622 | } |
Ben Hutchings | fadac6a | 2011-11-19 00:35:47 +0000 | [diff] [blame] | 3623 | if (rc) |
| 3624 | goto fail3; |
Steve Hodgson | fa402b2 | 2008-12-12 22:08:16 -0800 | [diff] [blame] | 3625 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 3626 | netif_dbg(efx, probe, efx->net_dev, "initialisation successful\n"); |
Ben Hutchings | a5211bb | 2009-10-23 08:33:09 +0000 | [diff] [blame] | 3627 | |
Ben Hutchings | 7c43161 | 2012-01-27 17:23:58 +0000 | [diff] [blame] | 3628 | /* Try to create MTDs, but allow this to fail */ |
Ben Hutchings | a5211bb | 2009-10-23 08:33:09 +0000 | [diff] [blame] | 3629 | rtnl_lock(); |
Ben Hutchings | 7c43161 | 2012-01-27 17:23:58 +0000 | [diff] [blame] | 3630 | rc = efx_mtd_probe(efx); |
Ben Hutchings | a5211bb | 2009-10-23 08:33:09 +0000 | [diff] [blame] | 3631 | rtnl_unlock(); |
Bert Kenward | 09a0420 | 2015-12-23 08:58:15 +0000 | [diff] [blame] | 3632 | if (rc && rc != -EPERM) |
Ben Hutchings | 7c43161 | 2012-01-27 17:23:58 +0000 | [diff] [blame] | 3633 | netif_warn(efx, probe, efx->net_dev, |
| 3634 | "failed to create MTDs (%d)\n", rc); |
| 3635 | |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 3636 | rc = pci_enable_pcie_error_reporting(pci_dev); |
| 3637 | if (rc && rc != -EINVAL) |
Bert Kenward | 09a0420 | 2015-12-23 08:58:15 +0000 | [diff] [blame] | 3638 | netif_notice(efx, probe, efx->net_dev, |
| 3639 | "PCIE error reporting unavailable (%d).\n", |
| 3640 | rc); |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 3641 | |
Jon Cooper | e5fbd97 | 2017-02-08 16:52:10 +0000 | [diff] [blame] | 3642 | if (efx->type->udp_tnl_push_ports) |
| 3643 | efx->type->udp_tnl_push_ports(efx); |
| 3644 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3645 | return 0; |
| 3646 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3647 | fail3: |
| 3648 | efx_fini_io(efx); |
| 3649 | fail2: |
| 3650 | efx_fini_struct(efx); |
| 3651 | fail1: |
Steve Hodgson | 5e2a911 | 2010-02-12 12:32:27 -0800 | [diff] [blame] | 3652 | WARN_ON(rc > 0); |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 3653 | netif_dbg(efx, drv, efx->net_dev, "initialisation failed. rc=%d\n", rc); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3654 | free_netdev(net_dev); |
| 3655 | return rc; |
| 3656 | } |
| 3657 | |
Shradha Shah | 834e23d | 2015-05-06 00:55:58 +0100 | [diff] [blame] | 3658 | /* efx_pci_sriov_configure returns the actual number of Virtual Functions |
| 3659 | * enabled on success |
| 3660 | */ |
| 3661 | #ifdef CONFIG_SFC_SRIOV |
| 3662 | static int efx_pci_sriov_configure(struct pci_dev *dev, int num_vfs) |
| 3663 | { |
| 3664 | int rc; |
| 3665 | struct efx_nic *efx = pci_get_drvdata(dev); |
| 3666 | |
| 3667 | if (efx->type->sriov_configure) { |
| 3668 | rc = efx->type->sriov_configure(efx, num_vfs); |
| 3669 | if (rc) |
| 3670 | return rc; |
| 3671 | else |
| 3672 | return num_vfs; |
| 3673 | } else |
| 3674 | return -EOPNOTSUPP; |
| 3675 | } |
| 3676 | #endif |
| 3677 | |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3678 | static int efx_pm_freeze(struct device *dev) |
| 3679 | { |
| 3680 | struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev)); |
| 3681 | |
Ben Hutchings | 61da026 | 2012-07-27 19:35:39 +0100 | [diff] [blame] | 3682 | rtnl_lock(); |
| 3683 | |
Ben Hutchings | 6032fb5 | 2012-07-27 19:35:47 +0100 | [diff] [blame] | 3684 | if (efx->state != STATE_DISABLED) { |
| 3685 | efx->state = STATE_UNINIT; |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3686 | |
Daniel Pieczko | c2f3b8e | 2012-10-17 13:21:23 +0100 | [diff] [blame] | 3687 | efx_device_detach_sync(efx); |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3688 | |
Ben Hutchings | 6032fb5 | 2012-07-27 19:35:47 +0100 | [diff] [blame] | 3689 | efx_stop_all(efx); |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 3690 | efx_disable_interrupts(efx); |
Ben Hutchings | 6032fb5 | 2012-07-27 19:35:47 +0100 | [diff] [blame] | 3691 | } |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3692 | |
Ben Hutchings | 61da026 | 2012-07-27 19:35:39 +0100 | [diff] [blame] | 3693 | rtnl_unlock(); |
| 3694 | |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3695 | return 0; |
| 3696 | } |
| 3697 | |
| 3698 | static int efx_pm_thaw(struct device *dev) |
| 3699 | { |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 3700 | int rc; |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3701 | struct efx_nic *efx = pci_get_drvdata(to_pci_dev(dev)); |
| 3702 | |
Ben Hutchings | 61da026 | 2012-07-27 19:35:39 +0100 | [diff] [blame] | 3703 | rtnl_lock(); |
| 3704 | |
Ben Hutchings | 6032fb5 | 2012-07-27 19:35:47 +0100 | [diff] [blame] | 3705 | if (efx->state != STATE_DISABLED) { |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 3706 | rc = efx_enable_interrupts(efx); |
| 3707 | if (rc) |
| 3708 | goto fail; |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3709 | |
Ben Hutchings | 6032fb5 | 2012-07-27 19:35:47 +0100 | [diff] [blame] | 3710 | mutex_lock(&efx->mac_lock); |
| 3711 | efx->phy_op->reconfigure(efx); |
| 3712 | mutex_unlock(&efx->mac_lock); |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3713 | |
Ben Hutchings | 6032fb5 | 2012-07-27 19:35:47 +0100 | [diff] [blame] | 3714 | efx_start_all(efx); |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3715 | |
Peter Dunning | 9c568fd | 2017-02-17 15:50:43 +0000 | [diff] [blame] | 3716 | efx_device_attach_if_not_resetting(efx); |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3717 | |
Ben Hutchings | 6032fb5 | 2012-07-27 19:35:47 +0100 | [diff] [blame] | 3718 | efx->state = STATE_READY; |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3719 | |
Ben Hutchings | 6032fb5 | 2012-07-27 19:35:47 +0100 | [diff] [blame] | 3720 | efx->type->resume_wol(efx); |
| 3721 | } |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3722 | |
Ben Hutchings | 61da026 | 2012-07-27 19:35:39 +0100 | [diff] [blame] | 3723 | rtnl_unlock(); |
| 3724 | |
Steve Hodgson | 319ba64 | 2010-06-01 11:17:24 +0000 | [diff] [blame] | 3725 | /* Reschedule any quenched resets scheduled during efx_pm_freeze() */ |
| 3726 | queue_work(reset_workqueue, &efx->reset_work); |
| 3727 | |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3728 | return 0; |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 3729 | |
| 3730 | fail: |
| 3731 | rtnl_unlock(); |
| 3732 | |
| 3733 | return rc; |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3734 | } |
| 3735 | |
| 3736 | static int efx_pm_poweroff(struct device *dev) |
| 3737 | { |
| 3738 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 3739 | struct efx_nic *efx = pci_get_drvdata(pci_dev); |
| 3740 | |
| 3741 | efx->type->fini(efx); |
| 3742 | |
Ben Hutchings | a7d529a | 2011-06-24 20:46:31 +0100 | [diff] [blame] | 3743 | efx->reset_pending = 0; |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3744 | |
| 3745 | pci_save_state(pci_dev); |
| 3746 | return pci_set_power_state(pci_dev, PCI_D3hot); |
| 3747 | } |
| 3748 | |
| 3749 | /* Used for both resume and restore */ |
| 3750 | static int efx_pm_resume(struct device *dev) |
| 3751 | { |
| 3752 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 3753 | struct efx_nic *efx = pci_get_drvdata(pci_dev); |
| 3754 | int rc; |
| 3755 | |
| 3756 | rc = pci_set_power_state(pci_dev, PCI_D0); |
| 3757 | if (rc) |
| 3758 | return rc; |
| 3759 | pci_restore_state(pci_dev); |
| 3760 | rc = pci_enable_device(pci_dev); |
| 3761 | if (rc) |
| 3762 | return rc; |
| 3763 | pci_set_master(efx->pci_dev); |
| 3764 | rc = efx->type->reset(efx, RESET_TYPE_ALL); |
| 3765 | if (rc) |
| 3766 | return rc; |
| 3767 | rc = efx->type->init(efx); |
| 3768 | if (rc) |
| 3769 | return rc; |
Jon Cooper | 261e4d9 | 2013-04-15 18:51:54 +0100 | [diff] [blame] | 3770 | rc = efx_pm_thaw(dev); |
| 3771 | return rc; |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3772 | } |
| 3773 | |
| 3774 | static int efx_pm_suspend(struct device *dev) |
| 3775 | { |
| 3776 | int rc; |
| 3777 | |
| 3778 | efx_pm_freeze(dev); |
| 3779 | rc = efx_pm_poweroff(dev); |
| 3780 | if (rc) |
| 3781 | efx_pm_resume(dev); |
| 3782 | return rc; |
| 3783 | } |
| 3784 | |
Ben Hutchings | 18e83e4 | 2012-01-05 19:05:20 +0000 | [diff] [blame] | 3785 | static const struct dev_pm_ops efx_pm_ops = { |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3786 | .suspend = efx_pm_suspend, |
| 3787 | .resume = efx_pm_resume, |
| 3788 | .freeze = efx_pm_freeze, |
| 3789 | .thaw = efx_pm_thaw, |
| 3790 | .poweroff = efx_pm_poweroff, |
| 3791 | .restore = efx_pm_resume, |
| 3792 | }; |
| 3793 | |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 3794 | /* A PCI error affecting this device was detected. |
| 3795 | * At this point MMIO and DMA may be disabled. |
| 3796 | * Stop the software path and request a slot reset. |
| 3797 | */ |
stephen hemminger | debd003 | 2013-03-16 06:57:51 +0000 | [diff] [blame] | 3798 | static pci_ers_result_t efx_io_error_detected(struct pci_dev *pdev, |
| 3799 | enum pci_channel_state state) |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 3800 | { |
| 3801 | pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED; |
| 3802 | struct efx_nic *efx = pci_get_drvdata(pdev); |
| 3803 | |
| 3804 | if (state == pci_channel_io_perm_failure) |
| 3805 | return PCI_ERS_RESULT_DISCONNECT; |
| 3806 | |
| 3807 | rtnl_lock(); |
| 3808 | |
| 3809 | if (efx->state != STATE_DISABLED) { |
| 3810 | efx->state = STATE_RECOVERY; |
| 3811 | efx->reset_pending = 0; |
| 3812 | |
| 3813 | efx_device_detach_sync(efx); |
| 3814 | |
| 3815 | efx_stop_all(efx); |
Ben Hutchings | d829118 | 2012-10-05 23:35:41 +0100 | [diff] [blame] | 3816 | efx_disable_interrupts(efx); |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 3817 | |
| 3818 | status = PCI_ERS_RESULT_NEED_RESET; |
| 3819 | } else { |
| 3820 | /* If the interface is disabled we don't want to do anything |
| 3821 | * with it. |
| 3822 | */ |
| 3823 | status = PCI_ERS_RESULT_RECOVERED; |
| 3824 | } |
| 3825 | |
| 3826 | rtnl_unlock(); |
| 3827 | |
| 3828 | pci_disable_device(pdev); |
| 3829 | |
| 3830 | return status; |
| 3831 | } |
| 3832 | |
Joe Perches | dbedd44 | 2015-03-06 20:49:12 -0800 | [diff] [blame] | 3833 | /* Fake a successful reset, which will be performed later in efx_io_resume. */ |
stephen hemminger | debd003 | 2013-03-16 06:57:51 +0000 | [diff] [blame] | 3834 | static pci_ers_result_t efx_io_slot_reset(struct pci_dev *pdev) |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 3835 | { |
| 3836 | struct efx_nic *efx = pci_get_drvdata(pdev); |
| 3837 | pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED; |
| 3838 | int rc; |
| 3839 | |
| 3840 | if (pci_enable_device(pdev)) { |
| 3841 | netif_err(efx, hw, efx->net_dev, |
| 3842 | "Cannot re-enable PCI device after reset.\n"); |
| 3843 | status = PCI_ERS_RESULT_DISCONNECT; |
| 3844 | } |
| 3845 | |
| 3846 | rc = pci_cleanup_aer_uncorrect_error_status(pdev); |
| 3847 | if (rc) { |
| 3848 | netif_err(efx, hw, efx->net_dev, |
| 3849 | "pci_cleanup_aer_uncorrect_error_status failed (%d)\n", rc); |
| 3850 | /* Non-fatal error. Continue. */ |
| 3851 | } |
| 3852 | |
| 3853 | return status; |
| 3854 | } |
| 3855 | |
| 3856 | /* Perform the actual reset and resume I/O operations. */ |
| 3857 | static void efx_io_resume(struct pci_dev *pdev) |
| 3858 | { |
| 3859 | struct efx_nic *efx = pci_get_drvdata(pdev); |
| 3860 | int rc; |
| 3861 | |
| 3862 | rtnl_lock(); |
| 3863 | |
| 3864 | if (efx->state == STATE_DISABLED) |
| 3865 | goto out; |
| 3866 | |
| 3867 | rc = efx_reset(efx, RESET_TYPE_ALL); |
| 3868 | if (rc) { |
| 3869 | netif_err(efx, hw, efx->net_dev, |
| 3870 | "efx_reset failed after PCI error (%d)\n", rc); |
| 3871 | } else { |
| 3872 | efx->state = STATE_READY; |
| 3873 | netif_dbg(efx, hw, efx->net_dev, |
| 3874 | "Done resetting and resuming IO after PCI error.\n"); |
| 3875 | } |
| 3876 | |
| 3877 | out: |
| 3878 | rtnl_unlock(); |
| 3879 | } |
| 3880 | |
| 3881 | /* For simplicity and reliability, we always require a slot reset and try to |
| 3882 | * reset the hardware when a pci error affecting the device is detected. |
| 3883 | * We leave both the link_reset and mmio_enabled callback unimplemented: |
| 3884 | * with our request for slot reset the mmio_enabled callback will never be |
| 3885 | * called, and the link_reset callback is not used by AER or EEH mechanisms. |
| 3886 | */ |
Julia Lawall | c300366b | 2015-11-14 11:06:57 +0100 | [diff] [blame] | 3887 | static const struct pci_error_handlers efx_err_handlers = { |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 3888 | .error_detected = efx_io_error_detected, |
| 3889 | .slot_reset = efx_io_slot_reset, |
| 3890 | .resume = efx_io_resume, |
| 3891 | }; |
| 3892 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3893 | static struct pci_driver efx_pci_driver = { |
Ben Hutchings | c5d5f5f | 2010-06-23 11:30:26 +0000 | [diff] [blame] | 3894 | .name = KBUILD_MODNAME, |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3895 | .id_table = efx_pci_table, |
| 3896 | .probe = efx_pci_probe, |
| 3897 | .remove = efx_pci_remove, |
Ben Hutchings | 89c758f | 2009-11-29 03:43:07 +0000 | [diff] [blame] | 3898 | .driver.pm = &efx_pm_ops, |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 3899 | .err_handler = &efx_err_handlers, |
Shradha Shah | 834e23d | 2015-05-06 00:55:58 +0100 | [diff] [blame] | 3900 | #ifdef CONFIG_SFC_SRIOV |
| 3901 | .sriov_configure = efx_pci_sriov_configure, |
| 3902 | #endif |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3903 | }; |
| 3904 | |
| 3905 | /************************************************************************** |
| 3906 | * |
| 3907 | * Kernel module interface |
| 3908 | * |
| 3909 | *************************************************************************/ |
| 3910 | |
| 3911 | module_param(interrupt_mode, uint, 0444); |
| 3912 | MODULE_PARM_DESC(interrupt_mode, |
| 3913 | "Interrupt mode (0=>MSIX 1=>MSI 2=>legacy)"); |
| 3914 | |
| 3915 | static int __init efx_init_module(void) |
| 3916 | { |
| 3917 | int rc; |
| 3918 | |
| 3919 | printk(KERN_INFO "Solarflare NET driver v" EFX_DRIVER_VERSION "\n"); |
| 3920 | |
| 3921 | rc = register_netdevice_notifier(&efx_netdev_notifier); |
| 3922 | if (rc) |
| 3923 | goto err_notifier; |
| 3924 | |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 3925 | #ifdef CONFIG_SFC_SRIOV |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 3926 | rc = efx_init_sriov(); |
| 3927 | if (rc) |
| 3928 | goto err_sriov; |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 3929 | #endif |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 3930 | |
Steve Hodgson | 1ab0062 | 2008-12-12 21:33:02 -0800 | [diff] [blame] | 3931 | reset_workqueue = create_singlethread_workqueue("sfc_reset"); |
| 3932 | if (!reset_workqueue) { |
| 3933 | rc = -ENOMEM; |
| 3934 | goto err_reset; |
| 3935 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3936 | |
| 3937 | rc = pci_register_driver(&efx_pci_driver); |
| 3938 | if (rc < 0) |
| 3939 | goto err_pci; |
| 3940 | |
| 3941 | return 0; |
| 3942 | |
| 3943 | err_pci: |
Steve Hodgson | 1ab0062 | 2008-12-12 21:33:02 -0800 | [diff] [blame] | 3944 | destroy_workqueue(reset_workqueue); |
| 3945 | err_reset: |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 3946 | #ifdef CONFIG_SFC_SRIOV |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 3947 | efx_fini_sriov(); |
| 3948 | err_sriov: |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 3949 | #endif |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3950 | unregister_netdevice_notifier(&efx_netdev_notifier); |
| 3951 | err_notifier: |
| 3952 | return rc; |
| 3953 | } |
| 3954 | |
| 3955 | static void __exit efx_exit_module(void) |
| 3956 | { |
| 3957 | printk(KERN_INFO "Solarflare NET driver unloading\n"); |
| 3958 | |
| 3959 | pci_unregister_driver(&efx_pci_driver); |
Steve Hodgson | 1ab0062 | 2008-12-12 21:33:02 -0800 | [diff] [blame] | 3960 | destroy_workqueue(reset_workqueue); |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 3961 | #ifdef CONFIG_SFC_SRIOV |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 3962 | efx_fini_sriov(); |
Shradha Shah | 7fa8d54 | 2015-05-06 00:55:13 +0100 | [diff] [blame] | 3963 | #endif |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3964 | unregister_netdevice_notifier(&efx_netdev_notifier); |
| 3965 | |
| 3966 | } |
| 3967 | |
| 3968 | module_init(efx_init_module); |
| 3969 | module_exit(efx_exit_module); |
| 3970 | |
Ben Hutchings | 906bb26 | 2009-11-29 15:16:19 +0000 | [diff] [blame] | 3971 | MODULE_AUTHOR("Solarflare Communications and " |
| 3972 | "Michael Brown <mbrown@fensystems.co.uk>"); |
Ben Hutchings | 6a350fd | 2014-02-12 19:00:07 +0000 | [diff] [blame] | 3973 | MODULE_DESCRIPTION("Solarflare network driver"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3974 | MODULE_LICENSE("GPL"); |
| 3975 | MODULE_DEVICE_TABLE(pci, efx_pci_table); |
Edward Cree | 14077e9 | 2017-01-03 15:46:00 +0000 | [diff] [blame] | 3976 | MODULE_VERSION(EFX_DRIVER_VERSION); |