Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel 10 Gigabit PCI Express Linux driver |
Mark Rustad | 3768901 | 2016-01-07 10:13:03 -0800 | [diff] [blame] | 4 | Copyright(c) 1999 - 2016 Intel Corporation. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5 | |
| 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, |
| 8 | version 2, as published by the Free Software Foundation. |
| 9 | |
| 10 | This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License along with |
| 16 | this program; if not, write to the Free Software Foundation, Inc., |
| 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | |
| 19 | The full GNU General Public License is included in this distribution in |
| 20 | the file called "COPYING". |
| 21 | |
| 22 | Contact Information: |
Jacob Keller | b89aae7 | 2014-02-22 01:23:50 +0000 | [diff] [blame] | 23 | Linux NICS <linux.nics@intel.com> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 24 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 26 | |
| 27 | *******************************************************************************/ |
| 28 | |
| 29 | #include <linux/types.h> |
| 30 | #include <linux/module.h> |
| 31 | #include <linux/pci.h> |
| 32 | #include <linux/netdevice.h> |
| 33 | #include <linux/vmalloc.h> |
| 34 | #include <linux/string.h> |
| 35 | #include <linux/in.h> |
Alexey Dobriyan | a6b7a40 | 2011-06-06 10:43:46 +0000 | [diff] [blame] | 36 | #include <linux/interrupt.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 37 | #include <linux/ip.h> |
| 38 | #include <linux/tcp.h> |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 39 | #include <linux/sctp.h> |
Lucy Liu | 6012786 | 2009-07-22 14:07:33 +0000 | [diff] [blame] | 40 | #include <linux/pkt_sched.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 41 | #include <linux/ipv6.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 42 | #include <linux/slab.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 43 | #include <net/checksum.h> |
| 44 | #include <net/ip6_checksum.h> |
Martin K Petersen | c762dff | 2014-11-15 14:24:51 +0000 | [diff] [blame] | 45 | #include <linux/etherdevice.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 46 | #include <linux/ethtool.h> |
Jiri Pirko | 0178934 | 2011-08-16 06:29:00 +0000 | [diff] [blame] | 47 | #include <linux/if.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 48 | #include <linux/if_vlan.h> |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 49 | #include <linux/if_macvlan.h> |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 50 | #include <linux/if_bridge.h> |
Paul Gortmaker | 70c7160 | 2011-05-22 16:47:17 -0400 | [diff] [blame] | 51 | #include <linux/prefetch.h> |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 52 | #include <scsi/fc/fc_fcoe.h> |
Alexander Duyck | b3a4955 | 2016-06-16 12:22:19 -0700 | [diff] [blame] | 53 | #include <net/udp_tunnel.h> |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 54 | #include <net/pkt_cls.h> |
| 55 | #include <net/tc_act/tc_gact.h> |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 56 | #include <net/tc_act/tc_mirred.h> |
Sowmini Varadhan | 9f3c750 | 2016-10-24 15:36:39 -0700 | [diff] [blame] | 57 | #include <net/vxlan.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 58 | |
| 59 | #include "ixgbe.h" |
| 60 | #include "ixgbe_common.h" |
Don Skidmore | ee5f784 | 2009-11-06 12:56:20 +0000 | [diff] [blame] | 61 | #include "ixgbe_dcb_82599.h" |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 62 | #include "ixgbe_sriov.h" |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 63 | #include "ixgbe_model.h" |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 64 | |
| 65 | char ixgbe_driver_name[] = "ixgbe"; |
Stephen Hemminger | 9c8eb72 | 2007-10-29 10:46:24 -0700 | [diff] [blame] | 66 | static const char ixgbe_driver_string[] = |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 67 | "Intel(R) 10 Gigabit PCI Express Network Driver"; |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 68 | #ifdef IXGBE_FCOE |
Neerav Parikh | ea81875 | 2012-01-04 20:23:40 +0000 | [diff] [blame] | 69 | char ixgbe_default_device_descr[] = |
| 70 | "Intel(R) 10 Gigabit Network Connection"; |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 71 | #else |
| 72 | static char ixgbe_default_device_descr[] = |
| 73 | "Intel(R) 10 Gigabit Network Connection"; |
| 74 | #endif |
Mark Rustad | 1733284 | 2016-12-12 15:08:13 -0800 | [diff] [blame] | 75 | #define DRV_VERSION "5.0.0-k" |
Stephen Hemminger | 9c8eb72 | 2007-10-29 10:46:24 -0700 | [diff] [blame] | 76 | const char ixgbe_driver_version[] = DRV_VERSION; |
Don Skidmore | a52055e | 2011-02-23 09:58:39 +0000 | [diff] [blame] | 77 | static const char ixgbe_copyright[] = |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 78 | "Copyright (c) 1999-2016 Intel Corporation."; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 79 | |
Don Skidmore | f44e751 | 2015-06-09 16:36:23 -0700 | [diff] [blame] | 80 | static const char ixgbe_overheat_msg[] = "Network adapter has been stopped because it has over heated. Restart the computer. If the problem persists, power off the system and replace the adapter"; |
| 81 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 82 | static const struct ixgbe_info *ixgbe_info_tbl[] = { |
Don Skidmore | 6a14ee0 | 2014-12-05 03:59:50 +0000 | [diff] [blame] | 83 | [board_82598] = &ixgbe_82598_info, |
| 84 | [board_82599] = &ixgbe_82599_info, |
| 85 | [board_X540] = &ixgbe_X540_info, |
| 86 | [board_X550] = &ixgbe_X550_info, |
| 87 | [board_X550EM_x] = &ixgbe_X550EM_x_info, |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 88 | [board_x550em_a] = &ixgbe_x550em_a_info, |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 89 | [board_x550em_a_fw] = &ixgbe_x550em_a_fw_info, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | /* ixgbe_pci_tbl - PCI Device ID Table |
| 93 | * |
| 94 | * Wildcard entries (PCI_ANY_ID) should come last |
| 95 | * Last entry must be all 0s |
| 96 | * |
| 97 | * { Vendor ID, Device ID, SubVendor ID, SubDevice ID, |
| 98 | * Class, Class Mask, private data (not used) } |
| 99 | */ |
Benoit Taine | 9baa3c3 | 2014-08-08 15:56:03 +0200 | [diff] [blame] | 100 | static const struct pci_device_id ixgbe_pci_tbl[] = { |
Alexander Duyck | 54239c6 | 2011-07-15 03:06:06 +0000 | [diff] [blame] | 101 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 }, |
| 102 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 }, |
| 103 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 }, |
| 104 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 }, |
| 105 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 }, |
| 106 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 }, |
| 107 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 }, |
| 108 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 }, |
| 109 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 }, |
| 110 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 }, |
| 111 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 }, |
| 112 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 }, |
| 113 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 }, |
| 114 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 }, |
| 115 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 }, |
| 116 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 }, |
| 117 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 }, |
| 118 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 }, |
| 119 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 }, |
| 120 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 }, |
| 121 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 }, |
| 122 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 }, |
| 123 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 }, |
| 124 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 }, |
| 125 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 }, |
| 126 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 }, |
Don Skidmore | 8f58332 | 2013-07-27 06:25:38 +0000 | [diff] [blame] | 127 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_QSFP_SF_QP), board_82599 }, |
Emil Tantilov | 7d14528 | 2011-09-08 08:30:14 +0000 | [diff] [blame] | 128 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 }, |
Emil Tantilov | 9e791e4 | 2011-11-04 06:43:29 +0000 | [diff] [blame] | 129 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 }, |
joshua.a.hay@intel.com | df376f0 | 2012-09-21 00:08:21 +0000 | [diff] [blame] | 130 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T1), board_X540 }, |
Don Skidmore | 6a14ee0 | 2014-12-05 03:59:50 +0000 | [diff] [blame] | 131 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550T), board_X550}, |
Mark Rustad | a711ad8 | 2016-03-21 11:21:31 -0700 | [diff] [blame] | 132 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550T1), board_X550}, |
Don Skidmore | 6a14ee0 | 2014-12-05 03:59:50 +0000 | [diff] [blame] | 133 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_KX4), board_X550EM_x}, |
| 134 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_KR), board_X550EM_x}, |
Don Skidmore | deda562 | 2015-06-09 17:39:46 -0700 | [diff] [blame] | 135 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_10G_T), board_X550EM_x}, |
Mark Rustad | 018d714 | 2015-08-08 16:19:19 -0700 | [diff] [blame] | 136 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_X_SFP), board_X550EM_x}, |
Mark Rustad | f572b2c | 2016-04-01 12:18:46 -0700 | [diff] [blame] | 137 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_KR), board_x550em_a }, |
| 138 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_KR_L), board_x550em_a }, |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 139 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SFP_N), board_x550em_a }, |
Mark Rustad | 200157c | 2016-04-01 12:18:40 -0700 | [diff] [blame] | 140 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SGMII), board_x550em_a }, |
| 141 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SGMII_L), board_x550em_a }, |
Don Skidmore | 92ed843 | 2016-08-17 20:34:40 -0400 | [diff] [blame] | 142 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_10G_T), board_x550em_a}, |
Mark Rustad | 2d40cd1 | 2016-04-01 12:18:35 -0700 | [diff] [blame] | 143 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_SFP), board_x550em_a }, |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 144 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_1G_T), board_x550em_a_fw }, |
| 145 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X550EM_A_1G_T_L), board_x550em_a_fw }, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 146 | /* required last entry */ |
| 147 | {0, } |
| 148 | }; |
| 149 | MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl); |
| 150 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 151 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 152 | static int ixgbe_notify_dca(struct notifier_block *, unsigned long event, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 153 | void *p); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 154 | static struct notifier_block dca_notifier = { |
| 155 | .notifier_call = ixgbe_notify_dca, |
| 156 | .next = NULL, |
| 157 | .priority = 0 |
| 158 | }; |
| 159 | #endif |
| 160 | |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 161 | #ifdef CONFIG_PCI_IOV |
| 162 | static unsigned int max_vfs; |
| 163 | module_param(max_vfs, uint, 0); |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 164 | MODULE_PARM_DESC(max_vfs, |
Jacob Keller | 170e854 | 2013-11-09 04:52:32 -0800 | [diff] [blame] | 165 | "Maximum number of virtual functions to allocate per physical function - default is zero and maximum value is 63. (Deprecated)"); |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 166 | #endif /* CONFIG_PCI_IOV */ |
| 167 | |
Peter P Waskiewicz Jr | 8ef78ad | 2012-02-01 09:19:21 +0000 | [diff] [blame] | 168 | static unsigned int allow_unsupported_sfp; |
| 169 | module_param(allow_unsupported_sfp, uint, 0); |
| 170 | MODULE_PARM_DESC(allow_unsupported_sfp, |
| 171 | "Allow unsupported and untested SFP+ modules on 82599-based adapters"); |
| 172 | |
stephen hemminger | b3f4d59 | 2012-03-13 06:04:20 +0000 | [diff] [blame] | 173 | #define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK) |
| 174 | static int debug = -1; |
| 175 | module_param(debug, int, 0); |
| 176 | MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)"); |
| 177 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 178 | MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>"); |
| 179 | MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver"); |
| 180 | MODULE_LICENSE("GPL"); |
| 181 | MODULE_VERSION(DRV_VERSION); |
| 182 | |
Mark Rustad | 780484d | 2015-10-21 17:21:10 -0700 | [diff] [blame] | 183 | static struct workqueue_struct *ixgbe_wq; |
| 184 | |
Mark Rustad | 1443846 | 2014-02-28 15:48:57 -0800 | [diff] [blame] | 185 | static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev); |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 186 | static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *); |
Mark Rustad | 1443846 | 2014-02-28 15:48:57 -0800 | [diff] [blame] | 187 | |
Jacob Keller | b8e8200 | 2013-04-09 07:20:09 +0000 | [diff] [blame] | 188 | static int ixgbe_read_pci_cfg_word_parent(struct ixgbe_adapter *adapter, |
| 189 | u32 reg, u16 *value) |
| 190 | { |
Jacob Keller | b8e8200 | 2013-04-09 07:20:09 +0000 | [diff] [blame] | 191 | struct pci_dev *parent_dev; |
| 192 | struct pci_bus *parent_bus; |
| 193 | |
| 194 | parent_bus = adapter->pdev->bus->parent; |
| 195 | if (!parent_bus) |
| 196 | return -1; |
| 197 | |
| 198 | parent_dev = parent_bus->self; |
| 199 | if (!parent_dev) |
| 200 | return -1; |
| 201 | |
Yijing Wang | c0798ed | 2013-09-04 17:30:08 +0000 | [diff] [blame] | 202 | if (!pci_is_pcie(parent_dev)) |
Jacob Keller | b8e8200 | 2013-04-09 07:20:09 +0000 | [diff] [blame] | 203 | return -1; |
| 204 | |
Yijing Wang | c0798ed | 2013-09-04 17:30:08 +0000 | [diff] [blame] | 205 | pcie_capability_read_word(parent_dev, reg, value); |
Mark Rustad | 1443846 | 2014-02-28 15:48:57 -0800 | [diff] [blame] | 206 | if (*value == IXGBE_FAILED_READ_CFG_WORD && |
| 207 | ixgbe_check_cfg_remove(&adapter->hw, parent_dev)) |
| 208 | return -1; |
Jacob Keller | b8e8200 | 2013-04-09 07:20:09 +0000 | [diff] [blame] | 209 | return 0; |
| 210 | } |
| 211 | |
| 212 | static s32 ixgbe_get_parent_bus_info(struct ixgbe_adapter *adapter) |
| 213 | { |
| 214 | struct ixgbe_hw *hw = &adapter->hw; |
| 215 | u16 link_status = 0; |
| 216 | int err; |
| 217 | |
| 218 | hw->bus.type = ixgbe_bus_type_pci_express; |
| 219 | |
| 220 | /* Get the negotiated link width and speed from PCI config space of the |
| 221 | * parent, as this device is behind a switch |
| 222 | */ |
| 223 | err = ixgbe_read_pci_cfg_word_parent(adapter, 18, &link_status); |
| 224 | |
| 225 | /* assume caller will handle error case */ |
| 226 | if (err) |
| 227 | return err; |
| 228 | |
| 229 | hw->bus.width = ixgbe_convert_bus_width(link_status); |
| 230 | hw->bus.speed = ixgbe_convert_bus_speed(link_status); |
| 231 | |
| 232 | return 0; |
| 233 | } |
| 234 | |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 235 | /** |
| 236 | * ixgbe_check_from_parent - Determine whether PCIe info should come from parent |
| 237 | * @hw: hw specific details |
| 238 | * |
| 239 | * This function is used by probe to determine whether a device's PCI-Express |
| 240 | * bandwidth details should be gathered from the parent bus instead of from the |
| 241 | * device. Used to ensure that various locations all have the correct device ID |
| 242 | * checks. |
| 243 | */ |
| 244 | static inline bool ixgbe_pcie_from_parent(struct ixgbe_hw *hw) |
| 245 | { |
| 246 | switch (hw->device_id) { |
| 247 | case IXGBE_DEV_ID_82599_SFP_SF_QP: |
Don Skidmore | 8f58332 | 2013-07-27 06:25:38 +0000 | [diff] [blame] | 248 | case IXGBE_DEV_ID_82599_QSFP_SF_QP: |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 249 | return true; |
| 250 | default: |
| 251 | return false; |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | static void ixgbe_check_minimum_link(struct ixgbe_adapter *adapter, |
| 256 | int expected_gts) |
| 257 | { |
Don Skidmore | f9328bc | 2015-06-18 13:24:06 -0400 | [diff] [blame] | 258 | struct ixgbe_hw *hw = &adapter->hw; |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 259 | int max_gts = 0; |
| 260 | enum pci_bus_speed speed = PCI_SPEED_UNKNOWN; |
| 261 | enum pcie_link_width width = PCIE_LNK_WIDTH_UNKNOWN; |
| 262 | struct pci_dev *pdev; |
| 263 | |
Don Skidmore | f9328bc | 2015-06-18 13:24:06 -0400 | [diff] [blame] | 264 | /* Some devices are not connected over PCIe and thus do not negotiate |
| 265 | * speed. These devices do not have valid bus info, and thus any report |
| 266 | * we generate may not be correct. |
| 267 | */ |
| 268 | if (hw->bus.type == ixgbe_bus_type_internal) |
| 269 | return; |
| 270 | |
Jacob Keller | 56d1392 | 2015-06-10 11:44:45 -0700 | [diff] [blame] | 271 | /* determine whether to use the parent device */ |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 272 | if (ixgbe_pcie_from_parent(&adapter->hw)) |
| 273 | pdev = adapter->pdev->bus->parent->self; |
| 274 | else |
| 275 | pdev = adapter->pdev; |
| 276 | |
| 277 | if (pcie_get_minimum_link(pdev, &speed, &width) || |
| 278 | speed == PCI_SPEED_UNKNOWN || width == PCIE_LNK_WIDTH_UNKNOWN) { |
| 279 | e_dev_warn("Unable to determine PCI Express bandwidth.\n"); |
| 280 | return; |
| 281 | } |
| 282 | |
| 283 | switch (speed) { |
| 284 | case PCIE_SPEED_2_5GT: |
| 285 | /* 8b/10b encoding reduces max throughput by 20% */ |
| 286 | max_gts = 2 * width; |
| 287 | break; |
| 288 | case PCIE_SPEED_5_0GT: |
| 289 | /* 8b/10b encoding reduces max throughput by 20% */ |
| 290 | max_gts = 4 * width; |
| 291 | break; |
| 292 | case PCIE_SPEED_8_0GT: |
Jacob Keller | 9f0a433 | 2013-10-18 05:09:19 +0000 | [diff] [blame] | 293 | /* 128b/130b encoding reduces throughput by less than 2% */ |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 294 | max_gts = 8 * width; |
| 295 | break; |
| 296 | default: |
| 297 | e_dev_warn("Unable to determine PCI Express bandwidth.\n"); |
| 298 | return; |
| 299 | } |
| 300 | |
| 301 | e_dev_info("PCI Express bandwidth of %dGT/s available\n", |
| 302 | max_gts); |
| 303 | e_dev_info("(Speed:%s, Width: x%d, Encoding Loss:%s)\n", |
| 304 | (speed == PCIE_SPEED_8_0GT ? "8.0GT/s" : |
| 305 | speed == PCIE_SPEED_5_0GT ? "5.0GT/s" : |
| 306 | speed == PCIE_SPEED_2_5GT ? "2.5GT/s" : |
| 307 | "Unknown"), |
| 308 | width, |
| 309 | (speed == PCIE_SPEED_2_5GT ? "20%" : |
| 310 | speed == PCIE_SPEED_5_0GT ? "20%" : |
Jacob Keller | 9f0a433 | 2013-10-18 05:09:19 +0000 | [diff] [blame] | 311 | speed == PCIE_SPEED_8_0GT ? "<2%" : |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 312 | "Unknown")); |
| 313 | |
| 314 | if (max_gts < expected_gts) { |
| 315 | e_dev_warn("This is not sufficient for optimal performance of this card.\n"); |
| 316 | e_dev_warn("For optimal performance, at least %dGT/s of bandwidth is required.\n", |
| 317 | expected_gts); |
| 318 | e_dev_warn("A slot with more lanes and/or higher speed is suggested.\n"); |
| 319 | } |
| 320 | } |
| 321 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 322 | static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter) |
| 323 | { |
| 324 | if (!test_bit(__IXGBE_DOWN, &adapter->state) && |
Mark Rustad | 09f40ae | 2014-01-14 18:53:11 -0800 | [diff] [blame] | 325 | !test_bit(__IXGBE_REMOVING, &adapter->state) && |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 326 | !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state)) |
Mark Rustad | 780484d | 2015-10-21 17:21:10 -0700 | [diff] [blame] | 327 | queue_work(ixgbe_wq, &adapter->service_task); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 328 | } |
| 329 | |
Mark Rustad | 2a1a091 | 2014-01-14 18:53:15 -0800 | [diff] [blame] | 330 | static void ixgbe_remove_adapter(struct ixgbe_hw *hw) |
| 331 | { |
| 332 | struct ixgbe_adapter *adapter = hw->back; |
| 333 | |
| 334 | if (!hw->hw_addr) |
| 335 | return; |
| 336 | hw->hw_addr = NULL; |
| 337 | e_dev_err("Adapter removed\n"); |
Mark Rustad | 58cf663 | 2014-03-12 00:38:40 +0000 | [diff] [blame] | 338 | if (test_bit(__IXGBE_SERVICE_INITED, &adapter->state)) |
| 339 | ixgbe_service_event_schedule(adapter); |
Mark Rustad | 2a1a091 | 2014-01-14 18:53:15 -0800 | [diff] [blame] | 340 | } |
| 341 | |
Mark Rustad | f8e2472 | 2014-03-18 07:03:40 +0000 | [diff] [blame] | 342 | static void ixgbe_check_remove(struct ixgbe_hw *hw, u32 reg) |
Mark Rustad | 2a1a091 | 2014-01-14 18:53:15 -0800 | [diff] [blame] | 343 | { |
| 344 | u32 value; |
| 345 | |
| 346 | /* The following check not only optimizes a bit by not |
| 347 | * performing a read on the status register when the |
| 348 | * register just read was a status register read that |
| 349 | * returned IXGBE_FAILED_READ_REG. It also blocks any |
| 350 | * potential recursion. |
| 351 | */ |
| 352 | if (reg == IXGBE_STATUS) { |
| 353 | ixgbe_remove_adapter(hw); |
| 354 | return; |
| 355 | } |
| 356 | value = ixgbe_read_reg(hw, IXGBE_STATUS); |
| 357 | if (value == IXGBE_FAILED_READ_REG) |
| 358 | ixgbe_remove_adapter(hw); |
| 359 | } |
| 360 | |
Mark Rustad | f8e2472 | 2014-03-18 07:03:40 +0000 | [diff] [blame] | 361 | /** |
| 362 | * ixgbe_read_reg - Read from device register |
| 363 | * @hw: hw specific details |
| 364 | * @reg: offset of register to read |
| 365 | * |
| 366 | * Returns : value read or IXGBE_FAILED_READ_REG if removed |
| 367 | * |
| 368 | * This function is used to read device registers. It checks for device |
| 369 | * removal by confirming any read that returns all ones by checking the |
| 370 | * status register value for all ones. This function avoids reading from |
| 371 | * the hardware if a removal was previously detected in which case it |
| 372 | * returns IXGBE_FAILED_READ_REG (all ones). |
| 373 | */ |
| 374 | u32 ixgbe_read_reg(struct ixgbe_hw *hw, u32 reg) |
| 375 | { |
| 376 | u8 __iomem *reg_addr = ACCESS_ONCE(hw->hw_addr); |
| 377 | u32 value; |
| 378 | |
| 379 | if (ixgbe_removed(reg_addr)) |
| 380 | return IXGBE_FAILED_READ_REG; |
Mark Rustad | 2f2219b | 2016-04-07 10:43:50 -0700 | [diff] [blame] | 381 | if (unlikely(hw->phy.nw_mng_if_sel & |
| 382 | IXGBE_NW_MNG_IF_SEL_ENABLE_10_100M)) { |
| 383 | struct ixgbe_adapter *adapter; |
| 384 | int i; |
| 385 | |
| 386 | for (i = 0; i < 200; ++i) { |
| 387 | value = readl(reg_addr + IXGBE_MAC_SGMII_BUSY); |
| 388 | if (likely(!value)) |
| 389 | goto writes_completed; |
| 390 | if (value == IXGBE_FAILED_READ_REG) { |
| 391 | ixgbe_remove_adapter(hw); |
| 392 | return IXGBE_FAILED_READ_REG; |
| 393 | } |
| 394 | udelay(5); |
| 395 | } |
| 396 | |
| 397 | adapter = hw->back; |
| 398 | e_warn(hw, "register writes incomplete %08x\n", value); |
| 399 | } |
| 400 | |
| 401 | writes_completed: |
Mark Rustad | f8e2472 | 2014-03-18 07:03:40 +0000 | [diff] [blame] | 402 | value = readl(reg_addr + reg); |
| 403 | if (unlikely(value == IXGBE_FAILED_READ_REG)) |
| 404 | ixgbe_check_remove(hw, reg); |
| 405 | return value; |
| 406 | } |
| 407 | |
Mark Rustad | 1443846 | 2014-02-28 15:48:57 -0800 | [diff] [blame] | 408 | static bool ixgbe_check_cfg_remove(struct ixgbe_hw *hw, struct pci_dev *pdev) |
| 409 | { |
| 410 | u16 value; |
| 411 | |
| 412 | pci_read_config_word(pdev, PCI_VENDOR_ID, &value); |
| 413 | if (value == IXGBE_FAILED_READ_CFG_WORD) { |
| 414 | ixgbe_remove_adapter(hw); |
| 415 | return true; |
| 416 | } |
| 417 | return false; |
| 418 | } |
| 419 | |
| 420 | u16 ixgbe_read_pci_cfg_word(struct ixgbe_hw *hw, u32 reg) |
| 421 | { |
| 422 | struct ixgbe_adapter *adapter = hw->back; |
| 423 | u16 value; |
| 424 | |
| 425 | if (ixgbe_removed(hw->hw_addr)) |
| 426 | return IXGBE_FAILED_READ_CFG_WORD; |
| 427 | pci_read_config_word(adapter->pdev, reg, &value); |
| 428 | if (value == IXGBE_FAILED_READ_CFG_WORD && |
| 429 | ixgbe_check_cfg_remove(hw, adapter->pdev)) |
| 430 | return IXGBE_FAILED_READ_CFG_WORD; |
| 431 | return value; |
| 432 | } |
| 433 | |
| 434 | #ifdef CONFIG_PCI_IOV |
| 435 | static u32 ixgbe_read_pci_cfg_dword(struct ixgbe_hw *hw, u32 reg) |
| 436 | { |
| 437 | struct ixgbe_adapter *adapter = hw->back; |
| 438 | u32 value; |
| 439 | |
| 440 | if (ixgbe_removed(hw->hw_addr)) |
| 441 | return IXGBE_FAILED_READ_CFG_DWORD; |
| 442 | pci_read_config_dword(adapter->pdev, reg, &value); |
| 443 | if (value == IXGBE_FAILED_READ_CFG_DWORD && |
| 444 | ixgbe_check_cfg_remove(hw, adapter->pdev)) |
| 445 | return IXGBE_FAILED_READ_CFG_DWORD; |
| 446 | return value; |
| 447 | } |
| 448 | #endif /* CONFIG_PCI_IOV */ |
| 449 | |
Jacob Keller | ed19231 | 2014-02-22 01:23:53 +0000 | [diff] [blame] | 450 | void ixgbe_write_pci_cfg_word(struct ixgbe_hw *hw, u32 reg, u16 value) |
| 451 | { |
| 452 | struct ixgbe_adapter *adapter = hw->back; |
| 453 | |
| 454 | if (ixgbe_removed(hw->hw_addr)) |
| 455 | return; |
| 456 | pci_write_config_word(adapter->pdev, reg, value); |
| 457 | } |
| 458 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 459 | static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter) |
| 460 | { |
| 461 | BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state)); |
| 462 | |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 463 | /* flush memory to make sure state is correct before next watchdog */ |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 464 | smp_mb__before_atomic(); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 465 | clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state); |
| 466 | } |
| 467 | |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 468 | struct ixgbe_reg_info { |
| 469 | u32 ofs; |
| 470 | char *name; |
| 471 | }; |
| 472 | |
| 473 | static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = { |
| 474 | |
| 475 | /* General Registers */ |
| 476 | {IXGBE_CTRL, "CTRL"}, |
| 477 | {IXGBE_STATUS, "STATUS"}, |
| 478 | {IXGBE_CTRL_EXT, "CTRL_EXT"}, |
| 479 | |
| 480 | /* Interrupt Registers */ |
| 481 | {IXGBE_EICR, "EICR"}, |
| 482 | |
| 483 | /* RX Registers */ |
| 484 | {IXGBE_SRRCTL(0), "SRRCTL"}, |
| 485 | {IXGBE_DCA_RXCTRL(0), "DRXCTL"}, |
| 486 | {IXGBE_RDLEN(0), "RDLEN"}, |
| 487 | {IXGBE_RDH(0), "RDH"}, |
| 488 | {IXGBE_RDT(0), "RDT"}, |
| 489 | {IXGBE_RXDCTL(0), "RXDCTL"}, |
| 490 | {IXGBE_RDBAL(0), "RDBAL"}, |
| 491 | {IXGBE_RDBAH(0), "RDBAH"}, |
| 492 | |
| 493 | /* TX Registers */ |
| 494 | {IXGBE_TDBAL(0), "TDBAL"}, |
| 495 | {IXGBE_TDBAH(0), "TDBAH"}, |
| 496 | {IXGBE_TDLEN(0), "TDLEN"}, |
| 497 | {IXGBE_TDH(0), "TDH"}, |
| 498 | {IXGBE_TDT(0), "TDT"}, |
| 499 | {IXGBE_TXDCTL(0), "TXDCTL"}, |
| 500 | |
| 501 | /* List Terminator */ |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 502 | { .name = NULL } |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 503 | }; |
| 504 | |
| 505 | |
| 506 | /* |
| 507 | * ixgbe_regdump - register printout routine |
| 508 | */ |
| 509 | static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo) |
| 510 | { |
| 511 | int i = 0, j = 0; |
| 512 | char rname[16]; |
| 513 | u32 regs[64]; |
| 514 | |
| 515 | switch (reginfo->ofs) { |
| 516 | case IXGBE_SRRCTL(0): |
| 517 | for (i = 0; i < 64; i++) |
| 518 | regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i)); |
| 519 | break; |
| 520 | case IXGBE_DCA_RXCTRL(0): |
| 521 | for (i = 0; i < 64; i++) |
| 522 | regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i)); |
| 523 | break; |
| 524 | case IXGBE_RDLEN(0): |
| 525 | for (i = 0; i < 64; i++) |
| 526 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i)); |
| 527 | break; |
| 528 | case IXGBE_RDH(0): |
| 529 | for (i = 0; i < 64; i++) |
| 530 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i)); |
| 531 | break; |
| 532 | case IXGBE_RDT(0): |
| 533 | for (i = 0; i < 64; i++) |
| 534 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i)); |
| 535 | break; |
| 536 | case IXGBE_RXDCTL(0): |
| 537 | for (i = 0; i < 64; i++) |
| 538 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i)); |
| 539 | break; |
| 540 | case IXGBE_RDBAL(0): |
| 541 | for (i = 0; i < 64; i++) |
| 542 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i)); |
| 543 | break; |
| 544 | case IXGBE_RDBAH(0): |
| 545 | for (i = 0; i < 64; i++) |
| 546 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i)); |
| 547 | break; |
| 548 | case IXGBE_TDBAL(0): |
| 549 | for (i = 0; i < 64; i++) |
| 550 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i)); |
| 551 | break; |
| 552 | case IXGBE_TDBAH(0): |
| 553 | for (i = 0; i < 64; i++) |
| 554 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i)); |
| 555 | break; |
| 556 | case IXGBE_TDLEN(0): |
| 557 | for (i = 0; i < 64; i++) |
| 558 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i)); |
| 559 | break; |
| 560 | case IXGBE_TDH(0): |
| 561 | for (i = 0; i < 64; i++) |
| 562 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i)); |
| 563 | break; |
| 564 | case IXGBE_TDT(0): |
| 565 | for (i = 0; i < 64; i++) |
| 566 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i)); |
| 567 | break; |
| 568 | case IXGBE_TXDCTL(0): |
| 569 | for (i = 0; i < 64; i++) |
| 570 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i)); |
| 571 | break; |
| 572 | default: |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 573 | pr_info("%-15s %08x\n", reginfo->name, |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 574 | IXGBE_READ_REG(hw, reginfo->ofs)); |
| 575 | return; |
| 576 | } |
| 577 | |
| 578 | for (i = 0; i < 8; i++) { |
| 579 | snprintf(rname, 16, "%s[%d-%d]", reginfo->name, i*8, i*8+7); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 580 | pr_err("%-15s", rname); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 581 | for (j = 0; j < 8; j++) |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 582 | pr_cont(" %08x", regs[i*8+j]); |
| 583 | pr_cont("\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | } |
| 587 | |
| 588 | /* |
| 589 | * ixgbe_dump - Print registers, tx-rings and rx-rings |
| 590 | */ |
| 591 | static void ixgbe_dump(struct ixgbe_adapter *adapter) |
| 592 | { |
| 593 | struct net_device *netdev = adapter->netdev; |
| 594 | struct ixgbe_hw *hw = &adapter->hw; |
| 595 | struct ixgbe_reg_info *reginfo; |
| 596 | int n = 0; |
| 597 | struct ixgbe_ring *tx_ring; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 598 | struct ixgbe_tx_buffer *tx_buffer; |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 599 | union ixgbe_adv_tx_desc *tx_desc; |
| 600 | struct my_u0 { u64 a; u64 b; } *u0; |
| 601 | struct ixgbe_ring *rx_ring; |
| 602 | union ixgbe_adv_rx_desc *rx_desc; |
| 603 | struct ixgbe_rx_buffer *rx_buffer_info; |
| 604 | u32 staterr; |
| 605 | int i = 0; |
| 606 | |
| 607 | if (!netif_msg_hw(adapter)) |
| 608 | return; |
| 609 | |
| 610 | /* Print netdevice Info */ |
| 611 | if (netdev) { |
| 612 | dev_info(&adapter->pdev->dev, "Net device Info\n"); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 613 | pr_info("Device Name state " |
Tobias Klauser | 4a7c972 | 2017-01-18 17:45:01 +0100 | [diff] [blame] | 614 | "trans_start\n"); |
| 615 | pr_info("%-15s %016lX %016lX\n", |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 616 | netdev->name, |
| 617 | netdev->state, |
Tobias Klauser | 4a7c972 | 2017-01-18 17:45:01 +0100 | [diff] [blame] | 618 | dev_trans_start(netdev)); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | /* Print Registers */ |
| 622 | dev_info(&adapter->pdev->dev, "Register Dump\n"); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 623 | pr_info(" Register Name Value\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 624 | for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl; |
| 625 | reginfo->name; reginfo++) { |
| 626 | ixgbe_regdump(hw, reginfo); |
| 627 | } |
| 628 | |
| 629 | /* Print TX Ring Summary */ |
| 630 | if (!netdev || !netif_running(netdev)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 631 | return; |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 632 | |
| 633 | dev_info(&adapter->pdev->dev, "TX Rings Summary\n"); |
Josh Hay | 8ad88e3 | 2012-09-26 05:59:41 +0000 | [diff] [blame] | 634 | pr_info(" %s %s %s %s\n", |
| 635 | "Queue [NTU] [NTC] [bi(ntc)->dma ]", |
| 636 | "leng", "ntw", "timestamp"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 637 | for (n = 0; n < adapter->num_tx_queues; n++) { |
| 638 | tx_ring = adapter->tx_ring[n]; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 639 | tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean]; |
Josh Hay | 8ad88e3 | 2012-09-26 05:59:41 +0000 | [diff] [blame] | 640 | pr_info(" %5d %5X %5X %016llX %08X %p %016llX\n", |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 641 | n, tx_ring->next_to_use, tx_ring->next_to_clean, |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 642 | (u64)dma_unmap_addr(tx_buffer, dma), |
| 643 | dma_unmap_len(tx_buffer, len), |
| 644 | tx_buffer->next_to_watch, |
| 645 | (u64)tx_buffer->time_stamp); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | /* Print TX Rings */ |
| 649 | if (!netif_msg_tx_done(adapter)) |
| 650 | goto rx_ring_summary; |
| 651 | |
| 652 | dev_info(&adapter->pdev->dev, "TX Rings Dump\n"); |
| 653 | |
| 654 | /* Transmit Descriptor Formats |
| 655 | * |
Josh Hay | 39ac868 | 2012-09-26 05:59:36 +0000 | [diff] [blame] | 656 | * 82598 Advanced Transmit Descriptor |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 657 | * +--------------------------------------------------------------+ |
| 658 | * 0 | Buffer Address [63:0] | |
| 659 | * +--------------------------------------------------------------+ |
Josh Hay | 39ac868 | 2012-09-26 05:59:36 +0000 | [diff] [blame] | 660 | * 8 | PAYLEN | POPTS | IDX | STA | DCMD |DTYP | RSV | DTALEN | |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 661 | * +--------------------------------------------------------------+ |
| 662 | * 63 46 45 40 39 36 35 32 31 24 23 20 19 0 |
Josh Hay | 39ac868 | 2012-09-26 05:59:36 +0000 | [diff] [blame] | 663 | * |
| 664 | * 82598 Advanced Transmit Descriptor (Write-Back Format) |
| 665 | * +--------------------------------------------------------------+ |
| 666 | * 0 | RSV [63:0] | |
| 667 | * +--------------------------------------------------------------+ |
| 668 | * 8 | RSV | STA | NXTSEQ | |
| 669 | * +--------------------------------------------------------------+ |
| 670 | * 63 36 35 32 31 0 |
| 671 | * |
| 672 | * 82599+ Advanced Transmit Descriptor |
| 673 | * +--------------------------------------------------------------+ |
| 674 | * 0 | Buffer Address [63:0] | |
| 675 | * +--------------------------------------------------------------+ |
| 676 | * 8 |PAYLEN |POPTS|CC|IDX |STA |DCMD |DTYP |MAC |RSV |DTALEN | |
| 677 | * +--------------------------------------------------------------+ |
| 678 | * 63 46 45 40 39 38 36 35 32 31 24 23 20 19 18 17 16 15 0 |
| 679 | * |
| 680 | * 82599+ Advanced Transmit Descriptor (Write-Back Format) |
| 681 | * +--------------------------------------------------------------+ |
| 682 | * 0 | RSV [63:0] | |
| 683 | * +--------------------------------------------------------------+ |
| 684 | * 8 | RSV | STA | RSV | |
| 685 | * +--------------------------------------------------------------+ |
| 686 | * 63 36 35 32 31 0 |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 687 | */ |
| 688 | |
| 689 | for (n = 0; n < adapter->num_tx_queues; n++) { |
| 690 | tx_ring = adapter->tx_ring[n]; |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 691 | pr_info("------------------------------------\n"); |
| 692 | pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index); |
| 693 | pr_info("------------------------------------\n"); |
Josh Hay | 8ad88e3 | 2012-09-26 05:59:41 +0000 | [diff] [blame] | 694 | pr_info("%s%s %s %s %s %s\n", |
| 695 | "T [desc] [address 63:0 ] ", |
| 696 | "[PlPOIdStDDt Ln] [bi->dma ] ", |
| 697 | "leng", "ntw", "timestamp", "bi->skb"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 698 | |
| 699 | for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) { |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 700 | tx_desc = IXGBE_TX_DESC(tx_ring, i); |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 701 | tx_buffer = &tx_ring->tx_buffer_info[i]; |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 702 | u0 = (struct my_u0 *)tx_desc; |
Josh Hay | 8ad88e3 | 2012-09-26 05:59:41 +0000 | [diff] [blame] | 703 | if (dma_unmap_len(tx_buffer, len) > 0) { |
| 704 | pr_info("T [0x%03X] %016llX %016llX %016llX %08X %p %016llX %p", |
| 705 | i, |
| 706 | le64_to_cpu(u0->a), |
| 707 | le64_to_cpu(u0->b), |
| 708 | (u64)dma_unmap_addr(tx_buffer, dma), |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 709 | dma_unmap_len(tx_buffer, len), |
Josh Hay | 8ad88e3 | 2012-09-26 05:59:41 +0000 | [diff] [blame] | 710 | tx_buffer->next_to_watch, |
| 711 | (u64)tx_buffer->time_stamp, |
| 712 | tx_buffer->skb); |
| 713 | if (i == tx_ring->next_to_use && |
| 714 | i == tx_ring->next_to_clean) |
| 715 | pr_cont(" NTC/U\n"); |
| 716 | else if (i == tx_ring->next_to_use) |
| 717 | pr_cont(" NTU\n"); |
| 718 | else if (i == tx_ring->next_to_clean) |
| 719 | pr_cont(" NTC\n"); |
| 720 | else |
| 721 | pr_cont("\n"); |
| 722 | |
| 723 | if (netif_msg_pktdata(adapter) && |
| 724 | tx_buffer->skb) |
| 725 | print_hex_dump(KERN_INFO, "", |
| 726 | DUMP_PREFIX_ADDRESS, 16, 1, |
| 727 | tx_buffer->skb->data, |
| 728 | dma_unmap_len(tx_buffer, len), |
| 729 | true); |
| 730 | } |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 731 | } |
| 732 | } |
| 733 | |
| 734 | /* Print RX Rings Summary */ |
| 735 | rx_ring_summary: |
| 736 | dev_info(&adapter->pdev->dev, "RX Rings Summary\n"); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 737 | pr_info("Queue [NTU] [NTC]\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 738 | for (n = 0; n < adapter->num_rx_queues; n++) { |
| 739 | rx_ring = adapter->rx_ring[n]; |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 740 | pr_info("%5d %5X %5X\n", |
| 741 | n, rx_ring->next_to_use, rx_ring->next_to_clean); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | /* Print RX Rings */ |
| 745 | if (!netif_msg_rx_status(adapter)) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 746 | return; |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 747 | |
| 748 | dev_info(&adapter->pdev->dev, "RX Rings Dump\n"); |
| 749 | |
Josh Hay | 39ac868 | 2012-09-26 05:59:36 +0000 | [diff] [blame] | 750 | /* Receive Descriptor Formats |
| 751 | * |
| 752 | * 82598 Advanced Receive Descriptor (Read) Format |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 753 | * 63 1 0 |
| 754 | * +-----------------------------------------------------+ |
| 755 | * 0 | Packet Buffer Address [63:1] |A0/NSE| |
| 756 | * +----------------------------------------------+------+ |
| 757 | * 8 | Header Buffer Address [63:1] | DD | |
| 758 | * +-----------------------------------------------------+ |
| 759 | * |
| 760 | * |
Josh Hay | 39ac868 | 2012-09-26 05:59:36 +0000 | [diff] [blame] | 761 | * 82598 Advanced Receive Descriptor (Write-Back) Format |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 762 | * |
| 763 | * 63 48 47 32 31 30 21 20 16 15 4 3 0 |
| 764 | * +------------------------------------------------------+ |
Josh Hay | 39ac868 | 2012-09-26 05:59:36 +0000 | [diff] [blame] | 765 | * 0 | RSS Hash / |SPH| HDR_LEN | RSV |Packet| RSS | |
| 766 | * | Packet | IP | | | | Type | Type | |
| 767 | * | Checksum | Ident | | | | | | |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 768 | * +------------------------------------------------------+ |
| 769 | * 8 | VLAN Tag | Length | Extended Error | Extended Status | |
| 770 | * +------------------------------------------------------+ |
| 771 | * 63 48 47 32 31 20 19 0 |
Josh Hay | 39ac868 | 2012-09-26 05:59:36 +0000 | [diff] [blame] | 772 | * |
| 773 | * 82599+ Advanced Receive Descriptor (Read) Format |
| 774 | * 63 1 0 |
| 775 | * +-----------------------------------------------------+ |
| 776 | * 0 | Packet Buffer Address [63:1] |A0/NSE| |
| 777 | * +----------------------------------------------+------+ |
| 778 | * 8 | Header Buffer Address [63:1] | DD | |
| 779 | * +-----------------------------------------------------+ |
| 780 | * |
| 781 | * |
| 782 | * 82599+ Advanced Receive Descriptor (Write-Back) Format |
| 783 | * |
| 784 | * 63 48 47 32 31 30 21 20 17 16 4 3 0 |
| 785 | * +------------------------------------------------------+ |
| 786 | * 0 |RSS / Frag Checksum|SPH| HDR_LEN |RSC- |Packet| RSS | |
| 787 | * |/ RTT / PCoE_PARAM | | | CNT | Type | Type | |
| 788 | * |/ Flow Dir Flt ID | | | | | | |
| 789 | * +------------------------------------------------------+ |
| 790 | * 8 | VLAN Tag | Length |Extended Error| Xtnd Status/NEXTP | |
| 791 | * +------------------------------------------------------+ |
| 792 | * 63 48 47 32 31 20 19 0 |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 793 | */ |
Josh Hay | 39ac868 | 2012-09-26 05:59:36 +0000 | [diff] [blame] | 794 | |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 795 | for (n = 0; n < adapter->num_rx_queues; n++) { |
| 796 | rx_ring = adapter->rx_ring[n]; |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 797 | pr_info("------------------------------------\n"); |
| 798 | pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index); |
| 799 | pr_info("------------------------------------\n"); |
Josh Hay | 8ad88e3 | 2012-09-26 05:59:41 +0000 | [diff] [blame] | 800 | pr_info("%s%s%s", |
| 801 | "R [desc] [ PktBuf A0] ", |
| 802 | "[ HeadBuf DD] [bi->dma ] [bi->skb ] ", |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 803 | "<-- Adv Rx Read format\n"); |
Josh Hay | 8ad88e3 | 2012-09-26 05:59:41 +0000 | [diff] [blame] | 804 | pr_info("%s%s%s", |
| 805 | "RWB[desc] [PcsmIpSHl PtRs] ", |
| 806 | "[vl er S cks ln] ---------------- [bi->skb ] ", |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 807 | "<-- Adv Rx Write-Back format\n"); |
| 808 | |
| 809 | for (i = 0; i < rx_ring->count; i++) { |
| 810 | rx_buffer_info = &rx_ring->rx_buffer_info[i]; |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 811 | rx_desc = IXGBE_RX_DESC(rx_ring, i); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 812 | u0 = (struct my_u0 *)rx_desc; |
| 813 | staterr = le32_to_cpu(rx_desc->wb.upper.status_error); |
| 814 | if (staterr & IXGBE_RXD_STAT_DD) { |
| 815 | /* Descriptor Done */ |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 816 | pr_info("RWB[0x%03X] %016llX " |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 817 | "%016llX ---------------- %p", i, |
| 818 | le64_to_cpu(u0->a), |
| 819 | le64_to_cpu(u0->b), |
| 820 | rx_buffer_info->skb); |
| 821 | } else { |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 822 | pr_info("R [0x%03X] %016llX " |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 823 | "%016llX %016llX %p", i, |
| 824 | le64_to_cpu(u0->a), |
| 825 | le64_to_cpu(u0->b), |
| 826 | (u64)rx_buffer_info->dma, |
| 827 | rx_buffer_info->skb); |
| 828 | |
Emil Tantilov | 9c50c03 | 2012-07-26 01:21:24 +0000 | [diff] [blame] | 829 | if (netif_msg_pktdata(adapter) && |
| 830 | rx_buffer_info->dma) { |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 831 | print_hex_dump(KERN_INFO, "", |
| 832 | DUMP_PREFIX_ADDRESS, 16, 1, |
Emil Tantilov | 9c50c03 | 2012-07-26 01:21:24 +0000 | [diff] [blame] | 833 | page_address(rx_buffer_info->page) + |
| 834 | rx_buffer_info->page_offset, |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 835 | ixgbe_rx_bufsz(rx_ring), true); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 836 | } |
| 837 | } |
| 838 | |
| 839 | if (i == rx_ring->next_to_use) |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 840 | pr_cont(" NTU\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 841 | else if (i == rx_ring->next_to_clean) |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 842 | pr_cont(" NTC\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 843 | else |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 844 | pr_cont("\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 845 | |
| 846 | } |
| 847 | } |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 848 | } |
| 849 | |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 850 | static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter) |
| 851 | { |
| 852 | u32 ctrl_ext; |
| 853 | |
| 854 | /* Let firmware take over control of h/w */ |
| 855 | ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT); |
| 856 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 857 | ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD); |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter) |
| 861 | { |
| 862 | u32 ctrl_ext; |
| 863 | |
| 864 | /* Let firmware know the driver has taken over */ |
| 865 | ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT); |
| 866 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 867 | ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD); |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 868 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 869 | |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 870 | /** |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 871 | * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors |
| 872 | * @adapter: pointer to adapter struct |
| 873 | * @direction: 0 for Rx, 1 for Tx, -1 for other causes |
| 874 | * @queue: queue to map the corresponding interrupt to |
| 875 | * @msix_vector: the vector to map to the corresponding queue |
| 876 | * |
| 877 | */ |
| 878 | static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 879 | u8 queue, u8 msix_vector) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 880 | { |
| 881 | u32 ivar, index; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 882 | struct ixgbe_hw *hw = &adapter->hw; |
| 883 | switch (hw->mac.type) { |
| 884 | case ixgbe_mac_82598EB: |
| 885 | msix_vector |= IXGBE_IVAR_ALLOC_VAL; |
| 886 | if (direction == -1) |
| 887 | direction = 0; |
| 888 | index = (((direction * 64) + queue) >> 2) & 0x1F; |
| 889 | ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index)); |
| 890 | ivar &= ~(0xFF << (8 * (queue & 0x3))); |
| 891 | ivar |= (msix_vector << (8 * (queue & 0x3))); |
| 892 | IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar); |
| 893 | break; |
| 894 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 895 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 896 | case ixgbe_mac_X550: |
| 897 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 898 | case ixgbe_mac_x550em_a: |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 899 | if (direction == -1) { |
| 900 | /* other causes */ |
| 901 | msix_vector |= IXGBE_IVAR_ALLOC_VAL; |
| 902 | index = ((queue & 1) * 8); |
| 903 | ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC); |
| 904 | ivar &= ~(0xFF << index); |
| 905 | ivar |= (msix_vector << index); |
| 906 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar); |
| 907 | break; |
| 908 | } else { |
| 909 | /* tx or rx causes */ |
| 910 | msix_vector |= IXGBE_IVAR_ALLOC_VAL; |
| 911 | index = ((16 * (queue & 1)) + (8 * direction)); |
| 912 | ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1)); |
| 913 | ivar &= ~(0xFF << index); |
| 914 | ivar |= (msix_vector << index); |
| 915 | IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar); |
| 916 | break; |
| 917 | } |
| 918 | default: |
| 919 | break; |
| 920 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 921 | } |
| 922 | |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 923 | static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 924 | u64 qmask) |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 925 | { |
| 926 | u32 mask; |
| 927 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 928 | switch (adapter->hw.mac.type) { |
| 929 | case ixgbe_mac_82598EB: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 930 | mask = (IXGBE_EIMS_RTX_QUEUE & qmask); |
| 931 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 932 | break; |
| 933 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 934 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 935 | case ixgbe_mac_X550: |
| 936 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 937 | case ixgbe_mac_x550em_a: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 938 | mask = (qmask & 0xFFFFFFFF); |
| 939 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask); |
| 940 | mask = (qmask >> 32); |
| 941 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 942 | break; |
| 943 | default: |
| 944 | break; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 945 | } |
| 946 | } |
| 947 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 948 | void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring, |
| 949 | struct ixgbe_tx_buffer *tx_buffer) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 950 | { |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 951 | if (tx_buffer->skb) { |
| 952 | dev_kfree_skb_any(tx_buffer->skb); |
| 953 | if (dma_unmap_len(tx_buffer, len)) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 954 | dma_unmap_single(ring->dev, |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 955 | dma_unmap_addr(tx_buffer, dma), |
| 956 | dma_unmap_len(tx_buffer, len), |
| 957 | DMA_TO_DEVICE); |
| 958 | } else if (dma_unmap_len(tx_buffer, len)) { |
| 959 | dma_unmap_page(ring->dev, |
| 960 | dma_unmap_addr(tx_buffer, dma), |
| 961 | dma_unmap_len(tx_buffer, len), |
| 962 | DMA_TO_DEVICE); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 963 | } |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 964 | tx_buffer->next_to_watch = NULL; |
| 965 | tx_buffer->skb = NULL; |
| 966 | dma_unmap_len_set(tx_buffer, len, 0); |
| 967 | /* tx_buffer must be completely set up in the transmit path */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 968 | } |
| 969 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 970 | static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter) |
| 971 | { |
| 972 | struct ixgbe_hw *hw = &adapter->hw; |
| 973 | struct ixgbe_hw_stats *hwstats = &adapter->stats; |
| 974 | int i; |
| 975 | u32 data; |
| 976 | |
| 977 | if ((hw->fc.current_mode != ixgbe_fc_full) && |
| 978 | (hw->fc.current_mode != ixgbe_fc_rx_pause)) |
| 979 | return; |
| 980 | |
| 981 | switch (hw->mac.type) { |
| 982 | case ixgbe_mac_82598EB: |
| 983 | data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC); |
| 984 | break; |
| 985 | default: |
| 986 | data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT); |
| 987 | } |
| 988 | hwstats->lxoffrxc += data; |
| 989 | |
| 990 | /* refill credits (no tx hang) if we received xoff */ |
| 991 | if (!data) |
| 992 | return; |
| 993 | |
| 994 | for (i = 0; i < adapter->num_tx_queues; i++) |
| 995 | clear_bit(__IXGBE_HANG_CHECK_ARMED, |
| 996 | &adapter->tx_ring[i]->state); |
| 997 | } |
| 998 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 999 | static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1000 | { |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 1001 | struct ixgbe_hw *hw = &adapter->hw; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1002 | struct ixgbe_hw_stats *hwstats = &adapter->stats; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1003 | u32 xoff[8] = {0}; |
Parikh, Neerav | 2afaa00 | 2012-09-27 12:02:22 +0000 | [diff] [blame] | 1004 | u8 tc; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1005 | int i; |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 1006 | bool pfc_en = adapter->dcb_cfg.pfc_mode_enable; |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 1007 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 1008 | if (adapter->ixgbe_ieee_pfc) |
| 1009 | pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1010 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 1011 | if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) { |
| 1012 | ixgbe_update_xoff_rx_lfc(adapter); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1013 | return; |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 1014 | } |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1015 | |
| 1016 | /* update stats for each tc, only valid with PFC enabled */ |
| 1017 | for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) { |
Parikh, Neerav | 2afaa00 | 2012-09-27 12:02:22 +0000 | [diff] [blame] | 1018 | u32 pxoffrxc; |
| 1019 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1020 | switch (hw->mac.type) { |
| 1021 | case ixgbe_mac_82598EB: |
Parikh, Neerav | 2afaa00 | 2012-09-27 12:02:22 +0000 | [diff] [blame] | 1022 | pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i)); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1023 | break; |
| 1024 | default: |
Parikh, Neerav | 2afaa00 | 2012-09-27 12:02:22 +0000 | [diff] [blame] | 1025 | pxoffrxc = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i)); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1026 | } |
Parikh, Neerav | 2afaa00 | 2012-09-27 12:02:22 +0000 | [diff] [blame] | 1027 | hwstats->pxoffrxc[i] += pxoffrxc; |
| 1028 | /* Get the TC for given UP */ |
| 1029 | tc = netdev_get_prio_tc_map(adapter->netdev, i); |
| 1030 | xoff[tc] += pxoffrxc; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1031 | } |
| 1032 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1033 | /* disarm tx queues that have received xoff frames */ |
| 1034 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 1035 | struct ixgbe_ring *tx_ring = adapter->tx_ring[i]; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1036 | |
Parikh, Neerav | 2afaa00 | 2012-09-27 12:02:22 +0000 | [diff] [blame] | 1037 | tc = tx_ring->dcb_tc; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1038 | if (xoff[tc]) |
| 1039 | clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state); |
| 1040 | } |
| 1041 | } |
| 1042 | |
| 1043 | static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring) |
| 1044 | { |
Alexander Duyck | 7d7ce68 | 2012-02-08 07:50:51 +0000 | [diff] [blame] | 1045 | return ring->stats.packets; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1046 | } |
| 1047 | |
| 1048 | static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring) |
| 1049 | { |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 1050 | struct ixgbe_adapter *adapter; |
| 1051 | struct ixgbe_hw *hw; |
| 1052 | u32 head, tail; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1053 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 1054 | if (ring->l2_accel_priv) |
| 1055 | adapter = ring->l2_accel_priv->real_adapter; |
| 1056 | else |
| 1057 | adapter = netdev_priv(ring->netdev); |
| 1058 | |
| 1059 | hw = &adapter->hw; |
| 1060 | head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx)); |
| 1061 | tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx)); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1062 | |
| 1063 | if (head != tail) |
| 1064 | return (head < tail) ? |
| 1065 | tail - head : (tail + ring->count - head); |
| 1066 | |
| 1067 | return 0; |
| 1068 | } |
| 1069 | |
| 1070 | static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring) |
| 1071 | { |
| 1072 | u32 tx_done = ixgbe_get_tx_completed(tx_ring); |
| 1073 | u32 tx_done_old = tx_ring->tx_stats.tx_done_old; |
| 1074 | u32 tx_pending = ixgbe_get_tx_pending(tx_ring); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1075 | |
| 1076 | clear_check_for_tx_hang(tx_ring); |
| 1077 | |
| 1078 | /* |
| 1079 | * Check for a hung queue, but be thorough. This verifies |
| 1080 | * that a transmit has been completed since the previous |
| 1081 | * check AND there is at least one packet pending. The |
| 1082 | * ARMED bit is set to indicate a potential hang. The |
| 1083 | * bit is cleared if a pause frame is received to remove |
| 1084 | * false hang detection due to PFC or 802.3x frames. By |
| 1085 | * requiring this to fail twice we avoid races with |
| 1086 | * pfc clearing the ARMED bit and conditions where we |
| 1087 | * run the check_tx_hang logic with a transmit completion |
| 1088 | * pending but without time to complete it yet. |
| 1089 | */ |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1090 | if (tx_done_old == tx_done && tx_pending) |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1091 | /* make sure it is true for two checks in a row */ |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1092 | return test_and_set_bit(__IXGBE_HANG_CHECK_ARMED, |
| 1093 | &tx_ring->state); |
| 1094 | /* update completed stats and continue */ |
| 1095 | tx_ring->tx_stats.tx_done_old = tx_done; |
| 1096 | /* reset the countdown */ |
| 1097 | clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1098 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 1099 | return false; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1100 | } |
| 1101 | |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 1102 | /** |
| 1103 | * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout |
| 1104 | * @adapter: driver private struct |
| 1105 | **/ |
| 1106 | static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter) |
| 1107 | { |
| 1108 | |
| 1109 | /* Do the reset outside of interrupt context */ |
| 1110 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) { |
Emil Tantilov | 57ca2a4 | 2016-07-29 14:46:31 -0700 | [diff] [blame] | 1111 | set_bit(__IXGBE_RESET_REQUESTED, &adapter->state); |
Jacob Keller | 12ff3f3 | 2012-12-01 07:57:17 +0000 | [diff] [blame] | 1112 | e_warn(drv, "initiating reset due to tx timeout\n"); |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 1113 | ixgbe_service_event_schedule(adapter); |
| 1114 | } |
| 1115 | } |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 1116 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1117 | /** |
Rostislav Pehlivanov | c04f90e | 2016-01-27 18:33:30 +0000 | [diff] [blame] | 1118 | * ixgbe_tx_maxrate - callback to set the maximum per-queue bitrate |
| 1119 | **/ |
| 1120 | static int ixgbe_tx_maxrate(struct net_device *netdev, |
| 1121 | int queue_index, u32 maxrate) |
| 1122 | { |
| 1123 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 1124 | struct ixgbe_hw *hw = &adapter->hw; |
| 1125 | u32 bcnrc_val = ixgbe_link_mbps(adapter); |
| 1126 | |
| 1127 | if (!maxrate) |
| 1128 | return 0; |
| 1129 | |
| 1130 | /* Calculate the rate factor values to set */ |
| 1131 | bcnrc_val <<= IXGBE_RTTBCNRC_RF_INT_SHIFT; |
| 1132 | bcnrc_val /= maxrate; |
| 1133 | |
| 1134 | /* clear everything but the rate factor */ |
| 1135 | bcnrc_val &= IXGBE_RTTBCNRC_RF_INT_MASK | |
| 1136 | IXGBE_RTTBCNRC_RF_DEC_MASK; |
| 1137 | |
| 1138 | /* enable the rate scheduler */ |
| 1139 | bcnrc_val |= IXGBE_RTTBCNRC_RS_ENA; |
| 1140 | |
| 1141 | IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, queue_index); |
| 1142 | IXGBE_WRITE_REG(hw, IXGBE_RTTBCNRC, bcnrc_val); |
| 1143 | |
| 1144 | return 0; |
| 1145 | } |
| 1146 | |
| 1147 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1148 | * ixgbe_clean_tx_irq - Reclaim resources after transmit completes |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 1149 | * @q_vector: structure containing interrupt and ring information |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 1150 | * @tx_ring: tx ring to clean |
Alexander Duyck | 8220bbc | 2016-03-07 09:30:09 -0800 | [diff] [blame] | 1151 | * @napi_budget: Used to determine if we are in netpoll |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1152 | **/ |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 1153 | static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector, |
Jesper Dangaard Brouer | a3a8749 | 2016-02-08 13:15:09 +0100 | [diff] [blame] | 1154 | struct ixgbe_ring *tx_ring, int napi_budget) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1155 | { |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 1156 | struct ixgbe_adapter *adapter = q_vector->adapter; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1157 | struct ixgbe_tx_buffer *tx_buffer; |
| 1158 | union ixgbe_adv_tx_desc *tx_desc; |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 1159 | unsigned int total_bytes = 0, total_packets = 0; |
Alexander Duyck | 5922455 | 2011-08-31 00:01:06 +0000 | [diff] [blame] | 1160 | unsigned int budget = q_vector->tx.work_limit; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1161 | unsigned int i = tx_ring->next_to_clean; |
| 1162 | |
| 1163 | if (test_bit(__IXGBE_DOWN, &adapter->state)) |
| 1164 | return true; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1165 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1166 | tx_buffer = &tx_ring->tx_buffer_info[i]; |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 1167 | tx_desc = IXGBE_TX_DESC(tx_ring, i); |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1168 | i -= tx_ring->count; |
Peter P Waskiewicz Jr | 12207e4 | 2009-02-06 21:47:24 -0800 | [diff] [blame] | 1169 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1170 | do { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1171 | union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1172 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1173 | /* if next_to_watch is not set then there is no work pending */ |
| 1174 | if (!eop_desc) |
| 1175 | break; |
| 1176 | |
Alexander Duyck | 7f83a9e | 2012-02-08 07:49:23 +0000 | [diff] [blame] | 1177 | /* prevent any other reads prior to eop_desc */ |
Alexander Duyck | 7e63bf4 | 2013-01-08 07:00:58 +0000 | [diff] [blame] | 1178 | read_barrier_depends(); |
Alexander Duyck | 7f83a9e | 2012-02-08 07:49:23 +0000 | [diff] [blame] | 1179 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1180 | /* if DD is not set pending work has not been completed */ |
| 1181 | if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD))) |
| 1182 | break; |
| 1183 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1184 | /* clear next_to_watch to prevent false hangs */ |
| 1185 | tx_buffer->next_to_watch = NULL; |
| 1186 | |
Alexander Duyck | 091a624 | 2012-02-08 07:51:01 +0000 | [diff] [blame] | 1187 | /* update the statistics for this packet */ |
| 1188 | total_bytes += tx_buffer->bytecount; |
| 1189 | total_packets += tx_buffer->gso_segs; |
| 1190 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 1191 | /* free the skb */ |
Jesper Dangaard Brouer | a3a8749 | 2016-02-08 13:15:09 +0100 | [diff] [blame] | 1192 | napi_consume_skb(tx_buffer->skb, napi_budget); |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 1193 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1194 | /* unmap skb header data */ |
| 1195 | dma_unmap_single(tx_ring->dev, |
| 1196 | dma_unmap_addr(tx_buffer, dma), |
| 1197 | dma_unmap_len(tx_buffer, len), |
| 1198 | DMA_TO_DEVICE); |
| 1199 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 1200 | /* clear tx_buffer data */ |
| 1201 | tx_buffer->skb = NULL; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1202 | dma_unmap_len_set(tx_buffer, len, 0); |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 1203 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1204 | /* unmap remaining buffers */ |
| 1205 | while (tx_desc != eop_desc) { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1206 | tx_buffer++; |
| 1207 | tx_desc++; |
| 1208 | i++; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1209 | if (unlikely(!i)) { |
| 1210 | i -= tx_ring->count; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1211 | tx_buffer = tx_ring->tx_buffer_info; |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 1212 | tx_desc = IXGBE_TX_DESC(tx_ring, 0); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1213 | } |
| 1214 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1215 | /* unmap any remaining paged data */ |
| 1216 | if (dma_unmap_len(tx_buffer, len)) { |
| 1217 | dma_unmap_page(tx_ring->dev, |
| 1218 | dma_unmap_addr(tx_buffer, dma), |
| 1219 | dma_unmap_len(tx_buffer, len), |
| 1220 | DMA_TO_DEVICE); |
| 1221 | dma_unmap_len_set(tx_buffer, len, 0); |
| 1222 | } |
| 1223 | } |
Peter P Waskiewicz Jr | 12207e4 | 2009-02-06 21:47:24 -0800 | [diff] [blame] | 1224 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1225 | /* move us one more past the eop_desc for start of next pkt */ |
| 1226 | tx_buffer++; |
| 1227 | tx_desc++; |
| 1228 | i++; |
| 1229 | if (unlikely(!i)) { |
| 1230 | i -= tx_ring->count; |
| 1231 | tx_buffer = tx_ring->tx_buffer_info; |
| 1232 | tx_desc = IXGBE_TX_DESC(tx_ring, 0); |
| 1233 | } |
| 1234 | |
| 1235 | /* issue prefetch for next Tx descriptor */ |
| 1236 | prefetch(tx_desc); |
| 1237 | |
| 1238 | /* update budget accounting */ |
| 1239 | budget--; |
| 1240 | } while (likely(budget)); |
| 1241 | |
| 1242 | i += tx_ring->count; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1243 | tx_ring->next_to_clean = i; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1244 | u64_stats_update_begin(&tx_ring->syncp); |
Alexander Duyck | b953799 | 2010-11-16 19:26:58 -0800 | [diff] [blame] | 1245 | tx_ring->stats.bytes += total_bytes; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1246 | tx_ring->stats.packets += total_packets; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1247 | u64_stats_update_end(&tx_ring->syncp); |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1248 | q_vector->tx.total_bytes += total_bytes; |
| 1249 | q_vector->tx.total_packets += total_packets; |
Alexander Duyck | b953799 | 2010-11-16 19:26:58 -0800 | [diff] [blame] | 1250 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1251 | if (check_for_tx_hang(tx_ring) && ixgbe_check_tx_hang(tx_ring)) { |
Alexander Duyck | b953799 | 2010-11-16 19:26:58 -0800 | [diff] [blame] | 1252 | /* schedule immediate reset if we believe we hung */ |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1253 | struct ixgbe_hw *hw = &adapter->hw; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1254 | e_err(drv, "Detected Tx Unit Hang\n" |
| 1255 | " Tx Queue <%d>\n" |
| 1256 | " TDH, TDT <%x>, <%x>\n" |
| 1257 | " next_to_use <%x>\n" |
| 1258 | " next_to_clean <%x>\n" |
| 1259 | "tx_buffer_info[next_to_clean]\n" |
| 1260 | " time_stamp <%lx>\n" |
| 1261 | " jiffies <%lx>\n", |
| 1262 | tx_ring->queue_index, |
| 1263 | IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)), |
| 1264 | IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)), |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 1265 | tx_ring->next_to_use, i, |
| 1266 | tx_ring->tx_buffer_info[i].time_stamp, jiffies); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 1267 | |
| 1268 | netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index); |
| 1269 | |
| 1270 | e_info(probe, |
| 1271 | "tx hang %d detected on queue %d, resetting adapter\n", |
| 1272 | adapter->tx_timeout_count + 1, tx_ring->queue_index); |
| 1273 | |
| 1274 | /* schedule immediate reset if we believe we hung */ |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 1275 | ixgbe_tx_timeout_reset(adapter); |
Alexander Duyck | b953799 | 2010-11-16 19:26:58 -0800 | [diff] [blame] | 1276 | |
| 1277 | /* the adapter is about to reset, no point in enabling stuff */ |
Alexander Duyck | 5922455 | 2011-08-31 00:01:06 +0000 | [diff] [blame] | 1278 | return true; |
Alexander Duyck | b953799 | 2010-11-16 19:26:58 -0800 | [diff] [blame] | 1279 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1280 | |
Alexander Duyck | b2d96e0 | 2012-02-07 08:14:33 +0000 | [diff] [blame] | 1281 | netdev_tx_completed_queue(txring_txq(tx_ring), |
| 1282 | total_packets, total_bytes); |
| 1283 | |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 1284 | #define TX_WAKE_THRESHOLD (DESC_NEEDED * 2) |
Alexander Duyck | 30065e6 | 2011-07-15 03:05:14 +0000 | [diff] [blame] | 1285 | if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) && |
Alexander Duyck | 7d4987d | 2011-05-27 05:31:37 +0000 | [diff] [blame] | 1286 | (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) { |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 1287 | /* Make sure that anybody stopping the queue after this |
| 1288 | * sees the new next_to_clean. |
| 1289 | */ |
| 1290 | smp_mb(); |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 1291 | if (__netif_subqueue_stopped(tx_ring->netdev, |
| 1292 | tx_ring->queue_index) |
| 1293 | && !test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 1294 | netif_wake_subqueue(tx_ring->netdev, |
| 1295 | tx_ring->queue_index); |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 1296 | ++tx_ring->tx_stats.restart_queue; |
Ayyappan Veeraiyan | 30eba97 | 2008-03-03 15:03:52 -0800 | [diff] [blame] | 1297 | } |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 1298 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1299 | |
Alexander Duyck | 5922455 | 2011-08-31 00:01:06 +0000 | [diff] [blame] | 1300 | return !!budget; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1301 | } |
| 1302 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 1303 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1304 | static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter, |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1305 | struct ixgbe_ring *tx_ring, |
| 1306 | int cpu) |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1307 | { |
Don Skidmore | ee5f784 | 2009-11-06 12:56:20 +0000 | [diff] [blame] | 1308 | struct ixgbe_hw *hw = &adapter->hw; |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 1309 | u32 txctrl = 0; |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 1310 | u16 reg_offset; |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1311 | |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 1312 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) |
| 1313 | txctrl = dca3_get_tag(tx_ring->dev, cpu); |
| 1314 | |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1315 | switch (hw->mac.type) { |
| 1316 | case ixgbe_mac_82598EB: |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 1317 | reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1318 | break; |
| 1319 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 1320 | case ixgbe_mac_X540: |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 1321 | reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx); |
| 1322 | txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599; |
| 1323 | break; |
| 1324 | default: |
| 1325 | /* for unknown hardware do not write register */ |
| 1326 | return; |
| 1327 | } |
| 1328 | |
| 1329 | /* |
| 1330 | * We can enable relaxed ordering for reads, but not writes when |
| 1331 | * DCA is enabled. This is due to a known issue in some chipsets |
| 1332 | * which will cause the DCA tag to be cleared. |
| 1333 | */ |
| 1334 | txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN | |
| 1335 | IXGBE_DCA_TXCTRL_DATA_RRO_EN | |
| 1336 | IXGBE_DCA_TXCTRL_DESC_DCA_EN; |
| 1337 | |
| 1338 | IXGBE_WRITE_REG(hw, reg_offset, txctrl); |
| 1339 | } |
| 1340 | |
| 1341 | static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter, |
| 1342 | struct ixgbe_ring *rx_ring, |
| 1343 | int cpu) |
| 1344 | { |
| 1345 | struct ixgbe_hw *hw = &adapter->hw; |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 1346 | u32 rxctrl = 0; |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 1347 | u8 reg_idx = rx_ring->reg_idx; |
| 1348 | |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 1349 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) |
| 1350 | rxctrl = dca3_get_tag(rx_ring->dev, cpu); |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 1351 | |
| 1352 | switch (hw->mac.type) { |
| 1353 | case ixgbe_mac_82599EB: |
| 1354 | case ixgbe_mac_X540: |
| 1355 | rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599; |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1356 | break; |
| 1357 | default: |
| 1358 | break; |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1359 | } |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 1360 | |
| 1361 | /* |
| 1362 | * We can enable relaxed ordering for reads, but not writes when |
| 1363 | * DCA is enabled. This is due to a known issue in some chipsets |
| 1364 | * which will cause the DCA tag to be cleared. |
| 1365 | */ |
| 1366 | rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN | |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 1367 | IXGBE_DCA_RXCTRL_DATA_DCA_EN | |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 1368 | IXGBE_DCA_RXCTRL_DESC_DCA_EN; |
| 1369 | |
| 1370 | IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1371 | } |
| 1372 | |
| 1373 | static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector) |
| 1374 | { |
| 1375 | struct ixgbe_adapter *adapter = q_vector->adapter; |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 1376 | struct ixgbe_ring *ring; |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1377 | int cpu = get_cpu(); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1378 | |
| 1379 | if (q_vector->cpu == cpu) |
| 1380 | goto out_no_update; |
| 1381 | |
Alexander Duyck | a557928 | 2012-02-08 07:50:04 +0000 | [diff] [blame] | 1382 | ixgbe_for_each_ring(ring, q_vector->tx) |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 1383 | ixgbe_update_tx_dca(adapter, ring, cpu); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1384 | |
Alexander Duyck | a557928 | 2012-02-08 07:50:04 +0000 | [diff] [blame] | 1385 | ixgbe_for_each_ring(ring, q_vector->rx) |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 1386 | ixgbe_update_rx_dca(adapter, ring, cpu); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1387 | |
| 1388 | q_vector->cpu = cpu; |
| 1389 | out_no_update: |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1390 | put_cpu(); |
| 1391 | } |
| 1392 | |
| 1393 | static void ixgbe_setup_dca(struct ixgbe_adapter *adapter) |
| 1394 | { |
| 1395 | int i; |
| 1396 | |
Alexander Duyck | e35ec12 | 2009-05-21 13:07:12 +0000 | [diff] [blame] | 1397 | /* always use CB2 mode, difference is masked in the CB driver */ |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 1398 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) |
| 1399 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, |
| 1400 | IXGBE_DCA_CTRL_DCA_MODE_CB2); |
| 1401 | else |
| 1402 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, |
| 1403 | IXGBE_DCA_CTRL_DCA_DISABLE); |
Alexander Duyck | e35ec12 | 2009-05-21 13:07:12 +0000 | [diff] [blame] | 1404 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 1405 | for (i = 0; i < adapter->num_q_vectors; i++) { |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1406 | adapter->q_vector[i]->cpu = -1; |
| 1407 | ixgbe_update_dca(adapter->q_vector[i]); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1408 | } |
| 1409 | } |
| 1410 | |
| 1411 | static int __ixgbe_notify_dca(struct device *dev, void *data) |
| 1412 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 1413 | struct ixgbe_adapter *adapter = dev_get_drvdata(dev); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1414 | unsigned long event = *(unsigned long *)data; |
| 1415 | |
Don Skidmore | 2a72c31 | 2011-07-20 02:27:05 +0000 | [diff] [blame] | 1416 | if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE)) |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1417 | return 0; |
| 1418 | |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1419 | switch (event) { |
| 1420 | case DCA_PROVIDER_ADD: |
Jesse Brandeburg | 96b0e0f | 2008-08-26 04:27:21 -0700 | [diff] [blame] | 1421 | /* if we're already enabled, don't do it again */ |
| 1422 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) |
| 1423 | break; |
Denis V. Lunev | 652f093 | 2008-03-27 14:39:17 +0300 | [diff] [blame] | 1424 | if (dca_add_requester(dev) == 0) { |
Jesse Brandeburg | 96b0e0f | 2008-08-26 04:27:21 -0700 | [diff] [blame] | 1425 | adapter->flags |= IXGBE_FLAG_DCA_ENABLED; |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 1426 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, |
| 1427 | IXGBE_DCA_CTRL_DCA_MODE_CB2); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1428 | break; |
| 1429 | } |
| 1430 | /* Fall Through since DCA is disabled. */ |
| 1431 | case DCA_PROVIDER_REMOVE: |
| 1432 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) { |
| 1433 | dca_remove_requester(dev); |
| 1434 | adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED; |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 1435 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, |
| 1436 | IXGBE_DCA_CTRL_DCA_DISABLE); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1437 | } |
| 1438 | break; |
| 1439 | } |
| 1440 | |
Denis V. Lunev | 652f093 | 2008-03-27 14:39:17 +0300 | [diff] [blame] | 1441 | return 0; |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1442 | } |
Emil Tantilov | 67a74ee | 2011-04-23 04:50:40 +0000 | [diff] [blame] | 1443 | |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 1444 | #endif /* CONFIG_IXGBE_DCA */ |
Fan Du | 7edda4b8 | 2015-04-29 10:57:39 +0800 | [diff] [blame] | 1445 | |
| 1446 | #define IXGBE_RSS_L4_TYPES_MASK \ |
| 1447 | ((1ul << IXGBE_RXDADV_RSSTYPE_IPV4_TCP) | \ |
| 1448 | (1ul << IXGBE_RXDADV_RSSTYPE_IPV4_UDP) | \ |
| 1449 | (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_TCP) | \ |
| 1450 | (1ul << IXGBE_RXDADV_RSSTYPE_IPV6_UDP)) |
| 1451 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1452 | static inline void ixgbe_rx_hash(struct ixgbe_ring *ring, |
| 1453 | union ixgbe_adv_rx_desc *rx_desc, |
Emil Tantilov | 67a74ee | 2011-04-23 04:50:40 +0000 | [diff] [blame] | 1454 | struct sk_buff *skb) |
| 1455 | { |
Fan Du | 7edda4b8 | 2015-04-29 10:57:39 +0800 | [diff] [blame] | 1456 | u16 rss_type; |
| 1457 | |
| 1458 | if (!(ring->netdev->features & NETIF_F_RXHASH)) |
| 1459 | return; |
| 1460 | |
| 1461 | rss_type = le16_to_cpu(rx_desc->wb.lower.lo_dword.hs_rss.pkt_info) & |
| 1462 | IXGBE_RXDADV_RSSTYPE_MASK; |
| 1463 | |
| 1464 | if (!rss_type) |
| 1465 | return; |
| 1466 | |
| 1467 | skb_set_hash(skb, le32_to_cpu(rx_desc->wb.lower.hi_dword.rss), |
| 1468 | (IXGBE_RSS_L4_TYPES_MASK & (1ul << rss_type)) ? |
| 1469 | PKT_HASH_TYPE_L4 : PKT_HASH_TYPE_L3); |
Emil Tantilov | 67a74ee | 2011-04-23 04:50:40 +0000 | [diff] [blame] | 1470 | } |
| 1471 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1472 | #ifdef IXGBE_FCOE |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1473 | /** |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1474 | * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 1475 | * @ring: structure containing ring specific data |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1476 | * @rx_desc: advanced rx descriptor |
| 1477 | * |
| 1478 | * Returns : true if it is FCoE pkt |
| 1479 | */ |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 1480 | static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring, |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1481 | union ixgbe_adv_rx_desc *rx_desc) |
| 1482 | { |
| 1483 | __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info; |
| 1484 | |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 1485 | return test_bit(__IXGBE_RX_FCOE, &ring->state) && |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1486 | ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) == |
| 1487 | (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE << |
| 1488 | IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT))); |
| 1489 | } |
| 1490 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1491 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1492 | /** |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1493 | * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1494 | * @ring: structure containing ring specific data |
| 1495 | * @rx_desc: current Rx descriptor being processed |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1496 | * @skb: skb currently being received and modified |
| 1497 | **/ |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1498 | static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring, |
Don Skidmore | 8bae1b2 | 2009-07-23 18:00:39 +0000 | [diff] [blame] | 1499 | union ixgbe_adv_rx_desc *rx_desc, |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1500 | struct sk_buff *skb) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1501 | { |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 1502 | __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info; |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 1503 | bool encap_pkt = false; |
| 1504 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1505 | skb_checksum_none_assert(skb); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1506 | |
Jesse Brandeburg | 712744b | 2008-08-26 04:26:56 -0700 | [diff] [blame] | 1507 | /* Rx csum disabled */ |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1508 | if (!(ring->netdev->features & NETIF_F_RXCSUM)) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1509 | return; |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1510 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 1511 | /* check for VXLAN and Geneve packets */ |
| 1512 | if (pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_VXLAN)) { |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 1513 | encap_pkt = true; |
| 1514 | skb->encapsulation = 1; |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 1515 | } |
| 1516 | |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1517 | /* if IP and error */ |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1518 | if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) && |
| 1519 | ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) { |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1520 | ring->rx_stats.csum_err++; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1521 | return; |
| 1522 | } |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1523 | |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1524 | if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS)) |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1525 | return; |
| 1526 | |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1527 | if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) { |
Don Skidmore | 8bae1b2 | 2009-07-23 18:00:39 +0000 | [diff] [blame] | 1528 | /* |
| 1529 | * 82599 errata, UDP frames with a 0 checksum can be marked as |
| 1530 | * checksum errors. |
| 1531 | */ |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1532 | if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) && |
| 1533 | test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state)) |
Don Skidmore | 8bae1b2 | 2009-07-23 18:00:39 +0000 | [diff] [blame] | 1534 | return; |
| 1535 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1536 | ring->rx_stats.csum_err++; |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1537 | return; |
| 1538 | } |
| 1539 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1540 | /* It must be a TCP or UDP packet with a valid checksum */ |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1541 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 1542 | if (encap_pkt) { |
| 1543 | if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_OUTERIPCS)) |
| 1544 | return; |
| 1545 | |
| 1546 | if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_OUTERIPER)) { |
Mark Rustad | d469251 | 2015-12-04 11:26:43 -0800 | [diff] [blame] | 1547 | skb->ip_summed = CHECKSUM_NONE; |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 1548 | return; |
| 1549 | } |
| 1550 | /* If we checked the outer header let the stack know */ |
| 1551 | skb->csum_level = 1; |
| 1552 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1553 | } |
| 1554 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1555 | static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring, |
| 1556 | struct ixgbe_rx_buffer *bi) |
| 1557 | { |
| 1558 | struct page *page = bi->page; |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 1559 | dma_addr_t dma; |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1560 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1561 | /* since we are recycling buffers we should seldom need to alloc */ |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 1562 | if (likely(page)) |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1563 | return true; |
| 1564 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1565 | /* alloc new page for storage */ |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 1566 | page = dev_alloc_pages(ixgbe_rx_pg_order(rx_ring)); |
| 1567 | if (unlikely(!page)) { |
| 1568 | rx_ring->rx_stats.alloc_rx_page_failed++; |
| 1569 | return false; |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1570 | } |
| 1571 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1572 | /* map page for use */ |
Alexander Duyck | f3213d9 | 2017-01-17 08:35:54 -0800 | [diff] [blame] | 1573 | dma = dma_map_page_attrs(rx_ring->dev, page, 0, |
| 1574 | ixgbe_rx_pg_size(rx_ring), |
| 1575 | DMA_FROM_DEVICE, |
| 1576 | IXGBE_RX_DMA_ATTR); |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1577 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1578 | /* |
| 1579 | * if mapping failed free memory back to system since |
| 1580 | * there isn't much point in holding memory we can't use |
| 1581 | */ |
| 1582 | if (dma_mapping_error(rx_ring->dev, dma)) { |
Alexander Duyck | dd411ec | 2012-04-06 04:24:50 +0000 | [diff] [blame] | 1583 | __free_pages(page, ixgbe_rx_pg_order(rx_ring)); |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1584 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1585 | rx_ring->rx_stats.alloc_rx_page_failed++; |
| 1586 | return false; |
| 1587 | } |
| 1588 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1589 | bi->dma = dma; |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 1590 | bi->page = page; |
Alexander Duyck | afaa945 | 2012-07-20 08:08:12 +0000 | [diff] [blame] | 1591 | bi->page_offset = 0; |
Alexander Duyck | 1b56cf4 | 2017-01-17 08:36:03 -0800 | [diff] [blame] | 1592 | bi->pagecnt_bias = 1; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1593 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1594 | return true; |
| 1595 | } |
| 1596 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1597 | /** |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1598 | * ixgbe_alloc_rx_buffers - Replace used receive buffers |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1599 | * @rx_ring: ring to place buffers on |
| 1600 | * @cleaned_count: number of buffers to replace |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1601 | **/ |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1602 | void ixgbe_alloc_rx_buffers(struct ixgbe_ring *rx_ring, u16 cleaned_count) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1603 | { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1604 | union ixgbe_adv_rx_desc *rx_desc; |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 1605 | struct ixgbe_rx_buffer *bi; |
Alexander Duyck | d5f398e | 2010-11-16 19:26:48 -0800 | [diff] [blame] | 1606 | u16 i = rx_ring->next_to_use; |
Alexander Duyck | 4f4542b | 2017-01-17 08:36:14 -0800 | [diff] [blame] | 1607 | u16 bufsz; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1608 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1609 | /* nothing to do */ |
| 1610 | if (!cleaned_count) |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1611 | return; |
| 1612 | |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 1613 | rx_desc = IXGBE_RX_DESC(rx_ring, i); |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1614 | bi = &rx_ring->rx_buffer_info[i]; |
| 1615 | i -= rx_ring->count; |
| 1616 | |
Alexander Duyck | 4f4542b | 2017-01-17 08:36:14 -0800 | [diff] [blame] | 1617 | bufsz = ixgbe_rx_bufsz(rx_ring); |
| 1618 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1619 | do { |
| 1620 | if (!ixgbe_alloc_mapped_page(rx_ring, bi)) |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1621 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1622 | |
Alexander Duyck | f3213d9 | 2017-01-17 08:35:54 -0800 | [diff] [blame] | 1623 | /* sync the buffer for use by the device */ |
| 1624 | dma_sync_single_range_for_device(rx_ring->dev, bi->dma, |
Alexander Duyck | 4f4542b | 2017-01-17 08:36:14 -0800 | [diff] [blame] | 1625 | bi->page_offset, bufsz, |
Alexander Duyck | f3213d9 | 2017-01-17 08:35:54 -0800 | [diff] [blame] | 1626 | DMA_FROM_DEVICE); |
| 1627 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1628 | /* |
| 1629 | * Refresh the desc even if buffer_addrs didn't change |
| 1630 | * because each write-back erases this info. |
| 1631 | */ |
| 1632 | rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1633 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1634 | rx_desc++; |
| 1635 | bi++; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1636 | i++; |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1637 | if (unlikely(!i)) { |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 1638 | rx_desc = IXGBE_RX_DESC(rx_ring, 0); |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1639 | bi = rx_ring->rx_buffer_info; |
| 1640 | i -= rx_ring->count; |
| 1641 | } |
| 1642 | |
Alexander Duyck | c3630cc | 2017-01-17 08:36:28 -0800 | [diff] [blame] | 1643 | /* clear the length for the next_to_use descriptor */ |
| 1644 | rx_desc->wb.upper.length = 0; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1645 | |
| 1646 | cleaned_count--; |
| 1647 | } while (cleaned_count); |
Jesse Brandeburg | 7c6e0a4 | 2008-08-26 04:27:16 -0700 | [diff] [blame] | 1648 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1649 | i += rx_ring->count; |
| 1650 | |
Alexander Duyck | ad435ec | 2014-11-14 00:56:35 +0000 | [diff] [blame] | 1651 | if (rx_ring->next_to_use != i) { |
| 1652 | rx_ring->next_to_use = i; |
| 1653 | |
| 1654 | /* update next to alloc since we have filled the ring */ |
| 1655 | rx_ring->next_to_alloc = i; |
| 1656 | |
| 1657 | /* Force memory writes to complete before letting h/w |
| 1658 | * know there are new descriptors to fetch. (Only |
| 1659 | * applicable for weak-ordered memory model archs, |
| 1660 | * such as IA-64). |
| 1661 | */ |
| 1662 | wmb(); |
| 1663 | writel(i, rx_ring->tail); |
| 1664 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1665 | } |
| 1666 | |
Alexander Duyck | 1d2024f | 2012-01-31 02:59:29 +0000 | [diff] [blame] | 1667 | static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring, |
| 1668 | struct sk_buff *skb) |
| 1669 | { |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1670 | u16 hdr_len = skb_headlen(skb); |
Alexander Duyck | 1d2024f | 2012-01-31 02:59:29 +0000 | [diff] [blame] | 1671 | |
| 1672 | /* set gso_size to avoid messing up TCP MSS */ |
| 1673 | skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len), |
| 1674 | IXGBE_CB(skb)->append_cnt); |
Alexander Duyck | 96be80a | 2013-02-12 09:45:44 +0000 | [diff] [blame] | 1675 | skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4; |
Alexander Duyck | 1d2024f | 2012-01-31 02:59:29 +0000 | [diff] [blame] | 1676 | } |
| 1677 | |
| 1678 | static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring, |
| 1679 | struct sk_buff *skb) |
| 1680 | { |
| 1681 | /* if append_cnt is 0 then frame is not RSC */ |
| 1682 | if (!IXGBE_CB(skb)->append_cnt) |
| 1683 | return; |
| 1684 | |
| 1685 | rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt; |
| 1686 | rx_ring->rx_stats.rsc_flush++; |
| 1687 | |
| 1688 | ixgbe_set_rsc_gso_size(rx_ring, skb); |
| 1689 | |
| 1690 | /* gso_size is computed using append_cnt so always clear it last */ |
| 1691 | IXGBE_CB(skb)->append_cnt = 0; |
| 1692 | } |
| 1693 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1694 | /** |
| 1695 | * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor |
| 1696 | * @rx_ring: rx descriptor ring packet is being transacted on |
| 1697 | * @rx_desc: pointer to the EOP Rx descriptor |
| 1698 | * @skb: pointer to current skb being populated |
| 1699 | * |
| 1700 | * This function checks the ring, descriptor, and packet information in |
| 1701 | * order to populate the hash, checksum, VLAN, timestamp, protocol, and |
| 1702 | * other fields within the skb. |
| 1703 | **/ |
| 1704 | static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring, |
| 1705 | union ixgbe_adv_rx_desc *rx_desc, |
| 1706 | struct sk_buff *skb) |
| 1707 | { |
John Fastabend | 43e95f1 | 2012-05-15 06:12:17 +0000 | [diff] [blame] | 1708 | struct net_device *dev = rx_ring->netdev; |
Mark Rustad | a9763f3 | 2015-10-27 09:58:07 -0700 | [diff] [blame] | 1709 | u32 flags = rx_ring->q_vector->adapter->flags; |
John Fastabend | 43e95f1 | 2012-05-15 06:12:17 +0000 | [diff] [blame] | 1710 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1711 | ixgbe_update_rsc_stats(rx_ring, skb); |
| 1712 | |
| 1713 | ixgbe_rx_hash(rx_ring, rx_desc, skb); |
| 1714 | |
| 1715 | ixgbe_rx_checksum(rx_ring, rx_desc, skb); |
| 1716 | |
Mark Rustad | a9763f3 | 2015-10-27 09:58:07 -0700 | [diff] [blame] | 1717 | if (unlikely(flags & IXGBE_FLAG_RX_HWTSTAMP_ENABLED)) |
| 1718 | ixgbe_ptp_rx_hwtstamp(rx_ring, rx_desc, skb); |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 1719 | |
Patrick McHardy | f646968 | 2013-04-19 02:04:27 +0000 | [diff] [blame] | 1720 | if ((dev->features & NETIF_F_HW_VLAN_CTAG_RX) && |
John Fastabend | 43e95f1 | 2012-05-15 06:12:17 +0000 | [diff] [blame] | 1721 | ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) { |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1722 | u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan); |
Patrick McHardy | 86a9bad | 2013-04-19 02:04:30 +0000 | [diff] [blame] | 1723 | __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid); |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1724 | } |
| 1725 | |
| 1726 | skb_record_rx_queue(skb, rx_ring->queue_index); |
| 1727 | |
John Fastabend | 43e95f1 | 2012-05-15 06:12:17 +0000 | [diff] [blame] | 1728 | skb->protocol = eth_type_trans(skb, dev); |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1729 | } |
| 1730 | |
| 1731 | static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector, |
| 1732 | struct sk_buff *skb) |
| 1733 | { |
Eric Dumazet | 3ffc1af | 2017-02-02 16:26:39 -0800 | [diff] [blame] | 1734 | napi_gro_receive(&q_vector->napi, skb); |
Alexander Duyck | aa80175 | 2010-11-16 19:27:02 -0800 | [diff] [blame] | 1735 | } |
Mallikarjuna R Chilakala | 43634e8 | 2010-02-25 23:14:37 +0000 | [diff] [blame] | 1736 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1737 | /** |
| 1738 | * ixgbe_is_non_eop - process handling of non-EOP buffers |
| 1739 | * @rx_ring: Rx ring being processed |
| 1740 | * @rx_desc: Rx descriptor for current buffer |
| 1741 | * @skb: Current socket buffer containing buffer in progress |
| 1742 | * |
| 1743 | * This function updates next to clean. If the buffer is an EOP buffer |
| 1744 | * this function exits returning false, otherwise it will place the |
| 1745 | * sk_buff in the next buffer to be chained and return true indicating |
| 1746 | * that this is in fact a non-EOP buffer. |
| 1747 | **/ |
| 1748 | static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring, |
| 1749 | union ixgbe_adv_rx_desc *rx_desc, |
| 1750 | struct sk_buff *skb) |
| 1751 | { |
| 1752 | u32 ntc = rx_ring->next_to_clean + 1; |
| 1753 | |
| 1754 | /* fetch, update, and store next to clean */ |
| 1755 | ntc = (ntc < rx_ring->count) ? ntc : 0; |
| 1756 | rx_ring->next_to_clean = ntc; |
| 1757 | |
| 1758 | prefetch(IXGBE_RX_DESC(rx_ring, ntc)); |
| 1759 | |
Alexander Duyck | 5a02cbd | 2012-07-20 08:08:51 +0000 | [diff] [blame] | 1760 | /* update RSC append count if present */ |
| 1761 | if (ring_is_rsc_enabled(rx_ring)) { |
| 1762 | __le32 rsc_enabled = rx_desc->wb.lower.lo_dword.data & |
| 1763 | cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK); |
| 1764 | |
| 1765 | if (unlikely(rsc_enabled)) { |
| 1766 | u32 rsc_cnt = le32_to_cpu(rsc_enabled); |
| 1767 | |
| 1768 | rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT; |
| 1769 | IXGBE_CB(skb)->append_cnt += rsc_cnt - 1; |
| 1770 | |
| 1771 | /* update ntc based on RSC value */ |
| 1772 | ntc = le32_to_cpu(rx_desc->wb.upper.status_error); |
| 1773 | ntc &= IXGBE_RXDADV_NEXTP_MASK; |
| 1774 | ntc >>= IXGBE_RXDADV_NEXTP_SHIFT; |
| 1775 | } |
| 1776 | } |
| 1777 | |
| 1778 | /* if we are the last buffer then there is nothing else to do */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1779 | if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))) |
| 1780 | return false; |
| 1781 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1782 | /* place skb in next buffer to be received */ |
| 1783 | rx_ring->rx_buffer_info[ntc].skb = skb; |
| 1784 | rx_ring->rx_stats.non_eop_descs++; |
| 1785 | |
| 1786 | return true; |
| 1787 | } |
| 1788 | |
| 1789 | /** |
Alexander Duyck | 19861ce | 2012-07-20 08:08:33 +0000 | [diff] [blame] | 1790 | * ixgbe_pull_tail - ixgbe specific version of skb_pull_tail |
| 1791 | * @rx_ring: rx descriptor ring packet is being transacted on |
| 1792 | * @skb: pointer to current skb being adjusted |
| 1793 | * |
| 1794 | * This function is an ixgbe specific version of __pskb_pull_tail. The |
| 1795 | * main difference between this version and the original function is that |
| 1796 | * this function can make several assumptions about the state of things |
| 1797 | * that allow for significant optimizations versus the standard function. |
| 1798 | * As a result we can do things like drop a frag and maintain an accurate |
| 1799 | * truesize for the skb. |
| 1800 | */ |
| 1801 | static void ixgbe_pull_tail(struct ixgbe_ring *rx_ring, |
| 1802 | struct sk_buff *skb) |
| 1803 | { |
| 1804 | struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0]; |
| 1805 | unsigned char *va; |
| 1806 | unsigned int pull_len; |
| 1807 | |
| 1808 | /* |
| 1809 | * it is valid to use page_address instead of kmap since we are |
| 1810 | * working with pages allocated out of the lomem pool per |
| 1811 | * alloc_page(GFP_ATOMIC) |
| 1812 | */ |
| 1813 | va = skb_frag_address(frag); |
| 1814 | |
| 1815 | /* |
| 1816 | * we need the header to contain the greater of either ETH_HLEN or |
| 1817 | * 60 bytes if the skb->len is less than 60 for skb_pad. |
| 1818 | */ |
Alexander Duyck | 8496e338 | 2014-09-05 19:22:18 -0400 | [diff] [blame] | 1819 | pull_len = eth_get_headlen(va, IXGBE_RX_HDR_SIZE); |
Alexander Duyck | 19861ce | 2012-07-20 08:08:33 +0000 | [diff] [blame] | 1820 | |
| 1821 | /* align pull length to size of long to optimize memcpy performance */ |
| 1822 | skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long))); |
| 1823 | |
| 1824 | /* update all of the pointers */ |
| 1825 | skb_frag_size_sub(frag, pull_len); |
| 1826 | frag->page_offset += pull_len; |
| 1827 | skb->data_len -= pull_len; |
| 1828 | skb->tail += pull_len; |
Alexander Duyck | 19861ce | 2012-07-20 08:08:33 +0000 | [diff] [blame] | 1829 | } |
| 1830 | |
| 1831 | /** |
Alexander Duyck | 42073d9 | 2012-07-20 08:08:28 +0000 | [diff] [blame] | 1832 | * ixgbe_dma_sync_frag - perform DMA sync for first frag of SKB |
| 1833 | * @rx_ring: rx descriptor ring packet is being transacted on |
| 1834 | * @skb: pointer to current skb being updated |
| 1835 | * |
| 1836 | * This function provides a basic DMA sync up for the first fragment of an |
| 1837 | * skb. The reason for doing this is that the first fragment cannot be |
| 1838 | * unmapped until we have reached the end of packet descriptor for a buffer |
| 1839 | * chain. |
| 1840 | */ |
| 1841 | static void ixgbe_dma_sync_frag(struct ixgbe_ring *rx_ring, |
| 1842 | struct sk_buff *skb) |
| 1843 | { |
| 1844 | /* if the page was released unmap it, else just sync our portion */ |
| 1845 | if (unlikely(IXGBE_CB(skb)->page_released)) { |
Alexander Duyck | f3213d9 | 2017-01-17 08:35:54 -0800 | [diff] [blame] | 1846 | dma_unmap_page_attrs(rx_ring->dev, IXGBE_CB(skb)->dma, |
| 1847 | ixgbe_rx_pg_size(rx_ring), |
| 1848 | DMA_FROM_DEVICE, |
| 1849 | IXGBE_RX_DMA_ATTR); |
Alexander Duyck | 42073d9 | 2012-07-20 08:08:28 +0000 | [diff] [blame] | 1850 | } else { |
| 1851 | struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0]; |
| 1852 | |
| 1853 | dma_sync_single_range_for_cpu(rx_ring->dev, |
| 1854 | IXGBE_CB(skb)->dma, |
| 1855 | frag->page_offset, |
Alexander Duyck | f215af8 | 2017-01-17 08:35:44 -0800 | [diff] [blame] | 1856 | skb_frag_size(frag), |
Alexander Duyck | 42073d9 | 2012-07-20 08:08:28 +0000 | [diff] [blame] | 1857 | DMA_FROM_DEVICE); |
| 1858 | } |
Alexander Duyck | 42073d9 | 2012-07-20 08:08:28 +0000 | [diff] [blame] | 1859 | } |
| 1860 | |
| 1861 | /** |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1862 | * ixgbe_cleanup_headers - Correct corrupted or empty headers |
| 1863 | * @rx_ring: rx descriptor ring packet is being transacted on |
| 1864 | * @rx_desc: pointer to the EOP Rx descriptor |
| 1865 | * @skb: pointer to current skb being fixed |
| 1866 | * |
| 1867 | * Check for corrupted packet headers caused by senders on the local L2 |
| 1868 | * embedded NIC switch not setting up their Tx Descriptors right. These |
| 1869 | * should be very rare. |
| 1870 | * |
| 1871 | * Also address the case where we are pulling data in on pages only |
| 1872 | * and as such no data is present in the skb header. |
| 1873 | * |
| 1874 | * In addition if skb is not at least 60 bytes we need to pad it so that |
| 1875 | * it is large enough to qualify as a valid Ethernet frame. |
| 1876 | * |
| 1877 | * Returns true if an error was encountered and skb was freed. |
| 1878 | **/ |
| 1879 | static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring, |
| 1880 | union ixgbe_adv_rx_desc *rx_desc, |
| 1881 | struct sk_buff *skb) |
| 1882 | { |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1883 | struct net_device *netdev = rx_ring->netdev; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1884 | |
| 1885 | /* verify that the packet does not have any known errors */ |
| 1886 | if (unlikely(ixgbe_test_staterr(rx_desc, |
| 1887 | IXGBE_RXDADV_ERR_FRAME_ERR_MASK) && |
| 1888 | !(netdev->features & NETIF_F_RXALL))) { |
| 1889 | dev_kfree_skb_any(skb); |
| 1890 | return true; |
| 1891 | } |
| 1892 | |
Alexander Duyck | 19861ce | 2012-07-20 08:08:33 +0000 | [diff] [blame] | 1893 | /* place header in linear portion of buffer */ |
Alexander Duyck | cf3fe7a | 2012-07-20 08:08:39 +0000 | [diff] [blame] | 1894 | if (skb_is_nonlinear(skb)) |
| 1895 | ixgbe_pull_tail(rx_ring, skb); |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1896 | |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 1897 | #ifdef IXGBE_FCOE |
| 1898 | /* do not attempt to pad FCoE Frames as this will disrupt DDP */ |
| 1899 | if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) |
| 1900 | return false; |
| 1901 | |
| 1902 | #endif |
Alexander Duyck | a94d9e2 | 2014-12-03 08:17:39 -0800 | [diff] [blame] | 1903 | /* if eth_skb_pad returns an error the skb was freed */ |
| 1904 | if (eth_skb_pad(skb)) |
| 1905 | return true; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1906 | |
| 1907 | return false; |
| 1908 | } |
| 1909 | |
| 1910 | /** |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1911 | * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring |
| 1912 | * @rx_ring: rx descriptor ring to store buffers on |
| 1913 | * @old_buff: donor buffer to have page reused |
| 1914 | * |
Alexander Duyck | 0549ae2 | 2012-07-20 08:08:18 +0000 | [diff] [blame] | 1915 | * Synchronizes page for reuse by the adapter |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1916 | **/ |
| 1917 | static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring, |
| 1918 | struct ixgbe_rx_buffer *old_buff) |
| 1919 | { |
| 1920 | struct ixgbe_rx_buffer *new_buff; |
| 1921 | u16 nta = rx_ring->next_to_alloc; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1922 | |
| 1923 | new_buff = &rx_ring->rx_buffer_info[nta]; |
| 1924 | |
| 1925 | /* update, and store next to alloc */ |
| 1926 | nta++; |
| 1927 | rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0; |
| 1928 | |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 1929 | /* Transfer page from old buffer to new buffer. |
| 1930 | * Move each member individually to avoid possible store |
| 1931 | * forwarding stalls and unnecessary copy of skb. |
| 1932 | */ |
| 1933 | new_buff->dma = old_buff->dma; |
| 1934 | new_buff->page = old_buff->page; |
| 1935 | new_buff->page_offset = old_buff->page_offset; |
| 1936 | new_buff->pagecnt_bias = old_buff->pagecnt_bias; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1937 | } |
| 1938 | |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 1939 | static inline bool ixgbe_page_is_reserved(struct page *page) |
| 1940 | { |
Michal Hocko | 2f064f3 | 2015-08-21 14:11:51 -0700 | [diff] [blame] | 1941 | return (page_to_nid(page) != numa_mem_id()) || page_is_pfmemalloc(page); |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 1942 | } |
| 1943 | |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 1944 | static bool ixgbe_can_reuse_rx_page(struct ixgbe_rx_buffer *rx_buffer) |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1945 | { |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 1946 | unsigned int pagecnt_bias = rx_buffer->pagecnt_bias; |
| 1947 | struct page *page = rx_buffer->page; |
Alexander Duyck | 1b56cf4 | 2017-01-17 08:36:03 -0800 | [diff] [blame] | 1948 | |
Alexander Duyck | 09816fb | 2012-07-20 08:08:23 +0000 | [diff] [blame] | 1949 | /* avoid re-using remote pages */ |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 1950 | if (unlikely(ixgbe_page_is_reserved(page))) |
Alexander Duyck | 09816fb | 2012-07-20 08:08:23 +0000 | [diff] [blame] | 1951 | return false; |
| 1952 | |
| 1953 | #if (PAGE_SIZE < 8192) |
| 1954 | /* if we are only owner of page we can reuse it */ |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 1955 | if (unlikely((page_ref_count(page) - pagecnt_bias) > 1)) |
Alexander Duyck | 0549ae2 | 2012-07-20 08:08:18 +0000 | [diff] [blame] | 1956 | return false; |
Alexander Duyck | 09816fb | 2012-07-20 08:08:23 +0000 | [diff] [blame] | 1957 | #else |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 1958 | /* The last offset is a bit aggressive in that we assume the |
| 1959 | * worst case of FCoE being enabled and using a 3K buffer. |
| 1960 | * However this should have minimal impact as the 1K extra is |
| 1961 | * still less than one buffer in size. |
| 1962 | */ |
| 1963 | #define IXGBE_LAST_OFFSET \ |
| 1964 | (SKB_WITH_OVERHEAD(PAGE_SIZE) - IXGBE_RXBUFFER_3K) |
| 1965 | if (rx_buffer->page_offset > IXGBE_LAST_OFFSET) |
Alexander Duyck | 09816fb | 2012-07-20 08:08:23 +0000 | [diff] [blame] | 1966 | return false; |
Alexander Duyck | 09816fb | 2012-07-20 08:08:23 +0000 | [diff] [blame] | 1967 | #endif |
Alexander Duyck | 0549ae2 | 2012-07-20 08:08:18 +0000 | [diff] [blame] | 1968 | |
Alexander Duyck | 1b56cf4 | 2017-01-17 08:36:03 -0800 | [diff] [blame] | 1969 | /* If we have drained the page fragment pool we need to update |
| 1970 | * the pagecnt_bias and page count so that we fully restock the |
| 1971 | * number of references the driver holds. |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 1972 | */ |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 1973 | if (unlikely(!pagecnt_bias)) { |
Alexander Duyck | 1b56cf4 | 2017-01-17 08:36:03 -0800 | [diff] [blame] | 1974 | page_ref_add(page, USHRT_MAX); |
| 1975 | rx_buffer->pagecnt_bias = USHRT_MAX; |
| 1976 | } |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 1977 | |
Alexander Duyck | 0549ae2 | 2012-07-20 08:08:18 +0000 | [diff] [blame] | 1978 | return true; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1979 | } |
| 1980 | |
Alexander Duyck | af43da0 | 2017-01-17 08:35:34 -0800 | [diff] [blame] | 1981 | /** |
| 1982 | * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff |
| 1983 | * @rx_ring: rx descriptor ring to transact packets on |
| 1984 | * @rx_buffer: buffer containing page to add |
| 1985 | * @rx_desc: descriptor containing length of buffer written by hardware |
| 1986 | * @skb: sk_buff to place the data into |
| 1987 | * |
| 1988 | * This function will add the data contained in rx_buffer->page to the skb. |
| 1989 | * This is done either through a direct copy if the data in the buffer is |
| 1990 | * less than the skb header size, otherwise it will just attach the page as |
| 1991 | * a frag to the skb. |
| 1992 | * |
| 1993 | * The function will then update the page offset if necessary and return |
| 1994 | * true if the buffer can be reused by the adapter. |
| 1995 | **/ |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 1996 | static void ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring, |
Alexander Duyck | af43da0 | 2017-01-17 08:35:34 -0800 | [diff] [blame] | 1997 | struct ixgbe_rx_buffer *rx_buffer, |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 1998 | struct sk_buff *skb, |
| 1999 | unsigned int size) |
Alexander Duyck | af43da0 | 2017-01-17 08:35:34 -0800 | [diff] [blame] | 2000 | { |
Alexander Duyck | af43da0 | 2017-01-17 08:35:34 -0800 | [diff] [blame] | 2001 | #if (PAGE_SIZE < 8192) |
Alexander Duyck | 4f4542b | 2017-01-17 08:36:14 -0800 | [diff] [blame] | 2002 | unsigned int truesize = ixgbe_rx_pg_size(rx_ring) / 2; |
Alexander Duyck | af43da0 | 2017-01-17 08:35:34 -0800 | [diff] [blame] | 2003 | #else |
Alexander Duyck | 4f4542b | 2017-01-17 08:36:14 -0800 | [diff] [blame] | 2004 | unsigned int truesize = SKB_DATA_ALIGN(size); |
Alexander Duyck | af43da0 | 2017-01-17 08:35:34 -0800 | [diff] [blame] | 2005 | #endif |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2006 | skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, rx_buffer->page, |
Alexander Duyck | af43da0 | 2017-01-17 08:35:34 -0800 | [diff] [blame] | 2007 | rx_buffer->page_offset, size, truesize); |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2008 | #if (PAGE_SIZE < 8192) |
| 2009 | rx_buffer->page_offset ^= truesize; |
| 2010 | #else |
| 2011 | rx_buffer->page_offset += truesize; |
| 2012 | #endif |
Alexander Duyck | af43da0 | 2017-01-17 08:35:34 -0800 | [diff] [blame] | 2013 | } |
| 2014 | |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2015 | static struct ixgbe_rx_buffer *ixgbe_get_rx_buffer(struct ixgbe_ring *rx_ring, |
| 2016 | union ixgbe_adv_rx_desc *rx_desc, |
| 2017 | struct sk_buff **skb, |
| 2018 | const unsigned int size) |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2019 | { |
| 2020 | struct ixgbe_rx_buffer *rx_buffer; |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2021 | |
| 2022 | rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean]; |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2023 | prefetchw(rx_buffer->page); |
| 2024 | *skb = rx_buffer->skb; |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2025 | |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2026 | /* Delay unmapping of the first packet. It carries the header |
| 2027 | * information, HW may still access the header after the writeback. |
| 2028 | * Only unmap it when EOP is reached |
| 2029 | */ |
| 2030 | if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)) { |
| 2031 | if (!*skb) |
| 2032 | goto skip_sync; |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2033 | } else { |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2034 | if (*skb) |
| 2035 | ixgbe_dma_sync_frag(rx_ring, *skb); |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2036 | } |
| 2037 | |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2038 | /* we are reusing so sync this buffer for CPU use */ |
| 2039 | dma_sync_single_range_for_cpu(rx_ring->dev, |
| 2040 | rx_buffer->dma, |
| 2041 | rx_buffer->page_offset, |
| 2042 | size, |
| 2043 | DMA_FROM_DEVICE); |
| 2044 | skip_sync: |
| 2045 | rx_buffer->pagecnt_bias--; |
| 2046 | |
| 2047 | return rx_buffer; |
| 2048 | } |
| 2049 | |
| 2050 | static void ixgbe_put_rx_buffer(struct ixgbe_ring *rx_ring, |
| 2051 | struct ixgbe_rx_buffer *rx_buffer, |
| 2052 | struct sk_buff *skb) |
| 2053 | { |
| 2054 | if (ixgbe_can_reuse_rx_page(rx_buffer)) { |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2055 | /* hand second half of page back to the ring */ |
| 2056 | ixgbe_reuse_rx_page(rx_ring, rx_buffer); |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2057 | } else { |
Alexander Duyck | 1b56cf4 | 2017-01-17 08:36:03 -0800 | [diff] [blame] | 2058 | if (IXGBE_CB(skb)->dma == rx_buffer->dma) { |
| 2059 | /* the page has been released from the ring */ |
| 2060 | IXGBE_CB(skb)->page_released = true; |
| 2061 | } else { |
| 2062 | /* we are not reusing the buffer so unmap it */ |
| 2063 | dma_unmap_page_attrs(rx_ring->dev, rx_buffer->dma, |
| 2064 | ixgbe_rx_pg_size(rx_ring), |
| 2065 | DMA_FROM_DEVICE, |
| 2066 | IXGBE_RX_DMA_ATTR); |
| 2067 | } |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2068 | __page_frag_cache_drain(rx_buffer->page, |
Alexander Duyck | 1b56cf4 | 2017-01-17 08:36:03 -0800 | [diff] [blame] | 2069 | rx_buffer->pagecnt_bias); |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2070 | } |
| 2071 | |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2072 | /* clear contents of rx_buffer */ |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2073 | rx_buffer->page = NULL; |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2074 | rx_buffer->skb = NULL; |
| 2075 | } |
| 2076 | |
| 2077 | static struct sk_buff *ixgbe_construct_skb(struct ixgbe_ring *rx_ring, |
| 2078 | struct ixgbe_rx_buffer *rx_buffer, |
| 2079 | union ixgbe_adv_rx_desc *rx_desc, |
| 2080 | unsigned int size) |
| 2081 | { |
| 2082 | void *va = page_address(rx_buffer->page) + rx_buffer->page_offset; |
| 2083 | #if (PAGE_SIZE < 8192) |
| 2084 | unsigned int truesize = ixgbe_rx_pg_size(rx_ring) / 2; |
| 2085 | #else |
| 2086 | unsigned int truesize = ALIGN(size, L1_CACHE_BYTES); |
| 2087 | #endif |
| 2088 | struct sk_buff *skb; |
| 2089 | |
| 2090 | /* prefetch first cache line of first page */ |
| 2091 | prefetch(va); |
| 2092 | #if L1_CACHE_BYTES < 128 |
| 2093 | prefetch(va + L1_CACHE_BYTES); |
| 2094 | #endif |
| 2095 | |
| 2096 | /* allocate a skb to store the frags */ |
| 2097 | skb = napi_alloc_skb(&rx_ring->q_vector->napi, IXGBE_RX_HDR_SIZE); |
| 2098 | if (unlikely(!skb)) |
| 2099 | return NULL; |
| 2100 | |
| 2101 | if (size > IXGBE_RX_HDR_SIZE) { |
| 2102 | if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP)) |
| 2103 | IXGBE_CB(skb)->dma = rx_buffer->dma; |
| 2104 | |
| 2105 | skb_add_rx_frag(skb, 0, rx_buffer->page, |
| 2106 | rx_buffer->page_offset, |
| 2107 | size, truesize); |
| 2108 | #if (PAGE_SIZE < 8192) |
| 2109 | rx_buffer->page_offset ^= truesize; |
| 2110 | #else |
| 2111 | rx_buffer->page_offset += truesize; |
| 2112 | #endif |
| 2113 | } else { |
| 2114 | memcpy(__skb_put(skb, size), va, ALIGN(size, sizeof(long))); |
| 2115 | rx_buffer->pagecnt_bias++; |
| 2116 | } |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2117 | |
| 2118 | return skb; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2119 | } |
| 2120 | |
| 2121 | /** |
| 2122 | * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf |
| 2123 | * @q_vector: structure containing interrupt and ring information |
| 2124 | * @rx_ring: rx descriptor ring to transact packets on |
| 2125 | * @budget: Total limit on number of packets to process |
| 2126 | * |
| 2127 | * This function provides a "bounce buffer" approach to Rx interrupt |
| 2128 | * processing. The advantage to this is that on systems that have |
| 2129 | * expensive overhead for IOMMU access this provides a means of avoiding |
| 2130 | * it by maintaining the mapping of the page to the syste. |
| 2131 | * |
Eliezer Tamir | 5a85e73 | 2013-06-10 11:40:20 +0300 | [diff] [blame] | 2132 | * Returns amount of work completed |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2133 | **/ |
Eliezer Tamir | 5a85e73 | 2013-06-10 11:40:20 +0300 | [diff] [blame] | 2134 | static int ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 2135 | struct ixgbe_ring *rx_ring, |
Alexander Duyck | f4de00e | 2012-09-25 00:29:37 +0000 | [diff] [blame] | 2136 | const int budget) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2137 | { |
Ayyappan Veeraiyan | d2f4fbe | 2008-02-01 15:59:19 -0800 | [diff] [blame] | 2138 | unsigned int total_rx_bytes = 0, total_rx_packets = 0; |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 2139 | #ifdef IXGBE_FCOE |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2140 | struct ixgbe_adapter *adapter = q_vector->adapter; |
Mark Rustad | 4ffdf91 | 2012-07-18 06:05:50 +0000 | [diff] [blame] | 2141 | int ddp_bytes; |
| 2142 | unsigned int mss = 0; |
Yi Zou | 3d8fd38 | 2009-06-08 14:38:44 +0000 | [diff] [blame] | 2143 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2144 | u16 cleaned_count = ixgbe_desc_unused(rx_ring); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2145 | |
Eric W. Biederman | fdabfc8a | 2014-03-14 18:00:41 -0700 | [diff] [blame] | 2146 | while (likely(total_rx_packets < budget)) { |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2147 | union ixgbe_adv_rx_desc *rx_desc; |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2148 | struct ixgbe_rx_buffer *rx_buffer; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2149 | struct sk_buff *skb; |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2150 | unsigned int size; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2151 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2152 | /* return some buffers to hardware, one at a time is too slow */ |
| 2153 | if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) { |
| 2154 | ixgbe_alloc_rx_buffers(rx_ring, cleaned_count); |
| 2155 | cleaned_count = 0; |
| 2156 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2157 | |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2158 | rx_desc = IXGBE_RX_DESC(rx_ring, rx_ring->next_to_clean); |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2159 | size = le16_to_cpu(rx_desc->wb.upper.length); |
| 2160 | if (!size) |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2161 | break; |
Alexander Duyck | c267fc1 | 2010-11-16 19:27:00 -0800 | [diff] [blame] | 2162 | |
Alexander Duyck | 124b74c | 2014-12-11 15:02:28 -0800 | [diff] [blame] | 2163 | /* This memory barrier is needed to keep us from reading |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2164 | * any other fields out of the rx_desc until we know the |
Alexander Duyck | 124b74c | 2014-12-11 15:02:28 -0800 | [diff] [blame] | 2165 | * descriptor has been written back |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2166 | */ |
Alexander Duyck | 124b74c | 2014-12-11 15:02:28 -0800 | [diff] [blame] | 2167 | dma_rmb(); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2168 | |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2169 | rx_buffer = ixgbe_get_rx_buffer(rx_ring, rx_desc, &skb, size); |
| 2170 | |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2171 | /* retrieve a buffer from the ring */ |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2172 | if (skb) |
| 2173 | ixgbe_add_rx_frag(rx_ring, rx_buffer, skb, size); |
| 2174 | else |
| 2175 | skb = ixgbe_construct_skb(rx_ring, rx_buffer, |
| 2176 | rx_desc, size); |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2177 | |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2178 | /* exit if we failed to retrieve a buffer */ |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2179 | if (!skb) { |
| 2180 | rx_ring->rx_stats.alloc_rx_buff_failed++; |
| 2181 | rx_buffer->pagecnt_bias++; |
Alexander Duyck | 18806c9 | 2012-07-20 08:08:44 +0000 | [diff] [blame] | 2182 | break; |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2183 | } |
Alexander Duyck | 4c1975d | 2012-01-31 02:59:23 +0000 | [diff] [blame] | 2184 | |
Alexander Duyck | 3fd21876 | 2017-01-17 08:36:45 -0800 | [diff] [blame^] | 2185 | ixgbe_put_rx_buffer(rx_ring, rx_buffer, skb); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2186 | cleaned_count++; |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 2187 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2188 | /* place incomplete frames back on ring for completion */ |
| 2189 | if (ixgbe_is_non_eop(rx_ring, rx_desc, skb)) |
| 2190 | continue; |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 2191 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2192 | /* verify the packet layout is correct */ |
| 2193 | if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb)) |
| 2194 | continue; |
Ayyappan Veeraiyan | d2f4fbe | 2008-02-01 15:59:19 -0800 | [diff] [blame] | 2195 | |
| 2196 | /* probably a little skewed due to removing CRC */ |
| 2197 | total_rx_bytes += skb->len; |
Ayyappan Veeraiyan | d2f4fbe | 2008-02-01 15:59:19 -0800 | [diff] [blame] | 2198 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 2199 | /* populate checksum, timestamp, VLAN, and protocol */ |
| 2200 | ixgbe_process_skb_fields(rx_ring, rx_desc, skb); |
| 2201 | |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 2202 | #ifdef IXGBE_FCOE |
| 2203 | /* if ddp, not passing to ULD unless for FCP_RSP or error */ |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 2204 | if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) { |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 2205 | ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb); |
Mark Rustad | 4ffdf91 | 2012-07-18 06:05:50 +0000 | [diff] [blame] | 2206 | /* include DDPed FCoE data */ |
| 2207 | if (ddp_bytes > 0) { |
| 2208 | if (!mss) { |
| 2209 | mss = rx_ring->netdev->mtu - |
| 2210 | sizeof(struct fcoe_hdr) - |
| 2211 | sizeof(struct fc_frame_header) - |
| 2212 | sizeof(struct fcoe_crc_eof); |
| 2213 | if (mss > 512) |
| 2214 | mss &= ~511; |
| 2215 | } |
| 2216 | total_rx_bytes += ddp_bytes; |
| 2217 | total_rx_packets += DIV_ROUND_UP(ddp_bytes, |
| 2218 | mss); |
| 2219 | } |
David S. Miller | 823dcd2 | 2011-08-20 10:39:12 -0700 | [diff] [blame] | 2220 | if (!ddp_bytes) { |
| 2221 | dev_kfree_skb_any(skb); |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2222 | continue; |
David S. Miller | 823dcd2 | 2011-08-20 10:39:12 -0700 | [diff] [blame] | 2223 | } |
Yi Zou | 3d8fd38 | 2009-06-08 14:38:44 +0000 | [diff] [blame] | 2224 | } |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2225 | |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 2226 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 2227 | ixgbe_rx_skb(q_vector, skb); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2228 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2229 | /* update budget accounting */ |
Alexander Duyck | f4de00e | 2012-09-25 00:29:37 +0000 | [diff] [blame] | 2230 | total_rx_packets++; |
Eric W. Biederman | fdabfc8a | 2014-03-14 18:00:41 -0700 | [diff] [blame] | 2231 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2232 | |
Alexander Duyck | c267fc1 | 2010-11-16 19:27:00 -0800 | [diff] [blame] | 2233 | u64_stats_update_begin(&rx_ring->syncp); |
| 2234 | rx_ring->stats.packets += total_rx_packets; |
| 2235 | rx_ring->stats.bytes += total_rx_bytes; |
| 2236 | u64_stats_update_end(&rx_ring->syncp); |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2237 | q_vector->rx.total_packets += total_rx_packets; |
| 2238 | q_vector->rx.total_bytes += total_rx_bytes; |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2239 | |
Eliezer Tamir | 5a85e73 | 2013-06-10 11:40:20 +0300 | [diff] [blame] | 2240 | return total_rx_packets; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2241 | } |
| 2242 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2243 | /** |
| 2244 | * ixgbe_configure_msix - Configure MSI-X hardware |
| 2245 | * @adapter: board private structure |
| 2246 | * |
| 2247 | * ixgbe_configure_msix sets up the hardware to properly generate MSI-X |
| 2248 | * interrupts. |
| 2249 | **/ |
| 2250 | static void ixgbe_configure_msix(struct ixgbe_adapter *adapter) |
| 2251 | { |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2252 | struct ixgbe_q_vector *q_vector; |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2253 | int v_idx; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2254 | u32 mask; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2255 | |
Alexander Duyck | 8e34d1a | 2011-07-15 07:29:49 +0000 | [diff] [blame] | 2256 | /* Populate MSIX to EITR Select */ |
| 2257 | if (adapter->num_vfs > 32) { |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 2258 | u32 eitrsel = BIT(adapter->num_vfs - 32) - 1; |
Alexander Duyck | 8e34d1a | 2011-07-15 07:29:49 +0000 | [diff] [blame] | 2259 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel); |
| 2260 | } |
| 2261 | |
Jesse Brandeburg | 4df1046 | 2009-03-13 22:15:31 +0000 | [diff] [blame] | 2262 | /* |
| 2263 | * Populate the IVAR table and set the ITR values to the |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2264 | * corresponding register. |
| 2265 | */ |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2266 | for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) { |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 2267 | struct ixgbe_ring *ring; |
Alexander Duyck | 7a921c9 | 2009-05-06 10:43:28 +0000 | [diff] [blame] | 2268 | q_vector = adapter->q_vector[v_idx]; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2269 | |
Alexander Duyck | a557928 | 2012-02-08 07:50:04 +0000 | [diff] [blame] | 2270 | ixgbe_for_each_ring(ring, q_vector->rx) |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 2271 | ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2272 | |
Alexander Duyck | a557928 | 2012-02-08 07:50:04 +0000 | [diff] [blame] | 2273 | ixgbe_for_each_ring(ring, q_vector->tx) |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 2274 | ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2275 | |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2276 | ixgbe_write_eitr(q_vector); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2277 | } |
| 2278 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2279 | switch (adapter->hw.mac.type) { |
| 2280 | case ixgbe_mac_82598EB: |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2281 | ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 2282 | v_idx); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2283 | break; |
| 2284 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 2285 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2286 | case ixgbe_mac_X550: |
| 2287 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2288 | case ixgbe_mac_x550em_a: |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2289 | ixgbe_set_ivar(adapter, -1, 1, v_idx); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2290 | break; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2291 | default: |
| 2292 | break; |
| 2293 | } |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2294 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2295 | |
Jesse Brandeburg | 41fb924 | 2008-09-11 19:55:58 -0700 | [diff] [blame] | 2296 | /* set up to autoclear timer, and the vectors */ |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2297 | mask = IXGBE_EIMS_ENABLE_MASK; |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2298 | mask &= ~(IXGBE_EIMS_OTHER | |
| 2299 | IXGBE_EIMS_MAILBOX | |
| 2300 | IXGBE_EIMS_LSC); |
| 2301 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2302 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2303 | } |
| 2304 | |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2305 | enum latency_range { |
| 2306 | lowest_latency = 0, |
| 2307 | low_latency = 1, |
| 2308 | bulk_latency = 2, |
| 2309 | latency_invalid = 255 |
| 2310 | }; |
| 2311 | |
| 2312 | /** |
| 2313 | * ixgbe_update_itr - update the dynamic ITR value based on statistics |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2314 | * @q_vector: structure containing interrupt and ring information |
| 2315 | * @ring_container: structure containing ring performance data |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2316 | * |
| 2317 | * Stores a new ITR value based on packets and byte |
| 2318 | * counts during the last interrupt. The advantage of per interrupt |
| 2319 | * computation is faster updates and more accurate ITR for the current |
| 2320 | * traffic pattern. Constants in this function were computed |
| 2321 | * based on theoretical maximum wire speed and thresholds were set based |
| 2322 | * on testing data as well as attempting to minimize response time |
| 2323 | * while increasing bulk throughput. |
| 2324 | * this functionality is controlled by the InterruptThrottleRate module |
| 2325 | * parameter (see ixgbe_param.c) |
| 2326 | **/ |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2327 | static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector, |
| 2328 | struct ixgbe_ring_container *ring_container) |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2329 | { |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2330 | int bytes = ring_container->total_bytes; |
| 2331 | int packets = ring_container->total_packets; |
| 2332 | u32 timepassed_us; |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 2333 | u64 bytes_perint; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2334 | u8 itr_setting = ring_container->itr; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2335 | |
| 2336 | if (packets == 0) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2337 | return; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2338 | |
| 2339 | /* simple throttlerate management |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 2340 | * 0-10MB/s lowest (100000 ints/s) |
| 2341 | * 10-20MB/s low (20000 ints/s) |
Alexander Duyck | 8ac34f1 | 2015-07-30 15:19:28 -0700 | [diff] [blame] | 2342 | * 20-1249MB/s bulk (12000 ints/s) |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2343 | */ |
| 2344 | /* what was last interrupt timeslice? */ |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2345 | timepassed_us = q_vector->itr >> 2; |
Don Skidmore | bdbeefe | 2013-03-02 07:17:37 +0000 | [diff] [blame] | 2346 | if (timepassed_us == 0) |
| 2347 | return; |
| 2348 | |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2349 | bytes_perint = bytes / timepassed_us; /* bytes/usec */ |
| 2350 | |
| 2351 | switch (itr_setting) { |
| 2352 | case lowest_latency: |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 2353 | if (bytes_perint > 10) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2354 | itr_setting = low_latency; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2355 | break; |
| 2356 | case low_latency: |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 2357 | if (bytes_perint > 20) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2358 | itr_setting = bulk_latency; |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 2359 | else if (bytes_perint <= 10) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2360 | itr_setting = lowest_latency; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2361 | break; |
| 2362 | case bulk_latency: |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 2363 | if (bytes_perint <= 20) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2364 | itr_setting = low_latency; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2365 | break; |
| 2366 | } |
| 2367 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2368 | /* clear work counters since we have the values we need */ |
| 2369 | ring_container->total_bytes = 0; |
| 2370 | ring_container->total_packets = 0; |
| 2371 | |
| 2372 | /* write updated itr to ring container */ |
| 2373 | ring_container->itr = itr_setting; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2374 | } |
| 2375 | |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2376 | /** |
| 2377 | * ixgbe_write_eitr - write EITR register in hardware specific way |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2378 | * @q_vector: structure containing interrupt and ring information |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2379 | * |
| 2380 | * This function is made to be called by ethtool and by the driver |
| 2381 | * when it needs to update EITR registers at runtime. Hardware |
| 2382 | * specific quirks/differences are taken care of here. |
| 2383 | */ |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2384 | void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector) |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2385 | { |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2386 | struct ixgbe_adapter *adapter = q_vector->adapter; |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2387 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2388 | int v_idx = q_vector->v_idx; |
Alexander Duyck | 5d967eb | 2012-02-08 07:49:43 +0000 | [diff] [blame] | 2389 | u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2390 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2391 | switch (adapter->hw.mac.type) { |
| 2392 | case ixgbe_mac_82598EB: |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2393 | /* must write high and low 16 bits to reset counter */ |
| 2394 | itr_reg |= (itr_reg << 16); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2395 | break; |
| 2396 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 2397 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2398 | case ixgbe_mac_X550: |
| 2399 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2400 | case ixgbe_mac_x550em_a: |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2401 | /* |
| 2402 | * set the WDIS bit to not clear the timer bits and cause an |
| 2403 | * immediate assertion of the interrupt |
| 2404 | */ |
| 2405 | itr_reg |= IXGBE_EITR_CNT_WDIS; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2406 | break; |
| 2407 | default: |
| 2408 | break; |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2409 | } |
| 2410 | IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg); |
| 2411 | } |
| 2412 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2413 | static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector) |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2414 | { |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2415 | u32 new_itr = q_vector->itr; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2416 | u8 current_itr; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2417 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2418 | ixgbe_update_itr(q_vector, &q_vector->tx); |
| 2419 | ixgbe_update_itr(q_vector, &q_vector->rx); |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2420 | |
Alexander Duyck | 08c8833 | 2011-06-11 01:45:03 +0000 | [diff] [blame] | 2421 | current_itr = max(q_vector->rx.itr, q_vector->tx.itr); |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2422 | |
| 2423 | switch (current_itr) { |
| 2424 | /* counts and packets in update_itr are dependent on these numbers */ |
| 2425 | case lowest_latency: |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2426 | new_itr = IXGBE_100K_ITR; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2427 | break; |
| 2428 | case low_latency: |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2429 | new_itr = IXGBE_20K_ITR; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2430 | break; |
| 2431 | case bulk_latency: |
Alexander Duyck | 8ac34f1 | 2015-07-30 15:19:28 -0700 | [diff] [blame] | 2432 | new_itr = IXGBE_12K_ITR; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2433 | break; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2434 | default: |
| 2435 | break; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2436 | } |
| 2437 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2438 | if (new_itr != q_vector->itr) { |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2439 | /* do an exponential smoothing */ |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2440 | new_itr = (10 * new_itr * q_vector->itr) / |
| 2441 | ((9 * new_itr) + q_vector->itr); |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2442 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2443 | /* save the algorithm value here */ |
Alexander Duyck | 5d967eb | 2012-02-08 07:49:43 +0000 | [diff] [blame] | 2444 | q_vector->itr = new_itr; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2445 | |
| 2446 | ixgbe_write_eitr(q_vector); |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2447 | } |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2448 | } |
| 2449 | |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2450 | /** |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 2451 | * ixgbe_check_overtemp_subtask - check for over temperature |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2452 | * @adapter: pointer to adapter |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2453 | **/ |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2454 | static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter) |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2455 | { |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2456 | struct ixgbe_hw *hw = &adapter->hw; |
| 2457 | u32 eicr = adapter->interrupt_event; |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 2458 | s32 rc; |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2459 | |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2460 | if (test_bit(__IXGBE_DOWN, &adapter->state)) |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 2461 | return; |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2462 | |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2463 | if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) && |
| 2464 | !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT)) |
| 2465 | return; |
| 2466 | |
| 2467 | adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT; |
| 2468 | |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 2469 | switch (hw->device_id) { |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2470 | case IXGBE_DEV_ID_82599_T3_LOM: |
| 2471 | /* |
| 2472 | * Since the warning interrupt is for both ports |
| 2473 | * we don't have to check if: |
| 2474 | * - This interrupt wasn't for our port. |
| 2475 | * - We may have missed the interrupt so always have to |
| 2476 | * check if we got a LSC |
| 2477 | */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2478 | if (!(eicr & IXGBE_EICR_GPI_SDP0_8259X) && |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2479 | !(eicr & IXGBE_EICR_LSC)) |
| 2480 | return; |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2481 | |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2482 | if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) { |
Josh Hay | 3d29226 | 2012-12-15 03:28:19 +0000 | [diff] [blame] | 2483 | u32 speed; |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2484 | bool link_up = false; |
| 2485 | |
Josh Hay | 3d29226 | 2012-12-15 03:28:19 +0000 | [diff] [blame] | 2486 | hw->mac.ops.check_link(hw, &speed, &link_up, false); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 2487 | |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2488 | if (link_up) |
| 2489 | return; |
| 2490 | } |
| 2491 | |
| 2492 | /* Check if this is not due to overtemp */ |
| 2493 | if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP) |
| 2494 | return; |
| 2495 | |
| 2496 | break; |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 2497 | case IXGBE_DEV_ID_X550EM_A_1G_T: |
| 2498 | case IXGBE_DEV_ID_X550EM_A_1G_T_L: |
| 2499 | rc = hw->phy.ops.check_overtemp(hw); |
| 2500 | if (rc != IXGBE_ERR_OVERTEMP) |
| 2501 | return; |
| 2502 | break; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 2503 | default: |
Don Skidmore | 597f22d | 2015-06-09 16:52:02 -0700 | [diff] [blame] | 2504 | if (adapter->hw.mac.type >= ixgbe_mac_X540) |
| 2505 | return; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2506 | if (!(eicr & IXGBE_EICR_GPI_SDP0(hw))) |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 2507 | return; |
| 2508 | break; |
| 2509 | } |
Don Skidmore | f44e751 | 2015-06-09 16:36:23 -0700 | [diff] [blame] | 2510 | e_crit(drv, "%s\n", ixgbe_overheat_msg); |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2511 | |
| 2512 | adapter->interrupt_event = 0; |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2513 | } |
| 2514 | |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 2515 | static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr) |
| 2516 | { |
| 2517 | struct ixgbe_hw *hw = &adapter->hw; |
| 2518 | |
| 2519 | if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) && |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2520 | (eicr & IXGBE_EICR_GPI_SDP1(hw))) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2521 | e_crit(probe, "Fan has stopped, replace the adapter\n"); |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 2522 | /* write to clear the interrupt */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2523 | IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1(hw)); |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 2524 | } |
| 2525 | } |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 2526 | |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2527 | static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr) |
| 2528 | { |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2529 | struct ixgbe_hw *hw = &adapter->hw; |
| 2530 | |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2531 | if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)) |
| 2532 | return; |
| 2533 | |
| 2534 | switch (adapter->hw.mac.type) { |
| 2535 | case ixgbe_mac_82599EB: |
| 2536 | /* |
| 2537 | * Need to check link state so complete overtemp check |
| 2538 | * on service task |
| 2539 | */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2540 | if (((eicr & IXGBE_EICR_GPI_SDP0(hw)) || |
| 2541 | (eicr & IXGBE_EICR_LSC)) && |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2542 | (!test_bit(__IXGBE_DOWN, &adapter->state))) { |
| 2543 | adapter->interrupt_event = eicr; |
| 2544 | adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT; |
| 2545 | ixgbe_service_event_schedule(adapter); |
| 2546 | return; |
| 2547 | } |
| 2548 | return; |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 2549 | case ixgbe_mac_x550em_a: |
| 2550 | if (eicr & IXGBE_EICR_GPI_SDP0_X550EM_a) { |
| 2551 | adapter->interrupt_event = eicr; |
| 2552 | adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT; |
| 2553 | ixgbe_service_event_schedule(adapter); |
| 2554 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, |
| 2555 | IXGBE_EICR_GPI_SDP0_X550EM_a); |
| 2556 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICR, |
| 2557 | IXGBE_EICR_GPI_SDP0_X550EM_a); |
| 2558 | } |
| 2559 | return; |
| 2560 | case ixgbe_mac_X550: |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2561 | case ixgbe_mac_X540: |
| 2562 | if (!(eicr & IXGBE_EICR_TS)) |
| 2563 | return; |
| 2564 | break; |
| 2565 | default: |
| 2566 | return; |
| 2567 | } |
| 2568 | |
Don Skidmore | f44e751 | 2015-06-09 16:36:23 -0700 | [diff] [blame] | 2569 | e_crit(drv, "%s\n", ixgbe_overheat_msg); |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2570 | } |
| 2571 | |
Don Skidmore | 45788d2 | 2015-06-09 16:59:04 -0700 | [diff] [blame] | 2572 | static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw) |
| 2573 | { |
| 2574 | switch (hw->mac.type) { |
| 2575 | case ixgbe_mac_82598EB: |
| 2576 | if (hw->phy.type == ixgbe_phy_nl) |
| 2577 | return true; |
| 2578 | return false; |
| 2579 | case ixgbe_mac_82599EB: |
| 2580 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2581 | case ixgbe_mac_x550em_a: |
Don Skidmore | 45788d2 | 2015-06-09 16:59:04 -0700 | [diff] [blame] | 2582 | switch (hw->mac.ops.get_media_type(hw)) { |
| 2583 | case ixgbe_media_type_fiber: |
| 2584 | case ixgbe_media_type_fiber_qsfp: |
| 2585 | return true; |
| 2586 | default: |
| 2587 | return false; |
| 2588 | } |
| 2589 | default: |
| 2590 | return false; |
| 2591 | } |
| 2592 | } |
| 2593 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2594 | static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr) |
| 2595 | { |
| 2596 | struct ixgbe_hw *hw = &adapter->hw; |
Don Skidmore | 4ccc650 | 2015-09-02 13:47:54 -0700 | [diff] [blame] | 2597 | u32 eicr_mask = IXGBE_EICR_GPI_SDP2(hw); |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2598 | |
Don Skidmore | 4ccc650 | 2015-09-02 13:47:54 -0700 | [diff] [blame] | 2599 | if (!ixgbe_is_sfp(hw)) |
| 2600 | return; |
| 2601 | |
| 2602 | /* Later MAC's use different SDP */ |
| 2603 | if (hw->mac.type >= ixgbe_mac_X540) |
| 2604 | eicr_mask = IXGBE_EICR_GPI_SDP0_X540; |
| 2605 | |
| 2606 | if (eicr & eicr_mask) { |
Alexander Duyck | 73c4b7c | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2607 | /* Clear the interrupt */ |
Don Skidmore | 4ccc650 | 2015-09-02 13:47:54 -0700 | [diff] [blame] | 2608 | IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr_mask); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 2609 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 2610 | adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET; |
Mark Rustad | 58e7cd2 | 2015-08-08 16:18:48 -0700 | [diff] [blame] | 2611 | adapter->sfp_poll_time = 0; |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 2612 | ixgbe_service_event_schedule(adapter); |
| 2613 | } |
Alexander Duyck | 73c4b7c | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2614 | } |
| 2615 | |
Don Skidmore | 4ccc650 | 2015-09-02 13:47:54 -0700 | [diff] [blame] | 2616 | if (adapter->hw.mac.type == ixgbe_mac_82599EB && |
| 2617 | (eicr & IXGBE_EICR_GPI_SDP1(hw))) { |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2618 | /* Clear the interrupt */ |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2619 | IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1(hw)); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 2620 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 2621 | adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG; |
| 2622 | ixgbe_service_event_schedule(adapter); |
| 2623 | } |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2624 | } |
| 2625 | } |
| 2626 | |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 2627 | static void ixgbe_check_lsc(struct ixgbe_adapter *adapter) |
| 2628 | { |
| 2629 | struct ixgbe_hw *hw = &adapter->hw; |
| 2630 | |
| 2631 | adapter->lsc_int++; |
| 2632 | adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE; |
| 2633 | adapter->link_check_timeout = jiffies; |
| 2634 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 2635 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC); |
Nelson, Shannon | 8a0717f | 2009-11-12 18:47:11 +0000 | [diff] [blame] | 2636 | IXGBE_WRITE_FLUSH(hw); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 2637 | ixgbe_service_event_schedule(adapter); |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 2638 | } |
| 2639 | } |
| 2640 | |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2641 | static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter, |
| 2642 | u64 qmask) |
| 2643 | { |
| 2644 | u32 mask; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2645 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2646 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2647 | switch (hw->mac.type) { |
| 2648 | case ixgbe_mac_82598EB: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2649 | mask = (IXGBE_EIMS_RTX_QUEUE & qmask); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2650 | IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask); |
| 2651 | break; |
| 2652 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 2653 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2654 | case ixgbe_mac_X550: |
| 2655 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2656 | case ixgbe_mac_x550em_a: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2657 | mask = (qmask & 0xFFFFFFFF); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2658 | if (mask) |
| 2659 | IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask); |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2660 | mask = (qmask >> 32); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2661 | if (mask) |
| 2662 | IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask); |
| 2663 | break; |
| 2664 | default: |
| 2665 | break; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2666 | } |
| 2667 | /* skip the flush */ |
| 2668 | } |
| 2669 | |
| 2670 | static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 2671 | u64 qmask) |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2672 | { |
| 2673 | u32 mask; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2674 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2675 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2676 | switch (hw->mac.type) { |
| 2677 | case ixgbe_mac_82598EB: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2678 | mask = (IXGBE_EIMS_RTX_QUEUE & qmask); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2679 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask); |
| 2680 | break; |
| 2681 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 2682 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2683 | case ixgbe_mac_X550: |
| 2684 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2685 | case ixgbe_mac_x550em_a: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2686 | mask = (qmask & 0xFFFFFFFF); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2687 | if (mask) |
| 2688 | IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask); |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2689 | mask = (qmask >> 32); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2690 | if (mask) |
| 2691 | IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask); |
| 2692 | break; |
| 2693 | default: |
| 2694 | break; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2695 | } |
| 2696 | /* skip the flush */ |
| 2697 | } |
| 2698 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2699 | /** |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2700 | * ixgbe_irq_enable - Enable default interrupt generation settings |
| 2701 | * @adapter: board private structure |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2702 | **/ |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2703 | static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues, |
| 2704 | bool flush) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2705 | { |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2706 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2707 | u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE); |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 2708 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2709 | /* don't reenable LSC while waiting for link */ |
| 2710 | if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE) |
| 2711 | mask &= ~IXGBE_EIMS_LSC; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2712 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2713 | if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2714 | switch (adapter->hw.mac.type) { |
| 2715 | case ixgbe_mac_82599EB: |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2716 | mask |= IXGBE_EIMS_GPI_SDP0(hw); |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2717 | break; |
| 2718 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2719 | case ixgbe_mac_X550: |
| 2720 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2721 | case ixgbe_mac_x550em_a: |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2722 | mask |= IXGBE_EIMS_TS; |
| 2723 | break; |
| 2724 | default: |
| 2725 | break; |
| 2726 | } |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2727 | if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2728 | mask |= IXGBE_EIMS_GPI_SDP1(hw); |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2729 | switch (adapter->hw.mac.type) { |
| 2730 | case ixgbe_mac_82599EB: |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 2731 | mask |= IXGBE_EIMS_GPI_SDP1(hw); |
| 2732 | mask |= IXGBE_EIMS_GPI_SDP2(hw); |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2733 | /* fall through */ |
Don Skidmore | 858bc08 | 2011-08-04 09:28:30 +0000 | [diff] [blame] | 2734 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2735 | case ixgbe_mac_X550: |
| 2736 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2737 | case ixgbe_mac_x550em_a: |
| 2738 | if (adapter->hw.device_id == IXGBE_DEV_ID_X550EM_X_SFP || |
Mark Rustad | 2d40cd1 | 2016-04-01 12:18:35 -0700 | [diff] [blame] | 2739 | adapter->hw.device_id == IXGBE_DEV_ID_X550EM_A_SFP || |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2740 | adapter->hw.device_id == IXGBE_DEV_ID_X550EM_A_SFP_N) |
Mark Rustad | cbd45ec | 2015-08-08 16:17:51 -0700 | [diff] [blame] | 2741 | mask |= IXGBE_EIMS_GPI_SDP0(&adapter->hw); |
Don Skidmore | 597f22d | 2015-06-09 16:52:02 -0700 | [diff] [blame] | 2742 | if (adapter->hw.phy.type == ixgbe_phy_x550em_ext_t) |
| 2743 | mask |= IXGBE_EICR_GPI_SDP0_X540; |
Don Skidmore | 858bc08 | 2011-08-04 09:28:30 +0000 | [diff] [blame] | 2744 | mask |= IXGBE_EIMS_ECC; |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2745 | mask |= IXGBE_EIMS_MAILBOX; |
| 2746 | break; |
| 2747 | default: |
| 2748 | break; |
| 2749 | } |
Jacob Keller | db0677f | 2012-08-24 07:46:54 +0000 | [diff] [blame] | 2750 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2751 | if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) && |
| 2752 | !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT)) |
| 2753 | mask |= IXGBE_EIMS_FLOW_DIR; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2754 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2755 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask); |
| 2756 | if (queues) |
| 2757 | ixgbe_irq_enable_queues(adapter, ~0); |
| 2758 | if (flush) |
| 2759 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2760 | } |
| 2761 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2762 | static irqreturn_t ixgbe_msix_other(int irq, void *data) |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2763 | { |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2764 | struct ixgbe_adapter *adapter = data; |
| 2765 | struct ixgbe_hw *hw = &adapter->hw; |
| 2766 | u32 eicr; |
Alexander Duyck | 91281fd | 2009-06-04 16:00:27 +0000 | [diff] [blame] | 2767 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2768 | /* |
| 2769 | * Workaround for Silicon errata. Use clear-by-write instead |
| 2770 | * of clear-by-read. Reading with EICS will return the |
| 2771 | * interrupt causes without clearing, which later be done |
| 2772 | * with the write to EICR. |
| 2773 | */ |
| 2774 | eicr = IXGBE_READ_REG(hw, IXGBE_EICS); |
Jacob Keller | d87d830 | 2013-03-02 07:51:42 +0000 | [diff] [blame] | 2775 | |
| 2776 | /* The lower 16bits of the EICR register are for the queue interrupts |
Joe Perches | dbedd44 | 2015-03-06 20:49:12 -0800 | [diff] [blame] | 2777 | * which should be masked here in order to not accidentally clear them if |
Jacob Keller | d87d830 | 2013-03-02 07:51:42 +0000 | [diff] [blame] | 2778 | * the bits are high when ixgbe_msix_other is called. There is a race |
| 2779 | * condition otherwise which results in possible performance loss |
| 2780 | * especially if the ixgbe_msix_other interrupt is triggering |
| 2781 | * consistently (as it would when PPS is turned on for the X540 device) |
| 2782 | */ |
| 2783 | eicr &= 0xFFFF0000; |
| 2784 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2785 | IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr); |
Alexander Duyck | 91281fd | 2009-06-04 16:00:27 +0000 | [diff] [blame] | 2786 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2787 | if (eicr & IXGBE_EICR_LSC) |
| 2788 | ixgbe_check_lsc(adapter); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2789 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2790 | if (eicr & IXGBE_EICR_MAILBOX) |
| 2791 | ixgbe_msg_task(adapter); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2792 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2793 | switch (hw->mac.type) { |
| 2794 | case ixgbe_mac_82599EB: |
| 2795 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 2796 | case ixgbe_mac_X550: |
| 2797 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 2798 | case ixgbe_mac_x550em_a: |
Don Skidmore | 597f22d | 2015-06-09 16:52:02 -0700 | [diff] [blame] | 2799 | if (hw->phy.type == ixgbe_phy_x550em_ext_t && |
| 2800 | (eicr & IXGBE_EICR_GPI_SDP0_X540)) { |
| 2801 | adapter->flags2 |= IXGBE_FLAG2_PHY_INTERRUPT; |
| 2802 | ixgbe_service_event_schedule(adapter); |
| 2803 | IXGBE_WRITE_REG(hw, IXGBE_EICR, |
| 2804 | IXGBE_EICR_GPI_SDP0_X540); |
| 2805 | } |
Don Skidmore | d773ce2 | 2014-02-25 17:58:53 -0800 | [diff] [blame] | 2806 | if (eicr & IXGBE_EICR_ECC) { |
| 2807 | e_info(link, "Received ECC Err, initiating reset\n"); |
Emil Tantilov | 57ca2a4 | 2016-07-29 14:46:31 -0700 | [diff] [blame] | 2808 | set_bit(__IXGBE_RESET_REQUESTED, &adapter->state); |
Don Skidmore | d773ce2 | 2014-02-25 17:58:53 -0800 | [diff] [blame] | 2809 | ixgbe_service_event_schedule(adapter); |
| 2810 | IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC); |
| 2811 | } |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2812 | /* Handle Flow Director Full threshold interrupt */ |
| 2813 | if (eicr & IXGBE_EICR_FLOW_DIR) { |
| 2814 | int reinit_count = 0; |
| 2815 | int i; |
| 2816 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 2817 | struct ixgbe_ring *ring = adapter->tx_ring[i]; |
| 2818 | if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE, |
| 2819 | &ring->state)) |
| 2820 | reinit_count++; |
| 2821 | } |
| 2822 | if (reinit_count) { |
| 2823 | /* no more flow director interrupts until after init */ |
| 2824 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR); |
| 2825 | adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT; |
| 2826 | ixgbe_service_event_schedule(adapter); |
| 2827 | } |
| 2828 | } |
| 2829 | ixgbe_check_sfp_event(adapter, eicr); |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2830 | ixgbe_check_overtemp_event(adapter, eicr); |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2831 | break; |
| 2832 | default: |
| 2833 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2834 | } |
| 2835 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2836 | ixgbe_check_fan_failure(adapter, eicr); |
Jacob Keller | db0677f | 2012-08-24 07:46:54 +0000 | [diff] [blame] | 2837 | |
Jacob Keller | db0677f | 2012-08-24 07:46:54 +0000 | [diff] [blame] | 2838 | if (unlikely(eicr & IXGBE_EICR_TIMESYNC)) |
Mark Rustad | a9763f3 | 2015-10-27 09:58:07 -0700 | [diff] [blame] | 2839 | ixgbe_ptp_check_pps_event(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2840 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2841 | /* re-enable the original interrupt state, no lsc, no queues */ |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 2842 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2843 | ixgbe_irq_enable(adapter, false, false); |
Alexander Duyck | 91281fd | 2009-06-04 16:00:27 +0000 | [diff] [blame] | 2844 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2845 | return IRQ_HANDLED; |
| 2846 | } |
| 2847 | |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2848 | static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2849 | { |
| 2850 | struct ixgbe_q_vector *q_vector = data; |
| 2851 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2852 | /* EIAM disabled interrupts (on this vector) for us */ |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2853 | |
| 2854 | if (q_vector->rx.ring || q_vector->tx.ring) |
Alexander Duyck | ef2662b | 2015-09-29 15:19:43 -0700 | [diff] [blame] | 2855 | napi_schedule_irqoff(&q_vector->napi); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2856 | |
| 2857 | return IRQ_HANDLED; |
Alexander Duyck | 91281fd | 2009-06-04 16:00:27 +0000 | [diff] [blame] | 2858 | } |
| 2859 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2860 | /** |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2861 | * ixgbe_poll - NAPI Rx polling callback |
| 2862 | * @napi: structure for representing this polling device |
| 2863 | * @budget: how many packets driver is allowed to clean |
| 2864 | * |
| 2865 | * This function is used for legacy and MSI, NAPI mode |
| 2866 | **/ |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 2867 | int ixgbe_poll(struct napi_struct *napi, int budget) |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2868 | { |
| 2869 | struct ixgbe_q_vector *q_vector = |
| 2870 | container_of(napi, struct ixgbe_q_vector, napi); |
| 2871 | struct ixgbe_adapter *adapter = q_vector->adapter; |
| 2872 | struct ixgbe_ring *ring; |
Jesse Brandeburg | 32b3e08 | 2015-09-24 16:35:47 -0700 | [diff] [blame] | 2873 | int per_ring_budget, work_done = 0; |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2874 | bool clean_complete = true; |
| 2875 | |
| 2876 | #ifdef CONFIG_IXGBE_DCA |
| 2877 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) |
| 2878 | ixgbe_update_dca(q_vector); |
| 2879 | #endif |
| 2880 | |
Alexander Duyck | 8220bbc | 2016-03-07 09:30:09 -0800 | [diff] [blame] | 2881 | ixgbe_for_each_ring(ring, q_vector->tx) { |
| 2882 | if (!ixgbe_clean_tx_irq(q_vector, ring, budget)) |
| 2883 | clean_complete = false; |
| 2884 | } |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2885 | |
Eric Dumazet | 3ffc1af | 2017-02-02 16:26:39 -0800 | [diff] [blame] | 2886 | /* Exit if we are called by netpoll */ |
| 2887 | if (budget <= 0) |
Eliezer Tamir | 5a85e73 | 2013-06-10 11:40:20 +0300 | [diff] [blame] | 2888 | return budget; |
| 2889 | |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2890 | /* attempt to distribute budget to each queue fairly, but don't allow |
| 2891 | * the budget to go below 1 because we'll exit polling */ |
| 2892 | if (q_vector->rx.count > 1) |
| 2893 | per_ring_budget = max(budget/q_vector->rx.count, 1); |
| 2894 | else |
| 2895 | per_ring_budget = budget; |
| 2896 | |
Jesse Brandeburg | 32b3e08 | 2015-09-24 16:35:47 -0700 | [diff] [blame] | 2897 | ixgbe_for_each_ring(ring, q_vector->rx) { |
| 2898 | int cleaned = ixgbe_clean_rx_irq(q_vector, ring, |
| 2899 | per_ring_budget); |
| 2900 | |
| 2901 | work_done += cleaned; |
Alexander Duyck | 8220bbc | 2016-03-07 09:30:09 -0800 | [diff] [blame] | 2902 | if (cleaned >= per_ring_budget) |
| 2903 | clean_complete = false; |
Jesse Brandeburg | 32b3e08 | 2015-09-24 16:35:47 -0700 | [diff] [blame] | 2904 | } |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2905 | |
| 2906 | /* If all work not completed, return budget and keep polling */ |
| 2907 | if (!clean_complete) |
| 2908 | return budget; |
| 2909 | |
| 2910 | /* all work done, exit the polling mode */ |
Jesse Brandeburg | 32b3e08 | 2015-09-24 16:35:47 -0700 | [diff] [blame] | 2911 | napi_complete_done(napi, work_done); |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2912 | if (adapter->rx_itr_setting & 1) |
| 2913 | ixgbe_set_itr(q_vector); |
| 2914 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 2915 | ixgbe_irq_enable_queues(adapter, BIT_ULL(q_vector->v_idx)); |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2916 | |
Paolo Abeni | 4b732cd | 2016-06-15 15:37:59 +0200 | [diff] [blame] | 2917 | return min(work_done, budget - 1); |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2918 | } |
| 2919 | |
| 2920 | /** |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2921 | * ixgbe_request_msix_irqs - Initialize MSI-X interrupts |
| 2922 | * @adapter: board private structure |
| 2923 | * |
| 2924 | * ixgbe_request_msix_irqs allocates MSI-X vectors and requests |
| 2925 | * interrupts from the kernel. |
| 2926 | **/ |
| 2927 | static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter) |
| 2928 | { |
| 2929 | struct net_device *netdev = adapter->netdev; |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2930 | int vector, err; |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 2931 | int ri = 0, ti = 0; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2932 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2933 | for (vector = 0; vector < adapter->num_q_vectors; vector++) { |
Alexander Duyck | d0759eb | 2010-11-16 19:27:09 -0800 | [diff] [blame] | 2934 | struct ixgbe_q_vector *q_vector = adapter->q_vector[vector]; |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2935 | struct msix_entry *entry = &adapter->msix_entries[vector]; |
Robert Olsson | cb13fc2 | 2008-11-25 16:43:52 -0800 | [diff] [blame] | 2936 | |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2937 | if (q_vector->tx.ring && q_vector->rx.ring) { |
Don Skidmore | 9fe93af | 2010-12-03 09:33:54 +0000 | [diff] [blame] | 2938 | snprintf(q_vector->name, sizeof(q_vector->name) - 1, |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2939 | "%s-%s-%d", netdev->name, "TxRx", ri++); |
Alexander Duyck | 32aa77a | 2010-11-16 19:26:59 -0800 | [diff] [blame] | 2940 | ti++; |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2941 | } else if (q_vector->rx.ring) { |
| 2942 | snprintf(q_vector->name, sizeof(q_vector->name) - 1, |
| 2943 | "%s-%s-%d", netdev->name, "rx", ri++); |
| 2944 | } else if (q_vector->tx.ring) { |
| 2945 | snprintf(q_vector->name, sizeof(q_vector->name) - 1, |
| 2946 | "%s-%s-%d", netdev->name, "tx", ti++); |
Alexander Duyck | d0759eb | 2010-11-16 19:27:09 -0800 | [diff] [blame] | 2947 | } else { |
| 2948 | /* skip this unused q_vector */ |
| 2949 | continue; |
Alexander Duyck | 32aa77a | 2010-11-16 19:26:59 -0800 | [diff] [blame] | 2950 | } |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2951 | err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0, |
| 2952 | q_vector->name, q_vector); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2953 | if (err) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2954 | e_err(probe, "request_irq failed for MSIX interrupt " |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 2955 | "Error: %d\n", err); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2956 | goto free_queue_irqs; |
| 2957 | } |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2958 | /* If Flow Director is enabled, set interrupt affinity */ |
| 2959 | if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) { |
| 2960 | /* assign the mask for this irq */ |
| 2961 | irq_set_affinity_hint(entry->vector, |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 2962 | &q_vector->affinity_mask); |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2963 | } |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2964 | } |
| 2965 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2966 | err = request_irq(adapter->msix_entries[vector].vector, |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2967 | ixgbe_msix_other, 0, netdev->name, adapter); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2968 | if (err) { |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 2969 | e_err(probe, "request_irq for msix_other failed: %d\n", err); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2970 | goto free_queue_irqs; |
| 2971 | } |
| 2972 | |
| 2973 | return 0; |
| 2974 | |
| 2975 | free_queue_irqs: |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2976 | while (vector) { |
| 2977 | vector--; |
| 2978 | irq_set_affinity_hint(adapter->msix_entries[vector].vector, |
| 2979 | NULL); |
| 2980 | free_irq(adapter->msix_entries[vector].vector, |
| 2981 | adapter->q_vector[vector]); |
| 2982 | } |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2983 | adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED; |
| 2984 | pci_disable_msix(adapter->pdev); |
| 2985 | kfree(adapter->msix_entries); |
| 2986 | adapter->msix_entries = NULL; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2987 | return err; |
| 2988 | } |
| 2989 | |
Alexey Dobriyan | 79aefa4 | 2008-11-19 14:17:02 -0800 | [diff] [blame] | 2990 | /** |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2991 | * ixgbe_intr - legacy mode Interrupt Handler |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2992 | * @irq: interrupt number |
| 2993 | * @data: pointer to a network interface device structure |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2994 | **/ |
| 2995 | static irqreturn_t ixgbe_intr(int irq, void *data) |
| 2996 | { |
Alexander Duyck | a65151ba2 | 2011-05-27 05:31:32 +0000 | [diff] [blame] | 2997 | struct ixgbe_adapter *adapter = data; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2998 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 7a921c9 | 2009-05-06 10:43:28 +0000 | [diff] [blame] | 2999 | struct ixgbe_q_vector *q_vector = adapter->q_vector[0]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3000 | u32 eicr; |
| 3001 | |
Don Skidmore | 5403750 | 2009-02-21 15:42:56 -0800 | [diff] [blame] | 3002 | /* |
Alexander Duyck | 24ddd96 | 2012-02-10 02:08:32 +0000 | [diff] [blame] | 3003 | * Workaround for silicon errata #26 on 82598. Mask the interrupt |
Don Skidmore | 5403750 | 2009-02-21 15:42:56 -0800 | [diff] [blame] | 3004 | * before the read of EICR. |
| 3005 | */ |
| 3006 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK); |
| 3007 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3008 | /* for NAPI, using EIAM to auto-mask tx/rx interrupt bits on read |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 3009 | * therefore no explicit interrupt disable is necessary */ |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3010 | eicr = IXGBE_READ_REG(hw, IXGBE_EICR); |
Jesse Brandeburg | f47cf66 | 2008-09-11 19:56:14 -0700 | [diff] [blame] | 3011 | if (!eicr) { |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 3012 | /* |
| 3013 | * shared interrupt alert! |
Jesse Brandeburg | f47cf66 | 2008-09-11 19:56:14 -0700 | [diff] [blame] | 3014 | * make sure interrupts are enabled because the read will |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 3015 | * have disabled interrupts due to EIAM |
| 3016 | * finish the workaround of silicon errata on 82598. Unmask |
| 3017 | * the interrupt that we masked before the EICR read. |
| 3018 | */ |
| 3019 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) |
| 3020 | ixgbe_irq_enable(adapter, true, true); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3021 | return IRQ_NONE; /* Not our interrupt */ |
Jesse Brandeburg | f47cf66 | 2008-09-11 19:56:14 -0700 | [diff] [blame] | 3022 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3023 | |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 3024 | if (eicr & IXGBE_EICR_LSC) |
| 3025 | ixgbe_check_lsc(adapter); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3026 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 3027 | switch (hw->mac.type) { |
| 3028 | case ixgbe_mac_82599EB: |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3029 | ixgbe_check_sfp_event(adapter, eicr); |
Don Skidmore | 0ccb974 | 2011-08-04 02:07:48 +0000 | [diff] [blame] | 3030 | /* Fall through */ |
| 3031 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 3032 | case ixgbe_mac_X550: |
| 3033 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 3034 | case ixgbe_mac_x550em_a: |
Don Skidmore | d773ce2 | 2014-02-25 17:58:53 -0800 | [diff] [blame] | 3035 | if (eicr & IXGBE_EICR_ECC) { |
| 3036 | e_info(link, "Received ECC Err, initiating reset\n"); |
Emil Tantilov | 57ca2a4 | 2016-07-29 14:46:31 -0700 | [diff] [blame] | 3037 | set_bit(__IXGBE_RESET_REQUESTED, &adapter->state); |
Don Skidmore | d773ce2 | 2014-02-25 17:58:53 -0800 | [diff] [blame] | 3038 | ixgbe_service_event_schedule(adapter); |
| 3039 | IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_ECC); |
| 3040 | } |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 3041 | ixgbe_check_overtemp_event(adapter, eicr); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 3042 | break; |
| 3043 | default: |
| 3044 | break; |
| 3045 | } |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3046 | |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 3047 | ixgbe_check_fan_failure(adapter, eicr); |
Jacob Keller | db0677f | 2012-08-24 07:46:54 +0000 | [diff] [blame] | 3048 | if (unlikely(eicr & IXGBE_EICR_TIMESYNC)) |
Mark Rustad | a9763f3 | 2015-10-27 09:58:07 -0700 | [diff] [blame] | 3049 | ixgbe_ptp_check_pps_event(adapter); |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 3050 | |
Alexander Duyck | b9f6ed2 | 2012-02-08 07:49:54 +0000 | [diff] [blame] | 3051 | /* would disable interrupts here but EIAM disabled it */ |
Alexander Duyck | ef2662b | 2015-09-29 15:19:43 -0700 | [diff] [blame] | 3052 | napi_schedule_irqoff(&q_vector->napi); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3053 | |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 3054 | /* |
| 3055 | * re-enable link(maybe) and non-queue interrupts, no flush. |
| 3056 | * ixgbe_poll will re-enable the queue interrupts |
| 3057 | */ |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 3058 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) |
| 3059 | ixgbe_irq_enable(adapter, false, false); |
| 3060 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3061 | return IRQ_HANDLED; |
| 3062 | } |
| 3063 | |
| 3064 | /** |
| 3065 | * ixgbe_request_irq - initialize interrupts |
| 3066 | * @adapter: board private structure |
| 3067 | * |
| 3068 | * Attempts to configure interrupts using the best available |
| 3069 | * capabilities of the hardware and kernel. |
| 3070 | **/ |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3071 | static int ixgbe_request_irq(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3072 | { |
| 3073 | struct net_device *netdev = adapter->netdev; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3074 | int err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3075 | |
Alexander Duyck | 4cc6df2 | 2011-07-15 03:05:51 +0000 | [diff] [blame] | 3076 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3077 | err = ixgbe_request_msix_irqs(adapter); |
Alexander Duyck | 4cc6df2 | 2011-07-15 03:05:51 +0000 | [diff] [blame] | 3078 | else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 3079 | err = request_irq(adapter->pdev->irq, ixgbe_intr, 0, |
Alexander Duyck | a65151ba2 | 2011-05-27 05:31:32 +0000 | [diff] [blame] | 3080 | netdev->name, adapter); |
Alexander Duyck | 4cc6df2 | 2011-07-15 03:05:51 +0000 | [diff] [blame] | 3081 | else |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 3082 | err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED, |
Alexander Duyck | a65151ba2 | 2011-05-27 05:31:32 +0000 | [diff] [blame] | 3083 | netdev->name, adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3084 | |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 3085 | if (err) |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 3086 | e_err(probe, "request_irq failed, Error %d\n", err); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3087 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3088 | return err; |
| 3089 | } |
| 3090 | |
| 3091 | static void ixgbe_free_irq(struct ixgbe_adapter *adapter) |
| 3092 | { |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 3093 | int vector; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3094 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 3095 | if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) { |
Alexander Duyck | a65151ba2 | 2011-05-27 05:31:32 +0000 | [diff] [blame] | 3096 | free_irq(adapter->pdev->irq, adapter); |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 3097 | return; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3098 | } |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 3099 | |
Mark Rustad | 1fa7125 | 2016-09-28 15:36:38 -0700 | [diff] [blame] | 3100 | if (!adapter->msix_entries) |
| 3101 | return; |
| 3102 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 3103 | for (vector = 0; vector < adapter->num_q_vectors; vector++) { |
| 3104 | struct ixgbe_q_vector *q_vector = adapter->q_vector[vector]; |
| 3105 | struct msix_entry *entry = &adapter->msix_entries[vector]; |
| 3106 | |
| 3107 | /* free only the irqs that were actually requested */ |
| 3108 | if (!q_vector->rx.ring && !q_vector->tx.ring) |
| 3109 | continue; |
| 3110 | |
| 3111 | /* clear the affinity_mask in the IRQ descriptor */ |
| 3112 | irq_set_affinity_hint(entry->vector, NULL); |
| 3113 | |
| 3114 | free_irq(entry->vector, q_vector); |
| 3115 | } |
| 3116 | |
Babu Moger | 90c6f87 | 2016-06-18 17:40:47 -0700 | [diff] [blame] | 3117 | free_irq(adapter->msix_entries[vector].vector, adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3118 | } |
| 3119 | |
| 3120 | /** |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 3121 | * ixgbe_irq_disable - Mask off interrupt generation on the NIC |
| 3122 | * @adapter: board private structure |
| 3123 | **/ |
| 3124 | static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter) |
| 3125 | { |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 3126 | switch (adapter->hw.mac.type) { |
| 3127 | case ixgbe_mac_82598EB: |
Nelson, Shannon | 835462f | 2009-04-27 22:42:54 +0000 | [diff] [blame] | 3128 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 3129 | break; |
| 3130 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 3131 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 3132 | case ixgbe_mac_X550: |
| 3133 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 3134 | case ixgbe_mac_x550em_a: |
Nelson, Shannon | 835462f | 2009-04-27 22:42:54 +0000 | [diff] [blame] | 3135 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000); |
| 3136 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0); |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 3137 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 3138 | break; |
| 3139 | default: |
| 3140 | break; |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 3141 | } |
| 3142 | IXGBE_WRITE_FLUSH(&adapter->hw); |
| 3143 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) { |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 3144 | int vector; |
| 3145 | |
| 3146 | for (vector = 0; vector < adapter->num_q_vectors; vector++) |
| 3147 | synchronize_irq(adapter->msix_entries[vector].vector); |
| 3148 | |
| 3149 | synchronize_irq(adapter->msix_entries[vector++].vector); |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 3150 | } else { |
| 3151 | synchronize_irq(adapter->pdev->irq); |
| 3152 | } |
| 3153 | } |
| 3154 | |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 3155 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3156 | * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts |
| 3157 | * |
| 3158 | **/ |
| 3159 | static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter) |
| 3160 | { |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 3161 | struct ixgbe_q_vector *q_vector = adapter->q_vector[0]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3162 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 3163 | ixgbe_write_eitr(q_vector); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3164 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3165 | ixgbe_set_ivar(adapter, 0, 0, 0); |
| 3166 | ixgbe_set_ivar(adapter, 1, 0, 0); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3167 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 3168 | e_info(hw, "Legacy interrupt IVAR setup done\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3169 | } |
| 3170 | |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 3171 | /** |
| 3172 | * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset |
| 3173 | * @adapter: board private structure |
| 3174 | * @ring: structure containing ring specific data |
| 3175 | * |
| 3176 | * Configure the Tx descriptor ring after a reset. |
| 3177 | **/ |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 3178 | void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter, |
| 3179 | struct ixgbe_ring *ring) |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 3180 | { |
| 3181 | struct ixgbe_hw *hw = &adapter->hw; |
| 3182 | u64 tdba = ring->dma; |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3183 | int wait_loop = 10; |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 3184 | u32 txdctl = IXGBE_TXDCTL_ENABLE; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 3185 | u8 reg_idx = ring->reg_idx; |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 3186 | |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3187 | /* disable queue to avoid issues while updating state */ |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 3188 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0); |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3189 | IXGBE_WRITE_FLUSH(hw); |
| 3190 | |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 3191 | IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx), |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 3192 | (tdba & DMA_BIT_MASK(32))); |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 3193 | IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32)); |
| 3194 | IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx), |
| 3195 | ring->count * sizeof(union ixgbe_adv_tx_desc)); |
| 3196 | IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0); |
| 3197 | IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0); |
Mark Rustad | 2a1a091 | 2014-01-14 18:53:15 -0800 | [diff] [blame] | 3198 | ring->tail = adapter->io_addr + IXGBE_TDT(reg_idx); |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 3199 | |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 3200 | /* |
| 3201 | * set WTHRESH to encourage burst writeback, it should not be set |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 3202 | * higher than 1 when: |
| 3203 | * - ITR is 0 as it could cause false TX hangs |
| 3204 | * - ITR is set to > 100k int/sec and BQL is enabled |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 3205 | * |
| 3206 | * In order to avoid issues WTHRESH + PTHRESH should always be equal |
| 3207 | * to or less than the number of on chip descriptors, which is |
| 3208 | * currently 40. |
| 3209 | */ |
Emil Tantilov | 67da097 | 2013-01-25 06:19:20 +0000 | [diff] [blame] | 3210 | if (!ring->q_vector || (ring->q_vector->itr < IXGBE_100K_ITR)) |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 3211 | txdctl |= 1u << 16; /* WTHRESH = 1 */ |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 3212 | else |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 3213 | txdctl |= 8u << 16; /* WTHRESH = 8 */ |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 3214 | |
Alexander Duyck | e954b37 | 2012-02-08 07:49:38 +0000 | [diff] [blame] | 3215 | /* |
| 3216 | * Setting PTHRESH to 32 both improves performance |
| 3217 | * and avoids a TX hang with DFP enabled |
| 3218 | */ |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 3219 | txdctl |= (1u << 8) | /* HTHRESH = 1 */ |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 3220 | 32; /* PTHRESH = 32 */ |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3221 | |
| 3222 | /* reinitialize flowdirector state */ |
Alexander Duyck | 39cb681 | 2012-06-06 05:38:20 +0000 | [diff] [blame] | 3223 | if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) { |
Alexander Duyck | ee9e0f0 | 2010-11-16 19:27:01 -0800 | [diff] [blame] | 3224 | ring->atr_sample_rate = adapter->atr_sample_rate; |
| 3225 | ring->atr_count = 0; |
| 3226 | set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state); |
| 3227 | } else { |
| 3228 | ring->atr_sample_rate = 0; |
| 3229 | } |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3230 | |
Alexander Duyck | fd786b7 | 2013-01-12 06:33:31 +0000 | [diff] [blame] | 3231 | /* initialize XPS */ |
| 3232 | if (!test_and_set_bit(__IXGBE_TX_XPS_INIT_DONE, &ring->state)) { |
| 3233 | struct ixgbe_q_vector *q_vector = ring->q_vector; |
| 3234 | |
| 3235 | if (q_vector) |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 3236 | netif_set_xps_queue(ring->netdev, |
Alexander Duyck | fd786b7 | 2013-01-12 06:33:31 +0000 | [diff] [blame] | 3237 | &q_vector->affinity_mask, |
| 3238 | ring->queue_index); |
| 3239 | } |
| 3240 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 3241 | clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state); |
| 3242 | |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3243 | /* enable queue */ |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3244 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl); |
| 3245 | |
| 3246 | /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */ |
| 3247 | if (hw->mac.type == ixgbe_mac_82598EB && |
| 3248 | !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP)) |
| 3249 | return; |
| 3250 | |
| 3251 | /* poll to verify queue is enabled */ |
| 3252 | do { |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 3253 | usleep_range(1000, 2000); |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3254 | txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx)); |
| 3255 | } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE)); |
| 3256 | if (!wait_loop) |
Emil Tantilov | a55defd | 2016-07-29 10:30:06 -0700 | [diff] [blame] | 3257 | hw_dbg(hw, "Could not enable Tx Queue %d\n", reg_idx); |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 3258 | } |
| 3259 | |
Alexander Duyck | 120ff94 | 2010-08-19 13:34:50 +0000 | [diff] [blame] | 3260 | static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter) |
| 3261 | { |
| 3262 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3263 | u32 rttdcs, mtqc; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 3264 | u8 tcs = netdev_get_num_tc(adapter->netdev); |
Alexander Duyck | 120ff94 | 2010-08-19 13:34:50 +0000 | [diff] [blame] | 3265 | |
| 3266 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3267 | return; |
| 3268 | |
| 3269 | /* disable the arbiter while setting MTQC */ |
| 3270 | rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS); |
| 3271 | rttdcs |= IXGBE_RTTDCS_ARBDIS; |
| 3272 | IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs); |
| 3273 | |
| 3274 | /* set transmit pool layout */ |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3275 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 3276 | mtqc = IXGBE_MTQC_VT_ENA; |
| 3277 | if (tcs > 4) |
| 3278 | mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ; |
| 3279 | else if (tcs > 1) |
| 3280 | mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ; |
Alexander Duyck | e24fcf2 | 2016-09-07 20:28:24 -0700 | [diff] [blame] | 3281 | else if (adapter->ring_feature[RING_F_VMDQ].mask == |
| 3282 | IXGBE_82599_VMDQ_4Q_MASK) |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3283 | mtqc |= IXGBE_MTQC_32VF; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 3284 | else |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3285 | mtqc |= IXGBE_MTQC_64VF; |
| 3286 | } else { |
| 3287 | if (tcs > 4) |
| 3288 | mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ; |
| 3289 | else if (tcs > 1) |
| 3290 | mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ; |
| 3291 | else |
| 3292 | mtqc = IXGBE_MTQC_64Q_1PB; |
| 3293 | } |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 3294 | |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3295 | IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc); |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 3296 | |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3297 | /* Enable Security TX Buffer IFG for multiple pb */ |
| 3298 | if (tcs) { |
| 3299 | u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG); |
| 3300 | sectx |= IXGBE_SECTX_DCB; |
| 3301 | IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx); |
Alexander Duyck | 120ff94 | 2010-08-19 13:34:50 +0000 | [diff] [blame] | 3302 | } |
| 3303 | |
| 3304 | /* re-enable the arbiter */ |
| 3305 | rttdcs &= ~IXGBE_RTTDCS_ARBDIS; |
| 3306 | IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs); |
| 3307 | } |
| 3308 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3309 | /** |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 3310 | * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3311 | * @adapter: board private structure |
| 3312 | * |
| 3313 | * Configure the Tx unit of the MAC after a reset. |
| 3314 | **/ |
| 3315 | static void ixgbe_configure_tx(struct ixgbe_adapter *adapter) |
| 3316 | { |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3317 | struct ixgbe_hw *hw = &adapter->hw; |
| 3318 | u32 dmatxctl; |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 3319 | u32 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3320 | |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 3321 | ixgbe_setup_mtqc(adapter); |
| 3322 | |
| 3323 | if (hw->mac.type != ixgbe_mac_82598EB) { |
| 3324 | /* DMATXCTL.EN must be before Tx queues are enabled */ |
| 3325 | dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL); |
| 3326 | dmatxctl |= IXGBE_DMATXCTL_TE; |
| 3327 | IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl); |
| 3328 | } |
| 3329 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3330 | /* Setup the HW Tx Head and Tail descriptor pointers */ |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 3331 | for (i = 0; i < adapter->num_tx_queues; i++) |
| 3332 | ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3333 | } |
| 3334 | |
Alexander Duyck | 3ebe8fd | 2012-04-25 04:36:38 +0000 | [diff] [blame] | 3335 | static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter, |
| 3336 | struct ixgbe_ring *ring) |
| 3337 | { |
| 3338 | struct ixgbe_hw *hw = &adapter->hw; |
| 3339 | u8 reg_idx = ring->reg_idx; |
| 3340 | u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx)); |
| 3341 | |
| 3342 | srrctl |= IXGBE_SRRCTL_DROP_EN; |
| 3343 | |
| 3344 | IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl); |
| 3345 | } |
| 3346 | |
| 3347 | static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter, |
| 3348 | struct ixgbe_ring *ring) |
| 3349 | { |
| 3350 | struct ixgbe_hw *hw = &adapter->hw; |
| 3351 | u8 reg_idx = ring->reg_idx; |
| 3352 | u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx)); |
| 3353 | |
| 3354 | srrctl &= ~IXGBE_SRRCTL_DROP_EN; |
| 3355 | |
| 3356 | IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl); |
| 3357 | } |
| 3358 | |
| 3359 | #ifdef CONFIG_IXGBE_DCB |
| 3360 | void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter) |
| 3361 | #else |
| 3362 | static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter) |
| 3363 | #endif |
| 3364 | { |
| 3365 | int i; |
| 3366 | bool pfc_en = adapter->dcb_cfg.pfc_mode_enable; |
| 3367 | |
| 3368 | if (adapter->ixgbe_ieee_pfc) |
| 3369 | pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en); |
| 3370 | |
| 3371 | /* |
| 3372 | * We should set the drop enable bit if: |
| 3373 | * SR-IOV is enabled |
| 3374 | * or |
| 3375 | * Number of Rx queues > 1 and flow control is disabled |
| 3376 | * |
| 3377 | * This allows us to avoid head of line blocking for security |
| 3378 | * and performance reasons. |
| 3379 | */ |
| 3380 | if (adapter->num_vfs || (adapter->num_rx_queues > 1 && |
| 3381 | !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) { |
| 3382 | for (i = 0; i < adapter->num_rx_queues; i++) |
| 3383 | ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]); |
| 3384 | } else { |
| 3385 | for (i = 0; i < adapter->num_rx_queues; i++) |
| 3386 | ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]); |
| 3387 | } |
| 3388 | } |
| 3389 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3390 | #define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2 |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3391 | |
Yi Zou | a6616b4 | 2009-08-06 13:05:23 +0000 | [diff] [blame] | 3392 | static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 3393 | struct ixgbe_ring *rx_ring) |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 3394 | { |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 3395 | struct ixgbe_hw *hw = &adapter->hw; |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 3396 | u32 srrctl; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 3397 | u8 reg_idx = rx_ring->reg_idx; |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 3398 | |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 3399 | if (hw->mac.type == ixgbe_mac_82598EB) { |
| 3400 | u16 mask = adapter->ring_feature[RING_F_RSS].mask; |
| 3401 | |
| 3402 | /* |
| 3403 | * if VMDq is not active we must program one srrctl register |
| 3404 | * per RSS queue since we have enabled RDRXCTL.MVMEN |
| 3405 | */ |
| 3406 | reg_idx &= mask; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 3407 | } |
| 3408 | |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 3409 | /* configure header buffer length, needed for RSC */ |
| 3410 | srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT; |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 3411 | |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 3412 | /* configure the packet buffer length */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 3413 | srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT; |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 3414 | |
| 3415 | /* configure descriptor type */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 3416 | srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3417 | |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 3418 | IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl); |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 3419 | } |
| 3420 | |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3421 | /** |
Jean Sacren | a897a2a | 2015-09-19 05:08:44 -0600 | [diff] [blame] | 3422 | * ixgbe_rss_indir_tbl_entries - Return RSS indirection table entries |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3423 | * @adapter: device handle |
| 3424 | * |
| 3425 | * - 82598/82599/X540: 128 |
| 3426 | * - X550(non-SRIOV mode): 512 |
| 3427 | * - X550(SRIOV mode): 64 |
| 3428 | */ |
Vlad Zolotarov | 7f276ef | 2015-03-30 21:18:58 +0300 | [diff] [blame] | 3429 | u32 ixgbe_rss_indir_tbl_entries(struct ixgbe_adapter *adapter) |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 3430 | { |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3431 | if (adapter->hw.mac.type < ixgbe_mac_X550) |
| 3432 | return 128; |
| 3433 | else if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
| 3434 | return 64; |
| 3435 | else |
| 3436 | return 512; |
| 3437 | } |
| 3438 | |
| 3439 | /** |
Jean Sacren | a897a2a | 2015-09-19 05:08:44 -0600 | [diff] [blame] | 3440 | * ixgbe_store_reta - Write the RETA table to HW |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3441 | * @adapter: device handle |
| 3442 | * |
| 3443 | * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW. |
| 3444 | */ |
Tom Barbette | 1c7cf07 | 2015-06-26 15:40:18 +0200 | [diff] [blame] | 3445 | void ixgbe_store_reta(struct ixgbe_adapter *adapter) |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3446 | { |
| 3447 | u32 i, reta_entries = ixgbe_rss_indir_tbl_entries(adapter); |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 3448 | struct ixgbe_hw *hw = &adapter->hw; |
Don Skidmore | d1b849b | 2014-11-09 06:42:57 +0000 | [diff] [blame] | 3449 | u32 reta = 0; |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3450 | u32 indices_multi; |
| 3451 | u8 *indir_tbl = adapter->rss_indir_tbl; |
John Fastabend | 86b4db3 | 2011-04-26 07:26:19 +0000 | [diff] [blame] | 3452 | |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3453 | /* Fill out the redirection table as follows: |
| 3454 | * - 82598: 8 bit wide entries containing pair of 4 bit RSS |
| 3455 | * indices. |
| 3456 | * - 82599/X540: 8 bit wide entries containing 4 bit RSS index |
| 3457 | * - X550: 8 bit wide entries containing 6 bit RSS index |
| 3458 | */ |
| 3459 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) |
| 3460 | indices_multi = 0x11; |
| 3461 | else |
| 3462 | indices_multi = 0x1; |
| 3463 | |
| 3464 | /* Write redirection table to HW */ |
| 3465 | for (i = 0; i < reta_entries; i++) { |
| 3466 | reta |= indices_multi * indir_tbl[i] << (i & 0x3) * 8; |
| 3467 | if ((i & 3) == 3) { |
| 3468 | if (i < 128) |
| 3469 | IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta); |
| 3470 | else |
| 3471 | IXGBE_WRITE_REG(hw, IXGBE_ERETA((i >> 2) - 32), |
| 3472 | reta); |
| 3473 | reta = 0; |
| 3474 | } |
| 3475 | } |
| 3476 | } |
| 3477 | |
| 3478 | /** |
Jean Sacren | a897a2a | 2015-09-19 05:08:44 -0600 | [diff] [blame] | 3479 | * ixgbe_store_vfreta - Write the RETA table to HW (x550 devices in SRIOV mode) |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3480 | * @adapter: device handle |
| 3481 | * |
| 3482 | * Write the RSS redirection table stored in adapter.rss_indir_tbl[] to HW. |
| 3483 | */ |
| 3484 | static void ixgbe_store_vfreta(struct ixgbe_adapter *adapter) |
| 3485 | { |
| 3486 | u32 i, reta_entries = ixgbe_rss_indir_tbl_entries(adapter); |
| 3487 | struct ixgbe_hw *hw = &adapter->hw; |
| 3488 | u32 vfreta = 0; |
| 3489 | unsigned int pf_pool = adapter->num_vfs; |
| 3490 | |
| 3491 | /* Write redirection table to HW */ |
| 3492 | for (i = 0; i < reta_entries; i++) { |
| 3493 | vfreta |= (u32)adapter->rss_indir_tbl[i] << (i & 0x3) * 8; |
| 3494 | if ((i & 3) == 3) { |
| 3495 | IXGBE_WRITE_REG(hw, IXGBE_PFVFRETA(i >> 2, pf_pool), |
| 3496 | vfreta); |
| 3497 | vfreta = 0; |
| 3498 | } |
| 3499 | } |
| 3500 | } |
| 3501 | |
| 3502 | static void ixgbe_setup_reta(struct ixgbe_adapter *adapter) |
| 3503 | { |
| 3504 | struct ixgbe_hw *hw = &adapter->hw; |
| 3505 | u32 i, j; |
| 3506 | u32 reta_entries = ixgbe_rss_indir_tbl_entries(adapter); |
| 3507 | u16 rss_i = adapter->ring_feature[RING_F_RSS].indices; |
| 3508 | |
Alexander Duyck | e24fcf2 | 2016-09-07 20:28:24 -0700 | [diff] [blame] | 3509 | /* Program table for at least 4 queues w/ SR-IOV so that VFs can |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3510 | * make full use of any rings they may have. We will use the |
| 3511 | * PSRTYPE register to control how many rings we use within the PF. |
| 3512 | */ |
Alexander Duyck | e24fcf2 | 2016-09-07 20:28:24 -0700 | [diff] [blame] | 3513 | if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 4)) |
| 3514 | rss_i = 4; |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 3515 | |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 3516 | /* Fill out hash function seeds */ |
| 3517 | for (i = 0; i < 10; i++) |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3518 | IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), adapter->rss_key[i]); |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3519 | |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 3520 | /* Fill out redirection table */ |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3521 | memset(adapter->rss_indir_tbl, 0, sizeof(adapter->rss_indir_tbl)); |
| 3522 | |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3523 | for (i = 0, j = 0; i < reta_entries; i++, j++) { |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3524 | if (j == rss_i) |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 3525 | j = 0; |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3526 | |
| 3527 | adapter->rss_indir_tbl[i] = j; |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3528 | } |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3529 | |
| 3530 | ixgbe_store_reta(adapter); |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3531 | } |
| 3532 | |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3533 | static void ixgbe_setup_vfreta(struct ixgbe_adapter *adapter) |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3534 | { |
| 3535 | struct ixgbe_hw *hw = &adapter->hw; |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3536 | u16 rss_i = adapter->ring_feature[RING_F_RSS].indices; |
| 3537 | unsigned int pf_pool = adapter->num_vfs; |
| 3538 | int i, j; |
| 3539 | |
| 3540 | /* Fill out hash function seeds */ |
| 3541 | for (i = 0; i < 10; i++) |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3542 | IXGBE_WRITE_REG(hw, IXGBE_PFVFRSSRK(i, pf_pool), |
| 3543 | adapter->rss_key[i]); |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3544 | |
| 3545 | /* Fill out the redirection table */ |
| 3546 | for (i = 0, j = 0; i < 64; i++, j++) { |
| 3547 | if (j == rss_i) |
| 3548 | j = 0; |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3549 | |
| 3550 | adapter->rss_indir_tbl[i] = j; |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 3551 | } |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3552 | |
| 3553 | ixgbe_store_vfreta(adapter); |
Don Skidmore | d1b849b | 2014-11-09 06:42:57 +0000 | [diff] [blame] | 3554 | } |
| 3555 | |
| 3556 | static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter) |
| 3557 | { |
| 3558 | struct ixgbe_hw *hw = &adapter->hw; |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3559 | u32 mrqc = 0, rss_field = 0, vfmrqc = 0; |
Don Skidmore | d1b849b | 2014-11-09 06:42:57 +0000 | [diff] [blame] | 3560 | u32 rxcsum; |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 3561 | |
| 3562 | /* Disable indicating checksum in descriptor, enables RSS hash */ |
| 3563 | rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM); |
| 3564 | rxcsum |= IXGBE_RXCSUM_PCSD; |
| 3565 | IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum); |
| 3566 | |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3567 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) { |
Alexander Duyck | fbe7ca7 | 2012-07-14 05:42:36 +0000 | [diff] [blame] | 3568 | if (adapter->ring_feature[RING_F_RSS].mask) |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3569 | mrqc = IXGBE_MRQC_RSSEN; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 3570 | } else { |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3571 | u8 tcs = netdev_get_num_tc(adapter->netdev); |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 3572 | |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3573 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 3574 | if (tcs > 4) |
| 3575 | mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */ |
| 3576 | else if (tcs > 1) |
| 3577 | mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */ |
Alexander Duyck | e24fcf2 | 2016-09-07 20:28:24 -0700 | [diff] [blame] | 3578 | else if (adapter->ring_feature[RING_F_VMDQ].mask == |
| 3579 | IXGBE_82599_VMDQ_4Q_MASK) |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3580 | mrqc = IXGBE_MRQC_VMDQRSS32EN; |
| 3581 | else |
| 3582 | mrqc = IXGBE_MRQC_VMDQRSS64EN; |
| 3583 | } else { |
| 3584 | if (tcs > 4) |
| 3585 | mrqc = IXGBE_MRQC_RTRSS8TCEN; |
| 3586 | else if (tcs > 1) |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 3587 | mrqc = IXGBE_MRQC_RTRSS4TCEN; |
| 3588 | else |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 3589 | mrqc = IXGBE_MRQC_RSSEN; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 3590 | } |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 3591 | } |
| 3592 | |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 3593 | /* Perform hash on these packet types */ |
Don Skidmore | d1b849b | 2014-11-09 06:42:57 +0000 | [diff] [blame] | 3594 | rss_field |= IXGBE_MRQC_RSS_FIELD_IPV4 | |
| 3595 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP | |
| 3596 | IXGBE_MRQC_RSS_FIELD_IPV6 | |
| 3597 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP; |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 3598 | |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 3599 | if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP) |
Don Skidmore | d1b849b | 2014-11-09 06:42:57 +0000 | [diff] [blame] | 3600 | rss_field |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP; |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 3601 | if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP) |
Don Skidmore | d1b849b | 2014-11-09 06:42:57 +0000 | [diff] [blame] | 3602 | rss_field |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP; |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 3603 | |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3604 | netdev_rss_key_fill(adapter->rss_key, sizeof(adapter->rss_key)); |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3605 | if ((hw->mac.type >= ixgbe_mac_X550) && |
| 3606 | (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) { |
| 3607 | unsigned int pf_pool = adapter->num_vfs; |
| 3608 | |
| 3609 | /* Enable VF RSS mode */ |
| 3610 | mrqc |= IXGBE_MRQC_MULTIPLE_RSS; |
| 3611 | IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc); |
| 3612 | |
| 3613 | /* Setup RSS through the VF registers */ |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3614 | ixgbe_setup_vfreta(adapter); |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3615 | vfmrqc = IXGBE_MRQC_RSSEN; |
| 3616 | vfmrqc |= rss_field; |
| 3617 | IXGBE_WRITE_REG(hw, IXGBE_PFVFMRQC(pf_pool), vfmrqc); |
| 3618 | } else { |
Vlad Zolotarov | dfaf891 | 2015-03-30 21:18:57 +0300 | [diff] [blame] | 3619 | ixgbe_setup_reta(adapter); |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 3620 | mrqc |= rss_field; |
| 3621 | IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc); |
| 3622 | } |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 3623 | } |
| 3624 | |
Mallikarjuna R Chilakala | 177db6f | 2008-06-18 15:32:19 -0700 | [diff] [blame] | 3625 | /** |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 3626 | * ixgbe_configure_rscctl - enable RSC for the indicated ring |
| 3627 | * @adapter: address of board private structure |
| 3628 | * @index: index of ring to set |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 3629 | **/ |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 3630 | static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter, |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3631 | struct ixgbe_ring *ring) |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 3632 | { |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 3633 | struct ixgbe_hw *hw = &adapter->hw; |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 3634 | u32 rscctrl; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 3635 | u8 reg_idx = ring->reg_idx; |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 3636 | |
Alexander Duyck | 7d637bc | 2010-11-16 19:26:56 -0800 | [diff] [blame] | 3637 | if (!ring_is_rsc_enabled(ring)) |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3638 | return; |
| 3639 | |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3640 | rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx)); |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 3641 | rscctrl |= IXGBE_RSCCTL_RSCEN; |
| 3642 | /* |
| 3643 | * we must limit the number of descriptors so that the |
| 3644 | * total size of max desc * buf_len is not greater |
Alexander Duyck | 642c680 | 2011-11-10 09:09:17 +0000 | [diff] [blame] | 3645 | * than 65536 |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 3646 | */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 3647 | rscctrl |= IXGBE_RSCCTL_MAXDESC_16; |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3648 | IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl); |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 3649 | } |
| 3650 | |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3651 | #define IXGBE_MAX_RX_DESC_POLL 10 |
| 3652 | static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter, |
| 3653 | struct ixgbe_ring *ring) |
| 3654 | { |
| 3655 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3656 | int wait_loop = IXGBE_MAX_RX_DESC_POLL; |
| 3657 | u32 rxdctl; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 3658 | u8 reg_idx = ring->reg_idx; |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3659 | |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 3660 | if (ixgbe_removed(hw->hw_addr)) |
| 3661 | return; |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3662 | /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */ |
| 3663 | if (hw->mac.type == ixgbe_mac_82598EB && |
| 3664 | !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP)) |
| 3665 | return; |
| 3666 | |
| 3667 | do { |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 3668 | usleep_range(1000, 2000); |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3669 | rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx)); |
| 3670 | } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE)); |
| 3671 | |
| 3672 | if (!wait_loop) { |
| 3673 | e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within " |
| 3674 | "the polling period\n", reg_idx); |
| 3675 | } |
| 3676 | } |
| 3677 | |
Yi Zou | 2d39d57 | 2011-01-06 14:29:56 +0000 | [diff] [blame] | 3678 | void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter, |
| 3679 | struct ixgbe_ring *ring) |
| 3680 | { |
| 3681 | struct ixgbe_hw *hw = &adapter->hw; |
| 3682 | int wait_loop = IXGBE_MAX_RX_DESC_POLL; |
| 3683 | u32 rxdctl; |
| 3684 | u8 reg_idx = ring->reg_idx; |
| 3685 | |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 3686 | if (ixgbe_removed(hw->hw_addr)) |
| 3687 | return; |
Yi Zou | 2d39d57 | 2011-01-06 14:29:56 +0000 | [diff] [blame] | 3688 | rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx)); |
| 3689 | rxdctl &= ~IXGBE_RXDCTL_ENABLE; |
| 3690 | |
| 3691 | /* write value back with RXDCTL.ENABLE bit cleared */ |
| 3692 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl); |
| 3693 | |
| 3694 | if (hw->mac.type == ixgbe_mac_82598EB && |
| 3695 | !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP)) |
| 3696 | return; |
| 3697 | |
| 3698 | /* the hardware may take up to 100us to really disable the rx queue */ |
| 3699 | do { |
| 3700 | udelay(10); |
| 3701 | rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx)); |
| 3702 | } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE)); |
| 3703 | |
| 3704 | if (!wait_loop) { |
| 3705 | e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within " |
| 3706 | "the polling period\n", reg_idx); |
| 3707 | } |
| 3708 | } |
| 3709 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 3710 | void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter, |
| 3711 | struct ixgbe_ring *ring) |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3712 | { |
| 3713 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | c3630cc | 2017-01-17 08:36:28 -0800 | [diff] [blame] | 3714 | union ixgbe_adv_rx_desc *rx_desc; |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3715 | u64 rdba = ring->dma; |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3716 | u32 rxdctl; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 3717 | u8 reg_idx = ring->reg_idx; |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3718 | |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3719 | /* disable queue to avoid issues while updating state */ |
| 3720 | rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx)); |
Yi Zou | 2d39d57 | 2011-01-06 14:29:56 +0000 | [diff] [blame] | 3721 | ixgbe_disable_rx_queue(adapter, ring); |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3722 | |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3723 | IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32))); |
| 3724 | IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32)); |
| 3725 | IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx), |
| 3726 | ring->count * sizeof(union ixgbe_adv_rx_desc)); |
Neerav Parikh | 8b75451 | 2015-12-08 22:13:58 -0800 | [diff] [blame] | 3727 | /* Force flushing of IXGBE_RDLEN to prevent MDD */ |
| 3728 | IXGBE_WRITE_FLUSH(hw); |
| 3729 | |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3730 | IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0); |
| 3731 | IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0); |
Mark Rustad | 2a1a091 | 2014-01-14 18:53:15 -0800 | [diff] [blame] | 3732 | ring->tail = adapter->io_addr + IXGBE_RDT(reg_idx); |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3733 | |
| 3734 | ixgbe_configure_srrctl(adapter, ring); |
| 3735 | ixgbe_configure_rscctl(adapter, ring); |
| 3736 | |
| 3737 | if (hw->mac.type == ixgbe_mac_82598EB) { |
| 3738 | /* |
| 3739 | * enable cache line friendly hardware writes: |
| 3740 | * PTHRESH=32 descriptors (half the internal cache), |
| 3741 | * this also removes ugly rx_no_buffer_count increment |
| 3742 | * HTHRESH=4 descriptors (to minimize latency on fetch) |
| 3743 | * WTHRESH=8 burst writeback up to two cache lines |
| 3744 | */ |
| 3745 | rxdctl &= ~0x3FFFFF; |
| 3746 | rxdctl |= 0x080420; |
| 3747 | } |
| 3748 | |
Alexander Duyck | c3630cc | 2017-01-17 08:36:28 -0800 | [diff] [blame] | 3749 | /* initialize Rx descriptor 0 */ |
| 3750 | rx_desc = IXGBE_RX_DESC(ring, 0); |
| 3751 | rx_desc->wb.upper.length = 0; |
| 3752 | |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3753 | /* enable receive descriptor ring */ |
| 3754 | rxdctl |= IXGBE_RXDCTL_ENABLE; |
| 3755 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl); |
| 3756 | |
| 3757 | ixgbe_rx_desc_queue_enable(adapter, ring); |
Alexander Duyck | 7d4987d | 2011-05-27 05:31:37 +0000 | [diff] [blame] | 3758 | ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring)); |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3759 | } |
| 3760 | |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3761 | static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter) |
| 3762 | { |
| 3763 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | fbe7ca7 | 2012-07-14 05:42:36 +0000 | [diff] [blame] | 3764 | int rss_i = adapter->ring_feature[RING_F_RSS].indices; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 3765 | u16 pool; |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3766 | |
| 3767 | /* PSRTYPE must be initialized in non 82598 adapters */ |
| 3768 | u32 psrtype = IXGBE_PSRTYPE_TCPHDR | |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 3769 | IXGBE_PSRTYPE_UDPHDR | |
| 3770 | IXGBE_PSRTYPE_IPV4HDR | |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3771 | IXGBE_PSRTYPE_L2HDR | |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 3772 | IXGBE_PSRTYPE_IPV6HDR; |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3773 | |
| 3774 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3775 | return; |
| 3776 | |
Alexander Duyck | fbe7ca7 | 2012-07-14 05:42:36 +0000 | [diff] [blame] | 3777 | if (rss_i > 3) |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 3778 | psrtype |= 2u << 29; |
Alexander Duyck | fbe7ca7 | 2012-07-14 05:42:36 +0000 | [diff] [blame] | 3779 | else if (rss_i > 1) |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 3780 | psrtype |= 1u << 29; |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3781 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 3782 | for_each_set_bit(pool, &adapter->fwd_bitmask, 32) |
| 3783 | IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype); |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3784 | } |
| 3785 | |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3786 | static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter) |
| 3787 | { |
| 3788 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3789 | u32 reg_offset, vf_shift; |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3790 | u32 gcr_ext, vmdctl; |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 3791 | int i; |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3792 | |
| 3793 | if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) |
| 3794 | return; |
| 3795 | |
| 3796 | vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL); |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3797 | vmdctl |= IXGBE_VMD_CTL_VMDQ_EN; |
| 3798 | vmdctl &= ~IXGBE_VT_CTL_POOL_MASK; |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3799 | vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT; |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3800 | vmdctl |= IXGBE_VT_CTL_REPLEN; |
| 3801 | IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl); |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3802 | |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3803 | vf_shift = VMDQ_P(0) % 32; |
| 3804 | reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0; |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3805 | |
| 3806 | /* Enable only the PF's pool for Tx/Rx */ |
Emil Tantilov | 11f2b49 | 2016-05-04 15:01:27 -0700 | [diff] [blame] | 3807 | IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), GENMASK(31, vf_shift)); |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3808 | IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1); |
Emil Tantilov | 11f2b49 | 2016-05-04 15:01:27 -0700 | [diff] [blame] | 3809 | IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), GENMASK(31, vf_shift)); |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3810 | IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1); |
Don Skidmore | aa2bacb | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 3811 | if (adapter->bridge_mode == BRIDGE_MODE_VEB) |
Greg Rose | 9b73598 | 2012-11-08 02:41:35 +0000 | [diff] [blame] | 3812 | IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN); |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3813 | |
| 3814 | /* Map PF MAC address in RAR Entry 0 to first pool following VFs */ |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3815 | hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0)); |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3816 | |
Alexander Duyck | 1636956 | 2015-11-02 17:10:13 -0800 | [diff] [blame] | 3817 | /* clear VLAN promisc flag so VFTA will be updated if necessary */ |
| 3818 | adapter->flags2 &= ~IXGBE_FLAG2_VLAN_PROMISC; |
| 3819 | |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3820 | /* |
| 3821 | * Set up VF register offsets for selected VT Mode, |
| 3822 | * i.e. 32 or 64 VFs for SR-IOV |
| 3823 | */ |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 3824 | switch (adapter->ring_feature[RING_F_VMDQ].mask) { |
| 3825 | case IXGBE_82599_VMDQ_8Q_MASK: |
| 3826 | gcr_ext = IXGBE_GCR_EXT_VT_MODE_16; |
| 3827 | break; |
| 3828 | case IXGBE_82599_VMDQ_4Q_MASK: |
| 3829 | gcr_ext = IXGBE_GCR_EXT_VT_MODE_32; |
| 3830 | break; |
| 3831 | default: |
| 3832 | gcr_ext = IXGBE_GCR_EXT_VT_MODE_64; |
| 3833 | break; |
| 3834 | } |
| 3835 | |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3836 | IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext); |
| 3837 | |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 3838 | for (i = 0; i < adapter->num_vfs; i++) { |
Emil Tantilov | 77f192a | 2016-03-18 16:11:14 -0700 | [diff] [blame] | 3839 | /* configure spoof checking */ |
| 3840 | ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, |
| 3841 | adapter->vfinfo[i].spoofchk_enabled); |
Vlad Zolotarov | e65ce0d | 2015-03-30 21:35:24 +0300 | [diff] [blame] | 3842 | |
| 3843 | /* Enable/Disable RSS query feature */ |
| 3844 | ixgbe_ndo_set_vf_rss_query_en(adapter->netdev, i, |
| 3845 | adapter->vfinfo[i].rss_query_enabled); |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 3846 | } |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3847 | } |
| 3848 | |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3849 | static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3850 | { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3851 | struct ixgbe_hw *hw = &adapter->hw; |
| 3852 | struct net_device *netdev = adapter->netdev; |
| 3853 | int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN; |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3854 | struct ixgbe_ring *rx_ring; |
| 3855 | int i; |
| 3856 | u32 mhadd, hlreg0; |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3857 | |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3858 | #ifdef IXGBE_FCOE |
| 3859 | /* adjust max frame to be able to do baby jumbo for FCoE */ |
| 3860 | if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) && |
| 3861 | (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE)) |
| 3862 | max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE; |
| 3863 | |
| 3864 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame] | 3865 | |
| 3866 | /* adjust max frame to be at least the size of a standard frame */ |
| 3867 | if (max_frame < (ETH_FRAME_LEN + ETH_FCS_LEN)) |
| 3868 | max_frame = (ETH_FRAME_LEN + ETH_FCS_LEN); |
| 3869 | |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3870 | mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD); |
| 3871 | if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) { |
| 3872 | mhadd &= ~IXGBE_MHADD_MFS_MASK; |
| 3873 | mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT; |
| 3874 | |
| 3875 | IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3876 | } |
| 3877 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3878 | hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0); |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3879 | /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */ |
| 3880 | hlreg0 |= IXGBE_HLREG0_JUMBOEN; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3881 | IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0); |
| 3882 | |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 3883 | /* |
| 3884 | * Setup the HW Rx Head and Tail Descriptor Pointers and |
| 3885 | * the Base and Length of the Rx Descriptor Ring |
| 3886 | */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3887 | for (i = 0; i < adapter->num_rx_queues; i++) { |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 3888 | rx_ring = adapter->rx_ring[i]; |
Alexander Duyck | 4f4542b | 2017-01-17 08:36:14 -0800 | [diff] [blame] | 3889 | |
| 3890 | clear_ring_rsc_enabled(rx_ring); |
| 3891 | clear_bit(__IXGBE_RX_3K_BUFFER, &rx_ring->state); |
| 3892 | |
Alexander Duyck | 7d637bc | 2010-11-16 19:26:56 -0800 | [diff] [blame] | 3893 | if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) |
| 3894 | set_ring_rsc_enabled(rx_ring); |
Alexander Duyck | 4f4542b | 2017-01-17 08:36:14 -0800 | [diff] [blame] | 3895 | |
| 3896 | if (test_bit(__IXGBE_RX_FCOE, &rx_ring->state)) |
| 3897 | set_bit(__IXGBE_RX_3K_BUFFER, &rx_ring->state); |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3898 | } |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3899 | } |
| 3900 | |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3901 | static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter) |
| 3902 | { |
| 3903 | struct ixgbe_hw *hw = &adapter->hw; |
| 3904 | u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL); |
| 3905 | |
| 3906 | switch (hw->mac.type) { |
| 3907 | case ixgbe_mac_82598EB: |
| 3908 | /* |
| 3909 | * For VMDq support of different descriptor types or |
| 3910 | * buffer sizes through the use of multiple SRRCTL |
| 3911 | * registers, RDRXCTL.MVMEN must be set to 1 |
| 3912 | * |
| 3913 | * also, the manual doesn't mention it clearly but DCA hints |
| 3914 | * will only use queue 0's tags unless this bit is set. Side |
| 3915 | * effects of setting this bit are only that SRRCTL must be |
| 3916 | * fully programmed [0..15] |
| 3917 | */ |
| 3918 | rdrxctl |= IXGBE_RDRXCTL_MVMEN; |
| 3919 | break; |
Mark Rustad | 052a1a7 | 2015-08-08 16:19:04 -0700 | [diff] [blame] | 3920 | case ixgbe_mac_X550: |
| 3921 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 3922 | case ixgbe_mac_x550em_a: |
Mark Rustad | f961dda | 2015-08-08 16:19:09 -0700 | [diff] [blame] | 3923 | if (adapter->num_vfs) |
| 3924 | rdrxctl |= IXGBE_RDRXCTL_PSP; |
| 3925 | /* fall through for older HW */ |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3926 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 3927 | case ixgbe_mac_X540: |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3928 | /* Disable RSC for ACK packets */ |
| 3929 | IXGBE_WRITE_REG(hw, IXGBE_RSCDBU, |
| 3930 | (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU))); |
| 3931 | rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE; |
| 3932 | /* hardware requires some bits to be set by default */ |
| 3933 | rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX); |
| 3934 | rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP; |
| 3935 | break; |
| 3936 | default: |
| 3937 | /* We should do nothing since we don't know this hardware */ |
| 3938 | return; |
| 3939 | } |
| 3940 | |
| 3941 | IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl); |
| 3942 | } |
| 3943 | |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3944 | /** |
| 3945 | * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset |
| 3946 | * @adapter: board private structure |
| 3947 | * |
| 3948 | * Configure the Rx unit of the MAC after a reset. |
| 3949 | **/ |
| 3950 | static void ixgbe_configure_rx(struct ixgbe_adapter *adapter) |
| 3951 | { |
| 3952 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3953 | int i; |
Jacob Keller | 6dcc28b | 2013-07-17 02:53:23 +0000 | [diff] [blame] | 3954 | u32 rxctrl, rfctl; |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3955 | |
| 3956 | /* disable receives while setting up the descriptors */ |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 3957 | hw->mac.ops.disable_rx(hw); |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3958 | |
| 3959 | ixgbe_setup_psrtype(adapter); |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3960 | ixgbe_setup_rdrxctl(adapter); |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3961 | |
Jacob Keller | 6dcc28b | 2013-07-17 02:53:23 +0000 | [diff] [blame] | 3962 | /* RSC Setup */ |
| 3963 | rfctl = IXGBE_READ_REG(hw, IXGBE_RFCTL); |
| 3964 | rfctl &= ~IXGBE_RFCTL_RSC_DIS; |
| 3965 | if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) |
| 3966 | rfctl |= IXGBE_RFCTL_RSC_DIS; |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 3967 | |
| 3968 | /* disable NFS filtering */ |
| 3969 | rfctl |= (IXGBE_RFCTL_NFSW_DIS | IXGBE_RFCTL_NFSR_DIS); |
Jacob Keller | 6dcc28b | 2013-07-17 02:53:23 +0000 | [diff] [blame] | 3970 | IXGBE_WRITE_REG(hw, IXGBE_RFCTL, rfctl); |
| 3971 | |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3972 | /* Program registers for the distribution of queues */ |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3973 | ixgbe_setup_mrqc(adapter); |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3974 | |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3975 | /* set_rx_buffer_len must be called before ring initialization */ |
| 3976 | ixgbe_set_rx_buffer_len(adapter); |
| 3977 | |
| 3978 | /* |
| 3979 | * Setup the HW Rx Head and Tail Descriptor Pointers and |
| 3980 | * the Base and Length of the Rx Descriptor Ring |
| 3981 | */ |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3982 | for (i = 0; i < adapter->num_rx_queues; i++) |
| 3983 | ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]); |
Mallikarjuna R Chilakala | 177db6f | 2008-06-18 15:32:19 -0700 | [diff] [blame] | 3984 | |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 3985 | rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL); |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3986 | /* disable drop enable for 82598 parts */ |
| 3987 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3988 | rxctrl |= IXGBE_RXCTRL_DMBYPS; |
| 3989 | |
| 3990 | /* enable all receives */ |
| 3991 | rxctrl |= IXGBE_RXCTRL_RXEN; |
| 3992 | hw->mac.ops.enable_rx_dma(hw, rxctrl); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3993 | } |
| 3994 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 3995 | static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, |
| 3996 | __be16 proto, u16 vid) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3997 | { |
| 3998 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 3999 | struct ixgbe_hw *hw = &adapter->hw; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4000 | |
| 4001 | /* add VID to filter table */ |
Alexander Duyck | 18be4fc | 2016-01-06 22:48:44 -0800 | [diff] [blame] | 4002 | if (!vid || !(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC)) |
| 4003 | hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true, !!vid); |
| 4004 | |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4005 | set_bit(vid, adapter->active_vlans); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 4006 | |
| 4007 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4008 | } |
| 4009 | |
Alexander Duyck | e1d0a2a | 2015-11-02 17:10:19 -0800 | [diff] [blame] | 4010 | static int ixgbe_find_vlvf_entry(struct ixgbe_hw *hw, u32 vlan) |
| 4011 | { |
| 4012 | u32 vlvf; |
| 4013 | int idx; |
| 4014 | |
| 4015 | /* short cut the special case */ |
| 4016 | if (vlan == 0) |
| 4017 | return 0; |
| 4018 | |
| 4019 | /* Search for the vlan id in the VLVF entries */ |
| 4020 | for (idx = IXGBE_VLVF_ENTRIES; --idx;) { |
| 4021 | vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(idx)); |
| 4022 | if ((vlvf & VLAN_VID_MASK) == vlan) |
| 4023 | break; |
| 4024 | } |
| 4025 | |
| 4026 | return idx; |
| 4027 | } |
| 4028 | |
| 4029 | void ixgbe_update_pf_promisc_vlvf(struct ixgbe_adapter *adapter, u32 vid) |
| 4030 | { |
| 4031 | struct ixgbe_hw *hw = &adapter->hw; |
| 4032 | u32 bits, word; |
| 4033 | int idx; |
| 4034 | |
| 4035 | idx = ixgbe_find_vlvf_entry(hw, vid); |
| 4036 | if (!idx) |
| 4037 | return; |
| 4038 | |
| 4039 | /* See if any other pools are set for this VLAN filter |
| 4040 | * entry other than the PF. |
| 4041 | */ |
| 4042 | word = idx * 2 + (VMDQ_P(0) / 32); |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 4043 | bits = ~BIT(VMDQ_P(0) % 32); |
Alexander Duyck | e1d0a2a | 2015-11-02 17:10:19 -0800 | [diff] [blame] | 4044 | bits &= IXGBE_READ_REG(hw, IXGBE_VLVFB(word)); |
| 4045 | |
| 4046 | /* Disable the filter so this falls into the default pool. */ |
| 4047 | if (!bits && !IXGBE_READ_REG(hw, IXGBE_VLVFB(word ^ 1))) { |
| 4048 | if (!(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC)) |
| 4049 | IXGBE_WRITE_REG(hw, IXGBE_VLVFB(word), 0); |
| 4050 | IXGBE_WRITE_REG(hw, IXGBE_VLVF(idx), 0); |
| 4051 | } |
| 4052 | } |
| 4053 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 4054 | static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, |
| 4055 | __be16 proto, u16 vid) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4056 | { |
| 4057 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 4058 | struct ixgbe_hw *hw = &adapter->hw; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4059 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4060 | /* remove VID from filter table */ |
Alexander Duyck | 18be4fc | 2016-01-06 22:48:44 -0800 | [diff] [blame] | 4061 | if (vid && !(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC)) |
Alexander Duyck | e1d0a2a | 2015-11-02 17:10:19 -0800 | [diff] [blame] | 4062 | hw->mac.ops.set_vfta(hw, vid, VMDQ_P(0), false, true); |
| 4063 | |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4064 | clear_bit(vid, adapter->active_vlans); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 4065 | |
| 4066 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4067 | } |
| 4068 | |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4069 | /** |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4070 | * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping |
| 4071 | * @adapter: driver data |
| 4072 | */ |
| 4073 | static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter) |
| 4074 | { |
| 4075 | struct ixgbe_hw *hw = &adapter->hw; |
| 4076 | u32 vlnctrl; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4077 | int i, j; |
| 4078 | |
| 4079 | switch (hw->mac.type) { |
| 4080 | case ixgbe_mac_82598EB: |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4081 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 4082 | vlnctrl &= ~IXGBE_VLNCTRL_VME; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4083 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
| 4084 | break; |
| 4085 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 4086 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 4087 | case ixgbe_mac_X550: |
| 4088 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 4089 | case ixgbe_mac_x550em_a: |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4090 | for (i = 0; i < adapter->num_rx_queues; i++) { |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4091 | struct ixgbe_ring *ring = adapter->rx_ring[i]; |
| 4092 | |
| 4093 | if (ring->l2_accel_priv) |
| 4094 | continue; |
| 4095 | j = ring->reg_idx; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4096 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j)); |
| 4097 | vlnctrl &= ~IXGBE_RXDCTL_VME; |
| 4098 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl); |
| 4099 | } |
| 4100 | break; |
| 4101 | default: |
| 4102 | break; |
| 4103 | } |
| 4104 | } |
| 4105 | |
| 4106 | /** |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4107 | * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4108 | * @adapter: driver data |
| 4109 | */ |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4110 | static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter) |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4111 | { |
| 4112 | struct ixgbe_hw *hw = &adapter->hw; |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4113 | u32 vlnctrl; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4114 | int i, j; |
| 4115 | |
| 4116 | switch (hw->mac.type) { |
| 4117 | case ixgbe_mac_82598EB: |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4118 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 4119 | vlnctrl |= IXGBE_VLNCTRL_VME; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4120 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
| 4121 | break; |
| 4122 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 4123 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 4124 | case ixgbe_mac_X550: |
| 4125 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 4126 | case ixgbe_mac_x550em_a: |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4127 | for (i = 0; i < adapter->num_rx_queues; i++) { |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4128 | struct ixgbe_ring *ring = adapter->rx_ring[i]; |
| 4129 | |
| 4130 | if (ring->l2_accel_priv) |
| 4131 | continue; |
| 4132 | j = ring->reg_idx; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 4133 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j)); |
| 4134 | vlnctrl |= IXGBE_RXDCTL_VME; |
| 4135 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl); |
| 4136 | } |
| 4137 | break; |
| 4138 | default: |
| 4139 | break; |
| 4140 | } |
| 4141 | } |
| 4142 | |
Alexander Duyck | 1636956 | 2015-11-02 17:10:13 -0800 | [diff] [blame] | 4143 | static void ixgbe_vlan_promisc_enable(struct ixgbe_adapter *adapter) |
| 4144 | { |
| 4145 | struct ixgbe_hw *hw = &adapter->hw; |
| 4146 | u32 vlnctrl, i; |
| 4147 | |
Alexander Duyck | f60439b | 2016-08-11 14:51:56 -0700 | [diff] [blame] | 4148 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 4149 | |
Emil Tantilov | 691e412 | 2016-08-22 16:17:46 -0700 | [diff] [blame] | 4150 | if (adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) { |
| 4151 | /* For VMDq and SR-IOV we must leave VLAN filtering enabled */ |
| 4152 | vlnctrl |= IXGBE_VLNCTRL_VFE; |
| 4153 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
| 4154 | } else { |
Alexander Duyck | f60439b | 2016-08-11 14:51:56 -0700 | [diff] [blame] | 4155 | vlnctrl &= ~IXGBE_VLNCTRL_VFE; |
Alexander Duyck | 1636956 | 2015-11-02 17:10:13 -0800 | [diff] [blame] | 4156 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
| 4157 | return; |
| 4158 | } |
| 4159 | |
Emil Tantilov | 691e412 | 2016-08-22 16:17:46 -0700 | [diff] [blame] | 4160 | /* Nothing to do for 82598 */ |
| 4161 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 4162 | return; |
| 4163 | |
Alexander Duyck | 1636956 | 2015-11-02 17:10:13 -0800 | [diff] [blame] | 4164 | /* We are already in VLAN promisc, nothing to do */ |
| 4165 | if (adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC) |
| 4166 | return; |
| 4167 | |
| 4168 | /* Set flag so we don't redo unnecessary work */ |
| 4169 | adapter->flags2 |= IXGBE_FLAG2_VLAN_PROMISC; |
| 4170 | |
| 4171 | /* Add PF to all active pools */ |
| 4172 | for (i = IXGBE_VLVF_ENTRIES; --i;) { |
| 4173 | u32 reg_offset = IXGBE_VLVFB(i * 2 + VMDQ_P(0) / 32); |
| 4174 | u32 vlvfb = IXGBE_READ_REG(hw, reg_offset); |
| 4175 | |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 4176 | vlvfb |= BIT(VMDQ_P(0) % 32); |
Alexander Duyck | 1636956 | 2015-11-02 17:10:13 -0800 | [diff] [blame] | 4177 | IXGBE_WRITE_REG(hw, reg_offset, vlvfb); |
| 4178 | } |
| 4179 | |
| 4180 | /* Set all bits in the VLAN filter table array */ |
| 4181 | for (i = hw->mac.vft_size; i--;) |
| 4182 | IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), ~0U); |
| 4183 | } |
| 4184 | |
| 4185 | #define VFTA_BLOCK_SIZE 8 |
| 4186 | static void ixgbe_scrub_vfta(struct ixgbe_adapter *adapter, u32 vfta_offset) |
| 4187 | { |
| 4188 | struct ixgbe_hw *hw = &adapter->hw; |
| 4189 | u32 vfta[VFTA_BLOCK_SIZE] = { 0 }; |
| 4190 | u32 vid_start = vfta_offset * 32; |
| 4191 | u32 vid_end = vid_start + (VFTA_BLOCK_SIZE * 32); |
| 4192 | u32 i, vid, word, bits; |
| 4193 | |
| 4194 | for (i = IXGBE_VLVF_ENTRIES; --i;) { |
| 4195 | u32 vlvf = IXGBE_READ_REG(hw, IXGBE_VLVF(i)); |
| 4196 | |
| 4197 | /* pull VLAN ID from VLVF */ |
| 4198 | vid = vlvf & VLAN_VID_MASK; |
| 4199 | |
| 4200 | /* only concern outselves with a certain range */ |
| 4201 | if (vid < vid_start || vid >= vid_end) |
| 4202 | continue; |
| 4203 | |
| 4204 | if (vlvf) { |
| 4205 | /* record VLAN ID in VFTA */ |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 4206 | vfta[(vid - vid_start) / 32] |= BIT(vid % 32); |
Alexander Duyck | 1636956 | 2015-11-02 17:10:13 -0800 | [diff] [blame] | 4207 | |
| 4208 | /* if PF is part of this then continue */ |
| 4209 | if (test_bit(vid, adapter->active_vlans)) |
| 4210 | continue; |
| 4211 | } |
| 4212 | |
| 4213 | /* remove PF from the pool */ |
| 4214 | word = i * 2 + VMDQ_P(0) / 32; |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 4215 | bits = ~BIT(VMDQ_P(0) % 32); |
Alexander Duyck | 1636956 | 2015-11-02 17:10:13 -0800 | [diff] [blame] | 4216 | bits &= IXGBE_READ_REG(hw, IXGBE_VLVFB(word)); |
| 4217 | IXGBE_WRITE_REG(hw, IXGBE_VLVFB(word), bits); |
| 4218 | } |
| 4219 | |
| 4220 | /* extract values from active_vlans and write back to VFTA */ |
| 4221 | for (i = VFTA_BLOCK_SIZE; i--;) { |
| 4222 | vid = (vfta_offset + i) * 32; |
| 4223 | word = vid / BITS_PER_LONG; |
| 4224 | bits = vid % BITS_PER_LONG; |
| 4225 | |
| 4226 | vfta[i] |= adapter->active_vlans[word] >> bits; |
| 4227 | |
| 4228 | IXGBE_WRITE_REG(hw, IXGBE_VFTA(vfta_offset + i), vfta[i]); |
| 4229 | } |
| 4230 | } |
| 4231 | |
| 4232 | static void ixgbe_vlan_promisc_disable(struct ixgbe_adapter *adapter) |
| 4233 | { |
| 4234 | struct ixgbe_hw *hw = &adapter->hw; |
| 4235 | u32 vlnctrl, i; |
| 4236 | |
Alexander Duyck | f60439b | 2016-08-11 14:51:56 -0700 | [diff] [blame] | 4237 | /* Set VLAN filtering to enabled */ |
| 4238 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 4239 | vlnctrl |= IXGBE_VLNCTRL_VFE; |
| 4240 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
| 4241 | |
Emil Tantilov | 691e412 | 2016-08-22 16:17:46 -0700 | [diff] [blame] | 4242 | if (!(adapter->flags & IXGBE_FLAG_VMDQ_ENABLED) || |
| 4243 | hw->mac.type == ixgbe_mac_82598EB) |
Alexander Duyck | 1636956 | 2015-11-02 17:10:13 -0800 | [diff] [blame] | 4244 | return; |
Alexander Duyck | 1636956 | 2015-11-02 17:10:13 -0800 | [diff] [blame] | 4245 | |
| 4246 | /* We are not in VLAN promisc, nothing to do */ |
| 4247 | if (!(adapter->flags2 & IXGBE_FLAG2_VLAN_PROMISC)) |
| 4248 | return; |
| 4249 | |
| 4250 | /* Set flag so we don't redo unnecessary work */ |
| 4251 | adapter->flags2 &= ~IXGBE_FLAG2_VLAN_PROMISC; |
| 4252 | |
| 4253 | for (i = 0; i < hw->mac.vft_size; i += VFTA_BLOCK_SIZE) |
| 4254 | ixgbe_scrub_vfta(adapter, i); |
| 4255 | } |
| 4256 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4257 | static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter) |
| 4258 | { |
Alexander Duyck | 06bb1c3 | 2016-01-06 22:48:50 -0800 | [diff] [blame] | 4259 | u16 vid = 1; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4260 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 4261 | ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), 0); |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4262 | |
Alexander Duyck | 06bb1c3 | 2016-01-06 22:48:50 -0800 | [diff] [blame] | 4263 | for_each_set_bit_from(vid, adapter->active_vlans, VLAN_N_VID) |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 4264 | ixgbe_vlan_rx_add_vid(adapter->netdev, htons(ETH_P_8021Q), vid); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4265 | } |
| 4266 | |
| 4267 | /** |
Jacob Keller | b335e75 | 2014-03-25 07:45:27 +0000 | [diff] [blame] | 4268 | * ixgbe_write_mc_addr_list - write multicast addresses to MTA |
| 4269 | * @netdev: network interface device structure |
| 4270 | * |
| 4271 | * Writes multicast address list to the MTA hash table. |
| 4272 | * Returns: -ENOMEM on failure |
| 4273 | * 0 on no addresses written |
| 4274 | * X on writing X addresses to MTA |
| 4275 | **/ |
| 4276 | static int ixgbe_write_mc_addr_list(struct net_device *netdev) |
| 4277 | { |
| 4278 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 4279 | struct ixgbe_hw *hw = &adapter->hw; |
| 4280 | |
| 4281 | if (!netif_running(netdev)) |
| 4282 | return 0; |
| 4283 | |
| 4284 | if (hw->mac.ops.update_mc_addr_list) |
| 4285 | hw->mac.ops.update_mc_addr_list(hw, netdev); |
| 4286 | else |
| 4287 | return -ENOMEM; |
| 4288 | |
| 4289 | #ifdef CONFIG_PCI_IOV |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4290 | ixgbe_restore_vf_multicasts(adapter); |
Jacob Keller | b335e75 | 2014-03-25 07:45:27 +0000 | [diff] [blame] | 4291 | #endif |
| 4292 | |
| 4293 | return netdev_mc_count(netdev); |
| 4294 | } |
| 4295 | |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4296 | #ifdef CONFIG_PCI_IOV |
| 4297 | void ixgbe_full_sync_mac_table(struct ixgbe_adapter *adapter) |
| 4298 | { |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4299 | struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0]; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4300 | struct ixgbe_hw *hw = &adapter->hw; |
| 4301 | int i; |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4302 | |
| 4303 | for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) { |
| 4304 | mac_table->state &= ~IXGBE_MAC_STATE_MODIFIED; |
| 4305 | |
| 4306 | if (mac_table->state & IXGBE_MAC_STATE_IN_USE) |
| 4307 | hw->mac.ops.set_rar(hw, i, |
| 4308 | mac_table->addr, |
| 4309 | mac_table->pool, |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4310 | IXGBE_RAH_AV); |
| 4311 | else |
| 4312 | hw->mac.ops.clear_rar(hw, i); |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4313 | } |
| 4314 | } |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4315 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4316 | #endif |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4317 | static void ixgbe_sync_mac_table(struct ixgbe_adapter *adapter) |
| 4318 | { |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4319 | struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0]; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4320 | struct ixgbe_hw *hw = &adapter->hw; |
| 4321 | int i; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4322 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4323 | for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) { |
| 4324 | if (!(mac_table->state & IXGBE_MAC_STATE_MODIFIED)) |
| 4325 | continue; |
| 4326 | |
| 4327 | mac_table->state &= ~IXGBE_MAC_STATE_MODIFIED; |
| 4328 | |
| 4329 | if (mac_table->state & IXGBE_MAC_STATE_IN_USE) |
| 4330 | hw->mac.ops.set_rar(hw, i, |
| 4331 | mac_table->addr, |
| 4332 | mac_table->pool, |
| 4333 | IXGBE_RAH_AV); |
| 4334 | else |
| 4335 | hw->mac.ops.clear_rar(hw, i); |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4336 | } |
| 4337 | } |
| 4338 | |
| 4339 | static void ixgbe_flush_sw_mac_table(struct ixgbe_adapter *adapter) |
| 4340 | { |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4341 | struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0]; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4342 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4343 | int i; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4344 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4345 | for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) { |
| 4346 | mac_table->state |= IXGBE_MAC_STATE_MODIFIED; |
| 4347 | mac_table->state &= ~IXGBE_MAC_STATE_IN_USE; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4348 | } |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4349 | |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4350 | ixgbe_sync_mac_table(adapter); |
| 4351 | } |
| 4352 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4353 | static int ixgbe_available_rars(struct ixgbe_adapter *adapter, u16 pool) |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4354 | { |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4355 | struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0]; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4356 | struct ixgbe_hw *hw = &adapter->hw; |
| 4357 | int i, count = 0; |
| 4358 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4359 | for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) { |
| 4360 | /* do not count default RAR as available */ |
| 4361 | if (mac_table->state & IXGBE_MAC_STATE_DEFAULT) |
| 4362 | continue; |
| 4363 | |
| 4364 | /* only count unused and addresses that belong to us */ |
| 4365 | if (mac_table->state & IXGBE_MAC_STATE_IN_USE) { |
| 4366 | if (mac_table->pool != pool) |
| 4367 | continue; |
| 4368 | } |
| 4369 | |
| 4370 | count++; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4371 | } |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4372 | |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4373 | return count; |
| 4374 | } |
| 4375 | |
| 4376 | /* this function destroys the first RAR entry */ |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4377 | static void ixgbe_mac_set_default_filter(struct ixgbe_adapter *adapter) |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4378 | { |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4379 | struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0]; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4380 | struct ixgbe_hw *hw = &adapter->hw; |
| 4381 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4382 | memcpy(&mac_table->addr, hw->mac.addr, ETH_ALEN); |
| 4383 | mac_table->pool = VMDQ_P(0); |
| 4384 | |
| 4385 | mac_table->state = IXGBE_MAC_STATE_DEFAULT | IXGBE_MAC_STATE_IN_USE; |
| 4386 | |
| 4387 | hw->mac.ops.set_rar(hw, 0, mac_table->addr, mac_table->pool, |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4388 | IXGBE_RAH_AV); |
| 4389 | } |
| 4390 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4391 | int ixgbe_add_mac_filter(struct ixgbe_adapter *adapter, |
| 4392 | const u8 *addr, u16 pool) |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4393 | { |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4394 | struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0]; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4395 | struct ixgbe_hw *hw = &adapter->hw; |
| 4396 | int i; |
| 4397 | |
| 4398 | if (is_zero_ether_addr(addr)) |
| 4399 | return -EINVAL; |
| 4400 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4401 | for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) { |
| 4402 | if (mac_table->state & IXGBE_MAC_STATE_IN_USE) |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4403 | continue; |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4404 | |
| 4405 | ether_addr_copy(mac_table->addr, addr); |
| 4406 | mac_table->pool = pool; |
| 4407 | |
| 4408 | mac_table->state |= IXGBE_MAC_STATE_MODIFIED | |
| 4409 | IXGBE_MAC_STATE_IN_USE; |
| 4410 | |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4411 | ixgbe_sync_mac_table(adapter); |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4412 | |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4413 | return i; |
| 4414 | } |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4415 | |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4416 | return -ENOMEM; |
| 4417 | } |
| 4418 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4419 | int ixgbe_del_mac_filter(struct ixgbe_adapter *adapter, |
| 4420 | const u8 *addr, u16 pool) |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4421 | { |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4422 | struct ixgbe_mac_addr *mac_table = &adapter->mac_table[0]; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4423 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4424 | int i; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4425 | |
| 4426 | if (is_zero_ether_addr(addr)) |
| 4427 | return -EINVAL; |
| 4428 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4429 | /* search table for addr, if found clear IN_USE flag and sync */ |
| 4430 | for (i = 0; i < hw->mac.num_rar_entries; i++, mac_table++) { |
| 4431 | /* we can only delete an entry if it is in use */ |
| 4432 | if (!(mac_table->state & IXGBE_MAC_STATE_IN_USE)) |
| 4433 | continue; |
| 4434 | /* we only care about entries that belong to the given pool */ |
| 4435 | if (mac_table->pool != pool) |
| 4436 | continue; |
| 4437 | /* we only care about a specific MAC address */ |
| 4438 | if (!ether_addr_equal(addr, mac_table->addr)) |
| 4439 | continue; |
| 4440 | |
| 4441 | mac_table->state |= IXGBE_MAC_STATE_MODIFIED; |
| 4442 | mac_table->state &= ~IXGBE_MAC_STATE_IN_USE; |
| 4443 | |
| 4444 | ixgbe_sync_mac_table(adapter); |
| 4445 | |
| 4446 | return 0; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4447 | } |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4448 | |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4449 | return -ENOMEM; |
| 4450 | } |
Jacob Keller | b335e75 | 2014-03-25 07:45:27 +0000 | [diff] [blame] | 4451 | /** |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4452 | * ixgbe_write_uc_addr_list - write unicast addresses to RAR table |
| 4453 | * @netdev: network interface device structure |
| 4454 | * |
| 4455 | * Writes unicast address list to the RAR table. |
| 4456 | * Returns: -ENOMEM on failure/insufficient address space |
| 4457 | * 0 on no addresses written |
| 4458 | * X on writing X addresses to the RAR table |
| 4459 | **/ |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4460 | static int ixgbe_write_uc_addr_list(struct net_device *netdev, int vfn) |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4461 | { |
| 4462 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4463 | int count = 0; |
| 4464 | |
| 4465 | /* return ENOMEM indicating insufficient memory for addresses */ |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 4466 | if (netdev_uc_count(netdev) > ixgbe_available_rars(adapter, vfn)) |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4467 | return -ENOMEM; |
| 4468 | |
John Fastabend | 9544746 | 2012-05-31 12:42:26 +0000 | [diff] [blame] | 4469 | if (!netdev_uc_empty(netdev)) { |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4470 | struct netdev_hw_addr *ha; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4471 | netdev_for_each_uc_addr(ha, netdev) { |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4472 | ixgbe_del_mac_filter(adapter, ha->addr, vfn); |
| 4473 | ixgbe_add_mac_filter(adapter, ha->addr, vfn); |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4474 | count++; |
| 4475 | } |
| 4476 | } |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4477 | return count; |
| 4478 | } |
| 4479 | |
Alexander Duyck | 0f079d2 | 2015-10-22 16:26:36 -0700 | [diff] [blame] | 4480 | static int ixgbe_uc_sync(struct net_device *netdev, const unsigned char *addr) |
| 4481 | { |
| 4482 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 4483 | int ret; |
| 4484 | |
| 4485 | ret = ixgbe_add_mac_filter(adapter, addr, VMDQ_P(0)); |
| 4486 | |
| 4487 | return min_t(int, ret, 0); |
| 4488 | } |
| 4489 | |
| 4490 | static int ixgbe_uc_unsync(struct net_device *netdev, const unsigned char *addr) |
| 4491 | { |
| 4492 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 4493 | |
| 4494 | ixgbe_del_mac_filter(adapter, addr, VMDQ_P(0)); |
| 4495 | |
| 4496 | return 0; |
| 4497 | } |
| 4498 | |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4499 | /** |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 4500 | * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4501 | * @netdev: network interface device structure |
| 4502 | * |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 4503 | * The set_rx_method entry point is called whenever the unicast/multicast |
| 4504 | * address list or the network interface flags are updated. This routine is |
| 4505 | * responsible for configuring the hardware for proper unicast, multicast and |
| 4506 | * promiscuous mode. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4507 | **/ |
Greg Rose | 7f87047 | 2010-01-09 02:25:29 +0000 | [diff] [blame] | 4508 | void ixgbe_set_rx_mode(struct net_device *netdev) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4509 | { |
| 4510 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 4511 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4512 | u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE; |
Alexander Duyck | 0c5a616 | 2016-03-10 10:01:10 -0800 | [diff] [blame] | 4513 | netdev_features_t features = netdev->features; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4514 | int count; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4515 | |
| 4516 | /* Check for Promiscuous and All Multicast modes */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4517 | fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 4518 | |
Alexander Duyck | f5dc442 | 2010-08-19 13:36:49 +0000 | [diff] [blame] | 4519 | /* set all bits that we expect to always be set */ |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 4520 | fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */ |
Alexander Duyck | f5dc442 | 2010-08-19 13:36:49 +0000 | [diff] [blame] | 4521 | fctrl |= IXGBE_FCTRL_BAM; |
| 4522 | fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */ |
| 4523 | fctrl |= IXGBE_FCTRL_PMCF; |
| 4524 | |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4525 | /* clear the bits we are changing the status of */ |
| 4526 | fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4527 | if (netdev->flags & IFF_PROMISC) { |
Emil Tantilov | e433ea1 | 2010-05-13 17:33:00 +0000 | [diff] [blame] | 4528 | hw->addr_ctrl.user_set_promisc = true; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4529 | fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE); |
Jacob Keller | b335e75 | 2014-03-25 07:45:27 +0000 | [diff] [blame] | 4530 | vmolr |= IXGBE_VMOLR_MPE; |
Alexander Duyck | 0c5a616 | 2016-03-10 10:01:10 -0800 | [diff] [blame] | 4531 | features &= ~NETIF_F_HW_VLAN_CTAG_FILTER; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4532 | } else { |
Patrick McHardy | 746b9f0 | 2008-07-16 20:15:45 -0700 | [diff] [blame] | 4533 | if (netdev->flags & IFF_ALLMULTI) { |
| 4534 | fctrl |= IXGBE_FCTRL_MPE; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4535 | vmolr |= IXGBE_VMOLR_MPE; |
Patrick McHardy | 746b9f0 | 2008-07-16 20:15:45 -0700 | [diff] [blame] | 4536 | } |
Emil Tantilov | e433ea1 | 2010-05-13 17:33:00 +0000 | [diff] [blame] | 4537 | hw->addr_ctrl.user_set_promisc = false; |
John Fastabend | 9dcb373 | 2012-04-15 06:44:25 +0000 | [diff] [blame] | 4538 | } |
| 4539 | |
| 4540 | /* |
| 4541 | * Write addresses to available RAR registers, if there is not |
| 4542 | * sufficient space to store all the addresses then enable |
| 4543 | * unicast promiscuous mode |
| 4544 | */ |
Alexander Duyck | 0f079d2 | 2015-10-22 16:26:36 -0700 | [diff] [blame] | 4545 | if (__dev_uc_sync(netdev, ixgbe_uc_sync, ixgbe_uc_unsync)) { |
John Fastabend | 9dcb373 | 2012-04-15 06:44:25 +0000 | [diff] [blame] | 4546 | fctrl |= IXGBE_FCTRL_UPE; |
| 4547 | vmolr |= IXGBE_VMOLR_ROPE; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4548 | } |
| 4549 | |
Emil Tantilov | cf78959 | 2013-10-26 08:13:20 +0000 | [diff] [blame] | 4550 | /* Write addresses to the MTA, if the attempt fails |
| 4551 | * then we should just turn on promiscuous mode so |
| 4552 | * that we can at least receive multicast traffic |
| 4553 | */ |
Jacob Keller | b335e75 | 2014-03-25 07:45:27 +0000 | [diff] [blame] | 4554 | count = ixgbe_write_mc_addr_list(netdev); |
| 4555 | if (count < 0) { |
| 4556 | fctrl |= IXGBE_FCTRL_MPE; |
| 4557 | vmolr |= IXGBE_VMOLR_MPE; |
| 4558 | } else if (count) { |
| 4559 | vmolr |= IXGBE_VMOLR_ROMPE; |
| 4560 | } |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 4561 | |
| 4562 | if (hw->mac.type != ixgbe_mac_82598EB) { |
| 4563 | vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) & |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 4564 | ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE | |
| 4565 | IXGBE_VMOLR_ROPE); |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 4566 | IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4567 | } |
| 4568 | |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 4569 | /* This is useful for sniffing bad packets. */ |
Alexander Duyck | 0c5a616 | 2016-03-10 10:01:10 -0800 | [diff] [blame] | 4570 | if (features & NETIF_F_RXALL) { |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 4571 | /* UPE and MPE will be handled by normal PROMISC logic |
| 4572 | * in e1000e_set_rx_mode */ |
| 4573 | fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */ |
| 4574 | IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */ |
| 4575 | IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */ |
| 4576 | |
| 4577 | fctrl &= ~(IXGBE_FCTRL_DPF); |
| 4578 | /* NOTE: VLAN filtering is disabled by setting PROMISC */ |
| 4579 | } |
| 4580 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4581 | IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl); |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4582 | |
Alexander Duyck | 0c5a616 | 2016-03-10 10:01:10 -0800 | [diff] [blame] | 4583 | if (features & NETIF_F_HW_VLAN_CTAG_RX) |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 4584 | ixgbe_vlan_strip_enable(adapter); |
| 4585 | else |
| 4586 | ixgbe_vlan_strip_disable(adapter); |
Alexander Duyck | 0c5a616 | 2016-03-10 10:01:10 -0800 | [diff] [blame] | 4587 | |
| 4588 | if (features & NETIF_F_HW_VLAN_CTAG_FILTER) |
| 4589 | ixgbe_vlan_promisc_disable(adapter); |
| 4590 | else |
| 4591 | ixgbe_vlan_promisc_enable(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4592 | } |
| 4593 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4594 | static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter) |
| 4595 | { |
| 4596 | int q_idx; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4597 | |
Eric Dumazet | 3ffc1af | 2017-02-02 16:26:39 -0800 | [diff] [blame] | 4598 | for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 4599 | napi_enable(&adapter->q_vector[q_idx]->napi); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4600 | } |
| 4601 | |
| 4602 | static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter) |
| 4603 | { |
| 4604 | int q_idx; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4605 | |
Eric Dumazet | 3ffc1af | 2017-02-02 16:26:39 -0800 | [diff] [blame] | 4606 | for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 4607 | napi_disable(&adapter->q_vector[q_idx]->napi); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4608 | } |
| 4609 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 4610 | static void ixgbe_clear_udp_tunnel_port(struct ixgbe_adapter *adapter, u32 mask) |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 4611 | { |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 4612 | struct ixgbe_hw *hw = &adapter->hw; |
| 4613 | u32 vxlanctrl; |
| 4614 | |
| 4615 | if (!(adapter->flags & (IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE | |
| 4616 | IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE))) |
| 4617 | return; |
| 4618 | |
| 4619 | vxlanctrl = IXGBE_READ_REG(hw, IXGBE_VXLANCTRL) && ~mask; |
| 4620 | IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, vxlanctrl); |
| 4621 | |
| 4622 | if (mask & IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK) |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 4623 | adapter->vxlan_port = 0; |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 4624 | |
| 4625 | if (mask & IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK) |
| 4626 | adapter->geneve_port = 0; |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 4627 | } |
| 4628 | |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 4629 | #ifdef CONFIG_IXGBE_DCB |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 4630 | /** |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4631 | * ixgbe_configure_dcb - Configure DCB hardware |
| 4632 | * @adapter: ixgbe adapter struct |
| 4633 | * |
| 4634 | * This is called by the driver on open to configure the DCB hardware. |
| 4635 | * This is also called by the gennetlink interface when reconfiguring |
| 4636 | * the DCB state. |
| 4637 | */ |
| 4638 | static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter) |
| 4639 | { |
| 4640 | struct ixgbe_hw *hw = &adapter->hw; |
John Fastabend | 9806307a | 2010-10-28 00:59:57 +0000 | [diff] [blame] | 4641 | int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4642 | |
Alexander Duyck | 67ebd79 | 2010-08-19 13:34:04 +0000 | [diff] [blame] | 4643 | if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) { |
| 4644 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 4645 | netif_set_gso_max_size(adapter->netdev, 65536); |
| 4646 | return; |
| 4647 | } |
| 4648 | |
| 4649 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 4650 | netif_set_gso_max_size(adapter->netdev, 32768); |
| 4651 | |
John Fastabend | b120818 | 2011-10-15 05:00:10 +0000 | [diff] [blame] | 4652 | #ifdef IXGBE_FCOE |
| 4653 | if (adapter->netdev->features & NETIF_F_FCOE_MTU) |
| 4654 | max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE); |
| 4655 | #endif |
| 4656 | |
Alexander Duyck | 01fa7d9 | 2010-11-16 19:26:53 -0800 | [diff] [blame] | 4657 | /* reconfigure the hardware */ |
John Fastabend | 6f70f6a | 2011-04-26 07:26:25 +0000 | [diff] [blame] | 4658 | if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) { |
John Fastabend | c27931d | 2011-02-23 05:58:25 +0000 | [diff] [blame] | 4659 | ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame, |
| 4660 | DCB_TX_CONFIG); |
| 4661 | ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame, |
| 4662 | DCB_RX_CONFIG); |
| 4663 | ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg); |
John Fastabend | b120818 | 2011-10-15 05:00:10 +0000 | [diff] [blame] | 4664 | } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) { |
| 4665 | ixgbe_dcb_hw_ets(&adapter->hw, |
| 4666 | adapter->ixgbe_ieee_ets, |
| 4667 | max_frame); |
| 4668 | ixgbe_dcb_hw_pfc_config(&adapter->hw, |
| 4669 | adapter->ixgbe_ieee_pfc->pfc_en, |
| 4670 | adapter->ixgbe_ieee_ets->prio_tc); |
John Fastabend | c27931d | 2011-02-23 05:58:25 +0000 | [diff] [blame] | 4671 | } |
John Fastabend | 8187cd4 | 2011-02-23 05:58:08 +0000 | [diff] [blame] | 4672 | |
| 4673 | /* Enable RSS Hash per TC */ |
| 4674 | if (hw->mac.type != ixgbe_mac_82598EB) { |
Alexander Duyck | 4ae6373 | 2012-06-22 06:46:33 +0000 | [diff] [blame] | 4675 | u32 msb = 0; |
| 4676 | u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1; |
John Fastabend | 8187cd4 | 2011-02-23 05:58:08 +0000 | [diff] [blame] | 4677 | |
Alexander Duyck | d411a93 | 2012-06-30 00:14:01 +0000 | [diff] [blame] | 4678 | while (rss_i) { |
| 4679 | msb++; |
| 4680 | rss_i >>= 1; |
John Fastabend | 8187cd4 | 2011-02-23 05:58:08 +0000 | [diff] [blame] | 4681 | } |
Alexander Duyck | d411a93 | 2012-06-30 00:14:01 +0000 | [diff] [blame] | 4682 | |
Alexander Duyck | 4ae6373 | 2012-06-22 06:46:33 +0000 | [diff] [blame] | 4683 | /* write msb to all 8 TCs in one write */ |
| 4684 | IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111); |
John Fastabend | 8187cd4 | 2011-02-23 05:58:08 +0000 | [diff] [blame] | 4685 | } |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4686 | } |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4687 | #endif |
| 4688 | |
| 4689 | /* Additional bittime to account for IXGBE framing */ |
| 4690 | #define IXGBE_ETH_FRAMING 20 |
| 4691 | |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 4692 | /** |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4693 | * ixgbe_hpbthresh - calculate high water mark for flow control |
| 4694 | * |
| 4695 | * @adapter: board private structure to calculate for |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 4696 | * @pb: packet buffer to calculate |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4697 | */ |
| 4698 | static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb) |
| 4699 | { |
| 4700 | struct ixgbe_hw *hw = &adapter->hw; |
| 4701 | struct net_device *dev = adapter->netdev; |
| 4702 | int link, tc, kb, marker; |
| 4703 | u32 dv_id, rx_pba; |
| 4704 | |
| 4705 | /* Calculate max LAN frame size */ |
| 4706 | tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING; |
| 4707 | |
| 4708 | #ifdef IXGBE_FCOE |
| 4709 | /* FCoE traffic class uses FCOE jumbo frames */ |
Alexander Duyck | 800bd60 | 2012-06-02 00:11:02 +0000 | [diff] [blame] | 4710 | if ((dev->features & NETIF_F_FCOE_MTU) && |
| 4711 | (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) && |
| 4712 | (pb == ixgbe_fcoe_get_tc(adapter))) |
| 4713 | tc = IXGBE_FCOE_JUMBO_FRAME_SIZE; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4714 | #endif |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 4715 | |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4716 | /* Calculate delay value for device */ |
| 4717 | switch (hw->mac.type) { |
| 4718 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 4719 | case ixgbe_mac_X550: |
| 4720 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 4721 | case ixgbe_mac_x550em_a: |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4722 | dv_id = IXGBE_DV_X540(link, tc); |
| 4723 | break; |
| 4724 | default: |
| 4725 | dv_id = IXGBE_DV(link, tc); |
| 4726 | break; |
| 4727 | } |
| 4728 | |
| 4729 | /* Loopback switch introduces additional latency */ |
| 4730 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
| 4731 | dv_id += IXGBE_B2BT(tc); |
| 4732 | |
| 4733 | /* Delay value is calculated in bit times convert to KB */ |
| 4734 | kb = IXGBE_BT2KB(dv_id); |
| 4735 | rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10; |
| 4736 | |
| 4737 | marker = rx_pba - kb; |
| 4738 | |
| 4739 | /* It is possible that the packet buffer is not large enough |
| 4740 | * to provide required headroom. In this case throw an error |
| 4741 | * to user and a do the best we can. |
| 4742 | */ |
| 4743 | if (marker < 0) { |
| 4744 | e_warn(drv, "Packet Buffer(%i) can not provide enough" |
| 4745 | "headroom to support flow control." |
| 4746 | "Decrease MTU or number of traffic classes\n", pb); |
| 4747 | marker = tc + 1; |
| 4748 | } |
| 4749 | |
| 4750 | return marker; |
| 4751 | } |
| 4752 | |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 4753 | /** |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4754 | * ixgbe_lpbthresh - calculate low water mark for for flow control |
| 4755 | * |
| 4756 | * @adapter: board private structure to calculate for |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 4757 | * @pb: packet buffer to calculate |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4758 | */ |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 4759 | static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter, int pb) |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4760 | { |
| 4761 | struct ixgbe_hw *hw = &adapter->hw; |
| 4762 | struct net_device *dev = adapter->netdev; |
| 4763 | int tc; |
| 4764 | u32 dv_id; |
| 4765 | |
| 4766 | /* Calculate max LAN frame size */ |
| 4767 | tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN; |
| 4768 | |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 4769 | #ifdef IXGBE_FCOE |
| 4770 | /* FCoE traffic class uses FCOE jumbo frames */ |
| 4771 | if ((dev->features & NETIF_F_FCOE_MTU) && |
| 4772 | (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) && |
| 4773 | (pb == netdev_get_prio_tc_map(dev, adapter->fcoe.up))) |
| 4774 | tc = IXGBE_FCOE_JUMBO_FRAME_SIZE; |
| 4775 | #endif |
| 4776 | |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4777 | /* Calculate delay value for device */ |
| 4778 | switch (hw->mac.type) { |
| 4779 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 4780 | case ixgbe_mac_X550: |
| 4781 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 4782 | case ixgbe_mac_x550em_a: |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4783 | dv_id = IXGBE_LOW_DV_X540(tc); |
| 4784 | break; |
| 4785 | default: |
| 4786 | dv_id = IXGBE_LOW_DV(tc); |
| 4787 | break; |
| 4788 | } |
| 4789 | |
| 4790 | /* Delay value is calculated in bit times convert to KB */ |
| 4791 | return IXGBE_BT2KB(dv_id); |
| 4792 | } |
| 4793 | |
| 4794 | /* |
| 4795 | * ixgbe_pbthresh_setup - calculate and setup high low water marks |
| 4796 | */ |
| 4797 | static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter) |
| 4798 | { |
| 4799 | struct ixgbe_hw *hw = &adapter->hw; |
| 4800 | int num_tc = netdev_get_num_tc(adapter->netdev); |
| 4801 | int i; |
| 4802 | |
| 4803 | if (!num_tc) |
| 4804 | num_tc = 1; |
| 4805 | |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4806 | for (i = 0; i < num_tc; i++) { |
| 4807 | hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i); |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 4808 | hw->fc.low_water[i] = ixgbe_lpbthresh(adapter, i); |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4809 | |
| 4810 | /* Low water marks must not be larger than high water marks */ |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 4811 | if (hw->fc.low_water[i] > hw->fc.high_water[i]) |
| 4812 | hw->fc.low_water[i] = 0; |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4813 | } |
Jacob Keller | e577662 | 2014-04-05 02:35:52 +0000 | [diff] [blame] | 4814 | |
| 4815 | for (; i < MAX_TRAFFIC_CLASS; i++) |
| 4816 | hw->fc.high_water[i] = 0; |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4817 | } |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 4818 | |
| 4819 | static void ixgbe_configure_pb(struct ixgbe_adapter *adapter) |
| 4820 | { |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 4821 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | f7e1027 | 2011-07-21 00:40:35 +0000 | [diff] [blame] | 4822 | int hdrm; |
| 4823 | u8 tc = netdev_get_num_tc(adapter->netdev); |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 4824 | |
| 4825 | if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE || |
| 4826 | adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) |
Alexander Duyck | f7e1027 | 2011-07-21 00:40:35 +0000 | [diff] [blame] | 4827 | hdrm = 32 << adapter->fdir_pballoc; |
| 4828 | else |
| 4829 | hdrm = 0; |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 4830 | |
Alexander Duyck | f7e1027 | 2011-07-21 00:40:35 +0000 | [diff] [blame] | 4831 | hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL); |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4832 | ixgbe_pbthresh_setup(adapter); |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 4833 | } |
| 4834 | |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 4835 | static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter) |
| 4836 | { |
| 4837 | struct ixgbe_hw *hw = &adapter->hw; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 4838 | struct hlist_node *node2; |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 4839 | struct ixgbe_fdir_filter *filter; |
| 4840 | |
| 4841 | spin_lock(&adapter->fdir_perfect_lock); |
| 4842 | |
| 4843 | if (!hlist_empty(&adapter->fdir_filter_list)) |
| 4844 | ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask); |
| 4845 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 4846 | hlist_for_each_entry_safe(filter, node2, |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 4847 | &adapter->fdir_filter_list, fdir_node) { |
| 4848 | ixgbe_fdir_write_perfect_filter_82599(hw, |
Alexander Duyck | 1f4d518 | 2011-05-14 01:16:02 +0000 | [diff] [blame] | 4849 | &filter->filter, |
| 4850 | filter->sw_idx, |
| 4851 | (filter->action == IXGBE_FDIR_DROP_QUEUE) ? |
| 4852 | IXGBE_FDIR_DROP_QUEUE : |
| 4853 | adapter->rx_ring[filter->action]->reg_idx); |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 4854 | } |
| 4855 | |
| 4856 | spin_unlock(&adapter->fdir_perfect_lock); |
| 4857 | } |
| 4858 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4859 | static void ixgbe_macvlan_set_rx_mode(struct net_device *dev, unsigned int pool, |
| 4860 | struct ixgbe_adapter *adapter) |
| 4861 | { |
| 4862 | struct ixgbe_hw *hw = &adapter->hw; |
| 4863 | u32 vmolr; |
| 4864 | |
| 4865 | /* No unicast promiscuous support for VMDQ devices. */ |
| 4866 | vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(pool)); |
| 4867 | vmolr |= (IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE); |
| 4868 | |
| 4869 | /* clear the affected bit */ |
| 4870 | vmolr &= ~IXGBE_VMOLR_MPE; |
| 4871 | |
| 4872 | if (dev->flags & IFF_ALLMULTI) { |
| 4873 | vmolr |= IXGBE_VMOLR_MPE; |
| 4874 | } else { |
| 4875 | vmolr |= IXGBE_VMOLR_ROMPE; |
| 4876 | hw->mac.ops.update_mc_addr_list(hw, dev); |
| 4877 | } |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 4878 | ixgbe_write_uc_addr_list(adapter->netdev, pool); |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4879 | IXGBE_WRITE_REG(hw, IXGBE_VMOLR(pool), vmolr); |
| 4880 | } |
| 4881 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4882 | static void ixgbe_fwd_psrtype(struct ixgbe_fwd_adapter *vadapter) |
| 4883 | { |
| 4884 | struct ixgbe_adapter *adapter = vadapter->real_adapter; |
John Fastabend | 219354d | 2013-11-08 00:50:32 -0800 | [diff] [blame] | 4885 | int rss_i = adapter->num_rx_queues_per_pool; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4886 | struct ixgbe_hw *hw = &adapter->hw; |
| 4887 | u16 pool = vadapter->pool; |
| 4888 | u32 psrtype = IXGBE_PSRTYPE_TCPHDR | |
| 4889 | IXGBE_PSRTYPE_UDPHDR | |
| 4890 | IXGBE_PSRTYPE_IPV4HDR | |
| 4891 | IXGBE_PSRTYPE_L2HDR | |
| 4892 | IXGBE_PSRTYPE_IPV6HDR; |
| 4893 | |
| 4894 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 4895 | return; |
| 4896 | |
| 4897 | if (rss_i > 3) |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 4898 | psrtype |= 2u << 29; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4899 | else if (rss_i > 1) |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 4900 | psrtype |= 1u << 29; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4901 | |
| 4902 | IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(pool)), psrtype); |
| 4903 | } |
| 4904 | |
| 4905 | /** |
| 4906 | * ixgbe_clean_rx_ring - Free Rx Buffers per Queue |
| 4907 | * @rx_ring: ring to free buffers from |
| 4908 | **/ |
| 4909 | static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring) |
| 4910 | { |
| 4911 | struct device *dev = rx_ring->dev; |
| 4912 | unsigned long size; |
| 4913 | u16 i; |
| 4914 | |
| 4915 | /* ring already cleared, nothing to do */ |
| 4916 | if (!rx_ring->rx_buffer_info) |
| 4917 | return; |
| 4918 | |
| 4919 | /* Free all the Rx ring sk_buffs */ |
| 4920 | for (i = 0; i < rx_ring->count; i++) { |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 4921 | struct ixgbe_rx_buffer *rx_buffer = &rx_ring->rx_buffer_info[i]; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4922 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4923 | if (rx_buffer->skb) { |
| 4924 | struct sk_buff *skb = rx_buffer->skb; |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 4925 | if (IXGBE_CB(skb)->page_released) |
Alexander Duyck | f3213d9 | 2017-01-17 08:35:54 -0800 | [diff] [blame] | 4926 | dma_unmap_page_attrs(dev, |
| 4927 | IXGBE_CB(skb)->dma, |
| 4928 | ixgbe_rx_pg_size(rx_ring), |
| 4929 | DMA_FROM_DEVICE, |
| 4930 | IXGBE_RX_DMA_ATTR); |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4931 | dev_kfree_skb(skb); |
Junwei Zhang | 4d2fcfb | 2014-10-22 15:29:03 +0000 | [diff] [blame] | 4932 | rx_buffer->skb = NULL; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4933 | } |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 4934 | |
| 4935 | if (!rx_buffer->page) |
| 4936 | continue; |
| 4937 | |
Alexander Duyck | f3213d9 | 2017-01-17 08:35:54 -0800 | [diff] [blame] | 4938 | /* Invalidate cache lines that may have been written to by |
| 4939 | * device so that we avoid corrupting memory. |
| 4940 | */ |
| 4941 | dma_sync_single_range_for_cpu(rx_ring->dev, |
| 4942 | rx_buffer->dma, |
| 4943 | rx_buffer->page_offset, |
| 4944 | ixgbe_rx_bufsz(rx_ring), |
| 4945 | DMA_FROM_DEVICE); |
| 4946 | |
| 4947 | /* free resources associated with mapping */ |
| 4948 | dma_unmap_page_attrs(dev, rx_buffer->dma, |
| 4949 | ixgbe_rx_pg_size(rx_ring), |
| 4950 | DMA_FROM_DEVICE, |
| 4951 | IXGBE_RX_DMA_ATTR); |
Alexander Duyck | 1b56cf4 | 2017-01-17 08:36:03 -0800 | [diff] [blame] | 4952 | __page_frag_cache_drain(rx_buffer->page, |
| 4953 | rx_buffer->pagecnt_bias); |
Alexander Duyck | 18cb652 | 2014-11-14 00:56:29 +0000 | [diff] [blame] | 4954 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4955 | rx_buffer->page = NULL; |
| 4956 | } |
| 4957 | |
| 4958 | size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count; |
| 4959 | memset(rx_ring->rx_buffer_info, 0, size); |
| 4960 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4961 | rx_ring->next_to_alloc = 0; |
| 4962 | rx_ring->next_to_clean = 0; |
| 4963 | rx_ring->next_to_use = 0; |
| 4964 | } |
| 4965 | |
| 4966 | static void ixgbe_disable_fwd_ring(struct ixgbe_fwd_adapter *vadapter, |
| 4967 | struct ixgbe_ring *rx_ring) |
| 4968 | { |
| 4969 | struct ixgbe_adapter *adapter = vadapter->real_adapter; |
| 4970 | int index = rx_ring->queue_index + vadapter->rx_base_queue; |
| 4971 | |
| 4972 | /* shutdown specific queue receive and wait for dma to settle */ |
| 4973 | ixgbe_disable_rx_queue(adapter, rx_ring); |
| 4974 | usleep_range(10000, 20000); |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 4975 | ixgbe_irq_disable_queues(adapter, BIT_ULL(index)); |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4976 | ixgbe_clean_rx_ring(rx_ring); |
| 4977 | rx_ring->l2_accel_priv = NULL; |
| 4978 | } |
| 4979 | |
John Fastabend | ae72c8d | 2013-11-09 07:11:26 +0000 | [diff] [blame] | 4980 | static int ixgbe_fwd_ring_down(struct net_device *vdev, |
| 4981 | struct ixgbe_fwd_adapter *accel) |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 4982 | { |
| 4983 | struct ixgbe_adapter *adapter = accel->real_adapter; |
| 4984 | unsigned int rxbase = accel->rx_base_queue; |
| 4985 | unsigned int txbase = accel->tx_base_queue; |
| 4986 | int i; |
| 4987 | |
| 4988 | netif_tx_stop_all_queues(vdev); |
| 4989 | |
| 4990 | for (i = 0; i < adapter->num_rx_queues_per_pool; i++) { |
| 4991 | ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]); |
| 4992 | adapter->rx_ring[rxbase + i]->netdev = adapter->netdev; |
| 4993 | } |
| 4994 | |
| 4995 | for (i = 0; i < adapter->num_rx_queues_per_pool; i++) { |
| 4996 | adapter->tx_ring[txbase + i]->l2_accel_priv = NULL; |
| 4997 | adapter->tx_ring[txbase + i]->netdev = adapter->netdev; |
| 4998 | } |
| 4999 | |
| 5000 | |
| 5001 | return 0; |
| 5002 | } |
| 5003 | |
| 5004 | static int ixgbe_fwd_ring_up(struct net_device *vdev, |
| 5005 | struct ixgbe_fwd_adapter *accel) |
| 5006 | { |
| 5007 | struct ixgbe_adapter *adapter = accel->real_adapter; |
| 5008 | unsigned int rxbase, txbase, queues; |
| 5009 | int i, baseq, err = 0; |
| 5010 | |
| 5011 | if (!test_bit(accel->pool, &adapter->fwd_bitmask)) |
| 5012 | return 0; |
| 5013 | |
| 5014 | baseq = accel->pool * adapter->num_rx_queues_per_pool; |
| 5015 | netdev_dbg(vdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n", |
| 5016 | accel->pool, adapter->num_rx_pools, |
| 5017 | baseq, baseq + adapter->num_rx_queues_per_pool, |
| 5018 | adapter->fwd_bitmask); |
| 5019 | |
| 5020 | accel->netdev = vdev; |
| 5021 | accel->rx_base_queue = rxbase = baseq; |
| 5022 | accel->tx_base_queue = txbase = baseq; |
| 5023 | |
| 5024 | for (i = 0; i < adapter->num_rx_queues_per_pool; i++) |
| 5025 | ixgbe_disable_fwd_ring(accel, adapter->rx_ring[rxbase + i]); |
| 5026 | |
| 5027 | for (i = 0; i < adapter->num_rx_queues_per_pool; i++) { |
| 5028 | adapter->rx_ring[rxbase + i]->netdev = vdev; |
| 5029 | adapter->rx_ring[rxbase + i]->l2_accel_priv = accel; |
| 5030 | ixgbe_configure_rx_ring(adapter, adapter->rx_ring[rxbase + i]); |
| 5031 | } |
| 5032 | |
| 5033 | for (i = 0; i < adapter->num_rx_queues_per_pool; i++) { |
| 5034 | adapter->tx_ring[txbase + i]->netdev = vdev; |
| 5035 | adapter->tx_ring[txbase + i]->l2_accel_priv = accel; |
| 5036 | } |
| 5037 | |
| 5038 | queues = min_t(unsigned int, |
| 5039 | adapter->num_rx_queues_per_pool, vdev->num_tx_queues); |
| 5040 | err = netif_set_real_num_tx_queues(vdev, queues); |
| 5041 | if (err) |
| 5042 | goto fwd_queue_err; |
| 5043 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 5044 | err = netif_set_real_num_rx_queues(vdev, queues); |
| 5045 | if (err) |
| 5046 | goto fwd_queue_err; |
| 5047 | |
| 5048 | if (is_valid_ether_addr(vdev->dev_addr)) |
| 5049 | ixgbe_add_mac_filter(adapter, vdev->dev_addr, accel->pool); |
| 5050 | |
| 5051 | ixgbe_fwd_psrtype(accel); |
| 5052 | ixgbe_macvlan_set_rx_mode(vdev, accel->pool, adapter); |
| 5053 | return err; |
| 5054 | fwd_queue_err: |
| 5055 | ixgbe_fwd_ring_down(vdev, accel); |
| 5056 | return err; |
| 5057 | } |
| 5058 | |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 5059 | static int ixgbe_upper_dev_walk(struct net_device *upper, void *data) |
| 5060 | { |
| 5061 | if (netif_is_macvlan(upper)) { |
| 5062 | struct macvlan_dev *dfwd = netdev_priv(upper); |
| 5063 | struct ixgbe_fwd_adapter *vadapter = dfwd->fwd_priv; |
| 5064 | |
| 5065 | if (dfwd->fwd_priv) |
| 5066 | ixgbe_fwd_ring_up(upper, vadapter); |
| 5067 | } |
| 5068 | |
| 5069 | return 0; |
| 5070 | } |
| 5071 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 5072 | static void ixgbe_configure_dfwd(struct ixgbe_adapter *adapter) |
| 5073 | { |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 5074 | netdev_walk_all_upper_dev_rcu(adapter->netdev, |
| 5075 | ixgbe_upper_dev_walk, NULL); |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 5076 | } |
| 5077 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5078 | static void ixgbe_configure(struct ixgbe_adapter *adapter) |
| 5079 | { |
Atita Shirwaikar | d2f5e7f | 2012-02-18 02:58:58 +0000 | [diff] [blame] | 5080 | struct ixgbe_hw *hw = &adapter->hw; |
| 5081 | |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 5082 | ixgbe_configure_pb(adapter); |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 5083 | #ifdef CONFIG_IXGBE_DCB |
Alexander Duyck | 67ebd79 | 2010-08-19 13:34:04 +0000 | [diff] [blame] | 5084 | ixgbe_configure_dcb(adapter); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 5085 | #endif |
Alexander Duyck | b35d4d4 | 2012-05-23 05:39:25 +0000 | [diff] [blame] | 5086 | /* |
| 5087 | * We must restore virtualization before VLANs or else |
| 5088 | * the VLVF registers will not be populated |
| 5089 | */ |
| 5090 | ixgbe_configure_virtualization(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5091 | |
Alexander Duyck | 4c1d7b4 | 2011-07-21 00:40:30 +0000 | [diff] [blame] | 5092 | ixgbe_set_rx_mode(adapter->netdev); |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 5093 | ixgbe_restore_vlan(adapter); |
| 5094 | |
Atita Shirwaikar | d2f5e7f | 2012-02-18 02:58:58 +0000 | [diff] [blame] | 5095 | switch (hw->mac.type) { |
| 5096 | case ixgbe_mac_82599EB: |
| 5097 | case ixgbe_mac_X540: |
| 5098 | hw->mac.ops.disable_rx_buff(hw); |
| 5099 | break; |
| 5100 | default: |
| 5101 | break; |
| 5102 | } |
| 5103 | |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5104 | if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) { |
Alexander Duyck | 4c1d7b4 | 2011-07-21 00:40:30 +0000 | [diff] [blame] | 5105 | ixgbe_init_fdir_signature_82599(&adapter->hw, |
| 5106 | adapter->fdir_pballoc); |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 5107 | } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) { |
| 5108 | ixgbe_init_fdir_perfect_82599(&adapter->hw, |
| 5109 | adapter->fdir_pballoc); |
| 5110 | ixgbe_fdir_filter_restore(adapter); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5111 | } |
Alexander Duyck | 4c1d7b4 | 2011-07-21 00:40:30 +0000 | [diff] [blame] | 5112 | |
Atita Shirwaikar | d2f5e7f | 2012-02-18 02:58:58 +0000 | [diff] [blame] | 5113 | switch (hw->mac.type) { |
| 5114 | case ixgbe_mac_82599EB: |
| 5115 | case ixgbe_mac_X540: |
| 5116 | hw->mac.ops.enable_rx_buff(hw); |
| 5117 | break; |
| 5118 | default: |
| 5119 | break; |
| 5120 | } |
| 5121 | |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 5122 | #ifdef CONFIG_IXGBE_DCA |
| 5123 | /* configure DCA */ |
| 5124 | if (adapter->flags & IXGBE_FLAG_DCA_CAPABLE) |
| 5125 | ixgbe_setup_dca(adapter); |
| 5126 | #endif /* CONFIG_IXGBE_DCA */ |
| 5127 | |
Alexander Duyck | 7c8ae65 | 2012-05-05 05:32:47 +0000 | [diff] [blame] | 5128 | #ifdef IXGBE_FCOE |
| 5129 | /* configure FCoE L2 filters, redirection table, and Rx control */ |
| 5130 | ixgbe_configure_fcoe(adapter); |
| 5131 | |
| 5132 | #endif /* IXGBE_FCOE */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5133 | ixgbe_configure_tx(adapter); |
| 5134 | ixgbe_configure_rx(adapter); |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 5135 | ixgbe_configure_dfwd(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5136 | } |
| 5137 | |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 5138 | /** |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5139 | * ixgbe_sfp_link_config - set up SFP+ link |
| 5140 | * @adapter: pointer to private adapter struct |
| 5141 | **/ |
| 5142 | static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter) |
| 5143 | { |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5144 | /* |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 5145 | * We are assuming the worst case scenario here, and that |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5146 | * is that an SFP was inserted/removed after the reset |
| 5147 | * but before SFP detection was enabled. As such the best |
| 5148 | * solution is to just start searching as soon as we start |
| 5149 | */ |
| 5150 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) |
| 5151 | adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5152 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5153 | adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET; |
Mark Rustad | 58e7cd2 | 2015-08-08 16:18:48 -0700 | [diff] [blame] | 5154 | adapter->sfp_poll_time = 0; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5155 | } |
| 5156 | |
| 5157 | /** |
| 5158 | * ixgbe_non_sfp_link_config - set up non-SFP+ link |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 5159 | * @hw: pointer to private hardware struct |
| 5160 | * |
| 5161 | * Returns 0 on success, negative on failure |
| 5162 | **/ |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5163 | static int ixgbe_non_sfp_link_config(struct ixgbe_hw *hw) |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 5164 | { |
Josh Hay | 3d29226 | 2012-12-15 03:28:19 +0000 | [diff] [blame] | 5165 | u32 speed; |
| 5166 | bool autoneg, link_up = false; |
Mark Rustad | a1e869d | 2015-04-10 10:36:36 -0700 | [diff] [blame] | 5167 | int ret = IXGBE_ERR_LINK_SETUP; |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 5168 | |
| 5169 | if (hw->mac.ops.check_link) |
Josh Hay | 3d29226 | 2012-12-15 03:28:19 +0000 | [diff] [blame] | 5170 | ret = hw->mac.ops.check_link(hw, &speed, &link_up, false); |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 5171 | |
| 5172 | if (ret) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 5173 | return ret; |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 5174 | |
Josh Hay | 3d29226 | 2012-12-15 03:28:19 +0000 | [diff] [blame] | 5175 | speed = hw->phy.autoneg_advertised; |
| 5176 | if ((!speed) && (hw->mac.ops.get_link_capabilities)) |
| 5177 | ret = hw->mac.ops.get_link_capabilities(hw, &speed, |
| 5178 | &autoneg); |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 5179 | if (ret) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 5180 | return ret; |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 5181 | |
Mallikarjuna R Chilakala | 8620a10 | 2009-09-01 13:49:35 +0000 | [diff] [blame] | 5182 | if (hw->mac.ops.setup_link) |
Josh Hay | fd0326f | 2012-12-15 03:28:30 +0000 | [diff] [blame] | 5183 | ret = hw->mac.ops.setup_link(hw, speed, link_up); |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 5184 | |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 5185 | return ret; |
| 5186 | } |
| 5187 | |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 5188 | static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5189 | { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5190 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 5191 | u32 gpie = 0; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 5192 | |
Jesse Brandeburg | 9b47144 | 2009-12-03 11:33:54 +0000 | [diff] [blame] | 5193 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) { |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 5194 | gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT | |
| 5195 | IXGBE_GPIE_OCD; |
| 5196 | gpie |= IXGBE_GPIE_EIAME; |
Jesse Brandeburg | 9b47144 | 2009-12-03 11:33:54 +0000 | [diff] [blame] | 5197 | /* |
| 5198 | * use EIAM to auto-mask when MSI-X interrupt is asserted |
| 5199 | * this saves a register write for every interrupt |
| 5200 | */ |
| 5201 | switch (hw->mac.type) { |
| 5202 | case ixgbe_mac_82598EB: |
| 5203 | IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE); |
| 5204 | break; |
Jesse Brandeburg | 9b47144 | 2009-12-03 11:33:54 +0000 | [diff] [blame] | 5205 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 5206 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 5207 | case ixgbe_mac_X550: |
| 5208 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 5209 | case ixgbe_mac_x550em_a: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 5210 | default: |
Jesse Brandeburg | 9b47144 | 2009-12-03 11:33:54 +0000 | [diff] [blame] | 5211 | IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF); |
| 5212 | IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF); |
| 5213 | break; |
| 5214 | } |
| 5215 | } else { |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 5216 | /* legacy interrupts, use EIAM to auto-mask when reading EICR, |
| 5217 | * specifically only auto mask tx and rx interrupts */ |
| 5218 | IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5219 | } |
| 5220 | |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 5221 | /* XXX: to interrupt immediately for EICS writes, enable this */ |
| 5222 | /* gpie |= IXGBE_GPIE_EIMEN; */ |
| 5223 | |
| 5224 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 5225 | gpie &= ~IXGBE_GPIE_VTMODE_MASK; |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 5226 | |
| 5227 | switch (adapter->ring_feature[RING_F_VMDQ].mask) { |
| 5228 | case IXGBE_82599_VMDQ_8Q_MASK: |
| 5229 | gpie |= IXGBE_GPIE_VTMODE_16; |
| 5230 | break; |
| 5231 | case IXGBE_82599_VMDQ_4Q_MASK: |
| 5232 | gpie |= IXGBE_GPIE_VTMODE_32; |
| 5233 | break; |
| 5234 | default: |
| 5235 | gpie |= IXGBE_GPIE_VTMODE_64; |
| 5236 | break; |
| 5237 | } |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 5238 | } |
| 5239 | |
Alexander Duyck | 5fdd31f | 2011-07-21 00:40:45 +0000 | [diff] [blame] | 5240 | /* Enable Thermal over heat sensor interrupt */ |
Don Skidmore | f3df98e | 2011-08-17 10:15:21 +0000 | [diff] [blame] | 5241 | if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) { |
| 5242 | switch (adapter->hw.mac.type) { |
| 5243 | case ixgbe_mac_82599EB: |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 5244 | gpie |= IXGBE_SDP0_GPIEN_8259X; |
Don Skidmore | f3df98e | 2011-08-17 10:15:21 +0000 | [diff] [blame] | 5245 | break; |
Don Skidmore | f3df98e | 2011-08-17 10:15:21 +0000 | [diff] [blame] | 5246 | default: |
| 5247 | break; |
| 5248 | } |
| 5249 | } |
Alexander Duyck | 5fdd31f | 2011-07-21 00:40:45 +0000 | [diff] [blame] | 5250 | |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 5251 | /* Enable fan failure interrupt */ |
| 5252 | if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 5253 | gpie |= IXGBE_SDP1_GPIEN(hw); |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 5254 | |
Don Skidmore | a023bbd | 2015-06-24 16:38:53 -0400 | [diff] [blame] | 5255 | switch (hw->mac.type) { |
| 5256 | case ixgbe_mac_82599EB: |
| 5257 | gpie |= IXGBE_SDP1_GPIEN_8259X | IXGBE_SDP2_GPIEN_8259X; |
| 5258 | break; |
| 5259 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 5260 | case ixgbe_mac_x550em_a: |
Don Skidmore | a023bbd | 2015-06-24 16:38:53 -0400 | [diff] [blame] | 5261 | gpie |= IXGBE_SDP0_GPIEN_X540; |
| 5262 | break; |
| 5263 | default: |
| 5264 | break; |
Don Skidmore | 2698b20 | 2011-04-13 07:01:52 +0000 | [diff] [blame] | 5265 | } |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 5266 | |
| 5267 | IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie); |
| 5268 | } |
| 5269 | |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 5270 | static void ixgbe_up_complete(struct ixgbe_adapter *adapter) |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 5271 | { |
| 5272 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 5273 | int err; |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 5274 | u32 ctrl_ext; |
| 5275 | |
| 5276 | ixgbe_get_hw_control(adapter); |
| 5277 | ixgbe_setup_gpie(adapter); |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5278 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5279 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) |
| 5280 | ixgbe_configure_msix(adapter); |
| 5281 | else |
| 5282 | ixgbe_configure_msi_and_legacy(adapter); |
| 5283 | |
Emil Tantilov | ec74a47 | 2012-09-20 03:33:56 +0000 | [diff] [blame] | 5284 | /* enable the optics for 82599 SFP+ fiber */ |
| 5285 | if (hw->mac.ops.enable_tx_laser) |
Peter Waskiewicz | 61fac74 | 2010-04-27 00:38:15 +0000 | [diff] [blame] | 5286 | hw->mac.ops.enable_tx_laser(hw); |
| 5287 | |
Don Skidmore | 961fac8 | 2015-06-09 16:09:47 -0700 | [diff] [blame] | 5288 | if (hw->phy.ops.set_phy_power) |
| 5289 | hw->phy.ops.set_phy_power(hw, true); |
| 5290 | |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 5291 | smp_mb__before_atomic(); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5292 | clear_bit(__IXGBE_DOWN, &adapter->state); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 5293 | ixgbe_napi_enable_all(adapter); |
| 5294 | |
Alexander Duyck | 73c4b7c | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 5295 | if (ixgbe_is_sfp(hw)) { |
| 5296 | ixgbe_sfp_link_config(adapter); |
| 5297 | } else { |
| 5298 | err = ixgbe_non_sfp_link_config(hw); |
| 5299 | if (err) |
| 5300 | e_err(probe, "link_config FAILED %d\n", err); |
| 5301 | } |
| 5302 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 5303 | /* clear any pending interrupts, may auto mask */ |
| 5304 | IXGBE_READ_REG(hw, IXGBE_EICR); |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 5305 | ixgbe_irq_enable(adapter, true, true); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5306 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5307 | /* |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 5308 | * If this adapter has a fan, check to see if we had a failure |
| 5309 | * before we enabled the interrupt. |
| 5310 | */ |
| 5311 | if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) { |
| 5312 | u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP); |
| 5313 | if (esdp & IXGBE_ESDP_SDP1) |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 5314 | e_crit(drv, "Fan has stopped, replace the adapter\n"); |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 5315 | } |
| 5316 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5317 | /* bring the link up in the watchdog, this could race with our first |
| 5318 | * link up interrupt but shouldn't be a problem */ |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 5319 | adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE; |
| 5320 | adapter->link_check_timeout = jiffies; |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5321 | mod_timer(&adapter->service_timer, jiffies); |
Greg Rose | c920569 | 2010-01-22 22:46:22 +0000 | [diff] [blame] | 5322 | |
| 5323 | /* Set PF Reset Done bit so PF/VF Mail Ops can work */ |
| 5324 | ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT); |
| 5325 | ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD; |
| 5326 | IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5327 | } |
| 5328 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 5329 | void ixgbe_reinit_locked(struct ixgbe_adapter *adapter) |
| 5330 | { |
| 5331 | WARN_ON(in_interrupt()); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5332 | /* put off any impending NetWatchDogTimeout */ |
Florian Westphal | 860e953 | 2016-05-03 16:33:13 +0200 | [diff] [blame] | 5333 | netif_trans_update(adapter->netdev); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5334 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 5335 | while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state)) |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 5336 | usleep_range(1000, 2000); |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 5337 | if (adapter->hw.phy.type == ixgbe_phy_fw) |
| 5338 | ixgbe_watchdog_link_is_down(adapter); |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 5339 | ixgbe_down(adapter); |
Greg Rose | 5809a1a | 2010-03-24 09:36:08 +0000 | [diff] [blame] | 5340 | /* |
| 5341 | * If SR-IOV enabled then wait a bit before bringing the adapter |
| 5342 | * back up to give the VFs time to respond to the reset. The |
| 5343 | * two second wait is based upon the watchdog timer cycle in |
| 5344 | * the VF driver. |
| 5345 | */ |
| 5346 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
| 5347 | msleep(2000); |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 5348 | ixgbe_up(adapter); |
| 5349 | clear_bit(__IXGBE_RESETTING, &adapter->state); |
| 5350 | } |
| 5351 | |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 5352 | void ixgbe_up(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5353 | { |
| 5354 | /* hardware has been reset, we need to reload some things */ |
| 5355 | ixgbe_configure(adapter); |
| 5356 | |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 5357 | ixgbe_up_complete(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5358 | } |
| 5359 | |
| 5360 | void ixgbe_reset(struct ixgbe_adapter *adapter) |
| 5361 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 5362 | struct ixgbe_hw *hw = &adapter->hw; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 5363 | struct net_device *netdev = adapter->netdev; |
Don Skidmore | 8ca783a | 2009-05-26 20:40:47 -0700 | [diff] [blame] | 5364 | int err; |
| 5365 | |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 5366 | if (ixgbe_removed(hw->hw_addr)) |
| 5367 | return; |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5368 | /* lock SFP init bit to prevent race conditions with the watchdog */ |
| 5369 | while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state)) |
| 5370 | usleep_range(1000, 2000); |
| 5371 | |
| 5372 | /* clear all SFP and link config related flags while holding SFP_INIT */ |
| 5373 | adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP | |
| 5374 | IXGBE_FLAG2_SFP_NEEDS_RESET); |
| 5375 | adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG; |
| 5376 | |
Don Skidmore | 8ca783a | 2009-05-26 20:40:47 -0700 | [diff] [blame] | 5377 | err = hw->mac.ops.init_hw(hw); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 5378 | switch (err) { |
| 5379 | case 0: |
| 5380 | case IXGBE_ERR_SFP_NOT_PRESENT: |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5381 | case IXGBE_ERR_SFP_NOT_SUPPORTED: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 5382 | break; |
| 5383 | case IXGBE_ERR_MASTER_REQUESTS_PENDING: |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 5384 | e_dev_err("master disable timed out\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 5385 | break; |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 5386 | case IXGBE_ERR_EEPROM_VERSION: |
| 5387 | /* We are running on a pre-production device, log a warning */ |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 5388 | e_dev_warn("This device is a pre-production adapter/LOM. " |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 5389 | "Please be aware there may be issues associated with " |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 5390 | "your hardware. If you are experiencing problems " |
| 5391 | "please contact your Intel or hardware " |
| 5392 | "representative who provided you with this " |
| 5393 | "hardware.\n"); |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 5394 | break; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 5395 | default: |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 5396 | e_dev_err("Hardware Error: %d\n", err); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 5397 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5398 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5399 | clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state); |
Alexander Duyck | 0f079d2 | 2015-10-22 16:26:36 -0700 | [diff] [blame] | 5400 | |
| 5401 | /* flush entries out of MAC table */ |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 5402 | ixgbe_flush_sw_mac_table(adapter); |
Alexander Duyck | 0f079d2 | 2015-10-22 16:26:36 -0700 | [diff] [blame] | 5403 | __dev_uc_unsync(netdev, NULL); |
| 5404 | |
| 5405 | /* do not flush user set addresses */ |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 5406 | ixgbe_mac_set_default_filter(adapter); |
Alexander Duyck | 7fa7c9d | 2012-05-05 05:32:52 +0000 | [diff] [blame] | 5407 | |
| 5408 | /* update SAN MAC vmdq pool selection */ |
| 5409 | if (hw->mac.san_mac_rar_index) |
| 5410 | hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0)); |
Jacob Keller | 1a71ab2 | 2012-08-25 03:54:19 +0000 | [diff] [blame] | 5411 | |
Jacob Keller | 8fecf67 | 2013-06-21 08:14:32 +0000 | [diff] [blame] | 5412 | if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state)) |
Jacob Keller | 1a71ab2 | 2012-08-25 03:54:19 +0000 | [diff] [blame] | 5413 | ixgbe_ptp_reset(adapter); |
Don Skidmore | 961fac8 | 2015-06-09 16:09:47 -0700 | [diff] [blame] | 5414 | |
| 5415 | if (hw->phy.ops.set_phy_power) { |
| 5416 | if (!netif_running(adapter->netdev) && !adapter->wol) |
| 5417 | hw->phy.ops.set_phy_power(hw, false); |
| 5418 | else |
| 5419 | hw->phy.ops.set_phy_power(hw, true); |
| 5420 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5421 | } |
| 5422 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5423 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5424 | * ixgbe_clean_tx_ring - Free Tx Buffers |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5425 | * @tx_ring: ring to be cleaned |
| 5426 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5427 | static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5428 | { |
| 5429 | struct ixgbe_tx_buffer *tx_buffer_info; |
| 5430 | unsigned long size; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5431 | u16 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5432 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 5433 | /* ring already cleared, nothing to do */ |
| 5434 | if (!tx_ring->tx_buffer_info) |
| 5435 | return; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5436 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 5437 | /* Free all the Tx ring sk_buffs */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5438 | for (i = 0; i < tx_ring->count; i++) { |
| 5439 | tx_buffer_info = &tx_ring->tx_buffer_info[i]; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5440 | ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5441 | } |
| 5442 | |
John Fastabend | dad8a3b | 2012-04-23 12:22:39 +0000 | [diff] [blame] | 5443 | netdev_tx_reset_queue(txring_txq(tx_ring)); |
| 5444 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5445 | size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count; |
| 5446 | memset(tx_ring->tx_buffer_info, 0, size); |
| 5447 | |
| 5448 | /* Zero out the descriptor ring */ |
| 5449 | memset(tx_ring->desc, 0, tx_ring->size); |
| 5450 | |
| 5451 | tx_ring->next_to_use = 0; |
| 5452 | tx_ring->next_to_clean = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5453 | } |
| 5454 | |
| 5455 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5456 | * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues |
| 5457 | * @adapter: board private structure |
| 5458 | **/ |
| 5459 | static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter) |
| 5460 | { |
| 5461 | int i; |
| 5462 | |
| 5463 | for (i = 0; i < adapter->num_rx_queues; i++) |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5464 | ixgbe_clean_rx_ring(adapter->rx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5465 | } |
| 5466 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 5467 | /** |
| 5468 | * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues |
| 5469 | * @adapter: board private structure |
| 5470 | **/ |
| 5471 | static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter) |
| 5472 | { |
| 5473 | int i; |
| 5474 | |
| 5475 | for (i = 0; i < adapter->num_tx_queues; i++) |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5476 | ixgbe_clean_tx_ring(adapter->tx_ring[i]); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 5477 | } |
| 5478 | |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 5479 | static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter) |
| 5480 | { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5481 | struct hlist_node *node2; |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 5482 | struct ixgbe_fdir_filter *filter; |
| 5483 | |
| 5484 | spin_lock(&adapter->fdir_perfect_lock); |
| 5485 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5486 | hlist_for_each_entry_safe(filter, node2, |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 5487 | &adapter->fdir_filter_list, fdir_node) { |
| 5488 | hlist_del(&filter->fdir_node); |
| 5489 | kfree(filter); |
| 5490 | } |
| 5491 | adapter->fdir_filter_count = 0; |
| 5492 | |
| 5493 | spin_unlock(&adapter->fdir_perfect_lock); |
| 5494 | } |
| 5495 | |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 5496 | static int ixgbe_disable_macvlan(struct net_device *upper, void *data) |
| 5497 | { |
| 5498 | if (netif_is_macvlan(upper)) { |
| 5499 | struct macvlan_dev *vlan = netdev_priv(upper); |
| 5500 | |
| 5501 | if (vlan->fwd_priv) { |
| 5502 | netif_tx_stop_all_queues(upper); |
| 5503 | netif_carrier_off(upper); |
| 5504 | netif_tx_disable(upper); |
| 5505 | } |
| 5506 | } |
| 5507 | |
| 5508 | return 0; |
| 5509 | } |
| 5510 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5511 | void ixgbe_down(struct ixgbe_adapter *adapter) |
| 5512 | { |
| 5513 | struct net_device *netdev = adapter->netdev; |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 5514 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 5515 | int i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5516 | |
| 5517 | /* signal that we are down to the interrupt handler */ |
Mark Rustad | c3049c8 | 2014-01-14 18:53:12 -0800 | [diff] [blame] | 5518 | if (test_and_set_bit(__IXGBE_DOWN, &adapter->state)) |
| 5519 | return; /* do nothing if already down */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5520 | |
| 5521 | /* disable receives */ |
Don Skidmore | 1f9ac57 | 2015-03-13 13:54:30 -0700 | [diff] [blame] | 5522 | hw->mac.ops.disable_rx(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5523 | |
Yi Zou | 2d39d57 | 2011-01-06 14:29:56 +0000 | [diff] [blame] | 5524 | /* disable all enabled rx queues */ |
| 5525 | for (i = 0; i < adapter->num_rx_queues; i++) |
| 5526 | /* this call also flushes the previous write */ |
| 5527 | ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]); |
| 5528 | |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 5529 | usleep_range(10000, 20000); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5530 | |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 5531 | netif_tx_stop_all_queues(netdev); |
| 5532 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5533 | /* call carrier off first to avoid false dev_watchdog timeouts */ |
John Fastabend | c0dfb90 | 2010-04-27 02:13:39 +0000 | [diff] [blame] | 5534 | netif_carrier_off(netdev); |
| 5535 | netif_tx_disable(netdev); |
| 5536 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 5537 | /* disable any upper devices */ |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 5538 | netdev_walk_all_upper_dev_rcu(adapter->netdev, |
| 5539 | ixgbe_disable_macvlan, NULL); |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 5540 | |
John Fastabend | c0dfb90 | 2010-04-27 02:13:39 +0000 | [diff] [blame] | 5541 | ixgbe_irq_disable(adapter); |
| 5542 | |
| 5543 | ixgbe_napi_disable_all(adapter); |
| 5544 | |
Emil Tantilov | 57ca2a4 | 2016-07-29 14:46:31 -0700 | [diff] [blame] | 5545 | clear_bit(__IXGBE_RESET_REQUESTED, &adapter->state); |
| 5546 | adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT; |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5547 | adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE; |
| 5548 | |
| 5549 | del_timer_sync(&adapter->service_timer); |
| 5550 | |
Don Skidmore | 0a1f87c | 2009-09-18 09:45:43 +0000 | [diff] [blame] | 5551 | if (adapter->num_vfs) { |
Alexander Duyck | 8e34d1a | 2011-07-15 07:29:49 +0000 | [diff] [blame] | 5552 | /* Clear EITR Select mapping */ |
| 5553 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0); |
| 5554 | |
| 5555 | /* Mark all the VFs as inactive */ |
| 5556 | for (i = 0 ; i < adapter->num_vfs; i++) |
Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 5557 | adapter->vfinfo[i].clear_to_send = false; |
Alexander Duyck | 8e34d1a | 2011-07-15 07:29:49 +0000 | [diff] [blame] | 5558 | |
Don Skidmore | 0a1f87c | 2009-09-18 09:45:43 +0000 | [diff] [blame] | 5559 | /* ping all the active vfs to let them know we are going down */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5560 | ixgbe_ping_all_vfs(adapter); |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 5561 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5562 | /* Disable all VFTE/VFRE TX/RX */ |
Peter Waskiewicz | b25ebfd | 2010-10-05 01:27:49 +0000 | [diff] [blame] | 5563 | ixgbe_disable_tx_rx(adapter); |
Peter Waskiewicz | b25ebfd | 2010-10-05 01:27:49 +0000 | [diff] [blame] | 5564 | } |
| 5565 | |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 5566 | /* disable transmits in the hardware now that interrupts are off */ |
| 5567 | for (i = 0; i < adapter->num_tx_queues; i++) { |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 5568 | u8 reg_idx = adapter->tx_ring[i]->reg_idx; |
Alexander Duyck | 34cecbb | 2011-04-22 04:08:14 +0000 | [diff] [blame] | 5569 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH); |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 5570 | } |
Alexander Duyck | 34cecbb | 2011-04-22 04:08:14 +0000 | [diff] [blame] | 5571 | |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 5572 | /* Disable the Tx DMA engine on 82599 and later MAC */ |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5573 | switch (hw->mac.type) { |
| 5574 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 5575 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 5576 | case ixgbe_mac_X550: |
| 5577 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 5578 | case ixgbe_mac_x550em_a: |
PJ Waskiewicz | 8851253 | 2009-03-13 22:15:10 +0000 | [diff] [blame] | 5579 | IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 5580 | (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) & |
| 5581 | ~IXGBE_DMATXCTL_TE)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5582 | break; |
| 5583 | default: |
| 5584 | break; |
| 5585 | } |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 5586 | |
Paul Larson | 6f4a0e4 | 2008-06-24 17:00:56 -0700 | [diff] [blame] | 5587 | if (!pci_channel_offline(adapter->pdev)) |
| 5588 | ixgbe_reset(adapter); |
Don Skidmore | c6ecf39 | 2010-12-03 03:31:51 +0000 | [diff] [blame] | 5589 | |
Emil Tantilov | ec74a47 | 2012-09-20 03:33:56 +0000 | [diff] [blame] | 5590 | /* power down the optics for 82599 SFP+ fiber */ |
| 5591 | if (hw->mac.ops.disable_tx_laser) |
Don Skidmore | c6ecf39 | 2010-12-03 03:31:51 +0000 | [diff] [blame] | 5592 | hw->mac.ops.disable_tx_laser(hw); |
| 5593 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5594 | ixgbe_clean_all_tx_rings(adapter); |
| 5595 | ixgbe_clean_all_rx_rings(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5596 | } |
| 5597 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5598 | /** |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 5599 | * ixgbe_eee_capable - helper function to determine EEE support on X550 |
| 5600 | * @adapter: board private structure |
| 5601 | */ |
| 5602 | static void ixgbe_set_eee_capable(struct ixgbe_adapter *adapter) |
| 5603 | { |
| 5604 | struct ixgbe_hw *hw = &adapter->hw; |
| 5605 | |
| 5606 | switch (hw->device_id) { |
| 5607 | case IXGBE_DEV_ID_X550EM_A_1G_T: |
| 5608 | case IXGBE_DEV_ID_X550EM_A_1G_T_L: |
| 5609 | if (!hw->phy.eee_speeds_supported) |
| 5610 | break; |
| 5611 | adapter->flags2 |= IXGBE_FLAG2_EEE_CAPABLE; |
| 5612 | if (!hw->phy.eee_speeds_advertised) |
| 5613 | break; |
| 5614 | adapter->flags2 |= IXGBE_FLAG2_EEE_ENABLED; |
| 5615 | break; |
| 5616 | default: |
| 5617 | adapter->flags2 &= ~IXGBE_FLAG2_EEE_CAPABLE; |
| 5618 | adapter->flags2 &= ~IXGBE_FLAG2_EEE_ENABLED; |
| 5619 | break; |
| 5620 | } |
| 5621 | } |
| 5622 | |
| 5623 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5624 | * ixgbe_tx_timeout - Respond to a Tx Hang |
| 5625 | * @netdev: network interface device structure |
| 5626 | **/ |
| 5627 | static void ixgbe_tx_timeout(struct net_device *netdev) |
| 5628 | { |
| 5629 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 5630 | |
| 5631 | /* Do the reset outside of interrupt context */ |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 5632 | ixgbe_tx_timeout_reset(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5633 | } |
| 5634 | |
Usha Ketineni | 8829009 | 2016-04-26 05:00:26 -0700 | [diff] [blame] | 5635 | #ifdef CONFIG_IXGBE_DCB |
| 5636 | static void ixgbe_init_dcb(struct ixgbe_adapter *adapter) |
| 5637 | { |
| 5638 | struct ixgbe_hw *hw = &adapter->hw; |
| 5639 | struct tc_configuration *tc; |
| 5640 | int j; |
| 5641 | |
| 5642 | switch (hw->mac.type) { |
| 5643 | case ixgbe_mac_82598EB: |
| 5644 | case ixgbe_mac_82599EB: |
| 5645 | adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS; |
| 5646 | adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS; |
| 5647 | break; |
| 5648 | case ixgbe_mac_X540: |
| 5649 | case ixgbe_mac_X550: |
| 5650 | adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS; |
| 5651 | adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS; |
| 5652 | break; |
| 5653 | case ixgbe_mac_X550EM_x: |
| 5654 | case ixgbe_mac_x550em_a: |
| 5655 | default: |
| 5656 | adapter->dcb_cfg.num_tcs.pg_tcs = DEF_TRAFFIC_CLASS; |
| 5657 | adapter->dcb_cfg.num_tcs.pfc_tcs = DEF_TRAFFIC_CLASS; |
| 5658 | break; |
| 5659 | } |
| 5660 | |
| 5661 | /* Configure DCB traffic classes */ |
| 5662 | for (j = 0; j < MAX_TRAFFIC_CLASS; j++) { |
| 5663 | tc = &adapter->dcb_cfg.tc_config[j]; |
| 5664 | tc->path[DCB_TX_CONFIG].bwg_id = 0; |
| 5665 | tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1); |
| 5666 | tc->path[DCB_RX_CONFIG].bwg_id = 0; |
| 5667 | tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1); |
| 5668 | tc->dcb_pfc = pfc_disabled; |
| 5669 | } |
| 5670 | |
| 5671 | /* Initialize default user to priority mapping, UPx->TC0 */ |
| 5672 | tc = &adapter->dcb_cfg.tc_config[0]; |
| 5673 | tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF; |
| 5674 | tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF; |
| 5675 | |
| 5676 | adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100; |
| 5677 | adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100; |
| 5678 | adapter->dcb_cfg.pfc_mode_enable = false; |
| 5679 | adapter->dcb_set_bitmap = 0x00; |
| 5680 | if (adapter->flags & IXGBE_FLAG_DCB_CAPABLE) |
| 5681 | adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE; |
| 5682 | memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg, |
| 5683 | sizeof(adapter->temp_dcb_cfg)); |
| 5684 | } |
| 5685 | #endif |
| 5686 | |
Jesse Brandeburg | 4df1046 | 2009-03-13 22:15:31 +0000 | [diff] [blame] | 5687 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5688 | * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter) |
| 5689 | * @adapter: board private structure to initialize |
| 5690 | * |
| 5691 | * ixgbe_sw_init initializes the Adapter private data structure. |
| 5692 | * Fields are initialized based on PCI device information and |
| 5693 | * OS network device settings (MTU size). |
| 5694 | **/ |
Emil Tantilov | 55570b6 | 2016-10-12 12:34:25 -0700 | [diff] [blame] | 5695 | static int ixgbe_sw_init(struct ixgbe_adapter *adapter, |
| 5696 | const struct ixgbe_info *ii) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5697 | { |
| 5698 | struct ixgbe_hw *hw = &adapter->hw; |
| 5699 | struct pci_dev *pdev = adapter->pdev; |
Alexander Duyck | d3cb986 | 2013-01-16 01:35:35 +0000 | [diff] [blame] | 5700 | unsigned int rss, fdir; |
Jacob Keller | cb6d0f5 | 2012-12-04 06:03:14 +0000 | [diff] [blame] | 5701 | u32 fwsm; |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 5702 | int i; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 5703 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 5704 | /* PCI config space info */ |
| 5705 | |
| 5706 | hw->vendor_id = pdev->vendor; |
| 5707 | hw->device_id = pdev->device; |
| 5708 | hw->revision_id = pdev->revision; |
| 5709 | hw->subsystem_vendor_id = pdev->subsystem_vendor; |
| 5710 | hw->subsystem_device_id = pdev->subsystem_device; |
| 5711 | |
Emil Tantilov | 55570b6 | 2016-10-12 12:34:25 -0700 | [diff] [blame] | 5712 | /* get_invariants needs the device IDs */ |
| 5713 | ii->get_invariants(hw); |
| 5714 | |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5715 | /* Set common capability flags and settings */ |
Don Skidmore | 0f9b232 | 2014-11-18 09:35:08 +0000 | [diff] [blame] | 5716 | rss = min_t(int, ixgbe_max_rss_indices(adapter), num_online_cpus()); |
Alexander Duyck | c087663 | 2012-05-10 00:01:46 +0000 | [diff] [blame] | 5717 | adapter->ring_feature[RING_F_RSS].limit = rss; |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5718 | adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE; |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5719 | adapter->max_q_vectors = MAX_Q_VECTORS_82599; |
| 5720 | adapter->atr_sample_rate = 20; |
Alexander Duyck | d3cb986 | 2013-01-16 01:35:35 +0000 | [diff] [blame] | 5721 | fdir = min_t(int, IXGBE_MAX_FDIR_INDICES, num_online_cpus()); |
| 5722 | adapter->ring_feature[RING_F_FDIR].limit = fdir; |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5723 | adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K; |
| 5724 | #ifdef CONFIG_IXGBE_DCA |
| 5725 | adapter->flags |= IXGBE_FLAG_DCA_CAPABLE; |
| 5726 | #endif |
Usha Ketineni | 8829009 | 2016-04-26 05:00:26 -0700 | [diff] [blame] | 5727 | #ifdef CONFIG_IXGBE_DCB |
| 5728 | adapter->flags |= IXGBE_FLAG_DCB_CAPABLE; |
| 5729 | adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED; |
| 5730 | #endif |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5731 | #ifdef IXGBE_FCOE |
| 5732 | adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE; |
| 5733 | adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED; |
| 5734 | #ifdef CONFIG_IXGBE_DCB |
| 5735 | /* Default traffic class to use for FCoE */ |
| 5736 | adapter->fcoe.up = IXGBE_FCOE_DEFTC; |
| 5737 | #endif /* CONFIG_IXGBE_DCB */ |
| 5738 | #endif /* IXGBE_FCOE */ |
| 5739 | |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 5740 | /* initialize static ixgbe jump table entries */ |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 5741 | adapter->jump_tables[0] = kzalloc(sizeof(*adapter->jump_tables[0]), |
| 5742 | GFP_KERNEL); |
| 5743 | if (!adapter->jump_tables[0]) |
| 5744 | return -ENOMEM; |
| 5745 | adapter->jump_tables[0]->mat = ixgbe_ipv4_fields; |
| 5746 | |
| 5747 | for (i = 1; i < IXGBE_MAX_LINK_HANDLE; i++) |
| 5748 | adapter->jump_tables[i] = NULL; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 5749 | |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 5750 | adapter->mac_table = kzalloc(sizeof(struct ixgbe_mac_addr) * |
| 5751 | hw->mac.num_rar_entries, |
| 5752 | GFP_ATOMIC); |
Alexander Duyck | 530fd82 | 2015-11-02 17:09:29 -0800 | [diff] [blame] | 5753 | if (!adapter->mac_table) |
| 5754 | return -ENOMEM; |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 5755 | |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5756 | /* Set MAC specific capability flags and exceptions */ |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5757 | switch (hw->mac.type) { |
| 5758 | case ixgbe_mac_82598EB: |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5759 | adapter->flags2 &= ~IXGBE_FLAG2_RSC_CAPABLE; |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5760 | |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 5761 | if (hw->device_id == IXGBE_DEV_ID_82598AT) |
| 5762 | adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE; |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5763 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 5764 | adapter->max_q_vectors = MAX_Q_VECTORS_82598; |
Emil Tantilov | 8fc3bb6 | 2013-01-08 04:23:53 +0000 | [diff] [blame] | 5765 | adapter->ring_feature[RING_F_FDIR].limit = 0; |
| 5766 | adapter->atr_sample_rate = 0; |
| 5767 | adapter->fdir_pballoc = 0; |
| 5768 | #ifdef IXGBE_FCOE |
| 5769 | adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE; |
| 5770 | adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED; |
| 5771 | #ifdef CONFIG_IXGBE_DCB |
| 5772 | adapter->fcoe.up = 0; |
| 5773 | #endif /* IXGBE_DCB */ |
| 5774 | #endif /* IXGBE_FCOE */ |
| 5775 | break; |
| 5776 | case ixgbe_mac_82599EB: |
| 5777 | if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM) |
| 5778 | adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5779 | break; |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 5780 | case ixgbe_mac_X540: |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 5781 | fwsm = IXGBE_READ_REG(hw, IXGBE_FWSM(hw)); |
Jacob Keller | cb6d0f5 | 2012-12-04 06:03:14 +0000 | [diff] [blame] | 5782 | if (fwsm & IXGBE_FWSM_TS_ENABLED) |
| 5783 | adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5784 | break; |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 5785 | case ixgbe_mac_x550em_a: |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 5786 | adapter->flags |= IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE; |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 5787 | switch (hw->device_id) { |
| 5788 | case IXGBE_DEV_ID_X550EM_A_1G_T: |
| 5789 | case IXGBE_DEV_ID_X550EM_A_1G_T_L: |
| 5790 | adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE; |
| 5791 | break; |
| 5792 | default: |
| 5793 | break; |
| 5794 | } |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 5795 | /* fall through */ |
| 5796 | case ixgbe_mac_X550EM_x: |
Usha Ketineni | 8829009 | 2016-04-26 05:00:26 -0700 | [diff] [blame] | 5797 | #ifdef CONFIG_IXGBE_DCB |
| 5798 | adapter->flags &= ~IXGBE_FLAG_DCB_CAPABLE; |
| 5799 | #endif |
| 5800 | #ifdef IXGBE_FCOE |
| 5801 | adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE; |
| 5802 | #ifdef CONFIG_IXGBE_DCB |
| 5803 | adapter->fcoe.up = 0; |
| 5804 | #endif /* IXGBE_DCB */ |
| 5805 | #endif /* IXGBE_FCOE */ |
| 5806 | /* Fall Through */ |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 5807 | case ixgbe_mac_X550: |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 5808 | if (hw->mac.type == ixgbe_mac_X550) |
| 5809 | adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE; |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 5810 | #ifdef CONFIG_IXGBE_DCA |
| 5811 | adapter->flags &= ~IXGBE_FLAG_DCA_CAPABLE; |
| 5812 | #endif |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 5813 | adapter->flags |= IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE; |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 5814 | break; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5815 | default: |
| 5816 | break; |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 5817 | } |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 5818 | |
Alexander Duyck | 7c8ae65 | 2012-05-05 05:32:47 +0000 | [diff] [blame] | 5819 | #ifdef IXGBE_FCOE |
| 5820 | /* FCoE support exists, always init the FCoE lock */ |
| 5821 | spin_lock_init(&adapter->fcoe.lock); |
| 5822 | |
| 5823 | #endif |
Alexander Duyck | 1fc5f03 | 2011-06-02 04:28:39 +0000 | [diff] [blame] | 5824 | /* n-tuple support exists, always init our spinlock */ |
| 5825 | spin_lock_init(&adapter->fdir_perfect_lock); |
| 5826 | |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 5827 | #ifdef CONFIG_IXGBE_DCB |
Usha Ketineni | 8829009 | 2016-04-26 05:00:26 -0700 | [diff] [blame] | 5828 | ixgbe_init_dcb(adapter); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 5829 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5830 | |
| 5831 | /* default flow control settings */ |
Don Skidmore | cd7664f | 2009-03-31 21:33:44 +0000 | [diff] [blame] | 5832 | hw->fc.requested_mode = ixgbe_fc_full; |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 5833 | hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */ |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 5834 | ixgbe_pbthresh_setup(adapter); |
Jesse Brandeburg | 2b9ade9 | 2008-08-26 04:27:10 -0700 | [diff] [blame] | 5835 | hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE; |
| 5836 | hw->fc.send_xon = true; |
Don Skidmore | 73d80953d | 2013-07-31 02:19:24 +0000 | [diff] [blame] | 5837 | hw->fc.disable_fc_autoneg = ixgbe_device_supports_autoneg_fc(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5838 | |
Alexander Duyck | 99d7448 | 2012-05-09 08:09:25 +0000 | [diff] [blame] | 5839 | #ifdef CONFIG_PCI_IOV |
Jacob Keller | 170e854 | 2013-11-09 04:52:32 -0800 | [diff] [blame] | 5840 | if (max_vfs > 0) |
| 5841 | e_dev_warn("Enabling SR-IOV VFs using the max_vfs module parameter is deprecated - please use the pci sysfs interface instead.\n"); |
Alexander Duyck | 99d7448 | 2012-05-09 08:09:25 +0000 | [diff] [blame] | 5842 | |
Jacob Keller | 170e854 | 2013-11-09 04:52:32 -0800 | [diff] [blame] | 5843 | /* assign number of SR-IOV VFs */ |
| 5844 | if (hw->mac.type != ixgbe_mac_82598EB) { |
ethan.zhao | dcc23e3 | 2014-01-16 19:41:04 -0800 | [diff] [blame] | 5845 | if (max_vfs > IXGBE_MAX_VFS_DRV_LIMIT) { |
Jacob Keller | 170e854 | 2013-11-09 04:52:32 -0800 | [diff] [blame] | 5846 | adapter->num_vfs = 0; |
| 5847 | e_dev_warn("max_vfs parameter out of range. Not assigning any SR-IOV VFs\n"); |
| 5848 | } else { |
| 5849 | adapter->num_vfs = max_vfs; |
| 5850 | } |
| 5851 | } |
| 5852 | #endif /* CONFIG_PCI_IOV */ |
| 5853 | |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 5854 | /* enable itr by default in dynamic mode */ |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 5855 | adapter->rx_itr_setting = 1; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 5856 | adapter->tx_itr_setting = 1; |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 5857 | |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 5858 | /* set default ring sizes */ |
| 5859 | adapter->tx_ring_count = IXGBE_DEFAULT_TXD; |
| 5860 | adapter->rx_ring_count = IXGBE_DEFAULT_RXD; |
| 5861 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 5862 | /* set default work limits */ |
Alexander Duyck | 5922455 | 2011-08-31 00:01:06 +0000 | [diff] [blame] | 5863 | adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 5864 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5865 | /* initialize eeprom parameters */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 5866 | if (ixgbe_init_eeprom_params_generic(hw)) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 5867 | e_dev_err("EEPROM initialization failed\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5868 | return -EIO; |
| 5869 | } |
| 5870 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 5871 | /* PF holds first pool slot */ |
| 5872 | set_bit(0, &adapter->fwd_bitmask); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5873 | set_bit(__IXGBE_DOWN, &adapter->state); |
| 5874 | |
| 5875 | return 0; |
| 5876 | } |
| 5877 | |
| 5878 | /** |
| 5879 | * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors) |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 5880 | * @tx_ring: tx descriptor ring (for a specific queue) to setup |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5881 | * |
| 5882 | * Return 0 on success, negative on failure |
| 5883 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5884 | int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5885 | { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5886 | struct device *dev = tx_ring->dev; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 5887 | int orig_node = dev_to_node(dev); |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 5888 | int ring_node = -1; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5889 | int size; |
| 5890 | |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 5891 | size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 5892 | |
| 5893 | if (tx_ring->q_vector) |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 5894 | ring_node = tx_ring->q_vector->numa_node; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 5895 | |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 5896 | tx_ring->tx_buffer_info = vzalloc_node(size, ring_node); |
Jesse Brandeburg | 1a6c14a | 2010-02-03 14:18:50 +0000 | [diff] [blame] | 5897 | if (!tx_ring->tx_buffer_info) |
Eric Dumazet | 89bf67f | 2010-11-22 00:15:06 +0000 | [diff] [blame] | 5898 | tx_ring->tx_buffer_info = vzalloc(size); |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 5899 | if (!tx_ring->tx_buffer_info) |
| 5900 | goto err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5901 | |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 5902 | u64_stats_init(&tx_ring->syncp); |
| 5903 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5904 | /* round up to nearest 4K */ |
Peter P Waskiewicz Jr | 12207e4 | 2009-02-06 21:47:24 -0800 | [diff] [blame] | 5905 | tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc); |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 5906 | tx_ring->size = ALIGN(tx_ring->size, 4096); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5907 | |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 5908 | set_dev_node(dev, ring_node); |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 5909 | tx_ring->desc = dma_alloc_coherent(dev, |
| 5910 | tx_ring->size, |
| 5911 | &tx_ring->dma, |
| 5912 | GFP_KERNEL); |
| 5913 | set_dev_node(dev, orig_node); |
| 5914 | if (!tx_ring->desc) |
| 5915 | tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size, |
| 5916 | &tx_ring->dma, GFP_KERNEL); |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 5917 | if (!tx_ring->desc) |
| 5918 | goto err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5919 | |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 5920 | tx_ring->next_to_use = 0; |
| 5921 | tx_ring->next_to_clean = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5922 | return 0; |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 5923 | |
| 5924 | err: |
| 5925 | vfree(tx_ring->tx_buffer_info); |
| 5926 | tx_ring->tx_buffer_info = NULL; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5927 | dev_err(dev, "Unable to allocate memory for the Tx descriptor ring\n"); |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 5928 | return -ENOMEM; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5929 | } |
| 5930 | |
| 5931 | /** |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 5932 | * ixgbe_setup_all_tx_resources - allocate all queues Tx resources |
| 5933 | * @adapter: board private structure |
| 5934 | * |
| 5935 | * If this function returns with an error, then it's possible one or |
| 5936 | * more of the rings is populated (while the rest are not). It is the |
| 5937 | * callers duty to clean those orphaned rings. |
| 5938 | * |
| 5939 | * Return 0 on success, negative on failure |
| 5940 | **/ |
| 5941 | static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter) |
| 5942 | { |
| 5943 | int i, err = 0; |
| 5944 | |
| 5945 | for (i = 0; i < adapter->num_tx_queues; i++) { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5946 | err = ixgbe_setup_tx_resources(adapter->tx_ring[i]); |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 5947 | if (!err) |
| 5948 | continue; |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 5949 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 5950 | e_err(probe, "Allocation for Tx Queue %u failed\n", i); |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 5951 | goto err_setup_tx; |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 5952 | } |
| 5953 | |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 5954 | return 0; |
| 5955 | err_setup_tx: |
| 5956 | /* rewind the index freeing the rings as we go */ |
| 5957 | while (i--) |
| 5958 | ixgbe_free_tx_resources(adapter->tx_ring[i]); |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 5959 | return err; |
| 5960 | } |
| 5961 | |
| 5962 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5963 | * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors) |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 5964 | * @rx_ring: rx descriptor ring (for a specific queue) to setup |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5965 | * |
| 5966 | * Returns 0 on success, negative on failure |
| 5967 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5968 | int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5969 | { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5970 | struct device *dev = rx_ring->dev; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 5971 | int orig_node = dev_to_node(dev); |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 5972 | int ring_node = -1; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 5973 | int size; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5974 | |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 5975 | size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 5976 | |
| 5977 | if (rx_ring->q_vector) |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 5978 | ring_node = rx_ring->q_vector->numa_node; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 5979 | |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 5980 | rx_ring->rx_buffer_info = vzalloc_node(size, ring_node); |
Jesse Brandeburg | 1a6c14a | 2010-02-03 14:18:50 +0000 | [diff] [blame] | 5981 | if (!rx_ring->rx_buffer_info) |
Eric Dumazet | 89bf67f | 2010-11-22 00:15:06 +0000 | [diff] [blame] | 5982 | rx_ring->rx_buffer_info = vzalloc(size); |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 5983 | if (!rx_ring->rx_buffer_info) |
| 5984 | goto err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5985 | |
John Stultz | 827da44 | 2013-10-07 15:51:58 -0700 | [diff] [blame] | 5986 | u64_stats_init(&rx_ring->syncp); |
| 5987 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5988 | /* Round up to nearest 4K */ |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 5989 | rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc); |
| 5990 | rx_ring->size = ALIGN(rx_ring->size, 4096); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5991 | |
Mark Rustad | ca8dfe2 | 2014-07-24 06:19:24 +0000 | [diff] [blame] | 5992 | set_dev_node(dev, ring_node); |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 5993 | rx_ring->desc = dma_alloc_coherent(dev, |
| 5994 | rx_ring->size, |
| 5995 | &rx_ring->dma, |
| 5996 | GFP_KERNEL); |
| 5997 | set_dev_node(dev, orig_node); |
| 5998 | if (!rx_ring->desc) |
| 5999 | rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size, |
| 6000 | &rx_ring->dma, GFP_KERNEL); |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6001 | if (!rx_ring->desc) |
| 6002 | goto err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6003 | |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 6004 | rx_ring->next_to_clean = 0; |
| 6005 | rx_ring->next_to_use = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6006 | |
| 6007 | return 0; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6008 | err: |
| 6009 | vfree(rx_ring->rx_buffer_info); |
| 6010 | rx_ring->rx_buffer_info = NULL; |
| 6011 | dev_err(dev, "Unable to allocate memory for the Rx descriptor ring\n"); |
Mallikarjuna R Chilakala | 177db6f | 2008-06-18 15:32:19 -0700 | [diff] [blame] | 6012 | return -ENOMEM; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6013 | } |
| 6014 | |
| 6015 | /** |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 6016 | * ixgbe_setup_all_rx_resources - allocate all queues Rx resources |
| 6017 | * @adapter: board private structure |
| 6018 | * |
| 6019 | * If this function returns with an error, then it's possible one or |
| 6020 | * more of the rings is populated (while the rest are not). It is the |
| 6021 | * callers duty to clean those orphaned rings. |
| 6022 | * |
| 6023 | * Return 0 on success, negative on failure |
| 6024 | **/ |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 6025 | static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter) |
| 6026 | { |
| 6027 | int i, err = 0; |
| 6028 | |
| 6029 | for (i = 0; i < adapter->num_rx_queues; i++) { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6030 | err = ixgbe_setup_rx_resources(adapter->rx_ring[i]); |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 6031 | if (!err) |
| 6032 | continue; |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 6033 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 6034 | e_err(probe, "Allocation for Rx Queue %u failed\n", i); |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 6035 | goto err_setup_rx; |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 6036 | } |
| 6037 | |
Alexander Duyck | 7c8ae65 | 2012-05-05 05:32:47 +0000 | [diff] [blame] | 6038 | #ifdef IXGBE_FCOE |
| 6039 | err = ixgbe_setup_fcoe_ddp_resources(adapter); |
| 6040 | if (!err) |
| 6041 | #endif |
| 6042 | return 0; |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 6043 | err_setup_rx: |
| 6044 | /* rewind the index freeing the rings as we go */ |
| 6045 | while (i--) |
| 6046 | ixgbe_free_rx_resources(adapter->rx_ring[i]); |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 6047 | return err; |
| 6048 | } |
| 6049 | |
| 6050 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6051 | * ixgbe_free_tx_resources - Free Tx Resources per Queue |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6052 | * @tx_ring: Tx descriptor ring for a specific queue |
| 6053 | * |
| 6054 | * Free all transmit software resources |
| 6055 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6056 | void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6057 | { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6058 | ixgbe_clean_tx_ring(tx_ring); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6059 | |
| 6060 | vfree(tx_ring->tx_buffer_info); |
| 6061 | tx_ring->tx_buffer_info = NULL; |
| 6062 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6063 | /* if not set, then don't free */ |
| 6064 | if (!tx_ring->desc) |
| 6065 | return; |
| 6066 | |
| 6067 | dma_free_coherent(tx_ring->dev, tx_ring->size, |
| 6068 | tx_ring->desc, tx_ring->dma); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6069 | |
| 6070 | tx_ring->desc = NULL; |
| 6071 | } |
| 6072 | |
| 6073 | /** |
| 6074 | * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues |
| 6075 | * @adapter: board private structure |
| 6076 | * |
| 6077 | * Free all transmit software resources |
| 6078 | **/ |
| 6079 | static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter) |
| 6080 | { |
| 6081 | int i; |
| 6082 | |
| 6083 | for (i = 0; i < adapter->num_tx_queues; i++) |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 6084 | if (adapter->tx_ring[i]->desc) |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6085 | ixgbe_free_tx_resources(adapter->tx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6086 | } |
| 6087 | |
| 6088 | /** |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 6089 | * ixgbe_free_rx_resources - Free Rx Resources |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6090 | * @rx_ring: ring to clean the resources from |
| 6091 | * |
| 6092 | * Free all receive software resources |
| 6093 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6094 | void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6095 | { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6096 | ixgbe_clean_rx_ring(rx_ring); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6097 | |
| 6098 | vfree(rx_ring->rx_buffer_info); |
| 6099 | rx_ring->rx_buffer_info = NULL; |
| 6100 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6101 | /* if not set, then don't free */ |
| 6102 | if (!rx_ring->desc) |
| 6103 | return; |
| 6104 | |
| 6105 | dma_free_coherent(rx_ring->dev, rx_ring->size, |
| 6106 | rx_ring->desc, rx_ring->dma); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6107 | |
| 6108 | rx_ring->desc = NULL; |
| 6109 | } |
| 6110 | |
| 6111 | /** |
| 6112 | * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues |
| 6113 | * @adapter: board private structure |
| 6114 | * |
| 6115 | * Free all receive software resources |
| 6116 | **/ |
| 6117 | static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter) |
| 6118 | { |
| 6119 | int i; |
| 6120 | |
Alexander Duyck | 7c8ae65 | 2012-05-05 05:32:47 +0000 | [diff] [blame] | 6121 | #ifdef IXGBE_FCOE |
| 6122 | ixgbe_free_fcoe_ddp_resources(adapter); |
| 6123 | |
| 6124 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6125 | for (i = 0; i < adapter->num_rx_queues; i++) |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 6126 | if (adapter->rx_ring[i]->desc) |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6127 | ixgbe_free_rx_resources(adapter->rx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6128 | } |
| 6129 | |
| 6130 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6131 | * ixgbe_change_mtu - Change the Maximum Transfer Unit |
| 6132 | * @netdev: network interface device structure |
| 6133 | * @new_mtu: new value for maximum frame size |
| 6134 | * |
| 6135 | * Returns 0 on success, negative on failure |
| 6136 | **/ |
| 6137 | static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu) |
| 6138 | { |
| 6139 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Alexander Duyck | 655309e | 2012-02-08 07:50:35 +0000 | [diff] [blame] | 6140 | |
| 6141 | /* |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame] | 6142 | * For 82599EB we cannot allow legacy VFs to enable their receive |
| 6143 | * paths when MTU greater than 1500 is configured. So display a |
| 6144 | * warning that legacy VFs will be disabled. |
Alexander Duyck | 655309e | 2012-02-08 07:50:35 +0000 | [diff] [blame] | 6145 | */ |
| 6146 | if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && |
| 6147 | (adapter->hw.mac.type == ixgbe_mac_82599EB) && |
Jarod Wilson | 91c527a | 2016-10-17 15:54:05 -0400 | [diff] [blame] | 6148 | (new_mtu > ETH_DATA_LEN)) |
Alexander Duyck | 872844d | 2012-08-15 02:10:43 +0000 | [diff] [blame] | 6149 | e_warn(probe, "Setting MTU > 1500 will disable legacy VFs\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6150 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 6151 | e_info(probe, "changing MTU from %d to %d\n", netdev->mtu, new_mtu); |
Alexander Duyck | 655309e | 2012-02-08 07:50:35 +0000 | [diff] [blame] | 6152 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 6153 | /* must set new MTU before calling down or up */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6154 | netdev->mtu = new_mtu; |
| 6155 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 6156 | if (netif_running(netdev)) |
| 6157 | ixgbe_reinit_locked(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6158 | |
| 6159 | return 0; |
| 6160 | } |
| 6161 | |
| 6162 | /** |
| 6163 | * ixgbe_open - Called when a network interface is made active |
| 6164 | * @netdev: network interface device structure |
| 6165 | * |
| 6166 | * Returns 0 on success, negative value on failure |
| 6167 | * |
| 6168 | * The open entry point is called when a network interface is made |
| 6169 | * active by the system (IFF_UP). At this point all resources needed |
| 6170 | * for transmit and receive operations are allocated, the interrupt |
| 6171 | * handler is registered with the OS, the watchdog timer is started, |
| 6172 | * and the stack is notified that the interface is ready. |
| 6173 | **/ |
Stefan Assmann | 6c211fe1 | 2016-02-03 09:20:48 +0100 | [diff] [blame] | 6174 | int ixgbe_open(struct net_device *netdev) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6175 | { |
| 6176 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Don Skidmore | 961fac8 | 2015-06-09 16:09:47 -0700 | [diff] [blame] | 6177 | struct ixgbe_hw *hw = &adapter->hw; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 6178 | int err, queues; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6179 | |
Auke Kok | 4bebfaa | 2008-02-11 09:26:01 -0800 | [diff] [blame] | 6180 | /* disallow open during test */ |
| 6181 | if (test_bit(__IXGBE_TESTING, &adapter->state)) |
| 6182 | return -EBUSY; |
| 6183 | |
Jesse Brandeburg | 5438646 | 2009-04-17 20:44:27 +0000 | [diff] [blame] | 6184 | netif_carrier_off(netdev); |
| 6185 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6186 | /* allocate transmit descriptors */ |
| 6187 | err = ixgbe_setup_all_tx_resources(adapter); |
| 6188 | if (err) |
| 6189 | goto err_setup_tx; |
| 6190 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6191 | /* allocate receive descriptors */ |
| 6192 | err = ixgbe_setup_all_rx_resources(adapter); |
| 6193 | if (err) |
| 6194 | goto err_setup_rx; |
| 6195 | |
| 6196 | ixgbe_configure(adapter); |
| 6197 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 6198 | err = ixgbe_request_irq(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6199 | if (err) |
| 6200 | goto err_req_irq; |
| 6201 | |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 6202 | /* Notify the stack of the actual queue counts. */ |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 6203 | if (adapter->num_rx_pools > 1) |
| 6204 | queues = adapter->num_rx_queues_per_pool; |
| 6205 | else |
| 6206 | queues = adapter->num_tx_queues; |
| 6207 | |
| 6208 | err = netif_set_real_num_tx_queues(netdev, queues); |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 6209 | if (err) |
| 6210 | goto err_set_queues; |
| 6211 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 6212 | if (adapter->num_rx_pools > 1 && |
| 6213 | adapter->num_rx_queues > IXGBE_MAX_L2A_QUEUES) |
| 6214 | queues = IXGBE_MAX_L2A_QUEUES; |
| 6215 | else |
| 6216 | queues = adapter->num_rx_queues; |
| 6217 | err = netif_set_real_num_rx_queues(netdev, queues); |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 6218 | if (err) |
| 6219 | goto err_set_queues; |
| 6220 | |
Jacob Keller | 1a71ab2 | 2012-08-25 03:54:19 +0000 | [diff] [blame] | 6221 | ixgbe_ptp_init(adapter); |
Jacob Keller | 1a71ab2 | 2012-08-25 03:54:19 +0000 | [diff] [blame] | 6222 | |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 6223 | ixgbe_up_complete(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6224 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 6225 | ixgbe_clear_udp_tunnel_port(adapter, IXGBE_VXLANCTRL_ALL_UDPPORT_MASK); |
Alexander Duyck | b3a4955 | 2016-06-16 12:22:19 -0700 | [diff] [blame] | 6226 | udp_tunnel_get_rx_info(netdev); |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 6227 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6228 | return 0; |
| 6229 | |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 6230 | err_set_queues: |
| 6231 | ixgbe_free_irq(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6232 | err_req_irq: |
Mallikarjuna R Chilakala | a20a119 | 2009-03-31 21:34:44 +0000 | [diff] [blame] | 6233 | ixgbe_free_all_rx_resources(adapter); |
Don Skidmore | 961fac8 | 2015-06-09 16:09:47 -0700 | [diff] [blame] | 6234 | if (hw->phy.ops.set_phy_power && !adapter->wol) |
| 6235 | hw->phy.ops.set_phy_power(&adapter->hw, false); |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 6236 | err_setup_rx: |
Mallikarjuna R Chilakala | a20a119 | 2009-03-31 21:34:44 +0000 | [diff] [blame] | 6237 | ixgbe_free_all_tx_resources(adapter); |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 6238 | err_setup_tx: |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6239 | ixgbe_reset(adapter); |
| 6240 | |
| 6241 | return err; |
| 6242 | } |
| 6243 | |
Jacob Keller | a0cccce | 2014-05-16 05:12:29 +0000 | [diff] [blame] | 6244 | static void ixgbe_close_suspend(struct ixgbe_adapter *adapter) |
| 6245 | { |
| 6246 | ixgbe_ptp_suspend(adapter); |
| 6247 | |
Don Skidmore | 6ac7439 | 2015-06-17 17:34:31 -0400 | [diff] [blame] | 6248 | if (adapter->hw.phy.ops.enter_lplu) { |
| 6249 | adapter->hw.phy.reset_disable = true; |
| 6250 | ixgbe_down(adapter); |
| 6251 | adapter->hw.phy.ops.enter_lplu(&adapter->hw); |
| 6252 | adapter->hw.phy.reset_disable = false; |
| 6253 | } else { |
| 6254 | ixgbe_down(adapter); |
| 6255 | } |
| 6256 | |
Jacob Keller | a0cccce | 2014-05-16 05:12:29 +0000 | [diff] [blame] | 6257 | ixgbe_free_irq(adapter); |
| 6258 | |
| 6259 | ixgbe_free_all_tx_resources(adapter); |
| 6260 | ixgbe_free_all_rx_resources(adapter); |
| 6261 | } |
| 6262 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6263 | /** |
| 6264 | * ixgbe_close - Disables a network interface |
| 6265 | * @netdev: network interface device structure |
| 6266 | * |
| 6267 | * Returns 0, this is not allowed to fail |
| 6268 | * |
| 6269 | * The close entry point is called when an interface is de-activated |
| 6270 | * by the OS. The hardware is still under the drivers control, but |
| 6271 | * needs to be disabled. A global MAC reset is issued to stop the |
| 6272 | * hardware, and all transmit and receive resources are freed. |
| 6273 | **/ |
Stefan Assmann | 6c211fe1 | 2016-02-03 09:20:48 +0100 | [diff] [blame] | 6274 | int ixgbe_close(struct net_device *netdev) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6275 | { |
| 6276 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6277 | |
Jacob Keller | 1a71ab2 | 2012-08-25 03:54:19 +0000 | [diff] [blame] | 6278 | ixgbe_ptp_stop(adapter); |
Jacob Keller | 1a71ab2 | 2012-08-25 03:54:19 +0000 | [diff] [blame] | 6279 | |
Emil Tantilov | f7f37e7 | 2016-11-11 10:07:47 -0800 | [diff] [blame] | 6280 | if (netif_device_present(netdev)) |
| 6281 | ixgbe_close_suspend(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6282 | |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 6283 | ixgbe_fdir_filter_exit(adapter); |
| 6284 | |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 6285 | ixgbe_release_hw_control(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6286 | |
| 6287 | return 0; |
| 6288 | } |
| 6289 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6290 | #ifdef CONFIG_PM |
| 6291 | static int ixgbe_resume(struct pci_dev *pdev) |
| 6292 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 6293 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
| 6294 | struct net_device *netdev = adapter->netdev; |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6295 | u32 err; |
| 6296 | |
Mark Rustad | 0391bbe | 2014-02-28 15:48:55 -0800 | [diff] [blame] | 6297 | adapter->hw.hw_addr = adapter->io_addr; |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6298 | pci_set_power_state(pdev, PCI_D0); |
| 6299 | pci_restore_state(pdev); |
Don Skidmore | 656ab81 | 2009-12-23 21:19:19 -0800 | [diff] [blame] | 6300 | /* |
| 6301 | * pci_restore_state clears dev->state_saved so call |
| 6302 | * pci_save_state to restore it. |
| 6303 | */ |
| 6304 | pci_save_state(pdev); |
gouji-new | 9ce7766 | 2009-05-06 10:44:45 +0000 | [diff] [blame] | 6305 | |
| 6306 | err = pci_enable_device_mem(pdev); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6307 | if (err) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 6308 | e_dev_err("Cannot enable PCI device from suspend\n"); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6309 | return err; |
| 6310 | } |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 6311 | smp_mb__before_atomic(); |
Mark Rustad | 41c6284 | 2014-03-12 00:38:35 +0000 | [diff] [blame] | 6312 | clear_bit(__IXGBE_DISABLED, &adapter->state); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6313 | pci_set_master(pdev); |
| 6314 | |
Don Skidmore | dd4d8ca | 2009-04-29 00:22:31 -0700 | [diff] [blame] | 6315 | pci_wake_from_d3(pdev, false); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6316 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6317 | ixgbe_reset(adapter); |
| 6318 | |
Waskiewicz Jr, Peter P | 495dce1 | 2009-04-23 11:15:18 +0000 | [diff] [blame] | 6319 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0); |
| 6320 | |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 6321 | rtnl_lock(); |
| 6322 | err = ixgbe_init_interrupt_scheme(adapter); |
| 6323 | if (!err && netif_running(netdev)) |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 6324 | err = ixgbe_open(netdev); |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 6325 | |
Emil Tantilov | f7f37e7 | 2016-11-11 10:07:47 -0800 | [diff] [blame] | 6326 | |
| 6327 | if (!err) |
| 6328 | netif_device_attach(netdev); |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 6329 | rtnl_unlock(); |
| 6330 | |
Emil Tantilov | f7f37e7 | 2016-11-11 10:07:47 -0800 | [diff] [blame] | 6331 | return err; |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6332 | } |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6333 | #endif /* CONFIG_PM */ |
Rafael J. Wysocki | 9d8d05a | 2009-04-15 17:44:01 +0000 | [diff] [blame] | 6334 | |
| 6335 | static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake) |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6336 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 6337 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
| 6338 | struct net_device *netdev = adapter->netdev; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 6339 | struct ixgbe_hw *hw = &adapter->hw; |
| 6340 | u32 ctrl, fctrl; |
| 6341 | u32 wufc = adapter->wol; |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6342 | #ifdef CONFIG_PM |
| 6343 | int retval = 0; |
| 6344 | #endif |
| 6345 | |
Emil Tantilov | f7f37e7 | 2016-11-11 10:07:47 -0800 | [diff] [blame] | 6346 | rtnl_lock(); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6347 | netif_device_detach(netdev); |
| 6348 | |
Jacob Keller | a0cccce | 2014-05-16 05:12:29 +0000 | [diff] [blame] | 6349 | if (netif_running(netdev)) |
| 6350 | ixgbe_close_suspend(adapter); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6351 | |
Alexander Duyck | 5f5ae6f | 2010-11-16 19:26:52 -0800 | [diff] [blame] | 6352 | ixgbe_clear_interrupt_scheme(adapter); |
Emil Tantilov | f7f37e7 | 2016-11-11 10:07:47 -0800 | [diff] [blame] | 6353 | rtnl_unlock(); |
Alexander Duyck | 5f5ae6f | 2010-11-16 19:26:52 -0800 | [diff] [blame] | 6354 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6355 | #ifdef CONFIG_PM |
| 6356 | retval = pci_save_state(pdev); |
| 6357 | if (retval) |
| 6358 | return retval; |
Jesse Brandeburg | 4df1046 | 2009-03-13 22:15:31 +0000 | [diff] [blame] | 6359 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6360 | #endif |
Jacob Keller | f4f1040 | 2013-06-25 07:59:23 +0000 | [diff] [blame] | 6361 | if (hw->mac.ops.stop_link_on_d3) |
| 6362 | hw->mac.ops.stop_link_on_d3(hw); |
| 6363 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 6364 | if (wufc) { |
| 6365 | ixgbe_set_rx_mode(netdev); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6366 | |
Emil Tantilov | ec74a47 | 2012-09-20 03:33:56 +0000 | [diff] [blame] | 6367 | /* enable the optics for 82599 SFP+ fiber as we can WoL */ |
| 6368 | if (hw->mac.ops.enable_tx_laser) |
Don Skidmore | c509e75 | 2012-04-05 08:12:05 +0000 | [diff] [blame] | 6369 | hw->mac.ops.enable_tx_laser(hw); |
| 6370 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 6371 | /* turn on all-multi mode if wake on multicast is enabled */ |
| 6372 | if (wufc & IXGBE_WUFC_MC) { |
| 6373 | fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 6374 | fctrl |= IXGBE_FCTRL_MPE; |
| 6375 | IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl); |
| 6376 | } |
| 6377 | |
| 6378 | ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL); |
| 6379 | ctrl |= IXGBE_CTRL_GIO_DIS; |
| 6380 | IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl); |
| 6381 | |
| 6382 | IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc); |
| 6383 | } else { |
| 6384 | IXGBE_WRITE_REG(hw, IXGBE_WUC, 0); |
| 6385 | IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0); |
| 6386 | } |
| 6387 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6388 | switch (hw->mac.type) { |
| 6389 | case ixgbe_mac_82598EB: |
Don Skidmore | dd4d8ca | 2009-04-29 00:22:31 -0700 | [diff] [blame] | 6390 | pci_wake_from_d3(pdev, false); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6391 | break; |
| 6392 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 6393 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 6394 | case ixgbe_mac_X550: |
| 6395 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 6396 | case ixgbe_mac_x550em_a: |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6397 | pci_wake_from_d3(pdev, !!wufc); |
| 6398 | break; |
| 6399 | default: |
| 6400 | break; |
| 6401 | } |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6402 | |
Rafael J. Wysocki | 9d8d05a | 2009-04-15 17:44:01 +0000 | [diff] [blame] | 6403 | *enable_wake = !!wufc; |
Don Skidmore | 961fac8 | 2015-06-09 16:09:47 -0700 | [diff] [blame] | 6404 | if (hw->phy.ops.set_phy_power && !*enable_wake) |
| 6405 | hw->phy.ops.set_phy_power(hw, false); |
Rafael J. Wysocki | 9d8d05a | 2009-04-15 17:44:01 +0000 | [diff] [blame] | 6406 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6407 | ixgbe_release_hw_control(adapter); |
| 6408 | |
Mark Rustad | 41c6284 | 2014-03-12 00:38:35 +0000 | [diff] [blame] | 6409 | if (!test_and_set_bit(__IXGBE_DISABLED, &adapter->state)) |
| 6410 | pci_disable_device(pdev); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6411 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6412 | return 0; |
| 6413 | } |
| 6414 | |
Rafael J. Wysocki | 9d8d05a | 2009-04-15 17:44:01 +0000 | [diff] [blame] | 6415 | #ifdef CONFIG_PM |
| 6416 | static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state) |
| 6417 | { |
| 6418 | int retval; |
| 6419 | bool wake; |
| 6420 | |
| 6421 | retval = __ixgbe_shutdown(pdev, &wake); |
| 6422 | if (retval) |
| 6423 | return retval; |
| 6424 | |
| 6425 | if (wake) { |
| 6426 | pci_prepare_to_sleep(pdev); |
| 6427 | } else { |
| 6428 | pci_wake_from_d3(pdev, false); |
| 6429 | pci_set_power_state(pdev, PCI_D3hot); |
| 6430 | } |
| 6431 | |
| 6432 | return 0; |
| 6433 | } |
| 6434 | #endif /* CONFIG_PM */ |
| 6435 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6436 | static void ixgbe_shutdown(struct pci_dev *pdev) |
| 6437 | { |
Rafael J. Wysocki | 9d8d05a | 2009-04-15 17:44:01 +0000 | [diff] [blame] | 6438 | bool wake; |
| 6439 | |
| 6440 | __ixgbe_shutdown(pdev, &wake); |
| 6441 | |
| 6442 | if (system_state == SYSTEM_POWER_OFF) { |
| 6443 | pci_wake_from_d3(pdev, wake); |
| 6444 | pci_set_power_state(pdev, PCI_D3hot); |
| 6445 | } |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 6446 | } |
| 6447 | |
| 6448 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6449 | * ixgbe_update_stats - Update the board statistics counters. |
| 6450 | * @adapter: board private structure |
| 6451 | **/ |
| 6452 | void ixgbe_update_stats(struct ixgbe_adapter *adapter) |
| 6453 | { |
Ajit Khaparde | 2d86f13 | 2009-10-07 02:43:49 +0000 | [diff] [blame] | 6454 | struct net_device *netdev = adapter->netdev; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6455 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 6456 | struct ixgbe_hw_stats *hwstats = &adapter->stats; |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 6457 | u64 total_mpc = 0; |
| 6458 | u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 6459 | u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0; |
| 6460 | u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0; |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 6461 | u64 bytes = 0, packets = 0, hw_csum_rx_error = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6462 | |
Don Skidmore | d08935c | 2010-06-11 13:20:29 +0000 | [diff] [blame] | 6463 | if (test_bit(__IXGBE_DOWN, &adapter->state) || |
| 6464 | test_bit(__IXGBE_RESETTING, &adapter->state)) |
| 6465 | return; |
| 6466 | |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 6467 | if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) { |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 6468 | u64 rsc_count = 0; |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 6469 | u64 rsc_flush = 0; |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 6470 | for (i = 0; i < adapter->num_rx_queues; i++) { |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 6471 | rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count; |
| 6472 | rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush; |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 6473 | } |
| 6474 | adapter->rsc_total_count = rsc_count; |
| 6475 | adapter->rsc_total_flush = rsc_flush; |
PJ Waskiewicz | d51019a | 2009-03-13 22:12:48 +0000 | [diff] [blame] | 6476 | } |
| 6477 | |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 6478 | for (i = 0; i < adapter->num_rx_queues; i++) { |
| 6479 | struct ixgbe_ring *rx_ring = adapter->rx_ring[i]; |
| 6480 | non_eop_descs += rx_ring->rx_stats.non_eop_descs; |
| 6481 | alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed; |
| 6482 | alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed; |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 6483 | hw_csum_rx_error += rx_ring->rx_stats.csum_err; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 6484 | bytes += rx_ring->stats.bytes; |
| 6485 | packets += rx_ring->stats.packets; |
| 6486 | } |
Mallikarjuna R Chilakala | eb985f0 | 2009-12-15 11:56:59 +0000 | [diff] [blame] | 6487 | adapter->non_eop_descs = non_eop_descs; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 6488 | adapter->alloc_rx_page_failed = alloc_rx_page_failed; |
| 6489 | adapter->alloc_rx_buff_failed = alloc_rx_buff_failed; |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 6490 | adapter->hw_csum_rx_error = hw_csum_rx_error; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 6491 | netdev->stats.rx_bytes = bytes; |
| 6492 | netdev->stats.rx_packets = packets; |
| 6493 | |
| 6494 | bytes = 0; |
| 6495 | packets = 0; |
| 6496 | /* gather some stats to the adapter struct that are per queue */ |
| 6497 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 6498 | struct ixgbe_ring *tx_ring = adapter->tx_ring[i]; |
| 6499 | restart_queue += tx_ring->tx_stats.restart_queue; |
| 6500 | tx_busy += tx_ring->tx_stats.tx_busy; |
| 6501 | bytes += tx_ring->stats.bytes; |
| 6502 | packets += tx_ring->stats.packets; |
| 6503 | } |
| 6504 | adapter->restart_queue = restart_queue; |
| 6505 | adapter->tx_busy = tx_busy; |
| 6506 | netdev->stats.tx_bytes = bytes; |
| 6507 | netdev->stats.tx_packets = packets; |
Jesse Brandeburg | 7ca3bc5 | 2009-12-03 11:33:29 +0000 | [diff] [blame] | 6508 | |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6509 | hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS); |
Emil Tantilov | 1a70db4b | 2011-07-26 07:51:41 +0000 | [diff] [blame] | 6510 | |
| 6511 | /* 8 register reads */ |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 6512 | for (i = 0; i < 8; i++) { |
| 6513 | /* for packet buffers not used, the register should read 0 */ |
| 6514 | mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i)); |
| 6515 | missed_rx += mpc; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6516 | hwstats->mpc[i] += mpc; |
| 6517 | total_mpc += hwstats->mpc[i]; |
Emil Tantilov | 1a70db4b | 2011-07-26 07:51:41 +0000 | [diff] [blame] | 6518 | hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i)); |
| 6519 | hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6520 | switch (hw->mac.type) { |
| 6521 | case ixgbe_mac_82598EB: |
Emil Tantilov | 1a70db4b | 2011-07-26 07:51:41 +0000 | [diff] [blame] | 6522 | hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i)); |
| 6523 | hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i)); |
| 6524 | hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i)); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6525 | hwstats->pxonrxc[i] += |
| 6526 | IXGBE_READ_REG(hw, IXGBE_PXONRXC(i)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6527 | break; |
| 6528 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 6529 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 6530 | case ixgbe_mac_X550: |
| 6531 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 6532 | case ixgbe_mac_x550em_a: |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6533 | hwstats->pxonrxc[i] += |
| 6534 | IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6535 | break; |
| 6536 | default: |
| 6537 | break; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 6538 | } |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 6539 | } |
Emil Tantilov | 1a70db4b | 2011-07-26 07:51:41 +0000 | [diff] [blame] | 6540 | |
| 6541 | /*16 register reads */ |
| 6542 | for (i = 0; i < 16; i++) { |
| 6543 | hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i)); |
| 6544 | hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i)); |
| 6545 | if ((hw->mac.type == ixgbe_mac_82599EB) || |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 6546 | (hw->mac.type == ixgbe_mac_X540) || |
| 6547 | (hw->mac.type == ixgbe_mac_X550) || |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 6548 | (hw->mac.type == ixgbe_mac_X550EM_x) || |
| 6549 | (hw->mac.type == ixgbe_mac_x550em_a)) { |
Emil Tantilov | 1a70db4b | 2011-07-26 07:51:41 +0000 | [diff] [blame] | 6550 | hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i)); |
| 6551 | IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */ |
| 6552 | hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i)); |
| 6553 | IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */ |
| 6554 | } |
| 6555 | } |
| 6556 | |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6557 | hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC); |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 6558 | /* work around hardware counting issue */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6559 | hwstats->gprc -= missed_rx; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6560 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 6561 | ixgbe_update_xoff_received(adapter); |
| 6562 | |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 6563 | /* 82598 hardware only has a 32 bit counter in the high register */ |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6564 | switch (hw->mac.type) { |
| 6565 | case ixgbe_mac_82598EB: |
| 6566 | hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6567 | hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH); |
| 6568 | hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH); |
| 6569 | hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH); |
| 6570 | break; |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 6571 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 6572 | case ixgbe_mac_X550: |
| 6573 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 6574 | case ixgbe_mac_x550em_a: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 6575 | /* OS2BMC stats are X540 and later */ |
Emil Tantilov | 58f6bcf | 2011-04-21 08:43:43 +0000 | [diff] [blame] | 6576 | hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC); |
| 6577 | hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC); |
| 6578 | hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC); |
| 6579 | hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC); |
| 6580 | case ixgbe_mac_82599EB: |
Alexander Duyck | a4d4f62 | 2012-03-28 08:03:32 +0000 | [diff] [blame] | 6581 | for (i = 0; i < 16; i++) |
| 6582 | adapter->hw_rx_no_dma_resources += |
| 6583 | IXGBE_READ_REG(hw, IXGBE_QPRDC(i)); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6584 | hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6585 | IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6586 | hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6587 | IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6588 | hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6589 | IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6590 | hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6591 | hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH); |
| 6592 | hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS); |
Yi Zou | 6d45522 | 2009-05-13 13:12:16 +0000 | [diff] [blame] | 6593 | #ifdef IXGBE_FCOE |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6594 | hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC); |
| 6595 | hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC); |
| 6596 | hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC); |
| 6597 | hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC); |
| 6598 | hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC); |
| 6599 | hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC); |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 6600 | /* Add up per cpu counters for total ddp aloc fail */ |
Alexander Duyck | 5a1ee27 | 2012-05-05 17:14:28 +0000 | [diff] [blame] | 6601 | if (adapter->fcoe.ddp_pool) { |
| 6602 | struct ixgbe_fcoe *fcoe = &adapter->fcoe; |
| 6603 | struct ixgbe_fcoe_ddp_pool *ddp_pool; |
| 6604 | unsigned int cpu; |
| 6605 | u64 noddp = 0, noddp_ext_buff = 0; |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 6606 | for_each_possible_cpu(cpu) { |
Alexander Duyck | 5a1ee27 | 2012-05-05 17:14:28 +0000 | [diff] [blame] | 6607 | ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu); |
| 6608 | noddp += ddp_pool->noddp; |
| 6609 | noddp_ext_buff += ddp_pool->noddp_ext_buff; |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 6610 | } |
Alexander Duyck | 5a1ee27 | 2012-05-05 17:14:28 +0000 | [diff] [blame] | 6611 | hwstats->fcoe_noddp = noddp; |
| 6612 | hwstats->fcoe_noddp_ext_buff = noddp_ext_buff; |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 6613 | } |
Yi Zou | 6d45522 | 2009-05-13 13:12:16 +0000 | [diff] [blame] | 6614 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 6615 | break; |
| 6616 | default: |
| 6617 | break; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 6618 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6619 | bprc = IXGBE_READ_REG(hw, IXGBE_BPRC); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6620 | hwstats->bprc += bprc; |
| 6621 | hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC); |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 6622 | if (hw->mac.type == ixgbe_mac_82598EB) |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6623 | hwstats->mprc -= bprc; |
| 6624 | hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC); |
| 6625 | hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64); |
| 6626 | hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127); |
| 6627 | hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255); |
| 6628 | hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511); |
| 6629 | hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023); |
| 6630 | hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522); |
| 6631 | hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC); |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 6632 | lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6633 | hwstats->lxontxc += lxon; |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 6634 | lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6635 | hwstats->lxofftxc += lxoff; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6636 | hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC); |
| 6637 | hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC); |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 6638 | /* |
| 6639 | * 82598 errata - tx of flow control packets is included in tx counters |
| 6640 | */ |
| 6641 | xon_off_tot = lxon + lxoff; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6642 | hwstats->gptc -= xon_off_tot; |
| 6643 | hwstats->mptc -= xon_off_tot; |
| 6644 | hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN)); |
| 6645 | hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC); |
| 6646 | hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC); |
| 6647 | hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC); |
| 6648 | hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR); |
| 6649 | hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64); |
| 6650 | hwstats->ptc64 -= xon_off_tot; |
| 6651 | hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127); |
| 6652 | hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255); |
| 6653 | hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511); |
| 6654 | hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023); |
| 6655 | hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522); |
| 6656 | hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6657 | |
| 6658 | /* Fill out the OS statistics structure */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6659 | netdev->stats.multicast = hwstats->mprc; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6660 | |
| 6661 | /* Rx Errors */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6662 | netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec; |
Ajit Khaparde | 2d86f13 | 2009-10-07 02:43:49 +0000 | [diff] [blame] | 6663 | netdev->stats.rx_dropped = 0; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 6664 | netdev->stats.rx_length_errors = hwstats->rlec; |
| 6665 | netdev->stats.rx_crc_errors = hwstats->crcerrs; |
Ajit Khaparde | 2d86f13 | 2009-10-07 02:43:49 +0000 | [diff] [blame] | 6666 | netdev->stats.rx_missed_errors = total_mpc; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6667 | } |
| 6668 | |
| 6669 | /** |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 6670 | * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 6671 | * @adapter: pointer to the device adapter structure |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6672 | **/ |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 6673 | static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6674 | { |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6675 | struct ixgbe_hw *hw = &adapter->hw; |
| 6676 | int i; |
| 6677 | |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 6678 | if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT)) |
| 6679 | return; |
| 6680 | |
| 6681 | adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT; |
| 6682 | |
| 6683 | /* if interface is down do nothing */ |
| 6684 | if (test_bit(__IXGBE_DOWN, &adapter->state)) |
| 6685 | return; |
| 6686 | |
| 6687 | /* do nothing if we are not using signature filters */ |
| 6688 | if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) |
| 6689 | return; |
| 6690 | |
| 6691 | adapter->fdir_overflow++; |
| 6692 | |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6693 | if (ixgbe_reinit_fdir_tables_82599(hw) == 0) { |
| 6694 | for (i = 0; i < adapter->num_tx_queues; i++) |
Alexander Duyck | 7d637bc | 2010-11-16 19:26:56 -0800 | [diff] [blame] | 6695 | set_bit(__IXGBE_TX_FDIR_INIT_DONE, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 6696 | &(adapter->tx_ring[i]->state)); |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 6697 | /* re-enable flow director interrupts */ |
| 6698 | IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6699 | } else { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 6700 | e_err(probe, "failed to finish FDIR re-initialization, " |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 6701 | "ignored adding FDIR ATR filters\n"); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6702 | } |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6703 | } |
| 6704 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6705 | /** |
| 6706 | * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 6707 | * @adapter: pointer to the device adapter structure |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6708 | * |
| 6709 | * This function serves two purposes. First it strobes the interrupt lines |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 6710 | * in order to make certain interrupts are occurring. Secondly it sets the |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6711 | * bits needed to check for TX hangs. As a result we should immediately |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 6712 | * determine if a hang has occurred. |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6713 | */ |
| 6714 | static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter) |
| 6715 | { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6716 | struct ixgbe_hw *hw = &adapter->hw; |
| 6717 | u64 eics = 0; |
| 6718 | int i; |
| 6719 | |
Mark Rustad | 09f40ae | 2014-01-14 18:53:11 -0800 | [diff] [blame] | 6720 | /* If we're down, removing or resetting, just bail */ |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6721 | if (test_bit(__IXGBE_DOWN, &adapter->state) || |
Mark Rustad | 09f40ae | 2014-01-14 18:53:11 -0800 | [diff] [blame] | 6722 | test_bit(__IXGBE_REMOVING, &adapter->state) || |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6723 | test_bit(__IXGBE_RESETTING, &adapter->state)) |
| 6724 | return; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 6725 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6726 | /* Force detection of hung controller */ |
| 6727 | if (netif_carrier_ok(adapter->netdev)) { |
| 6728 | for (i = 0; i < adapter->num_tx_queues; i++) |
| 6729 | set_check_for_tx_hang(adapter->tx_ring[i]); |
| 6730 | } |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 6731 | |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 6732 | if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) { |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 6733 | /* |
| 6734 | * for legacy and MSI interrupts don't set any bits |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 6735 | * that are enabled for EIAM, because this operation |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 6736 | * would set *both* EIMS and EICS for any bit in EIAM |
| 6737 | */ |
| 6738 | IXGBE_WRITE_REG(hw, IXGBE_EICS, |
| 6739 | (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER)); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6740 | } else { |
| 6741 | /* get one bit for every active tx/rx interrupt vector */ |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 6742 | for (i = 0; i < adapter->num_q_vectors; i++) { |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6743 | struct ixgbe_q_vector *qv = adapter->q_vector[i]; |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 6744 | if (qv->rx.ring || qv->tx.ring) |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 6745 | eics |= BIT_ULL(i); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6746 | } |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 6747 | } |
| 6748 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6749 | /* Cause software interrupt to ensure rings are cleaned */ |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 6750 | ixgbe_irq_rearm_queues(adapter, eics); |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 6751 | } |
| 6752 | |
| 6753 | /** |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6754 | * ixgbe_watchdog_update_link - update the link status |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 6755 | * @adapter: pointer to the device adapter structure |
| 6756 | * @link_speed: pointer to a u32 to store the link_speed |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 6757 | **/ |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6758 | static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter) |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 6759 | { |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 6760 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6761 | u32 link_speed = adapter->link_speed; |
| 6762 | bool link_up = adapter->link_up; |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 6763 | bool pfc_en = adapter->dcb_cfg.pfc_mode_enable; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6764 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6765 | if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)) |
| 6766 | return; |
| 6767 | |
| 6768 | if (hw->mac.ops.check_link) { |
| 6769 | hw->mac.ops.check_link(hw, &link_speed, &link_up, false); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6770 | } else { |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6771 | /* always assume link is up, if no check link function */ |
| 6772 | link_speed = IXGBE_LINK_SPEED_10GB_FULL; |
| 6773 | link_up = true; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6774 | } |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 6775 | |
| 6776 | if (adapter->ixgbe_ieee_pfc) |
| 6777 | pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en); |
| 6778 | |
Alexander Duyck | 3ebe8fd | 2012-04-25 04:36:38 +0000 | [diff] [blame] | 6779 | if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) { |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 6780 | hw->mac.ops.fc_enable(hw); |
Alexander Duyck | 3ebe8fd | 2012-04-25 04:36:38 +0000 | [diff] [blame] | 6781 | ixgbe_set_rx_drop_en(adapter); |
| 6782 | } |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6783 | |
| 6784 | if (link_up || |
| 6785 | time_after(jiffies, (adapter->link_check_timeout + |
| 6786 | IXGBE_TRY_LINK_TIMEOUT))) { |
| 6787 | adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE; |
| 6788 | IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC); |
| 6789 | IXGBE_WRITE_FLUSH(hw); |
| 6790 | } |
| 6791 | |
| 6792 | adapter->link_up = link_up; |
| 6793 | adapter->link_speed = link_speed; |
| 6794 | } |
| 6795 | |
Alexander Duyck | 107d301 | 2012-10-02 00:17:03 +0000 | [diff] [blame] | 6796 | static void ixgbe_update_default_up(struct ixgbe_adapter *adapter) |
| 6797 | { |
| 6798 | #ifdef CONFIG_IXGBE_DCB |
| 6799 | struct net_device *netdev = adapter->netdev; |
| 6800 | struct dcb_app app = { |
| 6801 | .selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE, |
| 6802 | .protocol = 0, |
| 6803 | }; |
| 6804 | u8 up = 0; |
| 6805 | |
| 6806 | if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_IEEE) |
| 6807 | up = dcb_ieee_getapp_mask(netdev, &app); |
| 6808 | |
| 6809 | adapter->default_up = (up > 1) ? (ffs(up) - 1) : 0; |
| 6810 | #endif |
| 6811 | } |
| 6812 | |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 6813 | static int ixgbe_enable_macvlan(struct net_device *upper, void *data) |
| 6814 | { |
| 6815 | if (netif_is_macvlan(upper)) { |
| 6816 | struct macvlan_dev *vlan = netdev_priv(upper); |
| 6817 | |
| 6818 | if (vlan->fwd_priv) |
| 6819 | netif_tx_wake_all_queues(upper); |
| 6820 | } |
| 6821 | |
| 6822 | return 0; |
| 6823 | } |
| 6824 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6825 | /** |
| 6826 | * ixgbe_watchdog_link_is_up - update netif_carrier status and |
| 6827 | * print link up message |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 6828 | * @adapter: pointer to the device adapter structure |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6829 | **/ |
| 6830 | static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter) |
| 6831 | { |
| 6832 | struct net_device *netdev = adapter->netdev; |
| 6833 | struct ixgbe_hw *hw = &adapter->hw; |
| 6834 | u32 link_speed = adapter->link_speed; |
Mark Rustad | 454adb0 | 2015-07-10 14:19:22 -0700 | [diff] [blame] | 6835 | const char *speed_str; |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6836 | bool flow_rx, flow_tx; |
| 6837 | |
| 6838 | /* only continue if link was previously down */ |
| 6839 | if (netif_carrier_ok(netdev)) |
| 6840 | return; |
| 6841 | |
| 6842 | adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP; |
| 6843 | |
| 6844 | switch (hw->mac.type) { |
| 6845 | case ixgbe_mac_82598EB: { |
| 6846 | u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 6847 | u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS); |
| 6848 | flow_rx = !!(frctl & IXGBE_FCTRL_RFCE); |
| 6849 | flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X); |
| 6850 | } |
| 6851 | break; |
| 6852 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 6853 | case ixgbe_mac_X550: |
| 6854 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 6855 | case ixgbe_mac_x550em_a: |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6856 | case ixgbe_mac_82599EB: { |
| 6857 | u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN); |
| 6858 | u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG); |
| 6859 | flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE); |
| 6860 | flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X); |
| 6861 | } |
| 6862 | break; |
| 6863 | default: |
| 6864 | flow_tx = false; |
| 6865 | flow_rx = false; |
| 6866 | break; |
| 6867 | } |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 6868 | |
Jacob Keller | 6cb562d | 2012-12-05 07:24:41 +0000 | [diff] [blame] | 6869 | adapter->last_rx_ptp_check = jiffies; |
| 6870 | |
Jacob Keller | 8fecf67 | 2013-06-21 08:14:32 +0000 | [diff] [blame] | 6871 | if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state)) |
Jacob Keller | 1a71ab2 | 2012-08-25 03:54:19 +0000 | [diff] [blame] | 6872 | ixgbe_ptp_start_cyclecounter(adapter); |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 6873 | |
Mark Rustad | 454adb0 | 2015-07-10 14:19:22 -0700 | [diff] [blame] | 6874 | switch (link_speed) { |
| 6875 | case IXGBE_LINK_SPEED_10GB_FULL: |
| 6876 | speed_str = "10 Gbps"; |
| 6877 | break; |
| 6878 | case IXGBE_LINK_SPEED_2_5GB_FULL: |
| 6879 | speed_str = "2.5 Gbps"; |
| 6880 | break; |
| 6881 | case IXGBE_LINK_SPEED_1GB_FULL: |
| 6882 | speed_str = "1 Gbps"; |
| 6883 | break; |
| 6884 | case IXGBE_LINK_SPEED_100_FULL: |
| 6885 | speed_str = "100 Mbps"; |
| 6886 | break; |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 6887 | case IXGBE_LINK_SPEED_10_FULL: |
| 6888 | speed_str = "10 Mbps"; |
| 6889 | break; |
Mark Rustad | 454adb0 | 2015-07-10 14:19:22 -0700 | [diff] [blame] | 6890 | default: |
| 6891 | speed_str = "unknown speed"; |
| 6892 | break; |
| 6893 | } |
| 6894 | e_info(drv, "NIC Link is Up %s, Flow Control: %s\n", speed_str, |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6895 | ((flow_rx && flow_tx) ? "RX/TX" : |
| 6896 | (flow_rx ? "RX" : |
| 6897 | (flow_tx ? "TX" : "None")))); |
| 6898 | |
| 6899 | netif_carrier_on(netdev); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6900 | ixgbe_check_vf_rate_limit(adapter); |
Alexander Duyck | befa2af | 2012-05-05 05:30:38 +0000 | [diff] [blame] | 6901 | |
Emil Tantilov | cdc04dc | 2014-03-20 03:47:53 +0000 | [diff] [blame] | 6902 | /* enable transmits */ |
| 6903 | netif_tx_wake_all_queues(adapter->netdev); |
| 6904 | |
| 6905 | /* enable any upper devices */ |
| 6906 | rtnl_lock(); |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 6907 | netdev_walk_all_upper_dev_rcu(adapter->netdev, |
| 6908 | ixgbe_enable_macvlan, NULL); |
Emil Tantilov | cdc04dc | 2014-03-20 03:47:53 +0000 | [diff] [blame] | 6909 | rtnl_unlock(); |
| 6910 | |
Alexander Duyck | 107d301 | 2012-10-02 00:17:03 +0000 | [diff] [blame] | 6911 | /* update the default user priority for VFs */ |
| 6912 | ixgbe_update_default_up(adapter); |
| 6913 | |
Alexander Duyck | befa2af | 2012-05-05 05:30:38 +0000 | [diff] [blame] | 6914 | /* ping all the active vfs to let them know link has changed */ |
| 6915 | ixgbe_ping_all_vfs(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6916 | } |
| 6917 | |
| 6918 | /** |
| 6919 | * ixgbe_watchdog_link_is_down - update netif_carrier status and |
| 6920 | * print link down message |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 6921 | * @adapter: pointer to the adapter structure |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6922 | **/ |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 6923 | static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter) |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6924 | { |
| 6925 | struct net_device *netdev = adapter->netdev; |
| 6926 | struct ixgbe_hw *hw = &adapter->hw; |
| 6927 | |
| 6928 | adapter->link_up = false; |
| 6929 | adapter->link_speed = 0; |
| 6930 | |
| 6931 | /* only continue if link was up previously */ |
| 6932 | if (!netif_carrier_ok(netdev)) |
| 6933 | return; |
| 6934 | |
| 6935 | /* poll for SFP+ cable when link is down */ |
| 6936 | if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB) |
| 6937 | adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP; |
| 6938 | |
Jacob Keller | 8fecf67 | 2013-06-21 08:14:32 +0000 | [diff] [blame] | 6939 | if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state)) |
Jacob Keller | 1a71ab2 | 2012-08-25 03:54:19 +0000 | [diff] [blame] | 6940 | ixgbe_ptp_start_cyclecounter(adapter); |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 6941 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6942 | e_info(drv, "NIC Link is Down\n"); |
| 6943 | netif_carrier_off(netdev); |
Alexander Duyck | befa2af | 2012-05-05 05:30:38 +0000 | [diff] [blame] | 6944 | |
| 6945 | /* ping all the active vfs to let them know link has changed */ |
| 6946 | ixgbe_ping_all_vfs(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6947 | } |
| 6948 | |
Emil Tantilov | 07923c1 | 2014-08-12 07:12:08 +0000 | [diff] [blame] | 6949 | static bool ixgbe_ring_tx_pending(struct ixgbe_adapter *adapter) |
| 6950 | { |
| 6951 | int i; |
| 6952 | |
| 6953 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 6954 | struct ixgbe_ring *tx_ring = adapter->tx_ring[i]; |
| 6955 | |
| 6956 | if (tx_ring->next_to_use != tx_ring->next_to_clean) |
| 6957 | return true; |
| 6958 | } |
| 6959 | |
| 6960 | return false; |
| 6961 | } |
| 6962 | |
| 6963 | static bool ixgbe_vf_tx_pending(struct ixgbe_adapter *adapter) |
| 6964 | { |
| 6965 | struct ixgbe_hw *hw = &adapter->hw; |
| 6966 | struct ixgbe_ring_feature *vmdq = &adapter->ring_feature[RING_F_VMDQ]; |
| 6967 | u32 q_per_pool = __ALIGN_MASK(1, ~vmdq->mask); |
| 6968 | |
| 6969 | int i, j; |
| 6970 | |
| 6971 | if (!adapter->num_vfs) |
| 6972 | return false; |
| 6973 | |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 6974 | /* resetting the PF is only needed for MAC before X550 */ |
| 6975 | if (hw->mac.type >= ixgbe_mac_X550) |
| 6976 | return false; |
| 6977 | |
Emil Tantilov | 07923c1 | 2014-08-12 07:12:08 +0000 | [diff] [blame] | 6978 | for (i = 0; i < adapter->num_vfs; i++) { |
| 6979 | for (j = 0; j < q_per_pool; j++) { |
| 6980 | u32 h, t; |
| 6981 | |
| 6982 | h = IXGBE_READ_REG(hw, IXGBE_PVFTDHN(q_per_pool, i, j)); |
| 6983 | t = IXGBE_READ_REG(hw, IXGBE_PVFTDTN(q_per_pool, i, j)); |
| 6984 | |
| 6985 | if (h != t) |
| 6986 | return true; |
| 6987 | } |
| 6988 | } |
| 6989 | |
| 6990 | return false; |
| 6991 | } |
| 6992 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6993 | /** |
| 6994 | * ixgbe_watchdog_flush_tx - flush queues on link down |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 6995 | * @adapter: pointer to the device adapter structure |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6996 | **/ |
| 6997 | static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter) |
| 6998 | { |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 6999 | if (!netif_carrier_ok(adapter->netdev)) { |
Emil Tantilov | 07923c1 | 2014-08-12 07:12:08 +0000 | [diff] [blame] | 7000 | if (ixgbe_ring_tx_pending(adapter) || |
| 7001 | ixgbe_vf_tx_pending(adapter)) { |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7002 | /* We've lost link, so the controller stops DMA, |
| 7003 | * but we've got queued Tx work that's never going |
| 7004 | * to get done, so reset controller to flush Tx. |
| 7005 | * (Do the reset outside of interrupt context). |
| 7006 | */ |
Jacob Keller | 12ff3f3 | 2012-12-01 07:57:17 +0000 | [diff] [blame] | 7007 | e_warn(drv, "initiating reset to clear Tx work after link loss\n"); |
Emil Tantilov | 57ca2a4 | 2016-07-29 14:46:31 -0700 | [diff] [blame] | 7008 | set_bit(__IXGBE_RESET_REQUESTED, &adapter->state); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7009 | } |
| 7010 | } |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7011 | } |
| 7012 | |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 7013 | #ifdef CONFIG_PCI_IOV |
| 7014 | static inline void ixgbe_issue_vf_flr(struct ixgbe_adapter *adapter, |
| 7015 | struct pci_dev *vfdev) |
| 7016 | { |
| 7017 | if (!pci_wait_for_pending_transaction(vfdev)) |
| 7018 | e_dev_warn("Issuing VFLR with pending transactions\n"); |
| 7019 | |
| 7020 | e_dev_err("Issuing VFLR for VF %s\n", pci_name(vfdev)); |
| 7021 | pcie_capability_set_word(vfdev, PCI_EXP_DEVCTL, PCI_EXP_DEVCTL_BCR_FLR); |
| 7022 | |
| 7023 | msleep(100); |
| 7024 | } |
| 7025 | |
| 7026 | static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter) |
| 7027 | { |
| 7028 | struct ixgbe_hw *hw = &adapter->hw; |
| 7029 | struct pci_dev *pdev = adapter->pdev; |
Mark Rustad | 988d130 | 2015-10-30 15:29:34 -0700 | [diff] [blame] | 7030 | unsigned int vf; |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 7031 | u32 gpc; |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 7032 | |
| 7033 | if (!(netif_carrier_ok(adapter->netdev))) |
| 7034 | return; |
| 7035 | |
| 7036 | gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC); |
| 7037 | if (gpc) /* If incrementing then no need for the check below */ |
| 7038 | return; |
| 7039 | /* Check to see if a bad DMA write target from an errant or |
| 7040 | * malicious VF has caused a PCIe error. If so then we can |
| 7041 | * issue a VFLR to the offending VF(s) and then resume without |
| 7042 | * requesting a full slot reset. |
| 7043 | */ |
| 7044 | |
| 7045 | if (!pdev) |
| 7046 | return; |
| 7047 | |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 7048 | /* check status reg for all VFs owned by this PF */ |
Mark Rustad | 988d130 | 2015-10-30 15:29:34 -0700 | [diff] [blame] | 7049 | for (vf = 0; vf < adapter->num_vfs; ++vf) { |
| 7050 | struct pci_dev *vfdev = adapter->vfinfo[vf].vfdev; |
| 7051 | u16 status_reg; |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 7052 | |
Mark Rustad | 988d130 | 2015-10-30 15:29:34 -0700 | [diff] [blame] | 7053 | if (!vfdev) |
| 7054 | continue; |
| 7055 | pci_read_config_word(vfdev, PCI_STATUS, &status_reg); |
| 7056 | if (status_reg != IXGBE_FAILED_READ_CFG_WORD && |
| 7057 | status_reg & PCI_STATUS_REC_MASTER_ABORT) |
| 7058 | ixgbe_issue_vf_flr(adapter, vfdev); |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 7059 | } |
| 7060 | } |
| 7061 | |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 7062 | static void ixgbe_spoof_check(struct ixgbe_adapter *adapter) |
| 7063 | { |
| 7064 | u32 ssvpc; |
| 7065 | |
Greg Rose | 0584d99 | 2012-08-08 00:00:58 +0000 | [diff] [blame] | 7066 | /* Do not perform spoof check for 82598 or if not in IOV mode */ |
| 7067 | if (adapter->hw.mac.type == ixgbe_mac_82598EB || |
| 7068 | adapter->num_vfs == 0) |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 7069 | return; |
| 7070 | |
| 7071 | ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC); |
| 7072 | |
| 7073 | /* |
| 7074 | * ssvpc register is cleared on read, if zero then no |
| 7075 | * spoofed packets in the last interval. |
| 7076 | */ |
| 7077 | if (!ssvpc) |
| 7078 | return; |
| 7079 | |
Emil Tantilov | d6ea075 | 2012-08-08 06:28:37 +0000 | [diff] [blame] | 7080 | e_warn(drv, "%u Spoofed packets detected\n", ssvpc); |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 7081 | } |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 7082 | #else |
| 7083 | static void ixgbe_spoof_check(struct ixgbe_adapter __always_unused *adapter) |
| 7084 | { |
| 7085 | } |
| 7086 | |
| 7087 | static void |
| 7088 | ixgbe_check_for_bad_vf(struct ixgbe_adapter __always_unused *adapter) |
| 7089 | { |
| 7090 | } |
| 7091 | #endif /* CONFIG_PCI_IOV */ |
| 7092 | |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 7093 | |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7094 | /** |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7095 | * ixgbe_watchdog_subtask - check and bring link up |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 7096 | * @adapter: pointer to the device adapter structure |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 7097 | **/ |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7098 | static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter) |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 7099 | { |
Mark Rustad | 09f40ae | 2014-01-14 18:53:11 -0800 | [diff] [blame] | 7100 | /* if interface is down, removing or resetting, do nothing */ |
Emil Tantilov | 7edebf9 | 2011-08-27 07:18:37 +0000 | [diff] [blame] | 7101 | if (test_bit(__IXGBE_DOWN, &adapter->state) || |
Mark Rustad | 09f40ae | 2014-01-14 18:53:11 -0800 | [diff] [blame] | 7102 | test_bit(__IXGBE_REMOVING, &adapter->state) || |
Emil Tantilov | 7edebf9 | 2011-08-27 07:18:37 +0000 | [diff] [blame] | 7103 | test_bit(__IXGBE_RESETTING, &adapter->state)) |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7104 | return; |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 7105 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7106 | ixgbe_watchdog_update_link(adapter); |
John Fastabend | 10eec95 | 2010-02-03 14:23:32 +0000 | [diff] [blame] | 7107 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7108 | if (adapter->link_up) |
| 7109 | ixgbe_watchdog_link_is_up(adapter); |
| 7110 | else |
| 7111 | ixgbe_watchdog_link_is_down(adapter); |
Nelson, Shannon | bc59fcd | 2009-04-27 22:43:12 +0000 | [diff] [blame] | 7112 | |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 7113 | ixgbe_check_for_bad_vf(adapter); |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 7114 | ixgbe_spoof_check(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7115 | ixgbe_update_stats(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7116 | |
| 7117 | ixgbe_watchdog_flush_tx(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7118 | } |
| 7119 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7120 | /** |
| 7121 | * ixgbe_sfp_detection_subtask - poll for SFP+ cable |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 7122 | * @adapter: the ixgbe adapter structure |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7123 | **/ |
| 7124 | static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter) |
| 7125 | { |
| 7126 | struct ixgbe_hw *hw = &adapter->hw; |
| 7127 | s32 err; |
| 7128 | |
| 7129 | /* not searching for SFP so there is nothing to do here */ |
| 7130 | if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) && |
| 7131 | !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET)) |
| 7132 | return; |
| 7133 | |
Mark Rustad | 58e7cd2 | 2015-08-08 16:18:48 -0700 | [diff] [blame] | 7134 | if (adapter->sfp_poll_time && |
| 7135 | time_after(adapter->sfp_poll_time, jiffies)) |
| 7136 | return; /* If not yet time to poll for SFP */ |
| 7137 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7138 | /* someone else is in init, wait until next service event */ |
| 7139 | if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state)) |
| 7140 | return; |
| 7141 | |
Mark Rustad | 58e7cd2 | 2015-08-08 16:18:48 -0700 | [diff] [blame] | 7142 | adapter->sfp_poll_time = jiffies + IXGBE_SFP_POLL_JIFFIES - 1; |
| 7143 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7144 | err = hw->phy.ops.identify_sfp(hw); |
| 7145 | if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) |
| 7146 | goto sfp_out; |
| 7147 | |
| 7148 | if (err == IXGBE_ERR_SFP_NOT_PRESENT) { |
| 7149 | /* If no cable is present, then we need to reset |
| 7150 | * the next time we find a good cable. */ |
| 7151 | adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET; |
| 7152 | } |
| 7153 | |
| 7154 | /* exit on error */ |
| 7155 | if (err) |
| 7156 | goto sfp_out; |
| 7157 | |
| 7158 | /* exit if reset not needed */ |
| 7159 | if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET)) |
| 7160 | goto sfp_out; |
| 7161 | |
| 7162 | adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET; |
| 7163 | |
| 7164 | /* |
| 7165 | * A module may be identified correctly, but the EEPROM may not have |
| 7166 | * support for that module. setup_sfp() will fail in that case, so |
| 7167 | * we should not allow that module to load. |
| 7168 | */ |
| 7169 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 7170 | err = hw->phy.ops.reset(hw); |
| 7171 | else |
| 7172 | err = hw->mac.ops.setup_sfp(hw); |
| 7173 | |
| 7174 | if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) |
| 7175 | goto sfp_out; |
| 7176 | |
| 7177 | adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG; |
| 7178 | e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type); |
| 7179 | |
| 7180 | sfp_out: |
| 7181 | clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state); |
| 7182 | |
| 7183 | if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) && |
| 7184 | (adapter->netdev->reg_state == NETREG_REGISTERED)) { |
| 7185 | e_dev_err("failed to initialize because an unsupported " |
| 7186 | "SFP+ module type was detected.\n"); |
| 7187 | e_dev_err("Reload the driver after installing a " |
| 7188 | "supported module.\n"); |
| 7189 | unregister_netdev(adapter->netdev); |
| 7190 | } |
| 7191 | } |
| 7192 | |
| 7193 | /** |
| 7194 | * ixgbe_sfp_link_config_subtask - set up link SFP after module install |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 7195 | * @adapter: the ixgbe adapter structure |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7196 | **/ |
| 7197 | static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter) |
| 7198 | { |
| 7199 | struct ixgbe_hw *hw = &adapter->hw; |
Josh Hay | 3d29226 | 2012-12-15 03:28:19 +0000 | [diff] [blame] | 7200 | u32 speed; |
| 7201 | bool autoneg = false; |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7202 | |
| 7203 | if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG)) |
| 7204 | return; |
| 7205 | |
| 7206 | /* someone else is in init, wait until next service event */ |
| 7207 | if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state)) |
| 7208 | return; |
| 7209 | |
| 7210 | adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG; |
| 7211 | |
Josh Hay | 3d29226 | 2012-12-15 03:28:19 +0000 | [diff] [blame] | 7212 | speed = hw->phy.autoneg_advertised; |
Emil Tantilov | ed33ff6 | 2013-08-30 07:55:24 +0000 | [diff] [blame] | 7213 | if ((!speed) && (hw->mac.ops.get_link_capabilities)) { |
Josh Hay | 3d29226 | 2012-12-15 03:28:19 +0000 | [diff] [blame] | 7214 | hw->mac.ops.get_link_capabilities(hw, &speed, &autoneg); |
Emil Tantilov | ed33ff6 | 2013-08-30 07:55:24 +0000 | [diff] [blame] | 7215 | |
| 7216 | /* setup the highest link when no autoneg */ |
| 7217 | if (!autoneg) { |
| 7218 | if (speed & IXGBE_LINK_SPEED_10GB_FULL) |
| 7219 | speed = IXGBE_LINK_SPEED_10GB_FULL; |
| 7220 | } |
| 7221 | } |
| 7222 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7223 | if (hw->mac.ops.setup_link) |
Josh Hay | fd0326f | 2012-12-15 03:28:30 +0000 | [diff] [blame] | 7224 | hw->mac.ops.setup_link(hw, speed, true); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7225 | |
| 7226 | adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE; |
| 7227 | adapter->link_check_timeout = jiffies; |
| 7228 | clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state); |
| 7229 | } |
| 7230 | |
| 7231 | /** |
| 7232 | * ixgbe_service_timer - Timer Call-back |
| 7233 | * @data: pointer to adapter cast into an unsigned long |
| 7234 | **/ |
| 7235 | static void ixgbe_service_timer(unsigned long data) |
| 7236 | { |
| 7237 | struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data; |
| 7238 | unsigned long next_event_offset; |
| 7239 | |
| 7240 | /* poll faster when waiting for link */ |
| 7241 | if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE) |
| 7242 | next_event_offset = HZ / 10; |
| 7243 | else |
| 7244 | next_event_offset = HZ * 2; |
| 7245 | |
| 7246 | /* Reset the timer */ |
| 7247 | mod_timer(&adapter->service_timer, next_event_offset + jiffies); |
| 7248 | |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 7249 | ixgbe_service_event_schedule(adapter); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7250 | } |
| 7251 | |
Don Skidmore | 597f22d | 2015-06-09 16:52:02 -0700 | [diff] [blame] | 7252 | static void ixgbe_phy_interrupt_subtask(struct ixgbe_adapter *adapter) |
| 7253 | { |
| 7254 | struct ixgbe_hw *hw = &adapter->hw; |
| 7255 | u32 status; |
| 7256 | |
| 7257 | if (!(adapter->flags2 & IXGBE_FLAG2_PHY_INTERRUPT)) |
| 7258 | return; |
| 7259 | |
| 7260 | adapter->flags2 &= ~IXGBE_FLAG2_PHY_INTERRUPT; |
| 7261 | |
| 7262 | if (!hw->phy.ops.handle_lasi) |
| 7263 | return; |
| 7264 | |
| 7265 | status = hw->phy.ops.handle_lasi(&adapter->hw); |
| 7266 | if (status != IXGBE_ERR_OVERTEMP) |
| 7267 | return; |
| 7268 | |
| 7269 | e_crit(drv, "%s\n", ixgbe_overheat_msg); |
| 7270 | } |
| 7271 | |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 7272 | static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter) |
| 7273 | { |
Emil Tantilov | 57ca2a4 | 2016-07-29 14:46:31 -0700 | [diff] [blame] | 7274 | if (!test_and_clear_bit(__IXGBE_RESET_REQUESTED, &adapter->state)) |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 7275 | return; |
| 7276 | |
Mark Rustad | 09f40ae | 2014-01-14 18:53:11 -0800 | [diff] [blame] | 7277 | /* If we're already down, removing or resetting, just bail */ |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 7278 | if (test_bit(__IXGBE_DOWN, &adapter->state) || |
Mark Rustad | 09f40ae | 2014-01-14 18:53:11 -0800 | [diff] [blame] | 7279 | test_bit(__IXGBE_REMOVING, &adapter->state) || |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 7280 | test_bit(__IXGBE_RESETTING, &adapter->state)) |
| 7281 | return; |
| 7282 | |
| 7283 | ixgbe_dump(adapter); |
| 7284 | netdev_err(adapter->netdev, "Reset adapter\n"); |
| 7285 | adapter->tx_timeout_count++; |
| 7286 | |
John Fastabend | 8f4c5c9 | 2014-01-16 02:30:05 -0800 | [diff] [blame] | 7287 | rtnl_lock(); |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 7288 | ixgbe_reinit_locked(adapter); |
John Fastabend | 8f4c5c9 | 2014-01-16 02:30:05 -0800 | [diff] [blame] | 7289 | rtnl_unlock(); |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 7290 | } |
| 7291 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7292 | /** |
| 7293 | * ixgbe_service_task - manages and runs subtasks |
| 7294 | * @work: pointer to work_struct containing our data |
| 7295 | **/ |
| 7296 | static void ixgbe_service_task(struct work_struct *work) |
| 7297 | { |
| 7298 | struct ixgbe_adapter *adapter = container_of(work, |
| 7299 | struct ixgbe_adapter, |
| 7300 | service_task); |
Mark Rustad | b0483c8 | 2014-01-14 18:53:17 -0800 | [diff] [blame] | 7301 | if (ixgbe_removed(adapter->hw.hw_addr)) { |
| 7302 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 7303 | rtnl_lock(); |
| 7304 | ixgbe_down(adapter); |
| 7305 | rtnl_unlock(); |
| 7306 | } |
| 7307 | ixgbe_service_event_complete(adapter); |
| 7308 | return; |
| 7309 | } |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 7310 | if (adapter->flags2 & IXGBE_FLAG2_UDP_TUN_REREG_NEEDED) { |
Alexander Duyck | b3a4955 | 2016-06-16 12:22:19 -0700 | [diff] [blame] | 7311 | rtnl_lock(); |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 7312 | adapter->flags2 &= ~IXGBE_FLAG2_UDP_TUN_REREG_NEEDED; |
Alexander Duyck | b3a4955 | 2016-06-16 12:22:19 -0700 | [diff] [blame] | 7313 | udp_tunnel_get_rx_info(adapter->netdev); |
| 7314 | rtnl_unlock(); |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 7315 | } |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 7316 | ixgbe_reset_subtask(adapter); |
Don Skidmore | 597f22d | 2015-06-09 16:52:02 -0700 | [diff] [blame] | 7317 | ixgbe_phy_interrupt_subtask(adapter); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7318 | ixgbe_sfp_detection_subtask(adapter); |
| 7319 | ixgbe_sfp_link_config_subtask(adapter); |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 7320 | ixgbe_check_overtemp_subtask(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7321 | ixgbe_watchdog_subtask(adapter); |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 7322 | ixgbe_fdir_reinit_subtask(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 7323 | ixgbe_check_hang_subtask(adapter); |
Jacob Keller | 891dc08 | 2012-12-05 07:24:46 +0000 | [diff] [blame] | 7324 | |
Jacob Keller | 8fecf67 | 2013-06-21 08:14:32 +0000 | [diff] [blame] | 7325 | if (test_bit(__IXGBE_PTP_RUNNING, &adapter->state)) { |
Jacob Keller | 891dc08 | 2012-12-05 07:24:46 +0000 | [diff] [blame] | 7326 | ixgbe_ptp_overflow_check(adapter); |
| 7327 | ixgbe_ptp_rx_hang(adapter); |
| 7328 | } |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7329 | |
| 7330 | ixgbe_service_event_complete(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7331 | } |
| 7332 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 7333 | static int ixgbe_tso(struct ixgbe_ring *tx_ring, |
| 7334 | struct ixgbe_tx_buffer *first, |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7335 | u8 *hdr_len) |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7336 | { |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7337 | u32 vlan_macip_lens, type_tucmd, mss_l4len_idx; |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 7338 | struct sk_buff *skb = first->skb; |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7339 | union { |
| 7340 | struct iphdr *v4; |
| 7341 | struct ipv6hdr *v6; |
| 7342 | unsigned char *hdr; |
| 7343 | } ip; |
| 7344 | union { |
| 7345 | struct tcphdr *tcp; |
| 7346 | unsigned char *hdr; |
| 7347 | } l4; |
| 7348 | u32 paylen, l4_offset; |
Francois Romieu | 2049e1f | 2014-03-30 03:14:27 +0000 | [diff] [blame] | 7349 | int err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7350 | |
Alexander Duyck | 8f4fbb9 | 2012-10-30 06:01:40 +0000 | [diff] [blame] | 7351 | if (skb->ip_summed != CHECKSUM_PARTIAL) |
| 7352 | return 0; |
| 7353 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7354 | if (!skb_is_gso(skb)) |
| 7355 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7356 | |
Francois Romieu | 2049e1f | 2014-03-30 03:14:27 +0000 | [diff] [blame] | 7357 | err = skb_cow_head(skb, 0); |
| 7358 | if (err < 0) |
| 7359 | return err; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 7360 | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7361 | ip.hdr = skb_network_header(skb); |
| 7362 | l4.hdr = skb_checksum_start(skb); |
| 7363 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7364 | /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */ |
| 7365 | type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP; |
| 7366 | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7367 | /* initialize outer IP header fields */ |
| 7368 | if (ip.v4->version == 4) { |
Alexander Duyck | c54cdc3 | 2016-11-28 10:42:29 -0500 | [diff] [blame] | 7369 | unsigned char *csum_start = skb_checksum_start(skb); |
| 7370 | unsigned char *trans_start = ip.hdr + (ip.v4->ihl * 4); |
| 7371 | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7372 | /* IP header will have to cancel out any data that |
| 7373 | * is not a part of the outer IP header |
| 7374 | */ |
Alexander Duyck | c54cdc3 | 2016-11-28 10:42:29 -0500 | [diff] [blame] | 7375 | ip.v4->check = csum_fold(csum_partial(trans_start, |
| 7376 | csum_start - trans_start, |
| 7377 | 0)); |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7378 | type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4; |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7379 | |
| 7380 | ip.v4->tot_len = 0; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7381 | first->tx_flags |= IXGBE_TX_FLAGS_TSO | |
| 7382 | IXGBE_TX_FLAGS_CSUM | |
| 7383 | IXGBE_TX_FLAGS_IPV4; |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7384 | } else { |
| 7385 | ip.v6->payload_len = 0; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7386 | first->tx_flags |= IXGBE_TX_FLAGS_TSO | |
| 7387 | IXGBE_TX_FLAGS_CSUM; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7388 | } |
| 7389 | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7390 | /* determine offset of inner transport header */ |
| 7391 | l4_offset = l4.hdr - skb->data; |
| 7392 | |
| 7393 | /* compute length of segmentation header */ |
| 7394 | *hdr_len = (l4.tcp->doff * 4) + l4_offset; |
| 7395 | |
| 7396 | /* remove payload length from inner checksum */ |
| 7397 | paylen = skb->len - l4_offset; |
| 7398 | csum_replace_by_diff(&l4.tcp->check, htonl(paylen)); |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7399 | |
Alexander Duyck | 091a624 | 2012-02-08 07:51:01 +0000 | [diff] [blame] | 7400 | /* update gso size and bytecount with header size */ |
| 7401 | first->gso_segs = skb_shinfo(skb)->gso_segs; |
| 7402 | first->bytecount += (first->gso_segs - 1) * *hdr_len; |
| 7403 | |
Alexander Duyck | c44f5f5 | 2012-10-30 06:01:45 +0000 | [diff] [blame] | 7404 | /* mss_l4len_id: use 0 as index for TSO */ |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7405 | mss_l4len_idx = (*hdr_len - l4_offset) << IXGBE_ADVTXD_L4LEN_SHIFT; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7406 | mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7407 | |
| 7408 | /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */ |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 7409 | vlan_macip_lens = l4.hdr - ip.hdr; |
| 7410 | vlan_macip_lens |= (ip.hdr - skb->data) << IXGBE_ADVTXD_MACLEN_SHIFT; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7411 | vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7412 | |
| 7413 | ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd, |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7414 | mss_l4len_idx); |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7415 | |
| 7416 | return 1; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 7417 | } |
| 7418 | |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 7419 | static inline bool ixgbe_ipv6_csum_is_sctp(struct sk_buff *skb) |
| 7420 | { |
| 7421 | unsigned int offset = 0; |
| 7422 | |
| 7423 | ipv6_find_hdr(skb, &offset, IPPROTO_SCTP, NULL, NULL); |
| 7424 | |
| 7425 | return offset == skb_checksum_start_offset(skb); |
| 7426 | } |
| 7427 | |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7428 | static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring, |
| 7429 | struct ixgbe_tx_buffer *first) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7430 | { |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 7431 | struct sk_buff *skb = first->skb; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7432 | u32 vlan_macip_lens = 0; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7433 | u32 type_tucmd = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7434 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7435 | if (skb->ip_summed != CHECKSUM_PARTIAL) { |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 7436 | csum_failed: |
| 7437 | if (!(first->tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | |
| 7438 | IXGBE_TX_FLAGS_CC))) |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7439 | return; |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 7440 | goto no_csum; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7441 | } |
Jesse Brandeburg | 9f8cdf4 | 2008-09-11 20:03:35 -0700 | [diff] [blame] | 7442 | |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 7443 | switch (skb->csum_offset) { |
| 7444 | case offsetof(struct tcphdr, check): |
| 7445 | type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP; |
| 7446 | /* fall through */ |
| 7447 | case offsetof(struct udphdr, check): |
| 7448 | break; |
| 7449 | case offsetof(struct sctphdr, checksum): |
| 7450 | /* validate that this is actually an SCTP request */ |
| 7451 | if (((first->protocol == htons(ETH_P_IP)) && |
| 7452 | (ip_hdr(skb)->protocol == IPPROTO_SCTP)) || |
| 7453 | ((first->protocol == htons(ETH_P_IPV6)) && |
| 7454 | ixgbe_ipv6_csum_is_sctp(skb))) { |
| 7455 | type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_SCTP; |
| 7456 | break; |
| 7457 | } |
| 7458 | /* fall through */ |
| 7459 | default: |
| 7460 | skb_checksum_help(skb); |
| 7461 | goto csum_failed; |
| 7462 | } |
| 7463 | |
| 7464 | /* update TX checksum flag */ |
| 7465 | first->tx_flags |= IXGBE_TX_FLAGS_CSUM; |
| 7466 | vlan_macip_lens = skb_checksum_start_offset(skb) - |
| 7467 | skb_network_offset(skb); |
Mark Rustad | 36a92d7 | 2015-11-18 09:21:28 -0800 | [diff] [blame] | 7468 | no_csum: |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7469 | /* vlan_macip_lens: MACLEN, VLAN tag */ |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 7470 | vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7471 | vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 7472 | |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 7473 | ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd, 0); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7474 | } |
| 7475 | |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7476 | #define IXGBE_SET_FLAG(_input, _flag, _result) \ |
| 7477 | ((_flag <= _result) ? \ |
| 7478 | ((u32)(_input & _flag) * (_result / _flag)) : \ |
| 7479 | ((u32)(_input & _flag) / (_flag / _result))) |
| 7480 | |
| 7481 | static u32 ixgbe_tx_cmd_type(struct sk_buff *skb, u32 tx_flags) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7482 | { |
| 7483 | /* set type for advanced descriptor with frame checksum insertion */ |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7484 | u32 cmd_type = IXGBE_ADVTXD_DTYP_DATA | |
| 7485 | IXGBE_ADVTXD_DCMD_DEXT | |
| 7486 | IXGBE_ADVTXD_DCMD_IFCS; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7487 | |
| 7488 | /* set HW vlan bit if vlan is present */ |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7489 | cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_HW_VLAN, |
| 7490 | IXGBE_ADVTXD_DCMD_VLE); |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 7491 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7492 | /* set segmentation enable bits for TSO/FSO */ |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7493 | cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSO, |
| 7494 | IXGBE_ADVTXD_DCMD_TSE); |
| 7495 | |
| 7496 | /* set timestamp bit if present */ |
| 7497 | cmd_type |= IXGBE_SET_FLAG(tx_flags, IXGBE_TX_FLAGS_TSTAMP, |
| 7498 | IXGBE_ADVTXD_MAC_TSTAMP); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7499 | |
Alexander Duyck | 62748b7 | 2012-07-20 08:09:01 +0000 | [diff] [blame] | 7500 | /* insert frame checksum */ |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7501 | cmd_type ^= IXGBE_SET_FLAG(skb->no_fcs, 1, IXGBE_ADVTXD_DCMD_IFCS); |
Alexander Duyck | 62748b7 | 2012-07-20 08:09:01 +0000 | [diff] [blame] | 7502 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7503 | return cmd_type; |
| 7504 | } |
| 7505 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7506 | static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc, |
| 7507 | u32 tx_flags, unsigned int paylen) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7508 | { |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7509 | u32 olinfo_status = paylen << IXGBE_ADVTXD_PAYLEN_SHIFT; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7510 | |
| 7511 | /* enable L4 checksum for TSO and TX checksum offload */ |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7512 | olinfo_status |= IXGBE_SET_FLAG(tx_flags, |
| 7513 | IXGBE_TX_FLAGS_CSUM, |
| 7514 | IXGBE_ADVTXD_POPTS_TXSM); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7515 | |
Alexander Duyck | 93f5b3c | 2012-02-08 07:50:45 +0000 | [diff] [blame] | 7516 | /* enble IPv4 checksum for TSO */ |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7517 | olinfo_status |= IXGBE_SET_FLAG(tx_flags, |
| 7518 | IXGBE_TX_FLAGS_IPV4, |
| 7519 | IXGBE_ADVTXD_POPTS_IXSM); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7520 | |
Alexander Duyck | 7f9643f | 2011-06-29 05:43:27 +0000 | [diff] [blame] | 7521 | /* |
| 7522 | * Check Context must be set if Tx switch is enabled, which it |
| 7523 | * always is for case where virtual functions are running |
| 7524 | */ |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7525 | olinfo_status |= IXGBE_SET_FLAG(tx_flags, |
| 7526 | IXGBE_TX_FLAGS_CC, |
| 7527 | IXGBE_ADVTXD_CC); |
Alexander Duyck | 7f9643f | 2011-06-29 05:43:27 +0000 | [diff] [blame] | 7528 | |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7529 | tx_desc->read.olinfo_status = cpu_to_le32(olinfo_status); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7530 | } |
| 7531 | |
Daniel Borkmann | 2367a17 | 2014-08-26 19:34:18 +0200 | [diff] [blame] | 7532 | static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size) |
| 7533 | { |
| 7534 | netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index); |
| 7535 | |
| 7536 | /* Herbert's original patch had: |
| 7537 | * smp_mb__after_netif_stop_queue(); |
| 7538 | * but since that doesn't exist yet, just open code it. |
| 7539 | */ |
| 7540 | smp_mb(); |
| 7541 | |
| 7542 | /* We need to check again in a case another CPU has just |
| 7543 | * made room available. |
| 7544 | */ |
| 7545 | if (likely(ixgbe_desc_unused(tx_ring) < size)) |
| 7546 | return -EBUSY; |
| 7547 | |
| 7548 | /* A reprieve! - use start_queue because it doesn't call schedule */ |
| 7549 | netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index); |
| 7550 | ++tx_ring->tx_stats.restart_queue; |
| 7551 | return 0; |
| 7552 | } |
| 7553 | |
| 7554 | static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size) |
| 7555 | { |
| 7556 | if (likely(ixgbe_desc_unused(tx_ring) >= size)) |
| 7557 | return 0; |
| 7558 | |
| 7559 | return __ixgbe_maybe_stop_tx(tx_ring, size); |
| 7560 | } |
| 7561 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7562 | #define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \ |
| 7563 | IXGBE_TXD_CMD_RS) |
| 7564 | |
| 7565 | static void ixgbe_tx_map(struct ixgbe_ring *tx_ring, |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7566 | struct ixgbe_tx_buffer *first, |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7567 | const u8 hdr_len) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7568 | { |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7569 | struct sk_buff *skb = first->skb; |
| 7570 | struct ixgbe_tx_buffer *tx_buffer; |
| 7571 | union ixgbe_adv_tx_desc *tx_desc; |
Alexander Duyck | ec71825 | 2012-10-30 06:01:55 +0000 | [diff] [blame] | 7572 | struct skb_frag_struct *frag; |
| 7573 | dma_addr_t dma; |
| 7574 | unsigned int data_len, size; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7575 | u32 tx_flags = first->tx_flags; |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7576 | u32 cmd_type = ixgbe_tx_cmd_type(skb, tx_flags); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7577 | u16 i = tx_ring->next_to_use; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7578 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7579 | tx_desc = IXGBE_TX_DESC(tx_ring, i); |
| 7580 | |
Alexander Duyck | ec71825 | 2012-10-30 06:01:55 +0000 | [diff] [blame] | 7581 | ixgbe_tx_olinfo_status(tx_desc, tx_flags, skb->len - hdr_len); |
| 7582 | |
| 7583 | size = skb_headlen(skb); |
| 7584 | data_len = skb->data_len; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7585 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7586 | #ifdef IXGBE_FCOE |
| 7587 | if (tx_flags & IXGBE_TX_FLAGS_FCOE) { |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7588 | if (data_len < sizeof(struct fcoe_crc_eof)) { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7589 | size -= sizeof(struct fcoe_crc_eof) - data_len; |
| 7590 | data_len = 0; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7591 | } else { |
| 7592 | data_len -= sizeof(struct fcoe_crc_eof); |
Alexander Duyck | 44df32c | 2009-03-31 21:34:23 +0000 | [diff] [blame] | 7593 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7594 | } |
| 7595 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7596 | #endif |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7597 | dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7598 | |
Alexander Duyck | ec71825 | 2012-10-30 06:01:55 +0000 | [diff] [blame] | 7599 | tx_buffer = first; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7600 | |
Alexander Duyck | ec71825 | 2012-10-30 06:01:55 +0000 | [diff] [blame] | 7601 | for (frag = &skb_shinfo(skb)->frags[0];; frag++) { |
| 7602 | if (dma_mapping_error(tx_ring->dev, dma)) |
| 7603 | goto dma_error; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7604 | |
Alexander Duyck | ec71825 | 2012-10-30 06:01:55 +0000 | [diff] [blame] | 7605 | /* record length, and DMA address */ |
| 7606 | dma_unmap_len_set(tx_buffer, len, size); |
| 7607 | dma_unmap_addr_set(tx_buffer, dma, dma); |
| 7608 | |
| 7609 | tx_desc->read.buffer_addr = cpu_to_le64(dma); |
| 7610 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7611 | while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7612 | tx_desc->read.cmd_type_len = |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7613 | cpu_to_le32(cmd_type ^ IXGBE_MAX_DATA_PER_TXD); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7614 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7615 | i++; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7616 | tx_desc++; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7617 | if (i == tx_ring->count) { |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 7618 | tx_desc = IXGBE_TX_DESC(tx_ring, 0); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7619 | i = 0; |
| 7620 | } |
Alexander Duyck | ec71825 | 2012-10-30 06:01:55 +0000 | [diff] [blame] | 7621 | tx_desc->read.olinfo_status = 0; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7622 | |
| 7623 | dma += IXGBE_MAX_DATA_PER_TXD; |
| 7624 | size -= IXGBE_MAX_DATA_PER_TXD; |
| 7625 | |
| 7626 | tx_desc->read.buffer_addr = cpu_to_le64(dma); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7627 | } |
| 7628 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7629 | if (likely(!data_len)) |
| 7630 | break; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7631 | |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7632 | tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type ^ size); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7633 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7634 | i++; |
| 7635 | tx_desc++; |
| 7636 | if (i == tx_ring->count) { |
| 7637 | tx_desc = IXGBE_TX_DESC(tx_ring, 0); |
| 7638 | i = 0; |
| 7639 | } |
Alexander Duyck | ec71825 | 2012-10-30 06:01:55 +0000 | [diff] [blame] | 7640 | tx_desc->read.olinfo_status = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7641 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7642 | #ifdef IXGBE_FCOE |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 7643 | size = min_t(unsigned int, data_len, skb_frag_size(frag)); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7644 | #else |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 7645 | size = skb_frag_size(frag); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7646 | #endif |
| 7647 | data_len -= size; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7648 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7649 | dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size, |
| 7650 | DMA_TO_DEVICE); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7651 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7652 | tx_buffer = &tx_ring->tx_buffer_info[i]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7653 | } |
Alexander Duyck | 44df32c | 2009-03-31 21:34:23 +0000 | [diff] [blame] | 7654 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7655 | /* write last descriptor with RS and EOP bits */ |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7656 | cmd_type |= size | IXGBE_TXD_CMD; |
| 7657 | tx_desc->read.cmd_type_len = cpu_to_le32(cmd_type); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7658 | |
Alexander Duyck | 091a624 | 2012-02-08 07:51:01 +0000 | [diff] [blame] | 7659 | netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount); |
Alexander Duyck | b2d96e0 | 2012-02-07 08:14:33 +0000 | [diff] [blame] | 7660 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7661 | /* set the timestamp */ |
| 7662 | first->time_stamp = jiffies; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7663 | |
| 7664 | /* |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7665 | * Force memory writes to complete before letting h/w know there |
| 7666 | * are new descriptors to fetch. (Only applicable for weak-ordered |
| 7667 | * memory model archs, such as IA-64). |
| 7668 | * |
| 7669 | * We also need this memory barrier to make certain all of the |
| 7670 | * status bits have been updated before next_to_watch is written. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7671 | */ |
| 7672 | wmb(); |
| 7673 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7674 | /* set next_to_watch value indicating a packet is present */ |
| 7675 | first->next_to_watch = tx_desc; |
| 7676 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7677 | i++; |
| 7678 | if (i == tx_ring->count) |
| 7679 | i = 0; |
| 7680 | |
| 7681 | tx_ring->next_to_use = i; |
| 7682 | |
Daniel Borkmann | 2367a17 | 2014-08-26 19:34:18 +0200 | [diff] [blame] | 7683 | ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED); |
| 7684 | |
| 7685 | if (netif_xmit_stopped(txring_txq(tx_ring)) || !skb->xmit_more) { |
Alexander Duyck | ad435ec | 2014-11-14 00:56:35 +0000 | [diff] [blame] | 7686 | writel(i, tx_ring->tail); |
| 7687 | |
| 7688 | /* we need this if more than one processor can write to our tail |
| 7689 | * at a time, it synchronizes IO on IA64/Altix systems |
| 7690 | */ |
| 7691 | mmiowb(); |
Daniel Borkmann | 9c938cd | 2014-08-24 15:42:16 +0200 | [diff] [blame] | 7692 | } |
Daniel Borkmann | 2367a17 | 2014-08-26 19:34:18 +0200 | [diff] [blame] | 7693 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7694 | return; |
| 7695 | dma_error: |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7696 | dev_err(tx_ring->dev, "TX DMA map failed\n"); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7697 | |
| 7698 | /* clear dma mappings for failed tx_buffer_info map */ |
| 7699 | for (;;) { |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 7700 | tx_buffer = &tx_ring->tx_buffer_info[i]; |
| 7701 | ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer); |
| 7702 | if (tx_buffer == first) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7703 | break; |
| 7704 | if (i == 0) |
| 7705 | i = tx_ring->count; |
| 7706 | i--; |
| 7707 | } |
| 7708 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7709 | tx_ring->next_to_use = i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7710 | } |
| 7711 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 7712 | static void ixgbe_atr(struct ixgbe_ring *ring, |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7713 | struct ixgbe_tx_buffer *first) |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7714 | { |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7715 | struct ixgbe_q_vector *q_vector = ring->q_vector; |
| 7716 | union ixgbe_atr_hash_dword input = { .dword = 0 }; |
| 7717 | union ixgbe_atr_hash_dword common = { .dword = 0 }; |
| 7718 | union { |
| 7719 | unsigned char *network; |
| 7720 | struct iphdr *ipv4; |
| 7721 | struct ipv6hdr *ipv6; |
| 7722 | } hdr; |
Alexander Duyck | ee9e0f0 | 2010-11-16 19:27:01 -0800 | [diff] [blame] | 7723 | struct tcphdr *th; |
Alexander Duyck | e2873d4 | 2016-01-25 19:39:40 -0800 | [diff] [blame] | 7724 | unsigned int hlen; |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 7725 | struct sk_buff *skb; |
Alexander Duyck | 905e4a4 | 2011-01-06 14:29:57 +0000 | [diff] [blame] | 7726 | __be16 vlan_id; |
Alexander Duyck | e2873d4 | 2016-01-25 19:39:40 -0800 | [diff] [blame] | 7727 | int l4_proto; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7728 | |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7729 | /* if ring doesn't have a interrupt vector, cannot perform ATR */ |
| 7730 | if (!q_vector) |
Guillaume Gaudonville | d3ead24 | 2010-06-29 18:29:00 +0000 | [diff] [blame] | 7731 | return; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7732 | |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7733 | /* do nothing if sampling is disabled */ |
| 7734 | if (!ring->atr_sample_rate) |
| 7735 | return; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7736 | |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7737 | ring->atr_count++; |
| 7738 | |
Alexander Duyck | e2873d4 | 2016-01-25 19:39:40 -0800 | [diff] [blame] | 7739 | /* currently only IPv4/IPv6 with TCP is supported */ |
| 7740 | if ((first->protocol != htons(ETH_P_IP)) && |
| 7741 | (first->protocol != htons(ETH_P_IPV6))) |
| 7742 | return; |
| 7743 | |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7744 | /* snag network header to get L4 type and address */ |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 7745 | skb = first->skb; |
| 7746 | hdr.network = skb_network_header(skb); |
Sowmini Varadhan | 9f3c750 | 2016-10-24 15:36:39 -0700 | [diff] [blame] | 7747 | if (unlikely(hdr.network <= skb->data)) |
| 7748 | return; |
Alexander Duyck | 9f12df9 | 2016-01-25 19:36:29 -0800 | [diff] [blame] | 7749 | if (skb->encapsulation && |
| 7750 | first->protocol == htons(ETH_P_IP) && |
Sowmini Varadhan | 5202882 | 2016-10-24 15:36:38 -0700 | [diff] [blame] | 7751 | hdr.ipv4->protocol == IPPROTO_UDP) { |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 7752 | struct ixgbe_adapter *adapter = q_vector->adapter; |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7753 | |
Sowmini Varadhan | 9f3c750 | 2016-10-24 15:36:39 -0700 | [diff] [blame] | 7754 | if (unlikely(skb_tail_pointer(skb) < hdr.network + |
| 7755 | VXLAN_HEADROOM)) |
| 7756 | return; |
| 7757 | |
Alexander Duyck | 9f12df9 | 2016-01-25 19:36:29 -0800 | [diff] [blame] | 7758 | /* verify the port is recognized as VXLAN */ |
| 7759 | if (adapter->vxlan_port && |
Alexander Duyck | e2873d4 | 2016-01-25 19:39:40 -0800 | [diff] [blame] | 7760 | udp_hdr(skb)->dest == adapter->vxlan_port) |
Alexander Duyck | 9f12df9 | 2016-01-25 19:36:29 -0800 | [diff] [blame] | 7761 | hdr.network = skb_inner_network_header(skb); |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 7762 | |
| 7763 | if (adapter->geneve_port && |
| 7764 | udp_hdr(skb)->dest == adapter->geneve_port) |
| 7765 | hdr.network = skb_inner_network_header(skb); |
Mark Rustad | e19dcde | 2015-12-09 14:55:37 -0800 | [diff] [blame] | 7766 | } |
| 7767 | |
Sowmini Varadhan | 9f3c750 | 2016-10-24 15:36:39 -0700 | [diff] [blame] | 7768 | /* Make sure we have at least [minimum IPv4 header + TCP] |
| 7769 | * or [IPv6 header] bytes |
| 7770 | */ |
| 7771 | if (unlikely(skb_tail_pointer(skb) < hdr.network + 40)) |
| 7772 | return; |
| 7773 | |
Mark Rustad | e19dcde | 2015-12-09 14:55:37 -0800 | [diff] [blame] | 7774 | /* Currently only IPv4/IPv6 with TCP is supported */ |
| 7775 | switch (hdr.ipv4->version) { |
| 7776 | case IPVERSION: |
Alexander Duyck | e2873d4 | 2016-01-25 19:39:40 -0800 | [diff] [blame] | 7777 | /* access ihl as u8 to avoid unaligned access on ia64 */ |
| 7778 | hlen = (hdr.network[0] & 0x0F) << 2; |
| 7779 | l4_proto = hdr.ipv4->protocol; |
Mark Rustad | e19dcde | 2015-12-09 14:55:37 -0800 | [diff] [blame] | 7780 | break; |
| 7781 | case 6: |
Alexander Duyck | e2873d4 | 2016-01-25 19:39:40 -0800 | [diff] [blame] | 7782 | hlen = hdr.network - skb->data; |
| 7783 | l4_proto = ipv6_find_hdr(skb, &hlen, IPPROTO_TCP, NULL, NULL); |
| 7784 | hlen -= hdr.network - skb->data; |
Mark Rustad | e19dcde | 2015-12-09 14:55:37 -0800 | [diff] [blame] | 7785 | break; |
| 7786 | default: |
| 7787 | return; |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 7788 | } |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7789 | |
Alexander Duyck | e2873d4 | 2016-01-25 19:39:40 -0800 | [diff] [blame] | 7790 | if (l4_proto != IPPROTO_TCP) |
| 7791 | return; |
| 7792 | |
Sowmini Varadhan | 9f3c750 | 2016-10-24 15:36:39 -0700 | [diff] [blame] | 7793 | if (unlikely(skb_tail_pointer(skb) < hdr.network + |
| 7794 | hlen + sizeof(struct tcphdr))) |
| 7795 | return; |
| 7796 | |
Alexander Duyck | e2873d4 | 2016-01-25 19:39:40 -0800 | [diff] [blame] | 7797 | th = (struct tcphdr *)(hdr.network + hlen); |
| 7798 | |
| 7799 | /* skip this packet since the socket is closing */ |
| 7800 | if (th->fin) |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7801 | return; |
| 7802 | |
| 7803 | /* sample on all syn packets or once every atr sample count */ |
| 7804 | if (!th->syn && (ring->atr_count < ring->atr_sample_rate)) |
| 7805 | return; |
| 7806 | |
| 7807 | /* reset sample count */ |
| 7808 | ring->atr_count = 0; |
| 7809 | |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7810 | vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT); |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7811 | |
| 7812 | /* |
| 7813 | * src and dst are inverted, think how the receiver sees them |
| 7814 | * |
| 7815 | * The input is broken into two sections, a non-compressed section |
| 7816 | * containing vm_pool, vlan_id, and flow_type. The rest of the data |
| 7817 | * is XORed together and stored in the compressed dword. |
| 7818 | */ |
| 7819 | input.formatted.vlan_id = vlan_id; |
| 7820 | |
| 7821 | /* |
| 7822 | * since src port and flex bytes occupy the same word XOR them together |
| 7823 | * and write the value to source port portion of compressed dword |
| 7824 | */ |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7825 | if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN)) |
Joe Perches | a1108ff | 2014-03-13 05:19:25 +0000 | [diff] [blame] | 7826 | common.port.src ^= th->dest ^ htons(ETH_P_8021Q); |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7827 | else |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7828 | common.port.src ^= th->dest ^ first->protocol; |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7829 | common.port.dst ^= th->source; |
| 7830 | |
Mark Rustad | e19dcde | 2015-12-09 14:55:37 -0800 | [diff] [blame] | 7831 | switch (hdr.ipv4->version) { |
| 7832 | case IPVERSION: |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7833 | input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4; |
| 7834 | common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr; |
Mark Rustad | e19dcde | 2015-12-09 14:55:37 -0800 | [diff] [blame] | 7835 | break; |
| 7836 | case 6: |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7837 | input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6; |
| 7838 | common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^ |
| 7839 | hdr.ipv6->saddr.s6_addr32[1] ^ |
| 7840 | hdr.ipv6->saddr.s6_addr32[2] ^ |
| 7841 | hdr.ipv6->saddr.s6_addr32[3] ^ |
| 7842 | hdr.ipv6->daddr.s6_addr32[0] ^ |
| 7843 | hdr.ipv6->daddr.s6_addr32[1] ^ |
| 7844 | hdr.ipv6->daddr.s6_addr32[2] ^ |
| 7845 | hdr.ipv6->daddr.s6_addr32[3]; |
Mark Rustad | e19dcde | 2015-12-09 14:55:37 -0800 | [diff] [blame] | 7846 | break; |
| 7847 | default: |
| 7848 | break; |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7849 | } |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7850 | |
Alexander Duyck | 9f12df9 | 2016-01-25 19:36:29 -0800 | [diff] [blame] | 7851 | if (hdr.network != skb_network_header(skb)) |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 7852 | input.formatted.flow_type |= IXGBE_ATR_L4TYPE_TUNNEL_MASK; |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 7853 | |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7854 | /* This assumes the Rx queue and Tx queue are bound to the same CPU */ |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 7855 | ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw, |
| 7856 | input, common, ring->queue_index); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7857 | } |
| 7858 | |
Jason Wang | f663dd9 | 2014-01-10 16:18:26 +0800 | [diff] [blame] | 7859 | static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb, |
Daniel Borkmann | 99932d4 | 2014-02-16 15:55:20 +0100 | [diff] [blame] | 7860 | void *accel_priv, select_queue_fallback_t fallback) |
Stephen Hemminger | 09a3b1f | 2009-03-21 13:40:01 -0700 | [diff] [blame] | 7861 | { |
Jason Wang | f663dd9 | 2014-01-10 16:18:26 +0800 | [diff] [blame] | 7862 | struct ixgbe_fwd_adapter *fwd_adapter = accel_priv; |
| 7863 | #ifdef IXGBE_FCOE |
Alexander Duyck | 97488bd | 2013-01-12 06:33:37 +0000 | [diff] [blame] | 7864 | struct ixgbe_adapter *adapter; |
| 7865 | struct ixgbe_ring_feature *f; |
| 7866 | int txq; |
Jason Wang | f663dd9 | 2014-01-10 16:18:26 +0800 | [diff] [blame] | 7867 | #endif |
| 7868 | |
| 7869 | if (fwd_adapter) |
| 7870 | return skb->queue_mapping + fwd_adapter->tx_base_queue; |
| 7871 | |
| 7872 | #ifdef IXGBE_FCOE |
Hao Zheng | 5e09a10 | 2010-11-11 13:47:59 +0000 | [diff] [blame] | 7873 | |
Alexander Duyck | 97488bd | 2013-01-12 06:33:37 +0000 | [diff] [blame] | 7874 | /* |
| 7875 | * only execute the code below if protocol is FCoE |
| 7876 | * or FIP and we have FCoE enabled on the adapter |
| 7877 | */ |
| 7878 | switch (vlan_get_protocol(skb)) { |
Joe Perches | a1108ff | 2014-03-13 05:19:25 +0000 | [diff] [blame] | 7879 | case htons(ETH_P_FCOE): |
| 7880 | case htons(ETH_P_FIP): |
Alexander Duyck | 97488bd | 2013-01-12 06:33:37 +0000 | [diff] [blame] | 7881 | adapter = netdev_priv(dev); |
Alexander Duyck | c087663 | 2012-05-10 00:01:46 +0000 | [diff] [blame] | 7882 | |
Alexander Duyck | 97488bd | 2013-01-12 06:33:37 +0000 | [diff] [blame] | 7883 | if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) |
| 7884 | break; |
| 7885 | default: |
Daniel Borkmann | 99932d4 | 2014-02-16 15:55:20 +0100 | [diff] [blame] | 7886 | return fallback(dev, skb); |
Krishna Kumar | fdd3d63 | 2010-02-03 13:13:10 +0000 | [diff] [blame] | 7887 | } |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 7888 | |
Alexander Duyck | 97488bd | 2013-01-12 06:33:37 +0000 | [diff] [blame] | 7889 | f = &adapter->ring_feature[RING_F_FCOE]; |
| 7890 | |
| 7891 | txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : |
| 7892 | smp_processor_id(); |
| 7893 | |
| 7894 | while (txq >= f->indices) |
| 7895 | txq -= f->indices; |
| 7896 | |
| 7897 | return txq + f->offset; |
Jason Wang | f663dd9 | 2014-01-10 16:18:26 +0800 | [diff] [blame] | 7898 | #else |
Daniel Borkmann | 99932d4 | 2014-02-16 15:55:20 +0100 | [diff] [blame] | 7899 | return fallback(dev, skb); |
Jason Wang | f663dd9 | 2014-01-10 16:18:26 +0800 | [diff] [blame] | 7900 | #endif |
Stephen Hemminger | 09a3b1f | 2009-03-21 13:40:01 -0700 | [diff] [blame] | 7901 | } |
| 7902 | |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 7903 | netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb, |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 7904 | struct ixgbe_adapter *adapter, |
| 7905 | struct ixgbe_ring *tx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7906 | { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7907 | struct ixgbe_tx_buffer *first; |
Yi Zou | 5f71582 | 2009-12-03 11:32:44 +0000 | [diff] [blame] | 7908 | int tso; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 7909 | u32 tx_flags = 0; |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 7910 | unsigned short f; |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 7911 | u16 count = TXD_USE_COUNT(skb_headlen(skb)); |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 7912 | __be16 protocol = skb->protocol; |
Alexander Duyck | 63544e9 | 2011-05-27 05:31:42 +0000 | [diff] [blame] | 7913 | u8 hdr_len = 0; |
Hao Zheng | 5e09a10 | 2010-11-11 13:47:59 +0000 | [diff] [blame] | 7914 | |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 7915 | /* |
| 7916 | * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD, |
Alexander Duyck | 24ddd96 | 2012-02-10 02:08:32 +0000 | [diff] [blame] | 7917 | * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD, |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 7918 | * + 2 desc gap to keep tail from touching head, |
| 7919 | * + 1 desc for context descriptor, |
| 7920 | * otherwise try next time |
| 7921 | */ |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 7922 | for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) |
| 7923 | count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size); |
Alexander Duyck | 7f66162 | 2013-02-09 01:19:55 +0000 | [diff] [blame] | 7924 | |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 7925 | if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) { |
| 7926 | tx_ring->tx_stats.tx_busy++; |
| 7927 | return NETDEV_TX_BUSY; |
| 7928 | } |
| 7929 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 7930 | /* record the location of the first descriptor for this packet */ |
| 7931 | first = &tx_ring->tx_buffer_info[tx_ring->next_to_use]; |
| 7932 | first->skb = skb; |
Alexander Duyck | 091a624 | 2012-02-08 07:51:01 +0000 | [diff] [blame] | 7933 | first->bytecount = skb->len; |
| 7934 | first->gso_segs = 1; |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 7935 | |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 7936 | /* if we have a HW VLAN tag being added default to the HW one */ |
Jiri Pirko | df8a39d | 2015-01-13 17:13:44 +0100 | [diff] [blame] | 7937 | if (skb_vlan_tag_present(skb)) { |
| 7938 | tx_flags |= skb_vlan_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT; |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 7939 | tx_flags |= IXGBE_TX_FLAGS_HW_VLAN; |
| 7940 | /* else if it is a SW VLAN check the next protocol and store the tag */ |
Joe Perches | a1108ff | 2014-03-13 05:19:25 +0000 | [diff] [blame] | 7941 | } else if (protocol == htons(ETH_P_8021Q)) { |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 7942 | struct vlan_hdr *vhdr, _vhdr; |
| 7943 | vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr); |
| 7944 | if (!vhdr) |
| 7945 | goto out_drop; |
| 7946 | |
Alexander Duyck | 9e0c564 | 2012-02-08 07:49:33 +0000 | [diff] [blame] | 7947 | tx_flags |= ntohs(vhdr->h_vlan_TCI) << |
| 7948 | IXGBE_TX_FLAGS_VLAN_SHIFT; |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 7949 | tx_flags |= IXGBE_TX_FLAGS_SW_VLAN; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7950 | } |
Toshiaki Makita | 0213668 | 2015-01-29 20:37:09 +0900 | [diff] [blame] | 7951 | protocol = vlan_get_protocol(skb); |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 7952 | |
Mark Rustad | d523493 | 2014-08-09 07:02:09 +0000 | [diff] [blame] | 7953 | if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) && |
| 7954 | adapter->ptp_clock && |
| 7955 | !test_and_set_bit_lock(__IXGBE_PTP_TX_IN_PROGRESS, |
| 7956 | &adapter->state)) { |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 7957 | skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; |
| 7958 | tx_flags |= IXGBE_TX_FLAGS_TSTAMP; |
Jacob Keller | 891dc08 | 2012-12-05 07:24:46 +0000 | [diff] [blame] | 7959 | |
| 7960 | /* schedule check for Tx timestamp */ |
| 7961 | adapter->ptp_tx_skb = skb_get(skb); |
| 7962 | adapter->ptp_tx_start = jiffies; |
| 7963 | schedule_work(&adapter->ptp_tx_work); |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 7964 | } |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 7965 | |
Jakub Kicinski | ff29a86 | 2014-03-15 14:55:16 +0000 | [diff] [blame] | 7966 | skb_tx_timestamp(skb); |
| 7967 | |
Alexander Duyck | 9e0c564 | 2012-02-08 07:49:33 +0000 | [diff] [blame] | 7968 | #ifdef CONFIG_PCI_IOV |
| 7969 | /* |
| 7970 | * Use the l2switch_enable flag - would be false if the DMA |
| 7971 | * Tx switch had been disabled. |
| 7972 | */ |
| 7973 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
Alexander Duyck | 472148c | 2012-11-07 02:34:28 +0000 | [diff] [blame] | 7974 | tx_flags |= IXGBE_TX_FLAGS_CC; |
Alexander Duyck | 9e0c564 | 2012-02-08 07:49:33 +0000 | [diff] [blame] | 7975 | |
| 7976 | #endif |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 7977 | /* DCB maps skb priorities 0-7 onto 3 bit PCP of VLAN tag. */ |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 7978 | if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && |
Alexander Duyck | 09dca47 | 2011-07-20 00:09:10 +0000 | [diff] [blame] | 7979 | ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) || |
| 7980 | (skb->priority != TC_PRIO_CONTROL))) { |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 7981 | tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK; |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 7982 | tx_flags |= (skb->priority & 0x7) << |
| 7983 | IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT; |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 7984 | if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) { |
| 7985 | struct vlan_ethhdr *vhdr; |
Francois Romieu | 2049e1f | 2014-03-30 03:14:27 +0000 | [diff] [blame] | 7986 | |
| 7987 | if (skb_cow_head(skb, 0)) |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 7988 | goto out_drop; |
| 7989 | vhdr = (struct vlan_ethhdr *)skb->data; |
| 7990 | vhdr->h_vlan_TCI = htons(tx_flags >> |
| 7991 | IXGBE_TX_FLAGS_VLAN_SHIFT); |
| 7992 | } else { |
| 7993 | tx_flags |= IXGBE_TX_FLAGS_HW_VLAN; |
| 7994 | } |
| 7995 | } |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 7996 | |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 7997 | /* record initial flags and protocol */ |
| 7998 | first->tx_flags = tx_flags; |
| 7999 | first->protocol = protocol; |
| 8000 | |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 8001 | #ifdef IXGBE_FCOE |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 8002 | /* setup tx offload for FCoE */ |
Joe Perches | a1108ff | 2014-03-13 05:19:25 +0000 | [diff] [blame] | 8003 | if ((protocol == htons(ETH_P_FCOE)) && |
Alexander Duyck | a58915c | 2012-05-25 06:38:18 +0000 | [diff] [blame] | 8004 | (tx_ring->netdev->features & (NETIF_F_FSO | NETIF_F_FCOE_CRC))) { |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 8005 | tso = ixgbe_fso(tx_ring, first, &hdr_len); |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 8006 | if (tso < 0) |
| 8007 | goto out_drop; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8008 | |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 8009 | goto xmit_fcoe; |
Alexander Duyck | 44df32c | 2009-03-31 21:34:23 +0000 | [diff] [blame] | 8010 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8011 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8012 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 8013 | tso = ixgbe_tso(tx_ring, first, &hdr_len); |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 8014 | if (tso < 0) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8015 | goto out_drop; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 8016 | else if (!tso) |
| 8017 | ixgbe_tx_csum(tx_ring, first); |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 8018 | |
| 8019 | /* add the ATR filter if ATR is on */ |
| 8020 | if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state)) |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 8021 | ixgbe_atr(tx_ring, first); |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 8022 | |
| 8023 | #ifdef IXGBE_FCOE |
| 8024 | xmit_fcoe: |
| 8025 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 8026 | ixgbe_tx_map(tx_ring, first, hdr_len); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 8027 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8028 | return NETDEV_TX_OK; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 8029 | |
| 8030 | out_drop: |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 8031 | dev_kfree_skb_any(first->skb); |
| 8032 | first->skb = NULL; |
| 8033 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 8034 | return NETDEV_TX_OK; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8035 | } |
| 8036 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 8037 | static netdev_tx_t __ixgbe_xmit_frame(struct sk_buff *skb, |
| 8038 | struct net_device *netdev, |
| 8039 | struct ixgbe_ring *ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8040 | { |
| 8041 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 8042 | struct ixgbe_ring *tx_ring; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8043 | |
Alexander Duyck | a50c29d | 2012-02-08 07:50:40 +0000 | [diff] [blame] | 8044 | /* |
| 8045 | * The minimum packet size for olinfo paylen is 17 so pad the skb |
| 8046 | * in order to meet this minimum size requirement. |
| 8047 | */ |
Alexander Duyck | a94d9e2 | 2014-12-03 08:17:39 -0800 | [diff] [blame] | 8048 | if (skb_put_padto(skb, 17)) |
| 8049 | return NETDEV_TX_OK; |
Alexander Duyck | a50c29d | 2012-02-08 07:50:40 +0000 | [diff] [blame] | 8050 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 8051 | tx_ring = ring ? ring : adapter->tx_ring[skb->queue_mapping]; |
| 8052 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8053 | return ixgbe_xmit_frame_ring(skb, adapter, tx_ring); |
| 8054 | } |
| 8055 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 8056 | static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, |
| 8057 | struct net_device *netdev) |
| 8058 | { |
| 8059 | return __ixgbe_xmit_frame(skb, netdev, NULL); |
| 8060 | } |
| 8061 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8062 | /** |
| 8063 | * ixgbe_set_mac - Change the Ethernet Address of the NIC |
| 8064 | * @netdev: network interface device structure |
| 8065 | * @p: pointer to an address structure |
| 8066 | * |
| 8067 | * Returns 0 on success, negative on failure |
| 8068 | **/ |
| 8069 | static int ixgbe_set_mac(struct net_device *netdev, void *p) |
| 8070 | { |
| 8071 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 8072 | struct ixgbe_hw *hw = &adapter->hw; |
| 8073 | struct sockaddr *addr = p; |
| 8074 | |
| 8075 | if (!is_valid_ether_addr(addr->sa_data)) |
| 8076 | return -EADDRNOTAVAIL; |
| 8077 | |
| 8078 | memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 8079 | memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8080 | |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 8081 | ixgbe_mac_set_default_filter(adapter); |
| 8082 | |
| 8083 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8084 | } |
| 8085 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 8086 | static int |
| 8087 | ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr) |
| 8088 | { |
| 8089 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 8090 | struct ixgbe_hw *hw = &adapter->hw; |
| 8091 | u16 value; |
| 8092 | int rc; |
| 8093 | |
| 8094 | if (prtad != hw->phy.mdio.prtad) |
| 8095 | return -EINVAL; |
| 8096 | rc = hw->phy.ops.read_reg(hw, addr, devad, &value); |
| 8097 | if (!rc) |
| 8098 | rc = value; |
| 8099 | return rc; |
| 8100 | } |
| 8101 | |
| 8102 | static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad, |
| 8103 | u16 addr, u16 value) |
| 8104 | { |
| 8105 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 8106 | struct ixgbe_hw *hw = &adapter->hw; |
| 8107 | |
| 8108 | if (prtad != hw->phy.mdio.prtad) |
| 8109 | return -EINVAL; |
| 8110 | return hw->phy.ops.write_reg(hw, addr, devad, value); |
| 8111 | } |
| 8112 | |
| 8113 | static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd) |
| 8114 | { |
| 8115 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 8116 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 8117 | switch (cmd) { |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 8118 | case SIOCSHWTSTAMP: |
Jacob Keller | 93501d4 | 2014-02-28 15:48:58 -0800 | [diff] [blame] | 8119 | return ixgbe_ptp_set_ts_config(adapter, req); |
| 8120 | case SIOCGHWTSTAMP: |
| 8121 | return ixgbe_ptp_get_ts_config(adapter, req); |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 8122 | default: |
| 8123 | return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd); |
| 8124 | } |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 8125 | } |
| 8126 | |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 8127 | /** |
| 8128 | * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding |
Jiri Pirko | 31278e7 | 2009-06-17 01:12:19 +0000 | [diff] [blame] | 8129 | * netdev->dev_addrs |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 8130 | * @netdev: network interface device structure |
| 8131 | * |
| 8132 | * Returns non-zero on failure |
| 8133 | **/ |
| 8134 | static int ixgbe_add_sanmac_netdev(struct net_device *dev) |
| 8135 | { |
| 8136 | int err = 0; |
| 8137 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
Alexander Duyck | 7fa7c9d | 2012-05-05 05:32:52 +0000 | [diff] [blame] | 8138 | struct ixgbe_hw *hw = &adapter->hw; |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 8139 | |
Alexander Duyck | 7fa7c9d | 2012-05-05 05:32:52 +0000 | [diff] [blame] | 8140 | if (is_valid_ether_addr(hw->mac.san_addr)) { |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 8141 | rtnl_lock(); |
Alexander Duyck | 7fa7c9d | 2012-05-05 05:32:52 +0000 | [diff] [blame] | 8142 | err = dev_addr_add(dev, hw->mac.san_addr, NETDEV_HW_ADDR_T_SAN); |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 8143 | rtnl_unlock(); |
Alexander Duyck | 7fa7c9d | 2012-05-05 05:32:52 +0000 | [diff] [blame] | 8144 | |
| 8145 | /* update SAN MAC vmdq pool selection */ |
| 8146 | hw->mac.ops.set_vmdq_san_mac(hw, VMDQ_P(0)); |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 8147 | } |
| 8148 | return err; |
| 8149 | } |
| 8150 | |
| 8151 | /** |
| 8152 | * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding |
Jiri Pirko | 31278e7 | 2009-06-17 01:12:19 +0000 | [diff] [blame] | 8153 | * netdev->dev_addrs |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 8154 | * @netdev: network interface device structure |
| 8155 | * |
| 8156 | * Returns non-zero on failure |
| 8157 | **/ |
| 8158 | static int ixgbe_del_sanmac_netdev(struct net_device *dev) |
| 8159 | { |
| 8160 | int err = 0; |
| 8161 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 8162 | struct ixgbe_mac_info *mac = &adapter->hw.mac; |
| 8163 | |
| 8164 | if (is_valid_ether_addr(mac->san_addr)) { |
| 8165 | rtnl_lock(); |
| 8166 | err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN); |
| 8167 | rtnl_unlock(); |
| 8168 | } |
| 8169 | return err; |
| 8170 | } |
| 8171 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8172 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 8173 | /* |
| 8174 | * Polling 'interrupt' - used by things like netconsole to send skbs |
| 8175 | * without having to re-enable interrupts. It's not called while |
| 8176 | * the interrupt routine is executing. |
| 8177 | */ |
| 8178 | static void ixgbe_netpoll(struct net_device *netdev) |
| 8179 | { |
| 8180 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Peter P Waskiewicz Jr | 8f9a716 | 2009-07-30 12:25:09 +0000 | [diff] [blame] | 8181 | int i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8182 | |
Alexander Duyck | 1a647bd | 2010-01-13 01:49:13 +0000 | [diff] [blame] | 8183 | /* if interface is down do nothing */ |
| 8184 | if (test_bit(__IXGBE_DOWN, &adapter->state)) |
| 8185 | return; |
| 8186 | |
Alexander Duyck | 856f606 | 2015-02-25 17:45:54 +0000 | [diff] [blame] | 8187 | /* loop through and schedule all active queues */ |
| 8188 | for (i = 0; i < adapter->num_q_vectors; i++) |
| 8189 | ixgbe_msix_clean_rings(0, adapter->q_vector[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8190 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 8191 | |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 8192 | #endif |
stephen hemminger | bc1f447 | 2017-01-06 19:12:52 -0800 | [diff] [blame] | 8193 | |
| 8194 | static void ixgbe_get_stats64(struct net_device *netdev, |
| 8195 | struct rtnl_link_stats64 *stats) |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 8196 | { |
| 8197 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 8198 | int i; |
| 8199 | |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 8200 | rcu_read_lock(); |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 8201 | for (i = 0; i < adapter->num_rx_queues; i++) { |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 8202 | struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]); |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 8203 | u64 bytes, packets; |
| 8204 | unsigned int start; |
| 8205 | |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 8206 | if (ring) { |
| 8207 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 8208 | start = u64_stats_fetch_begin_irq(&ring->syncp); |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 8209 | packets = ring->stats.packets; |
| 8210 | bytes = ring->stats.bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 8211 | } while (u64_stats_fetch_retry_irq(&ring->syncp, start)); |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 8212 | stats->rx_packets += packets; |
| 8213 | stats->rx_bytes += bytes; |
| 8214 | } |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 8215 | } |
Eric Dumazet | 1ac9ad1 | 2011-01-12 12:13:14 +0000 | [diff] [blame] | 8216 | |
| 8217 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 8218 | struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]); |
| 8219 | u64 bytes, packets; |
| 8220 | unsigned int start; |
| 8221 | |
| 8222 | if (ring) { |
| 8223 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 8224 | start = u64_stats_fetch_begin_irq(&ring->syncp); |
Eric Dumazet | 1ac9ad1 | 2011-01-12 12:13:14 +0000 | [diff] [blame] | 8225 | packets = ring->stats.packets; |
| 8226 | bytes = ring->stats.bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 8227 | } while (u64_stats_fetch_retry_irq(&ring->syncp, start)); |
Eric Dumazet | 1ac9ad1 | 2011-01-12 12:13:14 +0000 | [diff] [blame] | 8228 | stats->tx_packets += packets; |
| 8229 | stats->tx_bytes += bytes; |
| 8230 | } |
| 8231 | } |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 8232 | rcu_read_unlock(); |
stephen hemminger | bc1f447 | 2017-01-06 19:12:52 -0800 | [diff] [blame] | 8233 | |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 8234 | /* following stats updated by ixgbe_watchdog_task() */ |
| 8235 | stats->multicast = netdev->stats.multicast; |
| 8236 | stats->rx_errors = netdev->stats.rx_errors; |
| 8237 | stats->rx_length_errors = netdev->stats.rx_length_errors; |
| 8238 | stats->rx_crc_errors = netdev->stats.rx_crc_errors; |
| 8239 | stats->rx_missed_errors = netdev->stats.rx_missed_errors; |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 8240 | } |
| 8241 | |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 8242 | #ifdef CONFIG_IXGBE_DCB |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 8243 | /** |
| 8244 | * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid. |
| 8245 | * @adapter: pointer to ixgbe_adapter |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8246 | * @tc: number of traffic classes currently enabled |
| 8247 | * |
| 8248 | * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm |
| 8249 | * 802.1Q priority maps to a packet buffer that exists. |
| 8250 | */ |
| 8251 | static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc) |
| 8252 | { |
| 8253 | struct ixgbe_hw *hw = &adapter->hw; |
| 8254 | u32 reg, rsave; |
| 8255 | int i; |
| 8256 | |
| 8257 | /* 82598 have a static priority to TC mapping that can not |
| 8258 | * be changed so no validation is needed. |
| 8259 | */ |
| 8260 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 8261 | return; |
| 8262 | |
| 8263 | reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC); |
| 8264 | rsave = reg; |
| 8265 | |
| 8266 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { |
| 8267 | u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT); |
| 8268 | |
| 8269 | /* If up2tc is out of bounds default to zero */ |
| 8270 | if (up2tc > tc) |
| 8271 | reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT); |
| 8272 | } |
| 8273 | |
| 8274 | if (reg != rsave) |
| 8275 | IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg); |
| 8276 | |
| 8277 | return; |
| 8278 | } |
| 8279 | |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 8280 | /** |
Alexander Duyck | 02debdc | 2012-05-18 06:33:31 +0000 | [diff] [blame] | 8281 | * ixgbe_set_prio_tc_map - Configure netdev prio tc map |
| 8282 | * @adapter: Pointer to adapter struct |
| 8283 | * |
| 8284 | * Populate the netdev user priority to tc map |
| 8285 | */ |
| 8286 | static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter) |
| 8287 | { |
| 8288 | struct net_device *dev = adapter->netdev; |
| 8289 | struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg; |
| 8290 | struct ieee_ets *ets = adapter->ixgbe_ieee_ets; |
| 8291 | u8 prio; |
| 8292 | |
| 8293 | for (prio = 0; prio < MAX_USER_PRIORITY; prio++) { |
| 8294 | u8 tc = 0; |
| 8295 | |
| 8296 | if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) |
| 8297 | tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio); |
| 8298 | else if (ets) |
| 8299 | tc = ets->prio_tc[prio]; |
| 8300 | |
| 8301 | netdev_set_prio_tc_map(dev, prio, tc); |
| 8302 | } |
| 8303 | } |
| 8304 | |
Alexander Duyck | cca73c5 | 2013-01-12 06:33:44 +0000 | [diff] [blame] | 8305 | #endif /* CONFIG_IXGBE_DCB */ |
Alexander Duyck | 02debdc | 2012-05-18 06:33:31 +0000 | [diff] [blame] | 8306 | /** |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 8307 | * ixgbe_setup_tc - configure net_device for multiple traffic classes |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8308 | * |
| 8309 | * @netdev: net device to configure |
| 8310 | * @tc: number of traffic classes to enable |
| 8311 | */ |
| 8312 | int ixgbe_setup_tc(struct net_device *dev, u8 tc) |
| 8313 | { |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8314 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 8315 | struct ixgbe_hw *hw = &adapter->hw; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 8316 | bool pools; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8317 | |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8318 | /* Hardware supports up to 8 traffic classes */ |
Emil Tantilov | 7e3f5c8 | 2015-07-09 12:28:59 -0700 | [diff] [blame] | 8319 | if (tc > adapter->dcb_cfg.num_tcs.pg_tcs) |
| 8320 | return -EINVAL; |
| 8321 | |
| 8322 | if (hw->mac.type == ixgbe_mac_82598EB && tc && tc < MAX_TRAFFIC_CLASS) |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8323 | return -EINVAL; |
| 8324 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 8325 | pools = (find_first_zero_bit(&adapter->fwd_bitmask, 32) > 1); |
| 8326 | if (tc && pools && adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS) |
| 8327 | return -EBUSY; |
| 8328 | |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8329 | /* Hardware has to reinitialize queues and interrupts to |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 8330 | * match packet buffer alignment. Unfortunately, the |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8331 | * hardware is not flexible enough to do this dynamically. |
| 8332 | */ |
| 8333 | if (netif_running(dev)) |
| 8334 | ixgbe_close(dev); |
Alexander Duyck | bf4d67d | 2015-10-20 13:28:17 -0700 | [diff] [blame] | 8335 | else |
| 8336 | ixgbe_reset(adapter); |
| 8337 | |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8338 | ixgbe_clear_interrupt_scheme(adapter); |
| 8339 | |
Alexander Duyck | cca73c5 | 2013-01-12 06:33:44 +0000 | [diff] [blame] | 8340 | #ifdef CONFIG_IXGBE_DCB |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 8341 | if (tc) { |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8342 | netdev_set_num_tc(dev, tc); |
Alexander Duyck | 02debdc | 2012-05-18 06:33:31 +0000 | [diff] [blame] | 8343 | ixgbe_set_prio_tc_map(adapter); |
| 8344 | |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 8345 | adapter->flags |= IXGBE_FLAG_DCB_ENABLED; |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 8346 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 8347 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) { |
| 8348 | adapter->last_lfc_mode = adapter->hw.fc.requested_mode; |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 8349 | adapter->hw.fc.requested_mode = ixgbe_fc_none; |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 8350 | } |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 8351 | } else { |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8352 | netdev_reset_tc(dev); |
Alexander Duyck | 02debdc | 2012-05-18 06:33:31 +0000 | [diff] [blame] | 8353 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 8354 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) |
| 8355 | adapter->hw.fc.requested_mode = adapter->last_lfc_mode; |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 8356 | |
| 8357 | adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED; |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 8358 | |
| 8359 | adapter->temp_dcb_cfg.pfc_mode_enable = false; |
| 8360 | adapter->dcb_cfg.pfc_mode_enable = false; |
| 8361 | } |
| 8362 | |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8363 | ixgbe_validate_rtr(adapter, tc); |
Alexander Duyck | cca73c5 | 2013-01-12 06:33:44 +0000 | [diff] [blame] | 8364 | |
| 8365 | #endif /* CONFIG_IXGBE_DCB */ |
| 8366 | ixgbe_init_interrupt_scheme(adapter); |
| 8367 | |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8368 | if (netif_running(dev)) |
Alexander Duyck | cca73c5 | 2013-01-12 06:33:44 +0000 | [diff] [blame] | 8369 | return ixgbe_open(dev); |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 8370 | |
| 8371 | return 0; |
| 8372 | } |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 8373 | |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8374 | static int ixgbe_delete_clsu32(struct ixgbe_adapter *adapter, |
| 8375 | struct tc_cls_u32_offload *cls) |
| 8376 | { |
Amritha Nambiar | 1ecedc9 | 2016-05-06 19:09:51 -0700 | [diff] [blame] | 8377 | u32 hdl = cls->knode.handle; |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8378 | u32 uhtid = TC_U32_USERHTID(cls->knode.handle); |
Amritha Nambiar | 1ecedc9 | 2016-05-06 19:09:51 -0700 | [diff] [blame] | 8379 | u32 loc = cls->knode.handle & 0xfffff; |
| 8380 | int err = 0, i, j; |
| 8381 | struct ixgbe_jump_table *jump = NULL; |
| 8382 | |
| 8383 | if (loc > IXGBE_MAX_HW_ENTRIES) |
| 8384 | return -EINVAL; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8385 | |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8386 | if ((uhtid != 0x800) && (uhtid >= IXGBE_MAX_LINK_HANDLE)) |
| 8387 | return -EINVAL; |
| 8388 | |
Amritha Nambiar | 1ecedc9 | 2016-05-06 19:09:51 -0700 | [diff] [blame] | 8389 | /* Clear this filter in the link data it is associated with */ |
| 8390 | if (uhtid != 0x800) { |
| 8391 | jump = adapter->jump_tables[uhtid]; |
Amritha Nambiar | 12746fd | 2016-05-16 18:33:20 -0700 | [diff] [blame] | 8392 | if (!jump) |
| 8393 | return -EINVAL; |
| 8394 | if (!test_bit(loc - 1, jump->child_loc_map)) |
| 8395 | return -EINVAL; |
| 8396 | clear_bit(loc - 1, jump->child_loc_map); |
Amritha Nambiar | 1ecedc9 | 2016-05-06 19:09:51 -0700 | [diff] [blame] | 8397 | } |
| 8398 | |
| 8399 | /* Check if the filter being deleted is a link */ |
| 8400 | for (i = 1; i < IXGBE_MAX_LINK_HANDLE; i++) { |
| 8401 | jump = adapter->jump_tables[i]; |
| 8402 | if (jump && jump->link_hdl == hdl) { |
| 8403 | /* Delete filters in the hardware in the child hash |
| 8404 | * table associated with this link |
| 8405 | */ |
| 8406 | for (j = 0; j < IXGBE_MAX_HW_ENTRIES; j++) { |
| 8407 | if (!test_bit(j, jump->child_loc_map)) |
| 8408 | continue; |
| 8409 | spin_lock(&adapter->fdir_perfect_lock); |
| 8410 | err = ixgbe_update_ethtool_fdir_entry(adapter, |
| 8411 | NULL, |
| 8412 | j + 1); |
| 8413 | spin_unlock(&adapter->fdir_perfect_lock); |
| 8414 | clear_bit(j, jump->child_loc_map); |
| 8415 | } |
| 8416 | /* Remove resources for this link */ |
| 8417 | kfree(jump->input); |
| 8418 | kfree(jump->mask); |
| 8419 | kfree(jump); |
| 8420 | adapter->jump_tables[i] = NULL; |
| 8421 | return err; |
| 8422 | } |
| 8423 | } |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8424 | |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8425 | spin_lock(&adapter->fdir_perfect_lock); |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8426 | err = ixgbe_update_ethtool_fdir_entry(adapter, NULL, loc); |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8427 | spin_unlock(&adapter->fdir_perfect_lock); |
| 8428 | return err; |
| 8429 | } |
| 8430 | |
John Fastabend | db956ae | 2016-02-16 21:19:19 -0800 | [diff] [blame] | 8431 | static int ixgbe_configure_clsu32_add_hnode(struct ixgbe_adapter *adapter, |
| 8432 | __be16 protocol, |
| 8433 | struct tc_cls_u32_offload *cls) |
| 8434 | { |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8435 | u32 uhtid = TC_U32_USERHTID(cls->hnode.handle); |
| 8436 | |
| 8437 | if (uhtid >= IXGBE_MAX_LINK_HANDLE) |
| 8438 | return -EINVAL; |
| 8439 | |
John Fastabend | db956ae | 2016-02-16 21:19:19 -0800 | [diff] [blame] | 8440 | /* This ixgbe devices do not support hash tables at the moment |
| 8441 | * so abort when given hash tables. |
| 8442 | */ |
| 8443 | if (cls->hnode.divisor > 0) |
| 8444 | return -EINVAL; |
| 8445 | |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8446 | set_bit(uhtid - 1, &adapter->tables); |
John Fastabend | db956ae | 2016-02-16 21:19:19 -0800 | [diff] [blame] | 8447 | return 0; |
| 8448 | } |
| 8449 | |
| 8450 | static int ixgbe_configure_clsu32_del_hnode(struct ixgbe_adapter *adapter, |
| 8451 | struct tc_cls_u32_offload *cls) |
| 8452 | { |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8453 | u32 uhtid = TC_U32_USERHTID(cls->hnode.handle); |
| 8454 | |
| 8455 | if (uhtid >= IXGBE_MAX_LINK_HANDLE) |
| 8456 | return -EINVAL; |
| 8457 | |
| 8458 | clear_bit(uhtid - 1, &adapter->tables); |
John Fastabend | db956ae | 2016-02-16 21:19:19 -0800 | [diff] [blame] | 8459 | return 0; |
| 8460 | } |
| 8461 | |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8462 | #ifdef CONFIG_NET_CLS_ACT |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 8463 | struct upper_walk_data { |
| 8464 | struct ixgbe_adapter *adapter; |
| 8465 | u64 action; |
| 8466 | int ifindex; |
| 8467 | u8 queue; |
| 8468 | }; |
| 8469 | |
| 8470 | static int get_macvlan_queue(struct net_device *upper, void *_data) |
| 8471 | { |
| 8472 | if (netif_is_macvlan(upper)) { |
| 8473 | struct macvlan_dev *dfwd = netdev_priv(upper); |
| 8474 | struct ixgbe_fwd_adapter *vadapter = dfwd->fwd_priv; |
| 8475 | struct upper_walk_data *data = _data; |
| 8476 | struct ixgbe_adapter *adapter = data->adapter; |
| 8477 | int ifindex = data->ifindex; |
| 8478 | |
| 8479 | if (vadapter && vadapter->netdev->ifindex == ifindex) { |
| 8480 | data->queue = adapter->rx_ring[vadapter->rx_base_queue]->reg_idx; |
| 8481 | data->action = data->queue; |
| 8482 | return 1; |
| 8483 | } |
| 8484 | } |
| 8485 | |
| 8486 | return 0; |
| 8487 | } |
| 8488 | |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8489 | static int handle_redirect_action(struct ixgbe_adapter *adapter, int ifindex, |
| 8490 | u8 *queue, u64 *action) |
| 8491 | { |
| 8492 | unsigned int num_vfs = adapter->num_vfs, vf; |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 8493 | struct upper_walk_data data; |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8494 | struct net_device *upper; |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8495 | |
| 8496 | /* redirect to a SRIOV VF */ |
| 8497 | for (vf = 0; vf < num_vfs; ++vf) { |
| 8498 | upper = pci_get_drvdata(adapter->vfinfo[vf].vfdev); |
| 8499 | if (upper->ifindex == ifindex) { |
| 8500 | if (adapter->num_rx_pools > 1) |
| 8501 | *queue = vf * 2; |
| 8502 | else |
| 8503 | *queue = vf * adapter->num_rx_queues_per_pool; |
| 8504 | |
| 8505 | *action = vf + 1; |
| 8506 | *action <<= ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF; |
| 8507 | return 0; |
| 8508 | } |
| 8509 | } |
| 8510 | |
| 8511 | /* redirect to a offloaded macvlan netdev */ |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 8512 | data.adapter = adapter; |
| 8513 | data.ifindex = ifindex; |
| 8514 | data.action = 0; |
| 8515 | data.queue = 0; |
| 8516 | if (netdev_walk_all_upper_dev_rcu(adapter->netdev, |
| 8517 | get_macvlan_queue, &data)) { |
| 8518 | *action = data.action; |
| 8519 | *queue = data.queue; |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8520 | |
David Ahern | 1cd127f | 2016-10-17 19:15:48 -0700 | [diff] [blame] | 8521 | return 0; |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8522 | } |
| 8523 | |
| 8524 | return -EINVAL; |
| 8525 | } |
| 8526 | |
| 8527 | static int parse_tc_actions(struct ixgbe_adapter *adapter, |
| 8528 | struct tcf_exts *exts, u64 *action, u8 *queue) |
| 8529 | { |
| 8530 | const struct tc_action *a; |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 8531 | LIST_HEAD(actions); |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8532 | int err; |
| 8533 | |
| 8534 | if (tc_no_actions(exts)) |
| 8535 | return -EINVAL; |
| 8536 | |
WANG Cong | 22dc13c | 2016-08-13 22:35:00 -0700 | [diff] [blame] | 8537 | tcf_exts_to_list(exts, &actions); |
| 8538 | list_for_each_entry(a, &actions, list) { |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8539 | |
| 8540 | /* Drop action */ |
| 8541 | if (is_tcf_gact_shot(a)) { |
| 8542 | *action = IXGBE_FDIR_DROP_QUEUE; |
| 8543 | *queue = IXGBE_FDIR_DROP_QUEUE; |
| 8544 | return 0; |
| 8545 | } |
| 8546 | |
| 8547 | /* Redirect to a VF or a offloaded macvlan */ |
Shmulik Ladkani | 5724b8b | 2016-10-13 09:06:43 +0300 | [diff] [blame] | 8548 | if (is_tcf_mirred_egress_redirect(a)) { |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8549 | int ifindex = tcf_mirred_ifindex(a); |
| 8550 | |
| 8551 | err = handle_redirect_action(adapter, ifindex, queue, |
| 8552 | action); |
| 8553 | if (err == 0) |
| 8554 | return err; |
| 8555 | } |
| 8556 | } |
| 8557 | |
| 8558 | return -EINVAL; |
| 8559 | } |
| 8560 | #else |
| 8561 | static int parse_tc_actions(struct ixgbe_adapter *adapter, |
| 8562 | struct tcf_exts *exts, u64 *action, u8 *queue) |
| 8563 | { |
| 8564 | return -EINVAL; |
| 8565 | } |
| 8566 | #endif /* CONFIG_NET_CLS_ACT */ |
| 8567 | |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8568 | static int ixgbe_clsu32_build_input(struct ixgbe_fdir_filter *input, |
| 8569 | union ixgbe_atr_input *mask, |
| 8570 | struct tc_cls_u32_offload *cls, |
| 8571 | struct ixgbe_mat_field *field_ptr, |
| 8572 | struct ixgbe_nexthdr *nexthdr) |
| 8573 | { |
| 8574 | int i, j, off; |
| 8575 | __be32 val, m; |
| 8576 | bool found_entry = false, found_jump_field = false; |
| 8577 | |
| 8578 | for (i = 0; i < cls->knode.sel->nkeys; i++) { |
| 8579 | off = cls->knode.sel->keys[i].off; |
| 8580 | val = cls->knode.sel->keys[i].val; |
| 8581 | m = cls->knode.sel->keys[i].mask; |
| 8582 | |
| 8583 | for (j = 0; field_ptr[j].val; j++) { |
| 8584 | if (field_ptr[j].off == off) { |
| 8585 | field_ptr[j].val(input, mask, val, m); |
| 8586 | input->filter.formatted.flow_type |= |
| 8587 | field_ptr[j].type; |
| 8588 | found_entry = true; |
| 8589 | break; |
| 8590 | } |
| 8591 | } |
| 8592 | if (nexthdr) { |
| 8593 | if (nexthdr->off == cls->knode.sel->keys[i].off && |
| 8594 | nexthdr->val == cls->knode.sel->keys[i].val && |
| 8595 | nexthdr->mask == cls->knode.sel->keys[i].mask) |
| 8596 | found_jump_field = true; |
| 8597 | else |
| 8598 | continue; |
| 8599 | } |
| 8600 | } |
| 8601 | |
| 8602 | if (nexthdr && !found_jump_field) |
| 8603 | return -EINVAL; |
| 8604 | |
| 8605 | if (!found_entry) |
| 8606 | return 0; |
| 8607 | |
| 8608 | mask->formatted.flow_type = IXGBE_ATR_L4TYPE_IPV6_MASK | |
| 8609 | IXGBE_ATR_L4TYPE_MASK; |
| 8610 | |
| 8611 | if (input->filter.formatted.flow_type == IXGBE_ATR_FLOW_TYPE_IPV4) |
| 8612 | mask->formatted.flow_type &= IXGBE_ATR_L4TYPE_IPV6_MASK; |
| 8613 | |
| 8614 | return 0; |
| 8615 | } |
| 8616 | |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8617 | static int ixgbe_configure_clsu32(struct ixgbe_adapter *adapter, |
| 8618 | __be16 protocol, |
| 8619 | struct tc_cls_u32_offload *cls) |
| 8620 | { |
| 8621 | u32 loc = cls->knode.handle & 0xfffff; |
| 8622 | struct ixgbe_hw *hw = &adapter->hw; |
| 8623 | struct ixgbe_mat_field *field_ptr; |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8624 | struct ixgbe_fdir_filter *input = NULL; |
| 8625 | union ixgbe_atr_input *mask = NULL; |
| 8626 | struct ixgbe_jump_table *jump = NULL; |
| 8627 | int i, err = -EINVAL; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8628 | u8 queue; |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8629 | u32 uhtid, link_uhtid; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8630 | |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8631 | uhtid = TC_U32_USERHTID(cls->knode.handle); |
| 8632 | link_uhtid = TC_U32_USERHTID(cls->knode.link_handle); |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8633 | |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8634 | /* At the moment cls_u32 jumps to network layer and skips past |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8635 | * L2 headers. The canonical method to match L2 frames is to use |
| 8636 | * negative values. However this is error prone at best but really |
| 8637 | * just broken because there is no way to "know" what sort of hdr |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8638 | * is in front of the network layer. Fix cls_u32 to support L2 |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8639 | * headers when needed. |
| 8640 | */ |
| 8641 | if (protocol != htons(ETH_P_IP)) |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8642 | return err; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8643 | |
| 8644 | if (loc >= ((1024 << adapter->fdir_pballoc) - 2)) { |
| 8645 | e_err(drv, "Location out of range\n"); |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8646 | return err; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8647 | } |
| 8648 | |
| 8649 | /* cls u32 is a graph starting at root node 0x800. The driver tracks |
| 8650 | * links and also the fields used to advance the parser across each |
| 8651 | * link (e.g. nexthdr/eat parameters from 'tc'). This way we can map |
| 8652 | * the u32 graph onto the hardware parse graph denoted in ixgbe_model.h |
| 8653 | * To add support for new nodes update ixgbe_model.h parse structures |
| 8654 | * this function _should_ be generic try not to hardcode values here. |
| 8655 | */ |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8656 | if (uhtid == 0x800) { |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8657 | field_ptr = (adapter->jump_tables[0])->mat; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8658 | } else { |
Sridhar Samudrala | 176621c | 2016-03-07 09:41:47 -0800 | [diff] [blame] | 8659 | if (uhtid >= IXGBE_MAX_LINK_HANDLE) |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8660 | return err; |
| 8661 | if (!adapter->jump_tables[uhtid]) |
| 8662 | return err; |
| 8663 | field_ptr = (adapter->jump_tables[uhtid])->mat; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8664 | } |
| 8665 | |
| 8666 | if (!field_ptr) |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8667 | return err; |
| 8668 | |
| 8669 | /* At this point we know the field_ptr is valid and need to either |
| 8670 | * build cls_u32 link or attach filter. Because adding a link to |
| 8671 | * a handle that does not exist is invalid and the same for adding |
| 8672 | * rules to handles that don't exist. |
| 8673 | */ |
| 8674 | |
| 8675 | if (link_uhtid) { |
| 8676 | struct ixgbe_nexthdr *nexthdr = ixgbe_ipv4_jumps; |
| 8677 | |
| 8678 | if (link_uhtid >= IXGBE_MAX_LINK_HANDLE) |
| 8679 | return err; |
| 8680 | |
| 8681 | if (!test_bit(link_uhtid - 1, &adapter->tables)) |
| 8682 | return err; |
| 8683 | |
Amritha Nambiar | 1ecedc9 | 2016-05-06 19:09:51 -0700 | [diff] [blame] | 8684 | /* Multiple filters as links to the same hash table are not |
| 8685 | * supported. To add a new filter with the same next header |
| 8686 | * but different match/jump conditions, create a new hash table |
| 8687 | * and link to it. |
| 8688 | */ |
| 8689 | if (adapter->jump_tables[link_uhtid] && |
| 8690 | (adapter->jump_tables[link_uhtid])->link_hdl) { |
| 8691 | e_err(drv, "Link filter exists for link: %x\n", |
| 8692 | link_uhtid); |
| 8693 | return err; |
| 8694 | } |
| 8695 | |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8696 | for (i = 0; nexthdr[i].jump; i++) { |
| 8697 | if (nexthdr[i].o != cls->knode.sel->offoff || |
| 8698 | nexthdr[i].s != cls->knode.sel->offshift || |
| 8699 | nexthdr[i].m != cls->knode.sel->offmask) |
| 8700 | return err; |
| 8701 | |
| 8702 | jump = kzalloc(sizeof(*jump), GFP_KERNEL); |
| 8703 | if (!jump) |
| 8704 | return -ENOMEM; |
| 8705 | input = kzalloc(sizeof(*input), GFP_KERNEL); |
| 8706 | if (!input) { |
| 8707 | err = -ENOMEM; |
| 8708 | goto free_jump; |
| 8709 | } |
| 8710 | mask = kzalloc(sizeof(*mask), GFP_KERNEL); |
| 8711 | if (!mask) { |
| 8712 | err = -ENOMEM; |
Amritha Nambiar | 12746fd | 2016-05-16 18:33:20 -0700 | [diff] [blame] | 8713 | goto free_input; |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8714 | } |
| 8715 | jump->input = input; |
| 8716 | jump->mask = mask; |
Amritha Nambiar | 1ecedc9 | 2016-05-06 19:09:51 -0700 | [diff] [blame] | 8717 | jump->link_hdl = cls->knode.handle; |
| 8718 | |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8719 | err = ixgbe_clsu32_build_input(input, mask, cls, |
| 8720 | field_ptr, &nexthdr[i]); |
| 8721 | if (!err) { |
| 8722 | jump->mat = nexthdr[i].jump; |
| 8723 | adapter->jump_tables[link_uhtid] = jump; |
| 8724 | break; |
| 8725 | } |
| 8726 | } |
| 8727 | return 0; |
| 8728 | } |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8729 | |
| 8730 | input = kzalloc(sizeof(*input), GFP_KERNEL); |
| 8731 | if (!input) |
| 8732 | return -ENOMEM; |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8733 | mask = kzalloc(sizeof(*mask), GFP_KERNEL); |
| 8734 | if (!mask) { |
| 8735 | err = -ENOMEM; |
Amritha Nambiar | 12746fd | 2016-05-16 18:33:20 -0700 | [diff] [blame] | 8736 | goto free_input; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8737 | } |
| 8738 | |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8739 | if ((uhtid != 0x800) && (adapter->jump_tables[uhtid])) { |
| 8740 | if ((adapter->jump_tables[uhtid])->input) |
| 8741 | memcpy(input, (adapter->jump_tables[uhtid])->input, |
| 8742 | sizeof(*input)); |
| 8743 | if ((adapter->jump_tables[uhtid])->mask) |
| 8744 | memcpy(mask, (adapter->jump_tables[uhtid])->mask, |
| 8745 | sizeof(*mask)); |
Amritha Nambiar | 12746fd | 2016-05-16 18:33:20 -0700 | [diff] [blame] | 8746 | |
| 8747 | /* Lookup in all child hash tables if this location is already |
| 8748 | * filled with a filter |
| 8749 | */ |
| 8750 | for (i = 1; i < IXGBE_MAX_LINK_HANDLE; i++) { |
| 8751 | struct ixgbe_jump_table *link = adapter->jump_tables[i]; |
| 8752 | |
| 8753 | if (link && (test_bit(loc - 1, link->child_loc_map))) { |
| 8754 | e_err(drv, "Filter exists in location: %x\n", |
| 8755 | loc); |
| 8756 | err = -EINVAL; |
| 8757 | goto err_out; |
| 8758 | } |
| 8759 | } |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8760 | } |
| 8761 | err = ixgbe_clsu32_build_input(input, mask, cls, field_ptr, NULL); |
| 8762 | if (err) |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8763 | goto err_out; |
| 8764 | |
Sridhar Samudrala | 947f8a4 | 2016-04-05 10:39:07 -0700 | [diff] [blame] | 8765 | err = parse_tc_actions(adapter, cls->knode.exts, &input->action, |
| 8766 | &queue); |
| 8767 | if (err < 0) |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8768 | goto err_out; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8769 | |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8770 | input->sw_idx = loc; |
| 8771 | |
| 8772 | spin_lock(&adapter->fdir_perfect_lock); |
| 8773 | |
| 8774 | if (hlist_empty(&adapter->fdir_filter_list)) { |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8775 | memcpy(&adapter->fdir_mask, mask, sizeof(*mask)); |
| 8776 | err = ixgbe_fdir_set_input_mask_82599(hw, mask); |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8777 | if (err) |
| 8778 | goto err_out_w_lock; |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8779 | } else if (memcmp(&adapter->fdir_mask, mask, sizeof(*mask))) { |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8780 | err = -EINVAL; |
| 8781 | goto err_out_w_lock; |
| 8782 | } |
| 8783 | |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8784 | ixgbe_atr_compute_perfect_hash_82599(&input->filter, mask); |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8785 | err = ixgbe_fdir_write_perfect_filter_82599(hw, &input->filter, |
| 8786 | input->sw_idx, queue); |
| 8787 | if (!err) |
| 8788 | ixgbe_update_ethtool_fdir_entry(adapter, input, input->sw_idx); |
| 8789 | spin_unlock(&adapter->fdir_perfect_lock); |
| 8790 | |
Amritha Nambiar | 12746fd | 2016-05-16 18:33:20 -0700 | [diff] [blame] | 8791 | if ((uhtid != 0x800) && (adapter->jump_tables[uhtid])) |
| 8792 | set_bit(loc - 1, (adapter->jump_tables[uhtid])->child_loc_map); |
Amritha Nambiar | 1ecedc9 | 2016-05-06 19:09:51 -0700 | [diff] [blame] | 8793 | |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8794 | kfree(mask); |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8795 | return err; |
| 8796 | err_out_w_lock: |
| 8797 | spin_unlock(&adapter->fdir_perfect_lock); |
| 8798 | err_out: |
Amritha Nambiar | 1ecedc9 | 2016-05-06 19:09:51 -0700 | [diff] [blame] | 8799 | kfree(mask); |
Amritha Nambiar | 12746fd | 2016-05-16 18:33:20 -0700 | [diff] [blame] | 8800 | free_input: |
| 8801 | kfree(input); |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 8802 | free_jump: |
| 8803 | kfree(jump); |
| 8804 | return err; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8805 | } |
| 8806 | |
Emil Tantilov | 6e2a60b | 2016-02-17 15:55:06 -0800 | [diff] [blame] | 8807 | static int __ixgbe_setup_tc(struct net_device *dev, u32 handle, __be16 proto, |
| 8808 | struct tc_to_netdev *tc) |
John Fastabend | e4c6734 | 2016-02-16 21:16:15 -0800 | [diff] [blame] | 8809 | { |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8810 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 8811 | |
| 8812 | if (TC_H_MAJ(handle) == TC_H_MAJ(TC_H_INGRESS) && |
| 8813 | tc->type == TC_SETUP_CLSU32) { |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8814 | switch (tc->cls_u32->command) { |
| 8815 | case TC_CLSU32_NEW_KNODE: |
| 8816 | case TC_CLSU32_REPLACE_KNODE: |
| 8817 | return ixgbe_configure_clsu32(adapter, |
| 8818 | proto, tc->cls_u32); |
| 8819 | case TC_CLSU32_DELETE_KNODE: |
| 8820 | return ixgbe_delete_clsu32(adapter, tc->cls_u32); |
John Fastabend | db956ae | 2016-02-16 21:19:19 -0800 | [diff] [blame] | 8821 | case TC_CLSU32_NEW_HNODE: |
| 8822 | case TC_CLSU32_REPLACE_HNODE: |
| 8823 | return ixgbe_configure_clsu32_add_hnode(adapter, proto, |
| 8824 | tc->cls_u32); |
| 8825 | case TC_CLSU32_DELETE_HNODE: |
| 8826 | return ixgbe_configure_clsu32_del_hnode(adapter, |
| 8827 | tc->cls_u32); |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8828 | default: |
| 8829 | return -EINVAL; |
| 8830 | } |
| 8831 | } |
| 8832 | |
John Fastabend | 5eb4dce | 2016-02-29 11:26:13 -0800 | [diff] [blame] | 8833 | if (tc->type != TC_SETUP_MQPRIO) |
John Fastabend | e4c6734 | 2016-02-16 21:16:15 -0800 | [diff] [blame] | 8834 | return -EINVAL; |
| 8835 | |
John Fastabend | 16e5cc6 | 2016-02-16 21:16:43 -0800 | [diff] [blame] | 8836 | return ixgbe_setup_tc(dev, tc->tc); |
John Fastabend | e4c6734 | 2016-02-16 21:16:15 -0800 | [diff] [blame] | 8837 | } |
| 8838 | |
Greg Rose | da36b64 | 2012-12-11 08:26:43 +0000 | [diff] [blame] | 8839 | #ifdef CONFIG_PCI_IOV |
| 8840 | void ixgbe_sriov_reinit(struct ixgbe_adapter *adapter) |
| 8841 | { |
| 8842 | struct net_device *netdev = adapter->netdev; |
| 8843 | |
| 8844 | rtnl_lock(); |
Greg Rose | da36b64 | 2012-12-11 08:26:43 +0000 | [diff] [blame] | 8845 | ixgbe_setup_tc(netdev, netdev_get_num_tc(netdev)); |
Greg Rose | da36b64 | 2012-12-11 08:26:43 +0000 | [diff] [blame] | 8846 | rtnl_unlock(); |
| 8847 | } |
| 8848 | |
| 8849 | #endif |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8850 | void ixgbe_do_reset(struct net_device *netdev) |
| 8851 | { |
| 8852 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 8853 | |
| 8854 | if (netif_running(netdev)) |
| 8855 | ixgbe_reinit_locked(adapter); |
| 8856 | else |
| 8857 | ixgbe_reset(adapter); |
| 8858 | } |
| 8859 | |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 8860 | static netdev_features_t ixgbe_fix_features(struct net_device *netdev, |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8861 | netdev_features_t features) |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8862 | { |
| 8863 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 8864 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8865 | /* If Rx checksum is disabled, then RSC/LRO should also be disabled */ |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8866 | if (!(features & NETIF_F_RXCSUM)) |
| 8867 | features &= ~NETIF_F_LRO; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8868 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8869 | /* Turn off LRO if not RSC capable */ |
| 8870 | if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) |
| 8871 | features &= ~NETIF_F_LRO; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 8872 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8873 | return features; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8874 | } |
| 8875 | |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 8876 | static int ixgbe_set_features(struct net_device *netdev, |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8877 | netdev_features_t features) |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8878 | { |
| 8879 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8880 | netdev_features_t changed = netdev->features ^ features; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8881 | bool need_reset = false; |
| 8882 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8883 | /* Make sure RSC matches LRO, reset if change */ |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8884 | if (!(features & NETIF_F_LRO)) { |
| 8885 | if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8886 | need_reset = true; |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8887 | adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED; |
| 8888 | } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) && |
| 8889 | !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) { |
| 8890 | if (adapter->rx_itr_setting == 1 || |
| 8891 | adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) { |
| 8892 | adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED; |
| 8893 | need_reset = true; |
| 8894 | } else if ((changed ^ features) & NETIF_F_LRO) { |
| 8895 | e_info(probe, "rx-usecs set too low, " |
| 8896 | "disabling RSC\n"); |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8897 | } |
| 8898 | } |
| 8899 | |
| 8900 | /* |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8901 | * Check if Flow Director n-tuple support or hw_tc support was |
| 8902 | * enabled or disabled. If the state changed, we need to reset. |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8903 | */ |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8904 | if ((features & NETIF_F_NTUPLE) || (features & NETIF_F_HW_TC)) { |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8905 | /* turn off ATR, enable perfect filters and reset */ |
Alexander Duyck | 39cb681 | 2012-06-06 05:38:20 +0000 | [diff] [blame] | 8906 | if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) |
| 8907 | need_reset = true; |
| 8908 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8909 | adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE; |
| 8910 | adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE; |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8911 | } else { |
Alexander Duyck | 39cb681 | 2012-06-06 05:38:20 +0000 | [diff] [blame] | 8912 | /* turn off perfect filters, enable ATR and reset */ |
| 8913 | if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) |
| 8914 | need_reset = true; |
| 8915 | |
| 8916 | adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE; |
| 8917 | |
| 8918 | /* We cannot enable ATR if SR-IOV is enabled */ |
John Fastabend | b82b17d | 2016-02-16 21:18:53 -0800 | [diff] [blame] | 8919 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED || |
| 8920 | /* We cannot enable ATR if we have 2 or more tcs */ |
| 8921 | (netdev_get_num_tc(netdev) > 1) || |
| 8922 | /* We cannot enable ATR if RSS is disabled */ |
| 8923 | (adapter->ring_feature[RING_F_RSS].limit <= 1) || |
| 8924 | /* A sample rate of 0 indicates ATR disabled */ |
| 8925 | (!adapter->atr_sample_rate)) |
| 8926 | ; /* do nothing not supported */ |
| 8927 | else /* otherwise supported and set the flag */ |
| 8928 | adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8929 | } |
| 8930 | |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 8931 | if (changed & NETIF_F_RXALL) |
| 8932 | need_reset = true; |
| 8933 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 8934 | netdev->features = features; |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 8935 | |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 8936 | if ((adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE)) { |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 8937 | if (features & NETIF_F_RXCSUM) { |
| 8938 | adapter->flags2 |= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED; |
| 8939 | } else { |
| 8940 | u32 port_mask = IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK; |
| 8941 | |
| 8942 | ixgbe_clear_udp_tunnel_port(adapter, port_mask); |
| 8943 | } |
| 8944 | } |
| 8945 | |
| 8946 | if ((adapter->flags & IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE)) { |
| 8947 | if (features & NETIF_F_RXCSUM) { |
| 8948 | adapter->flags2 |= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED; |
| 8949 | } else { |
| 8950 | u32 port_mask = IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK; |
| 8951 | |
| 8952 | ixgbe_clear_udp_tunnel_port(adapter, port_mask); |
| 8953 | } |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 8954 | } |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 8955 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8956 | if (need_reset) |
| 8957 | ixgbe_do_reset(netdev); |
Alexander Duyck | 0c5a616 | 2016-03-10 10:01:10 -0800 | [diff] [blame] | 8958 | else if (changed & (NETIF_F_HW_VLAN_CTAG_RX | |
| 8959 | NETIF_F_HW_VLAN_CTAG_FILTER)) |
| 8960 | ixgbe_set_rx_mode(netdev); |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8961 | |
| 8962 | return 0; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 8963 | } |
| 8964 | |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 8965 | /** |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 8966 | * ixgbe_add_udp_tunnel_port - Get notifications about adding UDP tunnel ports |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 8967 | * @dev: The port's netdev |
Sabrina Dubroca | e5de25d | 2016-07-11 13:12:28 +0200 | [diff] [blame] | 8968 | * @ti: Tunnel endpoint information |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 8969 | **/ |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 8970 | static void ixgbe_add_udp_tunnel_port(struct net_device *dev, |
| 8971 | struct udp_tunnel_info *ti) |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 8972 | { |
| 8973 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 8974 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | b3a4955 | 2016-06-16 12:22:19 -0700 | [diff] [blame] | 8975 | __be16 port = ti->port; |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 8976 | u32 port_shift = 0; |
| 8977 | u32 reg; |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 8978 | |
Alexander Duyck | b3a4955 | 2016-06-16 12:22:19 -0700 | [diff] [blame] | 8979 | if (ti->sa_family != AF_INET) |
| 8980 | return; |
| 8981 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 8982 | switch (ti->type) { |
| 8983 | case UDP_TUNNEL_TYPE_VXLAN: |
| 8984 | if (!(adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE)) |
| 8985 | return; |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 8986 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 8987 | if (adapter->vxlan_port == port) |
| 8988 | return; |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 8989 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 8990 | if (adapter->vxlan_port) { |
| 8991 | netdev_info(dev, |
| 8992 | "VXLAN port %d set, not adding port %d\n", |
| 8993 | ntohs(adapter->vxlan_port), |
| 8994 | ntohs(port)); |
| 8995 | return; |
| 8996 | } |
| 8997 | |
| 8998 | adapter->vxlan_port = port; |
| 8999 | break; |
| 9000 | case UDP_TUNNEL_TYPE_GENEVE: |
| 9001 | if (!(adapter->flags & IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE)) |
| 9002 | return; |
| 9003 | |
| 9004 | if (adapter->geneve_port == port) |
| 9005 | return; |
| 9006 | |
| 9007 | if (adapter->geneve_port) { |
| 9008 | netdev_info(dev, |
| 9009 | "GENEVE port %d set, not adding port %d\n", |
| 9010 | ntohs(adapter->geneve_port), |
| 9011 | ntohs(port)); |
| 9012 | return; |
| 9013 | } |
| 9014 | |
| 9015 | port_shift = IXGBE_VXLANCTRL_GENEVE_UDPPORT_SHIFT; |
| 9016 | adapter->geneve_port = port; |
| 9017 | break; |
| 9018 | default: |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 9019 | return; |
| 9020 | } |
| 9021 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 9022 | reg = IXGBE_READ_REG(hw, IXGBE_VXLANCTRL) | ntohs(port) << port_shift; |
| 9023 | IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, reg); |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 9024 | } |
| 9025 | |
| 9026 | /** |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 9027 | * ixgbe_del_udp_tunnel_port - Get notifications about removing UDP tunnel ports |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 9028 | * @dev: The port's netdev |
Sabrina Dubroca | e5de25d | 2016-07-11 13:12:28 +0200 | [diff] [blame] | 9029 | * @ti: Tunnel endpoint information |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 9030 | **/ |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 9031 | static void ixgbe_del_udp_tunnel_port(struct net_device *dev, |
| 9032 | struct udp_tunnel_info *ti) |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 9033 | { |
| 9034 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 9035 | u32 port_mask; |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 9036 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 9037 | if (ti->type != UDP_TUNNEL_TYPE_VXLAN && |
| 9038 | ti->type != UDP_TUNNEL_TYPE_GENEVE) |
Alexander Duyck | b3a4955 | 2016-06-16 12:22:19 -0700 | [diff] [blame] | 9039 | return; |
| 9040 | |
| 9041 | if (ti->sa_family != AF_INET) |
| 9042 | return; |
| 9043 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 9044 | switch (ti->type) { |
| 9045 | case UDP_TUNNEL_TYPE_VXLAN: |
| 9046 | if (!(adapter->flags & IXGBE_FLAG_VXLAN_OFFLOAD_CAPABLE)) |
| 9047 | return; |
Mark Rustad | 67359c3 | 2015-06-15 11:33:25 -0700 | [diff] [blame] | 9048 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 9049 | if (adapter->vxlan_port != ti->port) { |
| 9050 | netdev_info(dev, "VXLAN port %d not found\n", |
| 9051 | ntohs(ti->port)); |
| 9052 | return; |
| 9053 | } |
| 9054 | |
| 9055 | port_mask = IXGBE_VXLANCTRL_VXLAN_UDPPORT_MASK; |
| 9056 | break; |
| 9057 | case UDP_TUNNEL_TYPE_GENEVE: |
| 9058 | if (!(adapter->flags & IXGBE_FLAG_GENEVE_OFFLOAD_CAPABLE)) |
| 9059 | return; |
| 9060 | |
| 9061 | if (adapter->geneve_port != ti->port) { |
| 9062 | netdev_info(dev, "GENEVE port %d not found\n", |
| 9063 | ntohs(ti->port)); |
| 9064 | return; |
| 9065 | } |
| 9066 | |
| 9067 | port_mask = IXGBE_VXLANCTRL_GENEVE_UDPPORT_MASK; |
| 9068 | break; |
| 9069 | default: |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 9070 | return; |
| 9071 | } |
| 9072 | |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 9073 | ixgbe_clear_udp_tunnel_port(adapter, port_mask); |
| 9074 | adapter->flags2 |= IXGBE_FLAG2_UDP_TUN_REREG_NEEDED; |
Don Skidmore | 3f20780 | 2014-12-23 07:40:34 +0000 | [diff] [blame] | 9075 | } |
| 9076 | |
stephen hemminger | edc7d57 | 2012-10-01 12:32:33 +0000 | [diff] [blame] | 9077 | static int ixgbe_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[], |
John Fastabend | 0f4b0ad | 2012-04-15 06:44:19 +0000 | [diff] [blame] | 9078 | struct net_device *dev, |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 9079 | const unsigned char *addr, u16 vid, |
John Fastabend | 0f4b0ad | 2012-04-15 06:44:19 +0000 | [diff] [blame] | 9080 | u16 flags) |
| 9081 | { |
Alexander Duyck | bcfd343 | 2014-07-17 02:11:22 +0000 | [diff] [blame] | 9082 | /* guarantee we can provide a unique filter for the unicast address */ |
Ben Hutchings | 46acc46 | 2012-11-01 09:11:11 +0000 | [diff] [blame] | 9083 | if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) { |
Alexander Duyck | 2f9be16 | 2015-10-22 16:26:42 -0700 | [diff] [blame] | 9084 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 9085 | u16 pool = VMDQ_P(0); |
| 9086 | |
| 9087 | if (netdev_uc_count(dev) >= ixgbe_available_rars(adapter, pool)) |
Alexander Duyck | bcfd343 | 2014-07-17 02:11:22 +0000 | [diff] [blame] | 9088 | return -ENOMEM; |
John Fastabend | 0f4b0ad | 2012-04-15 06:44:19 +0000 | [diff] [blame] | 9089 | } |
| 9090 | |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 9091 | return ndo_dflt_fdb_add(ndm, tb, dev, addr, vid, flags); |
John Fastabend | 0f4b0ad | 2012-04-15 06:44:19 +0000 | [diff] [blame] | 9092 | } |
| 9093 | |
Don Skidmore | 219efe9 | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 9094 | /** |
| 9095 | * ixgbe_configure_bridge_mode - set various bridge modes |
| 9096 | * @adapter - the private structure |
| 9097 | * @mode - requested bridge mode |
| 9098 | * |
| 9099 | * Configure some settings require for various bridge modes. |
| 9100 | **/ |
| 9101 | static int ixgbe_configure_bridge_mode(struct ixgbe_adapter *adapter, |
| 9102 | __u16 mode) |
| 9103 | { |
Don Skidmore | 6d4c96a | 2015-04-09 22:03:23 -0700 | [diff] [blame] | 9104 | struct ixgbe_hw *hw = &adapter->hw; |
| 9105 | unsigned int p, num_pools; |
| 9106 | u32 vmdctl; |
| 9107 | |
Don Skidmore | 219efe9 | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 9108 | switch (mode) { |
| 9109 | case BRIDGE_MODE_VEPA: |
Don Skidmore | 6d4c96a | 2015-04-09 22:03:23 -0700 | [diff] [blame] | 9110 | /* disable Tx loopback, rely on switch hairpin mode */ |
Don Skidmore | 219efe9 | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 9111 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC, 0); |
Don Skidmore | 6d4c96a | 2015-04-09 22:03:23 -0700 | [diff] [blame] | 9112 | |
| 9113 | /* must enable Rx switching replication to allow multicast |
| 9114 | * packet reception on all VFs, and to enable source address |
| 9115 | * pruning. |
| 9116 | */ |
| 9117 | vmdctl = IXGBE_READ_REG(hw, IXGBE_VMD_CTL); |
| 9118 | vmdctl |= IXGBE_VT_CTL_REPLEN; |
| 9119 | IXGBE_WRITE_REG(hw, IXGBE_VMD_CTL, vmdctl); |
| 9120 | |
| 9121 | /* enable Rx source address pruning. Note, this requires |
| 9122 | * replication to be enabled or else it does nothing. |
| 9123 | */ |
| 9124 | num_pools = adapter->num_vfs + adapter->num_rx_pools; |
| 9125 | for (p = 0; p < num_pools; p++) { |
| 9126 | if (hw->mac.ops.set_source_address_pruning) |
| 9127 | hw->mac.ops.set_source_address_pruning(hw, |
| 9128 | true, |
| 9129 | p); |
| 9130 | } |
Don Skidmore | 219efe9 | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 9131 | break; |
| 9132 | case BRIDGE_MODE_VEB: |
Don Skidmore | 6d4c96a | 2015-04-09 22:03:23 -0700 | [diff] [blame] | 9133 | /* enable Tx loopback for internal VF/PF communication */ |
Don Skidmore | 219efe9 | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 9134 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_PFDTXGSWC, |
| 9135 | IXGBE_PFDTXGSWC_VT_LBEN); |
Don Skidmore | 6d4c96a | 2015-04-09 22:03:23 -0700 | [diff] [blame] | 9136 | |
| 9137 | /* disable Rx switching replication unless we have SR-IOV |
| 9138 | * virtual functions |
| 9139 | */ |
| 9140 | vmdctl = IXGBE_READ_REG(hw, IXGBE_VMD_CTL); |
| 9141 | if (!adapter->num_vfs) |
| 9142 | vmdctl &= ~IXGBE_VT_CTL_REPLEN; |
| 9143 | IXGBE_WRITE_REG(hw, IXGBE_VMD_CTL, vmdctl); |
| 9144 | |
| 9145 | /* disable Rx source address pruning, since we don't expect to |
| 9146 | * be receiving external loopback of our transmitted frames. |
| 9147 | */ |
| 9148 | num_pools = adapter->num_vfs + adapter->num_rx_pools; |
| 9149 | for (p = 0; p < num_pools; p++) { |
| 9150 | if (hw->mac.ops.set_source_address_pruning) |
| 9151 | hw->mac.ops.set_source_address_pruning(hw, |
| 9152 | false, |
| 9153 | p); |
| 9154 | } |
Don Skidmore | 219efe9 | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 9155 | break; |
| 9156 | default: |
| 9157 | return -EINVAL; |
| 9158 | } |
| 9159 | |
| 9160 | adapter->bridge_mode = mode; |
| 9161 | |
| 9162 | e_info(drv, "enabling bridge mode: %s\n", |
| 9163 | mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB"); |
| 9164 | |
| 9165 | return 0; |
| 9166 | } |
| 9167 | |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9168 | static int ixgbe_ndo_bridge_setlink(struct net_device *dev, |
Roopa Prabhu | add511b | 2015-01-29 22:40:12 -0800 | [diff] [blame] | 9169 | struct nlmsghdr *nlh, u16 flags) |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9170 | { |
| 9171 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 9172 | struct nlattr *attr, *br_spec; |
| 9173 | int rem; |
| 9174 | |
| 9175 | if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) |
| 9176 | return -EOPNOTSUPP; |
| 9177 | |
| 9178 | br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); |
Thomas Graf | 4ea85e8 | 2014-11-26 13:42:18 +0100 | [diff] [blame] | 9179 | if (!br_spec) |
| 9180 | return -EINVAL; |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9181 | |
| 9182 | nla_for_each_nested(attr, br_spec, rem) { |
Mark Rustad | a1e869d | 2015-04-10 10:36:36 -0700 | [diff] [blame] | 9183 | int status; |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9184 | __u16 mode; |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9185 | |
| 9186 | if (nla_type(attr) != IFLA_BRIDGE_MODE) |
| 9187 | continue; |
| 9188 | |
Thomas Graf | b7c1a31 | 2014-11-26 13:42:17 +0100 | [diff] [blame] | 9189 | if (nla_len(attr) < sizeof(mode)) |
| 9190 | return -EINVAL; |
| 9191 | |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9192 | mode = nla_get_u16(attr); |
Don Skidmore | 219efe9 | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 9193 | status = ixgbe_configure_bridge_mode(adapter, mode); |
| 9194 | if (status) |
| 9195 | return status; |
Don Skidmore | aa2bacb | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 9196 | |
| 9197 | break; |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9198 | } |
| 9199 | |
| 9200 | return 0; |
| 9201 | } |
| 9202 | |
| 9203 | static int ixgbe_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq, |
Vlad Yasevich | 6cbdcee | 2013-02-13 12:00:13 +0000 | [diff] [blame] | 9204 | struct net_device *dev, |
Nicolas Dichtel | 46c264d | 2015-04-28 18:33:49 +0200 | [diff] [blame] | 9205 | u32 filter_mask, int nlflags) |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9206 | { |
| 9207 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9208 | |
| 9209 | if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) |
| 9210 | return 0; |
| 9211 | |
Don Skidmore | aa2bacb | 2015-04-09 22:03:22 -0700 | [diff] [blame] | 9212 | return ndo_dflt_bridge_getlink(skb, pid, seq, dev, |
Scott Feldman | 7d4f8d8 | 2015-06-22 00:27:17 -0700 | [diff] [blame] | 9213 | adapter->bridge_mode, 0, 0, nlflags, |
| 9214 | filter_mask, NULL); |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9215 | } |
| 9216 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9217 | static void *ixgbe_fwd_add(struct net_device *pdev, struct net_device *vdev) |
| 9218 | { |
| 9219 | struct ixgbe_fwd_adapter *fwd_adapter = NULL; |
| 9220 | struct ixgbe_adapter *adapter = netdev_priv(pdev); |
Jacob Keller | aac2f1b | 2014-08-21 06:17:59 +0000 | [diff] [blame] | 9221 | int used_pools = adapter->num_vfs + adapter->num_rx_pools; |
John Fastabend | 51f3773 | 2013-11-08 00:51:10 -0800 | [diff] [blame] | 9222 | unsigned int limit; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9223 | int pool, err; |
| 9224 | |
Jacob Keller | aac2f1b | 2014-08-21 06:17:59 +0000 | [diff] [blame] | 9225 | /* Hardware has a limited number of available pools. Each VF, and the |
| 9226 | * PF require a pool. Check to ensure we don't attempt to use more |
| 9227 | * then the available number of pools. |
| 9228 | */ |
| 9229 | if (used_pools >= IXGBE_MAX_VF_FUNCTIONS) |
| 9230 | return ERR_PTR(-EINVAL); |
| 9231 | |
John Fastabend | 219354d | 2013-11-08 00:50:32 -0800 | [diff] [blame] | 9232 | #ifdef CONFIG_RPS |
| 9233 | if (vdev->num_rx_queues != vdev->num_tx_queues) { |
| 9234 | netdev_info(pdev, "%s: Only supports a single queue count for TX and RX\n", |
| 9235 | vdev->name); |
| 9236 | return ERR_PTR(-EINVAL); |
| 9237 | } |
| 9238 | #endif |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9239 | /* Check for hardware restriction on number of rx/tx queues */ |
John Fastabend | 219354d | 2013-11-08 00:50:32 -0800 | [diff] [blame] | 9240 | if (vdev->num_tx_queues > IXGBE_MAX_L2A_QUEUES || |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9241 | vdev->num_tx_queues == IXGBE_BAD_L2A_QUEUE) { |
| 9242 | netdev_info(pdev, |
| 9243 | "%s: Supports RX/TX Queue counts 1,2, and 4\n", |
| 9244 | pdev->name); |
| 9245 | return ERR_PTR(-EINVAL); |
| 9246 | } |
| 9247 | |
| 9248 | if (((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && |
| 9249 | adapter->num_rx_pools > IXGBE_MAX_DCBMACVLANS - 1) || |
| 9250 | (adapter->num_rx_pools > IXGBE_MAX_MACVLANS)) |
| 9251 | return ERR_PTR(-EBUSY); |
| 9252 | |
Maninder Singh | bc52f95 | 2015-06-19 09:37:55 +0530 | [diff] [blame] | 9253 | fwd_adapter = kzalloc(sizeof(*fwd_adapter), GFP_KERNEL); |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9254 | if (!fwd_adapter) |
| 9255 | return ERR_PTR(-ENOMEM); |
| 9256 | |
| 9257 | pool = find_first_zero_bit(&adapter->fwd_bitmask, 32); |
| 9258 | adapter->num_rx_pools++; |
| 9259 | set_bit(pool, &adapter->fwd_bitmask); |
John Fastabend | 51f3773 | 2013-11-08 00:51:10 -0800 | [diff] [blame] | 9260 | limit = find_last_bit(&adapter->fwd_bitmask, 32); |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9261 | |
| 9262 | /* Enable VMDq flag so device will be set in VM mode */ |
| 9263 | adapter->flags |= IXGBE_FLAG_VMDQ_ENABLED | IXGBE_FLAG_SRIOV_ENABLED; |
John Fastabend | 51f3773 | 2013-11-08 00:51:10 -0800 | [diff] [blame] | 9264 | adapter->ring_feature[RING_F_VMDQ].limit = limit + 1; |
John Fastabend | 219354d | 2013-11-08 00:50:32 -0800 | [diff] [blame] | 9265 | adapter->ring_feature[RING_F_RSS].limit = vdev->num_tx_queues; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9266 | |
| 9267 | /* Force reinit of ring allocation with VMDQ enabled */ |
| 9268 | err = ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev)); |
| 9269 | if (err) |
| 9270 | goto fwd_add_err; |
| 9271 | fwd_adapter->pool = pool; |
| 9272 | fwd_adapter->real_adapter = adapter; |
Emil Tantilov | a3b8cb1 | 2016-09-22 15:06:52 -0700 | [diff] [blame] | 9273 | |
| 9274 | if (netif_running(pdev)) { |
| 9275 | err = ixgbe_fwd_ring_up(vdev, fwd_adapter); |
| 9276 | if (err) |
| 9277 | goto fwd_add_err; |
| 9278 | netif_tx_start_all_queues(vdev); |
| 9279 | } |
| 9280 | |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9281 | return fwd_adapter; |
| 9282 | fwd_add_err: |
| 9283 | /* unwind counter and free adapter struct */ |
| 9284 | netdev_info(pdev, |
| 9285 | "%s: dfwd hardware acceleration failed\n", vdev->name); |
| 9286 | clear_bit(pool, &adapter->fwd_bitmask); |
| 9287 | adapter->num_rx_pools--; |
| 9288 | kfree(fwd_adapter); |
| 9289 | return ERR_PTR(err); |
| 9290 | } |
| 9291 | |
| 9292 | static void ixgbe_fwd_del(struct net_device *pdev, void *priv) |
| 9293 | { |
| 9294 | struct ixgbe_fwd_adapter *fwd_adapter = priv; |
| 9295 | struct ixgbe_adapter *adapter = fwd_adapter->real_adapter; |
John Fastabend | 51f3773 | 2013-11-08 00:51:10 -0800 | [diff] [blame] | 9296 | unsigned int limit; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9297 | |
| 9298 | clear_bit(fwd_adapter->pool, &adapter->fwd_bitmask); |
| 9299 | adapter->num_rx_pools--; |
| 9300 | |
John Fastabend | 51f3773 | 2013-11-08 00:51:10 -0800 | [diff] [blame] | 9301 | limit = find_last_bit(&adapter->fwd_bitmask, 32); |
| 9302 | adapter->ring_feature[RING_F_VMDQ].limit = limit + 1; |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9303 | ixgbe_fwd_ring_down(fwd_adapter->netdev, fwd_adapter); |
| 9304 | ixgbe_setup_tc(pdev, netdev_get_num_tc(pdev)); |
| 9305 | netdev_dbg(pdev, "pool %i:%i queues %i:%i VSI bitmask %lx\n", |
| 9306 | fwd_adapter->pool, adapter->num_rx_pools, |
| 9307 | fwd_adapter->rx_base_queue, |
| 9308 | fwd_adapter->rx_base_queue + adapter->num_rx_queues_per_pool, |
| 9309 | adapter->fwd_bitmask); |
| 9310 | kfree(fwd_adapter); |
| 9311 | } |
| 9312 | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 9313 | #define IXGBE_MAX_MAC_HDR_LEN 127 |
| 9314 | #define IXGBE_MAX_NETWORK_HDR_LEN 511 |
| 9315 | |
Mark Rustad | f467bc0 | 2015-06-15 11:33:20 -0700 | [diff] [blame] | 9316 | static netdev_features_t |
| 9317 | ixgbe_features_check(struct sk_buff *skb, struct net_device *dev, |
| 9318 | netdev_features_t features) |
| 9319 | { |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 9320 | unsigned int network_hdr_len, mac_hdr_len; |
Mark Rustad | f467bc0 | 2015-06-15 11:33:20 -0700 | [diff] [blame] | 9321 | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 9322 | /* Make certain the headers can be described by a context descriptor */ |
| 9323 | mac_hdr_len = skb_network_header(skb) - skb->data; |
| 9324 | if (unlikely(mac_hdr_len > IXGBE_MAX_MAC_HDR_LEN)) |
| 9325 | return features & ~(NETIF_F_HW_CSUM | |
| 9326 | NETIF_F_SCTP_CRC | |
| 9327 | NETIF_F_HW_VLAN_CTAG_TX | |
| 9328 | NETIF_F_TSO | |
| 9329 | NETIF_F_TSO6); |
| 9330 | |
| 9331 | network_hdr_len = skb_checksum_start(skb) - skb_network_header(skb); |
| 9332 | if (unlikely(network_hdr_len > IXGBE_MAX_NETWORK_HDR_LEN)) |
| 9333 | return features & ~(NETIF_F_HW_CSUM | |
| 9334 | NETIF_F_SCTP_CRC | |
| 9335 | NETIF_F_TSO | |
| 9336 | NETIF_F_TSO6); |
| 9337 | |
| 9338 | /* We can only support IPV4 TSO in tunnels if we can mangle the |
| 9339 | * inner IP ID field, so strip TSO if MANGLEID is not supported. |
| 9340 | */ |
| 9341 | if (skb->encapsulation && !(features & NETIF_F_TSO_MANGLEID)) |
| 9342 | features &= ~NETIF_F_TSO; |
Mark Rustad | f467bc0 | 2015-06-15 11:33:20 -0700 | [diff] [blame] | 9343 | |
| 9344 | return features; |
| 9345 | } |
| 9346 | |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 9347 | static const struct net_device_ops ixgbe_netdev_ops = { |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 9348 | .ndo_open = ixgbe_open, |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 9349 | .ndo_stop = ixgbe_close, |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 9350 | .ndo_start_xmit = ixgbe_xmit_frame, |
Stephen Hemminger | 09a3b1f | 2009-03-21 13:40:01 -0700 | [diff] [blame] | 9351 | .ndo_select_queue = ixgbe_select_queue, |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 9352 | .ndo_set_rx_mode = ixgbe_set_rx_mode, |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 9353 | .ndo_validate_addr = eth_validate_addr, |
| 9354 | .ndo_set_mac_address = ixgbe_set_mac, |
| 9355 | .ndo_change_mtu = ixgbe_change_mtu, |
| 9356 | .ndo_tx_timeout = ixgbe_tx_timeout, |
Rostislav Pehlivanov | c04f90e | 2016-01-27 18:33:30 +0000 | [diff] [blame] | 9357 | .ndo_set_tx_maxrate = ixgbe_tx_maxrate, |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 9358 | .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid, |
| 9359 | .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid, |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 9360 | .ndo_do_ioctl = ixgbe_ioctl, |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 9361 | .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac, |
| 9362 | .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan, |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 9363 | .ndo_set_vf_rate = ixgbe_ndo_set_vf_bw, |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 9364 | .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk, |
Vlad Zolotarov | e65ce0d | 2015-03-30 21:35:24 +0300 | [diff] [blame] | 9365 | .ndo_set_vf_rss_query_en = ixgbe_ndo_set_vf_rss_query_en, |
Hiroshi Shimamoto | 54011e4 | 2015-08-28 06:58:33 +0000 | [diff] [blame] | 9366 | .ndo_set_vf_trust = ixgbe_ndo_set_vf_trust, |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 9367 | .ndo_get_vf_config = ixgbe_ndo_get_vf_config, |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 9368 | .ndo_get_stats64 = ixgbe_get_stats64, |
John Fastabend | e4c6734 | 2016-02-16 21:16:15 -0800 | [diff] [blame] | 9369 | .ndo_setup_tc = __ixgbe_setup_tc, |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 9370 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 9371 | .ndo_poll_controller = ixgbe_netpoll, |
| 9372 | #endif |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 9373 | #ifdef IXGBE_FCOE |
| 9374 | .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get, |
Yi Zou | 68a683c | 2011-02-01 07:22:16 +0000 | [diff] [blame] | 9375 | .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target, |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 9376 | .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put, |
Yi Zou | 8450ff8 | 2009-08-31 12:32:14 +0000 | [diff] [blame] | 9377 | .ndo_fcoe_enable = ixgbe_fcoe_enable, |
| 9378 | .ndo_fcoe_disable = ixgbe_fcoe_disable, |
Yi Zou | 61a1fa1 | 2009-10-28 18:24:56 +0000 | [diff] [blame] | 9379 | .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn, |
Neerav Parikh | ea81875 | 2012-01-04 20:23:40 +0000 | [diff] [blame] | 9380 | .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo, |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 9381 | #endif /* IXGBE_FCOE */ |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 9382 | .ndo_set_features = ixgbe_set_features, |
| 9383 | .ndo_fix_features = ixgbe_fix_features, |
John Fastabend | 0f4b0ad | 2012-04-15 06:44:19 +0000 | [diff] [blame] | 9384 | .ndo_fdb_add = ixgbe_ndo_fdb_add, |
John Fastabend | 815cccb | 2012-10-24 08:13:09 +0000 | [diff] [blame] | 9385 | .ndo_bridge_setlink = ixgbe_ndo_bridge_setlink, |
| 9386 | .ndo_bridge_getlink = ixgbe_ndo_bridge_getlink, |
John Fastabend | 2a47fa4 | 2013-11-06 09:54:52 -0800 | [diff] [blame] | 9387 | .ndo_dfwd_add_station = ixgbe_fwd_add, |
| 9388 | .ndo_dfwd_del_station = ixgbe_fwd_del, |
Emil Tantilov | a21d082 | 2016-08-10 11:19:23 -0700 | [diff] [blame] | 9389 | .ndo_udp_tunnel_add = ixgbe_add_udp_tunnel_port, |
| 9390 | .ndo_udp_tunnel_del = ixgbe_del_udp_tunnel_port, |
Mark Rustad | f467bc0 | 2015-06-15 11:33:20 -0700 | [diff] [blame] | 9391 | .ndo_features_check = ixgbe_features_check, |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 9392 | }; |
| 9393 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 9394 | /** |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 9395 | * ixgbe_enumerate_functions - Get the number of ports this device has |
| 9396 | * @adapter: adapter structure |
| 9397 | * |
| 9398 | * This function enumerates the phsyical functions co-located on a single slot, |
| 9399 | * in order to determine how many ports a device has. This is most useful in |
| 9400 | * determining the required GT/s of PCIe bandwidth necessary for optimal |
| 9401 | * performance. |
| 9402 | **/ |
| 9403 | static inline int ixgbe_enumerate_functions(struct ixgbe_adapter *adapter) |
| 9404 | { |
Jacob Keller | caafb95 | 2014-07-19 07:17:17 +0000 | [diff] [blame] | 9405 | struct pci_dev *entry, *pdev = adapter->pdev; |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 9406 | int physfns = 0; |
| 9407 | |
Jacob Keller | f1f9657 | 2013-08-31 02:45:38 +0000 | [diff] [blame] | 9408 | /* Some cards can not use the generic count PCIe functions method, |
| 9409 | * because they are behind a parent switch, so we hardcode these with |
| 9410 | * the correct number of functions. |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 9411 | */ |
Jacob Keller | 8818970 | 2014-07-19 07:17:16 +0000 | [diff] [blame] | 9412 | if (ixgbe_pcie_from_parent(&adapter->hw)) |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 9413 | physfns = 4; |
Jacob Keller | 8818970 | 2014-07-19 07:17:16 +0000 | [diff] [blame] | 9414 | |
| 9415 | list_for_each_entry(entry, &adapter->pdev->bus->devices, bus_list) { |
| 9416 | /* don't count virtual functions */ |
Jacob Keller | caafb95 | 2014-07-19 07:17:17 +0000 | [diff] [blame] | 9417 | if (entry->is_virtfn) |
| 9418 | continue; |
| 9419 | |
| 9420 | /* When the devices on the bus don't all match our device ID, |
| 9421 | * we can't reliably determine the correct number of |
| 9422 | * functions. This can occur if a function has been direct |
| 9423 | * attached to a virtual machine using VT-d, for example. In |
| 9424 | * this case, simply return -1 to indicate this. |
| 9425 | */ |
| 9426 | if ((entry->vendor != pdev->vendor) || |
| 9427 | (entry->device != pdev->device)) |
| 9428 | return -1; |
| 9429 | |
| 9430 | physfns++; |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 9431 | } |
| 9432 | |
| 9433 | return physfns; |
| 9434 | } |
| 9435 | |
| 9436 | /** |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9437 | * ixgbe_wol_supported - Check whether device supports WoL |
Emil Tantilov | 740234f | 2016-04-21 11:37:12 -0700 | [diff] [blame] | 9438 | * @adapter: the adapter private structure |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9439 | * @device_id: the device ID |
| 9440 | * @subdev_id: the subsystem device ID |
| 9441 | * |
| 9442 | * This function is used by probe and ethtool to determine |
| 9443 | * which devices have WoL support |
| 9444 | * |
| 9445 | **/ |
Emil Tantilov | 740234f | 2016-04-21 11:37:12 -0700 | [diff] [blame] | 9446 | bool ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id, |
| 9447 | u16 subdevice_id) |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9448 | { |
| 9449 | struct ixgbe_hw *hw = &adapter->hw; |
| 9450 | u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9451 | |
Emil Tantilov | 740234f | 2016-04-21 11:37:12 -0700 | [diff] [blame] | 9452 | /* WOL not supported on 82598 */ |
| 9453 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 9454 | return false; |
| 9455 | |
| 9456 | /* check eeprom to see if WOL is enabled for X540 and newer */ |
| 9457 | if (hw->mac.type >= ixgbe_mac_X540) { |
| 9458 | if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) || |
| 9459 | ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) && |
| 9460 | (hw->bus.func == 0))) |
| 9461 | return true; |
| 9462 | } |
| 9463 | |
| 9464 | /* WOL is determined based on device IDs for 82599 MACs */ |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9465 | switch (device_id) { |
| 9466 | case IXGBE_DEV_ID_82599_SFP: |
| 9467 | /* Only these subdevices could supports WOL */ |
| 9468 | switch (subdevice_id) { |
| 9469 | case IXGBE_SUBDEV_ID_82599_560FLR: |
Emil Tantilov | 00103a6c | 2016-04-21 11:37:06 -0700 | [diff] [blame] | 9470 | case IXGBE_SUBDEV_ID_82599_LOM_SNAP6: |
| 9471 | case IXGBE_SUBDEV_ID_82599_SFP_WOL0: |
| 9472 | case IXGBE_SUBDEV_ID_82599_SFP_2OCP: |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9473 | /* only support first port */ |
| 9474 | if (hw->bus.func != 0) |
| 9475 | break; |
Emil Tantilov | 5700ff2 | 2013-04-18 08:18:55 +0000 | [diff] [blame] | 9476 | case IXGBE_SUBDEV_ID_82599_SP_560FLR: |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9477 | case IXGBE_SUBDEV_ID_82599_SFP: |
Don Skidmore | b6dfd93 | 2012-07-11 07:17:42 +0000 | [diff] [blame] | 9478 | case IXGBE_SUBDEV_ID_82599_RNDC: |
Emil Tantilov | f8a06c2 | 2012-08-16 08:13:07 +0000 | [diff] [blame] | 9479 | case IXGBE_SUBDEV_ID_82599_ECNA_DP: |
Emil Tantilov | 00103a6c | 2016-04-21 11:37:06 -0700 | [diff] [blame] | 9480 | case IXGBE_SUBDEV_ID_82599_SFP_1OCP: |
| 9481 | case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM1: |
| 9482 | case IXGBE_SUBDEV_ID_82599_SFP_LOM_OEM2: |
Emil Tantilov | 740234f | 2016-04-21 11:37:12 -0700 | [diff] [blame] | 9483 | return true; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9484 | } |
| 9485 | break; |
Don Skidmore | 5daebbb | 2013-04-05 05:49:34 +0000 | [diff] [blame] | 9486 | case IXGBE_DEV_ID_82599EN_SFP: |
Emil Tantilov | 740234f | 2016-04-21 11:37:12 -0700 | [diff] [blame] | 9487 | /* Only these subdevices support WOL */ |
Don Skidmore | 5daebbb | 2013-04-05 05:49:34 +0000 | [diff] [blame] | 9488 | switch (subdevice_id) { |
| 9489 | case IXGBE_SUBDEV_ID_82599EN_SFP_OCP1: |
Emil Tantilov | 740234f | 2016-04-21 11:37:12 -0700 | [diff] [blame] | 9490 | return true; |
Don Skidmore | 5daebbb | 2013-04-05 05:49:34 +0000 | [diff] [blame] | 9491 | } |
| 9492 | break; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9493 | case IXGBE_DEV_ID_82599_COMBO_BACKPLANE: |
| 9494 | /* All except this subdevice support WOL */ |
| 9495 | if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ) |
Emil Tantilov | 740234f | 2016-04-21 11:37:12 -0700 | [diff] [blame] | 9496 | return true; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9497 | break; |
| 9498 | case IXGBE_DEV_ID_82599_KX4: |
Emil Tantilov | 740234f | 2016-04-21 11:37:12 -0700 | [diff] [blame] | 9499 | return true; |
| 9500 | default: |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9501 | break; |
| 9502 | } |
| 9503 | |
Emil Tantilov | 740234f | 2016-04-21 11:37:12 -0700 | [diff] [blame] | 9504 | return false; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9505 | } |
| 9506 | |
| 9507 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9508 | * ixgbe_probe - Device Initialization Routine |
| 9509 | * @pdev: PCI device information struct |
| 9510 | * @ent: entry in ixgbe_pci_tbl |
| 9511 | * |
| 9512 | * Returns 0 on success, negative on failure |
| 9513 | * |
| 9514 | * ixgbe_probe initializes an adapter identified by a pci_dev structure. |
| 9515 | * The OS initialization, configuring of the adapter private structure, |
| 9516 | * and a hardware reset occur. |
| 9517 | **/ |
Greg Kroah-Hartman | 1dd06ae | 2012-12-06 14:30:56 +0000 | [diff] [blame] | 9518 | static int ixgbe_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9519 | { |
| 9520 | struct net_device *netdev; |
| 9521 | struct ixgbe_adapter *adapter = NULL; |
| 9522 | struct ixgbe_hw *hw; |
| 9523 | const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data]; |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 9524 | int i, err, pci_using_dac, expected_gts; |
Alexander Duyck | d3cb986 | 2013-01-16 01:35:35 +0000 | [diff] [blame] | 9525 | unsigned int indices = MAX_TX_QUEUES; |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 9526 | u8 part_str[IXGBE_PBANUM_LENGTH]; |
Daniel Borkmann | b5b2ffc | 2014-11-21 23:52:53 -0800 | [diff] [blame] | 9527 | bool disable_dev = false; |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 9528 | #ifdef IXGBE_FCOE |
| 9529 | u16 device_caps; |
| 9530 | #endif |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 9531 | u32 eec; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9532 | |
Andy Gospodarek | bded64a | 2010-07-21 06:40:31 +0000 | [diff] [blame] | 9533 | /* Catch broken hardware that put the wrong VF device ID in |
| 9534 | * the PCIe SR-IOV capability. |
| 9535 | */ |
| 9536 | if (pdev->is_virtfn) { |
| 9537 | WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n", |
| 9538 | pci_name(pdev), pdev->vendor, pdev->device); |
| 9539 | return -EINVAL; |
| 9540 | } |
| 9541 | |
gouji-new | 9ce7766 | 2009-05-06 10:44:45 +0000 | [diff] [blame] | 9542 | err = pci_enable_device_mem(pdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9543 | if (err) |
| 9544 | return err; |
| 9545 | |
Russell King | f5f2eda | 2013-06-10 12:47:42 +0100 | [diff] [blame] | 9546 | if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9547 | pci_using_dac = 1; |
| 9548 | } else { |
Russell King | f5f2eda | 2013-06-10 12:47:42 +0100 | [diff] [blame] | 9549 | err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9550 | if (err) { |
Russell King | f5f2eda | 2013-06-10 12:47:42 +0100 | [diff] [blame] | 9551 | dev_err(&pdev->dev, |
| 9552 | "No usable DMA configuration, aborting\n"); |
| 9553 | goto err_dma; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9554 | } |
| 9555 | pci_using_dac = 0; |
| 9556 | } |
| 9557 | |
Johannes Thumshirn | 56d766d | 2016-06-07 09:44:05 +0200 | [diff] [blame] | 9558 | err = pci_request_mem_regions(pdev, ixgbe_driver_name); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9559 | if (err) { |
Dan Carpenter | b8bc042 | 2010-07-27 00:05:56 +0000 | [diff] [blame] | 9560 | dev_err(&pdev->dev, |
| 9561 | "pci_request_selected_regions failed 0x%x\n", err); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9562 | goto err_pci_reg; |
| 9563 | } |
| 9564 | |
Frans Pop | 19d5afd | 2009-10-02 10:04:12 -0700 | [diff] [blame] | 9565 | pci_enable_pcie_error_reporting(pdev); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 9566 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9567 | pci_set_master(pdev); |
Wendy Xiong | fb3b27b | 2008-04-23 11:09:24 -0700 | [diff] [blame] | 9568 | pci_save_state(pdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9569 | |
Alexander Duyck | d3cb986 | 2013-01-16 01:35:35 +0000 | [diff] [blame] | 9570 | if (ii->mac == ixgbe_mac_82598EB) { |
John Fastabend | e901acd | 2011-04-26 07:26:08 +0000 | [diff] [blame] | 9571 | #ifdef CONFIG_IXGBE_DCB |
Alexander Duyck | d3cb986 | 2013-01-16 01:35:35 +0000 | [diff] [blame] | 9572 | /* 8 TC w/ 4 queues per TC */ |
| 9573 | indices = 4 * MAX_TRAFFIC_CLASS; |
| 9574 | #else |
| 9575 | indices = IXGBE_MAX_RSS_INDICES; |
John Fastabend | e901acd | 2011-04-26 07:26:08 +0000 | [diff] [blame] | 9576 | #endif |
Alexander Duyck | d3cb986 | 2013-01-16 01:35:35 +0000 | [diff] [blame] | 9577 | } |
John Fastabend | e901acd | 2011-04-26 07:26:08 +0000 | [diff] [blame] | 9578 | |
John Fastabend | c85a261 | 2010-02-25 23:15:21 +0000 | [diff] [blame] | 9579 | netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9580 | if (!netdev) { |
| 9581 | err = -ENOMEM; |
| 9582 | goto err_alloc_etherdev; |
| 9583 | } |
| 9584 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9585 | SET_NETDEV_DEV(netdev, &pdev->dev); |
| 9586 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9587 | adapter = netdev_priv(netdev); |
| 9588 | |
| 9589 | adapter->netdev = netdev; |
| 9590 | adapter->pdev = pdev; |
| 9591 | hw = &adapter->hw; |
| 9592 | hw->back = adapter; |
stephen hemminger | b3f4d59 | 2012-03-13 06:04:20 +0000 | [diff] [blame] | 9593 | adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9594 | |
Jeff Kirsher | 0585798 | 2008-09-11 19:57:00 -0700 | [diff] [blame] | 9595 | hw->hw_addr = ioremap(pci_resource_start(pdev, 0), |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 9596 | pci_resource_len(pdev, 0)); |
Mark Rustad | 2a1a091 | 2014-01-14 18:53:15 -0800 | [diff] [blame] | 9597 | adapter->io_addr = hw->hw_addr; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9598 | if (!hw->hw_addr) { |
| 9599 | err = -EIO; |
| 9600 | goto err_ioremap; |
| 9601 | } |
| 9602 | |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 9603 | netdev->netdev_ops = &ixgbe_netdev_ops; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9604 | ixgbe_set_ethtool_ops(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9605 | netdev->watchdog_timeo = 5 * HZ; |
Mark Rustad | 339de30 | 2014-06-06 01:57:06 +0000 | [diff] [blame] | 9606 | strlcpy(netdev->name, pci_name(pdev), sizeof(netdev->name)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9607 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9608 | /* Setup hw api */ |
Mark Rustad | 3768901 | 2016-01-07 10:13:03 -0800 | [diff] [blame] | 9609 | hw->mac.ops = *ii->mac_ops; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 9610 | hw->mac.type = ii->mac; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 9611 | hw->mvals = ii->mvals; |
Emil Tantilov | b71f6c4 | 2016-10-10 14:54:03 -0700 | [diff] [blame] | 9612 | if (ii->link_ops) |
| 9613 | hw->link.ops = *ii->link_ops; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9614 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 9615 | /* EEPROM */ |
Mark Rustad | 3768901 | 2016-01-07 10:13:03 -0800 | [diff] [blame] | 9616 | hw->eeprom.ops = *ii->eeprom_ops; |
Don Skidmore | 9a900ec | 2015-06-09 17:15:01 -0700 | [diff] [blame] | 9617 | eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); |
Mark Rustad | 58cf663 | 2014-03-12 00:38:40 +0000 | [diff] [blame] | 9618 | if (ixgbe_removed(hw->hw_addr)) { |
| 9619 | err = -EIO; |
| 9620 | goto err_ioremap; |
| 9621 | } |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 9622 | /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */ |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 9623 | if (!(eec & BIT(8))) |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 9624 | hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic; |
| 9625 | |
| 9626 | /* PHY */ |
Mark Rustad | 3768901 | 2016-01-07 10:13:03 -0800 | [diff] [blame] | 9627 | hw->phy.ops = *ii->phy_ops; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 9628 | hw->phy.sfp_type = ixgbe_sfp_type_unknown; |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 9629 | /* ixgbe_identify_phy_generic will set prtad and mmds properly */ |
| 9630 | hw->phy.mdio.prtad = MDIO_PRTAD_NONE; |
| 9631 | hw->phy.mdio.mmds = 0; |
| 9632 | hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22; |
| 9633 | hw->phy.mdio.dev = netdev; |
| 9634 | hw->phy.mdio.mdio_read = ixgbe_mdio_read; |
| 9635 | hw->phy.mdio.mdio_write = ixgbe_mdio_write; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 9636 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9637 | /* setup the private structure */ |
Emil Tantilov | 55570b6 | 2016-10-12 12:34:25 -0700 | [diff] [blame] | 9638 | err = ixgbe_sw_init(adapter, ii); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9639 | if (err) |
| 9640 | goto err_sw_init; |
| 9641 | |
Don Skidmore | dbd15b8 | 2016-03-09 16:45:00 -0500 | [diff] [blame] | 9642 | /* Make sure the SWFW semaphore is in a valid state */ |
| 9643 | if (hw->mac.ops.init_swfw_sync) |
| 9644 | hw->mac.ops.init_swfw_sync(hw); |
| 9645 | |
Don Skidmore | e86bff0 | 2010-02-11 04:14:08 +0000 | [diff] [blame] | 9646 | /* Make it possible the adapter to be woken up via WOL */ |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 9647 | switch (adapter->hw.mac.type) { |
| 9648 | case ixgbe_mac_82599EB: |
| 9649 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 9650 | case ixgbe_mac_X550: |
| 9651 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 9652 | case ixgbe_mac_x550em_a: |
Don Skidmore | e86bff0 | 2010-02-11 04:14:08 +0000 | [diff] [blame] | 9653 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0); |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 9654 | break; |
| 9655 | default: |
| 9656 | break; |
| 9657 | } |
Don Skidmore | e86bff0 | 2010-02-11 04:14:08 +0000 | [diff] [blame] | 9658 | |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 9659 | /* |
| 9660 | * If there is a fan on this device and it has failed log the |
| 9661 | * failure. |
| 9662 | */ |
| 9663 | if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) { |
| 9664 | u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP); |
| 9665 | if (esdp & IXGBE_ESDP_SDP1) |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 9666 | e_crit(probe, "Fan has stopped, replace the adapter\n"); |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 9667 | } |
| 9668 | |
Peter P Waskiewicz Jr | 8ef78ad | 2012-02-01 09:19:21 +0000 | [diff] [blame] | 9669 | if (allow_unsupported_sfp) |
| 9670 | hw->allow_unsupported_sfp = allow_unsupported_sfp; |
| 9671 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 9672 | /* reset_hw fills in the perm_addr as well */ |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 9673 | hw->phy.reset_if_overtemp = true; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 9674 | err = hw->mac.ops.reset_hw(hw); |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 9675 | hw->phy.reset_if_overtemp = false; |
Mark Rustad | b3eb4e1 | 2016-12-14 11:02:16 -0800 | [diff] [blame] | 9676 | ixgbe_set_eee_capable(adapter); |
Mark Rustad | 29a8dca | 2015-08-08 16:17:46 -0700 | [diff] [blame] | 9677 | if (err == IXGBE_ERR_SFP_NOT_PRESENT) { |
Don Skidmore | 8ca783a | 2009-05-26 20:40:47 -0700 | [diff] [blame] | 9678 | err = 0; |
| 9679 | } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) { |
Don Skidmore | 1b1bf31 | 2013-07-31 05:27:04 +0000 | [diff] [blame] | 9680 | e_dev_err("failed to load because an unsupported SFP+ or QSFP module type was detected.\n"); |
| 9681 | e_dev_err("Reload the driver after installing a supported module.\n"); |
PJ Waskiewicz | 04f165e | 2009-04-09 22:27:57 +0000 | [diff] [blame] | 9682 | goto err_sw_init; |
| 9683 | } else if (err) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 9684 | e_dev_err("HW Init failed: %d\n", err); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 9685 | goto err_sw_init; |
| 9686 | } |
| 9687 | |
Alexander Duyck | 99d7448 | 2012-05-09 08:09:25 +0000 | [diff] [blame] | 9688 | #ifdef CONFIG_PCI_IOV |
Greg Rose | 60a1a68 | 2012-12-11 08:26:33 +0000 | [diff] [blame] | 9689 | /* SR-IOV not supported on the 82598 */ |
| 9690 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) |
| 9691 | goto skip_sriov; |
| 9692 | /* Mailbox */ |
| 9693 | ixgbe_init_mbx_params_pf(hw); |
Mark Rustad | 3768901 | 2016-01-07 10:13:03 -0800 | [diff] [blame] | 9694 | hw->mbx.ops = ii->mbx_ops; |
ethan.zhao | dcc23e3 | 2014-01-16 19:41:04 -0800 | [diff] [blame] | 9695 | pci_sriov_set_totalvfs(pdev, IXGBE_MAX_VFS_DRV_LIMIT); |
ethan.zhao | 31ac910 | 2014-01-16 19:41:05 -0800 | [diff] [blame] | 9696 | ixgbe_enable_sriov(adapter); |
Greg Rose | 60a1a68 | 2012-12-11 08:26:33 +0000 | [diff] [blame] | 9697 | skip_sriov: |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 9698 | |
Alexander Duyck | 99d7448 | 2012-05-09 08:09:25 +0000 | [diff] [blame] | 9699 | #endif |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 9700 | netdev->features = NETIF_F_SG | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 9701 | NETIF_F_TSO | |
| 9702 | NETIF_F_TSO6 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 9703 | NETIF_F_RXHASH | |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 9704 | NETIF_F_RXCSUM | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 9705 | NETIF_F_HW_CSUM; |
| 9706 | |
| 9707 | #define IXGBE_GSO_PARTIAL_FEATURES (NETIF_F_GSO_GRE | \ |
| 9708 | NETIF_F_GSO_GRE_CSUM | \ |
Tom Herbert | 7e13318 | 2016-05-18 09:06:10 -0700 | [diff] [blame] | 9709 | NETIF_F_GSO_IPXIP4 | \ |
Alexander Duyck | bf2d1df | 2016-05-18 10:44:53 -0700 | [diff] [blame] | 9710 | NETIF_F_GSO_IPXIP6 | \ |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 9711 | NETIF_F_GSO_UDP_TUNNEL | \ |
| 9712 | NETIF_F_GSO_UDP_TUNNEL_CSUM) |
| 9713 | |
| 9714 | netdev->gso_partial_features = IXGBE_GSO_PARTIAL_FEATURES; |
| 9715 | netdev->features |= NETIF_F_GSO_PARTIAL | |
| 9716 | IXGBE_GSO_PARTIAL_FEATURES; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9717 | |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 9718 | if (hw->mac.type >= ixgbe_mac_82599EB) |
Tom Herbert | 53692b1 | 2015-12-14 11:19:41 -0800 | [diff] [blame] | 9719 | netdev->features |= NETIF_F_SCTP_CRC; |
Jesse Brandeburg | 45a5ead | 2009-04-27 22:36:35 +0000 | [diff] [blame] | 9720 | |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 9721 | /* copy netdev features into list of user selectable features */ |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 9722 | netdev->hw_features |= netdev->features | |
Alexander Duyck | 3d95182 | 2016-08-12 09:53:39 -0700 | [diff] [blame] | 9723 | NETIF_F_HW_VLAN_CTAG_FILTER | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 9724 | NETIF_F_HW_VLAN_CTAG_RX | |
| 9725 | NETIF_F_HW_VLAN_CTAG_TX | |
| 9726 | NETIF_F_RXALL | |
Alexander Duyck | 49763de | 2016-01-13 07:31:11 -0800 | [diff] [blame] | 9727 | NETIF_F_HW_L2FW_DOFFLOAD; |
| 9728 | |
| 9729 | if (hw->mac.type >= ixgbe_mac_82599EB) |
| 9730 | netdev->hw_features |= NETIF_F_NTUPLE | |
| 9731 | NETIF_F_HW_TC; |
| 9732 | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 9733 | if (pci_using_dac) |
| 9734 | netdev->features |= NETIF_F_HIGHDMA; |
Jeff Kirsher | ad31c40 | 2008-06-05 04:05:30 -0700 | [diff] [blame] | 9735 | |
Alexander Duyck | 5eee87c | 2016-05-11 13:23:34 -0700 | [diff] [blame] | 9736 | netdev->vlan_features |= netdev->features | NETIF_F_TSO_MANGLEID; |
| 9737 | netdev->hw_enc_features |= netdev->vlan_features; |
| 9738 | netdev->mpls_features |= NETIF_F_HW_CSUM; |
| 9739 | |
Alexander Duyck | b83e301 | 2016-04-14 17:19:31 -0400 | [diff] [blame] | 9740 | /* set this bit last since it cannot be part of vlan_features */ |
| 9741 | netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | |
| 9742 | NETIF_F_HW_VLAN_CTAG_RX | |
| 9743 | NETIF_F_HW_VLAN_CTAG_TX; |
| 9744 | |
Jiri Pirko | 0178934 | 2011-08-16 06:29:00 +0000 | [diff] [blame] | 9745 | netdev->priv_flags |= IFF_UNICAST_FLT; |
Ben Greear | f43f313 | 2012-03-06 09:42:04 +0000 | [diff] [blame] | 9746 | netdev->priv_flags |= IFF_SUPP_NOFCS; |
Jiri Pirko | 0178934 | 2011-08-16 06:29:00 +0000 | [diff] [blame] | 9747 | |
Jarod Wilson | 91c527a | 2016-10-17 15:54:05 -0400 | [diff] [blame] | 9748 | /* MTU range: 68 - 9710 */ |
| 9749 | netdev->min_mtu = ETH_MIN_MTU; |
| 9750 | netdev->max_mtu = IXGBE_MAX_JUMBO_FRAME_SIZE - (ETH_HLEN + ETH_FCS_LEN); |
| 9751 | |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 9752 | #ifdef CONFIG_IXGBE_DCB |
Usha Ketineni | 8829009 | 2016-04-26 05:00:26 -0700 | [diff] [blame] | 9753 | if (adapter->flags & IXGBE_FLAG_DCB_CAPABLE) |
Stephen Hemminger | 3f40c74 | 2016-11-21 09:52:40 -0800 | [diff] [blame] | 9754 | netdev->dcbnl_ops = &ixgbe_dcbnl_ops; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 9755 | #endif |
| 9756 | |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 9757 | #ifdef IXGBE_FCOE |
Yi Zou | 0d55158 | 2009-07-22 14:07:12 +0000 | [diff] [blame] | 9758 | if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) { |
Alexander Duyck | d3cb986 | 2013-01-16 01:35:35 +0000 | [diff] [blame] | 9759 | unsigned int fcoe_l; |
| 9760 | |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 9761 | if (hw->mac.ops.get_device_caps) { |
| 9762 | hw->mac.ops.get_device_caps(hw, &device_caps); |
Yi Zou | 0d55158 | 2009-07-22 14:07:12 +0000 | [diff] [blame] | 9763 | if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS) |
| 9764 | adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE; |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 9765 | } |
Alexander Duyck | 7c8ae65 | 2012-05-05 05:32:47 +0000 | [diff] [blame] | 9766 | |
Alexander Duyck | d3cb986 | 2013-01-16 01:35:35 +0000 | [diff] [blame] | 9767 | |
| 9768 | fcoe_l = min_t(int, IXGBE_FCRETA_SIZE, num_online_cpus()); |
| 9769 | adapter->ring_feature[RING_F_FCOE].limit = fcoe_l; |
Alexander Duyck | 7c8ae65 | 2012-05-05 05:32:47 +0000 | [diff] [blame] | 9770 | |
Alexander Duyck | a58915c | 2012-05-25 06:38:18 +0000 | [diff] [blame] | 9771 | netdev->features |= NETIF_F_FSO | |
| 9772 | NETIF_F_FCOE_CRC; |
| 9773 | |
Alexander Duyck | 7c8ae65 | 2012-05-05 05:32:47 +0000 | [diff] [blame] | 9774 | netdev->vlan_features |= NETIF_F_FSO | |
| 9775 | NETIF_F_FCOE_CRC | |
| 9776 | NETIF_F_FCOE_MTU; |
Yi Zou | 5e09d7f | 2010-07-19 13:59:52 +0000 | [diff] [blame] | 9777 | } |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 9778 | #endif /* IXGBE_FCOE */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9779 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 9780 | if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) |
| 9781 | netdev->hw_features |= NETIF_F_LRO; |
Peter P Waskiewicz Jr | 0c19d6a | 2009-07-30 12:25:28 +0000 | [diff] [blame] | 9782 | if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 9783 | netdev->features |= NETIF_F_LRO; |
| 9784 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9785 | /* make sure the EEPROM is good */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 9786 | if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 9787 | e_dev_err("The EEPROM Checksum Is Not Valid\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9788 | err = -EIO; |
Alexander Duyck | 35937c0 | 2012-02-08 07:51:37 +0000 | [diff] [blame] | 9789 | goto err_sw_init; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9790 | } |
| 9791 | |
Sowmini Varadhan | c7374b5 | 2016-01-12 19:32:30 -0800 | [diff] [blame] | 9792 | eth_platform_get_mac_address(&adapter->pdev->dev, |
| 9793 | adapter->hw.mac.perm_addr); |
Martin K Petersen | c762dff | 2014-11-15 14:24:51 +0000 | [diff] [blame] | 9794 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9795 | memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9796 | |
Jiri Pirko | aaeb6cd | 2013-01-08 01:38:26 +0000 | [diff] [blame] | 9797 | if (!is_valid_ether_addr(netdev->dev_addr)) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 9798 | e_dev_err("invalid MAC address\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9799 | err = -EIO; |
Alexander Duyck | 35937c0 | 2012-02-08 07:51:37 +0000 | [diff] [blame] | 9800 | goto err_sw_init; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9801 | } |
| 9802 | |
Tushar Dave | 5676804 | 2016-01-07 14:17:03 -0800 | [diff] [blame] | 9803 | /* Set hw->mac.addr to permanent MAC address */ |
| 9804 | ether_addr_copy(hw->mac.addr, hw->mac.perm_addr); |
Alexander Duyck | c9f53e6 | 2015-10-22 16:26:30 -0700 | [diff] [blame] | 9805 | ixgbe_mac_set_default_filter(adapter); |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 9806 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 9807 | setup_timer(&adapter->service_timer, &ixgbe_service_timer, |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 9808 | (unsigned long) adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9809 | |
Mark Rustad | 58cf663 | 2014-03-12 00:38:40 +0000 | [diff] [blame] | 9810 | if (ixgbe_removed(hw->hw_addr)) { |
| 9811 | err = -EIO; |
| 9812 | goto err_sw_init; |
| 9813 | } |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 9814 | INIT_WORK(&adapter->service_task, ixgbe_service_task); |
Mark Rustad | 58cf663 | 2014-03-12 00:38:40 +0000 | [diff] [blame] | 9815 | set_bit(__IXGBE_SERVICE_INITED, &adapter->state); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 9816 | clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9817 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 9818 | err = ixgbe_init_interrupt_scheme(adapter); |
| 9819 | if (err) |
| 9820 | goto err_sw_init; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9821 | |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9822 | /* WOL not supported for all devices */ |
Emil Tantilov | c23f5b6 | 2011-08-16 07:34:18 +0000 | [diff] [blame] | 9823 | adapter->wol = 0; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 9824 | hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap); |
Jacob Keller | 6b92b0b | 2013-04-13 05:40:37 +0000 | [diff] [blame] | 9825 | hw->wol_enabled = ixgbe_wol_supported(adapter, pdev->device, |
Don Skidmore | b8f8363 | 2013-02-28 08:08:44 +0000 | [diff] [blame] | 9826 | pdev->subsystem_device); |
Jacob Keller | 6b92b0b | 2013-04-13 05:40:37 +0000 | [diff] [blame] | 9827 | if (hw->wol_enabled) |
Andy Gospodarek | 9417c46 | 2011-07-16 07:31:33 +0000 | [diff] [blame] | 9828 | adapter->wol = IXGBE_WUFC_MAG; |
Emil Tantilov | c23f5b6 | 2011-08-16 07:34:18 +0000 | [diff] [blame] | 9829 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 9830 | device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol); |
| 9831 | |
Emil Tantilov | 15e5209 | 2011-09-29 05:01:29 +0000 | [diff] [blame] | 9832 | /* save off EEPROM version number */ |
| 9833 | hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh); |
| 9834 | hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl); |
| 9835 | |
PJ Waskiewicz | 04f165e | 2009-04-09 22:27:57 +0000 | [diff] [blame] | 9836 | /* pick up the PCI bus settings for reporting later */ |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 9837 | if (ixgbe_pcie_from_parent(hw)) |
Jacob Keller | b8e8200 | 2013-04-09 07:20:09 +0000 | [diff] [blame] | 9838 | ixgbe_get_parent_bus_info(adapter); |
Don Skidmore | f9328bc | 2015-06-18 13:24:06 -0400 | [diff] [blame] | 9839 | else |
| 9840 | hw->mac.ops.get_bus_info(hw); |
PJ Waskiewicz | 04f165e | 2009-04-09 22:27:57 +0000 | [diff] [blame] | 9841 | |
Jacob Keller | e027d1a | 2013-07-31 06:53:31 +0000 | [diff] [blame] | 9842 | /* calculate the expected PCIe bandwidth required for optimal |
| 9843 | * performance. Note that some older parts will never have enough |
| 9844 | * bandwidth due to being older generation PCIe parts. We clamp these |
| 9845 | * parts to ensure no warning is displayed if it can't be fixed. |
| 9846 | */ |
| 9847 | switch (hw->mac.type) { |
| 9848 | case ixgbe_mac_82598EB: |
| 9849 | expected_gts = min(ixgbe_enumerate_functions(adapter) * 10, 16); |
| 9850 | break; |
| 9851 | default: |
| 9852 | expected_gts = ixgbe_enumerate_functions(adapter) * 10; |
| 9853 | break; |
Auke Kok | 0c254d8 | 2008-02-11 09:25:56 -0800 | [diff] [blame] | 9854 | } |
Jacob Keller | caafb95 | 2014-07-19 07:17:17 +0000 | [diff] [blame] | 9855 | |
| 9856 | /* don't check link if we failed to enumerate functions */ |
| 9857 | if (expected_gts > 0) |
| 9858 | ixgbe_check_minimum_link(adapter, expected_gts); |
Auke Kok | 0c254d8 | 2008-02-11 09:25:56 -0800 | [diff] [blame] | 9859 | |
Mark Rustad | 339de30 | 2014-06-06 01:57:06 +0000 | [diff] [blame] | 9860 | err = ixgbe_read_pba_string_generic(hw, part_str, sizeof(part_str)); |
Jacob Keller | 6a2aae5 | 2013-10-18 05:09:24 +0000 | [diff] [blame] | 9861 | if (err) |
Mark Rustad | 339de30 | 2014-06-06 01:57:06 +0000 | [diff] [blame] | 9862 | strlcpy(part_str, "Unknown", sizeof(part_str)); |
Jacob Keller | 6a2aae5 | 2013-10-18 05:09:24 +0000 | [diff] [blame] | 9863 | if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present) |
| 9864 | e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n", |
| 9865 | hw->mac.type, hw->phy.type, hw->phy.sfp_type, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 9866 | part_str); |
Jacob Keller | 6a2aae5 | 2013-10-18 05:09:24 +0000 | [diff] [blame] | 9867 | else |
| 9868 | e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n", |
| 9869 | hw->mac.type, hw->phy.type, part_str); |
| 9870 | |
| 9871 | e_dev_info("%pM\n", netdev->dev_addr); |
| 9872 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9873 | /* reset the hardware with the new settings */ |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 9874 | err = hw->mac.ops.start_hw(hw); |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 9875 | if (err == IXGBE_ERR_EEPROM_VERSION) { |
| 9876 | /* We are running on a pre-production device, log a warning */ |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 9877 | e_dev_warn("This device is a pre-production adapter/LOM. " |
| 9878 | "Please be aware there may be issues associated " |
| 9879 | "with your hardware. If you are experiencing " |
| 9880 | "problems please contact your Intel or hardware " |
| 9881 | "representative who provided you with this " |
| 9882 | "hardware.\n"); |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 9883 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9884 | strcpy(netdev->name, "eth%d"); |
| 9885 | err = register_netdev(netdev); |
| 9886 | if (err) |
| 9887 | goto err_register; |
| 9888 | |
Emil Tantilov | 0fb6a55 | 2014-12-04 03:03:38 +0000 | [diff] [blame] | 9889 | pci_set_drvdata(pdev, adapter); |
| 9890 | |
Emil Tantilov | ec74a47 | 2012-09-20 03:33:56 +0000 | [diff] [blame] | 9891 | /* power down the optics for 82599 SFP+ fiber */ |
| 9892 | if (hw->mac.ops.disable_tx_laser) |
Emil Tantilov | 93d3ce8 | 2011-10-19 07:59:55 +0000 | [diff] [blame] | 9893 | hw->mac.ops.disable_tx_laser(hw); |
| 9894 | |
Jesse Brandeburg | 5438646 | 2009-04-17 20:44:27 +0000 | [diff] [blame] | 9895 | /* carrier off reporting is important to ethtool even BEFORE open */ |
| 9896 | netif_carrier_off(netdev); |
| 9897 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 9898 | #ifdef CONFIG_IXGBE_DCA |
Denis V. Lunev | 652f093 | 2008-03-27 14:39:17 +0300 | [diff] [blame] | 9899 | if (dca_add_requester(&pdev->dev) == 0) { |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 9900 | adapter->flags |= IXGBE_FLAG_DCA_ENABLED; |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 9901 | ixgbe_setup_dca(adapter); |
| 9902 | } |
| 9903 | #endif |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 9904 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 9905 | e_info(probe, "IOV is enabled with %d VFs\n", adapter->num_vfs); |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 9906 | for (i = 0; i < adapter->num_vfs; i++) |
| 9907 | ixgbe_vf_configuration(pdev, (i | 0x10000000)); |
| 9908 | } |
| 9909 | |
Jacob Keller | 2466dd9 | 2011-09-08 03:50:54 +0000 | [diff] [blame] | 9910 | /* firmware requires driver version to be 0xFFFFFFFF |
| 9911 | * since os does not support feature |
| 9912 | */ |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 9913 | if (hw->mac.ops.set_fw_drv_ver) |
Tony Nguyen | cb8e051 | 2016-10-26 16:25:18 -0700 | [diff] [blame] | 9914 | hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF, 0xFF, |
| 9915 | sizeof(ixgbe_driver_version) - 1, |
| 9916 | ixgbe_driver_version); |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 9917 | |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 9918 | /* add san mac addr to netdev */ |
| 9919 | ixgbe_add_sanmac_netdev(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9920 | |
Neerav Parikh | ea81875 | 2012-01-04 20:23:40 +0000 | [diff] [blame] | 9921 | e_dev_info("%s\n", ixgbe_default_device_descr); |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 9922 | |
Don Skidmore | 1210982 | 2012-05-04 06:07:08 +0000 | [diff] [blame] | 9923 | #ifdef CONFIG_IXGBE_HWMON |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 9924 | if (ixgbe_sysfs_init(adapter)) |
| 9925 | e_err(probe, "failed to allocate sysfs resources\n"); |
Don Skidmore | 1210982 | 2012-05-04 06:07:08 +0000 | [diff] [blame] | 9926 | #endif /* CONFIG_IXGBE_HWMON */ |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 9927 | |
Catherine Sullivan | 0094916 | 2012-08-10 01:59:10 +0000 | [diff] [blame] | 9928 | ixgbe_dbg_adapter_init(adapter); |
Catherine Sullivan | 0094916 | 2012-08-10 01:59:10 +0000 | [diff] [blame] | 9929 | |
Emil Tantilov | d1a35ee | 2014-05-13 08:24:00 +0000 | [diff] [blame] | 9930 | /* setup link for SFP devices with MNG FW, else wait for IXGBE_UP */ |
| 9931 | if (ixgbe_mng_enabled(hw) && ixgbe_is_sfp(hw) && hw->mac.ops.setup_link) |
Don Skidmore | 0b2679d | 2013-02-21 03:00:04 +0000 | [diff] [blame] | 9932 | hw->mac.ops.setup_link(hw, |
| 9933 | IXGBE_LINK_SPEED_10GB_FULL | IXGBE_LINK_SPEED_1GB_FULL, |
| 9934 | true); |
| 9935 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9936 | return 0; |
| 9937 | |
| 9938 | err_register: |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 9939 | ixgbe_release_hw_control(adapter); |
Alexander Duyck | 7a921c9 | 2009-05-06 10:43:28 +0000 | [diff] [blame] | 9940 | ixgbe_clear_interrupt_scheme(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9941 | err_sw_init: |
Alexander Duyck | 99d7448 | 2012-05-09 08:09:25 +0000 | [diff] [blame] | 9942 | ixgbe_disable_sriov(adapter); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 9943 | adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP; |
Mark Rustad | 2a1a091 | 2014-01-14 18:53:15 -0800 | [diff] [blame] | 9944 | iounmap(adapter->io_addr); |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 9945 | kfree(adapter->jump_tables[0]); |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 9946 | kfree(adapter->mac_table); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9947 | err_ioremap: |
Daniel Borkmann | b5b2ffc | 2014-11-21 23:52:53 -0800 | [diff] [blame] | 9948 | disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9949 | free_netdev(netdev); |
| 9950 | err_alloc_etherdev: |
Johannes Thumshirn | 56d766d | 2016-06-07 09:44:05 +0200 | [diff] [blame] | 9951 | pci_release_mem_regions(pdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9952 | err_pci_reg: |
| 9953 | err_dma: |
Daniel Borkmann | b5b2ffc | 2014-11-21 23:52:53 -0800 | [diff] [blame] | 9954 | if (!adapter || disable_dev) |
Mark Rustad | 41c6284 | 2014-03-12 00:38:35 +0000 | [diff] [blame] | 9955 | pci_disable_device(pdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9956 | return err; |
| 9957 | } |
| 9958 | |
| 9959 | /** |
| 9960 | * ixgbe_remove - Device Removal Routine |
| 9961 | * @pdev: PCI device information struct |
| 9962 | * |
| 9963 | * ixgbe_remove is called by the PCI subsystem to alert the driver |
| 9964 | * that it should release a PCI device. The could be caused by a |
| 9965 | * Hot-Plug event, or because the driver is going to be removed from |
| 9966 | * memory. |
| 9967 | **/ |
Bill Pemberton | 9f9a12f | 2012-12-03 09:24:25 -0500 | [diff] [blame] | 9968 | static void ixgbe_remove(struct pci_dev *pdev) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9969 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 9970 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
Emil Tantilov | 0fb6a55 | 2014-12-04 03:03:38 +0000 | [diff] [blame] | 9971 | struct net_device *netdev; |
Daniel Borkmann | b5b2ffc | 2014-11-21 23:52:53 -0800 | [diff] [blame] | 9972 | bool disable_dev; |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 9973 | int i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9974 | |
Emil Tantilov | 0fb6a55 | 2014-12-04 03:03:38 +0000 | [diff] [blame] | 9975 | /* if !adapter then we already cleaned up in probe */ |
| 9976 | if (!adapter) |
| 9977 | return; |
| 9978 | |
| 9979 | netdev = adapter->netdev; |
Catherine Sullivan | 0094916 | 2012-08-10 01:59:10 +0000 | [diff] [blame] | 9980 | ixgbe_dbg_adapter_exit(adapter); |
Catherine Sullivan | 0094916 | 2012-08-10 01:59:10 +0000 | [diff] [blame] | 9981 | |
Mark Rustad | 09f40ae | 2014-01-14 18:53:11 -0800 | [diff] [blame] | 9982 | set_bit(__IXGBE_REMOVING, &adapter->state); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 9983 | cancel_work_sync(&adapter->service_task); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 9984 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 9985 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 9986 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 9987 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) { |
| 9988 | adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED; |
| 9989 | dca_remove_requester(&pdev->dev); |
Mark Rustad | 9de7605 | 2015-08-08 16:27:41 -0700 | [diff] [blame] | 9990 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, |
| 9991 | IXGBE_DCA_CTRL_DCA_DISABLE); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 9992 | } |
| 9993 | |
| 9994 | #endif |
Don Skidmore | 1210982 | 2012-05-04 06:07:08 +0000 | [diff] [blame] | 9995 | #ifdef CONFIG_IXGBE_HWMON |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 9996 | ixgbe_sysfs_exit(adapter); |
Don Skidmore | 1210982 | 2012-05-04 06:07:08 +0000 | [diff] [blame] | 9997 | #endif /* CONFIG_IXGBE_HWMON */ |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 9998 | |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 9999 | /* remove the added san mac */ |
| 10000 | ixgbe_del_sanmac_netdev(netdev); |
| 10001 | |
Greg Rose | da36b64 | 2012-12-11 08:26:43 +0000 | [diff] [blame] | 10002 | #ifdef CONFIG_PCI_IOV |
Alex Williamson | 7837e28 | 2015-07-10 15:31:34 -0600 | [diff] [blame] | 10003 | ixgbe_disable_sriov(adapter); |
Greg Rose | da36b64 | 2012-12-11 08:26:43 +0000 | [diff] [blame] | 10004 | #endif |
Alex Williamson | 6b010e9 | 2015-07-29 14:38:21 -0600 | [diff] [blame] | 10005 | if (netdev->reg_state == NETREG_REGISTERED) |
| 10006 | unregister_netdev(netdev); |
| 10007 | |
Alexander Duyck | 7a921c9 | 2009-05-06 10:43:28 +0000 | [diff] [blame] | 10008 | ixgbe_clear_interrupt_scheme(adapter); |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 10009 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 10010 | ixgbe_release_hw_control(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10011 | |
Alexander Duyck | 2b1588c | 2012-03-17 02:39:16 +0000 | [diff] [blame] | 10012 | #ifdef CONFIG_DCB |
| 10013 | kfree(adapter->ixgbe_ieee_pfc); |
| 10014 | kfree(adapter->ixgbe_ieee_ets); |
| 10015 | |
| 10016 | #endif |
Mark Rustad | 2a1a091 | 2014-01-14 18:53:15 -0800 | [diff] [blame] | 10017 | iounmap(adapter->io_addr); |
Johannes Thumshirn | 56d766d | 2016-06-07 09:44:05 +0200 | [diff] [blame] | 10018 | pci_release_mem_regions(pdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10019 | |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 10020 | e_dev_info("complete\n"); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 10021 | |
Amritha Nambiar | 1cdaaf5 | 2016-04-14 19:08:53 -0400 | [diff] [blame] | 10022 | for (i = 0; i < IXGBE_MAX_LINK_HANDLE; i++) { |
| 10023 | if (adapter->jump_tables[i]) { |
| 10024 | kfree(adapter->jump_tables[i]->input); |
| 10025 | kfree(adapter->jump_tables[i]->mask); |
| 10026 | } |
| 10027 | kfree(adapter->jump_tables[i]); |
| 10028 | } |
| 10029 | |
Jacob Keller | 5d7daa3 | 2014-03-29 06:51:25 +0000 | [diff] [blame] | 10030 | kfree(adapter->mac_table); |
Daniel Borkmann | b5b2ffc | 2014-11-21 23:52:53 -0800 | [diff] [blame] | 10031 | disable_dev = !test_and_set_bit(__IXGBE_DISABLED, &adapter->state); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10032 | free_netdev(netdev); |
| 10033 | |
Frans Pop | 19d5afd | 2009-10-02 10:04:12 -0700 | [diff] [blame] | 10034 | pci_disable_pcie_error_reporting(pdev); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10035 | |
Daniel Borkmann | b5b2ffc | 2014-11-21 23:52:53 -0800 | [diff] [blame] | 10036 | if (disable_dev) |
Mark Rustad | 41c6284 | 2014-03-12 00:38:35 +0000 | [diff] [blame] | 10037 | pci_disable_device(pdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10038 | } |
| 10039 | |
| 10040 | /** |
| 10041 | * ixgbe_io_error_detected - called when PCI error is detected |
| 10042 | * @pdev: Pointer to PCI device |
| 10043 | * @state: The current pci connection state |
| 10044 | * |
| 10045 | * This function is called after a PCI bus error affecting |
| 10046 | * this device has been detected. |
| 10047 | */ |
| 10048 | static pci_ers_result_t ixgbe_io_error_detected(struct pci_dev *pdev, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 10049 | pci_channel_state_t state) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10050 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 10051 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
| 10052 | struct net_device *netdev = adapter->netdev; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10053 | |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 10054 | #ifdef CONFIG_PCI_IOV |
Mark Rustad | 1443846 | 2014-02-28 15:48:57 -0800 | [diff] [blame] | 10055 | struct ixgbe_hw *hw = &adapter->hw; |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 10056 | struct pci_dev *bdev, *vfdev; |
| 10057 | u32 dw0, dw1, dw2, dw3; |
| 10058 | int vf, pos; |
| 10059 | u16 req_id, pf_func; |
| 10060 | |
| 10061 | if (adapter->hw.mac.type == ixgbe_mac_82598EB || |
| 10062 | adapter->num_vfs == 0) |
| 10063 | goto skip_bad_vf_detection; |
| 10064 | |
| 10065 | bdev = pdev->bus->self; |
Yijing Wang | 62f87c0 | 2012-07-24 17:20:03 +0800 | [diff] [blame] | 10066 | while (bdev && (pci_pcie_type(bdev) != PCI_EXP_TYPE_ROOT_PORT)) |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 10067 | bdev = bdev->bus->self; |
| 10068 | |
| 10069 | if (!bdev) |
| 10070 | goto skip_bad_vf_detection; |
| 10071 | |
| 10072 | pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR); |
| 10073 | if (!pos) |
| 10074 | goto skip_bad_vf_detection; |
| 10075 | |
Mark Rustad | 1443846 | 2014-02-28 15:48:57 -0800 | [diff] [blame] | 10076 | dw0 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG); |
| 10077 | dw1 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 4); |
| 10078 | dw2 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 8); |
| 10079 | dw3 = ixgbe_read_pci_cfg_dword(hw, pos + PCI_ERR_HEADER_LOG + 12); |
| 10080 | if (ixgbe_removed(hw->hw_addr)) |
| 10081 | goto skip_bad_vf_detection; |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 10082 | |
| 10083 | req_id = dw1 >> 16; |
| 10084 | /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */ |
| 10085 | if (!(req_id & 0x0080)) |
| 10086 | goto skip_bad_vf_detection; |
| 10087 | |
| 10088 | pf_func = req_id & 0x01; |
| 10089 | if ((pf_func & 1) == (pdev->devfn & 1)) { |
| 10090 | unsigned int device_id; |
| 10091 | |
| 10092 | vf = (req_id & 0x7F) >> 1; |
| 10093 | e_dev_err("VF %d has caused a PCIe error\n", vf); |
| 10094 | e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: " |
| 10095 | "%8.8x\tdw3: %8.8x\n", |
| 10096 | dw0, dw1, dw2, dw3); |
| 10097 | switch (adapter->hw.mac.type) { |
| 10098 | case ixgbe_mac_82599EB: |
| 10099 | device_id = IXGBE_82599_VF_DEVICE_ID; |
| 10100 | break; |
| 10101 | case ixgbe_mac_X540: |
| 10102 | device_id = IXGBE_X540_VF_DEVICE_ID; |
| 10103 | break; |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 10104 | case ixgbe_mac_X550: |
| 10105 | device_id = IXGBE_DEV_ID_X550_VF; |
| 10106 | break; |
| 10107 | case ixgbe_mac_X550EM_x: |
| 10108 | device_id = IXGBE_DEV_ID_X550EM_X_VF; |
| 10109 | break; |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 10110 | case ixgbe_mac_x550em_a: |
| 10111 | device_id = IXGBE_DEV_ID_X550EM_A_VF; |
| 10112 | break; |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 10113 | default: |
| 10114 | device_id = 0; |
| 10115 | break; |
| 10116 | } |
| 10117 | |
| 10118 | /* Find the pci device of the offending VF */ |
Jon Mason | 36e9031 | 2012-07-19 21:02:09 +0000 | [diff] [blame] | 10119 | vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, device_id, NULL); |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 10120 | while (vfdev) { |
| 10121 | if (vfdev->devfn == (req_id & 0xFF)) |
| 10122 | break; |
Jon Mason | 36e9031 | 2012-07-19 21:02:09 +0000 | [diff] [blame] | 10123 | vfdev = pci_get_device(PCI_VENDOR_ID_INTEL, |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 10124 | device_id, vfdev); |
| 10125 | } |
| 10126 | /* |
| 10127 | * There's a slim chance the VF could have been hot plugged, |
| 10128 | * so if it is no longer present we don't need to issue the |
| 10129 | * VFLR. Just clean up the AER in that case. |
| 10130 | */ |
| 10131 | if (vfdev) { |
Emil Tantilov | 9079e41 | 2014-11-19 03:18:19 +0000 | [diff] [blame] | 10132 | ixgbe_issue_vf_flr(adapter, vfdev); |
Greg Rose | b4fafbe | 2012-12-13 01:14:06 +0000 | [diff] [blame] | 10133 | /* Free device reference count */ |
| 10134 | pci_dev_put(vfdev); |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 10135 | } |
| 10136 | |
| 10137 | pci_cleanup_aer_uncorrect_error_status(pdev); |
| 10138 | } |
| 10139 | |
| 10140 | /* |
| 10141 | * Even though the error may have occurred on the other port |
| 10142 | * we still need to increment the vf error reference count for |
| 10143 | * both ports because the I/O resume function will be called |
| 10144 | * for both of them. |
| 10145 | */ |
| 10146 | adapter->vferr_refcount++; |
| 10147 | |
| 10148 | return PCI_ERS_RESULT_RECOVERED; |
| 10149 | |
| 10150 | skip_bad_vf_detection: |
| 10151 | #endif /* CONFIG_PCI_IOV */ |
Mark Rustad | 58cf663 | 2014-03-12 00:38:40 +0000 | [diff] [blame] | 10152 | if (!test_bit(__IXGBE_SERVICE_INITED, &adapter->state)) |
| 10153 | return PCI_ERS_RESULT_DISCONNECT; |
| 10154 | |
Mark Rustad | 41c6284 | 2014-03-12 00:38:35 +0000 | [diff] [blame] | 10155 | rtnl_lock(); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10156 | netif_device_detach(netdev); |
| 10157 | |
Mark Rustad | 41c6284 | 2014-03-12 00:38:35 +0000 | [diff] [blame] | 10158 | if (state == pci_channel_io_perm_failure) { |
| 10159 | rtnl_unlock(); |
Breno Leitao | 3044b8d | 2009-05-06 10:44:26 +0000 | [diff] [blame] | 10160 | return PCI_ERS_RESULT_DISCONNECT; |
Mark Rustad | 41c6284 | 2014-03-12 00:38:35 +0000 | [diff] [blame] | 10161 | } |
Breno Leitao | 3044b8d | 2009-05-06 10:44:26 +0000 | [diff] [blame] | 10162 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10163 | if (netif_running(netdev)) |
Emil Tantilov | 126db13 | 2016-11-16 09:48:02 -0800 | [diff] [blame] | 10164 | ixgbe_close_suspend(adapter); |
Mark Rustad | 41c6284 | 2014-03-12 00:38:35 +0000 | [diff] [blame] | 10165 | |
| 10166 | if (!test_and_set_bit(__IXGBE_DISABLED, &adapter->state)) |
| 10167 | pci_disable_device(pdev); |
| 10168 | rtnl_unlock(); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10169 | |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 10170 | /* Request a slot reset. */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10171 | return PCI_ERS_RESULT_NEED_RESET; |
| 10172 | } |
| 10173 | |
| 10174 | /** |
| 10175 | * ixgbe_io_slot_reset - called after the pci bus has been reset. |
| 10176 | * @pdev: Pointer to PCI device |
| 10177 | * |
| 10178 | * Restart the card from scratch, as if from a cold-boot. |
| 10179 | */ |
| 10180 | static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev) |
| 10181 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 10182 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10183 | pci_ers_result_t result; |
| 10184 | int err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10185 | |
gouji-new | 9ce7766 | 2009-05-06 10:44:45 +0000 | [diff] [blame] | 10186 | if (pci_enable_device_mem(pdev)) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 10187 | e_err(probe, "Cannot re-enable PCI device after reset.\n"); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10188 | result = PCI_ERS_RESULT_DISCONNECT; |
| 10189 | } else { |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 10190 | smp_mb__before_atomic(); |
Mark Rustad | 41c6284 | 2014-03-12 00:38:35 +0000 | [diff] [blame] | 10191 | clear_bit(__IXGBE_DISABLED, &adapter->state); |
Mark Rustad | 0391bbe | 2014-02-28 15:48:55 -0800 | [diff] [blame] | 10192 | adapter->hw.hw_addr = adapter->io_addr; |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10193 | pci_set_master(pdev); |
| 10194 | pci_restore_state(pdev); |
Breno Leitao | c0e1f68 | 2009-11-10 08:37:47 +0000 | [diff] [blame] | 10195 | pci_save_state(pdev); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10196 | |
Don Skidmore | dd4d8ca | 2009-04-29 00:22:31 -0700 | [diff] [blame] | 10197 | pci_wake_from_d3(pdev, false); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10198 | |
| 10199 | ixgbe_reset(adapter); |
PJ Waskiewicz | 8851253 | 2009-03-13 22:15:10 +0000 | [diff] [blame] | 10200 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10201 | result = PCI_ERS_RESULT_RECOVERED; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10202 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10203 | |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10204 | err = pci_cleanup_aer_uncorrect_error_status(pdev); |
| 10205 | if (err) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 10206 | e_dev_err("pci_cleanup_aer_uncorrect_error_status " |
| 10207 | "failed 0x%0x\n", err); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10208 | /* non-fatal, continue */ |
| 10209 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10210 | |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 10211 | return result; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10212 | } |
| 10213 | |
| 10214 | /** |
| 10215 | * ixgbe_io_resume - called when traffic can start flowing again. |
| 10216 | * @pdev: Pointer to PCI device |
| 10217 | * |
| 10218 | * This callback is called when the error recovery driver tells us that |
| 10219 | * its OK to resume normal operation. |
| 10220 | */ |
| 10221 | static void ixgbe_io_resume(struct pci_dev *pdev) |
| 10222 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 10223 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
| 10224 | struct net_device *netdev = adapter->netdev; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10225 | |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 10226 | #ifdef CONFIG_PCI_IOV |
| 10227 | if (adapter->vferr_refcount) { |
| 10228 | e_info(drv, "Resuming after VF err\n"); |
| 10229 | adapter->vferr_refcount--; |
| 10230 | return; |
| 10231 | } |
| 10232 | |
| 10233 | #endif |
Emil Tantilov | 126db13 | 2016-11-16 09:48:02 -0800 | [diff] [blame] | 10234 | rtnl_lock(); |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 10235 | if (netif_running(netdev)) |
Emil Tantilov | 126db13 | 2016-11-16 09:48:02 -0800 | [diff] [blame] | 10236 | ixgbe_open(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10237 | |
| 10238 | netif_device_attach(netdev); |
Emil Tantilov | 126db13 | 2016-11-16 09:48:02 -0800 | [diff] [blame] | 10239 | rtnl_unlock(); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10240 | } |
| 10241 | |
Stephen Hemminger | 3646f0e | 2012-09-07 09:33:15 -0700 | [diff] [blame] | 10242 | static const struct pci_error_handlers ixgbe_err_handler = { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10243 | .error_detected = ixgbe_io_error_detected, |
| 10244 | .slot_reset = ixgbe_io_slot_reset, |
| 10245 | .resume = ixgbe_io_resume, |
| 10246 | }; |
| 10247 | |
| 10248 | static struct pci_driver ixgbe_driver = { |
| 10249 | .name = ixgbe_driver_name, |
| 10250 | .id_table = ixgbe_pci_tbl, |
| 10251 | .probe = ixgbe_probe, |
Bill Pemberton | 9f9a12f | 2012-12-03 09:24:25 -0500 | [diff] [blame] | 10252 | .remove = ixgbe_remove, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10253 | #ifdef CONFIG_PM |
| 10254 | .suspend = ixgbe_suspend, |
| 10255 | .resume = ixgbe_resume, |
| 10256 | #endif |
| 10257 | .shutdown = ixgbe_shutdown, |
Greg Rose | da36b64 | 2012-12-11 08:26:43 +0000 | [diff] [blame] | 10258 | .sriov_configure = ixgbe_pci_sriov_configure, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10259 | .err_handler = &ixgbe_err_handler |
| 10260 | }; |
| 10261 | |
| 10262 | /** |
| 10263 | * ixgbe_init_module - Driver Registration Routine |
| 10264 | * |
| 10265 | * ixgbe_init_module is the first routine called when the driver is |
| 10266 | * loaded. All it does is register with the PCI subsystem. |
| 10267 | **/ |
| 10268 | static int __init ixgbe_init_module(void) |
| 10269 | { |
| 10270 | int ret; |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 10271 | pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version); |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 10272 | pr_info("%s\n", ixgbe_copyright); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10273 | |
Mark Rustad | 780484d | 2015-10-21 17:21:10 -0700 | [diff] [blame] | 10274 | ixgbe_wq = create_singlethread_workqueue(ixgbe_driver_name); |
| 10275 | if (!ixgbe_wq) { |
| 10276 | pr_err("%s: Failed to create workqueue\n", ixgbe_driver_name); |
| 10277 | return -ENOMEM; |
| 10278 | } |
| 10279 | |
Catherine Sullivan | 0094916 | 2012-08-10 01:59:10 +0000 | [diff] [blame] | 10280 | ixgbe_dbg_init(); |
Catherine Sullivan | 0094916 | 2012-08-10 01:59:10 +0000 | [diff] [blame] | 10281 | |
Jakub Kicinski | f01fc1a | 2013-04-03 16:50:54 +0000 | [diff] [blame] | 10282 | ret = pci_register_driver(&ixgbe_driver); |
| 10283 | if (ret) { |
Wei Yongjun | 6b83687 | 2016-07-12 15:17:02 +0000 | [diff] [blame] | 10284 | destroy_workqueue(ixgbe_wq); |
Jakub Kicinski | f01fc1a | 2013-04-03 16:50:54 +0000 | [diff] [blame] | 10285 | ixgbe_dbg_exit(); |
Jakub Kicinski | f01fc1a | 2013-04-03 16:50:54 +0000 | [diff] [blame] | 10286 | return ret; |
| 10287 | } |
| 10288 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 10289 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 10290 | dca_register_notify(&dca_notifier); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 10291 | #endif |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 10292 | |
Jakub Kicinski | f01fc1a | 2013-04-03 16:50:54 +0000 | [diff] [blame] | 10293 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10294 | } |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 10295 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10296 | module_init(ixgbe_init_module); |
| 10297 | |
| 10298 | /** |
| 10299 | * ixgbe_exit_module - Driver Exit Cleanup Routine |
| 10300 | * |
| 10301 | * ixgbe_exit_module is called just before the driver is removed |
| 10302 | * from memory. |
| 10303 | **/ |
| 10304 | static void __exit ixgbe_exit_module(void) |
| 10305 | { |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 10306 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 10307 | dca_unregister_notify(&dca_notifier); |
| 10308 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10309 | pci_unregister_driver(&ixgbe_driver); |
Catherine Sullivan | 0094916 | 2012-08-10 01:59:10 +0000 | [diff] [blame] | 10310 | |
Catherine Sullivan | 0094916 | 2012-08-10 01:59:10 +0000 | [diff] [blame] | 10311 | ixgbe_dbg_exit(); |
Mark Rustad | 780484d | 2015-10-21 17:21:10 -0700 | [diff] [blame] | 10312 | if (ixgbe_wq) { |
| 10313 | destroy_workqueue(ixgbe_wq); |
| 10314 | ixgbe_wq = NULL; |
| 10315 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10316 | } |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 10317 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 10318 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 10319 | static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 10320 | void *p) |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 10321 | { |
| 10322 | int ret_val; |
| 10323 | |
| 10324 | ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 10325 | __ixgbe_notify_dca); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 10326 | |
| 10327 | return ret_val ? NOTIFY_BAD : NOTIFY_DONE; |
| 10328 | } |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 10329 | |
Alexander Duyck | b453368 | 2009-03-31 21:32:42 +0000 | [diff] [blame] | 10330 | #endif /* CONFIG_IXGBE_DCA */ |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 10331 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 10332 | module_exit(ixgbe_exit_module); |
| 10333 | |
| 10334 | /* ixgbe_main.c */ |