Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel 10 Gigabit PCI Express Linux driver |
Don Skidmore | 9497182 | 2012-01-06 03:24:16 +0000 | [diff] [blame] | 4 | Copyright(c) 1999 - 2012 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: |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 23 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 24 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 25 | |
| 26 | *******************************************************************************/ |
| 27 | |
| 28 | #include <linux/types.h> |
| 29 | #include <linux/module.h> |
| 30 | #include <linux/pci.h> |
| 31 | #include <linux/netdevice.h> |
| 32 | #include <linux/vmalloc.h> |
| 33 | #include <linux/string.h> |
| 34 | #include <linux/in.h> |
Alexey Dobriyan | a6b7a40 | 2011-06-06 10:43:46 +0000 | [diff] [blame] | 35 | #include <linux/interrupt.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 36 | #include <linux/ip.h> |
| 37 | #include <linux/tcp.h> |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 38 | #include <linux/sctp.h> |
Lucy Liu | 6012786 | 2009-07-22 14:07:33 +0000 | [diff] [blame] | 39 | #include <linux/pkt_sched.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 40 | #include <linux/ipv6.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 41 | #include <linux/slab.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 42 | #include <net/checksum.h> |
| 43 | #include <net/ip6_checksum.h> |
| 44 | #include <linux/ethtool.h> |
Jiri Pirko | 0178934 | 2011-08-16 06:29:00 +0000 | [diff] [blame] | 45 | #include <linux/if.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 46 | #include <linux/if_vlan.h> |
Paul Gortmaker | 70c7160 | 2011-05-22 16:47:17 -0400 | [diff] [blame] | 47 | #include <linux/prefetch.h> |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 48 | #include <scsi/fc/fc_fcoe.h> |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 49 | |
| 50 | #include "ixgbe.h" |
| 51 | #include "ixgbe_common.h" |
Don Skidmore | ee5f784 | 2009-11-06 12:56:20 +0000 | [diff] [blame] | 52 | #include "ixgbe_dcb_82599.h" |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 53 | #include "ixgbe_sriov.h" |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 54 | |
| 55 | char ixgbe_driver_name[] = "ixgbe"; |
Stephen Hemminger | 9c8eb72 | 2007-10-29 10:46:24 -0700 | [diff] [blame] | 56 | static const char ixgbe_driver_string[] = |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 57 | "Intel(R) 10 Gigabit PCI Express Network Driver"; |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 58 | #ifdef IXGBE_FCOE |
Neerav Parikh | ea81875 | 2012-01-04 20:23:40 +0000 | [diff] [blame] | 59 | char ixgbe_default_device_descr[] = |
| 60 | "Intel(R) 10 Gigabit Network Connection"; |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 61 | #else |
| 62 | static char ixgbe_default_device_descr[] = |
| 63 | "Intel(R) 10 Gigabit Network Connection"; |
| 64 | #endif |
Jeff Kirsher | 75e3d3c | 2011-03-17 18:11:38 +0000 | [diff] [blame] | 65 | #define MAJ 3 |
Don Skidmore | eef4560 | 2012-04-28 03:29:22 +0000 | [diff] [blame] | 66 | #define MIN 9 |
| 67 | #define BUILD 15 |
Jeff Kirsher | 75e3d3c | 2011-03-17 18:11:38 +0000 | [diff] [blame] | 68 | #define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \ |
Don Skidmore | a38a104 | 2011-05-20 03:05:14 +0000 | [diff] [blame] | 69 | __stringify(BUILD) "-k" |
Stephen Hemminger | 9c8eb72 | 2007-10-29 10:46:24 -0700 | [diff] [blame] | 70 | const char ixgbe_driver_version[] = DRV_VERSION; |
Don Skidmore | a52055e | 2011-02-23 09:58:39 +0000 | [diff] [blame] | 71 | static const char ixgbe_copyright[] = |
Don Skidmore | 9497182 | 2012-01-06 03:24:16 +0000 | [diff] [blame] | 72 | "Copyright (c) 1999-2012 Intel Corporation."; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 73 | |
| 74 | static const struct ixgbe_info *ixgbe_info_tbl[] = { |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 75 | [board_82598] = &ixgbe_82598_info, |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 76 | [board_82599] = &ixgbe_82599_info, |
Don Skidmore | fe15e8e1 | 2010-11-16 19:27:16 -0800 | [diff] [blame] | 77 | [board_X540] = &ixgbe_X540_info, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | /* ixgbe_pci_tbl - PCI Device ID Table |
| 81 | * |
| 82 | * Wildcard entries (PCI_ANY_ID) should come last |
| 83 | * Last entry must be all 0s |
| 84 | * |
| 85 | * { Vendor ID, Device ID, SubVendor ID, SubDevice ID, |
| 86 | * Class, Class Mask, private data (not used) } |
| 87 | */ |
Alexey Dobriyan | a3aa188 | 2010-01-07 11:58:11 +0000 | [diff] [blame] | 88 | static DEFINE_PCI_DEVICE_TABLE(ixgbe_pci_tbl) = { |
Alexander Duyck | 54239c6 | 2011-07-15 03:06:06 +0000 | [diff] [blame] | 89 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598), board_82598 }, |
| 90 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT), board_82598 }, |
| 91 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AF_SINGLE_PORT), board_82598 }, |
| 92 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT), board_82598 }, |
| 93 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598AT2), board_82598 }, |
| 94 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_CX4), board_82598 }, |
| 95 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT), board_82598 }, |
| 96 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT), board_82598 }, |
| 97 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM), board_82598 }, |
| 98 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_XF_LR), board_82598 }, |
| 99 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM), board_82598 }, |
| 100 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82598_BX), board_82598 }, |
| 101 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4), board_82599 }, |
| 102 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_XAUI_LOM), board_82599 }, |
| 103 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KR), board_82599 }, |
| 104 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP), board_82599 }, |
| 105 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_EM), board_82599 }, |
| 106 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ), board_82599 }, |
| 107 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_CX4), board_82599 }, |
| 108 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE), board_82599 }, |
| 109 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_FCOE), board_82599 }, |
| 110 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_T3_LOM), board_82599 }, |
| 111 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_COMBO_BACKPLANE), board_82599 }, |
| 112 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_X540T), board_X540 }, |
| 113 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF2), board_82599 }, |
| 114 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_LS), board_82599 }, |
Emil Tantilov | 7d14528 | 2011-09-08 08:30:14 +0000 | [diff] [blame] | 115 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599EN_SFP), board_82599 }, |
Emil Tantilov | 9e791e4 | 2011-11-04 06:43:29 +0000 | [diff] [blame] | 116 | {PCI_VDEVICE(INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP), board_82599 }, |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 117 | /* required last entry */ |
| 118 | {0, } |
| 119 | }; |
| 120 | MODULE_DEVICE_TABLE(pci, ixgbe_pci_tbl); |
| 121 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 122 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 123 | static int ixgbe_notify_dca(struct notifier_block *, unsigned long event, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 124 | void *p); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 125 | static struct notifier_block dca_notifier = { |
| 126 | .notifier_call = ixgbe_notify_dca, |
| 127 | .next = NULL, |
| 128 | .priority = 0 |
| 129 | }; |
| 130 | #endif |
| 131 | |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 132 | #ifdef CONFIG_PCI_IOV |
| 133 | static unsigned int max_vfs; |
| 134 | module_param(max_vfs, uint, 0); |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 135 | MODULE_PARM_DESC(max_vfs, |
Greg Rose | 6b42a9c | 2012-04-17 04:29:29 +0000 | [diff] [blame] | 136 | "Maximum number of virtual functions to allocate per physical function - default is zero and maximum value is 63"); |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 137 | #endif /* CONFIG_PCI_IOV */ |
| 138 | |
Peter P Waskiewicz Jr | 8ef78ad | 2012-02-01 09:19:21 +0000 | [diff] [blame] | 139 | static unsigned int allow_unsupported_sfp; |
| 140 | module_param(allow_unsupported_sfp, uint, 0); |
| 141 | MODULE_PARM_DESC(allow_unsupported_sfp, |
| 142 | "Allow unsupported and untested SFP+ modules on 82599-based adapters"); |
| 143 | |
stephen hemminger | b3f4d59 | 2012-03-13 06:04:20 +0000 | [diff] [blame] | 144 | #define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK) |
| 145 | static int debug = -1; |
| 146 | module_param(debug, int, 0); |
| 147 | MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)"); |
| 148 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 149 | MODULE_AUTHOR("Intel Corporation, <linux.nics@intel.com>"); |
| 150 | MODULE_DESCRIPTION("Intel(R) 10 Gigabit PCI Express Network Driver"); |
| 151 | MODULE_LICENSE("GPL"); |
| 152 | MODULE_VERSION(DRV_VERSION); |
| 153 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 154 | static void ixgbe_service_event_schedule(struct ixgbe_adapter *adapter) |
| 155 | { |
| 156 | if (!test_bit(__IXGBE_DOWN, &adapter->state) && |
| 157 | !test_and_set_bit(__IXGBE_SERVICE_SCHED, &adapter->state)) |
| 158 | schedule_work(&adapter->service_task); |
| 159 | } |
| 160 | |
| 161 | static void ixgbe_service_event_complete(struct ixgbe_adapter *adapter) |
| 162 | { |
| 163 | BUG_ON(!test_bit(__IXGBE_SERVICE_SCHED, &adapter->state)); |
| 164 | |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 165 | /* flush memory to make sure state is correct before next watchdog */ |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 166 | smp_mb__before_clear_bit(); |
| 167 | clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state); |
| 168 | } |
| 169 | |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 170 | struct ixgbe_reg_info { |
| 171 | u32 ofs; |
| 172 | char *name; |
| 173 | }; |
| 174 | |
| 175 | static const struct ixgbe_reg_info ixgbe_reg_info_tbl[] = { |
| 176 | |
| 177 | /* General Registers */ |
| 178 | {IXGBE_CTRL, "CTRL"}, |
| 179 | {IXGBE_STATUS, "STATUS"}, |
| 180 | {IXGBE_CTRL_EXT, "CTRL_EXT"}, |
| 181 | |
| 182 | /* Interrupt Registers */ |
| 183 | {IXGBE_EICR, "EICR"}, |
| 184 | |
| 185 | /* RX Registers */ |
| 186 | {IXGBE_SRRCTL(0), "SRRCTL"}, |
| 187 | {IXGBE_DCA_RXCTRL(0), "DRXCTL"}, |
| 188 | {IXGBE_RDLEN(0), "RDLEN"}, |
| 189 | {IXGBE_RDH(0), "RDH"}, |
| 190 | {IXGBE_RDT(0), "RDT"}, |
| 191 | {IXGBE_RXDCTL(0), "RXDCTL"}, |
| 192 | {IXGBE_RDBAL(0), "RDBAL"}, |
| 193 | {IXGBE_RDBAH(0), "RDBAH"}, |
| 194 | |
| 195 | /* TX Registers */ |
| 196 | {IXGBE_TDBAL(0), "TDBAL"}, |
| 197 | {IXGBE_TDBAH(0), "TDBAH"}, |
| 198 | {IXGBE_TDLEN(0), "TDLEN"}, |
| 199 | {IXGBE_TDH(0), "TDH"}, |
| 200 | {IXGBE_TDT(0), "TDT"}, |
| 201 | {IXGBE_TXDCTL(0), "TXDCTL"}, |
| 202 | |
| 203 | /* List Terminator */ |
| 204 | {} |
| 205 | }; |
| 206 | |
| 207 | |
| 208 | /* |
| 209 | * ixgbe_regdump - register printout routine |
| 210 | */ |
| 211 | static void ixgbe_regdump(struct ixgbe_hw *hw, struct ixgbe_reg_info *reginfo) |
| 212 | { |
| 213 | int i = 0, j = 0; |
| 214 | char rname[16]; |
| 215 | u32 regs[64]; |
| 216 | |
| 217 | switch (reginfo->ofs) { |
| 218 | case IXGBE_SRRCTL(0): |
| 219 | for (i = 0; i < 64; i++) |
| 220 | regs[i] = IXGBE_READ_REG(hw, IXGBE_SRRCTL(i)); |
| 221 | break; |
| 222 | case IXGBE_DCA_RXCTRL(0): |
| 223 | for (i = 0; i < 64; i++) |
| 224 | regs[i] = IXGBE_READ_REG(hw, IXGBE_DCA_RXCTRL(i)); |
| 225 | break; |
| 226 | case IXGBE_RDLEN(0): |
| 227 | for (i = 0; i < 64; i++) |
| 228 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDLEN(i)); |
| 229 | break; |
| 230 | case IXGBE_RDH(0): |
| 231 | for (i = 0; i < 64; i++) |
| 232 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDH(i)); |
| 233 | break; |
| 234 | case IXGBE_RDT(0): |
| 235 | for (i = 0; i < 64; i++) |
| 236 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDT(i)); |
| 237 | break; |
| 238 | case IXGBE_RXDCTL(0): |
| 239 | for (i = 0; i < 64; i++) |
| 240 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RXDCTL(i)); |
| 241 | break; |
| 242 | case IXGBE_RDBAL(0): |
| 243 | for (i = 0; i < 64; i++) |
| 244 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAL(i)); |
| 245 | break; |
| 246 | case IXGBE_RDBAH(0): |
| 247 | for (i = 0; i < 64; i++) |
| 248 | regs[i] = IXGBE_READ_REG(hw, IXGBE_RDBAH(i)); |
| 249 | break; |
| 250 | case IXGBE_TDBAL(0): |
| 251 | for (i = 0; i < 64; i++) |
| 252 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAL(i)); |
| 253 | break; |
| 254 | case IXGBE_TDBAH(0): |
| 255 | for (i = 0; i < 64; i++) |
| 256 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDBAH(i)); |
| 257 | break; |
| 258 | case IXGBE_TDLEN(0): |
| 259 | for (i = 0; i < 64; i++) |
| 260 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDLEN(i)); |
| 261 | break; |
| 262 | case IXGBE_TDH(0): |
| 263 | for (i = 0; i < 64; i++) |
| 264 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDH(i)); |
| 265 | break; |
| 266 | case IXGBE_TDT(0): |
| 267 | for (i = 0; i < 64; i++) |
| 268 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TDT(i)); |
| 269 | break; |
| 270 | case IXGBE_TXDCTL(0): |
| 271 | for (i = 0; i < 64; i++) |
| 272 | regs[i] = IXGBE_READ_REG(hw, IXGBE_TXDCTL(i)); |
| 273 | break; |
| 274 | default: |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 275 | pr_info("%-15s %08x\n", reginfo->name, |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 276 | IXGBE_READ_REG(hw, reginfo->ofs)); |
| 277 | return; |
| 278 | } |
| 279 | |
| 280 | for (i = 0; i < 8; i++) { |
| 281 | 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] | 282 | pr_err("%-15s", rname); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 283 | for (j = 0; j < 8; j++) |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 284 | pr_cont(" %08x", regs[i*8+j]); |
| 285 | pr_cont("\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | } |
| 289 | |
| 290 | /* |
| 291 | * ixgbe_dump - Print registers, tx-rings and rx-rings |
| 292 | */ |
| 293 | static void ixgbe_dump(struct ixgbe_adapter *adapter) |
| 294 | { |
| 295 | struct net_device *netdev = adapter->netdev; |
| 296 | struct ixgbe_hw *hw = &adapter->hw; |
| 297 | struct ixgbe_reg_info *reginfo; |
| 298 | int n = 0; |
| 299 | struct ixgbe_ring *tx_ring; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 300 | struct ixgbe_tx_buffer *tx_buffer; |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 301 | union ixgbe_adv_tx_desc *tx_desc; |
| 302 | struct my_u0 { u64 a; u64 b; } *u0; |
| 303 | struct ixgbe_ring *rx_ring; |
| 304 | union ixgbe_adv_rx_desc *rx_desc; |
| 305 | struct ixgbe_rx_buffer *rx_buffer_info; |
| 306 | u32 staterr; |
| 307 | int i = 0; |
| 308 | |
| 309 | if (!netif_msg_hw(adapter)) |
| 310 | return; |
| 311 | |
| 312 | /* Print netdevice Info */ |
| 313 | if (netdev) { |
| 314 | dev_info(&adapter->pdev->dev, "Net device Info\n"); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 315 | pr_info("Device Name state " |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 316 | "trans_start last_rx\n"); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 317 | pr_info("%-15s %016lX %016lX %016lX\n", |
| 318 | netdev->name, |
| 319 | netdev->state, |
| 320 | netdev->trans_start, |
| 321 | netdev->last_rx); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | /* Print Registers */ |
| 325 | dev_info(&adapter->pdev->dev, "Register Dump\n"); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 326 | pr_info(" Register Name Value\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 327 | for (reginfo = (struct ixgbe_reg_info *)ixgbe_reg_info_tbl; |
| 328 | reginfo->name; reginfo++) { |
| 329 | ixgbe_regdump(hw, reginfo); |
| 330 | } |
| 331 | |
| 332 | /* Print TX Ring Summary */ |
| 333 | if (!netdev || !netif_running(netdev)) |
| 334 | goto exit; |
| 335 | |
| 336 | dev_info(&adapter->pdev->dev, "TX Rings Summary\n"); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 337 | pr_info("Queue [NTU] [NTC] [bi(ntc)->dma ] leng ntw timestamp\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 338 | for (n = 0; n < adapter->num_tx_queues; n++) { |
| 339 | tx_ring = adapter->tx_ring[n]; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 340 | tx_buffer = &tx_ring->tx_buffer_info[tx_ring->next_to_clean]; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 341 | pr_info(" %5d %5X %5X %016llX %04X %p %016llX\n", |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 342 | n, tx_ring->next_to_use, tx_ring->next_to_clean, |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 343 | (u64)dma_unmap_addr(tx_buffer, dma), |
| 344 | dma_unmap_len(tx_buffer, len), |
| 345 | tx_buffer->next_to_watch, |
| 346 | (u64)tx_buffer->time_stamp); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | /* Print TX Rings */ |
| 350 | if (!netif_msg_tx_done(adapter)) |
| 351 | goto rx_ring_summary; |
| 352 | |
| 353 | dev_info(&adapter->pdev->dev, "TX Rings Dump\n"); |
| 354 | |
| 355 | /* Transmit Descriptor Formats |
| 356 | * |
| 357 | * Advanced Transmit Descriptor |
| 358 | * +--------------------------------------------------------------+ |
| 359 | * 0 | Buffer Address [63:0] | |
| 360 | * +--------------------------------------------------------------+ |
| 361 | * 8 | PAYLEN | PORTS | IDX | STA | DCMD |DTYP | RSV | DTALEN | |
| 362 | * +--------------------------------------------------------------+ |
| 363 | * 63 46 45 40 39 36 35 32 31 24 23 20 19 0 |
| 364 | */ |
| 365 | |
| 366 | for (n = 0; n < adapter->num_tx_queues; n++) { |
| 367 | tx_ring = adapter->tx_ring[n]; |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 368 | pr_info("------------------------------------\n"); |
| 369 | pr_info("TX QUEUE INDEX = %d\n", tx_ring->queue_index); |
| 370 | pr_info("------------------------------------\n"); |
| 371 | pr_info("T [desc] [address 63:0 ] " |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 372 | "[PlPOIdStDDt Ln] [bi->dma ] " |
| 373 | "leng ntw timestamp bi->skb\n"); |
| 374 | |
| 375 | for (i = 0; tx_ring->desc && (i < tx_ring->count); i++) { |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 376 | tx_desc = IXGBE_TX_DESC(tx_ring, i); |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 377 | tx_buffer = &tx_ring->tx_buffer_info[i]; |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 378 | u0 = (struct my_u0 *)tx_desc; |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 379 | pr_info("T [0x%03X] %016llX %016llX %016llX" |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 380 | " %04X %p %016llX %p", i, |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 381 | le64_to_cpu(u0->a), |
| 382 | le64_to_cpu(u0->b), |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 383 | (u64)dma_unmap_addr(tx_buffer, dma), |
| 384 | dma_unmap_len(tx_buffer, len), |
| 385 | tx_buffer->next_to_watch, |
| 386 | (u64)tx_buffer->time_stamp, |
| 387 | tx_buffer->skb); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 388 | if (i == tx_ring->next_to_use && |
| 389 | i == tx_ring->next_to_clean) |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 390 | pr_cont(" NTC/U\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 391 | else if (i == tx_ring->next_to_use) |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 392 | pr_cont(" NTU\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 393 | else if (i == tx_ring->next_to_clean) |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 394 | pr_cont(" NTC\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 395 | else |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 396 | pr_cont("\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 397 | |
| 398 | if (netif_msg_pktdata(adapter) && |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 399 | dma_unmap_len(tx_buffer, len) != 0) |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 400 | print_hex_dump(KERN_INFO, "", |
| 401 | DUMP_PREFIX_ADDRESS, 16, 1, |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 402 | phys_to_virt(dma_unmap_addr(tx_buffer, |
| 403 | dma)), |
| 404 | dma_unmap_len(tx_buffer, len), |
| 405 | true); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 406 | } |
| 407 | } |
| 408 | |
| 409 | /* Print RX Rings Summary */ |
| 410 | rx_ring_summary: |
| 411 | dev_info(&adapter->pdev->dev, "RX Rings Summary\n"); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 412 | pr_info("Queue [NTU] [NTC]\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 413 | for (n = 0; n < adapter->num_rx_queues; n++) { |
| 414 | rx_ring = adapter->rx_ring[n]; |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 415 | pr_info("%5d %5X %5X\n", |
| 416 | n, rx_ring->next_to_use, rx_ring->next_to_clean); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | /* Print RX Rings */ |
| 420 | if (!netif_msg_rx_status(adapter)) |
| 421 | goto exit; |
| 422 | |
| 423 | dev_info(&adapter->pdev->dev, "RX Rings Dump\n"); |
| 424 | |
| 425 | /* Advanced Receive Descriptor (Read) Format |
| 426 | * 63 1 0 |
| 427 | * +-----------------------------------------------------+ |
| 428 | * 0 | Packet Buffer Address [63:1] |A0/NSE| |
| 429 | * +----------------------------------------------+------+ |
| 430 | * 8 | Header Buffer Address [63:1] | DD | |
| 431 | * +-----------------------------------------------------+ |
| 432 | * |
| 433 | * |
| 434 | * Advanced Receive Descriptor (Write-Back) Format |
| 435 | * |
| 436 | * 63 48 47 32 31 30 21 20 16 15 4 3 0 |
| 437 | * +------------------------------------------------------+ |
| 438 | * 0 | Packet IP |SPH| HDR_LEN | RSV|Packet| RSS | |
| 439 | * | Checksum Ident | | | | Type | Type | |
| 440 | * +------------------------------------------------------+ |
| 441 | * 8 | VLAN Tag | Length | Extended Error | Extended Status | |
| 442 | * +------------------------------------------------------+ |
| 443 | * 63 48 47 32 31 20 19 0 |
| 444 | */ |
| 445 | for (n = 0; n < adapter->num_rx_queues; n++) { |
| 446 | rx_ring = adapter->rx_ring[n]; |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 447 | pr_info("------------------------------------\n"); |
| 448 | pr_info("RX QUEUE INDEX = %d\n", rx_ring->queue_index); |
| 449 | pr_info("------------------------------------\n"); |
| 450 | pr_info("R [desc] [ PktBuf A0] " |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 451 | "[ HeadBuf DD] [bi->dma ] [bi->skb] " |
| 452 | "<-- Adv Rx Read format\n"); |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 453 | pr_info("RWB[desc] [PcsmIpSHl PtRs] " |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 454 | "[vl er S cks ln] ---------------- [bi->skb] " |
| 455 | "<-- Adv Rx Write-Back format\n"); |
| 456 | |
| 457 | for (i = 0; i < rx_ring->count; i++) { |
| 458 | rx_buffer_info = &rx_ring->rx_buffer_info[i]; |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 459 | rx_desc = IXGBE_RX_DESC(rx_ring, i); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 460 | u0 = (struct my_u0 *)rx_desc; |
| 461 | staterr = le32_to_cpu(rx_desc->wb.upper.status_error); |
| 462 | if (staterr & IXGBE_RXD_STAT_DD) { |
| 463 | /* Descriptor Done */ |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 464 | pr_info("RWB[0x%03X] %016llX " |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 465 | "%016llX ---------------- %p", i, |
| 466 | le64_to_cpu(u0->a), |
| 467 | le64_to_cpu(u0->b), |
| 468 | rx_buffer_info->skb); |
| 469 | } else { |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 470 | pr_info("R [0x%03X] %016llX " |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 471 | "%016llX %016llX %p", i, |
| 472 | le64_to_cpu(u0->a), |
| 473 | le64_to_cpu(u0->b), |
| 474 | (u64)rx_buffer_info->dma, |
| 475 | rx_buffer_info->skb); |
| 476 | |
| 477 | if (netif_msg_pktdata(adapter)) { |
| 478 | print_hex_dump(KERN_INFO, "", |
| 479 | DUMP_PREFIX_ADDRESS, 16, 1, |
| 480 | phys_to_virt(rx_buffer_info->dma), |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 481 | ixgbe_rx_bufsz(rx_ring), true); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 482 | } |
| 483 | } |
| 484 | |
| 485 | if (i == rx_ring->next_to_use) |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 486 | pr_cont(" NTU\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 487 | else if (i == rx_ring->next_to_clean) |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 488 | pr_cont(" NTC\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 489 | else |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 490 | pr_cont("\n"); |
Taku Izumi | dcd79ae | 2010-04-27 14:39:53 +0000 | [diff] [blame] | 491 | |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | exit: |
| 496 | return; |
| 497 | } |
| 498 | |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 499 | static void ixgbe_release_hw_control(struct ixgbe_adapter *adapter) |
| 500 | { |
| 501 | u32 ctrl_ext; |
| 502 | |
| 503 | /* Let firmware take over control of h/w */ |
| 504 | ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT); |
| 505 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 506 | ctrl_ext & ~IXGBE_CTRL_EXT_DRV_LOAD); |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 507 | } |
| 508 | |
| 509 | static void ixgbe_get_hw_control(struct ixgbe_adapter *adapter) |
| 510 | { |
| 511 | u32 ctrl_ext; |
| 512 | |
| 513 | /* Let firmware know the driver has taken over */ |
| 514 | ctrl_ext = IXGBE_READ_REG(&adapter->hw, IXGBE_CTRL_EXT); |
| 515 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_CTRL_EXT, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 516 | ctrl_ext | IXGBE_CTRL_EXT_DRV_LOAD); |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 517 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 518 | |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 519 | /** |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 520 | * ixgbe_set_ivar - set the IVAR registers, mapping interrupt causes to vectors |
| 521 | * @adapter: pointer to adapter struct |
| 522 | * @direction: 0 for Rx, 1 for Tx, -1 for other causes |
| 523 | * @queue: queue to map the corresponding interrupt to |
| 524 | * @msix_vector: the vector to map to the corresponding queue |
| 525 | * |
| 526 | */ |
| 527 | static void ixgbe_set_ivar(struct ixgbe_adapter *adapter, s8 direction, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 528 | u8 queue, u8 msix_vector) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 529 | { |
| 530 | u32 ivar, index; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 531 | struct ixgbe_hw *hw = &adapter->hw; |
| 532 | switch (hw->mac.type) { |
| 533 | case ixgbe_mac_82598EB: |
| 534 | msix_vector |= IXGBE_IVAR_ALLOC_VAL; |
| 535 | if (direction == -1) |
| 536 | direction = 0; |
| 537 | index = (((direction * 64) + queue) >> 2) & 0x1F; |
| 538 | ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(index)); |
| 539 | ivar &= ~(0xFF << (8 * (queue & 0x3))); |
| 540 | ivar |= (msix_vector << (8 * (queue & 0x3))); |
| 541 | IXGBE_WRITE_REG(hw, IXGBE_IVAR(index), ivar); |
| 542 | break; |
| 543 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 544 | case ixgbe_mac_X540: |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 545 | if (direction == -1) { |
| 546 | /* other causes */ |
| 547 | msix_vector |= IXGBE_IVAR_ALLOC_VAL; |
| 548 | index = ((queue & 1) * 8); |
| 549 | ivar = IXGBE_READ_REG(&adapter->hw, IXGBE_IVAR_MISC); |
| 550 | ivar &= ~(0xFF << index); |
| 551 | ivar |= (msix_vector << index); |
| 552 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_IVAR_MISC, ivar); |
| 553 | break; |
| 554 | } else { |
| 555 | /* tx or rx causes */ |
| 556 | msix_vector |= IXGBE_IVAR_ALLOC_VAL; |
| 557 | index = ((16 * (queue & 1)) + (8 * direction)); |
| 558 | ivar = IXGBE_READ_REG(hw, IXGBE_IVAR(queue >> 1)); |
| 559 | ivar &= ~(0xFF << index); |
| 560 | ivar |= (msix_vector << index); |
| 561 | IXGBE_WRITE_REG(hw, IXGBE_IVAR(queue >> 1), ivar); |
| 562 | break; |
| 563 | } |
| 564 | default: |
| 565 | break; |
| 566 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 567 | } |
| 568 | |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 569 | static inline void ixgbe_irq_rearm_queues(struct ixgbe_adapter *adapter, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 570 | u64 qmask) |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 571 | { |
| 572 | u32 mask; |
| 573 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 574 | switch (adapter->hw.mac.type) { |
| 575 | case ixgbe_mac_82598EB: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 576 | mask = (IXGBE_EIMS_RTX_QUEUE & qmask); |
| 577 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS, mask); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 578 | break; |
| 579 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 580 | case ixgbe_mac_X540: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 581 | mask = (qmask & 0xFFFFFFFF); |
| 582 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(0), mask); |
| 583 | mask = (qmask >> 32); |
| 584 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EICS_EX(1), mask); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 585 | break; |
| 586 | default: |
| 587 | break; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 588 | } |
| 589 | } |
| 590 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 591 | void ixgbe_unmap_and_free_tx_resource(struct ixgbe_ring *ring, |
| 592 | struct ixgbe_tx_buffer *tx_buffer) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 593 | { |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 594 | if (tx_buffer->skb) { |
| 595 | dev_kfree_skb_any(tx_buffer->skb); |
| 596 | if (dma_unmap_len(tx_buffer, len)) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 597 | dma_unmap_single(ring->dev, |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 598 | dma_unmap_addr(tx_buffer, dma), |
| 599 | dma_unmap_len(tx_buffer, len), |
| 600 | DMA_TO_DEVICE); |
| 601 | } else if (dma_unmap_len(tx_buffer, len)) { |
| 602 | dma_unmap_page(ring->dev, |
| 603 | dma_unmap_addr(tx_buffer, dma), |
| 604 | dma_unmap_len(tx_buffer, len), |
| 605 | DMA_TO_DEVICE); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 606 | } |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 607 | tx_buffer->next_to_watch = NULL; |
| 608 | tx_buffer->skb = NULL; |
| 609 | dma_unmap_len_set(tx_buffer, len, 0); |
| 610 | /* tx_buffer must be completely set up in the transmit path */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 611 | } |
| 612 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 613 | static void ixgbe_update_xoff_rx_lfc(struct ixgbe_adapter *adapter) |
| 614 | { |
| 615 | struct ixgbe_hw *hw = &adapter->hw; |
| 616 | struct ixgbe_hw_stats *hwstats = &adapter->stats; |
| 617 | int i; |
| 618 | u32 data; |
| 619 | |
| 620 | if ((hw->fc.current_mode != ixgbe_fc_full) && |
| 621 | (hw->fc.current_mode != ixgbe_fc_rx_pause)) |
| 622 | return; |
| 623 | |
| 624 | switch (hw->mac.type) { |
| 625 | case ixgbe_mac_82598EB: |
| 626 | data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXC); |
| 627 | break; |
| 628 | default: |
| 629 | data = IXGBE_READ_REG(hw, IXGBE_LXOFFRXCNT); |
| 630 | } |
| 631 | hwstats->lxoffrxc += data; |
| 632 | |
| 633 | /* refill credits (no tx hang) if we received xoff */ |
| 634 | if (!data) |
| 635 | return; |
| 636 | |
| 637 | for (i = 0; i < adapter->num_tx_queues; i++) |
| 638 | clear_bit(__IXGBE_HANG_CHECK_ARMED, |
| 639 | &adapter->tx_ring[i]->state); |
| 640 | } |
| 641 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 642 | static void ixgbe_update_xoff_received(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 643 | { |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 644 | struct ixgbe_hw *hw = &adapter->hw; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 645 | struct ixgbe_hw_stats *hwstats = &adapter->stats; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 646 | u32 xoff[8] = {0}; |
| 647 | int i; |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 648 | bool pfc_en = adapter->dcb_cfg.pfc_mode_enable; |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 649 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 650 | if (adapter->ixgbe_ieee_pfc) |
| 651 | pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 652 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 653 | if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED) || !pfc_en) { |
| 654 | ixgbe_update_xoff_rx_lfc(adapter); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 655 | return; |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 656 | } |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 657 | |
| 658 | /* update stats for each tc, only valid with PFC enabled */ |
| 659 | for (i = 0; i < MAX_TX_PACKET_BUFFERS; i++) { |
| 660 | switch (hw->mac.type) { |
| 661 | case ixgbe_mac_82598EB: |
| 662 | xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXC(i)); |
| 663 | break; |
| 664 | default: |
| 665 | xoff[i] = IXGBE_READ_REG(hw, IXGBE_PXOFFRXCNT(i)); |
| 666 | } |
| 667 | hwstats->pxoffrxc[i] += xoff[i]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 668 | } |
| 669 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 670 | /* disarm tx queues that have received xoff frames */ |
| 671 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 672 | struct ixgbe_ring *tx_ring = adapter->tx_ring[i]; |
John Fastabend | fb5475f | 2011-04-26 07:26:36 +0000 | [diff] [blame] | 673 | u8 tc = tx_ring->dcb_tc; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 674 | |
| 675 | if (xoff[tc]) |
| 676 | clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state); |
| 677 | } |
| 678 | } |
| 679 | |
| 680 | static u64 ixgbe_get_tx_completed(struct ixgbe_ring *ring) |
| 681 | { |
Alexander Duyck | 7d7ce68 | 2012-02-08 07:50:51 +0000 | [diff] [blame] | 682 | return ring->stats.packets; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 683 | } |
| 684 | |
| 685 | static u64 ixgbe_get_tx_pending(struct ixgbe_ring *ring) |
| 686 | { |
| 687 | struct ixgbe_adapter *adapter = netdev_priv(ring->netdev); |
| 688 | struct ixgbe_hw *hw = &adapter->hw; |
| 689 | |
| 690 | u32 head = IXGBE_READ_REG(hw, IXGBE_TDH(ring->reg_idx)); |
| 691 | u32 tail = IXGBE_READ_REG(hw, IXGBE_TDT(ring->reg_idx)); |
| 692 | |
| 693 | if (head != tail) |
| 694 | return (head < tail) ? |
| 695 | tail - head : (tail + ring->count - head); |
| 696 | |
| 697 | return 0; |
| 698 | } |
| 699 | |
| 700 | static inline bool ixgbe_check_tx_hang(struct ixgbe_ring *tx_ring) |
| 701 | { |
| 702 | u32 tx_done = ixgbe_get_tx_completed(tx_ring); |
| 703 | u32 tx_done_old = tx_ring->tx_stats.tx_done_old; |
| 704 | u32 tx_pending = ixgbe_get_tx_pending(tx_ring); |
| 705 | bool ret = false; |
| 706 | |
| 707 | clear_check_for_tx_hang(tx_ring); |
| 708 | |
| 709 | /* |
| 710 | * Check for a hung queue, but be thorough. This verifies |
| 711 | * that a transmit has been completed since the previous |
| 712 | * check AND there is at least one packet pending. The |
| 713 | * ARMED bit is set to indicate a potential hang. The |
| 714 | * bit is cleared if a pause frame is received to remove |
| 715 | * false hang detection due to PFC or 802.3x frames. By |
| 716 | * requiring this to fail twice we avoid races with |
| 717 | * pfc clearing the ARMED bit and conditions where we |
| 718 | * run the check_tx_hang logic with a transmit completion |
| 719 | * pending but without time to complete it yet. |
| 720 | */ |
| 721 | if ((tx_done_old == tx_done) && tx_pending) { |
| 722 | /* make sure it is true for two checks in a row */ |
| 723 | ret = test_and_set_bit(__IXGBE_HANG_CHECK_ARMED, |
| 724 | &tx_ring->state); |
| 725 | } else { |
| 726 | /* update completed stats and continue */ |
| 727 | tx_ring->tx_stats.tx_done_old = tx_done; |
| 728 | /* reset the countdown */ |
| 729 | clear_bit(__IXGBE_HANG_CHECK_ARMED, &tx_ring->state); |
| 730 | } |
| 731 | |
| 732 | return ret; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 733 | } |
| 734 | |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 735 | /** |
| 736 | * ixgbe_tx_timeout_reset - initiate reset due to Tx timeout |
| 737 | * @adapter: driver private struct |
| 738 | **/ |
| 739 | static void ixgbe_tx_timeout_reset(struct ixgbe_adapter *adapter) |
| 740 | { |
| 741 | |
| 742 | /* Do the reset outside of interrupt context */ |
| 743 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 744 | adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED; |
| 745 | ixgbe_service_event_schedule(adapter); |
| 746 | } |
| 747 | } |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 748 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 749 | /** |
| 750 | * ixgbe_clean_tx_irq - Reclaim resources after transmit completes |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 751 | * @q_vector: structure containing interrupt and ring information |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 752 | * @tx_ring: tx ring to clean |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 753 | **/ |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 754 | static bool ixgbe_clean_tx_irq(struct ixgbe_q_vector *q_vector, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 755 | struct ixgbe_ring *tx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 756 | { |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 757 | struct ixgbe_adapter *adapter = q_vector->adapter; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 758 | struct ixgbe_tx_buffer *tx_buffer; |
| 759 | union ixgbe_adv_tx_desc *tx_desc; |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 760 | unsigned int total_bytes = 0, total_packets = 0; |
Alexander Duyck | 5922455 | 2011-08-31 00:01:06 +0000 | [diff] [blame] | 761 | unsigned int budget = q_vector->tx.work_limit; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 762 | unsigned int i = tx_ring->next_to_clean; |
| 763 | |
| 764 | if (test_bit(__IXGBE_DOWN, &adapter->state)) |
| 765 | return true; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 766 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 767 | tx_buffer = &tx_ring->tx_buffer_info[i]; |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 768 | tx_desc = IXGBE_TX_DESC(tx_ring, i); |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 769 | i -= tx_ring->count; |
Peter P Waskiewicz Jr | 12207e4 | 2009-02-06 21:47:24 -0800 | [diff] [blame] | 770 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 771 | do { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 772 | union ixgbe_adv_tx_desc *eop_desc = tx_buffer->next_to_watch; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 773 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 774 | /* if next_to_watch is not set then there is no work pending */ |
| 775 | if (!eop_desc) |
| 776 | break; |
| 777 | |
Alexander Duyck | 7f83a9e | 2012-02-08 07:49:23 +0000 | [diff] [blame] | 778 | /* prevent any other reads prior to eop_desc */ |
| 779 | rmb(); |
| 780 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 781 | /* if DD is not set pending work has not been completed */ |
| 782 | if (!(eop_desc->wb.status & cpu_to_le32(IXGBE_TXD_STAT_DD))) |
| 783 | break; |
| 784 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 785 | /* clear next_to_watch to prevent false hangs */ |
| 786 | tx_buffer->next_to_watch = NULL; |
| 787 | |
Alexander Duyck | 091a624 | 2012-02-08 07:51:01 +0000 | [diff] [blame] | 788 | /* update the statistics for this packet */ |
| 789 | total_bytes += tx_buffer->bytecount; |
| 790 | total_packets += tx_buffer->gso_segs; |
| 791 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 792 | #ifdef CONFIG_IXGBE_PTP |
Jacob Keller | 0ede4a6 | 2012-05-22 06:08:32 +0000 | [diff] [blame] | 793 | if (unlikely(tx_buffer->tx_flags & IXGBE_TX_FLAGS_TSTAMP)) |
| 794 | ixgbe_ptp_tx_hwtstamp(q_vector, tx_buffer->skb); |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 795 | #endif |
Jacob Keller | 0ede4a6 | 2012-05-22 06:08:32 +0000 | [diff] [blame] | 796 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 797 | /* free the skb */ |
| 798 | dev_kfree_skb_any(tx_buffer->skb); |
| 799 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 800 | /* unmap skb header data */ |
| 801 | dma_unmap_single(tx_ring->dev, |
| 802 | dma_unmap_addr(tx_buffer, dma), |
| 803 | dma_unmap_len(tx_buffer, len), |
| 804 | DMA_TO_DEVICE); |
| 805 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 806 | /* clear tx_buffer data */ |
| 807 | tx_buffer->skb = NULL; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 808 | dma_unmap_len_set(tx_buffer, len, 0); |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 809 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 810 | /* unmap remaining buffers */ |
| 811 | while (tx_desc != eop_desc) { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 812 | tx_buffer++; |
| 813 | tx_desc++; |
| 814 | i++; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 815 | if (unlikely(!i)) { |
| 816 | i -= tx_ring->count; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 817 | tx_buffer = tx_ring->tx_buffer_info; |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 818 | tx_desc = IXGBE_TX_DESC(tx_ring, 0); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 819 | } |
| 820 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 821 | /* unmap any remaining paged data */ |
| 822 | if (dma_unmap_len(tx_buffer, len)) { |
| 823 | dma_unmap_page(tx_ring->dev, |
| 824 | dma_unmap_addr(tx_buffer, dma), |
| 825 | dma_unmap_len(tx_buffer, len), |
| 826 | DMA_TO_DEVICE); |
| 827 | dma_unmap_len_set(tx_buffer, len, 0); |
| 828 | } |
| 829 | } |
Peter P Waskiewicz Jr | 12207e4 | 2009-02-06 21:47:24 -0800 | [diff] [blame] | 830 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 831 | /* move us one more past the eop_desc for start of next pkt */ |
| 832 | tx_buffer++; |
| 833 | tx_desc++; |
| 834 | i++; |
| 835 | if (unlikely(!i)) { |
| 836 | i -= tx_ring->count; |
| 837 | tx_buffer = tx_ring->tx_buffer_info; |
| 838 | tx_desc = IXGBE_TX_DESC(tx_ring, 0); |
| 839 | } |
| 840 | |
| 841 | /* issue prefetch for next Tx descriptor */ |
| 842 | prefetch(tx_desc); |
| 843 | |
| 844 | /* update budget accounting */ |
| 845 | budget--; |
| 846 | } while (likely(budget)); |
| 847 | |
| 848 | i += tx_ring->count; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 849 | tx_ring->next_to_clean = i; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 850 | u64_stats_update_begin(&tx_ring->syncp); |
Alexander Duyck | b953799 | 2010-11-16 19:26:58 -0800 | [diff] [blame] | 851 | tx_ring->stats.bytes += total_bytes; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 852 | tx_ring->stats.packets += total_packets; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 853 | u64_stats_update_end(&tx_ring->syncp); |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 854 | q_vector->tx.total_bytes += total_bytes; |
| 855 | q_vector->tx.total_packets += total_packets; |
Alexander Duyck | b953799 | 2010-11-16 19:26:58 -0800 | [diff] [blame] | 856 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 857 | 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] | 858 | /* schedule immediate reset if we believe we hung */ |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 859 | struct ixgbe_hw *hw = &adapter->hw; |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 860 | e_err(drv, "Detected Tx Unit Hang\n" |
| 861 | " Tx Queue <%d>\n" |
| 862 | " TDH, TDT <%x>, <%x>\n" |
| 863 | " next_to_use <%x>\n" |
| 864 | " next_to_clean <%x>\n" |
| 865 | "tx_buffer_info[next_to_clean]\n" |
| 866 | " time_stamp <%lx>\n" |
| 867 | " jiffies <%lx>\n", |
| 868 | tx_ring->queue_index, |
| 869 | IXGBE_READ_REG(hw, IXGBE_TDH(tx_ring->reg_idx)), |
| 870 | IXGBE_READ_REG(hw, IXGBE_TDT(tx_ring->reg_idx)), |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 871 | tx_ring->next_to_use, i, |
| 872 | tx_ring->tx_buffer_info[i].time_stamp, jiffies); |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 873 | |
| 874 | netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index); |
| 875 | |
| 876 | e_info(probe, |
| 877 | "tx hang %d detected on queue %d, resetting adapter\n", |
| 878 | adapter->tx_timeout_count + 1, tx_ring->queue_index); |
| 879 | |
| 880 | /* schedule immediate reset if we believe we hung */ |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 881 | ixgbe_tx_timeout_reset(adapter); |
Alexander Duyck | b953799 | 2010-11-16 19:26:58 -0800 | [diff] [blame] | 882 | |
| 883 | /* the adapter is about to reset, no point in enabling stuff */ |
Alexander Duyck | 5922455 | 2011-08-31 00:01:06 +0000 | [diff] [blame] | 884 | return true; |
Alexander Duyck | b953799 | 2010-11-16 19:26:58 -0800 | [diff] [blame] | 885 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 886 | |
Alexander Duyck | b2d96e0 | 2012-02-07 08:14:33 +0000 | [diff] [blame] | 887 | netdev_tx_completed_queue(txring_txq(tx_ring), |
| 888 | total_packets, total_bytes); |
| 889 | |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 890 | #define TX_WAKE_THRESHOLD (DESC_NEEDED * 2) |
Alexander Duyck | 30065e6 | 2011-07-15 03:05:14 +0000 | [diff] [blame] | 891 | if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) && |
Alexander Duyck | 7d4987d | 2011-05-27 05:31:37 +0000 | [diff] [blame] | 892 | (ixgbe_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD))) { |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 893 | /* Make sure that anybody stopping the queue after this |
| 894 | * sees the new next_to_clean. |
| 895 | */ |
| 896 | smp_mb(); |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 897 | if (__netif_subqueue_stopped(tx_ring->netdev, |
| 898 | tx_ring->queue_index) |
| 899 | && !test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 900 | netif_wake_subqueue(tx_ring->netdev, |
| 901 | tx_ring->queue_index); |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 902 | ++tx_ring->tx_stats.restart_queue; |
Ayyappan Veeraiyan | 30eba97 | 2008-03-03 15:03:52 -0800 | [diff] [blame] | 903 | } |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 904 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 905 | |
Alexander Duyck | 5922455 | 2011-08-31 00:01:06 +0000 | [diff] [blame] | 906 | return !!budget; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 907 | } |
| 908 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 909 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 910 | static void ixgbe_update_tx_dca(struct ixgbe_adapter *adapter, |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 911 | struct ixgbe_ring *tx_ring, |
| 912 | int cpu) |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 913 | { |
Don Skidmore | ee5f784 | 2009-11-06 12:56:20 +0000 | [diff] [blame] | 914 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 915 | u32 txctrl = dca3_get_tag(tx_ring->dev, cpu); |
| 916 | u16 reg_offset; |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 917 | |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 918 | switch (hw->mac.type) { |
| 919 | case ixgbe_mac_82598EB: |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 920 | reg_offset = IXGBE_DCA_TXCTRL(tx_ring->reg_idx); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 921 | break; |
| 922 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 923 | case ixgbe_mac_X540: |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 924 | reg_offset = IXGBE_DCA_TXCTRL_82599(tx_ring->reg_idx); |
| 925 | txctrl <<= IXGBE_DCA_TXCTRL_CPUID_SHIFT_82599; |
| 926 | break; |
| 927 | default: |
| 928 | /* for unknown hardware do not write register */ |
| 929 | return; |
| 930 | } |
| 931 | |
| 932 | /* |
| 933 | * We can enable relaxed ordering for reads, but not writes when |
| 934 | * DCA is enabled. This is due to a known issue in some chipsets |
| 935 | * which will cause the DCA tag to be cleared. |
| 936 | */ |
| 937 | txctrl |= IXGBE_DCA_TXCTRL_DESC_RRO_EN | |
| 938 | IXGBE_DCA_TXCTRL_DATA_RRO_EN | |
| 939 | IXGBE_DCA_TXCTRL_DESC_DCA_EN; |
| 940 | |
| 941 | IXGBE_WRITE_REG(hw, reg_offset, txctrl); |
| 942 | } |
| 943 | |
| 944 | static void ixgbe_update_rx_dca(struct ixgbe_adapter *adapter, |
| 945 | struct ixgbe_ring *rx_ring, |
| 946 | int cpu) |
| 947 | { |
| 948 | struct ixgbe_hw *hw = &adapter->hw; |
| 949 | u32 rxctrl = dca3_get_tag(rx_ring->dev, cpu); |
| 950 | u8 reg_idx = rx_ring->reg_idx; |
| 951 | |
| 952 | |
| 953 | switch (hw->mac.type) { |
| 954 | case ixgbe_mac_82599EB: |
| 955 | case ixgbe_mac_X540: |
| 956 | rxctrl <<= IXGBE_DCA_RXCTRL_CPUID_SHIFT_82599; |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 957 | break; |
| 958 | default: |
| 959 | break; |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 960 | } |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 961 | |
| 962 | /* |
| 963 | * We can enable relaxed ordering for reads, but not writes when |
| 964 | * DCA is enabled. This is due to a known issue in some chipsets |
| 965 | * which will cause the DCA tag to be cleared. |
| 966 | */ |
| 967 | rxctrl |= IXGBE_DCA_RXCTRL_DESC_RRO_EN | |
| 968 | IXGBE_DCA_RXCTRL_DATA_DCA_EN | |
| 969 | IXGBE_DCA_RXCTRL_DESC_DCA_EN; |
| 970 | |
| 971 | IXGBE_WRITE_REG(hw, IXGBE_DCA_RXCTRL(reg_idx), rxctrl); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | static void ixgbe_update_dca(struct ixgbe_q_vector *q_vector) |
| 975 | { |
| 976 | struct ixgbe_adapter *adapter = q_vector->adapter; |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 977 | struct ixgbe_ring *ring; |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 978 | int cpu = get_cpu(); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 979 | |
| 980 | if (q_vector->cpu == cpu) |
| 981 | goto out_no_update; |
| 982 | |
Alexander Duyck | a557928 | 2012-02-08 07:50:04 +0000 | [diff] [blame] | 983 | ixgbe_for_each_ring(ring, q_vector->tx) |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 984 | ixgbe_update_tx_dca(adapter, ring, cpu); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 985 | |
Alexander Duyck | a557928 | 2012-02-08 07:50:04 +0000 | [diff] [blame] | 986 | ixgbe_for_each_ring(ring, q_vector->rx) |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 987 | ixgbe_update_rx_dca(adapter, ring, cpu); |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 988 | |
| 989 | q_vector->cpu = cpu; |
| 990 | out_no_update: |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 991 | put_cpu(); |
| 992 | } |
| 993 | |
| 994 | static void ixgbe_setup_dca(struct ixgbe_adapter *adapter) |
| 995 | { |
| 996 | int i; |
| 997 | |
| 998 | if (!(adapter->flags & IXGBE_FLAG_DCA_ENABLED)) |
| 999 | return; |
| 1000 | |
Alexander Duyck | e35ec12 | 2009-05-21 13:07:12 +0000 | [diff] [blame] | 1001 | /* always use CB2 mode, difference is masked in the CB driver */ |
| 1002 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 2); |
| 1003 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 1004 | for (i = 0; i < adapter->num_q_vectors; i++) { |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1005 | adapter->q_vector[i]->cpu = -1; |
| 1006 | ixgbe_update_dca(adapter->q_vector[i]); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1007 | } |
| 1008 | } |
| 1009 | |
| 1010 | static int __ixgbe_notify_dca(struct device *dev, void *data) |
| 1011 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 1012 | struct ixgbe_adapter *adapter = dev_get_drvdata(dev); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1013 | unsigned long event = *(unsigned long *)data; |
| 1014 | |
Don Skidmore | 2a72c31 | 2011-07-20 02:27:05 +0000 | [diff] [blame] | 1015 | if (!(adapter->flags & IXGBE_FLAG_DCA_CAPABLE)) |
Alexander Duyck | 33cf09c | 2010-11-16 19:26:55 -0800 | [diff] [blame] | 1016 | return 0; |
| 1017 | |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1018 | switch (event) { |
| 1019 | case DCA_PROVIDER_ADD: |
Jesse Brandeburg | 96b0e0f | 2008-08-26 04:27:21 -0700 | [diff] [blame] | 1020 | /* if we're already enabled, don't do it again */ |
| 1021 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) |
| 1022 | break; |
Denis V. Lunev | 652f093 | 2008-03-27 14:39:17 +0300 | [diff] [blame] | 1023 | if (dca_add_requester(dev) == 0) { |
Jesse Brandeburg | 96b0e0f | 2008-08-26 04:27:21 -0700 | [diff] [blame] | 1024 | adapter->flags |= IXGBE_FLAG_DCA_ENABLED; |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1025 | ixgbe_setup_dca(adapter); |
| 1026 | break; |
| 1027 | } |
| 1028 | /* Fall Through since DCA is disabled. */ |
| 1029 | case DCA_PROVIDER_REMOVE: |
| 1030 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) { |
| 1031 | dca_remove_requester(dev); |
| 1032 | adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED; |
| 1033 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1); |
| 1034 | } |
| 1035 | break; |
| 1036 | } |
| 1037 | |
Denis V. Lunev | 652f093 | 2008-03-27 14:39:17 +0300 | [diff] [blame] | 1038 | return 0; |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 1039 | } |
Emil Tantilov | 67a74ee | 2011-04-23 04:50:40 +0000 | [diff] [blame] | 1040 | |
Alexander Duyck | bdda1a6 | 2012-02-08 07:50:14 +0000 | [diff] [blame] | 1041 | #endif /* CONFIG_IXGBE_DCA */ |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1042 | static inline void ixgbe_rx_hash(struct ixgbe_ring *ring, |
| 1043 | union ixgbe_adv_rx_desc *rx_desc, |
Emil Tantilov | 67a74ee | 2011-04-23 04:50:40 +0000 | [diff] [blame] | 1044 | struct sk_buff *skb) |
| 1045 | { |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1046 | if (ring->netdev->features & NETIF_F_RXHASH) |
| 1047 | skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss); |
Emil Tantilov | 67a74ee | 2011-04-23 04:50:40 +0000 | [diff] [blame] | 1048 | } |
| 1049 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1050 | #ifdef IXGBE_FCOE |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1051 | /** |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1052 | * ixgbe_rx_is_fcoe - check the rx desc for incoming pkt type |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 1053 | * @ring: structure containing ring specific data |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1054 | * @rx_desc: advanced rx descriptor |
| 1055 | * |
| 1056 | * Returns : true if it is FCoE pkt |
| 1057 | */ |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 1058 | static inline bool ixgbe_rx_is_fcoe(struct ixgbe_ring *ring, |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1059 | union ixgbe_adv_rx_desc *rx_desc) |
| 1060 | { |
| 1061 | __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info; |
| 1062 | |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 1063 | return test_bit(__IXGBE_RX_FCOE, &ring->state) && |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1064 | ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_ETQF_MASK)) == |
| 1065 | (cpu_to_le16(IXGBE_ETQF_FILTER_FCOE << |
| 1066 | IXGBE_RXDADV_PKTTYPE_ETQF_SHIFT))); |
| 1067 | } |
| 1068 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1069 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | ff886df | 2011-06-11 01:45:13 +0000 | [diff] [blame] | 1070 | /** |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1071 | * ixgbe_rx_checksum - indicate in skb if hw indicated a good cksum |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1072 | * @ring: structure containing ring specific data |
| 1073 | * @rx_desc: current Rx descriptor being processed |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1074 | * @skb: skb currently being received and modified |
| 1075 | **/ |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1076 | static inline void ixgbe_rx_checksum(struct ixgbe_ring *ring, |
Don Skidmore | 8bae1b2 | 2009-07-23 18:00:39 +0000 | [diff] [blame] | 1077 | union ixgbe_adv_rx_desc *rx_desc, |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1078 | struct sk_buff *skb) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1079 | { |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1080 | skb_checksum_none_assert(skb); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1081 | |
Jesse Brandeburg | 712744b | 2008-08-26 04:26:56 -0700 | [diff] [blame] | 1082 | /* Rx csum disabled */ |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1083 | if (!(ring->netdev->features & NETIF_F_RXCSUM)) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1084 | return; |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1085 | |
| 1086 | /* if IP and error */ |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1087 | if (ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_IPCS) && |
| 1088 | ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_IPE)) { |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1089 | ring->rx_stats.csum_err++; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1090 | return; |
| 1091 | } |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1092 | |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1093 | if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_L4CS)) |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1094 | return; |
| 1095 | |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1096 | if (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_TCPE)) { |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1097 | __le16 pkt_info = rx_desc->wb.lower.lo_dword.hs_rss.pkt_info; |
Don Skidmore | 8bae1b2 | 2009-07-23 18:00:39 +0000 | [diff] [blame] | 1098 | |
| 1099 | /* |
| 1100 | * 82599 errata, UDP frames with a 0 checksum can be marked as |
| 1101 | * checksum errors. |
| 1102 | */ |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1103 | if ((pkt_info & cpu_to_le16(IXGBE_RXDADV_PKTTYPE_UDP)) && |
| 1104 | test_bit(__IXGBE_RX_CSUM_UDP_ZERO_ERR, &ring->state)) |
Don Skidmore | 8bae1b2 | 2009-07-23 18:00:39 +0000 | [diff] [blame] | 1105 | return; |
| 1106 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1107 | ring->rx_stats.csum_err++; |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1108 | return; |
| 1109 | } |
| 1110 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1111 | /* It must be a TCP or UDP packet with a valid checksum */ |
Ayyappan Veeraiyan | e59bd25 | 2008-02-01 15:59:09 -0800 | [diff] [blame] | 1112 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1113 | } |
| 1114 | |
Alexander Duyck | 84ea259 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1115 | static inline void ixgbe_release_rx_desc(struct ixgbe_ring *rx_ring, u32 val) |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 1116 | { |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1117 | rx_ring->next_to_use = val; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1118 | |
| 1119 | /* update next to alloc since we have filled the ring */ |
| 1120 | rx_ring->next_to_alloc = val; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 1121 | /* |
| 1122 | * Force memory writes to complete before letting h/w |
| 1123 | * know there are new descriptors to fetch. (Only |
| 1124 | * applicable for weak-ordered memory model archs, |
| 1125 | * such as IA-64). |
| 1126 | */ |
| 1127 | wmb(); |
Alexander Duyck | 84ea259 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1128 | writel(val, rx_ring->tail); |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 1129 | } |
| 1130 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1131 | static bool ixgbe_alloc_mapped_page(struct ixgbe_ring *rx_ring, |
| 1132 | struct ixgbe_rx_buffer *bi) |
| 1133 | { |
| 1134 | struct page *page = bi->page; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1135 | dma_addr_t dma = bi->dma; |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1136 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1137 | /* since we are recycling buffers we should seldom need to alloc */ |
| 1138 | if (likely(dma)) |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1139 | return true; |
| 1140 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1141 | /* alloc new page for storage */ |
| 1142 | if (likely(!page)) { |
Alexander Duyck | 8633c08 | 2012-06-16 07:31:19 +0000 | [diff] [blame] | 1143 | page = alloc_pages(GFP_ATOMIC | __GFP_COLD | __GFP_COMP, |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1144 | ixgbe_rx_pg_order(rx_ring)); |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1145 | if (unlikely(!page)) { |
| 1146 | rx_ring->rx_stats.alloc_rx_page_failed++; |
| 1147 | return false; |
| 1148 | } |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1149 | bi->page = page; |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1152 | /* map page for use */ |
| 1153 | dma = dma_map_page(rx_ring->dev, page, 0, |
| 1154 | ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE); |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1155 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1156 | /* |
| 1157 | * if mapping failed free memory back to system since |
| 1158 | * there isn't much point in holding memory we can't use |
| 1159 | */ |
| 1160 | if (dma_mapping_error(rx_ring->dev, dma)) { |
Alexander Duyck | dd411ec | 2012-04-06 04:24:50 +0000 | [diff] [blame] | 1161 | __free_pages(page, ixgbe_rx_pg_order(rx_ring)); |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1162 | bi->page = NULL; |
| 1163 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1164 | rx_ring->rx_stats.alloc_rx_page_failed++; |
| 1165 | return false; |
| 1166 | } |
| 1167 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1168 | bi->dma = dma; |
| 1169 | bi->page_offset ^= ixgbe_rx_bufsz(rx_ring); |
| 1170 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1171 | return true; |
| 1172 | } |
| 1173 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1174 | /** |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1175 | * ixgbe_alloc_rx_buffers - Replace used receive buffers |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1176 | * @rx_ring: ring to place buffers on |
| 1177 | * @cleaned_count: number of buffers to replace |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1178 | **/ |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1179 | 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] | 1180 | { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1181 | union ixgbe_adv_rx_desc *rx_desc; |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 1182 | struct ixgbe_rx_buffer *bi; |
Alexander Duyck | d5f398e | 2010-11-16 19:26:48 -0800 | [diff] [blame] | 1183 | u16 i = rx_ring->next_to_use; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1184 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1185 | /* nothing to do */ |
| 1186 | if (!cleaned_count) |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1187 | return; |
| 1188 | |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 1189 | rx_desc = IXGBE_RX_DESC(rx_ring, i); |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1190 | bi = &rx_ring->rx_buffer_info[i]; |
| 1191 | i -= rx_ring->count; |
| 1192 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1193 | do { |
| 1194 | if (!ixgbe_alloc_mapped_page(rx_ring, bi)) |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1195 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1196 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1197 | /* |
| 1198 | * Refresh the desc even if buffer_addrs didn't change |
| 1199 | * because each write-back erases this info. |
| 1200 | */ |
| 1201 | 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] | 1202 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1203 | rx_desc++; |
| 1204 | bi++; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1205 | i++; |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1206 | if (unlikely(!i)) { |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 1207 | rx_desc = IXGBE_RX_DESC(rx_ring, 0); |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1208 | bi = rx_ring->rx_buffer_info; |
| 1209 | i -= rx_ring->count; |
| 1210 | } |
| 1211 | |
| 1212 | /* clear the hdr_addr for the next_to_use descriptor */ |
| 1213 | rx_desc->read.hdr_addr = 0; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1214 | |
| 1215 | cleaned_count--; |
| 1216 | } while (cleaned_count); |
Jesse Brandeburg | 7c6e0a4 | 2008-08-26 04:27:16 -0700 | [diff] [blame] | 1217 | |
Alexander Duyck | f990b79 | 2012-01-31 02:59:34 +0000 | [diff] [blame] | 1218 | i += rx_ring->count; |
| 1219 | |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1220 | if (rx_ring->next_to_use != i) |
Alexander Duyck | 84ea259 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1221 | ixgbe_release_rx_desc(rx_ring, i); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1222 | } |
| 1223 | |
Alexander Duyck | 1d2024f | 2012-01-31 02:59:29 +0000 | [diff] [blame] | 1224 | /** |
| 1225 | * ixgbe_get_headlen - determine size of header for RSC/LRO/GRO/FCOE |
| 1226 | * @data: pointer to the start of the headers |
| 1227 | * @max_len: total length of section to find headers in |
| 1228 | * |
| 1229 | * This function is meant to determine the length of headers that will |
| 1230 | * be recognized by hardware for LRO, GRO, and RSC offloads. The main |
| 1231 | * motivation of doing this is to only perform one pull for IPv4 TCP |
| 1232 | * packets so that we can do basic things like calculating the gso_size |
| 1233 | * based on the average data per packet. |
| 1234 | **/ |
| 1235 | static unsigned int ixgbe_get_headlen(unsigned char *data, |
| 1236 | unsigned int max_len) |
| 1237 | { |
| 1238 | union { |
| 1239 | unsigned char *network; |
| 1240 | /* l2 headers */ |
| 1241 | struct ethhdr *eth; |
| 1242 | struct vlan_hdr *vlan; |
| 1243 | /* l3 headers */ |
| 1244 | struct iphdr *ipv4; |
| 1245 | } hdr; |
| 1246 | __be16 protocol; |
| 1247 | u8 nexthdr = 0; /* default to not TCP */ |
| 1248 | u8 hlen; |
| 1249 | |
| 1250 | /* this should never happen, but better safe than sorry */ |
| 1251 | if (max_len < ETH_HLEN) |
| 1252 | return max_len; |
| 1253 | |
| 1254 | /* initialize network frame pointer */ |
| 1255 | hdr.network = data; |
| 1256 | |
| 1257 | /* set first protocol and move network header forward */ |
| 1258 | protocol = hdr.eth->h_proto; |
| 1259 | hdr.network += ETH_HLEN; |
| 1260 | |
| 1261 | /* handle any vlan tag if present */ |
| 1262 | if (protocol == __constant_htons(ETH_P_8021Q)) { |
| 1263 | if ((hdr.network - data) > (max_len - VLAN_HLEN)) |
| 1264 | return max_len; |
| 1265 | |
| 1266 | protocol = hdr.vlan->h_vlan_encapsulated_proto; |
| 1267 | hdr.network += VLAN_HLEN; |
| 1268 | } |
| 1269 | |
| 1270 | /* handle L3 protocols */ |
| 1271 | if (protocol == __constant_htons(ETH_P_IP)) { |
| 1272 | if ((hdr.network - data) > (max_len - sizeof(struct iphdr))) |
| 1273 | return max_len; |
| 1274 | |
| 1275 | /* access ihl as a u8 to avoid unaligned access on ia64 */ |
| 1276 | hlen = (hdr.network[0] & 0x0F) << 2; |
| 1277 | |
| 1278 | /* verify hlen meets minimum size requirements */ |
| 1279 | if (hlen < sizeof(struct iphdr)) |
| 1280 | return hdr.network - data; |
| 1281 | |
| 1282 | /* record next protocol */ |
| 1283 | nexthdr = hdr.ipv4->protocol; |
| 1284 | hdr.network += hlen; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1285 | #ifdef IXGBE_FCOE |
Alexander Duyck | 1d2024f | 2012-01-31 02:59:29 +0000 | [diff] [blame] | 1286 | } else if (protocol == __constant_htons(ETH_P_FCOE)) { |
| 1287 | if ((hdr.network - data) > (max_len - FCOE_HEADER_LEN)) |
| 1288 | return max_len; |
| 1289 | hdr.network += FCOE_HEADER_LEN; |
| 1290 | #endif |
| 1291 | } else { |
| 1292 | return hdr.network - data; |
| 1293 | } |
| 1294 | |
| 1295 | /* finally sort out TCP */ |
| 1296 | if (nexthdr == IPPROTO_TCP) { |
| 1297 | if ((hdr.network - data) > (max_len - sizeof(struct tcphdr))) |
| 1298 | return max_len; |
| 1299 | |
| 1300 | /* access doff as a u8 to avoid unaligned access on ia64 */ |
| 1301 | hlen = (hdr.network[12] & 0xF0) >> 2; |
| 1302 | |
| 1303 | /* verify hlen meets minimum size requirements */ |
| 1304 | if (hlen < sizeof(struct tcphdr)) |
| 1305 | return hdr.network - data; |
| 1306 | |
| 1307 | hdr.network += hlen; |
| 1308 | } |
| 1309 | |
| 1310 | /* |
| 1311 | * If everything has gone correctly hdr.network should be the |
| 1312 | * data section of the packet and will be the end of the header. |
| 1313 | * If not then it probably represents the end of the last recognized |
| 1314 | * header. |
| 1315 | */ |
| 1316 | if ((hdr.network - data) < max_len) |
| 1317 | return hdr.network - data; |
| 1318 | else |
| 1319 | return max_len; |
| 1320 | } |
| 1321 | |
Alexander Duyck | 4c1975d | 2012-01-31 02:59:23 +0000 | [diff] [blame] | 1322 | static void ixgbe_get_rsc_cnt(struct ixgbe_ring *rx_ring, |
| 1323 | union ixgbe_adv_rx_desc *rx_desc, |
| 1324 | struct sk_buff *skb) |
| 1325 | { |
| 1326 | __le32 rsc_enabled; |
| 1327 | u32 rsc_cnt; |
| 1328 | |
| 1329 | if (!ring_is_rsc_enabled(rx_ring)) |
| 1330 | return; |
| 1331 | |
| 1332 | rsc_enabled = rx_desc->wb.lower.lo_dword.data & |
| 1333 | cpu_to_le32(IXGBE_RXDADV_RSCCNT_MASK); |
| 1334 | |
| 1335 | /* If this is an RSC frame rsc_cnt should be non-zero */ |
| 1336 | if (!rsc_enabled) |
| 1337 | return; |
| 1338 | |
| 1339 | rsc_cnt = le32_to_cpu(rsc_enabled); |
| 1340 | rsc_cnt >>= IXGBE_RXDADV_RSCCNT_SHIFT; |
| 1341 | |
| 1342 | IXGBE_CB(skb)->append_cnt += rsc_cnt - 1; |
Alexander Duyck | aa80175 | 2010-11-16 19:27:02 -0800 | [diff] [blame] | 1343 | } |
Mallikarjuna R Chilakala | 43634e8 | 2010-02-25 23:14:37 +0000 | [diff] [blame] | 1344 | |
Alexander Duyck | 1d2024f | 2012-01-31 02:59:29 +0000 | [diff] [blame] | 1345 | static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring, |
| 1346 | struct sk_buff *skb) |
| 1347 | { |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1348 | u16 hdr_len = skb_headlen(skb); |
Alexander Duyck | 1d2024f | 2012-01-31 02:59:29 +0000 | [diff] [blame] | 1349 | |
| 1350 | /* set gso_size to avoid messing up TCP MSS */ |
| 1351 | skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len), |
| 1352 | IXGBE_CB(skb)->append_cnt); |
| 1353 | } |
| 1354 | |
| 1355 | static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring, |
| 1356 | struct sk_buff *skb) |
| 1357 | { |
| 1358 | /* if append_cnt is 0 then frame is not RSC */ |
| 1359 | if (!IXGBE_CB(skb)->append_cnt) |
| 1360 | return; |
| 1361 | |
| 1362 | rx_ring->rx_stats.rsc_count += IXGBE_CB(skb)->append_cnt; |
| 1363 | rx_ring->rx_stats.rsc_flush++; |
| 1364 | |
| 1365 | ixgbe_set_rsc_gso_size(rx_ring, skb); |
| 1366 | |
| 1367 | /* gso_size is computed using append_cnt so always clear it last */ |
| 1368 | IXGBE_CB(skb)->append_cnt = 0; |
| 1369 | } |
| 1370 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1371 | /** |
| 1372 | * ixgbe_process_skb_fields - Populate skb header fields from Rx descriptor |
| 1373 | * @rx_ring: rx descriptor ring packet is being transacted on |
| 1374 | * @rx_desc: pointer to the EOP Rx descriptor |
| 1375 | * @skb: pointer to current skb being populated |
| 1376 | * |
| 1377 | * This function checks the ring, descriptor, and packet information in |
| 1378 | * order to populate the hash, checksum, VLAN, timestamp, protocol, and |
| 1379 | * other fields within the skb. |
| 1380 | **/ |
| 1381 | static void ixgbe_process_skb_fields(struct ixgbe_ring *rx_ring, |
| 1382 | union ixgbe_adv_rx_desc *rx_desc, |
| 1383 | struct sk_buff *skb) |
| 1384 | { |
John Fastabend | 43e95f1 | 2012-05-15 06:12:17 +0000 | [diff] [blame] | 1385 | struct net_device *dev = rx_ring->netdev; |
| 1386 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1387 | ixgbe_update_rsc_stats(rx_ring, skb); |
| 1388 | |
| 1389 | ixgbe_rx_hash(rx_ring, rx_desc, skb); |
| 1390 | |
| 1391 | ixgbe_rx_checksum(rx_ring, rx_desc, skb); |
| 1392 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 1393 | #ifdef CONFIG_IXGBE_PTP |
Jacob Keller | 1d1a79b | 2012-05-22 06:18:08 +0000 | [diff] [blame] | 1394 | ixgbe_ptp_rx_hwtstamp(rx_ring->q_vector, rx_desc, skb); |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 1395 | #endif |
| 1396 | |
John Fastabend | 43e95f1 | 2012-05-15 06:12:17 +0000 | [diff] [blame] | 1397 | if ((dev->features & NETIF_F_HW_VLAN_RX) && |
| 1398 | ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_VP)) { |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1399 | u16 vid = le16_to_cpu(rx_desc->wb.upper.vlan); |
| 1400 | __vlan_hwaccel_put_tag(skb, vid); |
| 1401 | } |
| 1402 | |
| 1403 | skb_record_rx_queue(skb, rx_ring->queue_index); |
| 1404 | |
John Fastabend | 43e95f1 | 2012-05-15 06:12:17 +0000 | [diff] [blame] | 1405 | skb->protocol = eth_type_trans(skb, dev); |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1406 | } |
| 1407 | |
| 1408 | static void ixgbe_rx_skb(struct ixgbe_q_vector *q_vector, |
| 1409 | struct sk_buff *skb) |
| 1410 | { |
| 1411 | struct ixgbe_adapter *adapter = q_vector->adapter; |
| 1412 | |
| 1413 | if (!(adapter->flags & IXGBE_FLAG_IN_NETPOLL)) |
| 1414 | napi_gro_receive(&q_vector->napi, skb); |
| 1415 | else |
| 1416 | netif_rx(skb); |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 1417 | } |
| 1418 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1419 | /** |
| 1420 | * ixgbe_is_non_eop - process handling of non-EOP buffers |
| 1421 | * @rx_ring: Rx ring being processed |
| 1422 | * @rx_desc: Rx descriptor for current buffer |
| 1423 | * @skb: Current socket buffer containing buffer in progress |
| 1424 | * |
| 1425 | * This function updates next to clean. If the buffer is an EOP buffer |
| 1426 | * this function exits returning false, otherwise it will place the |
| 1427 | * sk_buff in the next buffer to be chained and return true indicating |
| 1428 | * that this is in fact a non-EOP buffer. |
| 1429 | **/ |
| 1430 | static bool ixgbe_is_non_eop(struct ixgbe_ring *rx_ring, |
| 1431 | union ixgbe_adv_rx_desc *rx_desc, |
| 1432 | struct sk_buff *skb) |
| 1433 | { |
| 1434 | u32 ntc = rx_ring->next_to_clean + 1; |
| 1435 | |
| 1436 | /* fetch, update, and store next to clean */ |
| 1437 | ntc = (ntc < rx_ring->count) ? ntc : 0; |
| 1438 | rx_ring->next_to_clean = ntc; |
| 1439 | |
| 1440 | prefetch(IXGBE_RX_DESC(rx_ring, ntc)); |
| 1441 | |
| 1442 | if (likely(ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_EOP))) |
| 1443 | return false; |
| 1444 | |
| 1445 | /* append_cnt indicates packet is RSC, if so fetch nextp */ |
| 1446 | if (IXGBE_CB(skb)->append_cnt) { |
| 1447 | ntc = le32_to_cpu(rx_desc->wb.upper.status_error); |
| 1448 | ntc &= IXGBE_RXDADV_NEXTP_MASK; |
| 1449 | ntc >>= IXGBE_RXDADV_NEXTP_SHIFT; |
| 1450 | } |
| 1451 | |
| 1452 | /* place skb in next buffer to be received */ |
| 1453 | rx_ring->rx_buffer_info[ntc].skb = skb; |
| 1454 | rx_ring->rx_stats.non_eop_descs++; |
| 1455 | |
| 1456 | return true; |
| 1457 | } |
| 1458 | |
| 1459 | /** |
| 1460 | * ixgbe_cleanup_headers - Correct corrupted or empty headers |
| 1461 | * @rx_ring: rx descriptor ring packet is being transacted on |
| 1462 | * @rx_desc: pointer to the EOP Rx descriptor |
| 1463 | * @skb: pointer to current skb being fixed |
| 1464 | * |
| 1465 | * Check for corrupted packet headers caused by senders on the local L2 |
| 1466 | * embedded NIC switch not setting up their Tx Descriptors right. These |
| 1467 | * should be very rare. |
| 1468 | * |
| 1469 | * Also address the case where we are pulling data in on pages only |
| 1470 | * and as such no data is present in the skb header. |
| 1471 | * |
| 1472 | * In addition if skb is not at least 60 bytes we need to pad it so that |
| 1473 | * it is large enough to qualify as a valid Ethernet frame. |
| 1474 | * |
| 1475 | * Returns true if an error was encountered and skb was freed. |
| 1476 | **/ |
| 1477 | static bool ixgbe_cleanup_headers(struct ixgbe_ring *rx_ring, |
| 1478 | union ixgbe_adv_rx_desc *rx_desc, |
| 1479 | struct sk_buff *skb) |
| 1480 | { |
| 1481 | struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0]; |
| 1482 | struct net_device *netdev = rx_ring->netdev; |
| 1483 | unsigned char *va; |
| 1484 | unsigned int pull_len; |
| 1485 | |
| 1486 | /* if the page was released unmap it, else just sync our portion */ |
| 1487 | if (unlikely(IXGBE_CB(skb)->page_released)) { |
| 1488 | dma_unmap_page(rx_ring->dev, IXGBE_CB(skb)->dma, |
| 1489 | ixgbe_rx_pg_size(rx_ring), DMA_FROM_DEVICE); |
| 1490 | IXGBE_CB(skb)->page_released = false; |
| 1491 | } else { |
| 1492 | dma_sync_single_range_for_cpu(rx_ring->dev, |
| 1493 | IXGBE_CB(skb)->dma, |
| 1494 | frag->page_offset, |
| 1495 | ixgbe_rx_bufsz(rx_ring), |
| 1496 | DMA_FROM_DEVICE); |
| 1497 | } |
| 1498 | IXGBE_CB(skb)->dma = 0; |
| 1499 | |
| 1500 | /* verify that the packet does not have any known errors */ |
| 1501 | if (unlikely(ixgbe_test_staterr(rx_desc, |
| 1502 | IXGBE_RXDADV_ERR_FRAME_ERR_MASK) && |
| 1503 | !(netdev->features & NETIF_F_RXALL))) { |
| 1504 | dev_kfree_skb_any(skb); |
| 1505 | return true; |
| 1506 | } |
| 1507 | |
| 1508 | /* |
| 1509 | * it is valid to use page_address instead of kmap since we are |
| 1510 | * working with pages allocated out of the lomem pool per |
| 1511 | * alloc_page(GFP_ATOMIC) |
| 1512 | */ |
| 1513 | va = skb_frag_address(frag); |
| 1514 | |
| 1515 | /* |
| 1516 | * we need the header to contain the greater of either ETH_HLEN or |
| 1517 | * 60 bytes if the skb->len is less than 60 for skb_pad. |
| 1518 | */ |
| 1519 | pull_len = skb_frag_size(frag); |
| 1520 | if (pull_len > 256) |
| 1521 | pull_len = ixgbe_get_headlen(va, pull_len); |
| 1522 | |
| 1523 | /* align pull length to size of long to optimize memcpy performance */ |
| 1524 | skb_copy_to_linear_data(skb, va, ALIGN(pull_len, sizeof(long))); |
| 1525 | |
| 1526 | /* update all of the pointers */ |
| 1527 | skb_frag_size_sub(frag, pull_len); |
| 1528 | frag->page_offset += pull_len; |
| 1529 | skb->data_len -= pull_len; |
| 1530 | skb->tail += pull_len; |
| 1531 | |
| 1532 | /* |
| 1533 | * if we sucked the frag empty then we should free it, |
| 1534 | * if there are other frags here something is screwed up in hardware |
| 1535 | */ |
| 1536 | if (skb_frag_size(frag) == 0) { |
| 1537 | BUG_ON(skb_shinfo(skb)->nr_frags != 1); |
| 1538 | skb_shinfo(skb)->nr_frags = 0; |
| 1539 | __skb_frag_unref(frag); |
| 1540 | skb->truesize -= ixgbe_rx_bufsz(rx_ring); |
| 1541 | } |
| 1542 | |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 1543 | #ifdef IXGBE_FCOE |
| 1544 | /* do not attempt to pad FCoE Frames as this will disrupt DDP */ |
| 1545 | if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) |
| 1546 | return false; |
| 1547 | |
| 1548 | #endif |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1549 | /* if skb_pad returns an error the skb was freed */ |
| 1550 | if (unlikely(skb->len < 60)) { |
| 1551 | int pad_len = 60 - skb->len; |
| 1552 | |
| 1553 | if (skb_pad(skb, pad_len)) |
| 1554 | return true; |
| 1555 | __skb_put(skb, pad_len); |
| 1556 | } |
| 1557 | |
| 1558 | return false; |
| 1559 | } |
| 1560 | |
| 1561 | /** |
| 1562 | * ixgbe_can_reuse_page - determine if we can reuse a page |
| 1563 | * @rx_buffer: pointer to rx_buffer containing the page we want to reuse |
| 1564 | * |
| 1565 | * Returns true if page can be reused in another Rx buffer |
| 1566 | **/ |
| 1567 | static inline bool ixgbe_can_reuse_page(struct ixgbe_rx_buffer *rx_buffer) |
| 1568 | { |
| 1569 | struct page *page = rx_buffer->page; |
| 1570 | |
| 1571 | /* if we are only owner of page and it is local we can reuse it */ |
| 1572 | return likely(page_count(page) == 1) && |
| 1573 | likely(page_to_nid(page) == numa_node_id()); |
| 1574 | } |
| 1575 | |
| 1576 | /** |
| 1577 | * ixgbe_reuse_rx_page - page flip buffer and store it back on the ring |
| 1578 | * @rx_ring: rx descriptor ring to store buffers on |
| 1579 | * @old_buff: donor buffer to have page reused |
| 1580 | * |
| 1581 | * Syncronizes page for reuse by the adapter |
| 1582 | **/ |
| 1583 | static void ixgbe_reuse_rx_page(struct ixgbe_ring *rx_ring, |
| 1584 | struct ixgbe_rx_buffer *old_buff) |
| 1585 | { |
| 1586 | struct ixgbe_rx_buffer *new_buff; |
| 1587 | u16 nta = rx_ring->next_to_alloc; |
| 1588 | u16 bufsz = ixgbe_rx_bufsz(rx_ring); |
| 1589 | |
| 1590 | new_buff = &rx_ring->rx_buffer_info[nta]; |
| 1591 | |
| 1592 | /* update, and store next to alloc */ |
| 1593 | nta++; |
| 1594 | rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0; |
| 1595 | |
| 1596 | /* transfer page from old buffer to new buffer */ |
| 1597 | new_buff->page = old_buff->page; |
| 1598 | new_buff->dma = old_buff->dma; |
| 1599 | |
| 1600 | /* flip page offset to other buffer and store to new_buff */ |
| 1601 | new_buff->page_offset = old_buff->page_offset ^ bufsz; |
| 1602 | |
| 1603 | /* sync the buffer for use by the device */ |
| 1604 | dma_sync_single_range_for_device(rx_ring->dev, new_buff->dma, |
| 1605 | new_buff->page_offset, bufsz, |
| 1606 | DMA_FROM_DEVICE); |
| 1607 | |
| 1608 | /* bump ref count on page before it is given to the stack */ |
| 1609 | get_page(new_buff->page); |
| 1610 | } |
| 1611 | |
| 1612 | /** |
| 1613 | * ixgbe_add_rx_frag - Add contents of Rx buffer to sk_buff |
| 1614 | * @rx_ring: rx descriptor ring to transact packets on |
| 1615 | * @rx_buffer: buffer containing page to add |
| 1616 | * @rx_desc: descriptor containing length of buffer written by hardware |
| 1617 | * @skb: sk_buff to place the data into |
| 1618 | * |
| 1619 | * This function is based on skb_add_rx_frag. I would have used that |
| 1620 | * function however it doesn't handle the truesize case correctly since we |
| 1621 | * are allocating more memory than might be used for a single receive. |
| 1622 | **/ |
| 1623 | static void ixgbe_add_rx_frag(struct ixgbe_ring *rx_ring, |
| 1624 | struct ixgbe_rx_buffer *rx_buffer, |
| 1625 | struct sk_buff *skb, int size) |
| 1626 | { |
| 1627 | skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, |
| 1628 | rx_buffer->page, rx_buffer->page_offset, |
| 1629 | size); |
| 1630 | skb->len += size; |
| 1631 | skb->data_len += size; |
| 1632 | skb->truesize += ixgbe_rx_bufsz(rx_ring); |
| 1633 | } |
| 1634 | |
| 1635 | /** |
| 1636 | * ixgbe_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf |
| 1637 | * @q_vector: structure containing interrupt and ring information |
| 1638 | * @rx_ring: rx descriptor ring to transact packets on |
| 1639 | * @budget: Total limit on number of packets to process |
| 1640 | * |
| 1641 | * This function provides a "bounce buffer" approach to Rx interrupt |
| 1642 | * processing. The advantage to this is that on systems that have |
| 1643 | * expensive overhead for IOMMU access this provides a means of avoiding |
| 1644 | * it by maintaining the mapping of the page to the syste. |
| 1645 | * |
| 1646 | * Returns true if all work is completed without reaching budget |
| 1647 | **/ |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 1648 | static bool ixgbe_clean_rx_irq(struct ixgbe_q_vector *q_vector, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 1649 | struct ixgbe_ring *rx_ring, |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 1650 | int budget) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1651 | { |
Ayyappan Veeraiyan | d2f4fbe | 2008-02-01 15:59:19 -0800 | [diff] [blame] | 1652 | unsigned int total_rx_bytes = 0, total_rx_packets = 0; |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 1653 | #ifdef IXGBE_FCOE |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1654 | struct ixgbe_adapter *adapter = q_vector->adapter; |
Yi Zou | 3d8fd38 | 2009-06-08 14:38:44 +0000 | [diff] [blame] | 1655 | int ddp_bytes = 0; |
| 1656 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1657 | u16 cleaned_count = ixgbe_desc_unused(rx_ring); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1658 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1659 | do { |
| 1660 | struct ixgbe_rx_buffer *rx_buffer; |
| 1661 | union ixgbe_adv_rx_desc *rx_desc; |
| 1662 | struct sk_buff *skb; |
| 1663 | struct page *page; |
| 1664 | u16 ntc; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1665 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1666 | /* return some buffers to hardware, one at a time is too slow */ |
| 1667 | if (cleaned_count >= IXGBE_RX_BUFFER_WRITE) { |
| 1668 | ixgbe_alloc_rx_buffers(rx_ring, cleaned_count); |
| 1669 | cleaned_count = 0; |
| 1670 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1671 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1672 | ntc = rx_ring->next_to_clean; |
| 1673 | rx_desc = IXGBE_RX_DESC(rx_ring, ntc); |
| 1674 | rx_buffer = &rx_ring->rx_buffer_info[ntc]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1675 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1676 | if (!ixgbe_test_staterr(rx_desc, IXGBE_RXD_STAT_DD)) |
| 1677 | break; |
Alexander Duyck | c267fc1 | 2010-11-16 19:27:00 -0800 | [diff] [blame] | 1678 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1679 | /* |
| 1680 | * This memory barrier is needed to keep us from reading |
| 1681 | * any other fields out of the rx_desc until we know the |
| 1682 | * RXD_STAT_DD bit is set |
| 1683 | */ |
| 1684 | rmb(); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1685 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1686 | page = rx_buffer->page; |
| 1687 | prefetchw(page); |
| 1688 | |
| 1689 | skb = rx_buffer->skb; |
| 1690 | |
| 1691 | if (likely(!skb)) { |
| 1692 | void *page_addr = page_address(page) + |
| 1693 | rx_buffer->page_offset; |
| 1694 | |
| 1695 | /* prefetch first cache line of first page */ |
| 1696 | prefetch(page_addr); |
| 1697 | #if L1_CACHE_BYTES < 128 |
| 1698 | prefetch(page_addr + L1_CACHE_BYTES); |
| 1699 | #endif |
| 1700 | |
| 1701 | /* allocate a skb to store the frags */ |
| 1702 | skb = netdev_alloc_skb_ip_align(rx_ring->netdev, |
| 1703 | IXGBE_RX_HDR_SIZE); |
| 1704 | if (unlikely(!skb)) { |
| 1705 | rx_ring->rx_stats.alloc_rx_buff_failed++; |
| 1706 | break; |
Alexander Duyck | c267fc1 | 2010-11-16 19:27:00 -0800 | [diff] [blame] | 1707 | } |
| 1708 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1709 | /* |
| 1710 | * we will be copying header into skb->data in |
| 1711 | * pskb_may_pull so it is in our interest to prefetch |
| 1712 | * it now to avoid a possible cache miss |
| 1713 | */ |
| 1714 | prefetchw(skb->data); |
Alexander Duyck | 4c1975d | 2012-01-31 02:59:23 +0000 | [diff] [blame] | 1715 | |
| 1716 | /* |
| 1717 | * Delay unmapping of the first packet. It carries the |
| 1718 | * header information, HW may still access the header |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1719 | * after the writeback. Only unmap it when EOP is |
| 1720 | * reached |
Alexander Duyck | 4c1975d | 2012-01-31 02:59:23 +0000 | [diff] [blame] | 1721 | */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1722 | IXGBE_CB(skb)->dma = rx_buffer->dma; |
Alexander Duyck | c267fc1 | 2010-11-16 19:27:00 -0800 | [diff] [blame] | 1723 | } else { |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1724 | /* we are reusing so sync this buffer for CPU use */ |
| 1725 | dma_sync_single_range_for_cpu(rx_ring->dev, |
| 1726 | rx_buffer->dma, |
| 1727 | rx_buffer->page_offset, |
| 1728 | ixgbe_rx_bufsz(rx_ring), |
| 1729 | DMA_FROM_DEVICE); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1730 | } |
| 1731 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1732 | /* pull page into skb */ |
| 1733 | ixgbe_add_rx_frag(rx_ring, rx_buffer, skb, |
| 1734 | le16_to_cpu(rx_desc->wb.upper.length)); |
| 1735 | |
| 1736 | if (ixgbe_can_reuse_page(rx_buffer)) { |
| 1737 | /* hand second half of page back to the ring */ |
| 1738 | ixgbe_reuse_rx_page(rx_ring, rx_buffer); |
| 1739 | } else if (IXGBE_CB(skb)->dma == rx_buffer->dma) { |
| 1740 | /* the page has been released from the ring */ |
| 1741 | IXGBE_CB(skb)->page_released = true; |
| 1742 | } else { |
| 1743 | /* we are not reusing the buffer so unmap it */ |
| 1744 | dma_unmap_page(rx_ring->dev, rx_buffer->dma, |
| 1745 | ixgbe_rx_pg_size(rx_ring), |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 1746 | DMA_FROM_DEVICE); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1747 | } |
| 1748 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1749 | /* clear contents of buffer_info */ |
| 1750 | rx_buffer->skb = NULL; |
| 1751 | rx_buffer->dma = 0; |
| 1752 | rx_buffer->page = NULL; |
| 1753 | |
Alexander Duyck | 4c1975d | 2012-01-31 02:59:23 +0000 | [diff] [blame] | 1754 | ixgbe_get_rsc_cnt(rx_ring, rx_desc, skb); |
| 1755 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1756 | cleaned_count++; |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 1757 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1758 | /* place incomplete frames back on ring for completion */ |
| 1759 | if (ixgbe_is_non_eop(rx_ring, rx_desc, skb)) |
| 1760 | continue; |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 1761 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1762 | /* verify the packet layout is correct */ |
| 1763 | if (ixgbe_cleanup_headers(rx_ring, rx_desc, skb)) |
| 1764 | continue; |
Ayyappan Veeraiyan | d2f4fbe | 2008-02-01 15:59:19 -0800 | [diff] [blame] | 1765 | |
| 1766 | /* probably a little skewed due to removing CRC */ |
| 1767 | total_rx_bytes += skb->len; |
| 1768 | total_rx_packets++; |
| 1769 | |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1770 | /* populate checksum, timestamp, VLAN, and protocol */ |
| 1771 | ixgbe_process_skb_fields(rx_ring, rx_desc, skb); |
| 1772 | |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 1773 | #ifdef IXGBE_FCOE |
| 1774 | /* if ddp, not passing to ULD unless for FCP_RSP or error */ |
Alexander Duyck | 57efd44 | 2012-06-25 21:54:46 +0000 | [diff] [blame] | 1775 | if (ixgbe_rx_is_fcoe(rx_ring, rx_desc)) { |
Alexander Duyck | f56e0cb | 2012-01-31 02:59:39 +0000 | [diff] [blame] | 1776 | ddp_bytes = ixgbe_fcoe_ddp(adapter, rx_desc, skb); |
David S. Miller | 823dcd2 | 2011-08-20 10:39:12 -0700 | [diff] [blame] | 1777 | if (!ddp_bytes) { |
| 1778 | dev_kfree_skb_any(skb); |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1779 | continue; |
David S. Miller | 823dcd2 | 2011-08-20 10:39:12 -0700 | [diff] [blame] | 1780 | } |
Yi Zou | 3d8fd38 | 2009-06-08 14:38:44 +0000 | [diff] [blame] | 1781 | } |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1782 | |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 1783 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 1784 | ixgbe_rx_skb(q_vector, skb); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1785 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1786 | /* update budget accounting */ |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 1787 | budget--; |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1788 | } while (likely(budget)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1789 | |
Yi Zou | 3d8fd38 | 2009-06-08 14:38:44 +0000 | [diff] [blame] | 1790 | #ifdef IXGBE_FCOE |
| 1791 | /* include DDPed FCoE data */ |
| 1792 | if (ddp_bytes > 0) { |
| 1793 | unsigned int mss; |
| 1794 | |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 1795 | mss = rx_ring->netdev->mtu - sizeof(struct fcoe_hdr) - |
Yi Zou | 3d8fd38 | 2009-06-08 14:38:44 +0000 | [diff] [blame] | 1796 | sizeof(struct fc_frame_header) - |
| 1797 | sizeof(struct fcoe_crc_eof); |
| 1798 | if (mss > 512) |
| 1799 | mss &= ~511; |
| 1800 | total_rx_bytes += ddp_bytes; |
| 1801 | total_rx_packets += DIV_ROUND_UP(ddp_bytes, mss); |
| 1802 | } |
Yi Zou | 3d8fd38 | 2009-06-08 14:38:44 +0000 | [diff] [blame] | 1803 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1804 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | c267fc1 | 2010-11-16 19:27:00 -0800 | [diff] [blame] | 1805 | u64_stats_update_begin(&rx_ring->syncp); |
| 1806 | rx_ring->stats.packets += total_rx_packets; |
| 1807 | rx_ring->stats.bytes += total_rx_bytes; |
| 1808 | u64_stats_update_end(&rx_ring->syncp); |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1809 | q_vector->rx.total_packets += total_rx_packets; |
| 1810 | q_vector->rx.total_bytes += total_rx_bytes; |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 1811 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 1812 | if (cleaned_count) |
| 1813 | ixgbe_alloc_rx_buffers(rx_ring, cleaned_count); |
| 1814 | |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 1815 | return !!budget; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1816 | } |
| 1817 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1818 | /** |
| 1819 | * ixgbe_configure_msix - Configure MSI-X hardware |
| 1820 | * @adapter: board private structure |
| 1821 | * |
| 1822 | * ixgbe_configure_msix sets up the hardware to properly generate MSI-X |
| 1823 | * interrupts. |
| 1824 | **/ |
| 1825 | static void ixgbe_configure_msix(struct ixgbe_adapter *adapter) |
| 1826 | { |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1827 | struct ixgbe_q_vector *q_vector; |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 1828 | int v_idx; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1829 | u32 mask; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1830 | |
Alexander Duyck | 8e34d1a | 2011-07-15 07:29:49 +0000 | [diff] [blame] | 1831 | /* Populate MSIX to EITR Select */ |
| 1832 | if (adapter->num_vfs > 32) { |
| 1833 | u32 eitrsel = (1 << (adapter->num_vfs - 32)) - 1; |
| 1834 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, eitrsel); |
| 1835 | } |
| 1836 | |
Jesse Brandeburg | 4df1046 | 2009-03-13 22:15:31 +0000 | [diff] [blame] | 1837 | /* |
| 1838 | * Populate the IVAR table and set the ITR values to the |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1839 | * corresponding register. |
| 1840 | */ |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 1841 | for (v_idx = 0; v_idx < adapter->num_q_vectors; v_idx++) { |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 1842 | struct ixgbe_ring *ring; |
Alexander Duyck | 7a921c9 | 2009-05-06 10:43:28 +0000 | [diff] [blame] | 1843 | q_vector = adapter->q_vector[v_idx]; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1844 | |
Alexander Duyck | a557928 | 2012-02-08 07:50:04 +0000 | [diff] [blame] | 1845 | ixgbe_for_each_ring(ring, q_vector->rx) |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 1846 | ixgbe_set_ivar(adapter, 0, ring->reg_idx, v_idx); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1847 | |
Alexander Duyck | a557928 | 2012-02-08 07:50:04 +0000 | [diff] [blame] | 1848 | ixgbe_for_each_ring(ring, q_vector->tx) |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 1849 | ixgbe_set_ivar(adapter, 1, ring->reg_idx, v_idx); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1850 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 1851 | if (q_vector->tx.ring && !q_vector->rx.ring) { |
| 1852 | /* tx only vector */ |
| 1853 | if (adapter->tx_itr_setting == 1) |
| 1854 | q_vector->itr = IXGBE_10K_ITR; |
| 1855 | else |
| 1856 | q_vector->itr = adapter->tx_itr_setting; |
| 1857 | } else { |
| 1858 | /* rx or rx/tx vector */ |
| 1859 | if (adapter->rx_itr_setting == 1) |
| 1860 | q_vector->itr = IXGBE_20K_ITR; |
| 1861 | else |
| 1862 | q_vector->itr = adapter->rx_itr_setting; |
| 1863 | } |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1864 | |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 1865 | ixgbe_write_eitr(q_vector); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1866 | } |
| 1867 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1868 | switch (adapter->hw.mac.type) { |
| 1869 | case ixgbe_mac_82598EB: |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 1870 | ixgbe_set_ivar(adapter, -1, IXGBE_IVAR_OTHER_CAUSES_INDEX, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 1871 | v_idx); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1872 | break; |
| 1873 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 1874 | case ixgbe_mac_X540: |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 1875 | ixgbe_set_ivar(adapter, -1, 1, v_idx); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1876 | break; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1877 | default: |
| 1878 | break; |
| 1879 | } |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1880 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITR(v_idx), 1950); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1881 | |
Jesse Brandeburg | 41fb924 | 2008-09-11 19:55:58 -0700 | [diff] [blame] | 1882 | /* set up to autoclear timer, and the vectors */ |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1883 | mask = IXGBE_EIMS_ENABLE_MASK; |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 1884 | mask &= ~(IXGBE_EIMS_OTHER | |
| 1885 | IXGBE_EIMS_MAILBOX | |
| 1886 | IXGBE_EIMS_LSC); |
| 1887 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 1888 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIAC, mask); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 1889 | } |
| 1890 | |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1891 | enum latency_range { |
| 1892 | lowest_latency = 0, |
| 1893 | low_latency = 1, |
| 1894 | bulk_latency = 2, |
| 1895 | latency_invalid = 255 |
| 1896 | }; |
| 1897 | |
| 1898 | /** |
| 1899 | * ixgbe_update_itr - update the dynamic ITR value based on statistics |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1900 | * @q_vector: structure containing interrupt and ring information |
| 1901 | * @ring_container: structure containing ring performance data |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1902 | * |
| 1903 | * Stores a new ITR value based on packets and byte |
| 1904 | * counts during the last interrupt. The advantage of per interrupt |
| 1905 | * computation is faster updates and more accurate ITR for the current |
| 1906 | * traffic pattern. Constants in this function were computed |
| 1907 | * based on theoretical maximum wire speed and thresholds were set based |
| 1908 | * on testing data as well as attempting to minimize response time |
| 1909 | * while increasing bulk throughput. |
| 1910 | * this functionality is controlled by the InterruptThrottleRate module |
| 1911 | * parameter (see ixgbe_param.c) |
| 1912 | **/ |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1913 | static void ixgbe_update_itr(struct ixgbe_q_vector *q_vector, |
| 1914 | struct ixgbe_ring_container *ring_container) |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1915 | { |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1916 | int bytes = ring_container->total_bytes; |
| 1917 | int packets = ring_container->total_packets; |
| 1918 | u32 timepassed_us; |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 1919 | u64 bytes_perint; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1920 | u8 itr_setting = ring_container->itr; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1921 | |
| 1922 | if (packets == 0) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1923 | return; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1924 | |
| 1925 | /* simple throttlerate management |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 1926 | * 0-10MB/s lowest (100000 ints/s) |
| 1927 | * 10-20MB/s low (20000 ints/s) |
| 1928 | * 20-1249MB/s bulk (8000 ints/s) |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1929 | */ |
| 1930 | /* what was last interrupt timeslice? */ |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 1931 | timepassed_us = q_vector->itr >> 2; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1932 | bytes_perint = bytes / timepassed_us; /* bytes/usec */ |
| 1933 | |
| 1934 | switch (itr_setting) { |
| 1935 | case lowest_latency: |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 1936 | if (bytes_perint > 10) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1937 | itr_setting = low_latency; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1938 | break; |
| 1939 | case low_latency: |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 1940 | if (bytes_perint > 20) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1941 | itr_setting = bulk_latency; |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 1942 | else if (bytes_perint <= 10) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1943 | itr_setting = lowest_latency; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1944 | break; |
| 1945 | case bulk_latency: |
Alexander Duyck | 621bd70 | 2012-02-08 07:50:20 +0000 | [diff] [blame] | 1946 | if (bytes_perint <= 20) |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1947 | itr_setting = low_latency; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1948 | break; |
| 1949 | } |
| 1950 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1951 | /* clear work counters since we have the values we need */ |
| 1952 | ring_container->total_bytes = 0; |
| 1953 | ring_container->total_packets = 0; |
| 1954 | |
| 1955 | /* write updated itr to ring container */ |
| 1956 | ring_container->itr = itr_setting; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1957 | } |
| 1958 | |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 1959 | /** |
| 1960 | * ixgbe_write_eitr - write EITR register in hardware specific way |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 1961 | * @q_vector: structure containing interrupt and ring information |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 1962 | * |
| 1963 | * This function is made to be called by ethtool and by the driver |
| 1964 | * when it needs to update EITR registers at runtime. Hardware |
| 1965 | * specific quirks/differences are taken care of here. |
| 1966 | */ |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 1967 | void ixgbe_write_eitr(struct ixgbe_q_vector *q_vector) |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 1968 | { |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 1969 | struct ixgbe_adapter *adapter = q_vector->adapter; |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 1970 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 1971 | int v_idx = q_vector->v_idx; |
Alexander Duyck | 5d967eb | 2012-02-08 07:49:43 +0000 | [diff] [blame] | 1972 | u32 itr_reg = q_vector->itr & IXGBE_MAX_EITR; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 1973 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1974 | switch (adapter->hw.mac.type) { |
| 1975 | case ixgbe_mac_82598EB: |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 1976 | /* must write high and low 16 bits to reset counter */ |
| 1977 | itr_reg |= (itr_reg << 16); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1978 | break; |
| 1979 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 1980 | case ixgbe_mac_X540: |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 1981 | /* |
| 1982 | * set the WDIS bit to not clear the timer bits and cause an |
| 1983 | * immediate assertion of the interrupt |
| 1984 | */ |
| 1985 | itr_reg |= IXGBE_EITR_CNT_WDIS; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 1986 | break; |
| 1987 | default: |
| 1988 | break; |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 1989 | } |
| 1990 | IXGBE_WRITE_REG(hw, IXGBE_EITR(v_idx), itr_reg); |
| 1991 | } |
| 1992 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1993 | static void ixgbe_set_itr(struct ixgbe_q_vector *q_vector) |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1994 | { |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 1995 | u32 new_itr = q_vector->itr; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1996 | u8 current_itr; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 1997 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 1998 | ixgbe_update_itr(q_vector, &q_vector->tx); |
| 1999 | ixgbe_update_itr(q_vector, &q_vector->rx); |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2000 | |
Alexander Duyck | 08c8833 | 2011-06-11 01:45:03 +0000 | [diff] [blame] | 2001 | current_itr = max(q_vector->rx.itr, q_vector->tx.itr); |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2002 | |
| 2003 | switch (current_itr) { |
| 2004 | /* counts and packets in update_itr are dependent on these numbers */ |
| 2005 | case lowest_latency: |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2006 | new_itr = IXGBE_100K_ITR; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2007 | break; |
| 2008 | case low_latency: |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2009 | new_itr = IXGBE_20K_ITR; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2010 | break; |
| 2011 | case bulk_latency: |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2012 | new_itr = IXGBE_8K_ITR; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2013 | break; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2014 | default: |
| 2015 | break; |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2016 | } |
| 2017 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2018 | if (new_itr != q_vector->itr) { |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2019 | /* do an exponential smoothing */ |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2020 | new_itr = (10 * new_itr * q_vector->itr) / |
| 2021 | ((9 * new_itr) + q_vector->itr); |
Jesse Brandeburg | 509ee93 | 2009-03-13 22:13:28 +0000 | [diff] [blame] | 2022 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 2023 | /* save the algorithm value here */ |
Alexander Duyck | 5d967eb | 2012-02-08 07:49:43 +0000 | [diff] [blame] | 2024 | q_vector->itr = new_itr; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2025 | |
| 2026 | ixgbe_write_eitr(q_vector); |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2027 | } |
Ayyappan Veeraiyan | f494e8f | 2008-03-03 15:03:57 -0800 | [diff] [blame] | 2028 | } |
| 2029 | |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2030 | /** |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 2031 | * ixgbe_check_overtemp_subtask - check for over temperature |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2032 | * @adapter: pointer to adapter |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2033 | **/ |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2034 | static void ixgbe_check_overtemp_subtask(struct ixgbe_adapter *adapter) |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2035 | { |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2036 | struct ixgbe_hw *hw = &adapter->hw; |
| 2037 | u32 eicr = adapter->interrupt_event; |
| 2038 | |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2039 | if (test_bit(__IXGBE_DOWN, &adapter->state)) |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 2040 | return; |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2041 | |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2042 | if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) && |
| 2043 | !(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_EVENT)) |
| 2044 | return; |
| 2045 | |
| 2046 | adapter->flags2 &= ~IXGBE_FLAG2_TEMP_SENSOR_EVENT; |
| 2047 | |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 2048 | switch (hw->device_id) { |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2049 | case IXGBE_DEV_ID_82599_T3_LOM: |
| 2050 | /* |
| 2051 | * Since the warning interrupt is for both ports |
| 2052 | * we don't have to check if: |
| 2053 | * - This interrupt wasn't for our port. |
| 2054 | * - We may have missed the interrupt so always have to |
| 2055 | * check if we got a LSC |
| 2056 | */ |
| 2057 | if (!(eicr & IXGBE_EICR_GPI_SDP0) && |
| 2058 | !(eicr & IXGBE_EICR_LSC)) |
| 2059 | return; |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2060 | |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2061 | if (!(eicr & IXGBE_EICR_LSC) && hw->mac.ops.check_link) { |
| 2062 | u32 autoneg; |
| 2063 | bool link_up = false; |
| 2064 | |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 2065 | hw->mac.ops.check_link(hw, &autoneg, &link_up, false); |
| 2066 | |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2067 | if (link_up) |
| 2068 | return; |
| 2069 | } |
| 2070 | |
| 2071 | /* Check if this is not due to overtemp */ |
| 2072 | if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP) |
| 2073 | return; |
| 2074 | |
| 2075 | break; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 2076 | default: |
| 2077 | if (!(eicr & IXGBE_EICR_GPI_SDP0)) |
| 2078 | return; |
| 2079 | break; |
| 2080 | } |
| 2081 | e_crit(drv, |
| 2082 | "Network adapter has been stopped because it has over heated. " |
| 2083 | "Restart the computer. If the problem persists, " |
| 2084 | "power off the system and replace the adapter\n"); |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 2085 | |
| 2086 | adapter->interrupt_event = 0; |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 2087 | } |
| 2088 | |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 2089 | static void ixgbe_check_fan_failure(struct ixgbe_adapter *adapter, u32 eicr) |
| 2090 | { |
| 2091 | struct ixgbe_hw *hw = &adapter->hw; |
| 2092 | |
| 2093 | if ((adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) && |
| 2094 | (eicr & IXGBE_EICR_GPI_SDP1)) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2095 | e_crit(probe, "Fan has stopped, replace the adapter\n"); |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 2096 | /* write to clear the interrupt */ |
| 2097 | IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1); |
| 2098 | } |
| 2099 | } |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 2100 | |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2101 | static void ixgbe_check_overtemp_event(struct ixgbe_adapter *adapter, u32 eicr) |
| 2102 | { |
| 2103 | if (!(adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE)) |
| 2104 | return; |
| 2105 | |
| 2106 | switch (adapter->hw.mac.type) { |
| 2107 | case ixgbe_mac_82599EB: |
| 2108 | /* |
| 2109 | * Need to check link state so complete overtemp check |
| 2110 | * on service task |
| 2111 | */ |
| 2112 | if (((eicr & IXGBE_EICR_GPI_SDP0) || (eicr & IXGBE_EICR_LSC)) && |
| 2113 | (!test_bit(__IXGBE_DOWN, &adapter->state))) { |
| 2114 | adapter->interrupt_event = eicr; |
| 2115 | adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_EVENT; |
| 2116 | ixgbe_service_event_schedule(adapter); |
| 2117 | return; |
| 2118 | } |
| 2119 | return; |
| 2120 | case ixgbe_mac_X540: |
| 2121 | if (!(eicr & IXGBE_EICR_TS)) |
| 2122 | return; |
| 2123 | break; |
| 2124 | default: |
| 2125 | return; |
| 2126 | } |
| 2127 | |
| 2128 | e_crit(drv, |
| 2129 | "Network adapter has been stopped because it has over heated. " |
| 2130 | "Restart the computer. If the problem persists, " |
| 2131 | "power off the system and replace the adapter\n"); |
| 2132 | } |
| 2133 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2134 | static void ixgbe_check_sfp_event(struct ixgbe_adapter *adapter, u32 eicr) |
| 2135 | { |
| 2136 | struct ixgbe_hw *hw = &adapter->hw; |
| 2137 | |
Alexander Duyck | 73c4b7c | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2138 | if (eicr & IXGBE_EICR_GPI_SDP2) { |
| 2139 | /* Clear the interrupt */ |
| 2140 | IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP2); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 2141 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 2142 | adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET; |
| 2143 | ixgbe_service_event_schedule(adapter); |
| 2144 | } |
Alexander Duyck | 73c4b7c | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 2145 | } |
| 2146 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2147 | if (eicr & IXGBE_EICR_GPI_SDP1) { |
| 2148 | /* Clear the interrupt */ |
| 2149 | IXGBE_WRITE_REG(hw, IXGBE_EICR, IXGBE_EICR_GPI_SDP1); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 2150 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 2151 | adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG; |
| 2152 | ixgbe_service_event_schedule(adapter); |
| 2153 | } |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2154 | } |
| 2155 | } |
| 2156 | |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 2157 | static void ixgbe_check_lsc(struct ixgbe_adapter *adapter) |
| 2158 | { |
| 2159 | struct ixgbe_hw *hw = &adapter->hw; |
| 2160 | |
| 2161 | adapter->lsc_int++; |
| 2162 | adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE; |
| 2163 | adapter->link_check_timeout = jiffies; |
| 2164 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) { |
| 2165 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_LSC); |
Nelson, Shannon | 8a0717f | 2009-11-12 18:47:11 +0000 | [diff] [blame] | 2166 | IXGBE_WRITE_FLUSH(hw); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 2167 | ixgbe_service_event_schedule(adapter); |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 2168 | } |
| 2169 | } |
| 2170 | |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2171 | static inline void ixgbe_irq_enable_queues(struct ixgbe_adapter *adapter, |
| 2172 | u64 qmask) |
| 2173 | { |
| 2174 | u32 mask; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2175 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2176 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2177 | switch (hw->mac.type) { |
| 2178 | case ixgbe_mac_82598EB: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2179 | mask = (IXGBE_EIMS_RTX_QUEUE & qmask); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2180 | IXGBE_WRITE_REG(hw, IXGBE_EIMS, mask); |
| 2181 | break; |
| 2182 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 2183 | case ixgbe_mac_X540: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2184 | mask = (qmask & 0xFFFFFFFF); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2185 | if (mask) |
| 2186 | IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(0), mask); |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2187 | mask = (qmask >> 32); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2188 | if (mask) |
| 2189 | IXGBE_WRITE_REG(hw, IXGBE_EIMS_EX(1), mask); |
| 2190 | break; |
| 2191 | default: |
| 2192 | break; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2193 | } |
| 2194 | /* skip the flush */ |
| 2195 | } |
| 2196 | |
| 2197 | static inline void ixgbe_irq_disable_queues(struct ixgbe_adapter *adapter, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 2198 | u64 qmask) |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2199 | { |
| 2200 | u32 mask; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2201 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2202 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2203 | switch (hw->mac.type) { |
| 2204 | case ixgbe_mac_82598EB: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2205 | mask = (IXGBE_EIMS_RTX_QUEUE & qmask); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2206 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, mask); |
| 2207 | break; |
| 2208 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 2209 | case ixgbe_mac_X540: |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2210 | mask = (qmask & 0xFFFFFFFF); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2211 | if (mask) |
| 2212 | IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(0), mask); |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2213 | mask = (qmask >> 32); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2214 | if (mask) |
| 2215 | IXGBE_WRITE_REG(hw, IXGBE_EIMC_EX(1), mask); |
| 2216 | break; |
| 2217 | default: |
| 2218 | break; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 2219 | } |
| 2220 | /* skip the flush */ |
| 2221 | } |
| 2222 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2223 | /** |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2224 | * ixgbe_irq_enable - Enable default interrupt generation settings |
| 2225 | * @adapter: board private structure |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2226 | **/ |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2227 | static inline void ixgbe_irq_enable(struct ixgbe_adapter *adapter, bool queues, |
| 2228 | bool flush) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2229 | { |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2230 | u32 mask = (IXGBE_EIMS_ENABLE_MASK & ~IXGBE_EIMS_RTX_QUEUE); |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 2231 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2232 | /* don't reenable LSC while waiting for link */ |
| 2233 | if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE) |
| 2234 | mask &= ~IXGBE_EIMS_LSC; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2235 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2236 | if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2237 | switch (adapter->hw.mac.type) { |
| 2238 | case ixgbe_mac_82599EB: |
| 2239 | mask |= IXGBE_EIMS_GPI_SDP0; |
| 2240 | break; |
| 2241 | case ixgbe_mac_X540: |
| 2242 | mask |= IXGBE_EIMS_TS; |
| 2243 | break; |
| 2244 | default: |
| 2245 | break; |
| 2246 | } |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2247 | if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) |
| 2248 | mask |= IXGBE_EIMS_GPI_SDP1; |
| 2249 | switch (adapter->hw.mac.type) { |
| 2250 | case ixgbe_mac_82599EB: |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2251 | mask |= IXGBE_EIMS_GPI_SDP1; |
| 2252 | mask |= IXGBE_EIMS_GPI_SDP2; |
Don Skidmore | 858bc08 | 2011-08-04 09:28:30 +0000 | [diff] [blame] | 2253 | case ixgbe_mac_X540: |
| 2254 | mask |= IXGBE_EIMS_ECC; |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2255 | mask |= IXGBE_EIMS_MAILBOX; |
| 2256 | break; |
| 2257 | default: |
| 2258 | break; |
| 2259 | } |
| 2260 | if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) && |
| 2261 | !(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT)) |
| 2262 | mask |= IXGBE_EIMS_FLOW_DIR; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2263 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2264 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMS, mask); |
| 2265 | if (queues) |
| 2266 | ixgbe_irq_enable_queues(adapter, ~0); |
| 2267 | if (flush) |
| 2268 | IXGBE_WRITE_FLUSH(&adapter->hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2269 | } |
| 2270 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2271 | static irqreturn_t ixgbe_msix_other(int irq, void *data) |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2272 | { |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2273 | struct ixgbe_adapter *adapter = data; |
| 2274 | struct ixgbe_hw *hw = &adapter->hw; |
| 2275 | u32 eicr; |
Alexander Duyck | 91281fd | 2009-06-04 16:00:27 +0000 | [diff] [blame] | 2276 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2277 | /* |
| 2278 | * Workaround for Silicon errata. Use clear-by-write instead |
| 2279 | * of clear-by-read. Reading with EICS will return the |
| 2280 | * interrupt causes without clearing, which later be done |
| 2281 | * with the write to EICR. |
| 2282 | */ |
| 2283 | eicr = IXGBE_READ_REG(hw, IXGBE_EICS); |
| 2284 | IXGBE_WRITE_REG(hw, IXGBE_EICR, eicr); |
Alexander Duyck | 91281fd | 2009-06-04 16:00:27 +0000 | [diff] [blame] | 2285 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2286 | if (eicr & IXGBE_EICR_LSC) |
| 2287 | ixgbe_check_lsc(adapter); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2288 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2289 | if (eicr & IXGBE_EICR_MAILBOX) |
| 2290 | ixgbe_msg_task(adapter); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2291 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2292 | switch (hw->mac.type) { |
| 2293 | case ixgbe_mac_82599EB: |
| 2294 | case ixgbe_mac_X540: |
| 2295 | if (eicr & IXGBE_EICR_ECC) |
| 2296 | e_info(link, "Received unrecoverable ECC Err, please " |
| 2297 | "reboot\n"); |
| 2298 | /* Handle Flow Director Full threshold interrupt */ |
| 2299 | if (eicr & IXGBE_EICR_FLOW_DIR) { |
| 2300 | int reinit_count = 0; |
| 2301 | int i; |
| 2302 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 2303 | struct ixgbe_ring *ring = adapter->tx_ring[i]; |
| 2304 | if (test_and_clear_bit(__IXGBE_TX_FDIR_INIT_DONE, |
| 2305 | &ring->state)) |
| 2306 | reinit_count++; |
| 2307 | } |
| 2308 | if (reinit_count) { |
| 2309 | /* no more flow director interrupts until after init */ |
| 2310 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_EIMC_FLOW_DIR); |
| 2311 | adapter->flags2 |= IXGBE_FLAG2_FDIR_REQUIRES_REINIT; |
| 2312 | ixgbe_service_event_schedule(adapter); |
| 2313 | } |
| 2314 | } |
| 2315 | ixgbe_check_sfp_event(adapter, eicr); |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2316 | ixgbe_check_overtemp_event(adapter, eicr); |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2317 | break; |
| 2318 | default: |
| 2319 | break; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2320 | } |
| 2321 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2322 | ixgbe_check_fan_failure(adapter, eicr); |
Jacob E Keller | 681ae1a | 2012-05-01 05:24:41 +0000 | [diff] [blame] | 2323 | #ifdef CONFIG_IXGBE_PTP |
| 2324 | ixgbe_ptp_check_pps_event(adapter, eicr); |
| 2325 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2326 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2327 | /* re-enable the original interrupt state, no lsc, no queues */ |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 2328 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2329 | ixgbe_irq_enable(adapter, false, false); |
Alexander Duyck | 91281fd | 2009-06-04 16:00:27 +0000 | [diff] [blame] | 2330 | |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2331 | return IRQ_HANDLED; |
| 2332 | } |
| 2333 | |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2334 | static irqreturn_t ixgbe_msix_clean_rings(int irq, void *data) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2335 | { |
| 2336 | struct ixgbe_q_vector *q_vector = data; |
| 2337 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2338 | /* EIAM disabled interrupts (on this vector) for us */ |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2339 | |
| 2340 | if (q_vector->rx.ring || q_vector->tx.ring) |
| 2341 | napi_schedule(&q_vector->napi); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2342 | |
| 2343 | return IRQ_HANDLED; |
Alexander Duyck | 91281fd | 2009-06-04 16:00:27 +0000 | [diff] [blame] | 2344 | } |
| 2345 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2346 | /** |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2347 | * ixgbe_poll - NAPI Rx polling callback |
| 2348 | * @napi: structure for representing this polling device |
| 2349 | * @budget: how many packets driver is allowed to clean |
| 2350 | * |
| 2351 | * This function is used for legacy and MSI, NAPI mode |
| 2352 | **/ |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 2353 | int ixgbe_poll(struct napi_struct *napi, int budget) |
Alexander Duyck | eb01b97 | 2012-02-08 07:51:27 +0000 | [diff] [blame] | 2354 | { |
| 2355 | struct ixgbe_q_vector *q_vector = |
| 2356 | container_of(napi, struct ixgbe_q_vector, napi); |
| 2357 | struct ixgbe_adapter *adapter = q_vector->adapter; |
| 2358 | struct ixgbe_ring *ring; |
| 2359 | int per_ring_budget; |
| 2360 | bool clean_complete = true; |
| 2361 | |
| 2362 | #ifdef CONFIG_IXGBE_DCA |
| 2363 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) |
| 2364 | ixgbe_update_dca(q_vector); |
| 2365 | #endif |
| 2366 | |
| 2367 | ixgbe_for_each_ring(ring, q_vector->tx) |
| 2368 | clean_complete &= !!ixgbe_clean_tx_irq(q_vector, ring); |
| 2369 | |
| 2370 | /* attempt to distribute budget to each queue fairly, but don't allow |
| 2371 | * the budget to go below 1 because we'll exit polling */ |
| 2372 | if (q_vector->rx.count > 1) |
| 2373 | per_ring_budget = max(budget/q_vector->rx.count, 1); |
| 2374 | else |
| 2375 | per_ring_budget = budget; |
| 2376 | |
| 2377 | ixgbe_for_each_ring(ring, q_vector->rx) |
| 2378 | clean_complete &= ixgbe_clean_rx_irq(q_vector, ring, |
| 2379 | per_ring_budget); |
| 2380 | |
| 2381 | /* If all work not completed, return budget and keep polling */ |
| 2382 | if (!clean_complete) |
| 2383 | return budget; |
| 2384 | |
| 2385 | /* all work done, exit the polling mode */ |
| 2386 | napi_complete(napi); |
| 2387 | if (adapter->rx_itr_setting & 1) |
| 2388 | ixgbe_set_itr(q_vector); |
| 2389 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) |
| 2390 | ixgbe_irq_enable_queues(adapter, ((u64)1 << q_vector->v_idx)); |
| 2391 | |
| 2392 | return 0; |
| 2393 | } |
| 2394 | |
| 2395 | /** |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2396 | * ixgbe_request_msix_irqs - Initialize MSI-X interrupts |
| 2397 | * @adapter: board private structure |
| 2398 | * |
| 2399 | * ixgbe_request_msix_irqs allocates MSI-X vectors and requests |
| 2400 | * interrupts from the kernel. |
| 2401 | **/ |
| 2402 | static int ixgbe_request_msix_irqs(struct ixgbe_adapter *adapter) |
| 2403 | { |
| 2404 | struct net_device *netdev = adapter->netdev; |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2405 | int vector, err; |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 2406 | int ri = 0, ti = 0; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2407 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2408 | for (vector = 0; vector < adapter->num_q_vectors; vector++) { |
Alexander Duyck | d0759eb | 2010-11-16 19:27:09 -0800 | [diff] [blame] | 2409 | struct ixgbe_q_vector *q_vector = adapter->q_vector[vector]; |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2410 | struct msix_entry *entry = &adapter->msix_entries[vector]; |
Robert Olsson | cb13fc2 | 2008-11-25 16:43:52 -0800 | [diff] [blame] | 2411 | |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2412 | if (q_vector->tx.ring && q_vector->rx.ring) { |
Don Skidmore | 9fe93af | 2010-12-03 09:33:54 +0000 | [diff] [blame] | 2413 | snprintf(q_vector->name, sizeof(q_vector->name) - 1, |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2414 | "%s-%s-%d", netdev->name, "TxRx", ri++); |
Alexander Duyck | 32aa77a | 2010-11-16 19:26:59 -0800 | [diff] [blame] | 2415 | ti++; |
Alexander Duyck | 4ff7fb1 | 2011-08-31 00:01:11 +0000 | [diff] [blame] | 2416 | } else if (q_vector->rx.ring) { |
| 2417 | snprintf(q_vector->name, sizeof(q_vector->name) - 1, |
| 2418 | "%s-%s-%d", netdev->name, "rx", ri++); |
| 2419 | } else if (q_vector->tx.ring) { |
| 2420 | snprintf(q_vector->name, sizeof(q_vector->name) - 1, |
| 2421 | "%s-%s-%d", netdev->name, "tx", ti++); |
Alexander Duyck | d0759eb | 2010-11-16 19:27:09 -0800 | [diff] [blame] | 2422 | } else { |
| 2423 | /* skip this unused q_vector */ |
| 2424 | continue; |
Alexander Duyck | 32aa77a | 2010-11-16 19:26:59 -0800 | [diff] [blame] | 2425 | } |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2426 | err = request_irq(entry->vector, &ixgbe_msix_clean_rings, 0, |
| 2427 | q_vector->name, q_vector); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2428 | if (err) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2429 | e_err(probe, "request_irq failed for MSIX interrupt " |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 2430 | "Error: %d\n", err); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2431 | goto free_queue_irqs; |
| 2432 | } |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2433 | /* If Flow Director is enabled, set interrupt affinity */ |
| 2434 | if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) { |
| 2435 | /* assign the mask for this irq */ |
| 2436 | irq_set_affinity_hint(entry->vector, |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 2437 | &q_vector->affinity_mask); |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2438 | } |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2439 | } |
| 2440 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2441 | err = request_irq(adapter->msix_entries[vector].vector, |
Alexander Duyck | 2c4af69 | 2011-07-15 07:29:55 +0000 | [diff] [blame] | 2442 | ixgbe_msix_other, 0, netdev->name, adapter); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2443 | if (err) { |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 2444 | e_err(probe, "request_irq for msix_other failed: %d\n", err); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2445 | goto free_queue_irqs; |
| 2446 | } |
| 2447 | |
| 2448 | return 0; |
| 2449 | |
| 2450 | free_queue_irqs: |
Alexander Duyck | 207867f | 2011-07-15 03:05:37 +0000 | [diff] [blame] | 2451 | while (vector) { |
| 2452 | vector--; |
| 2453 | irq_set_affinity_hint(adapter->msix_entries[vector].vector, |
| 2454 | NULL); |
| 2455 | free_irq(adapter->msix_entries[vector].vector, |
| 2456 | adapter->q_vector[vector]); |
| 2457 | } |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2458 | adapter->flags &= ~IXGBE_FLAG_MSIX_ENABLED; |
| 2459 | pci_disable_msix(adapter->pdev); |
| 2460 | kfree(adapter->msix_entries); |
| 2461 | adapter->msix_entries = NULL; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2462 | return err; |
| 2463 | } |
| 2464 | |
Alexey Dobriyan | 79aefa4 | 2008-11-19 14:17:02 -0800 | [diff] [blame] | 2465 | /** |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2466 | * ixgbe_intr - legacy mode Interrupt Handler |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2467 | * @irq: interrupt number |
| 2468 | * @data: pointer to a network interface device structure |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2469 | **/ |
| 2470 | static irqreturn_t ixgbe_intr(int irq, void *data) |
| 2471 | { |
Alexander Duyck | a65151ba2 | 2011-05-27 05:31:32 +0000 | [diff] [blame] | 2472 | struct ixgbe_adapter *adapter = data; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2473 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 7a921c9 | 2009-05-06 10:43:28 +0000 | [diff] [blame] | 2474 | struct ixgbe_q_vector *q_vector = adapter->q_vector[0]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2475 | u32 eicr; |
| 2476 | |
Don Skidmore | 5403750 | 2009-02-21 15:42:56 -0800 | [diff] [blame] | 2477 | /* |
Alexander Duyck | 24ddd96 | 2012-02-10 02:08:32 +0000 | [diff] [blame] | 2478 | * Workaround for silicon errata #26 on 82598. Mask the interrupt |
Don Skidmore | 5403750 | 2009-02-21 15:42:56 -0800 | [diff] [blame] | 2479 | * before the read of EICR. |
| 2480 | */ |
| 2481 | IXGBE_WRITE_REG(hw, IXGBE_EIMC, IXGBE_IRQ_CLEAR_MASK); |
| 2482 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2483 | /* 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] | 2484 | * therefore no explicit interrupt disable is necessary */ |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2485 | eicr = IXGBE_READ_REG(hw, IXGBE_EICR); |
Jesse Brandeburg | f47cf66 | 2008-09-11 19:56:14 -0700 | [diff] [blame] | 2486 | if (!eicr) { |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 2487 | /* |
| 2488 | * shared interrupt alert! |
Jesse Brandeburg | f47cf66 | 2008-09-11 19:56:14 -0700 | [diff] [blame] | 2489 | * make sure interrupts are enabled because the read will |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 2490 | * have disabled interrupts due to EIAM |
| 2491 | * finish the workaround of silicon errata on 82598. Unmask |
| 2492 | * the interrupt that we masked before the EICR read. |
| 2493 | */ |
| 2494 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) |
| 2495 | ixgbe_irq_enable(adapter, true, true); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2496 | return IRQ_NONE; /* Not our interrupt */ |
Jesse Brandeburg | f47cf66 | 2008-09-11 19:56:14 -0700 | [diff] [blame] | 2497 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2498 | |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 2499 | if (eicr & IXGBE_EICR_LSC) |
| 2500 | ixgbe_check_lsc(adapter); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2501 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2502 | switch (hw->mac.type) { |
| 2503 | case ixgbe_mac_82599EB: |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2504 | ixgbe_check_sfp_event(adapter, eicr); |
Don Skidmore | 0ccb974 | 2011-08-04 02:07:48 +0000 | [diff] [blame] | 2505 | /* Fall through */ |
| 2506 | case ixgbe_mac_X540: |
| 2507 | if (eicr & IXGBE_EICR_ECC) |
| 2508 | e_info(link, "Received unrecoverable ECC err, please " |
| 2509 | "reboot\n"); |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 2510 | ixgbe_check_overtemp_event(adapter, eicr); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2511 | break; |
| 2512 | default: |
| 2513 | break; |
| 2514 | } |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2515 | |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 2516 | ixgbe_check_fan_failure(adapter, eicr); |
Jacob E Keller | 681ae1a | 2012-05-01 05:24:41 +0000 | [diff] [blame] | 2517 | #ifdef CONFIG_IXGBE_PTP |
| 2518 | ixgbe_ptp_check_pps_event(adapter, eicr); |
| 2519 | #endif |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 2520 | |
Alexander Duyck | b9f6ed2 | 2012-02-08 07:49:54 +0000 | [diff] [blame] | 2521 | /* would disable interrupts here but EIAM disabled it */ |
| 2522 | napi_schedule(&q_vector->napi); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2523 | |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 2524 | /* |
| 2525 | * re-enable link(maybe) and non-queue interrupts, no flush. |
| 2526 | * ixgbe_poll will re-enable the queue interrupts |
| 2527 | */ |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 2528 | if (!test_bit(__IXGBE_DOWN, &adapter->state)) |
| 2529 | ixgbe_irq_enable(adapter, false, false); |
| 2530 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2531 | return IRQ_HANDLED; |
| 2532 | } |
| 2533 | |
| 2534 | /** |
| 2535 | * ixgbe_request_irq - initialize interrupts |
| 2536 | * @adapter: board private structure |
| 2537 | * |
| 2538 | * Attempts to configure interrupts using the best available |
| 2539 | * capabilities of the hardware and kernel. |
| 2540 | **/ |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2541 | static int ixgbe_request_irq(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2542 | { |
| 2543 | struct net_device *netdev = adapter->netdev; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2544 | int err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2545 | |
Alexander Duyck | 4cc6df2 | 2011-07-15 03:05:51 +0000 | [diff] [blame] | 2546 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2547 | err = ixgbe_request_msix_irqs(adapter); |
Alexander Duyck | 4cc6df2 | 2011-07-15 03:05:51 +0000 | [diff] [blame] | 2548 | else if (adapter->flags & IXGBE_FLAG_MSI_ENABLED) |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 2549 | err = request_irq(adapter->pdev->irq, ixgbe_intr, 0, |
Alexander Duyck | a65151ba2 | 2011-05-27 05:31:32 +0000 | [diff] [blame] | 2550 | netdev->name, adapter); |
Alexander Duyck | 4cc6df2 | 2011-07-15 03:05:51 +0000 | [diff] [blame] | 2551 | else |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 2552 | err = request_irq(adapter->pdev->irq, ixgbe_intr, IRQF_SHARED, |
Alexander Duyck | a65151ba2 | 2011-05-27 05:31:32 +0000 | [diff] [blame] | 2553 | netdev->name, adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2554 | |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 2555 | if (err) |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2556 | e_err(probe, "request_irq failed, Error %d\n", err); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2557 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2558 | return err; |
| 2559 | } |
| 2560 | |
| 2561 | static void ixgbe_free_irq(struct ixgbe_adapter *adapter) |
| 2562 | { |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2563 | int vector; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2564 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2565 | if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) { |
Alexander Duyck | a65151ba2 | 2011-05-27 05:31:32 +0000 | [diff] [blame] | 2566 | free_irq(adapter->pdev->irq, adapter); |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2567 | return; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2568 | } |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2569 | |
| 2570 | for (vector = 0; vector < adapter->num_q_vectors; vector++) { |
| 2571 | struct ixgbe_q_vector *q_vector = adapter->q_vector[vector]; |
| 2572 | struct msix_entry *entry = &adapter->msix_entries[vector]; |
| 2573 | |
| 2574 | /* free only the irqs that were actually requested */ |
| 2575 | if (!q_vector->rx.ring && !q_vector->tx.ring) |
| 2576 | continue; |
| 2577 | |
| 2578 | /* clear the affinity_mask in the IRQ descriptor */ |
| 2579 | irq_set_affinity_hint(entry->vector, NULL); |
| 2580 | |
| 2581 | free_irq(entry->vector, q_vector); |
| 2582 | } |
| 2583 | |
| 2584 | free_irq(adapter->msix_entries[vector++].vector, adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2585 | } |
| 2586 | |
| 2587 | /** |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 2588 | * ixgbe_irq_disable - Mask off interrupt generation on the NIC |
| 2589 | * @adapter: board private structure |
| 2590 | **/ |
| 2591 | static inline void ixgbe_irq_disable(struct ixgbe_adapter *adapter) |
| 2592 | { |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2593 | switch (adapter->hw.mac.type) { |
| 2594 | case ixgbe_mac_82598EB: |
Nelson, Shannon | 835462f | 2009-04-27 22:42:54 +0000 | [diff] [blame] | 2595 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, ~0); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2596 | break; |
| 2597 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 2598 | case ixgbe_mac_X540: |
Nelson, Shannon | 835462f | 2009-04-27 22:42:54 +0000 | [diff] [blame] | 2599 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC, 0xFFFF0000); |
| 2600 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(0), ~0); |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 2601 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EIMC_EX(1), ~0); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2602 | break; |
| 2603 | default: |
| 2604 | break; |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 2605 | } |
| 2606 | IXGBE_WRITE_FLUSH(&adapter->hw); |
| 2607 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) { |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 2608 | int vector; |
| 2609 | |
| 2610 | for (vector = 0; vector < adapter->num_q_vectors; vector++) |
| 2611 | synchronize_irq(adapter->msix_entries[vector].vector); |
| 2612 | |
| 2613 | synchronize_irq(adapter->msix_entries[vector++].vector); |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 2614 | } else { |
| 2615 | synchronize_irq(adapter->pdev->irq); |
| 2616 | } |
| 2617 | } |
| 2618 | |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 2619 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2620 | * ixgbe_configure_msi_and_legacy - Initialize PIN (INTA...) and MSI interrupts |
| 2621 | * |
| 2622 | **/ |
| 2623 | static void ixgbe_configure_msi_and_legacy(struct ixgbe_adapter *adapter) |
| 2624 | { |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2625 | struct ixgbe_q_vector *q_vector = adapter->q_vector[0]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2626 | |
Emil Tantilov | d5bf4f6 | 2011-08-31 00:01:16 +0000 | [diff] [blame] | 2627 | /* rx/tx vector */ |
| 2628 | if (adapter->rx_itr_setting == 1) |
| 2629 | q_vector->itr = IXGBE_20K_ITR; |
| 2630 | else |
| 2631 | q_vector->itr = adapter->rx_itr_setting; |
| 2632 | |
| 2633 | ixgbe_write_eitr(q_vector); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2634 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2635 | ixgbe_set_ivar(adapter, 0, 0, 0); |
| 2636 | ixgbe_set_ivar(adapter, 1, 0, 0); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 2637 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 2638 | e_info(hw, "Legacy interrupt IVAR setup done\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2639 | } |
| 2640 | |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 2641 | /** |
| 2642 | * ixgbe_configure_tx_ring - Configure 8259x Tx ring after Reset |
| 2643 | * @adapter: board private structure |
| 2644 | * @ring: structure containing ring specific data |
| 2645 | * |
| 2646 | * Configure the Tx descriptor ring after a reset. |
| 2647 | **/ |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 2648 | void ixgbe_configure_tx_ring(struct ixgbe_adapter *adapter, |
| 2649 | struct ixgbe_ring *ring) |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 2650 | { |
| 2651 | struct ixgbe_hw *hw = &adapter->hw; |
| 2652 | u64 tdba = ring->dma; |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2653 | int wait_loop = 10; |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 2654 | u32 txdctl = IXGBE_TXDCTL_ENABLE; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 2655 | u8 reg_idx = ring->reg_idx; |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 2656 | |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2657 | /* disable queue to avoid issues while updating state */ |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 2658 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), 0); |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2659 | IXGBE_WRITE_FLUSH(hw); |
| 2660 | |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 2661 | IXGBE_WRITE_REG(hw, IXGBE_TDBAL(reg_idx), |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 2662 | (tdba & DMA_BIT_MASK(32))); |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 2663 | IXGBE_WRITE_REG(hw, IXGBE_TDBAH(reg_idx), (tdba >> 32)); |
| 2664 | IXGBE_WRITE_REG(hw, IXGBE_TDLEN(reg_idx), |
| 2665 | ring->count * sizeof(union ixgbe_adv_tx_desc)); |
| 2666 | IXGBE_WRITE_REG(hw, IXGBE_TDH(reg_idx), 0); |
| 2667 | IXGBE_WRITE_REG(hw, IXGBE_TDT(reg_idx), 0); |
Alexander Duyck | 84ea259 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 2668 | ring->tail = hw->hw_addr + IXGBE_TDT(reg_idx); |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 2669 | |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 2670 | /* |
| 2671 | * set WTHRESH to encourage burst writeback, it should not be set |
| 2672 | * higher than 1 when ITR is 0 as it could cause false TX hangs |
| 2673 | * |
| 2674 | * In order to avoid issues WTHRESH + PTHRESH should always be equal |
| 2675 | * to or less than the number of on chip descriptors, which is |
| 2676 | * currently 40. |
| 2677 | */ |
Alexander Duyck | e954b37 | 2012-02-08 07:49:38 +0000 | [diff] [blame] | 2678 | if (!ring->q_vector || (ring->q_vector->itr < 8)) |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 2679 | txdctl |= (1 << 16); /* WTHRESH = 1 */ |
| 2680 | else |
| 2681 | txdctl |= (8 << 16); /* WTHRESH = 8 */ |
| 2682 | |
Alexander Duyck | e954b37 | 2012-02-08 07:49:38 +0000 | [diff] [blame] | 2683 | /* |
| 2684 | * Setting PTHRESH to 32 both improves performance |
| 2685 | * and avoids a TX hang with DFP enabled |
| 2686 | */ |
Alexander Duyck | b88c6de | 2011-07-15 03:06:12 +0000 | [diff] [blame] | 2687 | txdctl |= (1 << 8) | /* HTHRESH = 1 */ |
| 2688 | 32; /* PTHRESH = 32 */ |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2689 | |
| 2690 | /* reinitialize flowdirector state */ |
Alexander Duyck | ee9e0f0 | 2010-11-16 19:27:01 -0800 | [diff] [blame] | 2691 | if ((adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) && |
| 2692 | adapter->atr_sample_rate) { |
| 2693 | ring->atr_sample_rate = adapter->atr_sample_rate; |
| 2694 | ring->atr_count = 0; |
| 2695 | set_bit(__IXGBE_TX_FDIR_INIT_DONE, &ring->state); |
| 2696 | } else { |
| 2697 | ring->atr_sample_rate = 0; |
| 2698 | } |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2699 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 2700 | clear_bit(__IXGBE_HANG_CHECK_ARMED, &ring->state); |
| 2701 | |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2702 | /* enable queue */ |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2703 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), txdctl); |
| 2704 | |
| 2705 | /* TXDCTL.EN will return 0 on 82598 if link is down, so skip it */ |
| 2706 | if (hw->mac.type == ixgbe_mac_82598EB && |
| 2707 | !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP)) |
| 2708 | return; |
| 2709 | |
| 2710 | /* poll to verify queue is enabled */ |
| 2711 | do { |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 2712 | usleep_range(1000, 2000); |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2713 | txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(reg_idx)); |
| 2714 | } while (--wait_loop && !(txdctl & IXGBE_TXDCTL_ENABLE)); |
| 2715 | if (!wait_loop) |
| 2716 | e_err(drv, "Could not enable Tx Queue %d\n", reg_idx); |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 2717 | } |
| 2718 | |
Alexander Duyck | 120ff94 | 2010-08-19 13:34:50 +0000 | [diff] [blame] | 2719 | static void ixgbe_setup_mtqc(struct ixgbe_adapter *adapter) |
| 2720 | { |
| 2721 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2722 | u32 rttdcs, mtqc; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 2723 | u8 tcs = netdev_get_num_tc(adapter->netdev); |
Alexander Duyck | 120ff94 | 2010-08-19 13:34:50 +0000 | [diff] [blame] | 2724 | |
| 2725 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 2726 | return; |
| 2727 | |
| 2728 | /* disable the arbiter while setting MTQC */ |
| 2729 | rttdcs = IXGBE_READ_REG(hw, IXGBE_RTTDCS); |
| 2730 | rttdcs |= IXGBE_RTTDCS_ARBDIS; |
| 2731 | IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs); |
| 2732 | |
| 2733 | /* set transmit pool layout */ |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2734 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 2735 | mtqc = IXGBE_MTQC_VT_ENA; |
| 2736 | if (tcs > 4) |
| 2737 | mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ; |
| 2738 | else if (tcs > 1) |
| 2739 | mtqc |= IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ; |
| 2740 | else if (adapter->ring_feature[RING_F_RSS].indices == 4) |
| 2741 | mtqc |= IXGBE_MTQC_32VF; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 2742 | else |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2743 | mtqc |= IXGBE_MTQC_64VF; |
| 2744 | } else { |
| 2745 | if (tcs > 4) |
| 2746 | mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ; |
| 2747 | else if (tcs > 1) |
| 2748 | mtqc = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_4TC_4TQ; |
| 2749 | else |
| 2750 | mtqc = IXGBE_MTQC_64Q_1PB; |
| 2751 | } |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 2752 | |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2753 | IXGBE_WRITE_REG(hw, IXGBE_MTQC, mtqc); |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 2754 | |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2755 | /* Enable Security TX Buffer IFG for multiple pb */ |
| 2756 | if (tcs) { |
| 2757 | u32 sectx = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG); |
| 2758 | sectx |= IXGBE_SECTX_DCB; |
| 2759 | IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, sectx); |
Alexander Duyck | 120ff94 | 2010-08-19 13:34:50 +0000 | [diff] [blame] | 2760 | } |
| 2761 | |
| 2762 | /* re-enable the arbiter */ |
| 2763 | rttdcs &= ~IXGBE_RTTDCS_ARBDIS; |
| 2764 | IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, rttdcs); |
| 2765 | } |
| 2766 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2767 | /** |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 2768 | * ixgbe_configure_tx - Configure 8259x Transmit Unit after Reset |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2769 | * @adapter: board private structure |
| 2770 | * |
| 2771 | * Configure the Tx unit of the MAC after a reset. |
| 2772 | **/ |
| 2773 | static void ixgbe_configure_tx(struct ixgbe_adapter *adapter) |
| 2774 | { |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2775 | struct ixgbe_hw *hw = &adapter->hw; |
| 2776 | u32 dmatxctl; |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 2777 | u32 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2778 | |
Alexander Duyck | 2f1860b | 2010-08-19 13:39:43 +0000 | [diff] [blame] | 2779 | ixgbe_setup_mtqc(adapter); |
| 2780 | |
| 2781 | if (hw->mac.type != ixgbe_mac_82598EB) { |
| 2782 | /* DMATXCTL.EN must be before Tx queues are enabled */ |
| 2783 | dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL); |
| 2784 | dmatxctl |= IXGBE_DMATXCTL_TE; |
| 2785 | IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl); |
| 2786 | } |
| 2787 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2788 | /* Setup the HW Tx Head and Tail descriptor pointers */ |
Alexander Duyck | 43e69bf | 2010-08-19 13:35:12 +0000 | [diff] [blame] | 2789 | for (i = 0; i < adapter->num_tx_queues; i++) |
| 2790 | ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2791 | } |
| 2792 | |
Alexander Duyck | 3ebe8fd | 2012-04-25 04:36:38 +0000 | [diff] [blame] | 2793 | static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter, |
| 2794 | struct ixgbe_ring *ring) |
| 2795 | { |
| 2796 | struct ixgbe_hw *hw = &adapter->hw; |
| 2797 | u8 reg_idx = ring->reg_idx; |
| 2798 | u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx)); |
| 2799 | |
| 2800 | srrctl |= IXGBE_SRRCTL_DROP_EN; |
| 2801 | |
| 2802 | IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl); |
| 2803 | } |
| 2804 | |
| 2805 | static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter, |
| 2806 | struct ixgbe_ring *ring) |
| 2807 | { |
| 2808 | struct ixgbe_hw *hw = &adapter->hw; |
| 2809 | u8 reg_idx = ring->reg_idx; |
| 2810 | u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx)); |
| 2811 | |
| 2812 | srrctl &= ~IXGBE_SRRCTL_DROP_EN; |
| 2813 | |
| 2814 | IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl); |
| 2815 | } |
| 2816 | |
| 2817 | #ifdef CONFIG_IXGBE_DCB |
| 2818 | void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter) |
| 2819 | #else |
| 2820 | static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter) |
| 2821 | #endif |
| 2822 | { |
| 2823 | int i; |
| 2824 | bool pfc_en = adapter->dcb_cfg.pfc_mode_enable; |
| 2825 | |
| 2826 | if (adapter->ixgbe_ieee_pfc) |
| 2827 | pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en); |
| 2828 | |
| 2829 | /* |
| 2830 | * We should set the drop enable bit if: |
| 2831 | * SR-IOV is enabled |
| 2832 | * or |
| 2833 | * Number of Rx queues > 1 and flow control is disabled |
| 2834 | * |
| 2835 | * This allows us to avoid head of line blocking for security |
| 2836 | * and performance reasons. |
| 2837 | */ |
| 2838 | if (adapter->num_vfs || (adapter->num_rx_queues > 1 && |
| 2839 | !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) { |
| 2840 | for (i = 0; i < adapter->num_rx_queues; i++) |
| 2841 | ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]); |
| 2842 | } else { |
| 2843 | for (i = 0; i < adapter->num_rx_queues; i++) |
| 2844 | ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]); |
| 2845 | } |
| 2846 | } |
| 2847 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2848 | #define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2 |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 2849 | |
Yi Zou | a6616b4 | 2009-08-06 13:05:23 +0000 | [diff] [blame] | 2850 | static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 2851 | struct ixgbe_ring *rx_ring) |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 2852 | { |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 2853 | struct ixgbe_hw *hw = &adapter->hw; |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 2854 | u32 srrctl; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 2855 | u8 reg_idx = rx_ring->reg_idx; |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 2856 | |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 2857 | if (hw->mac.type == ixgbe_mac_82598EB) { |
| 2858 | u16 mask = adapter->ring_feature[RING_F_RSS].mask; |
| 2859 | |
| 2860 | /* |
| 2861 | * if VMDq is not active we must program one srrctl register |
| 2862 | * per RSS queue since we have enabled RDRXCTL.MVMEN |
| 2863 | */ |
| 2864 | reg_idx &= mask; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 2865 | } |
| 2866 | |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 2867 | /* configure header buffer length, needed for RSC */ |
| 2868 | srrctl = IXGBE_RX_HDR_SIZE << IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT; |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 2869 | |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 2870 | /* configure the packet buffer length */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2871 | #if PAGE_SIZE > IXGBE_MAX_RXBUFFER |
| 2872 | srrctl |= IXGBE_MAX_RXBUFFER >> IXGBE_SRRCTL_BSIZEPKT_SHIFT; |
Alexander Duyck | afafd5b | 2009-05-07 10:38:56 +0000 | [diff] [blame] | 2873 | #else |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2874 | srrctl |= ixgbe_rx_bufsz(rx_ring) >> IXGBE_SRRCTL_BSIZEPKT_SHIFT; |
Alexander Duyck | afafd5b | 2009-05-07 10:38:56 +0000 | [diff] [blame] | 2875 | #endif |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 2876 | |
| 2877 | /* configure descriptor type */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2878 | srrctl |= IXGBE_SRRCTL_DESCTYPE_ADV_ONEBUF; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 2879 | |
Alexander Duyck | 45e9baa | 2012-05-05 05:30:59 +0000 | [diff] [blame] | 2880 | IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl); |
Jesse Brandeburg | cc41ac7 | 2008-08-26 04:27:27 -0700 | [diff] [blame] | 2881 | } |
| 2882 | |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 2883 | static void ixgbe_setup_mrqc(struct ixgbe_adapter *adapter) |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 2884 | { |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 2885 | struct ixgbe_hw *hw = &adapter->hw; |
| 2886 | static const u32 seed[10] = { 0xE291D73D, 0x1805EC6C, 0x2A94B30D, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 2887 | 0xA54F2BEC, 0xEA49AF7C, 0xE214AD3D, 0xB855AABE, |
| 2888 | 0x6A3E67EA, 0x14364D17, 0x3BED200D}; |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 2889 | u32 mrqc = 0, reta = 0; |
| 2890 | u32 rxcsum; |
| 2891 | int i, j; |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2892 | u16 rss_i = adapter->ring_feature[RING_F_RSS].indices; |
John Fastabend | 86b4db3 | 2011-04-26 07:26:19 +0000 | [diff] [blame] | 2893 | |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2894 | /* |
| 2895 | * Program table for at least 2 queues w/ SR-IOV so that VFs can |
| 2896 | * make full use of any rings they may have. We will use the |
| 2897 | * PSRTYPE register to control how many rings we use within the PF. |
| 2898 | */ |
| 2899 | if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && (rss_i < 2)) |
| 2900 | rss_i = 2; |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 2901 | |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 2902 | /* Fill out hash function seeds */ |
| 2903 | for (i = 0; i < 10; i++) |
| 2904 | IXGBE_WRITE_REG(hw, IXGBE_RSSRK(i), seed[i]); |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 2905 | |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 2906 | /* Fill out redirection table */ |
| 2907 | for (i = 0, j = 0; i < 128; i++, j++) { |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2908 | if (j == rss_i) |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 2909 | j = 0; |
| 2910 | /* reta = 4-byte sliding window of |
| 2911 | * 0x00..(indices-1)(indices-1)00..etc. */ |
| 2912 | reta = (reta << 8) | (j * 0x11); |
| 2913 | if ((i & 3) == 3) |
| 2914 | IXGBE_WRITE_REG(hw, IXGBE_RETA(i >> 2), reta); |
| 2915 | } |
| 2916 | |
| 2917 | /* Disable indicating checksum in descriptor, enables RSS hash */ |
| 2918 | rxcsum = IXGBE_READ_REG(hw, IXGBE_RXCSUM); |
| 2919 | rxcsum |= IXGBE_RXCSUM_PCSD; |
| 2920 | IXGBE_WRITE_REG(hw, IXGBE_RXCSUM, rxcsum); |
| 2921 | |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2922 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) { |
Alexander Duyck | fbe7ca7 | 2012-07-14 05:42:36 +0000 | [diff] [blame] | 2923 | if (adapter->ring_feature[RING_F_RSS].mask) |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2924 | mrqc = IXGBE_MRQC_RSSEN; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 2925 | } else { |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2926 | u8 tcs = netdev_get_num_tc(adapter->netdev); |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 2927 | |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2928 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 2929 | if (tcs > 4) |
| 2930 | mrqc = IXGBE_MRQC_VMDQRT8TCEN; /* 8 TCs */ |
| 2931 | else if (tcs > 1) |
| 2932 | mrqc = IXGBE_MRQC_VMDQRT4TCEN; /* 4 TCs */ |
| 2933 | else if (adapter->ring_feature[RING_F_RSS].indices == 4) |
| 2934 | mrqc = IXGBE_MRQC_VMDQRSS32EN; |
| 2935 | else |
| 2936 | mrqc = IXGBE_MRQC_VMDQRSS64EN; |
| 2937 | } else { |
| 2938 | if (tcs > 4) |
| 2939 | mrqc = IXGBE_MRQC_RTRSS8TCEN; |
| 2940 | else if (tcs > 1) |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 2941 | mrqc = IXGBE_MRQC_RTRSS4TCEN; |
| 2942 | else |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2943 | mrqc = IXGBE_MRQC_RSSEN; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 2944 | } |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 2945 | } |
| 2946 | |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 2947 | /* Perform hash on these packet types */ |
Alexander Duyck | 671c0ad | 2012-05-18 06:34:02 +0000 | [diff] [blame] | 2948 | mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4 | |
| 2949 | IXGBE_MRQC_RSS_FIELD_IPV4_TCP | |
| 2950 | IXGBE_MRQC_RSS_FIELD_IPV6 | |
| 2951 | IXGBE_MRQC_RSS_FIELD_IPV6_TCP; |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 2952 | |
Alexander Duyck | ef6afc0 | 2012-02-08 07:51:53 +0000 | [diff] [blame] | 2953 | if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV4_UDP) |
| 2954 | mrqc |= IXGBE_MRQC_RSS_FIELD_IPV4_UDP; |
| 2955 | if (adapter->flags2 & IXGBE_FLAG2_RSS_FIELD_IPV6_UDP) |
| 2956 | mrqc |= IXGBE_MRQC_RSS_FIELD_IPV6_UDP; |
| 2957 | |
Alexander Duyck | 05abb12 | 2010-08-19 13:35:41 +0000 | [diff] [blame] | 2958 | IXGBE_WRITE_REG(hw, IXGBE_MRQC, mrqc); |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 2959 | } |
| 2960 | |
Mallikarjuna R Chilakala | 177db6f | 2008-06-18 15:32:19 -0700 | [diff] [blame] | 2961 | /** |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2962 | * ixgbe_configure_rscctl - enable RSC for the indicated ring |
| 2963 | * @adapter: address of board private structure |
| 2964 | * @index: index of ring to set |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2965 | **/ |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 2966 | static void ixgbe_configure_rscctl(struct ixgbe_adapter *adapter, |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 2967 | struct ixgbe_ring *ring) |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2968 | { |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2969 | struct ixgbe_hw *hw = &adapter->hw; |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2970 | u32 rscctrl; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 2971 | u8 reg_idx = ring->reg_idx; |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2972 | |
Alexander Duyck | 7d637bc | 2010-11-16 19:26:56 -0800 | [diff] [blame] | 2973 | if (!ring_is_rsc_enabled(ring)) |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 2974 | return; |
| 2975 | |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 2976 | rscctrl = IXGBE_READ_REG(hw, IXGBE_RSCCTL(reg_idx)); |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2977 | rscctrl |= IXGBE_RSCCTL_RSCEN; |
| 2978 | /* |
| 2979 | * we must limit the number of descriptors so that the |
| 2980 | * total size of max desc * buf_len is not greater |
Alexander Duyck | 642c680 | 2011-11-10 09:09:17 +0000 | [diff] [blame] | 2981 | * than 65536 |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2982 | */ |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2983 | #if (PAGE_SIZE <= 8192) |
| 2984 | rscctrl |= IXGBE_RSCCTL_MAXDESC_16; |
| 2985 | #elif (PAGE_SIZE <= 16384) |
| 2986 | rscctrl |= IXGBE_RSCCTL_MAXDESC_8; |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2987 | #else |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 2988 | rscctrl |= IXGBE_RSCCTL_MAXDESC_4; |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2989 | #endif |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 2990 | IXGBE_WRITE_REG(hw, IXGBE_RSCCTL(reg_idx), rscctrl); |
Nelson, Shannon | bb5a9ad | 2009-09-18 09:46:27 +0000 | [diff] [blame] | 2991 | } |
| 2992 | |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 2993 | #define IXGBE_MAX_RX_DESC_POLL 10 |
| 2994 | static void ixgbe_rx_desc_queue_enable(struct ixgbe_adapter *adapter, |
| 2995 | struct ixgbe_ring *ring) |
| 2996 | { |
| 2997 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 2998 | int wait_loop = IXGBE_MAX_RX_DESC_POLL; |
| 2999 | u32 rxdctl; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 3000 | u8 reg_idx = ring->reg_idx; |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3001 | |
| 3002 | /* RXDCTL.EN will return 0 on 82598 if link is down, so skip it */ |
| 3003 | if (hw->mac.type == ixgbe_mac_82598EB && |
| 3004 | !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP)) |
| 3005 | return; |
| 3006 | |
| 3007 | do { |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 3008 | usleep_range(1000, 2000); |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3009 | rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx)); |
| 3010 | } while (--wait_loop && !(rxdctl & IXGBE_RXDCTL_ENABLE)); |
| 3011 | |
| 3012 | if (!wait_loop) { |
| 3013 | e_err(drv, "RXDCTL.ENABLE on Rx queue %d not set within " |
| 3014 | "the polling period\n", reg_idx); |
| 3015 | } |
| 3016 | } |
| 3017 | |
Yi Zou | 2d39d57 | 2011-01-06 14:29:56 +0000 | [diff] [blame] | 3018 | void ixgbe_disable_rx_queue(struct ixgbe_adapter *adapter, |
| 3019 | struct ixgbe_ring *ring) |
| 3020 | { |
| 3021 | struct ixgbe_hw *hw = &adapter->hw; |
| 3022 | int wait_loop = IXGBE_MAX_RX_DESC_POLL; |
| 3023 | u32 rxdctl; |
| 3024 | u8 reg_idx = ring->reg_idx; |
| 3025 | |
| 3026 | rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx)); |
| 3027 | rxdctl &= ~IXGBE_RXDCTL_ENABLE; |
| 3028 | |
| 3029 | /* write value back with RXDCTL.ENABLE bit cleared */ |
| 3030 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl); |
| 3031 | |
| 3032 | if (hw->mac.type == ixgbe_mac_82598EB && |
| 3033 | !(IXGBE_READ_REG(hw, IXGBE_LINKS) & IXGBE_LINKS_UP)) |
| 3034 | return; |
| 3035 | |
| 3036 | /* the hardware may take up to 100us to really disable the rx queue */ |
| 3037 | do { |
| 3038 | udelay(10); |
| 3039 | rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx)); |
| 3040 | } while (--wait_loop && (rxdctl & IXGBE_RXDCTL_ENABLE)); |
| 3041 | |
| 3042 | if (!wait_loop) { |
| 3043 | e_err(drv, "RXDCTL.ENABLE on Rx queue %d not cleared within " |
| 3044 | "the polling period\n", reg_idx); |
| 3045 | } |
| 3046 | } |
| 3047 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 3048 | void ixgbe_configure_rx_ring(struct ixgbe_adapter *adapter, |
| 3049 | struct ixgbe_ring *ring) |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3050 | { |
| 3051 | struct ixgbe_hw *hw = &adapter->hw; |
| 3052 | u64 rdba = ring->dma; |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3053 | u32 rxdctl; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 3054 | u8 reg_idx = ring->reg_idx; |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3055 | |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3056 | /* disable queue to avoid issues while updating state */ |
| 3057 | rxdctl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(reg_idx)); |
Yi Zou | 2d39d57 | 2011-01-06 14:29:56 +0000 | [diff] [blame] | 3058 | ixgbe_disable_rx_queue(adapter, ring); |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3059 | |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3060 | IXGBE_WRITE_REG(hw, IXGBE_RDBAL(reg_idx), (rdba & DMA_BIT_MASK(32))); |
| 3061 | IXGBE_WRITE_REG(hw, IXGBE_RDBAH(reg_idx), (rdba >> 32)); |
| 3062 | IXGBE_WRITE_REG(hw, IXGBE_RDLEN(reg_idx), |
| 3063 | ring->count * sizeof(union ixgbe_adv_rx_desc)); |
| 3064 | IXGBE_WRITE_REG(hw, IXGBE_RDH(reg_idx), 0); |
| 3065 | IXGBE_WRITE_REG(hw, IXGBE_RDT(reg_idx), 0); |
Alexander Duyck | 84ea259 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 3066 | ring->tail = hw->hw_addr + IXGBE_RDT(reg_idx); |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3067 | |
| 3068 | ixgbe_configure_srrctl(adapter, ring); |
| 3069 | ixgbe_configure_rscctl(adapter, ring); |
| 3070 | |
Greg Rose | e9f9807 | 2011-01-26 01:06:07 +0000 | [diff] [blame] | 3071 | /* If operating in IOV mode set RLPML for X540 */ |
| 3072 | if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && |
| 3073 | hw->mac.type == ixgbe_mac_X540) { |
| 3074 | rxdctl &= ~IXGBE_RXDCTL_RLPMLMASK; |
| 3075 | rxdctl |= ((ring->netdev->mtu + ETH_HLEN + |
| 3076 | ETH_FCS_LEN + VLAN_HLEN) | IXGBE_RXDCTL_RLPML_EN); |
| 3077 | } |
| 3078 | |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3079 | if (hw->mac.type == ixgbe_mac_82598EB) { |
| 3080 | /* |
| 3081 | * enable cache line friendly hardware writes: |
| 3082 | * PTHRESH=32 descriptors (half the internal cache), |
| 3083 | * this also removes ugly rx_no_buffer_count increment |
| 3084 | * HTHRESH=4 descriptors (to minimize latency on fetch) |
| 3085 | * WTHRESH=8 burst writeback up to two cache lines |
| 3086 | */ |
| 3087 | rxdctl &= ~0x3FFFFF; |
| 3088 | rxdctl |= 0x080420; |
| 3089 | } |
| 3090 | |
| 3091 | /* enable receive descriptor ring */ |
| 3092 | rxdctl |= IXGBE_RXDCTL_ENABLE; |
| 3093 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(reg_idx), rxdctl); |
| 3094 | |
| 3095 | ixgbe_rx_desc_queue_enable(adapter, ring); |
Alexander Duyck | 7d4987d | 2011-05-27 05:31:37 +0000 | [diff] [blame] | 3096 | ixgbe_alloc_rx_buffers(ring, ixgbe_desc_unused(ring)); |
Alexander Duyck | acd3717 | 2010-08-19 13:36:05 +0000 | [diff] [blame] | 3097 | } |
| 3098 | |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3099 | static void ixgbe_setup_psrtype(struct ixgbe_adapter *adapter) |
| 3100 | { |
| 3101 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | fbe7ca7 | 2012-07-14 05:42:36 +0000 | [diff] [blame] | 3102 | int rss_i = adapter->ring_feature[RING_F_RSS].indices; |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3103 | int p; |
| 3104 | |
| 3105 | /* PSRTYPE must be initialized in non 82598 adapters */ |
| 3106 | u32 psrtype = IXGBE_PSRTYPE_TCPHDR | |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 3107 | IXGBE_PSRTYPE_UDPHDR | |
| 3108 | IXGBE_PSRTYPE_IPV4HDR | |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3109 | IXGBE_PSRTYPE_L2HDR | |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 3110 | IXGBE_PSRTYPE_IPV6HDR; |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3111 | |
| 3112 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3113 | return; |
| 3114 | |
Alexander Duyck | fbe7ca7 | 2012-07-14 05:42:36 +0000 | [diff] [blame] | 3115 | if (rss_i > 3) |
| 3116 | psrtype |= 2 << 29; |
| 3117 | else if (rss_i > 1) |
| 3118 | psrtype |= 1 << 29; |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3119 | |
| 3120 | for (p = 0; p < adapter->num_rx_pools; p++) |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3121 | IXGBE_WRITE_REG(hw, IXGBE_PSRTYPE(VMDQ_P(p)), |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3122 | psrtype); |
| 3123 | } |
| 3124 | |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3125 | static void ixgbe_configure_virtualization(struct ixgbe_adapter *adapter) |
| 3126 | { |
| 3127 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3128 | u32 reg_offset, vf_shift; |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3129 | u32 gcr_ext, vmdctl; |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 3130 | int i; |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3131 | |
| 3132 | if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)) |
| 3133 | return; |
| 3134 | |
| 3135 | vmdctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL); |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3136 | vmdctl |= IXGBE_VMD_CTL_VMDQ_EN; |
| 3137 | vmdctl &= ~IXGBE_VT_CTL_POOL_MASK; |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3138 | vmdctl |= VMDQ_P(0) << IXGBE_VT_CTL_POOL_SHIFT; |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3139 | vmdctl |= IXGBE_VT_CTL_REPLEN; |
| 3140 | IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vmdctl); |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3141 | |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3142 | vf_shift = VMDQ_P(0) % 32; |
| 3143 | reg_offset = (VMDQ_P(0) >= 32) ? 1 : 0; |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3144 | |
| 3145 | /* Enable only the PF's pool for Tx/Rx */ |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3146 | IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), (~0) << vf_shift); |
| 3147 | IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset ^ 1), reg_offset - 1); |
| 3148 | IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), (~0) << vf_shift); |
| 3149 | IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset ^ 1), reg_offset - 1); |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3150 | IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN); |
| 3151 | |
| 3152 | /* 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] | 3153 | hw->mac.ops.set_vmdq(hw, 0, VMDQ_P(0)); |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3154 | |
| 3155 | /* |
| 3156 | * Set up VF register offsets for selected VT Mode, |
| 3157 | * i.e. 32 or 64 VFs for SR-IOV |
| 3158 | */ |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 3159 | switch (adapter->ring_feature[RING_F_VMDQ].mask) { |
| 3160 | case IXGBE_82599_VMDQ_8Q_MASK: |
| 3161 | gcr_ext = IXGBE_GCR_EXT_VT_MODE_16; |
| 3162 | break; |
| 3163 | case IXGBE_82599_VMDQ_4Q_MASK: |
| 3164 | gcr_ext = IXGBE_GCR_EXT_VT_MODE_32; |
| 3165 | break; |
| 3166 | default: |
| 3167 | gcr_ext = IXGBE_GCR_EXT_VT_MODE_64; |
| 3168 | break; |
| 3169 | } |
| 3170 | |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3171 | IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext); |
| 3172 | |
| 3173 | /* enable Tx loopback for VF/PF communication */ |
| 3174 | IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN); |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3175 | |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 3176 | /* Enable MAC Anti-Spoofing */ |
Alexander Duyck | 435b19f | 2012-05-18 06:34:08 +0000 | [diff] [blame] | 3177 | hw->mac.ops.set_mac_anti_spoofing(hw, (adapter->num_vfs != 0), |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 3178 | adapter->num_vfs); |
Greg Rose | de4c7f6 | 2011-09-29 05:57:33 +0000 | [diff] [blame] | 3179 | /* For VFs that have spoof checking turned off */ |
| 3180 | for (i = 0; i < adapter->num_vfs; i++) { |
| 3181 | if (!adapter->vfinfo[i].spoofchk_enabled) |
| 3182 | ixgbe_ndo_set_vf_spoofchk(adapter->netdev, i, false); |
| 3183 | } |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3184 | } |
| 3185 | |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3186 | static void ixgbe_set_rx_buffer_len(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3187 | { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3188 | struct ixgbe_hw *hw = &adapter->hw; |
| 3189 | struct net_device *netdev = adapter->netdev; |
| 3190 | int max_frame = netdev->mtu + ETH_HLEN + ETH_FCS_LEN; |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3191 | struct ixgbe_ring *rx_ring; |
| 3192 | int i; |
| 3193 | u32 mhadd, hlreg0; |
Alexander Duyck | 4865452 | 2010-08-19 13:36:27 +0000 | [diff] [blame] | 3194 | |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3195 | #ifdef IXGBE_FCOE |
| 3196 | /* adjust max frame to be able to do baby jumbo for FCoE */ |
| 3197 | if ((adapter->flags & IXGBE_FLAG_FCOE_ENABLED) && |
| 3198 | (max_frame < IXGBE_FCOE_JUMBO_FRAME_SIZE)) |
| 3199 | max_frame = IXGBE_FCOE_JUMBO_FRAME_SIZE; |
| 3200 | |
| 3201 | #endif /* IXGBE_FCOE */ |
| 3202 | mhadd = IXGBE_READ_REG(hw, IXGBE_MHADD); |
| 3203 | if (max_frame != (mhadd >> IXGBE_MHADD_MFS_SHIFT)) { |
| 3204 | mhadd &= ~IXGBE_MHADD_MFS_MASK; |
| 3205 | mhadd |= max_frame << IXGBE_MHADD_MFS_SHIFT; |
| 3206 | |
| 3207 | IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3208 | } |
| 3209 | |
Alexander Duyck | 919e78a | 2011-08-26 09:52:38 +0000 | [diff] [blame] | 3210 | /* MHADD will allow an extra 4 bytes past for vlan tagged frames */ |
| 3211 | max_frame += VLAN_HLEN; |
| 3212 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3213 | hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0); |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3214 | /* set jumbo enable since MHADD.MFS is keeping size locked at max_frame */ |
| 3215 | hlreg0 |= IXGBE_HLREG0_JUMBOEN; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3216 | IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0); |
| 3217 | |
Jesse Brandeburg | 0cefafa | 2009-05-19 09:19:11 +0000 | [diff] [blame] | 3218 | /* |
| 3219 | * Setup the HW Rx Head and Tail Descriptor Pointers and |
| 3220 | * the Base and Length of the Rx Descriptor Ring |
| 3221 | */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3222 | for (i = 0; i < adapter->num_rx_queues; i++) { |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 3223 | rx_ring = adapter->rx_ring[i]; |
Alexander Duyck | 7d637bc | 2010-11-16 19:26:56 -0800 | [diff] [blame] | 3224 | if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) |
| 3225 | set_ring_rsc_enabled(rx_ring); |
| 3226 | else |
| 3227 | clear_ring_rsc_enabled(rx_ring); |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3228 | } |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3229 | } |
| 3230 | |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3231 | static void ixgbe_setup_rdrxctl(struct ixgbe_adapter *adapter) |
| 3232 | { |
| 3233 | struct ixgbe_hw *hw = &adapter->hw; |
| 3234 | u32 rdrxctl = IXGBE_READ_REG(hw, IXGBE_RDRXCTL); |
| 3235 | |
| 3236 | switch (hw->mac.type) { |
| 3237 | case ixgbe_mac_82598EB: |
| 3238 | /* |
| 3239 | * For VMDq support of different descriptor types or |
| 3240 | * buffer sizes through the use of multiple SRRCTL |
| 3241 | * registers, RDRXCTL.MVMEN must be set to 1 |
| 3242 | * |
| 3243 | * also, the manual doesn't mention it clearly but DCA hints |
| 3244 | * will only use queue 0's tags unless this bit is set. Side |
| 3245 | * effects of setting this bit are only that SRRCTL must be |
| 3246 | * fully programmed [0..15] |
| 3247 | */ |
| 3248 | rdrxctl |= IXGBE_RDRXCTL_MVMEN; |
| 3249 | break; |
| 3250 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 3251 | case ixgbe_mac_X540: |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3252 | /* Disable RSC for ACK packets */ |
| 3253 | IXGBE_WRITE_REG(hw, IXGBE_RSCDBU, |
| 3254 | (IXGBE_RSCDBU_RSCACKDIS | IXGBE_READ_REG(hw, IXGBE_RSCDBU))); |
| 3255 | rdrxctl &= ~IXGBE_RDRXCTL_RSCFRSTSIZE; |
| 3256 | /* hardware requires some bits to be set by default */ |
| 3257 | rdrxctl |= (IXGBE_RDRXCTL_RSCACKC | IXGBE_RDRXCTL_FCOE_WRFIX); |
| 3258 | rdrxctl |= IXGBE_RDRXCTL_CRCSTRIP; |
| 3259 | break; |
| 3260 | default: |
| 3261 | /* We should do nothing since we don't know this hardware */ |
| 3262 | return; |
| 3263 | } |
| 3264 | |
| 3265 | IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, rdrxctl); |
| 3266 | } |
| 3267 | |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3268 | /** |
| 3269 | * ixgbe_configure_rx - Configure 8259x Receive Unit after Reset |
| 3270 | * @adapter: board private structure |
| 3271 | * |
| 3272 | * Configure the Rx unit of the MAC after a reset. |
| 3273 | **/ |
| 3274 | static void ixgbe_configure_rx(struct ixgbe_adapter *adapter) |
| 3275 | { |
| 3276 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3277 | int i; |
| 3278 | u32 rxctrl; |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3279 | |
| 3280 | /* disable receives while setting up the descriptors */ |
| 3281 | rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL); |
| 3282 | IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN); |
| 3283 | |
| 3284 | ixgbe_setup_psrtype(adapter); |
Alexander Duyck | 7367096 | 2010-08-19 13:38:34 +0000 | [diff] [blame] | 3285 | ixgbe_setup_rdrxctl(adapter); |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3286 | |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3287 | /* Program registers for the distribution of queues */ |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3288 | ixgbe_setup_mrqc(adapter); |
Alexander Duyck | f5b4a52 | 2010-08-19 13:38:57 +0000 | [diff] [blame] | 3289 | |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 3290 | /* set_rx_buffer_len must be called before ring initialization */ |
| 3291 | ixgbe_set_rx_buffer_len(adapter); |
| 3292 | |
| 3293 | /* |
| 3294 | * Setup the HW Rx Head and Tail Descriptor Pointers and |
| 3295 | * the Base and Length of the Rx Descriptor Ring |
| 3296 | */ |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3297 | for (i = 0; i < adapter->num_rx_queues; i++) |
| 3298 | ixgbe_configure_rx_ring(adapter, adapter->rx_ring[i]); |
Mallikarjuna R Chilakala | 177db6f | 2008-06-18 15:32:19 -0700 | [diff] [blame] | 3299 | |
Alexander Duyck | 9e10e04 | 2010-08-19 13:40:06 +0000 | [diff] [blame] | 3300 | /* disable drop enable for 82598 parts */ |
| 3301 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3302 | rxctrl |= IXGBE_RXCTRL_DMBYPS; |
| 3303 | |
| 3304 | /* enable all receives */ |
| 3305 | rxctrl |= IXGBE_RXCTRL_RXEN; |
| 3306 | hw->mac.ops.enable_rx_dma(hw, rxctrl); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3307 | } |
| 3308 | |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 3309 | static int ixgbe_vlan_rx_add_vid(struct net_device *netdev, u16 vid) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3310 | { |
| 3311 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 3312 | struct ixgbe_hw *hw = &adapter->hw; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3313 | |
| 3314 | /* add VID to filter table */ |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3315 | hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), true); |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3316 | set_bit(vid, adapter->active_vlans); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 3317 | |
| 3318 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3319 | } |
| 3320 | |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 3321 | static int ixgbe_vlan_rx_kill_vid(struct net_device *netdev, u16 vid) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3322 | { |
| 3323 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 3324 | struct ixgbe_hw *hw = &adapter->hw; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3325 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3326 | /* remove VID from filter table */ |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3327 | hw->mac.ops.set_vfta(&adapter->hw, vid, VMDQ_P(0), false); |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3328 | clear_bit(vid, adapter->active_vlans); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 3329 | |
| 3330 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3331 | } |
| 3332 | |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3333 | /** |
| 3334 | * ixgbe_vlan_filter_disable - helper to disable hw vlan filtering |
| 3335 | * @adapter: driver data |
| 3336 | */ |
| 3337 | static void ixgbe_vlan_filter_disable(struct ixgbe_adapter *adapter) |
| 3338 | { |
| 3339 | struct ixgbe_hw *hw = &adapter->hw; |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3340 | u32 vlnctrl; |
| 3341 | |
| 3342 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 3343 | vlnctrl &= ~(IXGBE_VLNCTRL_VFE | IXGBE_VLNCTRL_CFIEN); |
| 3344 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
| 3345 | } |
| 3346 | |
| 3347 | /** |
| 3348 | * ixgbe_vlan_filter_enable - helper to enable hw vlan filtering |
| 3349 | * @adapter: driver data |
| 3350 | */ |
| 3351 | static void ixgbe_vlan_filter_enable(struct ixgbe_adapter *adapter) |
| 3352 | { |
| 3353 | struct ixgbe_hw *hw = &adapter->hw; |
| 3354 | u32 vlnctrl; |
| 3355 | |
| 3356 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 3357 | vlnctrl |= IXGBE_VLNCTRL_VFE; |
| 3358 | vlnctrl &= ~IXGBE_VLNCTRL_CFIEN; |
| 3359 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
| 3360 | } |
| 3361 | |
| 3362 | /** |
| 3363 | * ixgbe_vlan_strip_disable - helper to disable hw vlan stripping |
| 3364 | * @adapter: driver data |
| 3365 | */ |
| 3366 | static void ixgbe_vlan_strip_disable(struct ixgbe_adapter *adapter) |
| 3367 | { |
| 3368 | struct ixgbe_hw *hw = &adapter->hw; |
| 3369 | u32 vlnctrl; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3370 | int i, j; |
| 3371 | |
| 3372 | switch (hw->mac.type) { |
| 3373 | case ixgbe_mac_82598EB: |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3374 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 3375 | vlnctrl &= ~IXGBE_VLNCTRL_VME; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3376 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
| 3377 | break; |
| 3378 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 3379 | case ixgbe_mac_X540: |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3380 | for (i = 0; i < adapter->num_rx_queues; i++) { |
| 3381 | j = adapter->rx_ring[i]->reg_idx; |
| 3382 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j)); |
| 3383 | vlnctrl &= ~IXGBE_RXDCTL_VME; |
| 3384 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl); |
| 3385 | } |
| 3386 | break; |
| 3387 | default: |
| 3388 | break; |
| 3389 | } |
| 3390 | } |
| 3391 | |
| 3392 | /** |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3393 | * ixgbe_vlan_strip_enable - helper to enable hw vlan stripping |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3394 | * @adapter: driver data |
| 3395 | */ |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3396 | static void ixgbe_vlan_strip_enable(struct ixgbe_adapter *adapter) |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3397 | { |
| 3398 | struct ixgbe_hw *hw = &adapter->hw; |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3399 | u32 vlnctrl; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3400 | int i, j; |
| 3401 | |
| 3402 | switch (hw->mac.type) { |
| 3403 | case ixgbe_mac_82598EB: |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3404 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL); |
| 3405 | vlnctrl |= IXGBE_VLNCTRL_VME; |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3406 | IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlnctrl); |
| 3407 | break; |
| 3408 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 3409 | case ixgbe_mac_X540: |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3410 | for (i = 0; i < adapter->num_rx_queues; i++) { |
| 3411 | j = adapter->rx_ring[i]->reg_idx; |
| 3412 | vlnctrl = IXGBE_READ_REG(hw, IXGBE_RXDCTL(j)); |
| 3413 | vlnctrl |= IXGBE_RXDCTL_VME; |
| 3414 | IXGBE_WRITE_REG(hw, IXGBE_RXDCTL(j), vlnctrl); |
| 3415 | } |
| 3416 | break; |
| 3417 | default: |
| 3418 | break; |
| 3419 | } |
| 3420 | } |
| 3421 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3422 | static void ixgbe_restore_vlan(struct ixgbe_adapter *adapter) |
| 3423 | { |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3424 | u16 vid; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3425 | |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3426 | ixgbe_vlan_rx_add_vid(adapter->netdev, 0); |
| 3427 | |
| 3428 | for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID) |
| 3429 | ixgbe_vlan_rx_add_vid(adapter->netdev, vid); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3430 | } |
| 3431 | |
| 3432 | /** |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3433 | * ixgbe_write_uc_addr_list - write unicast addresses to RAR table |
| 3434 | * @netdev: network interface device structure |
| 3435 | * |
| 3436 | * Writes unicast address list to the RAR table. |
| 3437 | * Returns: -ENOMEM on failure/insufficient address space |
| 3438 | * 0 on no addresses written |
| 3439 | * X on writing X addresses to the RAR table |
| 3440 | **/ |
| 3441 | static int ixgbe_write_uc_addr_list(struct net_device *netdev) |
| 3442 | { |
| 3443 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 3444 | struct ixgbe_hw *hw = &adapter->hw; |
Greg Rose | a1cbb15c | 2011-05-13 01:33:48 +0000 | [diff] [blame] | 3445 | unsigned int rar_entries = IXGBE_MAX_PF_MACVLANS; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3446 | int count = 0; |
| 3447 | |
| 3448 | /* return ENOMEM indicating insufficient memory for addresses */ |
| 3449 | if (netdev_uc_count(netdev) > rar_entries) |
| 3450 | return -ENOMEM; |
| 3451 | |
| 3452 | if (!netdev_uc_empty(netdev) && rar_entries) { |
| 3453 | struct netdev_hw_addr *ha; |
| 3454 | /* return error if we do not support writing to RAR table */ |
| 3455 | if (!hw->mac.ops.set_rar) |
| 3456 | return -ENOMEM; |
| 3457 | |
| 3458 | netdev_for_each_uc_addr(ha, netdev) { |
| 3459 | if (!rar_entries) |
| 3460 | break; |
| 3461 | hw->mac.ops.set_rar(hw, rar_entries--, ha->addr, |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3462 | VMDQ_P(0), IXGBE_RAH_AV); |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3463 | count++; |
| 3464 | } |
| 3465 | } |
| 3466 | /* write the addresses in reverse order to avoid write combining */ |
| 3467 | for (; rar_entries > 0 ; rar_entries--) |
| 3468 | hw->mac.ops.clear_rar(hw, rar_entries); |
| 3469 | |
| 3470 | return count; |
| 3471 | } |
| 3472 | |
| 3473 | /** |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 3474 | * ixgbe_set_rx_mode - Unicast, Multicast and Promiscuous mode set |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3475 | * @netdev: network interface device structure |
| 3476 | * |
Christopher Leech | 2c5645c | 2008-08-26 04:27:02 -0700 | [diff] [blame] | 3477 | * The set_rx_method entry point is called whenever the unicast/multicast |
| 3478 | * address list or the network interface flags are updated. This routine is |
| 3479 | * responsible for configuring the hardware for proper unicast, multicast and |
| 3480 | * promiscuous mode. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3481 | **/ |
Greg Rose | 7f87047 | 2010-01-09 02:25:29 +0000 | [diff] [blame] | 3482 | void ixgbe_set_rx_mode(struct net_device *netdev) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3483 | { |
| 3484 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 3485 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3486 | u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE; |
| 3487 | int count; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3488 | |
| 3489 | /* Check for Promiscuous and All Multicast modes */ |
| 3490 | |
| 3491 | fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 3492 | |
Alexander Duyck | f5dc442 | 2010-08-19 13:36:49 +0000 | [diff] [blame] | 3493 | /* set all bits that we expect to always be set */ |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 3494 | fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */ |
Alexander Duyck | f5dc442 | 2010-08-19 13:36:49 +0000 | [diff] [blame] | 3495 | fctrl |= IXGBE_FCTRL_BAM; |
| 3496 | fctrl |= IXGBE_FCTRL_DPF; /* discard pause frames when FC enabled */ |
| 3497 | fctrl |= IXGBE_FCTRL_PMCF; |
| 3498 | |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3499 | /* clear the bits we are changing the status of */ |
| 3500 | fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE); |
| 3501 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3502 | if (netdev->flags & IFF_PROMISC) { |
Emil Tantilov | e433ea1 | 2010-05-13 17:33:00 +0000 | [diff] [blame] | 3503 | hw->addr_ctrl.user_set_promisc = true; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3504 | fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE); |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3505 | vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE); |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3506 | /* don't hardware filter vlans in promisc mode */ |
| 3507 | ixgbe_vlan_filter_disable(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3508 | } else { |
Patrick McHardy | 746b9f0 | 2008-07-16 20:15:45 -0700 | [diff] [blame] | 3509 | if (netdev->flags & IFF_ALLMULTI) { |
| 3510 | fctrl |= IXGBE_FCTRL_MPE; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3511 | vmolr |= IXGBE_VMOLR_MPE; |
| 3512 | } else { |
| 3513 | /* |
| 3514 | * Write addresses to the MTA, if the attempt fails |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3515 | * then we should just turn on promiscuous mode so |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3516 | * that we can at least receive multicast traffic |
| 3517 | */ |
| 3518 | hw->mac.ops.update_mc_addr_list(hw, netdev); |
| 3519 | vmolr |= IXGBE_VMOLR_ROMPE; |
Patrick McHardy | 746b9f0 | 2008-07-16 20:15:45 -0700 | [diff] [blame] | 3520 | } |
Jesse Brandeburg | 5f6c018 | 2010-04-14 16:04:23 -0700 | [diff] [blame] | 3521 | ixgbe_vlan_filter_enable(adapter); |
Emil Tantilov | e433ea1 | 2010-05-13 17:33:00 +0000 | [diff] [blame] | 3522 | hw->addr_ctrl.user_set_promisc = false; |
John Fastabend | 9dcb373 | 2012-04-15 06:44:25 +0000 | [diff] [blame] | 3523 | } |
| 3524 | |
| 3525 | /* |
| 3526 | * Write addresses to available RAR registers, if there is not |
| 3527 | * sufficient space to store all the addresses then enable |
| 3528 | * unicast promiscuous mode |
| 3529 | */ |
| 3530 | count = ixgbe_write_uc_addr_list(netdev); |
| 3531 | if (count < 0) { |
| 3532 | fctrl |= IXGBE_FCTRL_UPE; |
| 3533 | vmolr |= IXGBE_VMOLR_ROPE; |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3534 | } |
| 3535 | |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3536 | if (adapter->num_vfs) |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3537 | ixgbe_restore_vf_multicasts(adapter); |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3538 | |
| 3539 | if (hw->mac.type != ixgbe_mac_82598EB) { |
| 3540 | vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(VMDQ_P(0))) & |
Alexander Duyck | 2850062 | 2010-06-15 09:25:48 +0000 | [diff] [blame] | 3541 | ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE | |
| 3542 | IXGBE_VMOLR_ROPE); |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 3543 | IXGBE_WRITE_REG(hw, IXGBE_VMOLR(VMDQ_P(0)), vmolr); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3544 | } |
| 3545 | |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 3546 | /* This is useful for sniffing bad packets. */ |
| 3547 | if (adapter->netdev->features & NETIF_F_RXALL) { |
| 3548 | /* UPE and MPE will be handled by normal PROMISC logic |
| 3549 | * in e1000e_set_rx_mode */ |
| 3550 | fctrl |= (IXGBE_FCTRL_SBP | /* Receive bad packets */ |
| 3551 | IXGBE_FCTRL_BAM | /* RX All Bcast Pkts */ |
| 3552 | IXGBE_FCTRL_PMCF); /* RX All MAC Ctrl Pkts */ |
| 3553 | |
| 3554 | fctrl &= ~(IXGBE_FCTRL_DPF); |
| 3555 | /* NOTE: VLAN filtering is disabled by setting PROMISC */ |
| 3556 | } |
| 3557 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3558 | IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl); |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3559 | |
| 3560 | if (netdev->features & NETIF_F_HW_VLAN_RX) |
| 3561 | ixgbe_vlan_strip_enable(adapter); |
| 3562 | else |
| 3563 | ixgbe_vlan_strip_disable(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3564 | } |
| 3565 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3566 | static void ixgbe_napi_enable_all(struct ixgbe_adapter *adapter) |
| 3567 | { |
| 3568 | int q_idx; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3569 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 3570 | for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) |
| 3571 | napi_enable(&adapter->q_vector[q_idx]->napi); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3572 | } |
| 3573 | |
| 3574 | static void ixgbe_napi_disable_all(struct ixgbe_adapter *adapter) |
| 3575 | { |
| 3576 | int q_idx; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3577 | |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 3578 | for (q_idx = 0; q_idx < adapter->num_q_vectors; q_idx++) |
| 3579 | napi_disable(&adapter->q_vector[q_idx]->napi); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3580 | } |
| 3581 | |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 3582 | #ifdef CONFIG_IXGBE_DCB |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 3583 | /** |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 3584 | * ixgbe_configure_dcb - Configure DCB hardware |
| 3585 | * @adapter: ixgbe adapter struct |
| 3586 | * |
| 3587 | * This is called by the driver on open to configure the DCB hardware. |
| 3588 | * This is also called by the gennetlink interface when reconfiguring |
| 3589 | * the DCB state. |
| 3590 | */ |
| 3591 | static void ixgbe_configure_dcb(struct ixgbe_adapter *adapter) |
| 3592 | { |
| 3593 | struct ixgbe_hw *hw = &adapter->hw; |
John Fastabend | 9806307 | 2010-10-28 00:59:57 +0000 | [diff] [blame] | 3594 | int max_frame = adapter->netdev->mtu + ETH_HLEN + ETH_FCS_LEN; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 3595 | |
Alexander Duyck | 67ebd79 | 2010-08-19 13:34:04 +0000 | [diff] [blame] | 3596 | if (!(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) { |
| 3597 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3598 | netif_set_gso_max_size(adapter->netdev, 65536); |
| 3599 | return; |
| 3600 | } |
| 3601 | |
| 3602 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3603 | netif_set_gso_max_size(adapter->netdev, 32768); |
| 3604 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 3605 | hw->mac.ops.set_vfta(&adapter->hw, 0, 0, true); |
Alexander Duyck | 01fa7d9 | 2010-11-16 19:26:53 -0800 | [diff] [blame] | 3606 | |
John Fastabend | b120818 | 2011-10-15 05:00:10 +0000 | [diff] [blame] | 3607 | #ifdef IXGBE_FCOE |
| 3608 | if (adapter->netdev->features & NETIF_F_FCOE_MTU) |
| 3609 | max_frame = max(max_frame, IXGBE_FCOE_JUMBO_FRAME_SIZE); |
| 3610 | #endif |
| 3611 | |
Alexander Duyck | 01fa7d9 | 2010-11-16 19:26:53 -0800 | [diff] [blame] | 3612 | /* reconfigure the hardware */ |
John Fastabend | 6f70f6a | 2011-04-26 07:26:25 +0000 | [diff] [blame] | 3613 | if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) { |
John Fastabend | c27931d | 2011-02-23 05:58:25 +0000 | [diff] [blame] | 3614 | ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame, |
| 3615 | DCB_TX_CONFIG); |
| 3616 | ixgbe_dcb_calculate_tc_credits(hw, &adapter->dcb_cfg, max_frame, |
| 3617 | DCB_RX_CONFIG); |
| 3618 | ixgbe_dcb_hw_config(hw, &adapter->dcb_cfg); |
John Fastabend | b120818 | 2011-10-15 05:00:10 +0000 | [diff] [blame] | 3619 | } else if (adapter->ixgbe_ieee_ets && adapter->ixgbe_ieee_pfc) { |
| 3620 | ixgbe_dcb_hw_ets(&adapter->hw, |
| 3621 | adapter->ixgbe_ieee_ets, |
| 3622 | max_frame); |
| 3623 | ixgbe_dcb_hw_pfc_config(&adapter->hw, |
| 3624 | adapter->ixgbe_ieee_pfc->pfc_en, |
| 3625 | adapter->ixgbe_ieee_ets->prio_tc); |
John Fastabend | c27931d | 2011-02-23 05:58:25 +0000 | [diff] [blame] | 3626 | } |
John Fastabend | 8187cd4 | 2011-02-23 05:58:08 +0000 | [diff] [blame] | 3627 | |
| 3628 | /* Enable RSS Hash per TC */ |
| 3629 | if (hw->mac.type != ixgbe_mac_82598EB) { |
Alexander Duyck | 4ae6373 | 2012-06-22 06:46:33 +0000 | [diff] [blame] | 3630 | u32 msb = 0; |
| 3631 | u16 rss_i = adapter->ring_feature[RING_F_RSS].indices - 1; |
John Fastabend | 8187cd4 | 2011-02-23 05:58:08 +0000 | [diff] [blame] | 3632 | |
Alexander Duyck | d411a93 | 2012-06-30 00:14:01 +0000 | [diff] [blame] | 3633 | while (rss_i) { |
| 3634 | msb++; |
| 3635 | rss_i >>= 1; |
John Fastabend | 8187cd4 | 2011-02-23 05:58:08 +0000 | [diff] [blame] | 3636 | } |
Alexander Duyck | d411a93 | 2012-06-30 00:14:01 +0000 | [diff] [blame] | 3637 | |
Alexander Duyck | 4ae6373 | 2012-06-22 06:46:33 +0000 | [diff] [blame] | 3638 | /* write msb to all 8 TCs in one write */ |
| 3639 | IXGBE_WRITE_REG(hw, IXGBE_RQTC, msb * 0x11111111); |
John Fastabend | 8187cd4 | 2011-02-23 05:58:08 +0000 | [diff] [blame] | 3640 | } |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 3641 | } |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 3642 | #endif |
| 3643 | |
| 3644 | /* Additional bittime to account for IXGBE framing */ |
| 3645 | #define IXGBE_ETH_FRAMING 20 |
| 3646 | |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 3647 | /** |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 3648 | * ixgbe_hpbthresh - calculate high water mark for flow control |
| 3649 | * |
| 3650 | * @adapter: board private structure to calculate for |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 3651 | * @pb: packet buffer to calculate |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 3652 | */ |
| 3653 | static int ixgbe_hpbthresh(struct ixgbe_adapter *adapter, int pb) |
| 3654 | { |
| 3655 | struct ixgbe_hw *hw = &adapter->hw; |
| 3656 | struct net_device *dev = adapter->netdev; |
| 3657 | int link, tc, kb, marker; |
| 3658 | u32 dv_id, rx_pba; |
| 3659 | |
| 3660 | /* Calculate max LAN frame size */ |
| 3661 | tc = link = dev->mtu + ETH_HLEN + ETH_FCS_LEN + IXGBE_ETH_FRAMING; |
| 3662 | |
| 3663 | #ifdef IXGBE_FCOE |
| 3664 | /* FCoE traffic class uses FCOE jumbo frames */ |
Alexander Duyck | 800bd60 | 2012-06-02 00:11:02 +0000 | [diff] [blame] | 3665 | if ((dev->features & NETIF_F_FCOE_MTU) && |
| 3666 | (tc < IXGBE_FCOE_JUMBO_FRAME_SIZE) && |
| 3667 | (pb == ixgbe_fcoe_get_tc(adapter))) |
| 3668 | tc = IXGBE_FCOE_JUMBO_FRAME_SIZE; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 3669 | |
| 3670 | #endif |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 3671 | /* Calculate delay value for device */ |
| 3672 | switch (hw->mac.type) { |
| 3673 | case ixgbe_mac_X540: |
| 3674 | dv_id = IXGBE_DV_X540(link, tc); |
| 3675 | break; |
| 3676 | default: |
| 3677 | dv_id = IXGBE_DV(link, tc); |
| 3678 | break; |
| 3679 | } |
| 3680 | |
| 3681 | /* Loopback switch introduces additional latency */ |
| 3682 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
| 3683 | dv_id += IXGBE_B2BT(tc); |
| 3684 | |
| 3685 | /* Delay value is calculated in bit times convert to KB */ |
| 3686 | kb = IXGBE_BT2KB(dv_id); |
| 3687 | rx_pba = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(pb)) >> 10; |
| 3688 | |
| 3689 | marker = rx_pba - kb; |
| 3690 | |
| 3691 | /* It is possible that the packet buffer is not large enough |
| 3692 | * to provide required headroom. In this case throw an error |
| 3693 | * to user and a do the best we can. |
| 3694 | */ |
| 3695 | if (marker < 0) { |
| 3696 | e_warn(drv, "Packet Buffer(%i) can not provide enough" |
| 3697 | "headroom to support flow control." |
| 3698 | "Decrease MTU or number of traffic classes\n", pb); |
| 3699 | marker = tc + 1; |
| 3700 | } |
| 3701 | |
| 3702 | return marker; |
| 3703 | } |
| 3704 | |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 3705 | /** |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 3706 | * ixgbe_lpbthresh - calculate low water mark for for flow control |
| 3707 | * |
| 3708 | * @adapter: board private structure to calculate for |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 3709 | * @pb: packet buffer to calculate |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 3710 | */ |
| 3711 | static int ixgbe_lpbthresh(struct ixgbe_adapter *adapter) |
| 3712 | { |
| 3713 | struct ixgbe_hw *hw = &adapter->hw; |
| 3714 | struct net_device *dev = adapter->netdev; |
| 3715 | int tc; |
| 3716 | u32 dv_id; |
| 3717 | |
| 3718 | /* Calculate max LAN frame size */ |
| 3719 | tc = dev->mtu + ETH_HLEN + ETH_FCS_LEN; |
| 3720 | |
| 3721 | /* Calculate delay value for device */ |
| 3722 | switch (hw->mac.type) { |
| 3723 | case ixgbe_mac_X540: |
| 3724 | dv_id = IXGBE_LOW_DV_X540(tc); |
| 3725 | break; |
| 3726 | default: |
| 3727 | dv_id = IXGBE_LOW_DV(tc); |
| 3728 | break; |
| 3729 | } |
| 3730 | |
| 3731 | /* Delay value is calculated in bit times convert to KB */ |
| 3732 | return IXGBE_BT2KB(dv_id); |
| 3733 | } |
| 3734 | |
| 3735 | /* |
| 3736 | * ixgbe_pbthresh_setup - calculate and setup high low water marks |
| 3737 | */ |
| 3738 | static void ixgbe_pbthresh_setup(struct ixgbe_adapter *adapter) |
| 3739 | { |
| 3740 | struct ixgbe_hw *hw = &adapter->hw; |
| 3741 | int num_tc = netdev_get_num_tc(adapter->netdev); |
| 3742 | int i; |
| 3743 | |
| 3744 | if (!num_tc) |
| 3745 | num_tc = 1; |
| 3746 | |
| 3747 | hw->fc.low_water = ixgbe_lpbthresh(adapter); |
| 3748 | |
| 3749 | for (i = 0; i < num_tc; i++) { |
| 3750 | hw->fc.high_water[i] = ixgbe_hpbthresh(adapter, i); |
| 3751 | |
| 3752 | /* Low water marks must not be larger than high water marks */ |
| 3753 | if (hw->fc.low_water > hw->fc.high_water[i]) |
| 3754 | hw->fc.low_water = 0; |
| 3755 | } |
| 3756 | } |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 3757 | |
| 3758 | static void ixgbe_configure_pb(struct ixgbe_adapter *adapter) |
| 3759 | { |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 3760 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | f7e1027 | 2011-07-21 00:40:35 +0000 | [diff] [blame] | 3761 | int hdrm; |
| 3762 | u8 tc = netdev_get_num_tc(adapter->netdev); |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 3763 | |
| 3764 | if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE || |
| 3765 | adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) |
Alexander Duyck | f7e1027 | 2011-07-21 00:40:35 +0000 | [diff] [blame] | 3766 | hdrm = 32 << adapter->fdir_pballoc; |
| 3767 | else |
| 3768 | hdrm = 0; |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 3769 | |
Alexander Duyck | f7e1027 | 2011-07-21 00:40:35 +0000 | [diff] [blame] | 3770 | hw->mac.ops.set_rxpba(hw, tc, hdrm, PBA_STRATEGY_EQUAL); |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 3771 | ixgbe_pbthresh_setup(adapter); |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 3772 | } |
| 3773 | |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 3774 | static void ixgbe_fdir_filter_restore(struct ixgbe_adapter *adapter) |
| 3775 | { |
| 3776 | struct ixgbe_hw *hw = &adapter->hw; |
| 3777 | struct hlist_node *node, *node2; |
| 3778 | struct ixgbe_fdir_filter *filter; |
| 3779 | |
| 3780 | spin_lock(&adapter->fdir_perfect_lock); |
| 3781 | |
| 3782 | if (!hlist_empty(&adapter->fdir_filter_list)) |
| 3783 | ixgbe_fdir_set_input_mask_82599(hw, &adapter->fdir_mask); |
| 3784 | |
| 3785 | hlist_for_each_entry_safe(filter, node, node2, |
| 3786 | &adapter->fdir_filter_list, fdir_node) { |
| 3787 | ixgbe_fdir_write_perfect_filter_82599(hw, |
Alexander Duyck | 1f4d518 | 2011-05-14 01:16:02 +0000 | [diff] [blame] | 3788 | &filter->filter, |
| 3789 | filter->sw_idx, |
| 3790 | (filter->action == IXGBE_FDIR_DROP_QUEUE) ? |
| 3791 | IXGBE_FDIR_DROP_QUEUE : |
| 3792 | adapter->rx_ring[filter->action]->reg_idx); |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 3793 | } |
| 3794 | |
| 3795 | spin_unlock(&adapter->fdir_perfect_lock); |
| 3796 | } |
| 3797 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3798 | static void ixgbe_configure(struct ixgbe_adapter *adapter) |
| 3799 | { |
Atita Shirwaikar | d2f5e7f | 2012-02-18 02:58:58 +0000 | [diff] [blame] | 3800 | struct ixgbe_hw *hw = &adapter->hw; |
| 3801 | |
John Fastabend | 80605c65 | 2011-05-02 12:34:10 +0000 | [diff] [blame] | 3802 | ixgbe_configure_pb(adapter); |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 3803 | #ifdef CONFIG_IXGBE_DCB |
Alexander Duyck | 67ebd79 | 2010-08-19 13:34:04 +0000 | [diff] [blame] | 3804 | ixgbe_configure_dcb(adapter); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 3805 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3806 | |
Alexander Duyck | 4c1d7b4 | 2011-07-21 00:40:30 +0000 | [diff] [blame] | 3807 | ixgbe_set_rx_mode(adapter->netdev); |
Jesse Gross | f62bbb5 | 2010-10-20 13:56:10 +0000 | [diff] [blame] | 3808 | ixgbe_restore_vlan(adapter); |
| 3809 | |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 3810 | #ifdef IXGBE_FCOE |
| 3811 | if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) |
| 3812 | ixgbe_configure_fcoe(adapter); |
| 3813 | |
| 3814 | #endif /* IXGBE_FCOE */ |
Atita Shirwaikar | d2f5e7f | 2012-02-18 02:58:58 +0000 | [diff] [blame] | 3815 | |
| 3816 | switch (hw->mac.type) { |
| 3817 | case ixgbe_mac_82599EB: |
| 3818 | case ixgbe_mac_X540: |
| 3819 | hw->mac.ops.disable_rx_buff(hw); |
| 3820 | break; |
| 3821 | default: |
| 3822 | break; |
| 3823 | } |
| 3824 | |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 3825 | if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) { |
Alexander Duyck | 4c1d7b4 | 2011-07-21 00:40:30 +0000 | [diff] [blame] | 3826 | ixgbe_init_fdir_signature_82599(&adapter->hw, |
| 3827 | adapter->fdir_pballoc); |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 3828 | } else if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) { |
| 3829 | ixgbe_init_fdir_perfect_82599(&adapter->hw, |
| 3830 | adapter->fdir_pballoc); |
| 3831 | ixgbe_fdir_filter_restore(adapter); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 3832 | } |
Alexander Duyck | 4c1d7b4 | 2011-07-21 00:40:30 +0000 | [diff] [blame] | 3833 | |
Atita Shirwaikar | d2f5e7f | 2012-02-18 02:58:58 +0000 | [diff] [blame] | 3834 | switch (hw->mac.type) { |
| 3835 | case ixgbe_mac_82599EB: |
| 3836 | case ixgbe_mac_X540: |
| 3837 | hw->mac.ops.enable_rx_buff(hw); |
| 3838 | break; |
| 3839 | default: |
| 3840 | break; |
| 3841 | } |
| 3842 | |
Alexander Duyck | 933d41f | 2010-09-07 21:34:29 +0000 | [diff] [blame] | 3843 | ixgbe_configure_virtualization(adapter); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 3844 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3845 | ixgbe_configure_tx(adapter); |
| 3846 | ixgbe_configure_rx(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3847 | } |
| 3848 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3849 | static inline bool ixgbe_is_sfp(struct ixgbe_hw *hw) |
| 3850 | { |
| 3851 | switch (hw->phy.type) { |
| 3852 | case ixgbe_phy_sfp_avago: |
| 3853 | case ixgbe_phy_sfp_ftl: |
| 3854 | case ixgbe_phy_sfp_intel: |
| 3855 | case ixgbe_phy_sfp_unknown: |
Don Skidmore | ea0a04d | 2010-05-18 16:00:13 +0000 | [diff] [blame] | 3856 | case ixgbe_phy_sfp_passive_tyco: |
| 3857 | case ixgbe_phy_sfp_passive_unknown: |
| 3858 | case ixgbe_phy_sfp_active_unknown: |
| 3859 | case ixgbe_phy_sfp_ftl_active: |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3860 | return true; |
Alexander Duyck | 8917b44 | 2011-07-21 00:40:51 +0000 | [diff] [blame] | 3861 | case ixgbe_phy_nl: |
| 3862 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 3863 | return true; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3864 | default: |
| 3865 | return false; |
| 3866 | } |
| 3867 | } |
| 3868 | |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 3869 | /** |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3870 | * ixgbe_sfp_link_config - set up SFP+ link |
| 3871 | * @adapter: pointer to private adapter struct |
| 3872 | **/ |
| 3873 | static void ixgbe_sfp_link_config(struct ixgbe_adapter *adapter) |
| 3874 | { |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 3875 | /* |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 3876 | * We are assuming the worst case scenario here, and that |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 3877 | * is that an SFP was inserted/removed after the reset |
| 3878 | * but before SFP detection was enabled. As such the best |
| 3879 | * solution is to just start searching as soon as we start |
| 3880 | */ |
| 3881 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) |
| 3882 | adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3883 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 3884 | adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3885 | } |
| 3886 | |
| 3887 | /** |
| 3888 | * ixgbe_non_sfp_link_config - set up non-SFP+ link |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 3889 | * @hw: pointer to private hardware struct |
| 3890 | * |
| 3891 | * Returns 0 on success, negative on failure |
| 3892 | **/ |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3893 | 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] | 3894 | { |
| 3895 | u32 autoneg; |
Mallikarjuna R Chilakala | 8620a10 | 2009-09-01 13:49:35 +0000 | [diff] [blame] | 3896 | bool negotiation, link_up = false; |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 3897 | u32 ret = IXGBE_ERR_LINK_SETUP; |
| 3898 | |
| 3899 | if (hw->mac.ops.check_link) |
| 3900 | ret = hw->mac.ops.check_link(hw, &autoneg, &link_up, false); |
| 3901 | |
| 3902 | if (ret) |
| 3903 | goto link_cfg_out; |
| 3904 | |
Emil Tantilov | 0b0c2b3 | 2011-02-26 06:40:16 +0000 | [diff] [blame] | 3905 | autoneg = hw->phy.autoneg_advertised; |
| 3906 | if ((!autoneg) && (hw->mac.ops.get_link_capabilities)) |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 3907 | ret = hw->mac.ops.get_link_capabilities(hw, &autoneg, |
| 3908 | &negotiation); |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 3909 | if (ret) |
| 3910 | goto link_cfg_out; |
| 3911 | |
Mallikarjuna R Chilakala | 8620a10 | 2009-09-01 13:49:35 +0000 | [diff] [blame] | 3912 | if (hw->mac.ops.setup_link) |
| 3913 | ret = hw->mac.ops.setup_link(hw, autoneg, negotiation, link_up); |
Peter P Waskiewicz Jr | 0ecc061 | 2009-02-06 21:46:54 -0800 | [diff] [blame] | 3914 | link_cfg_out: |
| 3915 | return ret; |
| 3916 | } |
| 3917 | |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 3918 | static void ixgbe_setup_gpie(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3919 | { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3920 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 3921 | u32 gpie = 0; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3922 | |
Jesse Brandeburg | 9b47144 | 2009-12-03 11:33:54 +0000 | [diff] [blame] | 3923 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) { |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 3924 | gpie = IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT | |
| 3925 | IXGBE_GPIE_OCD; |
| 3926 | gpie |= IXGBE_GPIE_EIAME; |
Jesse Brandeburg | 9b47144 | 2009-12-03 11:33:54 +0000 | [diff] [blame] | 3927 | /* |
| 3928 | * use EIAM to auto-mask when MSI-X interrupt is asserted |
| 3929 | * this saves a register write for every interrupt |
| 3930 | */ |
| 3931 | switch (hw->mac.type) { |
| 3932 | case ixgbe_mac_82598EB: |
| 3933 | IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE); |
| 3934 | break; |
Jesse Brandeburg | 9b47144 | 2009-12-03 11:33:54 +0000 | [diff] [blame] | 3935 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 3936 | case ixgbe_mac_X540: |
| 3937 | default: |
Jesse Brandeburg | 9b47144 | 2009-12-03 11:33:54 +0000 | [diff] [blame] | 3938 | IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(0), 0xFFFFFFFF); |
| 3939 | IXGBE_WRITE_REG(hw, IXGBE_EIAM_EX(1), 0xFFFFFFFF); |
| 3940 | break; |
| 3941 | } |
| 3942 | } else { |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 3943 | /* legacy interrupts, use EIAM to auto-mask when reading EICR, |
| 3944 | * specifically only auto mask tx and rx interrupts */ |
| 3945 | IXGBE_WRITE_REG(hw, IXGBE_EIAM, IXGBE_EICS_RTX_QUEUE); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 3946 | } |
| 3947 | |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 3948 | /* XXX: to interrupt immediately for EICS writes, enable this */ |
| 3949 | /* gpie |= IXGBE_GPIE_EIMEN; */ |
| 3950 | |
| 3951 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 3952 | gpie &= ~IXGBE_GPIE_VTMODE_MASK; |
Alexander Duyck | 73079ea | 2012-07-14 06:48:49 +0000 | [diff] [blame] | 3953 | |
| 3954 | switch (adapter->ring_feature[RING_F_VMDQ].mask) { |
| 3955 | case IXGBE_82599_VMDQ_8Q_MASK: |
| 3956 | gpie |= IXGBE_GPIE_VTMODE_16; |
| 3957 | break; |
| 3958 | case IXGBE_82599_VMDQ_4Q_MASK: |
| 3959 | gpie |= IXGBE_GPIE_VTMODE_32; |
| 3960 | break; |
| 3961 | default: |
| 3962 | gpie |= IXGBE_GPIE_VTMODE_64; |
| 3963 | break; |
| 3964 | } |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 3965 | } |
| 3966 | |
Alexander Duyck | 5fdd31f | 2011-07-21 00:40:45 +0000 | [diff] [blame] | 3967 | /* Enable Thermal over heat sensor interrupt */ |
Don Skidmore | f3df98e | 2011-08-17 10:15:21 +0000 | [diff] [blame] | 3968 | if (adapter->flags2 & IXGBE_FLAG2_TEMP_SENSOR_CAPABLE) { |
| 3969 | switch (adapter->hw.mac.type) { |
| 3970 | case ixgbe_mac_82599EB: |
| 3971 | gpie |= IXGBE_SDP0_GPIEN; |
| 3972 | break; |
| 3973 | case ixgbe_mac_X540: |
| 3974 | gpie |= IXGBE_EIMS_TS; |
| 3975 | break; |
| 3976 | default: |
| 3977 | break; |
| 3978 | } |
| 3979 | } |
Alexander Duyck | 5fdd31f | 2011-07-21 00:40:45 +0000 | [diff] [blame] | 3980 | |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 3981 | /* Enable fan failure interrupt */ |
| 3982 | if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 3983 | gpie |= IXGBE_SDP1_GPIEN; |
Jesse Brandeburg | 0befdb3 | 2008-10-31 00:46:40 -0700 | [diff] [blame] | 3984 | |
Don Skidmore | 2698b20 | 2011-04-13 07:01:52 +0000 | [diff] [blame] | 3985 | if (hw->mac.type == ixgbe_mac_82599EB) { |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 3986 | gpie |= IXGBE_SDP1_GPIEN; |
| 3987 | gpie |= IXGBE_SDP2_GPIEN; |
Don Skidmore | 2698b20 | 2011-04-13 07:01:52 +0000 | [diff] [blame] | 3988 | } |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 3989 | |
| 3990 | IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie); |
| 3991 | } |
| 3992 | |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 3993 | static void ixgbe_up_complete(struct ixgbe_adapter *adapter) |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 3994 | { |
| 3995 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 3996 | int err; |
Alexander Duyck | a34bcff | 2010-08-19 13:39:20 +0000 | [diff] [blame] | 3997 | u32 ctrl_ext; |
| 3998 | |
| 3999 | ixgbe_get_hw_control(adapter); |
| 4000 | ixgbe_setup_gpie(adapter); |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 4001 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4002 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) |
| 4003 | ixgbe_configure_msix(adapter); |
| 4004 | else |
| 4005 | ixgbe_configure_msi_and_legacy(adapter); |
| 4006 | |
Don Skidmore | c6ecf39 | 2010-12-03 03:31:51 +0000 | [diff] [blame] | 4007 | /* enable the optics for both mult-speed fiber and 82599 SFP+ fiber */ |
| 4008 | if (hw->mac.ops.enable_tx_laser && |
| 4009 | ((hw->phy.multispeed_fiber) || |
Don Skidmore | 9f91170 | 2010-12-03 13:24:05 +0000 | [diff] [blame] | 4010 | ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) && |
Don Skidmore | c6ecf39 | 2010-12-03 03:31:51 +0000 | [diff] [blame] | 4011 | (hw->mac.type == ixgbe_mac_82599EB)))) |
Peter Waskiewicz | 61fac74 | 2010-04-27 00:38:15 +0000 | [diff] [blame] | 4012 | hw->mac.ops.enable_tx_laser(hw); |
| 4013 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4014 | clear_bit(__IXGBE_DOWN, &adapter->state); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4015 | ixgbe_napi_enable_all(adapter); |
| 4016 | |
Alexander Duyck | 73c4b7c | 2010-11-16 19:26:57 -0800 | [diff] [blame] | 4017 | if (ixgbe_is_sfp(hw)) { |
| 4018 | ixgbe_sfp_link_config(adapter); |
| 4019 | } else { |
| 4020 | err = ixgbe_non_sfp_link_config(hw); |
| 4021 | if (err) |
| 4022 | e_err(probe, "link_config FAILED %d\n", err); |
| 4023 | } |
| 4024 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4025 | /* clear any pending interrupts, may auto mask */ |
| 4026 | IXGBE_READ_REG(hw, IXGBE_EICR); |
Emil Tantilov | 6af3b9e | 2010-09-29 21:35:23 +0000 | [diff] [blame] | 4027 | ixgbe_irq_enable(adapter, true, true); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4028 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 4029 | /* |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 4030 | * If this adapter has a fan, check to see if we had a failure |
| 4031 | * before we enabled the interrupt. |
| 4032 | */ |
| 4033 | if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) { |
| 4034 | u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP); |
| 4035 | if (esdp & IXGBE_ESDP_SDP1) |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 4036 | e_crit(drv, "Fan has stopped, replace the adapter\n"); |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 4037 | } |
| 4038 | |
Peter P Waskiewicz Jr | 1da100b | 2009-01-19 16:55:03 -0800 | [diff] [blame] | 4039 | /* enable transmits */ |
Alexander Duyck | 477de6e | 2010-08-19 13:38:11 +0000 | [diff] [blame] | 4040 | netif_tx_start_all_queues(adapter->netdev); |
Peter P Waskiewicz Jr | 1da100b | 2009-01-19 16:55:03 -0800 | [diff] [blame] | 4041 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4042 | /* bring the link up in the watchdog, this could race with our first |
| 4043 | * link up interrupt but shouldn't be a problem */ |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 4044 | adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE; |
| 4045 | adapter->link_check_timeout = jiffies; |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 4046 | mod_timer(&adapter->service_timer, jiffies); |
Greg Rose | c920569 | 2010-01-22 22:46:22 +0000 | [diff] [blame] | 4047 | |
| 4048 | /* Set PF Reset Done bit so PF/VF Mail Ops can work */ |
| 4049 | ctrl_ext = IXGBE_READ_REG(hw, IXGBE_CTRL_EXT); |
| 4050 | ctrl_ext |= IXGBE_CTRL_EXT_PFRSTD; |
| 4051 | IXGBE_WRITE_REG(hw, IXGBE_CTRL_EXT, ctrl_ext); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4052 | } |
| 4053 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 4054 | void ixgbe_reinit_locked(struct ixgbe_adapter *adapter) |
| 4055 | { |
| 4056 | WARN_ON(in_interrupt()); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 4057 | /* put off any impending NetWatchDogTimeout */ |
| 4058 | adapter->netdev->trans_start = jiffies; |
| 4059 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 4060 | while (test_and_set_bit(__IXGBE_RESETTING, &adapter->state)) |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 4061 | usleep_range(1000, 2000); |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 4062 | ixgbe_down(adapter); |
Greg Rose | 5809a1a | 2010-03-24 09:36:08 +0000 | [diff] [blame] | 4063 | /* |
| 4064 | * If SR-IOV enabled then wait a bit before bringing the adapter |
| 4065 | * back up to give the VFs time to respond to the reset. The |
| 4066 | * two second wait is based upon the watchdog timer cycle in |
| 4067 | * the VF driver. |
| 4068 | */ |
| 4069 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
| 4070 | msleep(2000); |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 4071 | ixgbe_up(adapter); |
| 4072 | clear_bit(__IXGBE_RESETTING, &adapter->state); |
| 4073 | } |
| 4074 | |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 4075 | void ixgbe_up(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4076 | { |
| 4077 | /* hardware has been reset, we need to reload some things */ |
| 4078 | ixgbe_configure(adapter); |
| 4079 | |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 4080 | ixgbe_up_complete(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4081 | } |
| 4082 | |
| 4083 | void ixgbe_reset(struct ixgbe_adapter *adapter) |
| 4084 | { |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 4085 | struct ixgbe_hw *hw = &adapter->hw; |
Don Skidmore | 8ca783a | 2009-05-26 20:40:47 -0700 | [diff] [blame] | 4086 | int err; |
| 4087 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 4088 | /* lock SFP init bit to prevent race conditions with the watchdog */ |
| 4089 | while (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state)) |
| 4090 | usleep_range(1000, 2000); |
| 4091 | |
| 4092 | /* clear all SFP and link config related flags while holding SFP_INIT */ |
| 4093 | adapter->flags2 &= ~(IXGBE_FLAG2_SEARCH_FOR_SFP | |
| 4094 | IXGBE_FLAG2_SFP_NEEDS_RESET); |
| 4095 | adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG; |
| 4096 | |
Don Skidmore | 8ca783a | 2009-05-26 20:40:47 -0700 | [diff] [blame] | 4097 | err = hw->mac.ops.init_hw(hw); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 4098 | switch (err) { |
| 4099 | case 0: |
| 4100 | case IXGBE_ERR_SFP_NOT_PRESENT: |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 4101 | case IXGBE_ERR_SFP_NOT_SUPPORTED: |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 4102 | break; |
| 4103 | case IXGBE_ERR_MASTER_REQUESTS_PENDING: |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 4104 | e_dev_err("master disable timed out\n"); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 4105 | break; |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 4106 | case IXGBE_ERR_EEPROM_VERSION: |
| 4107 | /* We are running on a pre-production device, log a warning */ |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 4108 | e_dev_warn("This device is a pre-production adapter/LOM. " |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 4109 | "Please be aware there may be issues associated with " |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 4110 | "your hardware. If you are experiencing problems " |
| 4111 | "please contact your Intel or hardware " |
| 4112 | "representative who provided you with this " |
| 4113 | "hardware.\n"); |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 4114 | break; |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 4115 | default: |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 4116 | e_dev_err("Hardware Error: %d\n", err); |
Peter P Waskiewicz Jr | da4dd0f | 2009-06-04 11:10:35 +0000 | [diff] [blame] | 4117 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4118 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 4119 | clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state); |
| 4120 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4121 | /* reprogram the RAR[0] in case user changed it. */ |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 4122 | hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4123 | } |
| 4124 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4125 | /** |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 4126 | * ixgbe_init_rx_page_offset - initialize page offset values for Rx buffers |
| 4127 | * @rx_ring: ring to setup |
| 4128 | * |
| 4129 | * On many IA platforms the L1 cache has a critical stride of 4K, this |
| 4130 | * results in each receive buffer starting in the same cache set. To help |
| 4131 | * reduce the pressure on this cache set we can interleave the offsets so |
| 4132 | * that only every other buffer will be in the same cache set. |
| 4133 | **/ |
| 4134 | static void ixgbe_init_rx_page_offset(struct ixgbe_ring *rx_ring) |
| 4135 | { |
| 4136 | struct ixgbe_rx_buffer *rx_buffer = rx_ring->rx_buffer_info; |
| 4137 | u16 i; |
| 4138 | |
| 4139 | for (i = 0; i < rx_ring->count; i += 2) { |
| 4140 | rx_buffer[0].page_offset = 0; |
| 4141 | rx_buffer[1].page_offset = ixgbe_rx_bufsz(rx_ring); |
| 4142 | rx_buffer = &rx_buffer[2]; |
| 4143 | } |
| 4144 | } |
| 4145 | |
| 4146 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4147 | * ixgbe_clean_rx_ring - Free Rx Buffers per Queue |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4148 | * @rx_ring: ring to free buffers from |
| 4149 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4150 | static void ixgbe_clean_rx_ring(struct ixgbe_ring *rx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4151 | { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4152 | struct device *dev = rx_ring->dev; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4153 | unsigned long size; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4154 | u16 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4155 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 4156 | /* ring already cleared, nothing to do */ |
| 4157 | if (!rx_ring->rx_buffer_info) |
| 4158 | return; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4159 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 4160 | /* Free all the Rx ring sk_buffs */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4161 | for (i = 0; i < rx_ring->count; i++) { |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 4162 | struct ixgbe_rx_buffer *rx_buffer; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4163 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 4164 | rx_buffer = &rx_ring->rx_buffer_info[i]; |
| 4165 | if (rx_buffer->skb) { |
| 4166 | struct sk_buff *skb = rx_buffer->skb; |
| 4167 | if (IXGBE_CB(skb)->page_released) { |
| 4168 | dma_unmap_page(dev, |
| 4169 | IXGBE_CB(skb)->dma, |
| 4170 | ixgbe_rx_bufsz(rx_ring), |
| 4171 | DMA_FROM_DEVICE); |
| 4172 | IXGBE_CB(skb)->page_released = false; |
Alexander Duyck | 4c1975d | 2012-01-31 02:59:23 +0000 | [diff] [blame] | 4173 | } |
| 4174 | dev_kfree_skb(skb); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4175 | } |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 4176 | rx_buffer->skb = NULL; |
| 4177 | if (rx_buffer->dma) |
| 4178 | dma_unmap_page(dev, rx_buffer->dma, |
| 4179 | ixgbe_rx_pg_size(rx_ring), |
| 4180 | DMA_FROM_DEVICE); |
| 4181 | rx_buffer->dma = 0; |
| 4182 | if (rx_buffer->page) |
Alexander Duyck | dd411ec | 2012-04-06 04:24:50 +0000 | [diff] [blame] | 4183 | __free_pages(rx_buffer->page, |
| 4184 | ixgbe_rx_pg_order(rx_ring)); |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 4185 | rx_buffer->page = NULL; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4186 | } |
| 4187 | |
| 4188 | size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count; |
| 4189 | memset(rx_ring->rx_buffer_info, 0, size); |
| 4190 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 4191 | ixgbe_init_rx_page_offset(rx_ring); |
| 4192 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4193 | /* Zero out the descriptor ring */ |
| 4194 | memset(rx_ring->desc, 0, rx_ring->size); |
| 4195 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 4196 | rx_ring->next_to_alloc = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4197 | rx_ring->next_to_clean = 0; |
| 4198 | rx_ring->next_to_use = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4199 | } |
| 4200 | |
| 4201 | /** |
| 4202 | * ixgbe_clean_tx_ring - Free Tx Buffers |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4203 | * @tx_ring: ring to be cleaned |
| 4204 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4205 | static void ixgbe_clean_tx_ring(struct ixgbe_ring *tx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4206 | { |
| 4207 | struct ixgbe_tx_buffer *tx_buffer_info; |
| 4208 | unsigned long size; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4209 | u16 i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4210 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 4211 | /* ring already cleared, nothing to do */ |
| 4212 | if (!tx_ring->tx_buffer_info) |
| 4213 | return; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4214 | |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 4215 | /* Free all the Tx ring sk_buffs */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4216 | for (i = 0; i < tx_ring->count; i++) { |
| 4217 | tx_buffer_info = &tx_ring->tx_buffer_info[i]; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4218 | ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer_info); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4219 | } |
| 4220 | |
John Fastabend | dad8a3b | 2012-04-23 12:22:39 +0000 | [diff] [blame] | 4221 | netdev_tx_reset_queue(txring_txq(tx_ring)); |
| 4222 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4223 | size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count; |
| 4224 | memset(tx_ring->tx_buffer_info, 0, size); |
| 4225 | |
| 4226 | /* Zero out the descriptor ring */ |
| 4227 | memset(tx_ring->desc, 0, tx_ring->size); |
| 4228 | |
| 4229 | tx_ring->next_to_use = 0; |
| 4230 | tx_ring->next_to_clean = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4231 | } |
| 4232 | |
| 4233 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4234 | * ixgbe_clean_all_rx_rings - Free Rx Buffers for all queues |
| 4235 | * @adapter: board private structure |
| 4236 | **/ |
| 4237 | static void ixgbe_clean_all_rx_rings(struct ixgbe_adapter *adapter) |
| 4238 | { |
| 4239 | int i; |
| 4240 | |
| 4241 | for (i = 0; i < adapter->num_rx_queues; i++) |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4242 | ixgbe_clean_rx_ring(adapter->rx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4243 | } |
| 4244 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4245 | /** |
| 4246 | * ixgbe_clean_all_tx_rings - Free Tx Buffers for all queues |
| 4247 | * @adapter: board private structure |
| 4248 | **/ |
| 4249 | static void ixgbe_clean_all_tx_rings(struct ixgbe_adapter *adapter) |
| 4250 | { |
| 4251 | int i; |
| 4252 | |
| 4253 | for (i = 0; i < adapter->num_tx_queues; i++) |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4254 | ixgbe_clean_tx_ring(adapter->tx_ring[i]); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4255 | } |
| 4256 | |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 4257 | static void ixgbe_fdir_filter_exit(struct ixgbe_adapter *adapter) |
| 4258 | { |
| 4259 | struct hlist_node *node, *node2; |
| 4260 | struct ixgbe_fdir_filter *filter; |
| 4261 | |
| 4262 | spin_lock(&adapter->fdir_perfect_lock); |
| 4263 | |
| 4264 | hlist_for_each_entry_safe(filter, node, node2, |
| 4265 | &adapter->fdir_filter_list, fdir_node) { |
| 4266 | hlist_del(&filter->fdir_node); |
| 4267 | kfree(filter); |
| 4268 | } |
| 4269 | adapter->fdir_filter_count = 0; |
| 4270 | |
| 4271 | spin_unlock(&adapter->fdir_perfect_lock); |
| 4272 | } |
| 4273 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4274 | void ixgbe_down(struct ixgbe_adapter *adapter) |
| 4275 | { |
| 4276 | struct net_device *netdev = adapter->netdev; |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 4277 | struct ixgbe_hw *hw = &adapter->hw; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4278 | u32 rxctrl; |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 4279 | int i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4280 | |
| 4281 | /* signal that we are down to the interrupt handler */ |
| 4282 | set_bit(__IXGBE_DOWN, &adapter->state); |
| 4283 | |
| 4284 | /* disable receives */ |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 4285 | rxctrl = IXGBE_READ_REG(hw, IXGBE_RXCTRL); |
| 4286 | IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, rxctrl & ~IXGBE_RXCTRL_RXEN); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4287 | |
Yi Zou | 2d39d57 | 2011-01-06 14:29:56 +0000 | [diff] [blame] | 4288 | /* disable all enabled rx queues */ |
| 4289 | for (i = 0; i < adapter->num_rx_queues; i++) |
| 4290 | /* this call also flushes the previous write */ |
| 4291 | ixgbe_disable_rx_queue(adapter, adapter->rx_ring[i]); |
| 4292 | |
Don Skidmore | 032b432 | 2011-03-18 09:32:53 +0000 | [diff] [blame] | 4293 | usleep_range(10000, 20000); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4294 | |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 4295 | netif_tx_stop_all_queues(netdev); |
| 4296 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 4297 | /* call carrier off first to avoid false dev_watchdog timeouts */ |
John Fastabend | c0dfb90 | 2010-04-27 02:13:39 +0000 | [diff] [blame] | 4298 | netif_carrier_off(netdev); |
| 4299 | netif_tx_disable(netdev); |
| 4300 | |
| 4301 | ixgbe_irq_disable(adapter); |
| 4302 | |
| 4303 | ixgbe_napi_disable_all(adapter); |
| 4304 | |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 4305 | adapter->flags2 &= ~(IXGBE_FLAG2_FDIR_REQUIRES_REINIT | |
| 4306 | IXGBE_FLAG2_RESET_REQUESTED); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 4307 | adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE; |
| 4308 | |
| 4309 | del_timer_sync(&adapter->service_timer); |
| 4310 | |
Don Skidmore | 0a1f87c | 2009-09-18 09:45:43 +0000 | [diff] [blame] | 4311 | if (adapter->num_vfs) { |
Alexander Duyck | 8e34d1a | 2011-07-15 07:29:49 +0000 | [diff] [blame] | 4312 | /* Clear EITR Select mapping */ |
| 4313 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_EITRSEL, 0); |
| 4314 | |
| 4315 | /* Mark all the VFs as inactive */ |
| 4316 | for (i = 0 ; i < adapter->num_vfs; i++) |
Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 4317 | adapter->vfinfo[i].clear_to_send = false; |
Alexander Duyck | 8e34d1a | 2011-07-15 07:29:49 +0000 | [diff] [blame] | 4318 | |
Don Skidmore | 0a1f87c | 2009-09-18 09:45:43 +0000 | [diff] [blame] | 4319 | /* 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] | 4320 | ixgbe_ping_all_vfs(adapter); |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 4321 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4322 | /* Disable all VFTE/VFRE TX/RX */ |
Peter Waskiewicz | b25ebfd | 2010-10-05 01:27:49 +0000 | [diff] [blame] | 4323 | ixgbe_disable_tx_rx(adapter); |
Peter Waskiewicz | b25ebfd | 2010-10-05 01:27:49 +0000 | [diff] [blame] | 4324 | } |
| 4325 | |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 4326 | /* disable transmits in the hardware now that interrupts are off */ |
| 4327 | for (i = 0; i < adapter->num_tx_queues; i++) { |
Alexander Duyck | bf29ee6 | 2010-11-16 19:27:07 -0800 | [diff] [blame] | 4328 | u8 reg_idx = adapter->tx_ring[i]->reg_idx; |
Alexander Duyck | 34cecbb | 2011-04-22 04:08:14 +0000 | [diff] [blame] | 4329 | IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(reg_idx), IXGBE_TXDCTL_SWFLSH); |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 4330 | } |
Alexander Duyck | 34cecbb | 2011-04-22 04:08:14 +0000 | [diff] [blame] | 4331 | |
| 4332 | /* Disable the Tx DMA engine on 82599 and X540 */ |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 4333 | switch (hw->mac.type) { |
| 4334 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 4335 | case ixgbe_mac_X540: |
PJ Waskiewicz | 8851253 | 2009-03-13 22:15:10 +0000 | [diff] [blame] | 4336 | IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 4337 | (IXGBE_READ_REG(hw, IXGBE_DMATXCTL) & |
| 4338 | ~IXGBE_DMATXCTL_TE)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 4339 | break; |
| 4340 | default: |
| 4341 | break; |
| 4342 | } |
Jesse Brandeburg | 7f82187 | 2008-09-11 20:00:16 -0700 | [diff] [blame] | 4343 | |
Paul Larson | 6f4a0e4 | 2008-06-24 17:00:56 -0700 | [diff] [blame] | 4344 | if (!pci_channel_offline(adapter->pdev)) |
| 4345 | ixgbe_reset(adapter); |
Don Skidmore | c6ecf39 | 2010-12-03 03:31:51 +0000 | [diff] [blame] | 4346 | |
| 4347 | /* power down the optics for multispeed fiber and 82599 SFP+ fiber */ |
| 4348 | if (hw->mac.ops.disable_tx_laser && |
| 4349 | ((hw->phy.multispeed_fiber) || |
Don Skidmore | 9f91170 | 2010-12-03 13:24:05 +0000 | [diff] [blame] | 4350 | ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) && |
Don Skidmore | c6ecf39 | 2010-12-03 03:31:51 +0000 | [diff] [blame] | 4351 | (hw->mac.type == ixgbe_mac_82599EB)))) |
| 4352 | hw->mac.ops.disable_tx_laser(hw); |
| 4353 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4354 | ixgbe_clean_all_tx_rings(adapter); |
| 4355 | ixgbe_clean_all_rx_rings(adapter); |
| 4356 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 4357 | #ifdef CONFIG_IXGBE_DCA |
Jesse Brandeburg | 96b0e0f | 2008-08-26 04:27:21 -0700 | [diff] [blame] | 4358 | /* since we reset the hardware DCA settings were cleared */ |
Alexander Duyck | e35ec12 | 2009-05-21 13:07:12 +0000 | [diff] [blame] | 4359 | ixgbe_setup_dca(adapter); |
Jesse Brandeburg | 96b0e0f | 2008-08-26 04:27:21 -0700 | [diff] [blame] | 4360 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4361 | } |
| 4362 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4363 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4364 | * ixgbe_tx_timeout - Respond to a Tx Hang |
| 4365 | * @netdev: network interface device structure |
| 4366 | **/ |
| 4367 | static void ixgbe_tx_timeout(struct net_device *netdev) |
| 4368 | { |
| 4369 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 4370 | |
| 4371 | /* Do the reset outside of interrupt context */ |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 4372 | ixgbe_tx_timeout_reset(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4373 | } |
| 4374 | |
Jesse Brandeburg | 4df1046 | 2009-03-13 22:15:31 +0000 | [diff] [blame] | 4375 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4376 | * ixgbe_sw_init - Initialize general software structures (struct ixgbe_adapter) |
| 4377 | * @adapter: board private structure to initialize |
| 4378 | * |
| 4379 | * ixgbe_sw_init initializes the Adapter private data structure. |
| 4380 | * Fields are initialized based on PCI device information and |
| 4381 | * OS network device settings (MTU size). |
| 4382 | **/ |
| 4383 | static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter) |
| 4384 | { |
| 4385 | struct ixgbe_hw *hw = &adapter->hw; |
| 4386 | struct pci_dev *pdev = adapter->pdev; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4387 | unsigned int rss; |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 4388 | #ifdef CONFIG_IXGBE_DCB |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4389 | int j; |
| 4390 | struct tc_configuration *tc; |
| 4391 | #endif |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4392 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 4393 | /* PCI config space info */ |
| 4394 | |
| 4395 | hw->vendor_id = pdev->vendor; |
| 4396 | hw->device_id = pdev->device; |
| 4397 | hw->revision_id = pdev->revision; |
| 4398 | hw->subsystem_vendor_id = pdev->subsystem_vendor; |
| 4399 | hw->subsystem_device_id = pdev->subsystem_device; |
| 4400 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4401 | /* Set capability flags */ |
Jesse Brandeburg | 3ed69d7 | 2012-02-10 10:20:02 +0000 | [diff] [blame] | 4402 | rss = min_t(int, IXGBE_MAX_RSS_INDICES, num_online_cpus()); |
Alexander Duyck | c087663 | 2012-05-10 00:01:46 +0000 | [diff] [blame] | 4403 | adapter->ring_feature[RING_F_RSS].limit = rss; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 4404 | switch (hw->mac.type) { |
| 4405 | case ixgbe_mac_82598EB: |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 4406 | if (hw->device_id == IXGBE_DEV_ID_82598AT) |
| 4407 | adapter->flags |= IXGBE_FLAG_FAN_FAIL_CAPABLE; |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 4408 | adapter->max_q_vectors = MAX_Q_VECTORS_82598; |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 4409 | break; |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 4410 | case ixgbe_mac_X540: |
Jacob Keller | 4f51bf7 | 2011-08-20 04:49:45 +0000 | [diff] [blame] | 4411 | adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE; |
| 4412 | case ixgbe_mac_82599EB: |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 4413 | adapter->max_q_vectors = MAX_Q_VECTORS_82599; |
Peter P Waskiewicz Jr | 0c19d6a | 2009-07-30 12:25:28 +0000 | [diff] [blame] | 4414 | adapter->flags2 |= IXGBE_FLAG2_RSC_CAPABLE; |
| 4415 | adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED; |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 4416 | if (hw->device_id == IXGBE_DEV_ID_82599_T3_LOM) |
| 4417 | adapter->flags2 |= IXGBE_FLAG2_TEMP_SENSOR_CAPABLE; |
Alexander Duyck | 45b9f50 | 2011-01-06 14:29:59 +0000 | [diff] [blame] | 4418 | /* Flow Director hash filters enabled */ |
| 4419 | adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE; |
| 4420 | adapter->atr_sample_rate = 20; |
Alexander Duyck | c087663 | 2012-05-10 00:01:46 +0000 | [diff] [blame] | 4421 | adapter->ring_feature[RING_F_FDIR].limit = |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 4422 | IXGBE_MAX_FDIR_INDICES; |
Alexander Duyck | c04f6ca | 2011-05-11 07:18:36 +0000 | [diff] [blame] | 4423 | adapter->fdir_pballoc = IXGBE_FDIR_PBALLOC_64K; |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 4424 | #ifdef IXGBE_FCOE |
Yi Zou | 0d55158 | 2009-07-22 14:07:12 +0000 | [diff] [blame] | 4425 | adapter->flags |= IXGBE_FLAG_FCOE_CAPABLE; |
| 4426 | adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED; |
Yi Zou | 61a0f42 | 2009-12-03 11:32:22 +0000 | [diff] [blame] | 4427 | #ifdef CONFIG_IXGBE_DCB |
Yi Zou | 6ee1652 | 2009-08-31 12:34:28 +0000 | [diff] [blame] | 4428 | /* Default traffic class to use for FCoE */ |
John Fastabend | 56075a9 | 2010-07-26 20:41:31 +0000 | [diff] [blame] | 4429 | adapter->fcoe.up = IXGBE_FCOE_DEFTC; |
Yi Zou | 61a0f42 | 2009-12-03 11:32:22 +0000 | [diff] [blame] | 4430 | #endif |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 4431 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 4432 | break; |
| 4433 | default: |
| 4434 | break; |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 4435 | } |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4436 | |
Alexander Duyck | 1fc5f03 | 2011-06-02 04:28:39 +0000 | [diff] [blame] | 4437 | /* n-tuple support exists, always init our spinlock */ |
| 4438 | spin_lock_init(&adapter->fdir_perfect_lock); |
| 4439 | |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 4440 | #ifdef CONFIG_IXGBE_DCB |
John Fastabend | 4de2a02 | 2011-09-27 03:52:01 +0000 | [diff] [blame] | 4441 | switch (hw->mac.type) { |
| 4442 | case ixgbe_mac_X540: |
| 4443 | adapter->dcb_cfg.num_tcs.pg_tcs = X540_TRAFFIC_CLASS; |
| 4444 | adapter->dcb_cfg.num_tcs.pfc_tcs = X540_TRAFFIC_CLASS; |
| 4445 | break; |
| 4446 | default: |
| 4447 | adapter->dcb_cfg.num_tcs.pg_tcs = MAX_TRAFFIC_CLASS; |
| 4448 | adapter->dcb_cfg.num_tcs.pfc_tcs = MAX_TRAFFIC_CLASS; |
| 4449 | break; |
| 4450 | } |
| 4451 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4452 | /* Configure DCB traffic classes */ |
| 4453 | for (j = 0; j < MAX_TRAFFIC_CLASS; j++) { |
| 4454 | tc = &adapter->dcb_cfg.tc_config[j]; |
| 4455 | tc->path[DCB_TX_CONFIG].bwg_id = 0; |
| 4456 | tc->path[DCB_TX_CONFIG].bwg_percent = 12 + (j & 1); |
| 4457 | tc->path[DCB_RX_CONFIG].bwg_id = 0; |
| 4458 | tc->path[DCB_RX_CONFIG].bwg_percent = 12 + (j & 1); |
| 4459 | tc->dcb_pfc = pfc_disabled; |
| 4460 | } |
John Fastabend | 4de2a02 | 2011-09-27 03:52:01 +0000 | [diff] [blame] | 4461 | |
| 4462 | /* Initialize default user to priority mapping, UPx->TC0 */ |
| 4463 | tc = &adapter->dcb_cfg.tc_config[0]; |
| 4464 | tc->path[DCB_TX_CONFIG].up_to_tc_bitmap = 0xFF; |
| 4465 | tc->path[DCB_RX_CONFIG].up_to_tc_bitmap = 0xFF; |
| 4466 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4467 | adapter->dcb_cfg.bw_percentage[DCB_TX_CONFIG][0] = 100; |
| 4468 | adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100; |
Peter P Waskiewicz Jr | 264857b | 2009-05-17 12:35:16 +0000 | [diff] [blame] | 4469 | adapter->dcb_cfg.pfc_mode_enable = false; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4470 | adapter->dcb_set_bitmap = 0x00; |
John Fastabend | 3032309 | 2011-03-01 05:25:35 +0000 | [diff] [blame] | 4471 | adapter->dcbx_cap = DCB_CAP_DCBX_HOST | DCB_CAP_DCBX_VER_CEE; |
John Fastabend | f525c6d2 | 2012-04-18 22:42:27 +0000 | [diff] [blame] | 4472 | memcpy(&adapter->temp_dcb_cfg, &adapter->dcb_cfg, |
| 4473 | sizeof(adapter->temp_dcb_cfg)); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4474 | |
| 4475 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4476 | |
| 4477 | /* default flow control settings */ |
Don Skidmore | cd7664f | 2009-03-31 21:33:44 +0000 | [diff] [blame] | 4478 | hw->fc.requested_mode = ixgbe_fc_full; |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 4479 | hw->fc.current_mode = ixgbe_fc_full; /* init for ethtool output */ |
John Fastabend | 9da712d | 2011-08-23 03:14:22 +0000 | [diff] [blame] | 4480 | ixgbe_pbthresh_setup(adapter); |
Jesse Brandeburg | 2b9ade9 | 2008-08-26 04:27:10 -0700 | [diff] [blame] | 4481 | hw->fc.pause_time = IXGBE_DEFAULT_FCPAUSE; |
| 4482 | hw->fc.send_xon = true; |
Don Skidmore | 71fd570 | 2009-03-31 21:35:05 +0000 | [diff] [blame] | 4483 | hw->fc.disable_fc_autoneg = false; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4484 | |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 4485 | /* enable itr by default in dynamic mode */ |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 4486 | adapter->rx_itr_setting = 1; |
Nelson, Shannon | f7554a2 | 2009-09-18 09:46:06 +0000 | [diff] [blame] | 4487 | adapter->tx_itr_setting = 1; |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 4488 | |
Jesse Brandeburg | 30efa5a | 2008-09-11 19:58:14 -0700 | [diff] [blame] | 4489 | /* set default ring sizes */ |
| 4490 | adapter->tx_ring_count = IXGBE_DEFAULT_TXD; |
| 4491 | adapter->rx_ring_count = IXGBE_DEFAULT_RXD; |
| 4492 | |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 4493 | /* set default work limits */ |
Alexander Duyck | 5922455 | 2011-08-31 00:01:06 +0000 | [diff] [blame] | 4494 | adapter->tx_work_limit = IXGBE_DEFAULT_TX_WORK; |
Alexander Duyck | bd19805 | 2011-06-11 01:45:08 +0000 | [diff] [blame] | 4495 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4496 | /* initialize eeprom parameters */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 4497 | if (ixgbe_init_eeprom_params_generic(hw)) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 4498 | e_dev_err("EEPROM initialization failed\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4499 | return -EIO; |
| 4500 | } |
| 4501 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4502 | set_bit(__IXGBE_DOWN, &adapter->state); |
| 4503 | |
| 4504 | return 0; |
| 4505 | } |
| 4506 | |
| 4507 | /** |
| 4508 | * ixgbe_setup_tx_resources - allocate Tx resources (Descriptors) |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 4509 | * @tx_ring: tx descriptor ring (for a specific queue) to setup |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4510 | * |
| 4511 | * Return 0 on success, negative on failure |
| 4512 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4513 | int ixgbe_setup_tx_resources(struct ixgbe_ring *tx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4514 | { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4515 | struct device *dev = tx_ring->dev; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 4516 | int orig_node = dev_to_node(dev); |
| 4517 | int numa_node = -1; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4518 | int size; |
| 4519 | |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 4520 | size = sizeof(struct ixgbe_tx_buffer) * tx_ring->count; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 4521 | |
| 4522 | if (tx_ring->q_vector) |
| 4523 | numa_node = tx_ring->q_vector->numa_node; |
| 4524 | |
| 4525 | tx_ring->tx_buffer_info = vzalloc_node(size, numa_node); |
Jesse Brandeburg | 1a6c14a | 2010-02-03 14:18:50 +0000 | [diff] [blame] | 4526 | if (!tx_ring->tx_buffer_info) |
Eric Dumazet | 89bf67f | 2010-11-22 00:15:06 +0000 | [diff] [blame] | 4527 | tx_ring->tx_buffer_info = vzalloc(size); |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 4528 | if (!tx_ring->tx_buffer_info) |
| 4529 | goto err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4530 | |
| 4531 | /* round up to nearest 4K */ |
Peter P Waskiewicz Jr | 12207e4 | 2009-02-06 21:47:24 -0800 | [diff] [blame] | 4532 | tx_ring->size = tx_ring->count * sizeof(union ixgbe_adv_tx_desc); |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 4533 | tx_ring->size = ALIGN(tx_ring->size, 4096); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4534 | |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 4535 | set_dev_node(dev, numa_node); |
| 4536 | tx_ring->desc = dma_alloc_coherent(dev, |
| 4537 | tx_ring->size, |
| 4538 | &tx_ring->dma, |
| 4539 | GFP_KERNEL); |
| 4540 | set_dev_node(dev, orig_node); |
| 4541 | if (!tx_ring->desc) |
| 4542 | tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size, |
| 4543 | &tx_ring->dma, GFP_KERNEL); |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 4544 | if (!tx_ring->desc) |
| 4545 | goto err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4546 | |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 4547 | tx_ring->next_to_use = 0; |
| 4548 | tx_ring->next_to_clean = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4549 | return 0; |
Jesse Brandeburg | e01c31a | 2008-08-26 04:27:13 -0700 | [diff] [blame] | 4550 | |
| 4551 | err: |
| 4552 | vfree(tx_ring->tx_buffer_info); |
| 4553 | tx_ring->tx_buffer_info = NULL; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4554 | 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] | 4555 | return -ENOMEM; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4556 | } |
| 4557 | |
| 4558 | /** |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 4559 | * ixgbe_setup_all_tx_resources - allocate all queues Tx resources |
| 4560 | * @adapter: board private structure |
| 4561 | * |
| 4562 | * If this function returns with an error, then it's possible one or |
| 4563 | * more of the rings is populated (while the rest are not). It is the |
| 4564 | * callers duty to clean those orphaned rings. |
| 4565 | * |
| 4566 | * Return 0 on success, negative on failure |
| 4567 | **/ |
| 4568 | static int ixgbe_setup_all_tx_resources(struct ixgbe_adapter *adapter) |
| 4569 | { |
| 4570 | int i, err = 0; |
| 4571 | |
| 4572 | for (i = 0; i < adapter->num_tx_queues; i++) { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4573 | err = ixgbe_setup_tx_resources(adapter->tx_ring[i]); |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 4574 | if (!err) |
| 4575 | continue; |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 4576 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 4577 | e_err(probe, "Allocation for Tx Queue %u failed\n", i); |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 4578 | goto err_setup_tx; |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 4579 | } |
| 4580 | |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 4581 | return 0; |
| 4582 | err_setup_tx: |
| 4583 | /* rewind the index freeing the rings as we go */ |
| 4584 | while (i--) |
| 4585 | ixgbe_free_tx_resources(adapter->tx_ring[i]); |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 4586 | return err; |
| 4587 | } |
| 4588 | |
| 4589 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4590 | * ixgbe_setup_rx_resources - allocate Rx resources (Descriptors) |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 4591 | * @rx_ring: rx descriptor ring (for a specific queue) to setup |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4592 | * |
| 4593 | * Returns 0 on success, negative on failure |
| 4594 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4595 | int ixgbe_setup_rx_resources(struct ixgbe_ring *rx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4596 | { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4597 | struct device *dev = rx_ring->dev; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 4598 | int orig_node = dev_to_node(dev); |
| 4599 | int numa_node = -1; |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4600 | int size; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4601 | |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 4602 | size = sizeof(struct ixgbe_rx_buffer) * rx_ring->count; |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 4603 | |
| 4604 | if (rx_ring->q_vector) |
| 4605 | numa_node = rx_ring->q_vector->numa_node; |
| 4606 | |
| 4607 | rx_ring->rx_buffer_info = vzalloc_node(size, numa_node); |
Jesse Brandeburg | 1a6c14a | 2010-02-03 14:18:50 +0000 | [diff] [blame] | 4608 | if (!rx_ring->rx_buffer_info) |
Eric Dumazet | 89bf67f | 2010-11-22 00:15:06 +0000 | [diff] [blame] | 4609 | rx_ring->rx_buffer_info = vzalloc(size); |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4610 | if (!rx_ring->rx_buffer_info) |
| 4611 | goto err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4612 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4613 | /* Round up to nearest 4K */ |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 4614 | rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc); |
| 4615 | rx_ring->size = ALIGN(rx_ring->size, 4096); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4616 | |
Alexander Duyck | de88eee | 2012-02-08 07:49:59 +0000 | [diff] [blame] | 4617 | set_dev_node(dev, numa_node); |
| 4618 | rx_ring->desc = dma_alloc_coherent(dev, |
| 4619 | rx_ring->size, |
| 4620 | &rx_ring->dma, |
| 4621 | GFP_KERNEL); |
| 4622 | set_dev_node(dev, orig_node); |
| 4623 | if (!rx_ring->desc) |
| 4624 | rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size, |
| 4625 | &rx_ring->dma, GFP_KERNEL); |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4626 | if (!rx_ring->desc) |
| 4627 | goto err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4628 | |
Jesse Brandeburg | 3a58107 | 2008-08-26 04:27:08 -0700 | [diff] [blame] | 4629 | rx_ring->next_to_clean = 0; |
| 4630 | rx_ring->next_to_use = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4631 | |
Alexander Duyck | f800326 | 2012-03-03 02:35:52 +0000 | [diff] [blame] | 4632 | ixgbe_init_rx_page_offset(rx_ring); |
| 4633 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4634 | return 0; |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4635 | err: |
| 4636 | vfree(rx_ring->rx_buffer_info); |
| 4637 | rx_ring->rx_buffer_info = NULL; |
| 4638 | 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] | 4639 | return -ENOMEM; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4640 | } |
| 4641 | |
| 4642 | /** |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 4643 | * ixgbe_setup_all_rx_resources - allocate all queues Rx resources |
| 4644 | * @adapter: board private structure |
| 4645 | * |
| 4646 | * If this function returns with an error, then it's possible one or |
| 4647 | * more of the rings is populated (while the rest are not). It is the |
| 4648 | * callers duty to clean those orphaned rings. |
| 4649 | * |
| 4650 | * Return 0 on success, negative on failure |
| 4651 | **/ |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 4652 | static int ixgbe_setup_all_rx_resources(struct ixgbe_adapter *adapter) |
| 4653 | { |
| 4654 | int i, err = 0; |
| 4655 | |
| 4656 | for (i = 0; i < adapter->num_rx_queues; i++) { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4657 | err = ixgbe_setup_rx_resources(adapter->rx_ring[i]); |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 4658 | if (!err) |
| 4659 | continue; |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 4660 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 4661 | e_err(probe, "Allocation for Rx Queue %u failed\n", i); |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 4662 | goto err_setup_rx; |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 4663 | } |
| 4664 | |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 4665 | return 0; |
| 4666 | err_setup_rx: |
| 4667 | /* rewind the index freeing the rings as we go */ |
| 4668 | while (i--) |
| 4669 | ixgbe_free_rx_resources(adapter->rx_ring[i]); |
Alexander Duyck | 6988867 | 2008-09-11 20:05:39 -0700 | [diff] [blame] | 4670 | return err; |
| 4671 | } |
| 4672 | |
| 4673 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4674 | * ixgbe_free_tx_resources - Free Tx Resources per Queue |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4675 | * @tx_ring: Tx descriptor ring for a specific queue |
| 4676 | * |
| 4677 | * Free all transmit software resources |
| 4678 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4679 | void ixgbe_free_tx_resources(struct ixgbe_ring *tx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4680 | { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4681 | ixgbe_clean_tx_ring(tx_ring); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4682 | |
| 4683 | vfree(tx_ring->tx_buffer_info); |
| 4684 | tx_ring->tx_buffer_info = NULL; |
| 4685 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4686 | /* if not set, then don't free */ |
| 4687 | if (!tx_ring->desc) |
| 4688 | return; |
| 4689 | |
| 4690 | dma_free_coherent(tx_ring->dev, tx_ring->size, |
| 4691 | tx_ring->desc, tx_ring->dma); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4692 | |
| 4693 | tx_ring->desc = NULL; |
| 4694 | } |
| 4695 | |
| 4696 | /** |
| 4697 | * ixgbe_free_all_tx_resources - Free Tx Resources for All Queues |
| 4698 | * @adapter: board private structure |
| 4699 | * |
| 4700 | * Free all transmit software resources |
| 4701 | **/ |
| 4702 | static void ixgbe_free_all_tx_resources(struct ixgbe_adapter *adapter) |
| 4703 | { |
| 4704 | int i; |
| 4705 | |
| 4706 | for (i = 0; i < adapter->num_tx_queues; i++) |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 4707 | if (adapter->tx_ring[i]->desc) |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4708 | ixgbe_free_tx_resources(adapter->tx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4709 | } |
| 4710 | |
| 4711 | /** |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 4712 | * ixgbe_free_rx_resources - Free Rx Resources |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4713 | * @rx_ring: ring to clean the resources from |
| 4714 | * |
| 4715 | * Free all receive software resources |
| 4716 | **/ |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4717 | void ixgbe_free_rx_resources(struct ixgbe_ring *rx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4718 | { |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4719 | ixgbe_clean_rx_ring(rx_ring); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4720 | |
| 4721 | vfree(rx_ring->rx_buffer_info); |
| 4722 | rx_ring->rx_buffer_info = NULL; |
| 4723 | |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4724 | /* if not set, then don't free */ |
| 4725 | if (!rx_ring->desc) |
| 4726 | return; |
| 4727 | |
| 4728 | dma_free_coherent(rx_ring->dev, rx_ring->size, |
| 4729 | rx_ring->desc, rx_ring->dma); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4730 | |
| 4731 | rx_ring->desc = NULL; |
| 4732 | } |
| 4733 | |
| 4734 | /** |
| 4735 | * ixgbe_free_all_rx_resources - Free Rx Resources for All Queues |
| 4736 | * @adapter: board private structure |
| 4737 | * |
| 4738 | * Free all receive software resources |
| 4739 | **/ |
| 4740 | static void ixgbe_free_all_rx_resources(struct ixgbe_adapter *adapter) |
| 4741 | { |
| 4742 | int i; |
| 4743 | |
| 4744 | for (i = 0; i < adapter->num_rx_queues; i++) |
PJ Waskiewicz | 4a0b9ca | 2010-02-03 14:19:12 +0000 | [diff] [blame] | 4745 | if (adapter->rx_ring[i]->desc) |
Alexander Duyck | b6ec895 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 4746 | ixgbe_free_rx_resources(adapter->rx_ring[i]); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4747 | } |
| 4748 | |
| 4749 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4750 | * ixgbe_change_mtu - Change the Maximum Transfer Unit |
| 4751 | * @netdev: network interface device structure |
| 4752 | * @new_mtu: new value for maximum frame size |
| 4753 | * |
| 4754 | * Returns 0 on success, negative on failure |
| 4755 | **/ |
| 4756 | static int ixgbe_change_mtu(struct net_device *netdev, int new_mtu) |
| 4757 | { |
| 4758 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 4759 | int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN; |
| 4760 | |
Jesse Brandeburg | 42c783c | 2008-09-11 19:56:28 -0700 | [diff] [blame] | 4761 | /* MTU < 68 is an error and causes problems on some kernels */ |
Alexander Duyck | 655309e | 2012-02-08 07:50:35 +0000 | [diff] [blame] | 4762 | if ((new_mtu < 68) || (max_frame > IXGBE_MAX_JUMBO_FRAME_SIZE)) |
| 4763 | return -EINVAL; |
| 4764 | |
| 4765 | /* |
| 4766 | * For 82599EB we cannot allow PF to change MTU greater than 1500 |
| 4767 | * in SR-IOV mode as it may cause buffer overruns in guest VFs that |
| 4768 | * don't allocate and chain buffers correctly. |
| 4769 | */ |
| 4770 | if ((adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && |
| 4771 | (adapter->hw.mac.type == ixgbe_mac_82599EB) && |
| 4772 | (max_frame > MAXIMUM_ETHERNET_VLAN_SIZE)) |
Greg Rose | e9f9807 | 2011-01-26 01:06:07 +0000 | [diff] [blame] | 4773 | return -EINVAL; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4774 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 4775 | 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] | 4776 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4777 | /* must set new MTU before calling down or up */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4778 | netdev->mtu = new_mtu; |
| 4779 | |
Ayyappan Veeraiyan | d4f8088 | 2008-02-01 15:58:41 -0800 | [diff] [blame] | 4780 | if (netif_running(netdev)) |
| 4781 | ixgbe_reinit_locked(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4782 | |
| 4783 | return 0; |
| 4784 | } |
| 4785 | |
| 4786 | /** |
| 4787 | * ixgbe_open - Called when a network interface is made active |
| 4788 | * @netdev: network interface device structure |
| 4789 | * |
| 4790 | * Returns 0 on success, negative value on failure |
| 4791 | * |
| 4792 | * The open entry point is called when a network interface is made |
| 4793 | * active by the system (IFF_UP). At this point all resources needed |
| 4794 | * for transmit and receive operations are allocated, the interrupt |
| 4795 | * handler is registered with the OS, the watchdog timer is started, |
| 4796 | * and the stack is notified that the interface is ready. |
| 4797 | **/ |
| 4798 | static int ixgbe_open(struct net_device *netdev) |
| 4799 | { |
| 4800 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 4801 | int err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4802 | |
Auke Kok | 4bebfaa | 2008-02-11 09:26:01 -0800 | [diff] [blame] | 4803 | /* disallow open during test */ |
| 4804 | if (test_bit(__IXGBE_TESTING, &adapter->state)) |
| 4805 | return -EBUSY; |
| 4806 | |
Jesse Brandeburg | 5438646 | 2009-04-17 20:44:27 +0000 | [diff] [blame] | 4807 | netif_carrier_off(netdev); |
| 4808 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4809 | /* allocate transmit descriptors */ |
| 4810 | err = ixgbe_setup_all_tx_resources(adapter); |
| 4811 | if (err) |
| 4812 | goto err_setup_tx; |
| 4813 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4814 | /* allocate receive descriptors */ |
| 4815 | err = ixgbe_setup_all_rx_resources(adapter); |
| 4816 | if (err) |
| 4817 | goto err_setup_rx; |
| 4818 | |
| 4819 | ixgbe_configure(adapter); |
| 4820 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 4821 | err = ixgbe_request_irq(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4822 | if (err) |
| 4823 | goto err_req_irq; |
| 4824 | |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 4825 | /* Notify the stack of the actual queue counts. */ |
| 4826 | err = netif_set_real_num_tx_queues(netdev, |
| 4827 | adapter->num_rx_pools > 1 ? 1 : |
| 4828 | adapter->num_tx_queues); |
| 4829 | if (err) |
| 4830 | goto err_set_queues; |
| 4831 | |
| 4832 | |
| 4833 | err = netif_set_real_num_rx_queues(netdev, |
| 4834 | adapter->num_rx_pools > 1 ? 1 : |
| 4835 | adapter->num_rx_queues); |
| 4836 | if (err) |
| 4837 | goto err_set_queues; |
| 4838 | |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 4839 | ixgbe_up_complete(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4840 | |
| 4841 | return 0; |
| 4842 | |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 4843 | err_set_queues: |
| 4844 | ixgbe_free_irq(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4845 | err_req_irq: |
Mallikarjuna R Chilakala | a20a119 | 2009-03-31 21:34:44 +0000 | [diff] [blame] | 4846 | ixgbe_free_all_rx_resources(adapter); |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 4847 | err_setup_rx: |
Mallikarjuna R Chilakala | a20a119 | 2009-03-31 21:34:44 +0000 | [diff] [blame] | 4848 | ixgbe_free_all_tx_resources(adapter); |
Alexander Duyck | de3d5b9 | 2012-05-18 06:33:47 +0000 | [diff] [blame] | 4849 | err_setup_tx: |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4850 | ixgbe_reset(adapter); |
| 4851 | |
| 4852 | return err; |
| 4853 | } |
| 4854 | |
| 4855 | /** |
| 4856 | * ixgbe_close - Disables a network interface |
| 4857 | * @netdev: network interface device structure |
| 4858 | * |
| 4859 | * Returns 0, this is not allowed to fail |
| 4860 | * |
| 4861 | * The close entry point is called when an interface is de-activated |
| 4862 | * by the OS. The hardware is still under the drivers control, but |
| 4863 | * needs to be disabled. A global MAC reset is issued to stop the |
| 4864 | * hardware, and all transmit and receive resources are freed. |
| 4865 | **/ |
| 4866 | static int ixgbe_close(struct net_device *netdev) |
| 4867 | { |
| 4868 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4869 | |
| 4870 | ixgbe_down(adapter); |
| 4871 | ixgbe_free_irq(adapter); |
| 4872 | |
Alexander Duyck | e4911d5 | 2011-05-11 07:18:52 +0000 | [diff] [blame] | 4873 | ixgbe_fdir_filter_exit(adapter); |
| 4874 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4875 | ixgbe_free_all_tx_resources(adapter); |
| 4876 | ixgbe_free_all_rx_resources(adapter); |
| 4877 | |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 4878 | ixgbe_release_hw_control(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 4879 | |
| 4880 | return 0; |
| 4881 | } |
| 4882 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4883 | #ifdef CONFIG_PM |
| 4884 | static int ixgbe_resume(struct pci_dev *pdev) |
| 4885 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 4886 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
| 4887 | struct net_device *netdev = adapter->netdev; |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4888 | u32 err; |
| 4889 | |
| 4890 | pci_set_power_state(pdev, PCI_D0); |
| 4891 | pci_restore_state(pdev); |
Don Skidmore | 656ab81 | 2009-12-23 21:19:19 -0800 | [diff] [blame] | 4892 | /* |
| 4893 | * pci_restore_state clears dev->state_saved so call |
| 4894 | * pci_save_state to restore it. |
| 4895 | */ |
| 4896 | pci_save_state(pdev); |
gouji-new | 9ce7766 | 2009-05-06 10:44:45 +0000 | [diff] [blame] | 4897 | |
| 4898 | err = pci_enable_device_mem(pdev); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4899 | if (err) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 4900 | e_dev_err("Cannot enable PCI device from suspend\n"); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4901 | return err; |
| 4902 | } |
| 4903 | pci_set_master(pdev); |
| 4904 | |
Don Skidmore | dd4d8ca | 2009-04-29 00:22:31 -0700 | [diff] [blame] | 4905 | pci_wake_from_d3(pdev, false); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4906 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4907 | ixgbe_reset(adapter); |
| 4908 | |
Waskiewicz Jr, Peter P | 495dce1 | 2009-04-23 11:15:18 +0000 | [diff] [blame] | 4909 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0); |
| 4910 | |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 4911 | rtnl_lock(); |
| 4912 | err = ixgbe_init_interrupt_scheme(adapter); |
| 4913 | if (!err && netif_running(netdev)) |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 4914 | err = ixgbe_open(netdev); |
Alexander Duyck | ac802f5 | 2012-07-12 05:52:53 +0000 | [diff] [blame] | 4915 | |
| 4916 | rtnl_unlock(); |
| 4917 | |
| 4918 | if (err) |
| 4919 | return err; |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4920 | |
| 4921 | netif_device_attach(netdev); |
| 4922 | |
| 4923 | return 0; |
| 4924 | } |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4925 | #endif /* CONFIG_PM */ |
Rafael J. Wysocki | 9d8d05a | 2009-04-15 17:44:01 +0000 | [diff] [blame] | 4926 | |
| 4927 | static int __ixgbe_shutdown(struct pci_dev *pdev, bool *enable_wake) |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4928 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 4929 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
| 4930 | struct net_device *netdev = adapter->netdev; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 4931 | struct ixgbe_hw *hw = &adapter->hw; |
| 4932 | u32 ctrl, fctrl; |
| 4933 | u32 wufc = adapter->wol; |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4934 | #ifdef CONFIG_PM |
| 4935 | int retval = 0; |
| 4936 | #endif |
| 4937 | |
| 4938 | netif_device_detach(netdev); |
| 4939 | |
| 4940 | if (netif_running(netdev)) { |
Don Skidmore | ab6039a | 2012-03-17 05:51:52 +0000 | [diff] [blame] | 4941 | rtnl_lock(); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4942 | ixgbe_down(adapter); |
| 4943 | ixgbe_free_irq(adapter); |
| 4944 | ixgbe_free_all_tx_resources(adapter); |
| 4945 | ixgbe_free_all_rx_resources(adapter); |
Don Skidmore | ab6039a | 2012-03-17 05:51:52 +0000 | [diff] [blame] | 4946 | rtnl_unlock(); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4947 | } |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4948 | |
Alexander Duyck | 5f5ae6f | 2010-11-16 19:26:52 -0800 | [diff] [blame] | 4949 | ixgbe_clear_interrupt_scheme(adapter); |
| 4950 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4951 | #ifdef CONFIG_PM |
| 4952 | retval = pci_save_state(pdev); |
| 4953 | if (retval) |
| 4954 | return retval; |
Jesse Brandeburg | 4df1046 | 2009-03-13 22:15:31 +0000 | [diff] [blame] | 4955 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4956 | #endif |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 4957 | if (wufc) { |
| 4958 | ixgbe_set_rx_mode(netdev); |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4959 | |
Don Skidmore | c509e75 | 2012-04-05 08:12:05 +0000 | [diff] [blame] | 4960 | /* |
| 4961 | * enable the optics for both mult-speed fiber and |
| 4962 | * 82599 SFP+ fiber as we can WoL. |
| 4963 | */ |
| 4964 | if (hw->mac.ops.enable_tx_laser && |
| 4965 | (hw->phy.multispeed_fiber || |
| 4966 | (hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber && |
| 4967 | hw->mac.type == ixgbe_mac_82599EB))) |
| 4968 | hw->mac.ops.enable_tx_laser(hw); |
| 4969 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 4970 | /* turn on all-multi mode if wake on multicast is enabled */ |
| 4971 | if (wufc & IXGBE_WUFC_MC) { |
| 4972 | fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 4973 | fctrl |= IXGBE_FCTRL_MPE; |
| 4974 | IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl); |
| 4975 | } |
| 4976 | |
| 4977 | ctrl = IXGBE_READ_REG(hw, IXGBE_CTRL); |
| 4978 | ctrl |= IXGBE_CTRL_GIO_DIS; |
| 4979 | IXGBE_WRITE_REG(hw, IXGBE_CTRL, ctrl); |
| 4980 | |
| 4981 | IXGBE_WRITE_REG(hw, IXGBE_WUFC, wufc); |
| 4982 | } else { |
| 4983 | IXGBE_WRITE_REG(hw, IXGBE_WUC, 0); |
| 4984 | IXGBE_WRITE_REG(hw, IXGBE_WUFC, 0); |
| 4985 | } |
| 4986 | |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 4987 | switch (hw->mac.type) { |
| 4988 | case ixgbe_mac_82598EB: |
Don Skidmore | dd4d8ca | 2009-04-29 00:22:31 -0700 | [diff] [blame] | 4989 | pci_wake_from_d3(pdev, false); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 4990 | break; |
| 4991 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 4992 | case ixgbe_mac_X540: |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 4993 | pci_wake_from_d3(pdev, !!wufc); |
| 4994 | break; |
| 4995 | default: |
| 4996 | break; |
| 4997 | } |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 4998 | |
Rafael J. Wysocki | 9d8d05a | 2009-04-15 17:44:01 +0000 | [diff] [blame] | 4999 | *enable_wake = !!wufc; |
| 5000 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 5001 | ixgbe_release_hw_control(adapter); |
| 5002 | |
| 5003 | pci_disable_device(pdev); |
| 5004 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 5005 | return 0; |
| 5006 | } |
| 5007 | |
Rafael J. Wysocki | 9d8d05a | 2009-04-15 17:44:01 +0000 | [diff] [blame] | 5008 | #ifdef CONFIG_PM |
| 5009 | static int ixgbe_suspend(struct pci_dev *pdev, pm_message_t state) |
| 5010 | { |
| 5011 | int retval; |
| 5012 | bool wake; |
| 5013 | |
| 5014 | retval = __ixgbe_shutdown(pdev, &wake); |
| 5015 | if (retval) |
| 5016 | return retval; |
| 5017 | |
| 5018 | if (wake) { |
| 5019 | pci_prepare_to_sleep(pdev); |
| 5020 | } else { |
| 5021 | pci_wake_from_d3(pdev, false); |
| 5022 | pci_set_power_state(pdev, PCI_D3hot); |
| 5023 | } |
| 5024 | |
| 5025 | return 0; |
| 5026 | } |
| 5027 | #endif /* CONFIG_PM */ |
| 5028 | |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 5029 | static void ixgbe_shutdown(struct pci_dev *pdev) |
| 5030 | { |
Rafael J. Wysocki | 9d8d05a | 2009-04-15 17:44:01 +0000 | [diff] [blame] | 5031 | bool wake; |
| 5032 | |
| 5033 | __ixgbe_shutdown(pdev, &wake); |
| 5034 | |
| 5035 | if (system_state == SYSTEM_POWER_OFF) { |
| 5036 | pci_wake_from_d3(pdev, wake); |
| 5037 | pci_set_power_state(pdev, PCI_D3hot); |
| 5038 | } |
Alexander Duyck | b3c8b4b | 2008-09-11 20:04:56 -0700 | [diff] [blame] | 5039 | } |
| 5040 | |
| 5041 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5042 | * ixgbe_update_stats - Update the board statistics counters. |
| 5043 | * @adapter: board private structure |
| 5044 | **/ |
| 5045 | void ixgbe_update_stats(struct ixgbe_adapter *adapter) |
| 5046 | { |
Ajit Khaparde | 2d86f13 | 2009-10-07 02:43:49 +0000 | [diff] [blame] | 5047 | struct net_device *netdev = adapter->netdev; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5048 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 5049 | struct ixgbe_hw_stats *hwstats = &adapter->stats; |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 5050 | u64 total_mpc = 0; |
| 5051 | u32 i, missed_rx = 0, mpc, bprc, lxon, lxoff, xon_off_tot; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 5052 | u64 non_eop_descs = 0, restart_queue = 0, tx_busy = 0; |
| 5053 | u64 alloc_rx_page_failed = 0, alloc_rx_buff_failed = 0; |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 5054 | u64 bytes = 0, packets = 0, hw_csum_rx_error = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5055 | |
Don Skidmore | d08935c | 2010-06-11 13:20:29 +0000 | [diff] [blame] | 5056 | if (test_bit(__IXGBE_DOWN, &adapter->state) || |
| 5057 | test_bit(__IXGBE_RESETTING, &adapter->state)) |
| 5058 | return; |
| 5059 | |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 5060 | if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) { |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 5061 | u64 rsc_count = 0; |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 5062 | u64 rsc_flush = 0; |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 5063 | for (i = 0; i < adapter->num_rx_queues; i++) { |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 5064 | rsc_count += adapter->rx_ring[i]->rx_stats.rsc_count; |
| 5065 | rsc_flush += adapter->rx_ring[i]->rx_stats.rsc_flush; |
Mallikarjuna R Chilakala | 94b982b | 2009-11-23 06:32:06 +0000 | [diff] [blame] | 5066 | } |
| 5067 | adapter->rsc_total_count = rsc_count; |
| 5068 | adapter->rsc_total_flush = rsc_flush; |
PJ Waskiewicz | d51019a | 2009-03-13 22:12:48 +0000 | [diff] [blame] | 5069 | } |
| 5070 | |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 5071 | for (i = 0; i < adapter->num_rx_queues; i++) { |
| 5072 | struct ixgbe_ring *rx_ring = adapter->rx_ring[i]; |
| 5073 | non_eop_descs += rx_ring->rx_stats.non_eop_descs; |
| 5074 | alloc_rx_page_failed += rx_ring->rx_stats.alloc_rx_page_failed; |
| 5075 | alloc_rx_buff_failed += rx_ring->rx_stats.alloc_rx_buff_failed; |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 5076 | hw_csum_rx_error += rx_ring->rx_stats.csum_err; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 5077 | bytes += rx_ring->stats.bytes; |
| 5078 | packets += rx_ring->stats.packets; |
| 5079 | } |
Mallikarjuna R Chilakala | eb985f0 | 2009-12-15 11:56:59 +0000 | [diff] [blame] | 5080 | adapter->non_eop_descs = non_eop_descs; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 5081 | adapter->alloc_rx_page_failed = alloc_rx_page_failed; |
| 5082 | adapter->alloc_rx_buff_failed = alloc_rx_buff_failed; |
Alexander Duyck | 8a0da21 | 2012-01-31 02:59:49 +0000 | [diff] [blame] | 5083 | adapter->hw_csum_rx_error = hw_csum_rx_error; |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 5084 | netdev->stats.rx_bytes = bytes; |
| 5085 | netdev->stats.rx_packets = packets; |
| 5086 | |
| 5087 | bytes = 0; |
| 5088 | packets = 0; |
| 5089 | /* gather some stats to the adapter struct that are per queue */ |
| 5090 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 5091 | struct ixgbe_ring *tx_ring = adapter->tx_ring[i]; |
| 5092 | restart_queue += tx_ring->tx_stats.restart_queue; |
| 5093 | tx_busy += tx_ring->tx_stats.tx_busy; |
| 5094 | bytes += tx_ring->stats.bytes; |
| 5095 | packets += tx_ring->stats.packets; |
| 5096 | } |
| 5097 | adapter->restart_queue = restart_queue; |
| 5098 | adapter->tx_busy = tx_busy; |
| 5099 | netdev->stats.tx_bytes = bytes; |
| 5100 | netdev->stats.tx_packets = packets; |
Jesse Brandeburg | 7ca3bc5 | 2009-12-03 11:33:29 +0000 | [diff] [blame] | 5101 | |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5102 | hwstats->crcerrs += IXGBE_READ_REG(hw, IXGBE_CRCERRS); |
Emil Tantilov | 1a70db4b | 2011-07-26 07:51:41 +0000 | [diff] [blame] | 5103 | |
| 5104 | /* 8 register reads */ |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 5105 | for (i = 0; i < 8; i++) { |
| 5106 | /* for packet buffers not used, the register should read 0 */ |
| 5107 | mpc = IXGBE_READ_REG(hw, IXGBE_MPC(i)); |
| 5108 | missed_rx += mpc; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5109 | hwstats->mpc[i] += mpc; |
| 5110 | total_mpc += hwstats->mpc[i]; |
Emil Tantilov | 1a70db4b | 2011-07-26 07:51:41 +0000 | [diff] [blame] | 5111 | hwstats->pxontxc[i] += IXGBE_READ_REG(hw, IXGBE_PXONTXC(i)); |
| 5112 | hwstats->pxofftxc[i] += IXGBE_READ_REG(hw, IXGBE_PXOFFTXC(i)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5113 | switch (hw->mac.type) { |
| 5114 | case ixgbe_mac_82598EB: |
Emil Tantilov | 1a70db4b | 2011-07-26 07:51:41 +0000 | [diff] [blame] | 5115 | hwstats->rnbc[i] += IXGBE_READ_REG(hw, IXGBE_RNBC(i)); |
| 5116 | hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC(i)); |
| 5117 | hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC(i)); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5118 | hwstats->pxonrxc[i] += |
| 5119 | IXGBE_READ_REG(hw, IXGBE_PXONRXC(i)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5120 | break; |
| 5121 | case ixgbe_mac_82599EB: |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 5122 | case ixgbe_mac_X540: |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5123 | hwstats->pxonrxc[i] += |
| 5124 | IXGBE_READ_REG(hw, IXGBE_PXONRXCNT(i)); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5125 | break; |
| 5126 | default: |
| 5127 | break; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5128 | } |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 5129 | } |
Emil Tantilov | 1a70db4b | 2011-07-26 07:51:41 +0000 | [diff] [blame] | 5130 | |
| 5131 | /*16 register reads */ |
| 5132 | for (i = 0; i < 16; i++) { |
| 5133 | hwstats->qptc[i] += IXGBE_READ_REG(hw, IXGBE_QPTC(i)); |
| 5134 | hwstats->qprc[i] += IXGBE_READ_REG(hw, IXGBE_QPRC(i)); |
| 5135 | if ((hw->mac.type == ixgbe_mac_82599EB) || |
| 5136 | (hw->mac.type == ixgbe_mac_X540)) { |
| 5137 | hwstats->qbtc[i] += IXGBE_READ_REG(hw, IXGBE_QBTC_L(i)); |
| 5138 | IXGBE_READ_REG(hw, IXGBE_QBTC_H(i)); /* to clear */ |
| 5139 | hwstats->qbrc[i] += IXGBE_READ_REG(hw, IXGBE_QBRC_L(i)); |
| 5140 | IXGBE_READ_REG(hw, IXGBE_QBRC_H(i)); /* to clear */ |
| 5141 | } |
| 5142 | } |
| 5143 | |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5144 | hwstats->gprc += IXGBE_READ_REG(hw, IXGBE_GPRC); |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 5145 | /* work around hardware counting issue */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5146 | hwstats->gprc -= missed_rx; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5147 | |
John Fastabend | c84d324 | 2010-11-16 19:27:12 -0800 | [diff] [blame] | 5148 | ixgbe_update_xoff_received(adapter); |
| 5149 | |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 5150 | /* 82598 hardware only has a 32 bit counter in the high register */ |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5151 | switch (hw->mac.type) { |
| 5152 | case ixgbe_mac_82598EB: |
| 5153 | hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXC); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5154 | hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCH); |
| 5155 | hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCH); |
| 5156 | hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORH); |
| 5157 | break; |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 5158 | case ixgbe_mac_X540: |
Emil Tantilov | 58f6bcf | 2011-04-21 08:43:43 +0000 | [diff] [blame] | 5159 | /* OS2BMC stats are X540 only*/ |
| 5160 | hwstats->o2bgptc += IXGBE_READ_REG(hw, IXGBE_O2BGPTC); |
| 5161 | hwstats->o2bspc += IXGBE_READ_REG(hw, IXGBE_O2BSPC); |
| 5162 | hwstats->b2ospc += IXGBE_READ_REG(hw, IXGBE_B2OSPC); |
| 5163 | hwstats->b2ogprc += IXGBE_READ_REG(hw, IXGBE_B2OGPRC); |
| 5164 | case ixgbe_mac_82599EB: |
Alexander Duyck | a4d4f62 | 2012-03-28 08:03:32 +0000 | [diff] [blame] | 5165 | for (i = 0; i < 16; i++) |
| 5166 | adapter->hw_rx_no_dma_resources += |
| 5167 | IXGBE_READ_REG(hw, IXGBE_QPRDC(i)); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5168 | hwstats->gorc += IXGBE_READ_REG(hw, IXGBE_GORCL); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5169 | IXGBE_READ_REG(hw, IXGBE_GORCH); /* to clear */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5170 | hwstats->gotc += IXGBE_READ_REG(hw, IXGBE_GOTCL); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5171 | IXGBE_READ_REG(hw, IXGBE_GOTCH); /* to clear */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5172 | hwstats->tor += IXGBE_READ_REG(hw, IXGBE_TORL); |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5173 | IXGBE_READ_REG(hw, IXGBE_TORH); /* to clear */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5174 | hwstats->lxonrxc += IXGBE_READ_REG(hw, IXGBE_LXONRXCNT); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5175 | hwstats->fdirmatch += IXGBE_READ_REG(hw, IXGBE_FDIRMATCH); |
| 5176 | hwstats->fdirmiss += IXGBE_READ_REG(hw, IXGBE_FDIRMISS); |
Yi Zou | 6d45522 | 2009-05-13 13:12:16 +0000 | [diff] [blame] | 5177 | #ifdef IXGBE_FCOE |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5178 | hwstats->fccrc += IXGBE_READ_REG(hw, IXGBE_FCCRC); |
| 5179 | hwstats->fcoerpdc += IXGBE_READ_REG(hw, IXGBE_FCOERPDC); |
| 5180 | hwstats->fcoeprc += IXGBE_READ_REG(hw, IXGBE_FCOEPRC); |
| 5181 | hwstats->fcoeptc += IXGBE_READ_REG(hw, IXGBE_FCOEPTC); |
| 5182 | hwstats->fcoedwrc += IXGBE_READ_REG(hw, IXGBE_FCOEDWRC); |
| 5183 | hwstats->fcoedwtc += IXGBE_READ_REG(hw, IXGBE_FCOEDWTC); |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 5184 | /* Add up per cpu counters for total ddp aloc fail */ |
Alexander Duyck | 5a1ee27 | 2012-05-05 17:14:28 +0000 | [diff] [blame^] | 5185 | if (adapter->fcoe.ddp_pool) { |
| 5186 | struct ixgbe_fcoe *fcoe = &adapter->fcoe; |
| 5187 | struct ixgbe_fcoe_ddp_pool *ddp_pool; |
| 5188 | unsigned int cpu; |
| 5189 | u64 noddp = 0, noddp_ext_buff = 0; |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 5190 | for_each_possible_cpu(cpu) { |
Alexander Duyck | 5a1ee27 | 2012-05-05 17:14:28 +0000 | [diff] [blame^] | 5191 | ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu); |
| 5192 | noddp += ddp_pool->noddp; |
| 5193 | noddp_ext_buff += ddp_pool->noddp_ext_buff; |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 5194 | } |
Alexander Duyck | 5a1ee27 | 2012-05-05 17:14:28 +0000 | [diff] [blame^] | 5195 | hwstats->fcoe_noddp = noddp; |
| 5196 | hwstats->fcoe_noddp_ext_buff = noddp_ext_buff; |
Amir Hanania | 7b859eb | 2011-08-31 02:07:55 +0000 | [diff] [blame] | 5197 | } |
Yi Zou | 6d45522 | 2009-05-13 13:12:16 +0000 | [diff] [blame] | 5198 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | bd50817 | 2010-11-16 19:27:03 -0800 | [diff] [blame] | 5199 | break; |
| 5200 | default: |
| 5201 | break; |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5202 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5203 | bprc = IXGBE_READ_REG(hw, IXGBE_BPRC); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5204 | hwstats->bprc += bprc; |
| 5205 | hwstats->mprc += IXGBE_READ_REG(hw, IXGBE_MPRC); |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5206 | if (hw->mac.type == ixgbe_mac_82598EB) |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5207 | hwstats->mprc -= bprc; |
| 5208 | hwstats->roc += IXGBE_READ_REG(hw, IXGBE_ROC); |
| 5209 | hwstats->prc64 += IXGBE_READ_REG(hw, IXGBE_PRC64); |
| 5210 | hwstats->prc127 += IXGBE_READ_REG(hw, IXGBE_PRC127); |
| 5211 | hwstats->prc255 += IXGBE_READ_REG(hw, IXGBE_PRC255); |
| 5212 | hwstats->prc511 += IXGBE_READ_REG(hw, IXGBE_PRC511); |
| 5213 | hwstats->prc1023 += IXGBE_READ_REG(hw, IXGBE_PRC1023); |
| 5214 | hwstats->prc1522 += IXGBE_READ_REG(hw, IXGBE_PRC1522); |
| 5215 | hwstats->rlec += IXGBE_READ_REG(hw, IXGBE_RLEC); |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 5216 | lxon = IXGBE_READ_REG(hw, IXGBE_LXONTXC); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5217 | hwstats->lxontxc += lxon; |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 5218 | lxoff = IXGBE_READ_REG(hw, IXGBE_LXOFFTXC); |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5219 | hwstats->lxofftxc += lxoff; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5220 | hwstats->gptc += IXGBE_READ_REG(hw, IXGBE_GPTC); |
| 5221 | hwstats->mptc += IXGBE_READ_REG(hw, IXGBE_MPTC); |
Ayyappan Veeraiyan | 6f11eef | 2008-02-01 15:59:14 -0800 | [diff] [blame] | 5222 | /* |
| 5223 | * 82598 errata - tx of flow control packets is included in tx counters |
| 5224 | */ |
| 5225 | xon_off_tot = lxon + lxoff; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5226 | hwstats->gptc -= xon_off_tot; |
| 5227 | hwstats->mptc -= xon_off_tot; |
| 5228 | hwstats->gotc -= (xon_off_tot * (ETH_ZLEN + ETH_FCS_LEN)); |
| 5229 | hwstats->ruc += IXGBE_READ_REG(hw, IXGBE_RUC); |
| 5230 | hwstats->rfc += IXGBE_READ_REG(hw, IXGBE_RFC); |
| 5231 | hwstats->rjc += IXGBE_READ_REG(hw, IXGBE_RJC); |
| 5232 | hwstats->tpr += IXGBE_READ_REG(hw, IXGBE_TPR); |
| 5233 | hwstats->ptc64 += IXGBE_READ_REG(hw, IXGBE_PTC64); |
| 5234 | hwstats->ptc64 -= xon_off_tot; |
| 5235 | hwstats->ptc127 += IXGBE_READ_REG(hw, IXGBE_PTC127); |
| 5236 | hwstats->ptc255 += IXGBE_READ_REG(hw, IXGBE_PTC255); |
| 5237 | hwstats->ptc511 += IXGBE_READ_REG(hw, IXGBE_PTC511); |
| 5238 | hwstats->ptc1023 += IXGBE_READ_REG(hw, IXGBE_PTC1023); |
| 5239 | hwstats->ptc1522 += IXGBE_READ_REG(hw, IXGBE_PTC1522); |
| 5240 | hwstats->bptc += IXGBE_READ_REG(hw, IXGBE_BPTC); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5241 | |
| 5242 | /* Fill out the OS statistics structure */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5243 | netdev->stats.multicast = hwstats->mprc; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5244 | |
| 5245 | /* Rx Errors */ |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5246 | netdev->stats.rx_errors = hwstats->crcerrs + hwstats->rlec; |
Ajit Khaparde | 2d86f13 | 2009-10-07 02:43:49 +0000 | [diff] [blame] | 5247 | netdev->stats.rx_dropped = 0; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5248 | netdev->stats.rx_length_errors = hwstats->rlec; |
| 5249 | netdev->stats.rx_crc_errors = hwstats->crcerrs; |
Ajit Khaparde | 2d86f13 | 2009-10-07 02:43:49 +0000 | [diff] [blame] | 5250 | netdev->stats.rx_missed_errors = total_mpc; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5251 | } |
| 5252 | |
| 5253 | /** |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 5254 | * ixgbe_fdir_reinit_subtask - worker thread to reinit FDIR filter table |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 5255 | * @adapter: pointer to the device adapter structure |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5256 | **/ |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 5257 | static void ixgbe_fdir_reinit_subtask(struct ixgbe_adapter *adapter) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5258 | { |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5259 | struct ixgbe_hw *hw = &adapter->hw; |
| 5260 | int i; |
| 5261 | |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 5262 | if (!(adapter->flags2 & IXGBE_FLAG2_FDIR_REQUIRES_REINIT)) |
| 5263 | return; |
| 5264 | |
| 5265 | adapter->flags2 &= ~IXGBE_FLAG2_FDIR_REQUIRES_REINIT; |
| 5266 | |
| 5267 | /* if interface is down do nothing */ |
| 5268 | if (test_bit(__IXGBE_DOWN, &adapter->state)) |
| 5269 | return; |
| 5270 | |
| 5271 | /* do nothing if we are not using signature filters */ |
| 5272 | if (!(adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE)) |
| 5273 | return; |
| 5274 | |
| 5275 | adapter->fdir_overflow++; |
| 5276 | |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5277 | if (ixgbe_reinit_fdir_tables_82599(hw) == 0) { |
| 5278 | for (i = 0; i < adapter->num_tx_queues; i++) |
Alexander Duyck | 7d637bc | 2010-11-16 19:26:56 -0800 | [diff] [blame] | 5279 | set_bit(__IXGBE_TX_FDIR_INIT_DONE, |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 5280 | &(adapter->tx_ring[i]->state)); |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 5281 | /* re-enable flow director interrupts */ |
| 5282 | IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMS_FLOW_DIR); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5283 | } else { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 5284 | e_err(probe, "failed to finish FDIR re-initialization, " |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 5285 | "ignored adding FDIR ATR filters\n"); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5286 | } |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5287 | } |
| 5288 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5289 | /** |
| 5290 | * ixgbe_check_hang_subtask - check for hung queues and dropped interrupts |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 5291 | * @adapter: pointer to the device adapter structure |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5292 | * |
| 5293 | * This function serves two purposes. First it strobes the interrupt lines |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 5294 | * in order to make certain interrupts are occurring. Secondly it sets the |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5295 | * 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] | 5296 | * determine if a hang has occurred. |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5297 | */ |
| 5298 | static void ixgbe_check_hang_subtask(struct ixgbe_adapter *adapter) |
| 5299 | { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5300 | struct ixgbe_hw *hw = &adapter->hw; |
| 5301 | u64 eics = 0; |
| 5302 | int i; |
| 5303 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5304 | /* If we're down or resetting, just bail */ |
| 5305 | if (test_bit(__IXGBE_DOWN, &adapter->state) || |
| 5306 | test_bit(__IXGBE_RESETTING, &adapter->state)) |
| 5307 | return; |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 5308 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5309 | /* Force detection of hung controller */ |
| 5310 | if (netif_carrier_ok(adapter->netdev)) { |
| 5311 | for (i = 0; i < adapter->num_tx_queues; i++) |
| 5312 | set_check_for_tx_hang(adapter->tx_ring[i]); |
| 5313 | } |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 5314 | |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 5315 | if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) { |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 5316 | /* |
| 5317 | * for legacy and MSI interrupts don't set any bits |
Jesse Brandeburg | 22d5a71 | 2009-03-19 01:24:04 +0000 | [diff] [blame] | 5318 | * that are enabled for EIAM, because this operation |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 5319 | * would set *both* EIMS and EICS for any bit in EIAM |
| 5320 | */ |
| 5321 | IXGBE_WRITE_REG(hw, IXGBE_EICS, |
| 5322 | (IXGBE_EICS_TCP_TIMER | IXGBE_EICS_OTHER)); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5323 | } else { |
| 5324 | /* get one bit for every active tx/rx interrupt vector */ |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 5325 | for (i = 0; i < adapter->num_q_vectors; i++) { |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5326 | struct ixgbe_q_vector *qv = adapter->q_vector[i]; |
Alexander Duyck | efe3d3c | 2011-07-15 03:05:21 +0000 | [diff] [blame] | 5327 | if (qv->rx.ring || qv->tx.ring) |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5328 | eics |= ((u64)1 << i); |
| 5329 | } |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 5330 | } |
| 5331 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5332 | /* Cause software interrupt to ensure rings are cleaned */ |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 5333 | ixgbe_irq_rearm_queues(adapter, eics); |
| 5334 | |
Alexander Duyck | fe49f04 | 2009-06-04 16:00:09 +0000 | [diff] [blame] | 5335 | } |
| 5336 | |
| 5337 | /** |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5338 | * ixgbe_watchdog_update_link - update the link status |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 5339 | * @adapter: pointer to the device adapter structure |
| 5340 | * @link_speed: pointer to a u32 to store the link_speed |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 5341 | **/ |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5342 | static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter) |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5343 | { |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 5344 | struct ixgbe_hw *hw = &adapter->hw; |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5345 | u32 link_speed = adapter->link_speed; |
| 5346 | bool link_up = adapter->link_up; |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 5347 | bool pfc_en = adapter->dcb_cfg.pfc_mode_enable; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5348 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5349 | if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)) |
| 5350 | return; |
| 5351 | |
| 5352 | if (hw->mac.ops.check_link) { |
| 5353 | 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] | 5354 | } else { |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5355 | /* always assume link is up, if no check link function */ |
| 5356 | link_speed = IXGBE_LINK_SPEED_10GB_FULL; |
| 5357 | link_up = true; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5358 | } |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 5359 | |
| 5360 | if (adapter->ixgbe_ieee_pfc) |
| 5361 | pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en); |
| 5362 | |
Alexander Duyck | 3ebe8fd | 2012-04-25 04:36:38 +0000 | [diff] [blame] | 5363 | if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) { |
Alexander Duyck | 041441d | 2012-04-19 17:48:48 +0000 | [diff] [blame] | 5364 | hw->mac.ops.fc_enable(hw); |
Alexander Duyck | 3ebe8fd | 2012-04-25 04:36:38 +0000 | [diff] [blame] | 5365 | ixgbe_set_rx_drop_en(adapter); |
| 5366 | } |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5367 | |
| 5368 | if (link_up || |
| 5369 | time_after(jiffies, (adapter->link_check_timeout + |
| 5370 | IXGBE_TRY_LINK_TIMEOUT))) { |
| 5371 | adapter->flags &= ~IXGBE_FLAG_NEED_LINK_UPDATE; |
| 5372 | IXGBE_WRITE_REG(hw, IXGBE_EIMS, IXGBE_EIMC_LSC); |
| 5373 | IXGBE_WRITE_FLUSH(hw); |
| 5374 | } |
| 5375 | |
| 5376 | adapter->link_up = link_up; |
| 5377 | adapter->link_speed = link_speed; |
| 5378 | } |
| 5379 | |
| 5380 | /** |
| 5381 | * ixgbe_watchdog_link_is_up - update netif_carrier status and |
| 5382 | * print link up message |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 5383 | * @adapter: pointer to the device adapter structure |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5384 | **/ |
| 5385 | static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter) |
| 5386 | { |
| 5387 | struct net_device *netdev = adapter->netdev; |
| 5388 | struct ixgbe_hw *hw = &adapter->hw; |
| 5389 | u32 link_speed = adapter->link_speed; |
| 5390 | bool flow_rx, flow_tx; |
| 5391 | |
| 5392 | /* only continue if link was previously down */ |
| 5393 | if (netif_carrier_ok(netdev)) |
| 5394 | return; |
| 5395 | |
| 5396 | adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP; |
| 5397 | |
| 5398 | switch (hw->mac.type) { |
| 5399 | case ixgbe_mac_82598EB: { |
| 5400 | u32 frctl = IXGBE_READ_REG(hw, IXGBE_FCTRL); |
| 5401 | u32 rmcs = IXGBE_READ_REG(hw, IXGBE_RMCS); |
| 5402 | flow_rx = !!(frctl & IXGBE_FCTRL_RFCE); |
| 5403 | flow_tx = !!(rmcs & IXGBE_RMCS_TFCE_802_3X); |
| 5404 | } |
| 5405 | break; |
| 5406 | case ixgbe_mac_X540: |
| 5407 | case ixgbe_mac_82599EB: { |
| 5408 | u32 mflcn = IXGBE_READ_REG(hw, IXGBE_MFLCN); |
| 5409 | u32 fccfg = IXGBE_READ_REG(hw, IXGBE_FCCFG); |
| 5410 | flow_rx = !!(mflcn & IXGBE_MFLCN_RFCE); |
| 5411 | flow_tx = !!(fccfg & IXGBE_FCCFG_TFCE_802_3X); |
| 5412 | } |
| 5413 | break; |
| 5414 | default: |
| 5415 | flow_tx = false; |
| 5416 | flow_rx = false; |
| 5417 | break; |
| 5418 | } |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 5419 | |
| 5420 | #ifdef CONFIG_IXGBE_PTP |
| 5421 | ixgbe_ptp_start_cyclecounter(adapter); |
| 5422 | #endif |
| 5423 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5424 | e_info(drv, "NIC Link is Up %s, Flow Control: %s\n", |
| 5425 | (link_speed == IXGBE_LINK_SPEED_10GB_FULL ? |
| 5426 | "10 Gbps" : |
| 5427 | (link_speed == IXGBE_LINK_SPEED_1GB_FULL ? |
| 5428 | "1 Gbps" : |
| 5429 | (link_speed == IXGBE_LINK_SPEED_100_FULL ? |
| 5430 | "100 Mbps" : |
| 5431 | "unknown speed"))), |
| 5432 | ((flow_rx && flow_tx) ? "RX/TX" : |
| 5433 | (flow_rx ? "RX" : |
| 5434 | (flow_tx ? "TX" : "None")))); |
| 5435 | |
| 5436 | netif_carrier_on(netdev); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5437 | ixgbe_check_vf_rate_limit(adapter); |
Alexander Duyck | befa2af | 2012-05-05 05:30:38 +0000 | [diff] [blame] | 5438 | |
| 5439 | /* ping all the active vfs to let them know link has changed */ |
| 5440 | ixgbe_ping_all_vfs(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5441 | } |
| 5442 | |
| 5443 | /** |
| 5444 | * ixgbe_watchdog_link_is_down - update netif_carrier status and |
| 5445 | * print link down message |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 5446 | * @adapter: pointer to the adapter structure |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5447 | **/ |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 5448 | static void ixgbe_watchdog_link_is_down(struct ixgbe_adapter *adapter) |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5449 | { |
| 5450 | struct net_device *netdev = adapter->netdev; |
| 5451 | struct ixgbe_hw *hw = &adapter->hw; |
| 5452 | |
| 5453 | adapter->link_up = false; |
| 5454 | adapter->link_speed = 0; |
| 5455 | |
| 5456 | /* only continue if link was up previously */ |
| 5457 | if (!netif_carrier_ok(netdev)) |
| 5458 | return; |
| 5459 | |
| 5460 | /* poll for SFP+ cable when link is down */ |
| 5461 | if (ixgbe_is_sfp(hw) && hw->mac.type == ixgbe_mac_82598EB) |
| 5462 | adapter->flags2 |= IXGBE_FLAG2_SEARCH_FOR_SFP; |
| 5463 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 5464 | #ifdef CONFIG_IXGBE_PTP |
| 5465 | ixgbe_ptp_start_cyclecounter(adapter); |
| 5466 | #endif |
| 5467 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5468 | e_info(drv, "NIC Link is Down\n"); |
| 5469 | netif_carrier_off(netdev); |
Alexander Duyck | befa2af | 2012-05-05 05:30:38 +0000 | [diff] [blame] | 5470 | |
| 5471 | /* ping all the active vfs to let them know link has changed */ |
| 5472 | ixgbe_ping_all_vfs(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5473 | } |
| 5474 | |
| 5475 | /** |
| 5476 | * ixgbe_watchdog_flush_tx - flush queues on link down |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 5477 | * @adapter: pointer to the device adapter structure |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5478 | **/ |
| 5479 | static void ixgbe_watchdog_flush_tx(struct ixgbe_adapter *adapter) |
| 5480 | { |
| 5481 | int i; |
| 5482 | int some_tx_pending = 0; |
| 5483 | |
| 5484 | if (!netif_carrier_ok(adapter->netdev)) { |
| 5485 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 5486 | struct ixgbe_ring *tx_ring = adapter->tx_ring[i]; |
| 5487 | if (tx_ring->next_to_use != tx_ring->next_to_clean) { |
| 5488 | some_tx_pending = 1; |
| 5489 | break; |
| 5490 | } |
| 5491 | } |
| 5492 | |
| 5493 | if (some_tx_pending) { |
| 5494 | /* We've lost link, so the controller stops DMA, |
| 5495 | * but we've got queued Tx work that's never going |
| 5496 | * to get done, so reset controller to flush Tx. |
| 5497 | * (Do the reset outside of interrupt context). |
| 5498 | */ |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 5499 | adapter->flags2 |= IXGBE_FLAG2_RESET_REQUESTED; |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5500 | } |
| 5501 | } |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5502 | } |
| 5503 | |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 5504 | static void ixgbe_spoof_check(struct ixgbe_adapter *adapter) |
| 5505 | { |
| 5506 | u32 ssvpc; |
| 5507 | |
| 5508 | /* Do not perform spoof check for 82598 */ |
| 5509 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) |
| 5510 | return; |
| 5511 | |
| 5512 | ssvpc = IXGBE_READ_REG(&adapter->hw, IXGBE_SSVPC); |
| 5513 | |
| 5514 | /* |
| 5515 | * ssvpc register is cleared on read, if zero then no |
| 5516 | * spoofed packets in the last interval. |
| 5517 | */ |
| 5518 | if (!ssvpc) |
| 5519 | return; |
| 5520 | |
| 5521 | e_warn(drv, "%d Spoofed packets detected\n", ssvpc); |
| 5522 | } |
| 5523 | |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 5524 | /** |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5525 | * ixgbe_watchdog_subtask - check and bring link up |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 5526 | * @adapter: pointer to the device adapter structure |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 5527 | **/ |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5528 | static void ixgbe_watchdog_subtask(struct ixgbe_adapter *adapter) |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 5529 | { |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5530 | /* if interface is down do nothing */ |
Emil Tantilov | 7edebf9 | 2011-08-27 07:18:37 +0000 | [diff] [blame] | 5531 | if (test_bit(__IXGBE_DOWN, &adapter->state) || |
| 5532 | test_bit(__IXGBE_RESETTING, &adapter->state)) |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5533 | return; |
Jesse Brandeburg | cf8280e | 2008-09-11 19:55:32 -0700 | [diff] [blame] | 5534 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5535 | ixgbe_watchdog_update_link(adapter); |
John Fastabend | 10eec95 | 2010-02-03 14:23:32 +0000 | [diff] [blame] | 5536 | |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5537 | if (adapter->link_up) |
| 5538 | ixgbe_watchdog_link_is_up(adapter); |
| 5539 | else |
| 5540 | ixgbe_watchdog_link_is_down(adapter); |
Nelson, Shannon | bc59fcd | 2009-04-27 22:43:12 +0000 | [diff] [blame] | 5541 | |
Greg Rose | a985b6c3 | 2010-11-18 03:02:52 +0000 | [diff] [blame] | 5542 | ixgbe_spoof_check(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5543 | ixgbe_update_stats(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5544 | |
| 5545 | ixgbe_watchdog_flush_tx(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5546 | } |
| 5547 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5548 | /** |
| 5549 | * ixgbe_sfp_detection_subtask - poll for SFP+ cable |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 5550 | * @adapter: the ixgbe adapter structure |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5551 | **/ |
| 5552 | static void ixgbe_sfp_detection_subtask(struct ixgbe_adapter *adapter) |
| 5553 | { |
| 5554 | struct ixgbe_hw *hw = &adapter->hw; |
| 5555 | s32 err; |
| 5556 | |
| 5557 | /* not searching for SFP so there is nothing to do here */ |
| 5558 | if (!(adapter->flags2 & IXGBE_FLAG2_SEARCH_FOR_SFP) && |
| 5559 | !(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET)) |
| 5560 | return; |
| 5561 | |
| 5562 | /* someone else is in init, wait until next service event */ |
| 5563 | if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state)) |
| 5564 | return; |
| 5565 | |
| 5566 | err = hw->phy.ops.identify_sfp(hw); |
| 5567 | if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) |
| 5568 | goto sfp_out; |
| 5569 | |
| 5570 | if (err == IXGBE_ERR_SFP_NOT_PRESENT) { |
| 5571 | /* If no cable is present, then we need to reset |
| 5572 | * the next time we find a good cable. */ |
| 5573 | adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET; |
| 5574 | } |
| 5575 | |
| 5576 | /* exit on error */ |
| 5577 | if (err) |
| 5578 | goto sfp_out; |
| 5579 | |
| 5580 | /* exit if reset not needed */ |
| 5581 | if (!(adapter->flags2 & IXGBE_FLAG2_SFP_NEEDS_RESET)) |
| 5582 | goto sfp_out; |
| 5583 | |
| 5584 | adapter->flags2 &= ~IXGBE_FLAG2_SFP_NEEDS_RESET; |
| 5585 | |
| 5586 | /* |
| 5587 | * A module may be identified correctly, but the EEPROM may not have |
| 5588 | * support for that module. setup_sfp() will fail in that case, so |
| 5589 | * we should not allow that module to load. |
| 5590 | */ |
| 5591 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 5592 | err = hw->phy.ops.reset(hw); |
| 5593 | else |
| 5594 | err = hw->mac.ops.setup_sfp(hw); |
| 5595 | |
| 5596 | if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) |
| 5597 | goto sfp_out; |
| 5598 | |
| 5599 | adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG; |
| 5600 | e_info(probe, "detected SFP+: %d\n", hw->phy.sfp_type); |
| 5601 | |
| 5602 | sfp_out: |
| 5603 | clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state); |
| 5604 | |
| 5605 | if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) && |
| 5606 | (adapter->netdev->reg_state == NETREG_REGISTERED)) { |
| 5607 | e_dev_err("failed to initialize because an unsupported " |
| 5608 | "SFP+ module type was detected.\n"); |
| 5609 | e_dev_err("Reload the driver after installing a " |
| 5610 | "supported module.\n"); |
| 5611 | unregister_netdev(adapter->netdev); |
| 5612 | } |
| 5613 | } |
| 5614 | |
| 5615 | /** |
| 5616 | * ixgbe_sfp_link_config_subtask - set up link SFP after module install |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 5617 | * @adapter: the ixgbe adapter structure |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5618 | **/ |
| 5619 | static void ixgbe_sfp_link_config_subtask(struct ixgbe_adapter *adapter) |
| 5620 | { |
| 5621 | struct ixgbe_hw *hw = &adapter->hw; |
| 5622 | u32 autoneg; |
| 5623 | bool negotiation; |
| 5624 | |
| 5625 | if (!(adapter->flags & IXGBE_FLAG_NEED_LINK_CONFIG)) |
| 5626 | return; |
| 5627 | |
| 5628 | /* someone else is in init, wait until next service event */ |
| 5629 | if (test_and_set_bit(__IXGBE_IN_SFP_INIT, &adapter->state)) |
| 5630 | return; |
| 5631 | |
| 5632 | adapter->flags &= ~IXGBE_FLAG_NEED_LINK_CONFIG; |
| 5633 | |
| 5634 | autoneg = hw->phy.autoneg_advertised; |
| 5635 | if ((!autoneg) && (hw->mac.ops.get_link_capabilities)) |
| 5636 | hw->mac.ops.get_link_capabilities(hw, &autoneg, &negotiation); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5637 | if (hw->mac.ops.setup_link) |
| 5638 | hw->mac.ops.setup_link(hw, autoneg, negotiation, true); |
| 5639 | |
| 5640 | adapter->flags |= IXGBE_FLAG_NEED_LINK_UPDATE; |
| 5641 | adapter->link_check_timeout = jiffies; |
| 5642 | clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state); |
| 5643 | } |
| 5644 | |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 5645 | #ifdef CONFIG_PCI_IOV |
| 5646 | static void ixgbe_check_for_bad_vf(struct ixgbe_adapter *adapter) |
| 5647 | { |
| 5648 | int vf; |
| 5649 | struct ixgbe_hw *hw = &adapter->hw; |
| 5650 | struct net_device *netdev = adapter->netdev; |
| 5651 | u32 gpc; |
| 5652 | u32 ciaa, ciad; |
| 5653 | |
| 5654 | gpc = IXGBE_READ_REG(hw, IXGBE_TXDGPC); |
| 5655 | if (gpc) /* If incrementing then no need for the check below */ |
| 5656 | return; |
| 5657 | /* |
| 5658 | * Check to see if a bad DMA write target from an errant or |
| 5659 | * malicious VF has caused a PCIe error. If so then we can |
| 5660 | * issue a VFLR to the offending VF(s) and then resume without |
| 5661 | * requesting a full slot reset. |
| 5662 | */ |
| 5663 | |
| 5664 | for (vf = 0; vf < adapter->num_vfs; vf++) { |
| 5665 | ciaa = (vf << 16) | 0x80000000; |
| 5666 | /* 32 bit read so align, we really want status at offset 6 */ |
| 5667 | ciaa |= PCI_COMMAND; |
| 5668 | IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa); |
| 5669 | ciad = IXGBE_READ_REG(hw, IXGBE_CIAD_82599); |
| 5670 | ciaa &= 0x7FFFFFFF; |
| 5671 | /* disable debug mode asap after reading data */ |
| 5672 | IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa); |
| 5673 | /* Get the upper 16 bits which will be the PCI status reg */ |
| 5674 | ciad >>= 16; |
| 5675 | if (ciad & PCI_STATUS_REC_MASTER_ABORT) { |
| 5676 | netdev_err(netdev, "VF %d Hung DMA\n", vf); |
| 5677 | /* Issue VFLR */ |
| 5678 | ciaa = (vf << 16) | 0x80000000; |
| 5679 | ciaa |= 0xA8; |
| 5680 | IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa); |
| 5681 | ciad = 0x00008000; /* VFLR */ |
| 5682 | IXGBE_WRITE_REG(hw, IXGBE_CIAD_82599, ciad); |
| 5683 | ciaa &= 0x7FFFFFFF; |
| 5684 | IXGBE_WRITE_REG(hw, IXGBE_CIAA_82599, ciaa); |
| 5685 | } |
| 5686 | } |
| 5687 | } |
| 5688 | |
| 5689 | #endif |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5690 | /** |
| 5691 | * ixgbe_service_timer - Timer Call-back |
| 5692 | * @data: pointer to adapter cast into an unsigned long |
| 5693 | **/ |
| 5694 | static void ixgbe_service_timer(unsigned long data) |
| 5695 | { |
| 5696 | struct ixgbe_adapter *adapter = (struct ixgbe_adapter *)data; |
| 5697 | unsigned long next_event_offset; |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 5698 | bool ready = true; |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5699 | |
| 5700 | /* poll faster when waiting for link */ |
| 5701 | if (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE) |
| 5702 | next_event_offset = HZ / 10; |
| 5703 | else |
| 5704 | next_event_offset = HZ * 2; |
| 5705 | |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 5706 | #ifdef CONFIG_PCI_IOV |
Alexander Duyck | 6bb78cf | 2012-02-08 07:51:22 +0000 | [diff] [blame] | 5707 | /* |
| 5708 | * don't bother with SR-IOV VF DMA hang check if there are |
| 5709 | * no VFs or the link is down |
| 5710 | */ |
| 5711 | if (!adapter->num_vfs || |
| 5712 | (adapter->flags & IXGBE_FLAG_NEED_LINK_UPDATE)) |
| 5713 | goto normal_timer_service; |
| 5714 | |
| 5715 | /* If we have VFs allocated then we must check for DMA hangs */ |
| 5716 | ixgbe_check_for_bad_vf(adapter); |
| 5717 | next_event_offset = HZ / 50; |
| 5718 | adapter->timer_event_accumulator++; |
| 5719 | |
| 5720 | if (adapter->timer_event_accumulator >= 100) |
| 5721 | adapter->timer_event_accumulator = 0; |
| 5722 | else |
| 5723 | ready = false; |
| 5724 | |
| 5725 | normal_timer_service: |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 5726 | #endif |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5727 | /* Reset the timer */ |
| 5728 | mod_timer(&adapter->service_timer, next_event_offset + jiffies); |
| 5729 | |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 5730 | if (ready) |
| 5731 | ixgbe_service_event_schedule(adapter); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5732 | } |
| 5733 | |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 5734 | static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter) |
| 5735 | { |
| 5736 | if (!(adapter->flags2 & IXGBE_FLAG2_RESET_REQUESTED)) |
| 5737 | return; |
| 5738 | |
| 5739 | adapter->flags2 &= ~IXGBE_FLAG2_RESET_REQUESTED; |
| 5740 | |
| 5741 | /* If we're already down or resetting, just bail */ |
| 5742 | if (test_bit(__IXGBE_DOWN, &adapter->state) || |
| 5743 | test_bit(__IXGBE_RESETTING, &adapter->state)) |
| 5744 | return; |
| 5745 | |
| 5746 | ixgbe_dump(adapter); |
| 5747 | netdev_err(adapter->netdev, "Reset adapter\n"); |
| 5748 | adapter->tx_timeout_count++; |
| 5749 | |
| 5750 | ixgbe_reinit_locked(adapter); |
| 5751 | } |
| 5752 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5753 | /** |
| 5754 | * ixgbe_service_task - manages and runs subtasks |
| 5755 | * @work: pointer to work_struct containing our data |
| 5756 | **/ |
| 5757 | static void ixgbe_service_task(struct work_struct *work) |
| 5758 | { |
| 5759 | struct ixgbe_adapter *adapter = container_of(work, |
| 5760 | struct ixgbe_adapter, |
| 5761 | service_task); |
| 5762 | |
Alexander Duyck | c83c6cb | 2011-04-27 09:21:16 +0000 | [diff] [blame] | 5763 | ixgbe_reset_subtask(adapter); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5764 | ixgbe_sfp_detection_subtask(adapter); |
| 5765 | ixgbe_sfp_link_config_subtask(adapter); |
Alexander Duyck | f0f9778 | 2011-04-22 04:08:09 +0000 | [diff] [blame] | 5766 | ixgbe_check_overtemp_subtask(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5767 | ixgbe_watchdog_subtask(adapter); |
Alexander Duyck | d034acf | 2011-04-27 09:25:34 +0000 | [diff] [blame] | 5768 | ixgbe_fdir_reinit_subtask(adapter); |
Alexander Duyck | 93c52dd | 2011-04-22 04:07:54 +0000 | [diff] [blame] | 5769 | ixgbe_check_hang_subtask(adapter); |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 5770 | #ifdef CONFIG_IXGBE_PTP |
| 5771 | ixgbe_ptp_overflow_check(adapter); |
| 5772 | #endif |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 5773 | |
| 5774 | ixgbe_service_event_complete(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5775 | } |
| 5776 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 5777 | static int ixgbe_tso(struct ixgbe_ring *tx_ring, |
| 5778 | struct ixgbe_tx_buffer *first, |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5779 | u8 *hdr_len) |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5780 | { |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 5781 | struct sk_buff *skb = first->skb; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5782 | u32 vlan_macip_lens, type_tucmd; |
Jesse Brandeburg | 9f8cdf4 | 2008-09-11 20:03:35 -0700 | [diff] [blame] | 5783 | u32 mss_l4len_idx, l4len; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5784 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5785 | if (!skb_is_gso(skb)) |
| 5786 | return 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5787 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5788 | if (skb_header_cloned(skb)) { |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5789 | int err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC); |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5790 | if (err) |
| 5791 | return err; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5792 | } |
| 5793 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5794 | /* ADV DTYP TUCMD MKRLOC/ISCSIHEDLEN */ |
| 5795 | type_tucmd = IXGBE_ADVTXD_TUCMD_L4T_TCP; |
| 5796 | |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5797 | if (first->protocol == __constant_htons(ETH_P_IP)) { |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5798 | struct iphdr *iph = ip_hdr(skb); |
| 5799 | iph->tot_len = 0; |
| 5800 | iph->check = 0; |
| 5801 | tcp_hdr(skb)->check = ~csum_tcpudp_magic(iph->saddr, |
| 5802 | iph->daddr, 0, |
| 5803 | IPPROTO_TCP, |
| 5804 | 0); |
| 5805 | type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5806 | first->tx_flags |= IXGBE_TX_FLAGS_TSO | |
| 5807 | IXGBE_TX_FLAGS_CSUM | |
| 5808 | IXGBE_TX_FLAGS_IPV4; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5809 | } else if (skb_is_gso_v6(skb)) { |
| 5810 | ipv6_hdr(skb)->payload_len = 0; |
| 5811 | tcp_hdr(skb)->check = |
| 5812 | ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, |
| 5813 | &ipv6_hdr(skb)->daddr, |
| 5814 | 0, IPPROTO_TCP, 0); |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5815 | first->tx_flags |= IXGBE_TX_FLAGS_TSO | |
| 5816 | IXGBE_TX_FLAGS_CSUM; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5817 | } |
| 5818 | |
Alexander Duyck | 091a624 | 2012-02-08 07:51:01 +0000 | [diff] [blame] | 5819 | /* compute header lengths */ |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5820 | l4len = tcp_hdrlen(skb); |
| 5821 | *hdr_len = skb_transport_offset(skb) + l4len; |
| 5822 | |
Alexander Duyck | 091a624 | 2012-02-08 07:51:01 +0000 | [diff] [blame] | 5823 | /* update gso size and bytecount with header size */ |
| 5824 | first->gso_segs = skb_shinfo(skb)->gso_segs; |
| 5825 | first->bytecount += (first->gso_segs - 1) * *hdr_len; |
| 5826 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5827 | /* mss_l4len_id: use 1 as index for TSO */ |
| 5828 | mss_l4len_idx = l4len << IXGBE_ADVTXD_L4LEN_SHIFT; |
| 5829 | mss_l4len_idx |= skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT; |
| 5830 | mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT; |
| 5831 | |
| 5832 | /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */ |
| 5833 | vlan_macip_lens = skb_network_header_len(skb); |
| 5834 | vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5835 | vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5836 | |
| 5837 | ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, type_tucmd, |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5838 | mss_l4len_idx); |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5839 | |
| 5840 | return 1; |
Joe Perches | 7ca647b | 2010-09-07 21:35:40 +0000 | [diff] [blame] | 5841 | } |
| 5842 | |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5843 | static void ixgbe_tx_csum(struct ixgbe_ring *tx_ring, |
| 5844 | struct ixgbe_tx_buffer *first) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5845 | { |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 5846 | struct sk_buff *skb = first->skb; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5847 | u32 vlan_macip_lens = 0; |
| 5848 | u32 mss_l4len_idx = 0; |
| 5849 | u32 type_tucmd = 0; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5850 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5851 | if (skb->ip_summed != CHECKSUM_PARTIAL) { |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5852 | if (!(first->tx_flags & IXGBE_TX_FLAGS_HW_VLAN) && |
| 5853 | !(first->tx_flags & IXGBE_TX_FLAGS_TXSW)) |
| 5854 | return; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5855 | } else { |
| 5856 | u8 l4_hdr = 0; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5857 | switch (first->protocol) { |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5858 | case __constant_htons(ETH_P_IP): |
| 5859 | vlan_macip_lens |= skb_network_header_len(skb); |
| 5860 | type_tucmd |= IXGBE_ADVTXD_TUCMD_IPV4; |
| 5861 | l4_hdr = ip_hdr(skb)->protocol; |
| 5862 | break; |
| 5863 | case __constant_htons(ETH_P_IPV6): |
| 5864 | vlan_macip_lens |= skb_network_header_len(skb); |
| 5865 | l4_hdr = ipv6_hdr(skb)->nexthdr; |
| 5866 | break; |
| 5867 | default: |
| 5868 | if (unlikely(net_ratelimit())) { |
| 5869 | dev_warn(tx_ring->dev, |
| 5870 | "partial checksum but proto=%x!\n", |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5871 | first->protocol); |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5872 | } |
| 5873 | break; |
| 5874 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5875 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5876 | switch (l4_hdr) { |
| 5877 | case IPPROTO_TCP: |
| 5878 | type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_TCP; |
| 5879 | mss_l4len_idx = tcp_hdrlen(skb) << |
| 5880 | IXGBE_ADVTXD_L4LEN_SHIFT; |
| 5881 | break; |
| 5882 | case IPPROTO_SCTP: |
| 5883 | type_tucmd |= IXGBE_ADVTXD_TUCMD_L4T_SCTP; |
| 5884 | mss_l4len_idx = sizeof(struct sctphdr) << |
| 5885 | IXGBE_ADVTXD_L4LEN_SHIFT; |
| 5886 | break; |
| 5887 | case IPPROTO_UDP: |
| 5888 | mss_l4len_idx = sizeof(struct udphdr) << |
| 5889 | IXGBE_ADVTXD_L4LEN_SHIFT; |
| 5890 | break; |
| 5891 | default: |
| 5892 | if (unlikely(net_ratelimit())) { |
| 5893 | dev_warn(tx_ring->dev, |
| 5894 | "partial checksum but l4 proto=%x!\n", |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5895 | l4_hdr); |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5896 | } |
| 5897 | break; |
| 5898 | } |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5899 | |
| 5900 | /* update TX checksum flag */ |
| 5901 | first->tx_flags |= IXGBE_TX_FLAGS_CSUM; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5902 | } |
Jesse Brandeburg | 9f8cdf4 | 2008-09-11 20:03:35 -0700 | [diff] [blame] | 5903 | |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5904 | /* vlan_macip_lens: MACLEN, VLAN tag */ |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5905 | vlan_macip_lens |= skb_network_offset(skb) << IXGBE_ADVTXD_MACLEN_SHIFT; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5906 | vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 5907 | |
| 5908 | ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, 0, |
| 5909 | type_tucmd, mss_l4len_idx); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5910 | } |
| 5911 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5912 | static __le32 ixgbe_tx_cmd_type(u32 tx_flags) |
| 5913 | { |
| 5914 | /* set type for advanced descriptor with frame checksum insertion */ |
| 5915 | __le32 cmd_type = cpu_to_le32(IXGBE_ADVTXD_DTYP_DATA | |
| 5916 | IXGBE_ADVTXD_DCMD_IFCS | |
| 5917 | IXGBE_ADVTXD_DCMD_DEXT); |
| 5918 | |
| 5919 | /* set HW vlan bit if vlan is present */ |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 5920 | if (tx_flags & IXGBE_TX_FLAGS_HW_VLAN) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5921 | cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_VLE); |
| 5922 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 5923 | #ifdef CONFIG_IXGBE_PTP |
| 5924 | if (tx_flags & IXGBE_TX_FLAGS_TSTAMP) |
| 5925 | cmd_type |= cpu_to_le32(IXGBE_ADVTXD_MAC_TSTAMP); |
| 5926 | #endif |
| 5927 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5928 | /* set segmentation enable bits for TSO/FSO */ |
| 5929 | #ifdef IXGBE_FCOE |
Alexander Duyck | 93f5b3c | 2012-02-08 07:50:45 +0000 | [diff] [blame] | 5930 | if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FSO)) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5931 | #else |
| 5932 | if (tx_flags & IXGBE_TX_FLAGS_TSO) |
| 5933 | #endif |
| 5934 | cmd_type |= cpu_to_le32(IXGBE_ADVTXD_DCMD_TSE); |
| 5935 | |
| 5936 | return cmd_type; |
| 5937 | } |
| 5938 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 5939 | static void ixgbe_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc, |
| 5940 | u32 tx_flags, unsigned int paylen) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5941 | { |
Alexander Duyck | 93f5b3c | 2012-02-08 07:50:45 +0000 | [diff] [blame] | 5942 | __le32 olinfo_status = cpu_to_le32(paylen << IXGBE_ADVTXD_PAYLEN_SHIFT); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5943 | |
| 5944 | /* enable L4 checksum for TSO and TX checksum offload */ |
| 5945 | if (tx_flags & IXGBE_TX_FLAGS_CSUM) |
| 5946 | olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_TXSM); |
| 5947 | |
Alexander Duyck | 93f5b3c | 2012-02-08 07:50:45 +0000 | [diff] [blame] | 5948 | /* enble IPv4 checksum for TSO */ |
| 5949 | if (tx_flags & IXGBE_TX_FLAGS_IPV4) |
| 5950 | olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_POPTS_IXSM); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5951 | |
Alexander Duyck | 93f5b3c | 2012-02-08 07:50:45 +0000 | [diff] [blame] | 5952 | /* use index 1 context for TSO/FSO/FCOE */ |
| 5953 | #ifdef IXGBE_FCOE |
| 5954 | if (tx_flags & (IXGBE_TX_FLAGS_TSO | IXGBE_TX_FLAGS_FCOE)) |
| 5955 | #else |
| 5956 | if (tx_flags & IXGBE_TX_FLAGS_TSO) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5957 | #endif |
Alexander Duyck | 93f5b3c | 2012-02-08 07:50:45 +0000 | [diff] [blame] | 5958 | olinfo_status |= cpu_to_le32(1 << IXGBE_ADVTXD_IDX_SHIFT); |
| 5959 | |
Alexander Duyck | 7f9643f | 2011-06-29 05:43:27 +0000 | [diff] [blame] | 5960 | /* |
| 5961 | * Check Context must be set if Tx switch is enabled, which it |
| 5962 | * always is for case where virtual functions are running |
| 5963 | */ |
Alexander Duyck | 93f5b3c | 2012-02-08 07:50:45 +0000 | [diff] [blame] | 5964 | #ifdef IXGBE_FCOE |
| 5965 | if (tx_flags & (IXGBE_TX_FLAGS_TXSW | IXGBE_TX_FLAGS_FCOE)) |
| 5966 | #else |
Alexander Duyck | 7f9643f | 2011-06-29 05:43:27 +0000 | [diff] [blame] | 5967 | if (tx_flags & IXGBE_TX_FLAGS_TXSW) |
Alexander Duyck | 93f5b3c | 2012-02-08 07:50:45 +0000 | [diff] [blame] | 5968 | #endif |
Alexander Duyck | 7f9643f | 2011-06-29 05:43:27 +0000 | [diff] [blame] | 5969 | olinfo_status |= cpu_to_le32(IXGBE_ADVTXD_CC); |
| 5970 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 5971 | tx_desc->read.olinfo_status = olinfo_status; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5972 | } |
| 5973 | |
| 5974 | #define IXGBE_TXD_CMD (IXGBE_TXD_CMD_EOP | \ |
| 5975 | IXGBE_TXD_CMD_RS) |
| 5976 | |
| 5977 | static void ixgbe_tx_map(struct ixgbe_ring *tx_ring, |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5978 | struct ixgbe_tx_buffer *first, |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5979 | const u8 hdr_len) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5980 | { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5981 | dma_addr_t dma; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 5982 | struct sk_buff *skb = first->skb; |
| 5983 | struct ixgbe_tx_buffer *tx_buffer; |
| 5984 | union ixgbe_adv_tx_desc *tx_desc; |
| 5985 | struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[0]; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5986 | unsigned int data_len = skb->data_len; |
| 5987 | unsigned int size = skb_headlen(skb); |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 5988 | unsigned int paylen = skb->len - hdr_len; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 5989 | u32 tx_flags = first->tx_flags; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 5990 | __le32 cmd_type; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5991 | u16 i = tx_ring->next_to_use; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 5992 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 5993 | tx_desc = IXGBE_TX_DESC(tx_ring, i); |
| 5994 | |
| 5995 | ixgbe_tx_olinfo_status(tx_desc, tx_flags, paylen); |
| 5996 | cmd_type = ixgbe_tx_cmd_type(tx_flags); |
| 5997 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 5998 | #ifdef IXGBE_FCOE |
| 5999 | if (tx_flags & IXGBE_TX_FLAGS_FCOE) { |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6000 | if (data_len < sizeof(struct fcoe_crc_eof)) { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6001 | size -= sizeof(struct fcoe_crc_eof) - data_len; |
| 6002 | data_len = 0; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6003 | } else { |
| 6004 | data_len -= sizeof(struct fcoe_crc_eof); |
Alexander Duyck | 44df32c | 2009-03-31 21:34:23 +0000 | [diff] [blame] | 6005 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6006 | } |
| 6007 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6008 | #endif |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6009 | dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE); |
| 6010 | if (dma_mapping_error(tx_ring->dev, dma)) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6011 | goto dma_error; |
| 6012 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6013 | /* record length, and DMA address */ |
| 6014 | dma_unmap_len_set(first, len, size); |
| 6015 | dma_unmap_addr_set(first, dma, dma); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6016 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6017 | tx_desc->read.buffer_addr = cpu_to_le64(dma); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6018 | |
| 6019 | for (;;) { |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6020 | while (unlikely(size > IXGBE_MAX_DATA_PER_TXD)) { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6021 | tx_desc->read.cmd_type_len = |
| 6022 | cmd_type | cpu_to_le32(IXGBE_MAX_DATA_PER_TXD); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6023 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6024 | i++; |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6025 | tx_desc++; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6026 | if (i == tx_ring->count) { |
Alexander Duyck | e4f7402 | 2012-01-31 02:59:44 +0000 | [diff] [blame] | 6027 | tx_desc = IXGBE_TX_DESC(tx_ring, 0); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6028 | i = 0; |
| 6029 | } |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6030 | |
| 6031 | dma += IXGBE_MAX_DATA_PER_TXD; |
| 6032 | size -= IXGBE_MAX_DATA_PER_TXD; |
| 6033 | |
| 6034 | tx_desc->read.buffer_addr = cpu_to_le64(dma); |
| 6035 | tx_desc->read.olinfo_status = 0; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6036 | } |
| 6037 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6038 | if (likely(!data_len)) |
| 6039 | break; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6040 | |
Ben Greear | f43f313 | 2012-03-06 09:42:04 +0000 | [diff] [blame] | 6041 | if (unlikely(skb->no_fcs)) |
| 6042 | cmd_type &= ~(cpu_to_le32(IXGBE_ADVTXD_DCMD_IFCS)); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6043 | tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6044 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6045 | i++; |
| 6046 | tx_desc++; |
| 6047 | if (i == tx_ring->count) { |
| 6048 | tx_desc = IXGBE_TX_DESC(tx_ring, 0); |
| 6049 | i = 0; |
| 6050 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6051 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6052 | #ifdef IXGBE_FCOE |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 6053 | size = min_t(unsigned int, data_len, skb_frag_size(frag)); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6054 | #else |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 6055 | size = skb_frag_size(frag); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6056 | #endif |
| 6057 | data_len -= size; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6058 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6059 | dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size, |
| 6060 | DMA_TO_DEVICE); |
| 6061 | if (dma_mapping_error(tx_ring->dev, dma)) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6062 | goto dma_error; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6063 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6064 | tx_buffer = &tx_ring->tx_buffer_info[i]; |
| 6065 | dma_unmap_len_set(tx_buffer, len, size); |
| 6066 | dma_unmap_addr_set(tx_buffer, dma, dma); |
| 6067 | |
| 6068 | tx_desc->read.buffer_addr = cpu_to_le64(dma); |
| 6069 | tx_desc->read.olinfo_status = 0; |
| 6070 | |
| 6071 | frag++; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6072 | } |
Alexander Duyck | 44df32c | 2009-03-31 21:34:23 +0000 | [diff] [blame] | 6073 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6074 | /* write last descriptor with RS and EOP bits */ |
| 6075 | cmd_type |= cpu_to_le32(size) | cpu_to_le32(IXGBE_TXD_CMD); |
| 6076 | tx_desc->read.cmd_type_len = cmd_type; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6077 | |
Alexander Duyck | 091a624 | 2012-02-08 07:51:01 +0000 | [diff] [blame] | 6078 | netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount); |
Alexander Duyck | b2d96e0 | 2012-02-07 08:14:33 +0000 | [diff] [blame] | 6079 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6080 | /* set the timestamp */ |
| 6081 | first->time_stamp = jiffies; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6082 | |
| 6083 | /* |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6084 | * Force memory writes to complete before letting h/w know there |
| 6085 | * are new descriptors to fetch. (Only applicable for weak-ordered |
| 6086 | * memory model archs, such as IA-64). |
| 6087 | * |
| 6088 | * We also need this memory barrier to make certain all of the |
| 6089 | * status bits have been updated before next_to_watch is written. |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6090 | */ |
| 6091 | wmb(); |
| 6092 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6093 | /* set next_to_watch value indicating a packet is present */ |
| 6094 | first->next_to_watch = tx_desc; |
| 6095 | |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6096 | i++; |
| 6097 | if (i == tx_ring->count) |
| 6098 | i = 0; |
| 6099 | |
| 6100 | tx_ring->next_to_use = i; |
| 6101 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6102 | /* notify HW of packet */ |
Alexander Duyck | 84ea259 | 2010-11-16 19:26:49 -0800 | [diff] [blame] | 6103 | writel(i, tx_ring->tail); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6104 | |
| 6105 | return; |
| 6106 | dma_error: |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6107 | dev_err(tx_ring->dev, "TX DMA map failed\n"); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6108 | |
| 6109 | /* clear dma mappings for failed tx_buffer_info map */ |
| 6110 | for (;;) { |
Alexander Duyck | 729739b | 2012-02-08 07:51:06 +0000 | [diff] [blame] | 6111 | tx_buffer = &tx_ring->tx_buffer_info[i]; |
| 6112 | ixgbe_unmap_and_free_tx_resource(tx_ring, tx_buffer); |
| 6113 | if (tx_buffer == first) |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6114 | break; |
| 6115 | if (i == 0) |
| 6116 | i = tx_ring->count; |
| 6117 | i--; |
| 6118 | } |
| 6119 | |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6120 | tx_ring->next_to_use = i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6121 | } |
| 6122 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 6123 | static void ixgbe_atr(struct ixgbe_ring *ring, |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6124 | struct ixgbe_tx_buffer *first) |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6125 | { |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6126 | struct ixgbe_q_vector *q_vector = ring->q_vector; |
| 6127 | union ixgbe_atr_hash_dword input = { .dword = 0 }; |
| 6128 | union ixgbe_atr_hash_dword common = { .dword = 0 }; |
| 6129 | union { |
| 6130 | unsigned char *network; |
| 6131 | struct iphdr *ipv4; |
| 6132 | struct ipv6hdr *ipv6; |
| 6133 | } hdr; |
Alexander Duyck | ee9e0f0 | 2010-11-16 19:27:01 -0800 | [diff] [blame] | 6134 | struct tcphdr *th; |
Alexander Duyck | 905e4a4 | 2011-01-06 14:29:57 +0000 | [diff] [blame] | 6135 | __be16 vlan_id; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6136 | |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6137 | /* if ring doesn't have a interrupt vector, cannot perform ATR */ |
| 6138 | if (!q_vector) |
Guillaume Gaudonville | d3ead24 | 2010-06-29 18:29:00 +0000 | [diff] [blame] | 6139 | return; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6140 | |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6141 | /* do nothing if sampling is disabled */ |
| 6142 | if (!ring->atr_sample_rate) |
| 6143 | return; |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6144 | |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6145 | ring->atr_count++; |
| 6146 | |
| 6147 | /* snag network header to get L4 type and address */ |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 6148 | hdr.network = skb_network_header(first->skb); |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6149 | |
| 6150 | /* Currently only IPv4/IPv6 with TCP is supported */ |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6151 | if ((first->protocol != __constant_htons(ETH_P_IPV6) || |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6152 | hdr.ipv6->nexthdr != IPPROTO_TCP) && |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6153 | (first->protocol != __constant_htons(ETH_P_IP) || |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6154 | hdr.ipv4->protocol != IPPROTO_TCP)) |
| 6155 | return; |
Alexander Duyck | ee9e0f0 | 2010-11-16 19:27:01 -0800 | [diff] [blame] | 6156 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 6157 | th = tcp_hdr(first->skb); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6158 | |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6159 | /* skip this packet since it is invalid or the socket is closing */ |
| 6160 | if (!th || th->fin) |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6161 | return; |
| 6162 | |
| 6163 | /* sample on all syn packets or once every atr sample count */ |
| 6164 | if (!th->syn && (ring->atr_count < ring->atr_sample_rate)) |
| 6165 | return; |
| 6166 | |
| 6167 | /* reset sample count */ |
| 6168 | ring->atr_count = 0; |
| 6169 | |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6170 | vlan_id = htons(first->tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT); |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6171 | |
| 6172 | /* |
| 6173 | * src and dst are inverted, think how the receiver sees them |
| 6174 | * |
| 6175 | * The input is broken into two sections, a non-compressed section |
| 6176 | * containing vm_pool, vlan_id, and flow_type. The rest of the data |
| 6177 | * is XORed together and stored in the compressed dword. |
| 6178 | */ |
| 6179 | input.formatted.vlan_id = vlan_id; |
| 6180 | |
| 6181 | /* |
| 6182 | * since src port and flex bytes occupy the same word XOR them together |
| 6183 | * and write the value to source port portion of compressed dword |
| 6184 | */ |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6185 | if (first->tx_flags & (IXGBE_TX_FLAGS_SW_VLAN | IXGBE_TX_FLAGS_HW_VLAN)) |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6186 | common.port.src ^= th->dest ^ __constant_htons(ETH_P_8021Q); |
| 6187 | else |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6188 | common.port.src ^= th->dest ^ first->protocol; |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6189 | common.port.dst ^= th->source; |
| 6190 | |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6191 | if (first->protocol == __constant_htons(ETH_P_IP)) { |
Alexander Duyck | 6983052 | 2011-01-06 14:29:58 +0000 | [diff] [blame] | 6192 | input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV4; |
| 6193 | common.ip ^= hdr.ipv4->saddr ^ hdr.ipv4->daddr; |
| 6194 | } else { |
| 6195 | input.formatted.flow_type = IXGBE_ATR_FLOW_TYPE_TCPV6; |
| 6196 | common.ip ^= hdr.ipv6->saddr.s6_addr32[0] ^ |
| 6197 | hdr.ipv6->saddr.s6_addr32[1] ^ |
| 6198 | hdr.ipv6->saddr.s6_addr32[2] ^ |
| 6199 | hdr.ipv6->saddr.s6_addr32[3] ^ |
| 6200 | hdr.ipv6->daddr.s6_addr32[0] ^ |
| 6201 | hdr.ipv6->daddr.s6_addr32[1] ^ |
| 6202 | hdr.ipv6->daddr.s6_addr32[2] ^ |
| 6203 | hdr.ipv6->daddr.s6_addr32[3]; |
| 6204 | } |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6205 | |
| 6206 | /* 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] | 6207 | ixgbe_fdir_add_signature_filter_82599(&q_vector->adapter->hw, |
| 6208 | input, common, ring->queue_index); |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6209 | } |
| 6210 | |
Alexander Duyck | 63544e9 | 2011-05-27 05:31:42 +0000 | [diff] [blame] | 6211 | static int __ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size) |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 6212 | { |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 6213 | netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index); |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 6214 | /* Herbert's original patch had: |
| 6215 | * smp_mb__after_netif_stop_queue(); |
| 6216 | * but since that doesn't exist yet, just open code it. */ |
| 6217 | smp_mb(); |
| 6218 | |
| 6219 | /* We need to check again in a case another CPU has just |
| 6220 | * made room available. */ |
Alexander Duyck | 7d4987d | 2011-05-27 05:31:37 +0000 | [diff] [blame] | 6221 | if (likely(ixgbe_desc_unused(tx_ring) < size)) |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 6222 | return -EBUSY; |
| 6223 | |
| 6224 | /* A reprieve! - use start_queue because it doesn't call schedule */ |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 6225 | netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index); |
Alexander Duyck | 5b7da51 | 2010-11-16 19:26:50 -0800 | [diff] [blame] | 6226 | ++tx_ring->tx_stats.restart_queue; |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 6227 | return 0; |
| 6228 | } |
| 6229 | |
Alexander Duyck | 82d4e46 | 2011-06-11 01:44:58 +0000 | [diff] [blame] | 6230 | static inline int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size) |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 6231 | { |
Alexander Duyck | 7d4987d | 2011-05-27 05:31:37 +0000 | [diff] [blame] | 6232 | if (likely(ixgbe_desc_unused(tx_ring) >= size)) |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 6233 | return 0; |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 6234 | return __ixgbe_maybe_stop_tx(tx_ring, size); |
Ayyappan Veeraiyan | e092be6 | 2008-02-01 15:58:49 -0800 | [diff] [blame] | 6235 | } |
| 6236 | |
Stephen Hemminger | 09a3b1f | 2009-03-21 13:40:01 -0700 | [diff] [blame] | 6237 | static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb) |
| 6238 | { |
| 6239 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
Alexander Duyck | 6440752 | 2011-06-11 01:44:53 +0000 | [diff] [blame] | 6240 | int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) : |
| 6241 | smp_processor_id(); |
John Fastabend | 56075a9 | 2010-07-26 20:41:31 +0000 | [diff] [blame] | 6242 | #ifdef IXGBE_FCOE |
Alexander Duyck | 6440752 | 2011-06-11 01:44:53 +0000 | [diff] [blame] | 6243 | __be16 protocol = vlan_get_protocol(skb); |
Hao Zheng | 5e09a10 | 2010-11-11 13:47:59 +0000 | [diff] [blame] | 6244 | |
John Fastabend | e5b6463 | 2011-03-08 03:44:52 +0000 | [diff] [blame] | 6245 | if (((protocol == htons(ETH_P_FCOE)) || |
| 6246 | (protocol == htons(ETH_P_FIP))) && |
| 6247 | (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) { |
Alexander Duyck | c087663 | 2012-05-10 00:01:46 +0000 | [diff] [blame] | 6248 | struct ixgbe_ring_feature *f; |
| 6249 | |
| 6250 | f = &adapter->ring_feature[RING_F_FCOE]; |
| 6251 | |
| 6252 | while (txq >= f->indices) |
| 6253 | txq -= f->indices; |
Alexander Duyck | e4b317e | 2012-05-05 05:30:53 +0000 | [diff] [blame] | 6254 | txq += adapter->ring_feature[RING_F_FCOE].offset; |
Alexander Duyck | c087663 | 2012-05-10 00:01:46 +0000 | [diff] [blame] | 6255 | |
John Fastabend | e5b6463 | 2011-03-08 03:44:52 +0000 | [diff] [blame] | 6256 | return txq; |
John Fastabend | 56075a9 | 2010-07-26 20:41:31 +0000 | [diff] [blame] | 6257 | } |
| 6258 | #endif |
| 6259 | |
Krishna Kumar | fdd3d63 | 2010-02-03 13:13:10 +0000 | [diff] [blame] | 6260 | if (adapter->flags & IXGBE_FLAG_FDIR_HASH_CAPABLE) { |
| 6261 | while (unlikely(txq >= dev->real_num_tx_queues)) |
| 6262 | txq -= dev->real_num_tx_queues; |
Yi Zou | 5f71582 | 2009-12-03 11:32:44 +0000 | [diff] [blame] | 6263 | return txq; |
Krishna Kumar | fdd3d63 | 2010-02-03 13:13:10 +0000 | [diff] [blame] | 6264 | } |
Peter P Waskiewicz Jr | c4cf55e | 2009-06-04 16:01:43 +0000 | [diff] [blame] | 6265 | |
Stephen Hemminger | 09a3b1f | 2009-03-21 13:40:01 -0700 | [diff] [blame] | 6266 | return skb_tx_hash(dev, skb); |
| 6267 | } |
| 6268 | |
Alexander Duyck | fc77dc3 | 2010-11-16 19:26:51 -0800 | [diff] [blame] | 6269 | netdev_tx_t ixgbe_xmit_frame_ring(struct sk_buff *skb, |
Alexander Duyck | 84418e3 | 2010-08-19 13:40:54 +0000 | [diff] [blame] | 6270 | struct ixgbe_adapter *adapter, |
| 6271 | struct ixgbe_ring *tx_ring) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6272 | { |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6273 | struct ixgbe_tx_buffer *first; |
Yi Zou | 5f71582 | 2009-12-03 11:32:44 +0000 | [diff] [blame] | 6274 | int tso; |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6275 | u32 tx_flags = 0; |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 6276 | #if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD |
| 6277 | unsigned short f; |
| 6278 | #endif |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 6279 | u16 count = TXD_USE_COUNT(skb_headlen(skb)); |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6280 | __be16 protocol = skb->protocol; |
Alexander Duyck | 63544e9 | 2011-05-27 05:31:42 +0000 | [diff] [blame] | 6281 | u8 hdr_len = 0; |
Hao Zheng | 5e09a10 | 2010-11-11 13:47:59 +0000 | [diff] [blame] | 6282 | |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 6283 | /* |
| 6284 | * need: 1 descriptor per page * PAGE_SIZE/IXGBE_MAX_DATA_PER_TXD, |
Alexander Duyck | 24ddd96 | 2012-02-10 02:08:32 +0000 | [diff] [blame] | 6285 | * + 1 desc for skb_headlen/IXGBE_MAX_DATA_PER_TXD, |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 6286 | * + 2 desc gap to keep tail from touching head, |
| 6287 | * + 1 desc for context descriptor, |
| 6288 | * otherwise try next time |
| 6289 | */ |
| 6290 | #if PAGE_SIZE > IXGBE_MAX_DATA_PER_TXD |
| 6291 | for (f = 0; f < skb_shinfo(skb)->nr_frags; f++) |
| 6292 | count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size); |
| 6293 | #else |
| 6294 | count += skb_shinfo(skb)->nr_frags; |
| 6295 | #endif |
| 6296 | if (ixgbe_maybe_stop_tx(tx_ring, count + 3)) { |
| 6297 | tx_ring->tx_stats.tx_busy++; |
| 6298 | return NETDEV_TX_BUSY; |
| 6299 | } |
| 6300 | |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 6301 | /* record the location of the first descriptor for this packet */ |
| 6302 | first = &tx_ring->tx_buffer_info[tx_ring->next_to_use]; |
| 6303 | first->skb = skb; |
Alexander Duyck | 091a624 | 2012-02-08 07:51:01 +0000 | [diff] [blame] | 6304 | first->bytecount = skb->len; |
| 6305 | first->gso_segs = 1; |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 6306 | |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6307 | /* if we have a HW VLAN tag being added default to the HW one */ |
Jesse Gross | eab6d18 | 2010-10-20 13:56:03 +0000 | [diff] [blame] | 6308 | if (vlan_tx_tag_present(skb)) { |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6309 | tx_flags |= vlan_tx_tag_get(skb) << IXGBE_TX_FLAGS_VLAN_SHIFT; |
| 6310 | tx_flags |= IXGBE_TX_FLAGS_HW_VLAN; |
| 6311 | /* else if it is a SW VLAN check the next protocol and store the tag */ |
| 6312 | } else if (protocol == __constant_htons(ETH_P_8021Q)) { |
| 6313 | struct vlan_hdr *vhdr, _vhdr; |
| 6314 | vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr); |
| 6315 | if (!vhdr) |
| 6316 | goto out_drop; |
| 6317 | |
| 6318 | protocol = vhdr->h_vlan_encapsulated_proto; |
Alexander Duyck | 9e0c564 | 2012-02-08 07:49:33 +0000 | [diff] [blame] | 6319 | tx_flags |= ntohs(vhdr->h_vlan_TCI) << |
| 6320 | IXGBE_TX_FLAGS_VLAN_SHIFT; |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6321 | tx_flags |= IXGBE_TX_FLAGS_SW_VLAN; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6322 | } |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 6323 | |
Jacob Keller | aa7bd46 | 2012-05-04 01:55:23 +0000 | [diff] [blame] | 6324 | skb_tx_timestamp(skb); |
| 6325 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 6326 | #ifdef CONFIG_IXGBE_PTP |
| 6327 | if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) { |
| 6328 | skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; |
| 6329 | tx_flags |= IXGBE_TX_FLAGS_TSTAMP; |
| 6330 | } |
| 6331 | #endif |
| 6332 | |
Alexander Duyck | 9e0c564 | 2012-02-08 07:49:33 +0000 | [diff] [blame] | 6333 | #ifdef CONFIG_PCI_IOV |
| 6334 | /* |
| 6335 | * Use the l2switch_enable flag - would be false if the DMA |
| 6336 | * Tx switch had been disabled. |
| 6337 | */ |
| 6338 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
| 6339 | tx_flags |= IXGBE_TX_FLAGS_TXSW; |
| 6340 | |
| 6341 | #endif |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 6342 | /* 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] | 6343 | if ((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && |
Alexander Duyck | 09dca47 | 2011-07-20 00:09:10 +0000 | [diff] [blame] | 6344 | ((tx_flags & (IXGBE_TX_FLAGS_HW_VLAN | IXGBE_TX_FLAGS_SW_VLAN)) || |
| 6345 | (skb->priority != TC_PRIO_CONTROL))) { |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6346 | tx_flags &= ~IXGBE_TX_FLAGS_VLAN_PRIO_MASK; |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 6347 | tx_flags |= (skb->priority & 0x7) << |
| 6348 | IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT; |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6349 | if (tx_flags & IXGBE_TX_FLAGS_SW_VLAN) { |
| 6350 | struct vlan_ethhdr *vhdr; |
| 6351 | if (skb_header_cloned(skb) && |
| 6352 | pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) |
| 6353 | goto out_drop; |
| 6354 | vhdr = (struct vlan_ethhdr *)skb->data; |
| 6355 | vhdr->h_vlan_TCI = htons(tx_flags >> |
| 6356 | IXGBE_TX_FLAGS_VLAN_SHIFT); |
| 6357 | } else { |
| 6358 | tx_flags |= IXGBE_TX_FLAGS_HW_VLAN; |
| 6359 | } |
| 6360 | } |
Alexander Duyck | a535c30 | 2011-05-27 05:31:52 +0000 | [diff] [blame] | 6361 | |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6362 | /* record initial flags and protocol */ |
| 6363 | first->tx_flags = tx_flags; |
| 6364 | first->protocol = protocol; |
| 6365 | |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 6366 | #ifdef IXGBE_FCOE |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6367 | /* setup tx offload for FCoE */ |
| 6368 | if ((protocol == __constant_htons(ETH_P_FCOE)) && |
| 6369 | (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)) { |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6370 | tso = ixgbe_fso(tx_ring, first, &hdr_len); |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 6371 | if (tso < 0) |
| 6372 | goto out_drop; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6373 | |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6374 | goto xmit_fcoe; |
Alexander Duyck | 44df32c | 2009-03-31 21:34:23 +0000 | [diff] [blame] | 6375 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6376 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6377 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6378 | tso = ixgbe_tso(tx_ring, first, &hdr_len); |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6379 | if (tso < 0) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6380 | goto out_drop; |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6381 | else if (!tso) |
| 6382 | ixgbe_tx_csum(tx_ring, first); |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6383 | |
| 6384 | /* add the ATR filter if ATR is on */ |
| 6385 | if (test_bit(__IXGBE_TX_FDIR_INIT_DONE, &tx_ring->state)) |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6386 | ixgbe_atr(tx_ring, first); |
Alexander Duyck | 66f32a8 | 2011-06-29 05:43:22 +0000 | [diff] [blame] | 6387 | |
| 6388 | #ifdef IXGBE_FCOE |
| 6389 | xmit_fcoe: |
| 6390 | #endif /* IXGBE_FCOE */ |
Alexander Duyck | 244e27a | 2012-02-08 07:51:11 +0000 | [diff] [blame] | 6391 | ixgbe_tx_map(tx_ring, first, hdr_len); |
Alexander Duyck | d3d0023 | 2011-07-15 02:31:25 +0000 | [diff] [blame] | 6392 | |
| 6393 | ixgbe_maybe_stop_tx(tx_ring, DESC_NEEDED); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6394 | |
| 6395 | return NETDEV_TX_OK; |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 6396 | |
| 6397 | out_drop: |
Alexander Duyck | fd0db0e | 2012-02-08 07:50:56 +0000 | [diff] [blame] | 6398 | dev_kfree_skb_any(first->skb); |
| 6399 | first->skb = NULL; |
| 6400 | |
Alexander Duyck | 897ab15 | 2011-05-27 05:31:47 +0000 | [diff] [blame] | 6401 | return NETDEV_TX_OK; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6402 | } |
| 6403 | |
Alexander Duyck | a50c29d | 2012-02-08 07:50:40 +0000 | [diff] [blame] | 6404 | static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb, |
| 6405 | struct net_device *netdev) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6406 | { |
| 6407 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 6408 | struct ixgbe_ring *tx_ring; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6409 | |
Alexander Duyck | a50c29d | 2012-02-08 07:50:40 +0000 | [diff] [blame] | 6410 | /* |
| 6411 | * The minimum packet size for olinfo paylen is 17 so pad the skb |
| 6412 | * in order to meet this minimum size requirement. |
| 6413 | */ |
Stephen Hemminger | f73332f | 2012-06-21 02:15:10 +0000 | [diff] [blame] | 6414 | if (unlikely(skb->len < 17)) { |
| 6415 | if (skb_pad(skb, 17 - skb->len)) |
Alexander Duyck | a50c29d | 2012-02-08 07:50:40 +0000 | [diff] [blame] | 6416 | return NETDEV_TX_OK; |
| 6417 | skb->len = 17; |
| 6418 | } |
| 6419 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6420 | tx_ring = adapter->tx_ring[skb->queue_mapping]; |
| 6421 | return ixgbe_xmit_frame_ring(skb, adapter, tx_ring); |
| 6422 | } |
| 6423 | |
| 6424 | /** |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 6425 | * ixgbe_set_mac - Change the Ethernet Address of the NIC |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6426 | * @netdev: network interface device structure |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 6427 | * @p: pointer to an address structure |
| 6428 | * |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6429 | * Returns 0 on success, negative on failure |
| 6430 | **/ |
| 6431 | static int ixgbe_set_mac(struct net_device *netdev, void *p) |
| 6432 | { |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 6433 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 6434 | struct ixgbe_hw *hw = &adapter->hw; |
| 6435 | struct sockaddr *addr = p; |
| 6436 | |
| 6437 | if (!is_valid_ether_addr(addr->sa_data)) |
| 6438 | return -EADDRNOTAVAIL; |
| 6439 | |
| 6440 | memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); |
| 6441 | memcpy(hw->mac.addr, addr->sa_data, netdev->addr_len); |
| 6442 | |
Alexander Duyck | 1d9c0bf | 2012-05-05 05:32:21 +0000 | [diff] [blame] | 6443 | hw->mac.ops.set_rar(hw, 0, hw->mac.addr, VMDQ_P(0), IXGBE_RAH_AV); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6444 | |
| 6445 | return 0; |
| 6446 | } |
| 6447 | |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 6448 | static int |
| 6449 | ixgbe_mdio_read(struct net_device *netdev, int prtad, int devad, u16 addr) |
| 6450 | { |
| 6451 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 6452 | struct ixgbe_hw *hw = &adapter->hw; |
| 6453 | u16 value; |
| 6454 | int rc; |
| 6455 | |
| 6456 | if (prtad != hw->phy.mdio.prtad) |
| 6457 | return -EINVAL; |
| 6458 | rc = hw->phy.ops.read_reg(hw, addr, devad, &value); |
| 6459 | if (!rc) |
| 6460 | rc = value; |
| 6461 | return rc; |
| 6462 | } |
| 6463 | |
| 6464 | static int ixgbe_mdio_write(struct net_device *netdev, int prtad, int devad, |
| 6465 | u16 addr, u16 value) |
| 6466 | { |
| 6467 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 6468 | struct ixgbe_hw *hw = &adapter->hw; |
| 6469 | |
| 6470 | if (prtad != hw->phy.mdio.prtad) |
| 6471 | return -EINVAL; |
| 6472 | return hw->phy.ops.write_reg(hw, addr, devad, value); |
| 6473 | } |
| 6474 | |
| 6475 | static int ixgbe_ioctl(struct net_device *netdev, struct ifreq *req, int cmd) |
| 6476 | { |
| 6477 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 6478 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 6479 | switch (cmd) { |
| 6480 | #ifdef CONFIG_IXGBE_PTP |
| 6481 | case SIOCSHWTSTAMP: |
| 6482 | return ixgbe_ptp_hwtstamp_ioctl(adapter, req, cmd); |
| 6483 | #endif |
| 6484 | default: |
| 6485 | return mdio_mii_ioctl(&adapter->hw.phy.mdio, if_mii(req), cmd); |
| 6486 | } |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 6487 | } |
| 6488 | |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 6489 | /** |
| 6490 | * ixgbe_add_sanmac_netdev - Add the SAN MAC address to the corresponding |
Jiri Pirko | 31278e7 | 2009-06-17 01:12:19 +0000 | [diff] [blame] | 6491 | * netdev->dev_addrs |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 6492 | * @netdev: network interface device structure |
| 6493 | * |
| 6494 | * Returns non-zero on failure |
| 6495 | **/ |
| 6496 | static int ixgbe_add_sanmac_netdev(struct net_device *dev) |
| 6497 | { |
| 6498 | int err = 0; |
| 6499 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 6500 | struct ixgbe_mac_info *mac = &adapter->hw.mac; |
| 6501 | |
| 6502 | if (is_valid_ether_addr(mac->san_addr)) { |
| 6503 | rtnl_lock(); |
| 6504 | err = dev_addr_add(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN); |
| 6505 | rtnl_unlock(); |
| 6506 | } |
| 6507 | return err; |
| 6508 | } |
| 6509 | |
| 6510 | /** |
| 6511 | * ixgbe_del_sanmac_netdev - Removes the SAN MAC address to the corresponding |
Jiri Pirko | 31278e7 | 2009-06-17 01:12:19 +0000 | [diff] [blame] | 6512 | * netdev->dev_addrs |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 6513 | * @netdev: network interface device structure |
| 6514 | * |
| 6515 | * Returns non-zero on failure |
| 6516 | **/ |
| 6517 | static int ixgbe_del_sanmac_netdev(struct net_device *dev) |
| 6518 | { |
| 6519 | int err = 0; |
| 6520 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 6521 | struct ixgbe_mac_info *mac = &adapter->hw.mac; |
| 6522 | |
| 6523 | if (is_valid_ether_addr(mac->san_addr)) { |
| 6524 | rtnl_lock(); |
| 6525 | err = dev_addr_del(dev, mac->san_addr, NETDEV_HW_ADDR_T_SAN); |
| 6526 | rtnl_unlock(); |
| 6527 | } |
| 6528 | return err; |
| 6529 | } |
| 6530 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6531 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 6532 | /* |
| 6533 | * Polling 'interrupt' - used by things like netconsole to send skbs |
| 6534 | * without having to re-enable interrupts. It's not called while |
| 6535 | * the interrupt routine is executing. |
| 6536 | */ |
| 6537 | static void ixgbe_netpoll(struct net_device *netdev) |
| 6538 | { |
| 6539 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Peter P Waskiewicz Jr | 8f9a716 | 2009-07-30 12:25:09 +0000 | [diff] [blame] | 6540 | int i; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6541 | |
Alexander Duyck | 1a647bd | 2010-01-13 01:49:13 +0000 | [diff] [blame] | 6542 | /* if interface is down do nothing */ |
| 6543 | if (test_bit(__IXGBE_DOWN, &adapter->state)) |
| 6544 | return; |
| 6545 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6546 | adapter->flags |= IXGBE_FLAG_IN_NETPOLL; |
Peter P Waskiewicz Jr | 8f9a716 | 2009-07-30 12:25:09 +0000 | [diff] [blame] | 6547 | if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) { |
Alexander Duyck | 49c7ffb | 2012-05-05 05:30:43 +0000 | [diff] [blame] | 6548 | for (i = 0; i < adapter->num_q_vectors; i++) |
| 6549 | ixgbe_msix_clean_rings(0, adapter->q_vector[i]); |
Peter P Waskiewicz Jr | 8f9a716 | 2009-07-30 12:25:09 +0000 | [diff] [blame] | 6550 | } else { |
| 6551 | ixgbe_intr(adapter->pdev->irq, netdev); |
| 6552 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6553 | adapter->flags &= ~IXGBE_FLAG_IN_NETPOLL; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6554 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6555 | |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 6556 | #endif |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 6557 | static struct rtnl_link_stats64 *ixgbe_get_stats64(struct net_device *netdev, |
| 6558 | struct rtnl_link_stats64 *stats) |
| 6559 | { |
| 6560 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 6561 | int i; |
| 6562 | |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 6563 | rcu_read_lock(); |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 6564 | for (i = 0; i < adapter->num_rx_queues; i++) { |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 6565 | struct ixgbe_ring *ring = ACCESS_ONCE(adapter->rx_ring[i]); |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 6566 | u64 bytes, packets; |
| 6567 | unsigned int start; |
| 6568 | |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 6569 | if (ring) { |
| 6570 | do { |
| 6571 | start = u64_stats_fetch_begin_bh(&ring->syncp); |
| 6572 | packets = ring->stats.packets; |
| 6573 | bytes = ring->stats.bytes; |
| 6574 | } while (u64_stats_fetch_retry_bh(&ring->syncp, start)); |
| 6575 | stats->rx_packets += packets; |
| 6576 | stats->rx_bytes += bytes; |
| 6577 | } |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 6578 | } |
Eric Dumazet | 1ac9ad1 | 2011-01-12 12:13:14 +0000 | [diff] [blame] | 6579 | |
| 6580 | for (i = 0; i < adapter->num_tx_queues; i++) { |
| 6581 | struct ixgbe_ring *ring = ACCESS_ONCE(adapter->tx_ring[i]); |
| 6582 | u64 bytes, packets; |
| 6583 | unsigned int start; |
| 6584 | |
| 6585 | if (ring) { |
| 6586 | do { |
| 6587 | start = u64_stats_fetch_begin_bh(&ring->syncp); |
| 6588 | packets = ring->stats.packets; |
| 6589 | bytes = ring->stats.bytes; |
| 6590 | } while (u64_stats_fetch_retry_bh(&ring->syncp, start)); |
| 6591 | stats->tx_packets += packets; |
| 6592 | stats->tx_bytes += bytes; |
| 6593 | } |
| 6594 | } |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 6595 | rcu_read_unlock(); |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 6596 | /* following stats updated by ixgbe_watchdog_task() */ |
| 6597 | stats->multicast = netdev->stats.multicast; |
| 6598 | stats->rx_errors = netdev->stats.rx_errors; |
| 6599 | stats->rx_length_errors = netdev->stats.rx_length_errors; |
| 6600 | stats->rx_crc_errors = netdev->stats.rx_crc_errors; |
| 6601 | stats->rx_missed_errors = netdev->stats.rx_missed_errors; |
| 6602 | return stats; |
| 6603 | } |
| 6604 | |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 6605 | #ifdef CONFIG_IXGBE_DCB |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 6606 | /** |
| 6607 | * ixgbe_validate_rtr - verify 802.1Qp to Rx packet buffer mapping is valid. |
| 6608 | * @adapter: pointer to ixgbe_adapter |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6609 | * @tc: number of traffic classes currently enabled |
| 6610 | * |
| 6611 | * Configure a valid 802.1Qp to Rx packet buffer mapping ie confirm |
| 6612 | * 802.1Q priority maps to a packet buffer that exists. |
| 6613 | */ |
| 6614 | static void ixgbe_validate_rtr(struct ixgbe_adapter *adapter, u8 tc) |
| 6615 | { |
| 6616 | struct ixgbe_hw *hw = &adapter->hw; |
| 6617 | u32 reg, rsave; |
| 6618 | int i; |
| 6619 | |
| 6620 | /* 82598 have a static priority to TC mapping that can not |
| 6621 | * be changed so no validation is needed. |
| 6622 | */ |
| 6623 | if (hw->mac.type == ixgbe_mac_82598EB) |
| 6624 | return; |
| 6625 | |
| 6626 | reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC); |
| 6627 | rsave = reg; |
| 6628 | |
| 6629 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { |
| 6630 | u8 up2tc = reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT); |
| 6631 | |
| 6632 | /* If up2tc is out of bounds default to zero */ |
| 6633 | if (up2tc > tc) |
| 6634 | reg &= ~(0x7 << IXGBE_RTRUP2TC_UP_SHIFT); |
| 6635 | } |
| 6636 | |
| 6637 | if (reg != rsave) |
| 6638 | IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg); |
| 6639 | |
| 6640 | return; |
| 6641 | } |
| 6642 | |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 6643 | /** |
Alexander Duyck | 02debdc | 2012-05-18 06:33:31 +0000 | [diff] [blame] | 6644 | * ixgbe_set_prio_tc_map - Configure netdev prio tc map |
| 6645 | * @adapter: Pointer to adapter struct |
| 6646 | * |
| 6647 | * Populate the netdev user priority to tc map |
| 6648 | */ |
| 6649 | static void ixgbe_set_prio_tc_map(struct ixgbe_adapter *adapter) |
| 6650 | { |
| 6651 | struct net_device *dev = adapter->netdev; |
| 6652 | struct ixgbe_dcb_config *dcb_cfg = &adapter->dcb_cfg; |
| 6653 | struct ieee_ets *ets = adapter->ixgbe_ieee_ets; |
| 6654 | u8 prio; |
| 6655 | |
| 6656 | for (prio = 0; prio < MAX_USER_PRIORITY; prio++) { |
| 6657 | u8 tc = 0; |
| 6658 | |
| 6659 | if (adapter->dcbx_cap & DCB_CAP_DCBX_VER_CEE) |
| 6660 | tc = ixgbe_dcb_get_tc_from_up(dcb_cfg, 0, prio); |
| 6661 | else if (ets) |
| 6662 | tc = ets->prio_tc[prio]; |
| 6663 | |
| 6664 | netdev_set_prio_tc_map(dev, prio, tc); |
| 6665 | } |
| 6666 | } |
| 6667 | |
| 6668 | /** |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 6669 | * ixgbe_setup_tc - configure net_device for multiple traffic classes |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6670 | * |
| 6671 | * @netdev: net device to configure |
| 6672 | * @tc: number of traffic classes to enable |
| 6673 | */ |
| 6674 | int ixgbe_setup_tc(struct net_device *dev, u8 tc) |
| 6675 | { |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6676 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 6677 | struct ixgbe_hw *hw = &adapter->hw; |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6678 | |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 6679 | /* Multiple traffic classes requires multiple queues */ |
| 6680 | if (!(adapter->flags & IXGBE_FLAG_MSIX_ENABLED)) { |
| 6681 | e_err(drv, "Enable failed, needs MSI-X\n"); |
| 6682 | return -EINVAL; |
| 6683 | } |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6684 | |
| 6685 | /* Hardware supports up to 8 traffic classes */ |
John Fastabend | 4de2a02 | 2011-09-27 03:52:01 +0000 | [diff] [blame] | 6686 | if (tc > adapter->dcb_cfg.num_tcs.pg_tcs || |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 6687 | (hw->mac.type == ixgbe_mac_82598EB && |
| 6688 | tc < MAX_TRAFFIC_CLASS)) |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6689 | return -EINVAL; |
| 6690 | |
| 6691 | /* Hardware has to reinitialize queues and interrupts to |
Stephen Hemminger | 52f33af | 2011-12-22 16:34:52 +0000 | [diff] [blame] | 6692 | * match packet buffer alignment. Unfortunately, the |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6693 | * hardware is not flexible enough to do this dynamically. |
| 6694 | */ |
| 6695 | if (netif_running(dev)) |
| 6696 | ixgbe_close(dev); |
| 6697 | ixgbe_clear_interrupt_scheme(adapter); |
| 6698 | |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 6699 | if (tc) { |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6700 | netdev_set_num_tc(dev, tc); |
Alexander Duyck | 02debdc | 2012-05-18 06:33:31 +0000 | [diff] [blame] | 6701 | ixgbe_set_prio_tc_map(adapter); |
| 6702 | |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 6703 | adapter->flags |= IXGBE_FLAG_DCB_ENABLED; |
| 6704 | adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE; |
| 6705 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 6706 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) { |
| 6707 | adapter->last_lfc_mode = adapter->hw.fc.requested_mode; |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 6708 | adapter->hw.fc.requested_mode = ixgbe_fc_none; |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 6709 | } |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 6710 | } else { |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6711 | netdev_reset_tc(dev); |
Alexander Duyck | 02debdc | 2012-05-18 06:33:31 +0000 | [diff] [blame] | 6712 | |
Alexander Duyck | 943561d | 2012-05-09 22:14:44 -0700 | [diff] [blame] | 6713 | if (adapter->hw.mac.type == ixgbe_mac_82598EB) |
| 6714 | adapter->hw.fc.requested_mode = adapter->last_lfc_mode; |
John Fastabend | e7589ea | 2011-07-18 22:38:36 +0000 | [diff] [blame] | 6715 | |
| 6716 | adapter->flags &= ~IXGBE_FLAG_DCB_ENABLED; |
| 6717 | adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE; |
| 6718 | |
| 6719 | adapter->temp_dcb_cfg.pfc_mode_enable = false; |
| 6720 | adapter->dcb_cfg.pfc_mode_enable = false; |
| 6721 | } |
| 6722 | |
John Fastabend | 8b1c0b2 | 2011-05-03 02:26:48 +0000 | [diff] [blame] | 6723 | ixgbe_init_interrupt_scheme(adapter); |
| 6724 | ixgbe_validate_rtr(adapter, tc); |
| 6725 | if (netif_running(dev)) |
| 6726 | ixgbe_open(dev); |
| 6727 | |
| 6728 | return 0; |
| 6729 | } |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 6730 | |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 6731 | #endif /* CONFIG_IXGBE_DCB */ |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6732 | void ixgbe_do_reset(struct net_device *netdev) |
| 6733 | { |
| 6734 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 6735 | |
| 6736 | if (netif_running(netdev)) |
| 6737 | ixgbe_reinit_locked(adapter); |
| 6738 | else |
| 6739 | ixgbe_reset(adapter); |
| 6740 | } |
| 6741 | |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 6742 | static netdev_features_t ixgbe_fix_features(struct net_device *netdev, |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6743 | netdev_features_t features) |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6744 | { |
| 6745 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
| 6746 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6747 | /* If Rx checksum is disabled, then RSC/LRO should also be disabled */ |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6748 | if (!(features & NETIF_F_RXCSUM)) |
| 6749 | features &= ~NETIF_F_LRO; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6750 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6751 | /* Turn off LRO if not RSC capable */ |
| 6752 | if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) |
| 6753 | features &= ~NETIF_F_LRO; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 6754 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6755 | return features; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6756 | } |
| 6757 | |
Michał Mirosław | c8f44af | 2011-11-15 15:29:55 +0000 | [diff] [blame] | 6758 | static int ixgbe_set_features(struct net_device *netdev, |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6759 | netdev_features_t features) |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6760 | { |
| 6761 | struct ixgbe_adapter *adapter = netdev_priv(netdev); |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6762 | netdev_features_t changed = netdev->features ^ features; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6763 | bool need_reset = false; |
| 6764 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6765 | /* Make sure RSC matches LRO, reset if change */ |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6766 | if (!(features & NETIF_F_LRO)) { |
| 6767 | if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6768 | need_reset = true; |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6769 | adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED; |
| 6770 | } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) && |
| 6771 | !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) { |
| 6772 | if (adapter->rx_itr_setting == 1 || |
| 6773 | adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) { |
| 6774 | adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED; |
| 6775 | need_reset = true; |
| 6776 | } else if ((changed ^ features) & NETIF_F_LRO) { |
| 6777 | e_info(probe, "rx-usecs set too low, " |
| 6778 | "disabling RSC\n"); |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6779 | } |
| 6780 | } |
| 6781 | |
| 6782 | /* |
| 6783 | * Check if Flow Director n-tuple support was enabled or disabled. If |
| 6784 | * the state changed, we need to reset. |
| 6785 | */ |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6786 | if (!(features & NETIF_F_NTUPLE)) { |
| 6787 | if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) { |
| 6788 | /* turn off Flow Director, set ATR and reset */ |
Alexander Duyck | fbe7ca7 | 2012-07-14 05:42:36 +0000 | [diff] [blame] | 6789 | if (!(adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) && |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6790 | !(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) |
| 6791 | adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6792 | need_reset = true; |
| 6793 | } |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6794 | adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE; |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6795 | } else if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) { |
| 6796 | /* turn off ATR, enable perfect filters and reset */ |
| 6797 | adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE; |
| 6798 | adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6799 | need_reset = true; |
| 6800 | } |
| 6801 | |
John Fastabend | 146d4cc | 2012-05-15 05:59:26 +0000 | [diff] [blame] | 6802 | if (features & NETIF_F_HW_VLAN_RX) |
| 6803 | ixgbe_vlan_strip_enable(adapter); |
| 6804 | else |
| 6805 | ixgbe_vlan_strip_disable(adapter); |
| 6806 | |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 6807 | if (changed & NETIF_F_RXALL) |
| 6808 | need_reset = true; |
| 6809 | |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6810 | netdev->features = features; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6811 | if (need_reset) |
| 6812 | ixgbe_do_reset(netdev); |
| 6813 | |
| 6814 | return 0; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6815 | } |
| 6816 | |
John Fastabend | 0f4b0ad | 2012-04-15 06:44:19 +0000 | [diff] [blame] | 6817 | static int ixgbe_ndo_fdb_add(struct ndmsg *ndm, |
| 6818 | struct net_device *dev, |
| 6819 | unsigned char *addr, |
| 6820 | u16 flags) |
| 6821 | { |
| 6822 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 6823 | int err = -EOPNOTSUPP; |
| 6824 | |
| 6825 | if (ndm->ndm_state & NUD_PERMANENT) { |
| 6826 | pr_info("%s: FDB only supports static addresses\n", |
| 6827 | ixgbe_driver_name); |
| 6828 | return -EINVAL; |
| 6829 | } |
| 6830 | |
| 6831 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 6832 | if (is_unicast_ether_addr(addr)) |
| 6833 | err = dev_uc_add_excl(dev, addr); |
| 6834 | else if (is_multicast_ether_addr(addr)) |
| 6835 | err = dev_mc_add_excl(dev, addr); |
| 6836 | else |
| 6837 | err = -EINVAL; |
| 6838 | } |
| 6839 | |
| 6840 | /* Only return duplicate errors if NLM_F_EXCL is set */ |
| 6841 | if (err == -EEXIST && !(flags & NLM_F_EXCL)) |
| 6842 | err = 0; |
| 6843 | |
| 6844 | return err; |
| 6845 | } |
| 6846 | |
| 6847 | static int ixgbe_ndo_fdb_del(struct ndmsg *ndm, |
| 6848 | struct net_device *dev, |
| 6849 | unsigned char *addr) |
| 6850 | { |
| 6851 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 6852 | int err = -EOPNOTSUPP; |
| 6853 | |
| 6854 | if (ndm->ndm_state & NUD_PERMANENT) { |
| 6855 | pr_info("%s: FDB only supports static addresses\n", |
| 6856 | ixgbe_driver_name); |
| 6857 | return -EINVAL; |
| 6858 | } |
| 6859 | |
| 6860 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 6861 | if (is_unicast_ether_addr(addr)) |
| 6862 | err = dev_uc_del(dev, addr); |
| 6863 | else if (is_multicast_ether_addr(addr)) |
| 6864 | err = dev_mc_del(dev, addr); |
| 6865 | else |
| 6866 | err = -EINVAL; |
| 6867 | } |
| 6868 | |
| 6869 | return err; |
| 6870 | } |
| 6871 | |
| 6872 | static int ixgbe_ndo_fdb_dump(struct sk_buff *skb, |
| 6873 | struct netlink_callback *cb, |
| 6874 | struct net_device *dev, |
| 6875 | int idx) |
| 6876 | { |
| 6877 | struct ixgbe_adapter *adapter = netdev_priv(dev); |
| 6878 | |
| 6879 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
| 6880 | idx = ndo_dflt_fdb_dump(skb, cb, dev, idx); |
| 6881 | |
| 6882 | return idx; |
| 6883 | } |
| 6884 | |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 6885 | static const struct net_device_ops ixgbe_netdev_ops = { |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 6886 | .ndo_open = ixgbe_open, |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 6887 | .ndo_stop = ixgbe_close, |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 6888 | .ndo_start_xmit = ixgbe_xmit_frame, |
Stephen Hemminger | 09a3b1f | 2009-03-21 13:40:01 -0700 | [diff] [blame] | 6889 | .ndo_select_queue = ixgbe_select_queue, |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 6890 | .ndo_set_rx_mode = ixgbe_set_rx_mode, |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 6891 | .ndo_validate_addr = eth_validate_addr, |
| 6892 | .ndo_set_mac_address = ixgbe_set_mac, |
| 6893 | .ndo_change_mtu = ixgbe_change_mtu, |
| 6894 | .ndo_tx_timeout = ixgbe_tx_timeout, |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 6895 | .ndo_vlan_rx_add_vid = ixgbe_vlan_rx_add_vid, |
| 6896 | .ndo_vlan_rx_kill_vid = ixgbe_vlan_rx_kill_vid, |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 6897 | .ndo_do_ioctl = ixgbe_ioctl, |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 6898 | .ndo_set_vf_mac = ixgbe_ndo_set_vf_mac, |
| 6899 | .ndo_set_vf_vlan = ixgbe_ndo_set_vf_vlan, |
| 6900 | .ndo_set_vf_tx_rate = ixgbe_ndo_set_vf_bw, |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 6901 | .ndo_set_vf_spoofchk = ixgbe_ndo_set_vf_spoofchk, |
Greg Rose | 7f01648 | 2010-05-04 22:12:06 +0000 | [diff] [blame] | 6902 | .ndo_get_vf_config = ixgbe_ndo_get_vf_config, |
Eric Dumazet | de1036b | 2010-10-20 23:00:04 +0000 | [diff] [blame] | 6903 | .ndo_get_stats64 = ixgbe_get_stats64, |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 6904 | #ifdef CONFIG_IXGBE_DCB |
John Fastabend | 24095aa | 2011-02-23 05:58:03 +0000 | [diff] [blame] | 6905 | .ndo_setup_tc = ixgbe_setup_tc, |
Jeff Kirsher | 8af3c33 | 2012-02-18 07:08:14 +0000 | [diff] [blame] | 6906 | #endif |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 6907 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 6908 | .ndo_poll_controller = ixgbe_netpoll, |
| 6909 | #endif |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 6910 | #ifdef IXGBE_FCOE |
| 6911 | .ndo_fcoe_ddp_setup = ixgbe_fcoe_ddp_get, |
Yi Zou | 68a683c | 2011-02-01 07:22:16 +0000 | [diff] [blame] | 6912 | .ndo_fcoe_ddp_target = ixgbe_fcoe_ddp_target, |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 6913 | .ndo_fcoe_ddp_done = ixgbe_fcoe_ddp_put, |
Yi Zou | 8450ff8 | 2009-08-31 12:32:14 +0000 | [diff] [blame] | 6914 | .ndo_fcoe_enable = ixgbe_fcoe_enable, |
| 6915 | .ndo_fcoe_disable = ixgbe_fcoe_disable, |
Yi Zou | 61a1fa1 | 2009-10-28 18:24:56 +0000 | [diff] [blame] | 6916 | .ndo_fcoe_get_wwn = ixgbe_fcoe_get_wwn, |
Neerav Parikh | ea81875 | 2012-01-04 20:23:40 +0000 | [diff] [blame] | 6917 | .ndo_fcoe_get_hbainfo = ixgbe_fcoe_get_hbainfo, |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 6918 | #endif /* IXGBE_FCOE */ |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 6919 | .ndo_set_features = ixgbe_set_features, |
| 6920 | .ndo_fix_features = ixgbe_fix_features, |
John Fastabend | 0f4b0ad | 2012-04-15 06:44:19 +0000 | [diff] [blame] | 6921 | .ndo_fdb_add = ixgbe_ndo_fdb_add, |
| 6922 | .ndo_fdb_del = ixgbe_ndo_fdb_del, |
| 6923 | .ndo_fdb_dump = ixgbe_ndo_fdb_dump, |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 6924 | }; |
| 6925 | |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 6926 | static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter, |
Alexander Duyck | 567d2de | 2012-02-11 07:18:57 +0000 | [diff] [blame] | 6927 | const struct ixgbe_info *ii) |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 6928 | { |
| 6929 | #ifdef CONFIG_PCI_IOV |
| 6930 | struct ixgbe_hw *hw = &adapter->hw; |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 6931 | |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 6932 | if (hw->mac.type == ixgbe_mac_82598EB) |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 6933 | return; |
| 6934 | |
| 6935 | /* The 82599 supports up to 64 VFs per physical function |
| 6936 | * but this implementation limits allocation to 63 so that |
| 6937 | * basic networking resources are still available to the |
Greg Rose | 6b42a9c | 2012-04-17 04:29:29 +0000 | [diff] [blame] | 6938 | * physical function. If the user requests greater thn |
| 6939 | * 63 VFs then it is an error - reset to default of zero. |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 6940 | */ |
Greg Rose | 6b42a9c | 2012-04-17 04:29:29 +0000 | [diff] [blame] | 6941 | adapter->num_vfs = (max_vfs > 63) ? 0 : max_vfs; |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 6942 | ixgbe_enable_sriov(adapter, ii); |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 6943 | #endif /* CONFIG_PCI_IOV */ |
| 6944 | } |
| 6945 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 6946 | /** |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 6947 | * ixgbe_wol_supported - Check whether device supports WoL |
| 6948 | * @hw: hw specific details |
| 6949 | * @device_id: the device ID |
| 6950 | * @subdev_id: the subsystem device ID |
| 6951 | * |
| 6952 | * This function is used by probe and ethtool to determine |
| 6953 | * which devices have WoL support |
| 6954 | * |
| 6955 | **/ |
| 6956 | int ixgbe_wol_supported(struct ixgbe_adapter *adapter, u16 device_id, |
| 6957 | u16 subdevice_id) |
| 6958 | { |
| 6959 | struct ixgbe_hw *hw = &adapter->hw; |
| 6960 | u16 wol_cap = adapter->eeprom_cap & IXGBE_DEVICE_CAPS_WOL_MASK; |
| 6961 | int is_wol_supported = 0; |
| 6962 | |
| 6963 | switch (device_id) { |
| 6964 | case IXGBE_DEV_ID_82599_SFP: |
| 6965 | /* Only these subdevices could supports WOL */ |
| 6966 | switch (subdevice_id) { |
| 6967 | case IXGBE_SUBDEV_ID_82599_560FLR: |
| 6968 | /* only support first port */ |
| 6969 | if (hw->bus.func != 0) |
| 6970 | break; |
| 6971 | case IXGBE_SUBDEV_ID_82599_SFP: |
| 6972 | is_wol_supported = 1; |
| 6973 | break; |
| 6974 | } |
| 6975 | break; |
| 6976 | case IXGBE_DEV_ID_82599_COMBO_BACKPLANE: |
| 6977 | /* All except this subdevice support WOL */ |
| 6978 | if (subdevice_id != IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ) |
| 6979 | is_wol_supported = 1; |
| 6980 | break; |
| 6981 | case IXGBE_DEV_ID_82599_KX4: |
| 6982 | is_wol_supported = 1; |
| 6983 | break; |
| 6984 | case IXGBE_DEV_ID_X540T: |
| 6985 | /* check eeprom to see if enabled wol */ |
| 6986 | if ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0_1) || |
| 6987 | ((wol_cap == IXGBE_DEVICE_CAPS_WOL_PORT0) && |
| 6988 | (hw->bus.func == 0))) { |
| 6989 | is_wol_supported = 1; |
| 6990 | } |
| 6991 | break; |
| 6992 | } |
| 6993 | |
| 6994 | return is_wol_supported; |
| 6995 | } |
| 6996 | |
| 6997 | /** |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 6998 | * ixgbe_probe - Device Initialization Routine |
| 6999 | * @pdev: PCI device information struct |
| 7000 | * @ent: entry in ixgbe_pci_tbl |
| 7001 | * |
| 7002 | * Returns 0 on success, negative on failure |
| 7003 | * |
| 7004 | * ixgbe_probe initializes an adapter identified by a pci_dev structure. |
| 7005 | * The OS initialization, configuring of the adapter private structure, |
| 7006 | * and a hardware reset occur. |
| 7007 | **/ |
| 7008 | static int __devinit ixgbe_probe(struct pci_dev *pdev, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7009 | const struct pci_device_id *ent) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7010 | { |
| 7011 | struct net_device *netdev; |
| 7012 | struct ixgbe_adapter *adapter = NULL; |
| 7013 | struct ixgbe_hw *hw; |
| 7014 | const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data]; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7015 | static int cards_found; |
| 7016 | int i, err, pci_using_dac; |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 7017 | u8 part_str[IXGBE_PBANUM_LENGTH]; |
John Fastabend | c85a261 | 2010-02-25 23:15:21 +0000 | [diff] [blame] | 7018 | unsigned int indices = num_possible_cpus(); |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 7019 | #ifdef IXGBE_FCOE |
| 7020 | u16 device_caps; |
| 7021 | #endif |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 7022 | u32 eec; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7023 | |
Andy Gospodarek | bded64a | 2010-07-21 06:40:31 +0000 | [diff] [blame] | 7024 | /* Catch broken hardware that put the wrong VF device ID in |
| 7025 | * the PCIe SR-IOV capability. |
| 7026 | */ |
| 7027 | if (pdev->is_virtfn) { |
| 7028 | WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n", |
| 7029 | pci_name(pdev), pdev->vendor, pdev->device); |
| 7030 | return -EINVAL; |
| 7031 | } |
| 7032 | |
gouji-new | 9ce7766 | 2009-05-06 10:44:45 +0000 | [diff] [blame] | 7033 | err = pci_enable_device_mem(pdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7034 | if (err) |
| 7035 | return err; |
| 7036 | |
Nick Nunley | 1b50773 | 2010-04-27 13:10:27 +0000 | [diff] [blame] | 7037 | if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) && |
| 7038 | !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7039 | pci_using_dac = 1; |
| 7040 | } else { |
Nick Nunley | 1b50773 | 2010-04-27 13:10:27 +0000 | [diff] [blame] | 7041 | err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7042 | if (err) { |
Nick Nunley | 1b50773 | 2010-04-27 13:10:27 +0000 | [diff] [blame] | 7043 | err = dma_set_coherent_mask(&pdev->dev, |
| 7044 | DMA_BIT_MASK(32)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7045 | if (err) { |
Dan Carpenter | b8bc042 | 2010-07-27 00:05:56 +0000 | [diff] [blame] | 7046 | dev_err(&pdev->dev, |
| 7047 | "No usable DMA configuration, aborting\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7048 | goto err_dma; |
| 7049 | } |
| 7050 | } |
| 7051 | pci_using_dac = 0; |
| 7052 | } |
| 7053 | |
gouji-new | 9ce7766 | 2009-05-06 10:44:45 +0000 | [diff] [blame] | 7054 | err = pci_request_selected_regions(pdev, pci_select_bars(pdev, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7055 | IORESOURCE_MEM), ixgbe_driver_name); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7056 | if (err) { |
Dan Carpenter | b8bc042 | 2010-07-27 00:05:56 +0000 | [diff] [blame] | 7057 | dev_err(&pdev->dev, |
| 7058 | "pci_request_selected_regions failed 0x%x\n", err); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7059 | goto err_pci_reg; |
| 7060 | } |
| 7061 | |
Frans Pop | 19d5afd | 2009-10-02 10:04:12 -0700 | [diff] [blame] | 7062 | pci_enable_pcie_error_reporting(pdev); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 7063 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7064 | pci_set_master(pdev); |
Wendy Xiong | fb3b27b | 2008-04-23 11:09:24 -0700 | [diff] [blame] | 7065 | pci_save_state(pdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7066 | |
John Fastabend | e901acd | 2011-04-26 07:26:08 +0000 | [diff] [blame] | 7067 | #ifdef CONFIG_IXGBE_DCB |
| 7068 | indices *= MAX_TRAFFIC_CLASS; |
| 7069 | #endif |
| 7070 | |
John Fastabend | c85a261 | 2010-02-25 23:15:21 +0000 | [diff] [blame] | 7071 | if (ii->mac == ixgbe_mac_82598EB) |
Alexander Duyck | d411a93 | 2012-06-30 00:14:01 +0000 | [diff] [blame] | 7072 | #ifdef CONFIG_IXGBE_DCB |
| 7073 | indices = min_t(unsigned int, indices, MAX_TRAFFIC_CLASS * 4); |
| 7074 | #else |
John Fastabend | c85a261 | 2010-02-25 23:15:21 +0000 | [diff] [blame] | 7075 | indices = min_t(unsigned int, indices, IXGBE_MAX_RSS_INDICES); |
Alexander Duyck | d411a93 | 2012-06-30 00:14:01 +0000 | [diff] [blame] | 7076 | #endif |
John Fastabend | c85a261 | 2010-02-25 23:15:21 +0000 | [diff] [blame] | 7077 | else |
| 7078 | indices = min_t(unsigned int, indices, IXGBE_MAX_FDIR_INDICES); |
| 7079 | |
John Fastabend | e901acd | 2011-04-26 07:26:08 +0000 | [diff] [blame] | 7080 | #ifdef IXGBE_FCOE |
John Fastabend | c85a261 | 2010-02-25 23:15:21 +0000 | [diff] [blame] | 7081 | indices += min_t(unsigned int, num_possible_cpus(), |
| 7082 | IXGBE_MAX_FCOE_INDICES); |
| 7083 | #endif |
John Fastabend | c85a261 | 2010-02-25 23:15:21 +0000 | [diff] [blame] | 7084 | netdev = alloc_etherdev_mq(sizeof(struct ixgbe_adapter), indices); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7085 | if (!netdev) { |
| 7086 | err = -ENOMEM; |
| 7087 | goto err_alloc_etherdev; |
| 7088 | } |
| 7089 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7090 | SET_NETDEV_DEV(netdev, &pdev->dev); |
| 7091 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7092 | adapter = netdev_priv(netdev); |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 7093 | pci_set_drvdata(pdev, adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7094 | |
| 7095 | adapter->netdev = netdev; |
| 7096 | adapter->pdev = pdev; |
| 7097 | hw = &adapter->hw; |
| 7098 | hw->back = adapter; |
stephen hemminger | b3f4d59 | 2012-03-13 06:04:20 +0000 | [diff] [blame] | 7099 | adapter->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7100 | |
Jeff Kirsher | 0585798 | 2008-09-11 19:57:00 -0700 | [diff] [blame] | 7101 | hw->hw_addr = ioremap(pci_resource_start(pdev, 0), |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7102 | pci_resource_len(pdev, 0)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7103 | if (!hw->hw_addr) { |
| 7104 | err = -EIO; |
| 7105 | goto err_ioremap; |
| 7106 | } |
| 7107 | |
| 7108 | for (i = 1; i <= 5; i++) { |
| 7109 | if (pci_resource_len(pdev, i) == 0) |
| 7110 | continue; |
| 7111 | } |
| 7112 | |
Stephen Hemminger | 0edc352 | 2008-11-19 22:24:29 -0800 | [diff] [blame] | 7113 | netdev->netdev_ops = &ixgbe_netdev_ops; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7114 | ixgbe_set_ethtool_ops(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7115 | netdev->watchdog_timeo = 5 * HZ; |
Don Skidmore | 9fe93af | 2010-12-03 09:33:54 +0000 | [diff] [blame] | 7116 | strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7117 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7118 | adapter->bd_number = cards_found; |
| 7119 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7120 | /* Setup hw api */ |
| 7121 | memcpy(&hw->mac.ops, ii->mac_ops, sizeof(hw->mac.ops)); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 7122 | hw->mac.type = ii->mac; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7123 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 7124 | /* EEPROM */ |
| 7125 | memcpy(&hw->eeprom.ops, ii->eeprom_ops, sizeof(hw->eeprom.ops)); |
| 7126 | eec = IXGBE_READ_REG(hw, IXGBE_EEC); |
| 7127 | /* If EEPROM is valid (bit 8 = 1), use default otherwise use bit bang */ |
| 7128 | if (!(eec & (1 << 8))) |
| 7129 | hw->eeprom.ops.read = &ixgbe_read_eeprom_bit_bang_generic; |
| 7130 | |
| 7131 | /* PHY */ |
| 7132 | memcpy(&hw->phy.ops, ii->phy_ops, sizeof(hw->phy.ops)); |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 7133 | hw->phy.sfp_type = ixgbe_sfp_type_unknown; |
Ben Hutchings | 6b73e10 | 2009-04-29 08:08:58 +0000 | [diff] [blame] | 7134 | /* ixgbe_identify_phy_generic will set prtad and mmds properly */ |
| 7135 | hw->phy.mdio.prtad = MDIO_PRTAD_NONE; |
| 7136 | hw->phy.mdio.mmds = 0; |
| 7137 | hw->phy.mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22; |
| 7138 | hw->phy.mdio.dev = netdev; |
| 7139 | hw->phy.mdio.mdio_read = ixgbe_mdio_read; |
| 7140 | hw->phy.mdio.mdio_write = ixgbe_mdio_write; |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 7141 | |
Don Skidmore | 8ca783a | 2009-05-26 20:40:47 -0700 | [diff] [blame] | 7142 | ii->get_invariants(hw); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7143 | |
| 7144 | /* setup the private structure */ |
| 7145 | err = ixgbe_sw_init(adapter); |
| 7146 | if (err) |
| 7147 | goto err_sw_init; |
| 7148 | |
Don Skidmore | e86bff0 | 2010-02-11 04:14:08 +0000 | [diff] [blame] | 7149 | /* Make it possible the adapter to be woken up via WOL */ |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 7150 | switch (adapter->hw.mac.type) { |
| 7151 | case ixgbe_mac_82599EB: |
| 7152 | case ixgbe_mac_X540: |
Don Skidmore | e86bff0 | 2010-02-11 04:14:08 +0000 | [diff] [blame] | 7153 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0); |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 7154 | break; |
| 7155 | default: |
| 7156 | break; |
| 7157 | } |
Don Skidmore | e86bff0 | 2010-02-11 04:14:08 +0000 | [diff] [blame] | 7158 | |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 7159 | /* |
| 7160 | * If there is a fan on this device and it has failed log the |
| 7161 | * failure. |
| 7162 | */ |
| 7163 | if (adapter->flags & IXGBE_FLAG_FAN_FAIL_CAPABLE) { |
| 7164 | u32 esdp = IXGBE_READ_REG(hw, IXGBE_ESDP); |
| 7165 | if (esdp & IXGBE_ESDP_SDP1) |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 7166 | e_crit(probe, "Fan has stopped, replace the adapter\n"); |
Don Skidmore | bf069c9 | 2009-05-07 10:39:54 +0000 | [diff] [blame] | 7167 | } |
| 7168 | |
Peter P Waskiewicz Jr | 8ef78ad | 2012-02-01 09:19:21 +0000 | [diff] [blame] | 7169 | if (allow_unsupported_sfp) |
| 7170 | hw->allow_unsupported_sfp = allow_unsupported_sfp; |
| 7171 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 7172 | /* reset_hw fills in the perm_addr as well */ |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 7173 | hw->phy.reset_if_overtemp = true; |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 7174 | err = hw->mac.ops.reset_hw(hw); |
Mallikarjuna R Chilakala | 119fc60 | 2010-05-20 23:07:06 -0700 | [diff] [blame] | 7175 | hw->phy.reset_if_overtemp = false; |
Don Skidmore | 8ca783a | 2009-05-26 20:40:47 -0700 | [diff] [blame] | 7176 | if (err == IXGBE_ERR_SFP_NOT_PRESENT && |
| 7177 | hw->mac.type == ixgbe_mac_82598EB) { |
Don Skidmore | 8ca783a | 2009-05-26 20:40:47 -0700 | [diff] [blame] | 7178 | err = 0; |
| 7179 | } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) { |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7180 | e_dev_err("failed to load because an unsupported SFP+ " |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7181 | "module type was detected.\n"); |
| 7182 | e_dev_err("Reload the driver after installing a supported " |
| 7183 | "module.\n"); |
PJ Waskiewicz | 04f165e | 2009-04-09 22:27:57 +0000 | [diff] [blame] | 7184 | goto err_sw_init; |
| 7185 | } else if (err) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7186 | e_dev_err("HW Init failed: %d\n", err); |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 7187 | goto err_sw_init; |
| 7188 | } |
| 7189 | |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 7190 | ixgbe_probe_vf(adapter, ii); |
| 7191 | |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 7192 | netdev->features = NETIF_F_SG | |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7193 | NETIF_F_IP_CSUM | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 7194 | NETIF_F_IPV6_CSUM | |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7195 | NETIF_F_HW_VLAN_TX | |
| 7196 | NETIF_F_HW_VLAN_RX | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 7197 | NETIF_F_HW_VLAN_FILTER | |
| 7198 | NETIF_F_TSO | |
| 7199 | NETIF_F_TSO6 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 7200 | NETIF_F_RXHASH | |
| 7201 | NETIF_F_RXCSUM; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7202 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 7203 | netdev->hw_features = netdev->features; |
Jeff Kirsher | ad31c40 | 2008-06-05 04:05:30 -0700 | [diff] [blame] | 7204 | |
Don Skidmore | 58be766 | 2011-04-12 09:42:11 +0000 | [diff] [blame] | 7205 | switch (adapter->hw.mac.type) { |
| 7206 | case ixgbe_mac_82599EB: |
| 7207 | case ixgbe_mac_X540: |
Jesse Brandeburg | 45a5ead | 2009-04-27 22:36:35 +0000 | [diff] [blame] | 7208 | netdev->features |= NETIF_F_SCTP_CSUM; |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 7209 | netdev->hw_features |= NETIF_F_SCTP_CSUM | |
| 7210 | NETIF_F_NTUPLE; |
Don Skidmore | 58be766 | 2011-04-12 09:42:11 +0000 | [diff] [blame] | 7211 | break; |
| 7212 | default: |
| 7213 | break; |
| 7214 | } |
Jesse Brandeburg | 45a5ead | 2009-04-27 22:36:35 +0000 | [diff] [blame] | 7215 | |
Ben Greear | 3f2d1c0 | 2012-03-08 08:28:41 +0000 | [diff] [blame] | 7216 | netdev->hw_features |= NETIF_F_RXALL; |
| 7217 | |
Jeff Kirsher | ad31c40 | 2008-06-05 04:05:30 -0700 | [diff] [blame] | 7218 | netdev->vlan_features |= NETIF_F_TSO; |
| 7219 | netdev->vlan_features |= NETIF_F_TSO6; |
Jesse Brandeburg | 22f32b7a5 | 2008-08-26 04:27:18 -0700 | [diff] [blame] | 7220 | netdev->vlan_features |= NETIF_F_IP_CSUM; |
Alexander Duyck | cd1da50 | 2009-08-25 04:47:50 +0000 | [diff] [blame] | 7221 | netdev->vlan_features |= NETIF_F_IPV6_CSUM; |
Jeff Kirsher | ad31c40 | 2008-06-05 04:05:30 -0700 | [diff] [blame] | 7222 | netdev->vlan_features |= NETIF_F_SG; |
| 7223 | |
Jiri Pirko | 0178934 | 2011-08-16 06:29:00 +0000 | [diff] [blame] | 7224 | netdev->priv_flags |= IFF_UNICAST_FLT; |
Ben Greear | f43f313 | 2012-03-06 09:42:04 +0000 | [diff] [blame] | 7225 | netdev->priv_flags |= IFF_SUPP_NOFCS; |
Jiri Pirko | 0178934 | 2011-08-16 06:29:00 +0000 | [diff] [blame] | 7226 | |
Jeff Kirsher | 7a6b6f5 | 2008-11-25 01:02:08 -0800 | [diff] [blame] | 7227 | #ifdef CONFIG_IXGBE_DCB |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 7228 | netdev->dcbnl_ops = &dcbnl_ops; |
| 7229 | #endif |
| 7230 | |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 7231 | #ifdef IXGBE_FCOE |
Yi Zou | 0d55158 | 2009-07-22 14:07:12 +0000 | [diff] [blame] | 7232 | if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) { |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 7233 | if (hw->mac.ops.get_device_caps) { |
| 7234 | hw->mac.ops.get_device_caps(hw, &device_caps); |
Yi Zou | 0d55158 | 2009-07-22 14:07:12 +0000 | [diff] [blame] | 7235 | if (device_caps & IXGBE_DEVICE_CAPS_FCOE_OFFLOADS) |
| 7236 | adapter->flags &= ~IXGBE_FLAG_FCOE_CAPABLE; |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 7237 | } |
| 7238 | } |
Yi Zou | 5e09d7f | 2010-07-19 13:59:52 +0000 | [diff] [blame] | 7239 | if (adapter->flags & IXGBE_FLAG_FCOE_CAPABLE) { |
| 7240 | netdev->vlan_features |= NETIF_F_FCOE_CRC; |
| 7241 | netdev->vlan_features |= NETIF_F_FSO; |
| 7242 | netdev->vlan_features |= NETIF_F_FCOE_MTU; |
| 7243 | } |
Yi Zou | eacd73f | 2009-05-13 13:11:06 +0000 | [diff] [blame] | 7244 | #endif /* IXGBE_FCOE */ |
Yi Zou | 7b872a5 | 2010-09-22 17:57:58 +0000 | [diff] [blame] | 7245 | if (pci_using_dac) { |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7246 | netdev->features |= NETIF_F_HIGHDMA; |
Yi Zou | 7b872a5 | 2010-09-22 17:57:58 +0000 | [diff] [blame] | 7247 | netdev->vlan_features |= NETIF_F_HIGHDMA; |
| 7248 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7249 | |
Don Skidmore | 082757a | 2011-07-21 05:55:00 +0000 | [diff] [blame] | 7250 | if (adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) |
| 7251 | netdev->hw_features |= NETIF_F_LRO; |
Peter P Waskiewicz Jr | 0c19d6a | 2009-07-30 12:25:28 +0000 | [diff] [blame] | 7252 | if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) |
Alexander Duyck | f8212f9 | 2009-04-27 22:42:37 +0000 | [diff] [blame] | 7253 | netdev->features |= NETIF_F_LRO; |
| 7254 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7255 | /* make sure the EEPROM is good */ |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 7256 | if (hw->eeprom.ops.validate_checksum(hw, NULL) < 0) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7257 | e_dev_err("The EEPROM Checksum Is Not Valid\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7258 | err = -EIO; |
Alexander Duyck | 35937c0 | 2012-02-08 07:51:37 +0000 | [diff] [blame] | 7259 | goto err_sw_init; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7260 | } |
| 7261 | |
| 7262 | memcpy(netdev->dev_addr, hw->mac.perm_addr, netdev->addr_len); |
| 7263 | memcpy(netdev->perm_addr, hw->mac.perm_addr, netdev->addr_len); |
| 7264 | |
Jesse Brandeburg | c44ade9 | 2008-09-11 19:59:59 -0700 | [diff] [blame] | 7265 | if (ixgbe_validate_mac_addr(netdev->perm_addr)) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7266 | e_dev_err("invalid MAC address\n"); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7267 | err = -EIO; |
Alexander Duyck | 35937c0 | 2012-02-08 07:51:37 +0000 | [diff] [blame] | 7268 | goto err_sw_init; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7269 | } |
| 7270 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7271 | setup_timer(&adapter->service_timer, &ixgbe_service_timer, |
Alexander Duyck | 581330b | 2012-02-08 07:51:47 +0000 | [diff] [blame] | 7272 | (unsigned long) adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7273 | |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7274 | INIT_WORK(&adapter->service_task, ixgbe_service_task); |
| 7275 | clear_bit(__IXGBE_SERVICE_SCHED, &adapter->state); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7276 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 7277 | err = ixgbe_init_interrupt_scheme(adapter); |
| 7278 | if (err) |
| 7279 | goto err_sw_init; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7280 | |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 7281 | /* WOL not supported for all devices */ |
Emil Tantilov | c23f5b6 | 2011-08-16 07:34:18 +0000 | [diff] [blame] | 7282 | adapter->wol = 0; |
Jacob Keller | 8e2813f | 2012-04-21 06:05:40 +0000 | [diff] [blame] | 7283 | hw->eeprom.ops.read(hw, 0x2c, &adapter->eeprom_cap); |
| 7284 | if (ixgbe_wol_supported(adapter, pdev->device, pdev->subsystem_device)) |
Andy Gospodarek | 9417c46 | 2011-07-16 07:31:33 +0000 | [diff] [blame] | 7285 | adapter->wol = IXGBE_WUFC_MAG; |
Emil Tantilov | c23f5b6 | 2011-08-16 07:34:18 +0000 | [diff] [blame] | 7286 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 7287 | device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol); |
| 7288 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 7289 | #ifdef CONFIG_IXGBE_PTP |
| 7290 | ixgbe_ptp_init(adapter); |
| 7291 | #endif /* CONFIG_IXGBE_PTP*/ |
| 7292 | |
Emil Tantilov | 15e5209 | 2011-09-29 05:01:29 +0000 | [diff] [blame] | 7293 | /* save off EEPROM version number */ |
| 7294 | hw->eeprom.ops.read(hw, 0x2e, &adapter->eeprom_verh); |
| 7295 | hw->eeprom.ops.read(hw, 0x2d, &adapter->eeprom_verl); |
| 7296 | |
PJ Waskiewicz | 04f165e | 2009-04-09 22:27:57 +0000 | [diff] [blame] | 7297 | /* pick up the PCI bus settings for reporting later */ |
| 7298 | hw->mac.ops.get_bus_info(hw); |
| 7299 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7300 | /* print bus type/speed/width info */ |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7301 | e_dev_info("(PCI Express:%s:%s) %pM\n", |
Don Skidmore | 6716344 | 2011-04-26 08:00:00 +0000 | [diff] [blame] | 7302 | (hw->bus.speed == ixgbe_bus_speed_5000 ? "5.0GT/s" : |
| 7303 | hw->bus.speed == ixgbe_bus_speed_2500 ? "2.5GT/s" : |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7304 | "Unknown"), |
| 7305 | (hw->bus.width == ixgbe_bus_width_pcie_x8 ? "Width x8" : |
| 7306 | hw->bus.width == ixgbe_bus_width_pcie_x4 ? "Width x4" : |
| 7307 | hw->bus.width == ixgbe_bus_width_pcie_x1 ? "Width x1" : |
| 7308 | "Unknown"), |
| 7309 | netdev->dev_addr); |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 7310 | |
| 7311 | err = ixgbe_read_pba_string_generic(hw, part_str, IXGBE_PBANUM_LENGTH); |
| 7312 | if (err) |
Don Skidmore | 9fe93af | 2010-12-03 09:33:54 +0000 | [diff] [blame] | 7313 | strncpy(part_str, "Unknown", IXGBE_PBANUM_LENGTH); |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 7314 | if (ixgbe_is_sfp(hw) && hw->phy.sfp_type != ixgbe_sfp_type_not_present) |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 7315 | e_dev_info("MAC: %d, PHY: %d, SFP+: %d, PBA No: %s\n", |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7316 | hw->mac.type, hw->phy.type, hw->phy.sfp_type, |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 7317 | part_str); |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 7318 | else |
Don Skidmore | 289700db | 2010-12-03 03:32:58 +0000 | [diff] [blame] | 7319 | e_dev_info("MAC: %d, PHY: %d, PBA No: %s\n", |
| 7320 | hw->mac.type, hw->phy.type, part_str); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7321 | |
PJ Waskiewicz | e8e2635 | 2009-02-27 15:45:05 +0000 | [diff] [blame] | 7322 | if (hw->bus.width <= ixgbe_bus_width_pcie_x4) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7323 | e_dev_warn("PCI-Express bandwidth available for this card is " |
| 7324 | "not sufficient for optimal performance.\n"); |
| 7325 | e_dev_warn("For optimal performance a x8 PCI-Express slot " |
| 7326 | "is required.\n"); |
Auke Kok | 0c254d8 | 2008-02-11 09:25:56 -0800 | [diff] [blame] | 7327 | } |
| 7328 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7329 | /* reset the hardware with the new settings */ |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 7330 | err = hw->mac.ops.start_hw(hw); |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 7331 | if (err == IXGBE_ERR_EEPROM_VERSION) { |
| 7332 | /* We are running on a pre-production device, log a warning */ |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7333 | e_dev_warn("This device is a pre-production adapter/LOM. " |
| 7334 | "Please be aware there may be issues associated " |
| 7335 | "with your hardware. If you are experiencing " |
| 7336 | "problems please contact your Intel or hardware " |
| 7337 | "representative who provided you with this " |
| 7338 | "hardware.\n"); |
Peter P Waskiewicz Jr | 794caeb | 2009-06-04 16:02:24 +0000 | [diff] [blame] | 7339 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7340 | strcpy(netdev->name, "eth%d"); |
| 7341 | err = register_netdev(netdev); |
| 7342 | if (err) |
| 7343 | goto err_register; |
| 7344 | |
Emil Tantilov | 93d3ce8 | 2011-10-19 07:59:55 +0000 | [diff] [blame] | 7345 | /* power down the optics for multispeed fiber and 82599 SFP+ fiber */ |
| 7346 | if (hw->mac.ops.disable_tx_laser && |
| 7347 | ((hw->phy.multispeed_fiber) || |
| 7348 | ((hw->mac.ops.get_media_type(hw) == ixgbe_media_type_fiber) && |
| 7349 | (hw->mac.type == ixgbe_mac_82599EB)))) |
| 7350 | hw->mac.ops.disable_tx_laser(hw); |
| 7351 | |
Jesse Brandeburg | 5438646 | 2009-04-17 20:44:27 +0000 | [diff] [blame] | 7352 | /* carrier off reporting is important to ethtool even BEFORE open */ |
| 7353 | netif_carrier_off(netdev); |
| 7354 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 7355 | #ifdef CONFIG_IXGBE_DCA |
Denis V. Lunev | 652f093 | 2008-03-27 14:39:17 +0300 | [diff] [blame] | 7356 | if (dca_add_requester(&pdev->dev) == 0) { |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7357 | adapter->flags |= IXGBE_FLAG_DCA_ENABLED; |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7358 | ixgbe_setup_dca(adapter); |
| 7359 | } |
| 7360 | #endif |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 7361 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 7362 | 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] | 7363 | for (i = 0; i < adapter->num_vfs; i++) |
| 7364 | ixgbe_vf_configuration(pdev, (i | 0x10000000)); |
| 7365 | } |
| 7366 | |
Jacob Keller | 2466dd9 | 2011-09-08 03:50:54 +0000 | [diff] [blame] | 7367 | /* firmware requires driver version to be 0xFFFFFFFF |
| 7368 | * since os does not support feature |
| 7369 | */ |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 7370 | if (hw->mac.ops.set_fw_drv_ver) |
Jacob Keller | 2466dd9 | 2011-09-08 03:50:54 +0000 | [diff] [blame] | 7371 | hw->mac.ops.set_fw_drv_ver(hw, 0xFF, 0xFF, 0xFF, |
| 7372 | 0xFF); |
Emil Tantilov | 9612de9 | 2011-05-07 07:40:20 +0000 | [diff] [blame] | 7373 | |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 7374 | /* add san mac addr to netdev */ |
| 7375 | ixgbe_add_sanmac_netdev(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7376 | |
Neerav Parikh | ea81875 | 2012-01-04 20:23:40 +0000 | [diff] [blame] | 7377 | e_dev_info("%s\n", ixgbe_default_device_descr); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7378 | cards_found++; |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 7379 | |
Don Skidmore | 1210982 | 2012-05-04 06:07:08 +0000 | [diff] [blame] | 7380 | #ifdef CONFIG_IXGBE_HWMON |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 7381 | if (ixgbe_sysfs_init(adapter)) |
| 7382 | e_err(probe, "failed to allocate sysfs resources\n"); |
Don Skidmore | 1210982 | 2012-05-04 06:07:08 +0000 | [diff] [blame] | 7383 | #endif /* CONFIG_IXGBE_HWMON */ |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 7384 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7385 | return 0; |
| 7386 | |
| 7387 | err_register: |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 7388 | ixgbe_release_hw_control(adapter); |
Alexander Duyck | 7a921c9 | 2009-05-06 10:43:28 +0000 | [diff] [blame] | 7389 | ixgbe_clear_interrupt_scheme(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7390 | err_sw_init: |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 7391 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) |
| 7392 | ixgbe_disable_sriov(adapter); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7393 | adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7394 | iounmap(hw->hw_addr); |
| 7395 | err_ioremap: |
| 7396 | free_netdev(netdev); |
| 7397 | err_alloc_etherdev: |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7398 | pci_release_selected_regions(pdev, |
| 7399 | pci_select_bars(pdev, IORESOURCE_MEM)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7400 | err_pci_reg: |
| 7401 | err_dma: |
| 7402 | pci_disable_device(pdev); |
| 7403 | return err; |
| 7404 | } |
| 7405 | |
| 7406 | /** |
| 7407 | * ixgbe_remove - Device Removal Routine |
| 7408 | * @pdev: PCI device information struct |
| 7409 | * |
| 7410 | * ixgbe_remove is called by the PCI subsystem to alert the driver |
| 7411 | * that it should release a PCI device. The could be caused by a |
| 7412 | * Hot-Plug event, or because the driver is going to be removed from |
| 7413 | * memory. |
| 7414 | **/ |
| 7415 | static void __devexit ixgbe_remove(struct pci_dev *pdev) |
| 7416 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 7417 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
| 7418 | struct net_device *netdev = adapter->netdev; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7419 | |
| 7420 | set_bit(__IXGBE_DOWN, &adapter->state); |
Alexander Duyck | 7086400 | 2011-04-27 09:13:56 +0000 | [diff] [blame] | 7421 | cancel_work_sync(&adapter->service_task); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7422 | |
Jacob Keller | 3a6a4ed | 2012-05-01 05:24:58 +0000 | [diff] [blame] | 7423 | #ifdef CONFIG_IXGBE_PTP |
| 7424 | ixgbe_ptp_stop(adapter); |
| 7425 | #endif |
| 7426 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 7427 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7428 | if (adapter->flags & IXGBE_FLAG_DCA_ENABLED) { |
| 7429 | adapter->flags &= ~IXGBE_FLAG_DCA_ENABLED; |
| 7430 | dca_remove_requester(&pdev->dev); |
| 7431 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_DCA_CTRL, 1); |
| 7432 | } |
| 7433 | |
| 7434 | #endif |
Don Skidmore | 1210982 | 2012-05-04 06:07:08 +0000 | [diff] [blame] | 7435 | #ifdef CONFIG_IXGBE_HWMON |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 7436 | ixgbe_sysfs_exit(adapter); |
Don Skidmore | 1210982 | 2012-05-04 06:07:08 +0000 | [diff] [blame] | 7437 | #endif /* CONFIG_IXGBE_HWMON */ |
Don Skidmore | 3ca8bc6 | 2012-04-12 00:33:31 +0000 | [diff] [blame] | 7438 | |
Yi Zou | 332d4a7 | 2009-05-13 13:11:53 +0000 | [diff] [blame] | 7439 | #ifdef IXGBE_FCOE |
| 7440 | if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED) |
| 7441 | ixgbe_cleanup_fcoe(adapter); |
| 7442 | |
| 7443 | #endif /* IXGBE_FCOE */ |
PJ Waskiewicz | 0365e6e | 2009-05-17 12:32:25 +0000 | [diff] [blame] | 7444 | |
| 7445 | /* remove the added san mac */ |
| 7446 | ixgbe_del_sanmac_netdev(netdev); |
| 7447 | |
Donald Skidmore | c4900be | 2008-11-20 21:11:42 -0800 | [diff] [blame] | 7448 | if (netdev->reg_state == NETREG_REGISTERED) |
| 7449 | unregister_netdev(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7450 | |
Greg Rose | c6bda30 | 2011-08-24 02:37:55 +0000 | [diff] [blame] | 7451 | if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) { |
| 7452 | if (!(ixgbe_check_vf_assignment(adapter))) |
| 7453 | ixgbe_disable_sriov(adapter); |
| 7454 | else |
| 7455 | e_dev_warn("Unloading driver while VFs are assigned " |
| 7456 | "- VFs will not be deallocated\n"); |
| 7457 | } |
Greg Rose | 1cdd1ec | 2010-01-09 02:26:46 +0000 | [diff] [blame] | 7458 | |
Alexander Duyck | 7a921c9 | 2009-05-06 10:43:28 +0000 | [diff] [blame] | 7459 | ixgbe_clear_interrupt_scheme(adapter); |
Ayyappan Veeraiyan | 5eba369 | 2008-02-01 15:59:04 -0800 | [diff] [blame] | 7460 | |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 7461 | ixgbe_release_hw_control(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7462 | |
Alexander Duyck | 2b1588c | 2012-03-17 02:39:16 +0000 | [diff] [blame] | 7463 | #ifdef CONFIG_DCB |
| 7464 | kfree(adapter->ixgbe_ieee_pfc); |
| 7465 | kfree(adapter->ixgbe_ieee_ets); |
| 7466 | |
| 7467 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7468 | iounmap(adapter->hw.hw_addr); |
gouji-new | 9ce7766 | 2009-05-06 10:44:45 +0000 | [diff] [blame] | 7469 | pci_release_selected_regions(pdev, pci_select_bars(pdev, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7470 | IORESOURCE_MEM)); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7471 | |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7472 | e_dev_info("complete\n"); |
Ayyappan Veeraiyan | 021230d | 2008-03-03 15:03:45 -0800 | [diff] [blame] | 7473 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7474 | free_netdev(netdev); |
| 7475 | |
Frans Pop | 19d5afd | 2009-10-02 10:04:12 -0700 | [diff] [blame] | 7476 | pci_disable_pcie_error_reporting(pdev); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 7477 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7478 | pci_disable_device(pdev); |
| 7479 | } |
| 7480 | |
| 7481 | /** |
| 7482 | * ixgbe_io_error_detected - called when PCI error is detected |
| 7483 | * @pdev: Pointer to PCI device |
| 7484 | * @state: The current pci connection state |
| 7485 | * |
| 7486 | * This function is called after a PCI bus error affecting |
| 7487 | * this device has been detected. |
| 7488 | */ |
| 7489 | 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] | 7490 | pci_channel_state_t state) |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7491 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 7492 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
| 7493 | struct net_device *netdev = adapter->netdev; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7494 | |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 7495 | #ifdef CONFIG_PCI_IOV |
| 7496 | struct pci_dev *bdev, *vfdev; |
| 7497 | u32 dw0, dw1, dw2, dw3; |
| 7498 | int vf, pos; |
| 7499 | u16 req_id, pf_func; |
| 7500 | |
| 7501 | if (adapter->hw.mac.type == ixgbe_mac_82598EB || |
| 7502 | adapter->num_vfs == 0) |
| 7503 | goto skip_bad_vf_detection; |
| 7504 | |
| 7505 | bdev = pdev->bus->self; |
| 7506 | while (bdev && (bdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT)) |
| 7507 | bdev = bdev->bus->self; |
| 7508 | |
| 7509 | if (!bdev) |
| 7510 | goto skip_bad_vf_detection; |
| 7511 | |
| 7512 | pos = pci_find_ext_capability(bdev, PCI_EXT_CAP_ID_ERR); |
| 7513 | if (!pos) |
| 7514 | goto skip_bad_vf_detection; |
| 7515 | |
| 7516 | pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG, &dw0); |
| 7517 | pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 4, &dw1); |
| 7518 | pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 8, &dw2); |
| 7519 | pci_read_config_dword(bdev, pos + PCI_ERR_HEADER_LOG + 12, &dw3); |
| 7520 | |
| 7521 | req_id = dw1 >> 16; |
| 7522 | /* On the 82599 if bit 7 of the requestor ID is set then it's a VF */ |
| 7523 | if (!(req_id & 0x0080)) |
| 7524 | goto skip_bad_vf_detection; |
| 7525 | |
| 7526 | pf_func = req_id & 0x01; |
| 7527 | if ((pf_func & 1) == (pdev->devfn & 1)) { |
| 7528 | unsigned int device_id; |
| 7529 | |
| 7530 | vf = (req_id & 0x7F) >> 1; |
| 7531 | e_dev_err("VF %d has caused a PCIe error\n", vf); |
| 7532 | e_dev_err("TLP: dw0: %8.8x\tdw1: %8.8x\tdw2: " |
| 7533 | "%8.8x\tdw3: %8.8x\n", |
| 7534 | dw0, dw1, dw2, dw3); |
| 7535 | switch (adapter->hw.mac.type) { |
| 7536 | case ixgbe_mac_82599EB: |
| 7537 | device_id = IXGBE_82599_VF_DEVICE_ID; |
| 7538 | break; |
| 7539 | case ixgbe_mac_X540: |
| 7540 | device_id = IXGBE_X540_VF_DEVICE_ID; |
| 7541 | break; |
| 7542 | default: |
| 7543 | device_id = 0; |
| 7544 | break; |
| 7545 | } |
| 7546 | |
| 7547 | /* Find the pci device of the offending VF */ |
| 7548 | vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, device_id, NULL); |
| 7549 | while (vfdev) { |
| 7550 | if (vfdev->devfn == (req_id & 0xFF)) |
| 7551 | break; |
| 7552 | vfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, |
| 7553 | device_id, vfdev); |
| 7554 | } |
| 7555 | /* |
| 7556 | * There's a slim chance the VF could have been hot plugged, |
| 7557 | * so if it is no longer present we don't need to issue the |
| 7558 | * VFLR. Just clean up the AER in that case. |
| 7559 | */ |
| 7560 | if (vfdev) { |
| 7561 | e_dev_err("Issuing VFLR to VF %d\n", vf); |
| 7562 | pci_write_config_dword(vfdev, 0xA8, 0x00008000); |
| 7563 | } |
| 7564 | |
| 7565 | pci_cleanup_aer_uncorrect_error_status(pdev); |
| 7566 | } |
| 7567 | |
| 7568 | /* |
| 7569 | * Even though the error may have occurred on the other port |
| 7570 | * we still need to increment the vf error reference count for |
| 7571 | * both ports because the I/O resume function will be called |
| 7572 | * for both of them. |
| 7573 | */ |
| 7574 | adapter->vferr_refcount++; |
| 7575 | |
| 7576 | return PCI_ERS_RESULT_RECOVERED; |
| 7577 | |
| 7578 | skip_bad_vf_detection: |
| 7579 | #endif /* CONFIG_PCI_IOV */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7580 | netif_device_detach(netdev); |
| 7581 | |
Breno Leitao | 3044b8d | 2009-05-06 10:44:26 +0000 | [diff] [blame] | 7582 | if (state == pci_channel_io_perm_failure) |
| 7583 | return PCI_ERS_RESULT_DISCONNECT; |
| 7584 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7585 | if (netif_running(netdev)) |
| 7586 | ixgbe_down(adapter); |
| 7587 | pci_disable_device(pdev); |
| 7588 | |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 7589 | /* Request a slot reset. */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7590 | return PCI_ERS_RESULT_NEED_RESET; |
| 7591 | } |
| 7592 | |
| 7593 | /** |
| 7594 | * ixgbe_io_slot_reset - called after the pci bus has been reset. |
| 7595 | * @pdev: Pointer to PCI device |
| 7596 | * |
| 7597 | * Restart the card from scratch, as if from a cold-boot. |
| 7598 | */ |
| 7599 | static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev) |
| 7600 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 7601 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 7602 | pci_ers_result_t result; |
| 7603 | int err; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7604 | |
gouji-new | 9ce7766 | 2009-05-06 10:44:45 +0000 | [diff] [blame] | 7605 | if (pci_enable_device_mem(pdev)) { |
Emil Tantilov | 396e799 | 2010-07-01 20:05:12 +0000 | [diff] [blame] | 7606 | 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] | 7607 | result = PCI_ERS_RESULT_DISCONNECT; |
| 7608 | } else { |
| 7609 | pci_set_master(pdev); |
| 7610 | pci_restore_state(pdev); |
Breno Leitao | c0e1f68 | 2009-11-10 08:37:47 +0000 | [diff] [blame] | 7611 | pci_save_state(pdev); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 7612 | |
Don Skidmore | dd4d8ca | 2009-04-29 00:22:31 -0700 | [diff] [blame] | 7613 | pci_wake_from_d3(pdev, false); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 7614 | |
| 7615 | ixgbe_reset(adapter); |
PJ Waskiewicz | 8851253 | 2009-03-13 22:15:10 +0000 | [diff] [blame] | 7616 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 7617 | result = PCI_ERS_RESULT_RECOVERED; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7618 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7619 | |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 7620 | err = pci_cleanup_aer_uncorrect_error_status(pdev); |
| 7621 | if (err) { |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7622 | e_dev_err("pci_cleanup_aer_uncorrect_error_status " |
| 7623 | "failed 0x%0x\n", err); |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 7624 | /* non-fatal, continue */ |
| 7625 | } |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7626 | |
Peter P Waskiewicz Jr | 6fabd71 | 2008-12-10 01:13:08 -0800 | [diff] [blame] | 7627 | return result; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7628 | } |
| 7629 | |
| 7630 | /** |
| 7631 | * ixgbe_io_resume - called when traffic can start flowing again. |
| 7632 | * @pdev: Pointer to PCI device |
| 7633 | * |
| 7634 | * This callback is called when the error recovery driver tells us that |
| 7635 | * its OK to resume normal operation. |
| 7636 | */ |
| 7637 | static void ixgbe_io_resume(struct pci_dev *pdev) |
| 7638 | { |
Alexander Duyck | c60fbb0 | 2010-11-16 19:26:54 -0800 | [diff] [blame] | 7639 | struct ixgbe_adapter *adapter = pci_get_drvdata(pdev); |
| 7640 | struct net_device *netdev = adapter->netdev; |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7641 | |
Greg Rose | 83c61fa | 2011-09-07 05:59:35 +0000 | [diff] [blame] | 7642 | #ifdef CONFIG_PCI_IOV |
| 7643 | if (adapter->vferr_refcount) { |
| 7644 | e_info(drv, "Resuming after VF err\n"); |
| 7645 | adapter->vferr_refcount--; |
| 7646 | return; |
| 7647 | } |
| 7648 | |
| 7649 | #endif |
Alexander Duyck | c7ccde0 | 2011-07-21 00:40:40 +0000 | [diff] [blame] | 7650 | if (netif_running(netdev)) |
| 7651 | ixgbe_up(adapter); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7652 | |
| 7653 | netif_device_attach(netdev); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7654 | } |
| 7655 | |
| 7656 | static struct pci_error_handlers ixgbe_err_handler = { |
| 7657 | .error_detected = ixgbe_io_error_detected, |
| 7658 | .slot_reset = ixgbe_io_slot_reset, |
| 7659 | .resume = ixgbe_io_resume, |
| 7660 | }; |
| 7661 | |
| 7662 | static struct pci_driver ixgbe_driver = { |
| 7663 | .name = ixgbe_driver_name, |
| 7664 | .id_table = ixgbe_pci_tbl, |
| 7665 | .probe = ixgbe_probe, |
| 7666 | .remove = __devexit_p(ixgbe_remove), |
| 7667 | #ifdef CONFIG_PM |
| 7668 | .suspend = ixgbe_suspend, |
| 7669 | .resume = ixgbe_resume, |
| 7670 | #endif |
| 7671 | .shutdown = ixgbe_shutdown, |
| 7672 | .err_handler = &ixgbe_err_handler |
| 7673 | }; |
| 7674 | |
| 7675 | /** |
| 7676 | * ixgbe_init_module - Driver Registration Routine |
| 7677 | * |
| 7678 | * ixgbe_init_module is the first routine called when the driver is |
| 7679 | * loaded. All it does is register with the PCI subsystem. |
| 7680 | **/ |
| 7681 | static int __init ixgbe_init_module(void) |
| 7682 | { |
| 7683 | int ret; |
Joe Perches | c768957 | 2010-09-07 21:35:17 +0000 | [diff] [blame] | 7684 | pr_info("%s - version %s\n", ixgbe_driver_string, ixgbe_driver_version); |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7685 | pr_info("%s\n", ixgbe_copyright); |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7686 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 7687 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7688 | dca_register_notify(&dca_notifier); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7689 | #endif |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 7690 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7691 | ret = pci_register_driver(&ixgbe_driver); |
| 7692 | return ret; |
| 7693 | } |
Peter P Waskiewicz | b461724 | 2008-09-11 20:04:46 -0700 | [diff] [blame] | 7694 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7695 | module_init(ixgbe_init_module); |
| 7696 | |
| 7697 | /** |
| 7698 | * ixgbe_exit_module - Driver Exit Cleanup Routine |
| 7699 | * |
| 7700 | * ixgbe_exit_module is called just before the driver is removed |
| 7701 | * from memory. |
| 7702 | **/ |
| 7703 | static void __exit ixgbe_exit_module(void) |
| 7704 | { |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 7705 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7706 | dca_unregister_notify(&dca_notifier); |
| 7707 | #endif |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7708 | pci_unregister_driver(&ixgbe_driver); |
Eric Dumazet | 1a51502 | 2010-11-16 19:26:42 -0800 | [diff] [blame] | 7709 | rcu_barrier(); /* Wait for completion of call_rcu()'s */ |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7710 | } |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7711 | |
Jeff Garzik | 5dd2d33 | 2008-10-16 05:09:31 -0400 | [diff] [blame] | 7712 | #ifdef CONFIG_IXGBE_DCA |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7713 | static int ixgbe_notify_dca(struct notifier_block *nb, unsigned long event, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7714 | void *p) |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7715 | { |
| 7716 | int ret_val; |
| 7717 | |
| 7718 | ret_val = driver_for_each_device(&ixgbe_driver.driver, NULL, &event, |
Joe Perches | e8e9f69 | 2010-09-07 21:34:53 +0000 | [diff] [blame] | 7719 | __ixgbe_notify_dca); |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7720 | |
| 7721 | return ret_val ? NOTIFY_BAD : NOTIFY_DONE; |
| 7722 | } |
Jeb Cramer | bd0362d | 2008-03-03 15:04:02 -0800 | [diff] [blame] | 7723 | |
Alexander Duyck | b453368 | 2009-03-31 21:32:42 +0000 | [diff] [blame] | 7724 | #endif /* CONFIG_IXGBE_DCA */ |
Emil Tantilov | 849c454 | 2010-06-03 16:53:41 +0000 | [diff] [blame] | 7725 | |
Auke Kok | 9a799d7 | 2007-09-15 14:07:45 -0700 | [diff] [blame] | 7726 | module_exit(ixgbe_exit_module); |
| 7727 | |
| 7728 | /* ixgbe_main.c */ |