Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * |
| 3 | * Intel Ethernet Controller XL710 Family Linux Driver |
Greg Rose | dc641b7 | 2013-12-18 13:45:51 +0000 | [diff] [blame] | 4 | * Copyright(c) 2013 - 2014 Intel Corporation. |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [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 | * |
Greg Rose | dc641b7 | 2013-12-18 13:45:51 +0000 | [diff] [blame] | 15 | * You should have received a copy of the GNU General Public License along |
| 16 | * with this program. If not, see <http://www.gnu.org/licenses/>. |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in |
| 19 | * the file called "COPYING". |
| 20 | * |
| 21 | * Contact Information: |
| 22 | * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 23 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 24 | * |
| 25 | ******************************************************************************/ |
| 26 | |
| 27 | /* Local includes */ |
| 28 | #include "i40e.h" |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 29 | #include "i40e_diag.h" |
Jeff Kirsher | a1c9a9d | 2013-12-28 07:32:18 +0000 | [diff] [blame] | 30 | #ifdef CONFIG_I40E_VXLAN |
| 31 | #include <net/vxlan.h> |
| 32 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 33 | |
| 34 | const char i40e_driver_name[] = "i40e"; |
| 35 | static const char i40e_driver_string[] = |
| 36 | "Intel(R) Ethernet Connection XL710 Network Driver"; |
| 37 | |
| 38 | #define DRV_KERN "-k" |
| 39 | |
Catherine Sullivan | e8e724d | 2014-07-10 07:58:26 +0000 | [diff] [blame] | 40 | #define DRV_VERSION_MAJOR 1 |
Catherine Sullivan | a36fdd8e | 2014-11-11 20:07:41 +0000 | [diff] [blame] | 41 | #define DRV_VERSION_MINOR 2 |
| 42 | #define DRV_VERSION_BUILD 2 |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 43 | #define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \ |
| 44 | __stringify(DRV_VERSION_MINOR) "." \ |
| 45 | __stringify(DRV_VERSION_BUILD) DRV_KERN |
| 46 | const char i40e_driver_version_str[] = DRV_VERSION; |
Jesse Brandeburg | 8fb905b | 2014-01-17 15:36:33 -0800 | [diff] [blame] | 47 | static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation."; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 48 | |
| 49 | /* a bit of forward declarations */ |
| 50 | static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi); |
| 51 | static void i40e_handle_reset_warning(struct i40e_pf *pf); |
| 52 | static int i40e_add_vsi(struct i40e_vsi *vsi); |
| 53 | static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi); |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 54 | static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 55 | static int i40e_setup_misc_vector(struct i40e_pf *pf); |
| 56 | static void i40e_determine_queue_usage(struct i40e_pf *pf); |
| 57 | static int i40e_setup_pf_filter_control(struct i40e_pf *pf); |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 58 | static void i40e_fdir_sb_setup(struct i40e_pf *pf); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 59 | static int i40e_veb_get_bw_info(struct i40e_veb *veb); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 60 | |
| 61 | /* i40e_pci_tbl - PCI Device ID Table |
| 62 | * |
| 63 | * Last entry must be all 0s |
| 64 | * |
| 65 | * { Vendor ID, Device ID, SubVendor ID, SubDevice ID, |
| 66 | * Class, Class Mask, private data (not used) } |
| 67 | */ |
Benoit Taine | 9baa3c3 | 2014-08-08 15:56:03 +0200 | [diff] [blame] | 68 | static const struct pci_device_id i40e_pci_tbl[] = { |
Shannon Nelson | ab60085 | 2014-01-17 15:36:39 -0800 | [diff] [blame] | 69 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0}, |
Shannon Nelson | ab60085 | 2014-01-17 15:36:39 -0800 | [diff] [blame] | 70 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0}, |
| 71 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0}, |
| 72 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0}, |
| 73 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0}, |
Shannon Nelson | ab60085 | 2014-01-17 15:36:39 -0800 | [diff] [blame] | 74 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0}, |
| 75 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0}, |
| 76 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0}, |
Mitch Williams | 5960d33 | 2014-09-13 07:40:47 +0000 | [diff] [blame] | 77 | {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0}, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 78 | /* required last entry */ |
| 79 | {0, } |
| 80 | }; |
| 81 | MODULE_DEVICE_TABLE(pci, i40e_pci_tbl); |
| 82 | |
| 83 | #define I40E_MAX_VF_COUNT 128 |
| 84 | static int debug = -1; |
| 85 | module_param(debug, int, 0); |
| 86 | MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)"); |
| 87 | |
| 88 | MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>"); |
| 89 | MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver"); |
| 90 | MODULE_LICENSE("GPL"); |
| 91 | MODULE_VERSION(DRV_VERSION); |
| 92 | |
| 93 | /** |
| 94 | * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code |
| 95 | * @hw: pointer to the HW structure |
| 96 | * @mem: ptr to mem struct to fill out |
| 97 | * @size: size of memory requested |
| 98 | * @alignment: what to align the allocation to |
| 99 | **/ |
| 100 | int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem, |
| 101 | u64 size, u32 alignment) |
| 102 | { |
| 103 | struct i40e_pf *pf = (struct i40e_pf *)hw->back; |
| 104 | |
| 105 | mem->size = ALIGN(size, alignment); |
| 106 | mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size, |
| 107 | &mem->pa, GFP_KERNEL); |
Jesse Brandeburg | 93bc73b | 2013-09-13 08:23:18 +0000 | [diff] [blame] | 108 | if (!mem->va) |
| 109 | return -ENOMEM; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 110 | |
Jesse Brandeburg | 93bc73b | 2013-09-13 08:23:18 +0000 | [diff] [blame] | 111 | return 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | /** |
| 115 | * i40e_free_dma_mem_d - OS specific memory free for shared code |
| 116 | * @hw: pointer to the HW structure |
| 117 | * @mem: ptr to mem struct to free |
| 118 | **/ |
| 119 | int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem) |
| 120 | { |
| 121 | struct i40e_pf *pf = (struct i40e_pf *)hw->back; |
| 122 | |
| 123 | dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa); |
| 124 | mem->va = NULL; |
| 125 | mem->pa = 0; |
| 126 | mem->size = 0; |
| 127 | |
| 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code |
| 133 | * @hw: pointer to the HW structure |
| 134 | * @mem: ptr to mem struct to fill out |
| 135 | * @size: size of memory requested |
| 136 | **/ |
| 137 | int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem, |
| 138 | u32 size) |
| 139 | { |
| 140 | mem->size = size; |
| 141 | mem->va = kzalloc(size, GFP_KERNEL); |
| 142 | |
Jesse Brandeburg | 93bc73b | 2013-09-13 08:23:18 +0000 | [diff] [blame] | 143 | if (!mem->va) |
| 144 | return -ENOMEM; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 145 | |
Jesse Brandeburg | 93bc73b | 2013-09-13 08:23:18 +0000 | [diff] [blame] | 146 | return 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | /** |
| 150 | * i40e_free_virt_mem_d - OS specific memory free for shared code |
| 151 | * @hw: pointer to the HW structure |
| 152 | * @mem: ptr to mem struct to free |
| 153 | **/ |
| 154 | int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem) |
| 155 | { |
| 156 | /* it's ok to kfree a NULL pointer */ |
| 157 | kfree(mem->va); |
| 158 | mem->va = NULL; |
| 159 | mem->size = 0; |
| 160 | |
| 161 | return 0; |
| 162 | } |
| 163 | |
| 164 | /** |
| 165 | * i40e_get_lump - find a lump of free generic resource |
| 166 | * @pf: board private structure |
| 167 | * @pile: the pile of resource to search |
| 168 | * @needed: the number of items needed |
| 169 | * @id: an owner id to stick on the items assigned |
| 170 | * |
| 171 | * Returns the base item index of the lump, or negative for error |
| 172 | * |
| 173 | * The search_hint trick and lack of advanced fit-finding only work |
| 174 | * because we're highly likely to have all the same size lump requests. |
| 175 | * Linear search time and any fragmentation should be minimal. |
| 176 | **/ |
| 177 | static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile, |
| 178 | u16 needed, u16 id) |
| 179 | { |
| 180 | int ret = -ENOMEM; |
Jesse Brandeburg | ddf434a | 2013-09-13 08:23:19 +0000 | [diff] [blame] | 181 | int i, j; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 182 | |
| 183 | if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) { |
| 184 | dev_info(&pf->pdev->dev, |
| 185 | "param err: pile=%p needed=%d id=0x%04x\n", |
| 186 | pile, needed, id); |
| 187 | return -EINVAL; |
| 188 | } |
| 189 | |
| 190 | /* start the linear search with an imperfect hint */ |
| 191 | i = pile->search_hint; |
Jesse Brandeburg | ddf434a | 2013-09-13 08:23:19 +0000 | [diff] [blame] | 192 | while (i < pile->num_entries) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 193 | /* skip already allocated entries */ |
| 194 | if (pile->list[i] & I40E_PILE_VALID_BIT) { |
| 195 | i++; |
| 196 | continue; |
| 197 | } |
| 198 | |
| 199 | /* do we have enough in this lump? */ |
| 200 | for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) { |
| 201 | if (pile->list[i+j] & I40E_PILE_VALID_BIT) |
| 202 | break; |
| 203 | } |
| 204 | |
| 205 | if (j == needed) { |
| 206 | /* there was enough, so assign it to the requestor */ |
| 207 | for (j = 0; j < needed; j++) |
| 208 | pile->list[i+j] = id | I40E_PILE_VALID_BIT; |
| 209 | ret = i; |
| 210 | pile->search_hint = i + j; |
Jesse Brandeburg | ddf434a | 2013-09-13 08:23:19 +0000 | [diff] [blame] | 211 | break; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 212 | } else { |
| 213 | /* not enough, so skip over it and continue looking */ |
| 214 | i += j; |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | return ret; |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * i40e_put_lump - return a lump of generic resource |
| 223 | * @pile: the pile of resource to search |
| 224 | * @index: the base item index |
| 225 | * @id: the owner id of the items assigned |
| 226 | * |
| 227 | * Returns the count of items in the lump |
| 228 | **/ |
| 229 | static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id) |
| 230 | { |
| 231 | int valid_id = (id | I40E_PILE_VALID_BIT); |
| 232 | int count = 0; |
| 233 | int i; |
| 234 | |
| 235 | if (!pile || index >= pile->num_entries) |
| 236 | return -EINVAL; |
| 237 | |
| 238 | for (i = index; |
| 239 | i < pile->num_entries && pile->list[i] == valid_id; |
| 240 | i++) { |
| 241 | pile->list[i] = 0; |
| 242 | count++; |
| 243 | } |
| 244 | |
| 245 | if (count && index < pile->search_hint) |
| 246 | pile->search_hint = index; |
| 247 | |
| 248 | return count; |
| 249 | } |
| 250 | |
| 251 | /** |
| 252 | * i40e_service_event_schedule - Schedule the service task to wake up |
| 253 | * @pf: board private structure |
| 254 | * |
| 255 | * If not already scheduled, this puts the task into the work queue |
| 256 | **/ |
| 257 | static void i40e_service_event_schedule(struct i40e_pf *pf) |
| 258 | { |
| 259 | if (!test_bit(__I40E_DOWN, &pf->state) && |
| 260 | !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) && |
| 261 | !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state)) |
| 262 | schedule_work(&pf->service_task); |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * i40e_tx_timeout - Respond to a Tx Hang |
| 267 | * @netdev: network interface device structure |
| 268 | * |
| 269 | * If any port has noticed a Tx timeout, it is likely that the whole |
| 270 | * device is munged, not just the one netdev port, so go for the full |
| 271 | * reset. |
| 272 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 273 | #ifdef I40E_FCOE |
| 274 | void i40e_tx_timeout(struct net_device *netdev) |
| 275 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 276 | static void i40e_tx_timeout(struct net_device *netdev) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 277 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 278 | { |
| 279 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 280 | struct i40e_vsi *vsi = np->vsi; |
| 281 | struct i40e_pf *pf = vsi->back; |
| 282 | |
| 283 | pf->tx_timeout_count++; |
| 284 | |
| 285 | if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20))) |
Anjali Singhai Jain | 327fe04 | 2014-06-04 01:23:26 +0000 | [diff] [blame] | 286 | pf->tx_timeout_recovery_level = 1; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 287 | pf->tx_timeout_last_recovery = jiffies; |
| 288 | netdev_info(netdev, "tx_timeout recovery level %d\n", |
| 289 | pf->tx_timeout_recovery_level); |
| 290 | |
| 291 | switch (pf->tx_timeout_recovery_level) { |
| 292 | case 0: |
| 293 | /* disable and re-enable queues for the VSI */ |
| 294 | if (in_interrupt()) { |
| 295 | set_bit(__I40E_REINIT_REQUESTED, &pf->state); |
| 296 | set_bit(__I40E_REINIT_REQUESTED, &vsi->state); |
| 297 | } else { |
| 298 | i40e_vsi_reinit_locked(vsi); |
| 299 | } |
| 300 | break; |
| 301 | case 1: |
| 302 | set_bit(__I40E_PF_RESET_REQUESTED, &pf->state); |
| 303 | break; |
| 304 | case 2: |
| 305 | set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state); |
| 306 | break; |
| 307 | case 3: |
| 308 | set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state); |
| 309 | break; |
| 310 | default: |
| 311 | netdev_err(netdev, "tx_timeout recovery unsuccessful\n"); |
Neerav Parikh | b5d06f0 | 2014-06-03 23:50:17 +0000 | [diff] [blame] | 312 | set_bit(__I40E_DOWN_REQUESTED, &pf->state); |
| 313 | set_bit(__I40E_DOWN_REQUESTED, &vsi->state); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 314 | break; |
| 315 | } |
| 316 | i40e_service_event_schedule(pf); |
| 317 | pf->tx_timeout_recovery_level++; |
| 318 | } |
| 319 | |
| 320 | /** |
| 321 | * i40e_release_rx_desc - Store the new tail and head values |
| 322 | * @rx_ring: ring to bump |
| 323 | * @val: new head index |
| 324 | **/ |
| 325 | static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val) |
| 326 | { |
| 327 | rx_ring->next_to_use = val; |
| 328 | |
| 329 | /* Force memory writes to complete before letting h/w |
| 330 | * know there are new descriptors to fetch. (Only |
| 331 | * applicable for weak-ordered memory model archs, |
| 332 | * such as IA-64). |
| 333 | */ |
| 334 | wmb(); |
| 335 | writel(val, rx_ring->tail); |
| 336 | } |
| 337 | |
| 338 | /** |
| 339 | * i40e_get_vsi_stats_struct - Get System Network Statistics |
| 340 | * @vsi: the VSI we care about |
| 341 | * |
| 342 | * Returns the address of the device statistics structure. |
| 343 | * The statistics are actually updated from the service task. |
| 344 | **/ |
| 345 | struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi) |
| 346 | { |
| 347 | return &vsi->net_stats; |
| 348 | } |
| 349 | |
| 350 | /** |
| 351 | * i40e_get_netdev_stats_struct - Get statistics for netdev interface |
| 352 | * @netdev: network interface device structure |
| 353 | * |
| 354 | * Returns the address of the device statistics structure. |
| 355 | * The statistics are actually updated from the service task. |
| 356 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 357 | #ifdef I40E_FCOE |
| 358 | struct rtnl_link_stats64 *i40e_get_netdev_stats_struct( |
| 359 | struct net_device *netdev, |
| 360 | struct rtnl_link_stats64 *stats) |
| 361 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 362 | static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct( |
| 363 | struct net_device *netdev, |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 364 | struct rtnl_link_stats64 *stats) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 365 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 366 | { |
| 367 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
Akeem G Abodunrin | e7046ee | 2014-04-09 05:58:58 +0000 | [diff] [blame] | 368 | struct i40e_ring *tx_ring, *rx_ring; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 369 | struct i40e_vsi *vsi = np->vsi; |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 370 | struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi); |
| 371 | int i; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 372 | |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 373 | if (test_bit(__I40E_DOWN, &vsi->state)) |
| 374 | return stats; |
| 375 | |
Jesse Brandeburg | 3c325ce | 2013-12-14 03:26:45 -0800 | [diff] [blame] | 376 | if (!vsi->tx_rings) |
| 377 | return stats; |
| 378 | |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 379 | rcu_read_lock(); |
| 380 | for (i = 0; i < vsi->num_queue_pairs; i++) { |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 381 | u64 bytes, packets; |
| 382 | unsigned int start; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 383 | |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 384 | tx_ring = ACCESS_ONCE(vsi->tx_rings[i]); |
| 385 | if (!tx_ring) |
| 386 | continue; |
| 387 | |
| 388 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 389 | start = u64_stats_fetch_begin_irq(&tx_ring->syncp); |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 390 | packets = tx_ring->stats.packets; |
| 391 | bytes = tx_ring->stats.bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 392 | } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start)); |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 393 | |
| 394 | stats->tx_packets += packets; |
| 395 | stats->tx_bytes += bytes; |
| 396 | rx_ring = &tx_ring[1]; |
| 397 | |
| 398 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 399 | start = u64_stats_fetch_begin_irq(&rx_ring->syncp); |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 400 | packets = rx_ring->stats.packets; |
| 401 | bytes = rx_ring->stats.bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 402 | } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start)); |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 403 | |
| 404 | stats->rx_packets += packets; |
| 405 | stats->rx_bytes += bytes; |
| 406 | } |
| 407 | rcu_read_unlock(); |
| 408 | |
Akeem G Abodunrin | a5282f4 | 2014-05-10 04:49:03 +0000 | [diff] [blame] | 409 | /* following stats updated by i40e_watchdog_subtask() */ |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 410 | stats->multicast = vsi_stats->multicast; |
| 411 | stats->tx_errors = vsi_stats->tx_errors; |
| 412 | stats->tx_dropped = vsi_stats->tx_dropped; |
| 413 | stats->rx_errors = vsi_stats->rx_errors; |
| 414 | stats->rx_crc_errors = vsi_stats->rx_crc_errors; |
| 415 | stats->rx_length_errors = vsi_stats->rx_length_errors; |
| 416 | |
| 417 | return stats; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | /** |
| 421 | * i40e_vsi_reset_stats - Resets all stats of the given vsi |
| 422 | * @vsi: the VSI to have its stats reset |
| 423 | **/ |
| 424 | void i40e_vsi_reset_stats(struct i40e_vsi *vsi) |
| 425 | { |
| 426 | struct rtnl_link_stats64 *ns; |
| 427 | int i; |
| 428 | |
| 429 | if (!vsi) |
| 430 | return; |
| 431 | |
| 432 | ns = i40e_get_vsi_stats_struct(vsi); |
| 433 | memset(ns, 0, sizeof(*ns)); |
| 434 | memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets)); |
| 435 | memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats)); |
| 436 | memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets)); |
Greg Rose | 8e9dca5 | 2013-12-18 13:45:53 +0000 | [diff] [blame] | 437 | if (vsi->rx_rings && vsi->rx_rings[0]) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 438 | for (i = 0; i < vsi->num_queue_pairs; i++) { |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 439 | memset(&vsi->rx_rings[i]->stats, 0 , |
| 440 | sizeof(vsi->rx_rings[i]->stats)); |
| 441 | memset(&vsi->rx_rings[i]->rx_stats, 0 , |
| 442 | sizeof(vsi->rx_rings[i]->rx_stats)); |
| 443 | memset(&vsi->tx_rings[i]->stats, 0 , |
| 444 | sizeof(vsi->tx_rings[i]->stats)); |
| 445 | memset(&vsi->tx_rings[i]->tx_stats, 0, |
| 446 | sizeof(vsi->tx_rings[i]->tx_stats)); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 447 | } |
Greg Rose | 8e9dca5 | 2013-12-18 13:45:53 +0000 | [diff] [blame] | 448 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 449 | vsi->stat_offsets_loaded = false; |
| 450 | } |
| 451 | |
| 452 | /** |
| 453 | * i40e_pf_reset_stats - Reset all of the stats for the given pf |
| 454 | * @pf: the PF to be reset |
| 455 | **/ |
| 456 | void i40e_pf_reset_stats(struct i40e_pf *pf) |
| 457 | { |
Shannon Nelson | e91fdf7 | 2014-06-03 23:50:18 +0000 | [diff] [blame] | 458 | int i; |
| 459 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 460 | memset(&pf->stats, 0, sizeof(pf->stats)); |
| 461 | memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets)); |
| 462 | pf->stat_offsets_loaded = false; |
Shannon Nelson | e91fdf7 | 2014-06-03 23:50:18 +0000 | [diff] [blame] | 463 | |
| 464 | for (i = 0; i < I40E_MAX_VEB; i++) { |
| 465 | if (pf->veb[i]) { |
| 466 | memset(&pf->veb[i]->stats, 0, |
| 467 | sizeof(pf->veb[i]->stats)); |
| 468 | memset(&pf->veb[i]->stats_offsets, 0, |
| 469 | sizeof(pf->veb[i]->stats_offsets)); |
| 470 | pf->veb[i]->stat_offsets_loaded = false; |
| 471 | } |
| 472 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | /** |
| 476 | * i40e_stat_update48 - read and update a 48 bit stat from the chip |
| 477 | * @hw: ptr to the hardware info |
| 478 | * @hireg: the high 32 bit reg to read |
| 479 | * @loreg: the low 32 bit reg to read |
| 480 | * @offset_loaded: has the initial offset been loaded yet |
| 481 | * @offset: ptr to current offset value |
| 482 | * @stat: ptr to the stat |
| 483 | * |
| 484 | * Since the device stats are not reset at PFReset, they likely will not |
| 485 | * be zeroed when the driver starts. We'll save the first values read |
| 486 | * and use them as offsets to be subtracted from the raw values in order |
| 487 | * to report stats that count from zero. In the process, we also manage |
| 488 | * the potential roll-over. |
| 489 | **/ |
| 490 | static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg, |
| 491 | bool offset_loaded, u64 *offset, u64 *stat) |
| 492 | { |
| 493 | u64 new_data; |
| 494 | |
Shannon Nelson | ab60085 | 2014-01-17 15:36:39 -0800 | [diff] [blame] | 495 | if (hw->device_id == I40E_DEV_ID_QEMU) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 496 | new_data = rd32(hw, loreg); |
| 497 | new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32; |
| 498 | } else { |
| 499 | new_data = rd64(hw, loreg); |
| 500 | } |
| 501 | if (!offset_loaded) |
| 502 | *offset = new_data; |
| 503 | if (likely(new_data >= *offset)) |
| 504 | *stat = new_data - *offset; |
| 505 | else |
| 506 | *stat = (new_data + ((u64)1 << 48)) - *offset; |
| 507 | *stat &= 0xFFFFFFFFFFFFULL; |
| 508 | } |
| 509 | |
| 510 | /** |
| 511 | * i40e_stat_update32 - read and update a 32 bit stat from the chip |
| 512 | * @hw: ptr to the hardware info |
| 513 | * @reg: the hw reg to read |
| 514 | * @offset_loaded: has the initial offset been loaded yet |
| 515 | * @offset: ptr to current offset value |
| 516 | * @stat: ptr to the stat |
| 517 | **/ |
| 518 | static void i40e_stat_update32(struct i40e_hw *hw, u32 reg, |
| 519 | bool offset_loaded, u64 *offset, u64 *stat) |
| 520 | { |
| 521 | u32 new_data; |
| 522 | |
| 523 | new_data = rd32(hw, reg); |
| 524 | if (!offset_loaded) |
| 525 | *offset = new_data; |
| 526 | if (likely(new_data >= *offset)) |
| 527 | *stat = (u32)(new_data - *offset); |
| 528 | else |
| 529 | *stat = (u32)((new_data + ((u64)1 << 32)) - *offset); |
| 530 | } |
| 531 | |
| 532 | /** |
| 533 | * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters. |
| 534 | * @vsi: the VSI to be updated |
| 535 | **/ |
| 536 | void i40e_update_eth_stats(struct i40e_vsi *vsi) |
| 537 | { |
| 538 | int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx); |
| 539 | struct i40e_pf *pf = vsi->back; |
| 540 | struct i40e_hw *hw = &pf->hw; |
| 541 | struct i40e_eth_stats *oes; |
| 542 | struct i40e_eth_stats *es; /* device's eth stats */ |
| 543 | |
| 544 | es = &vsi->eth_stats; |
| 545 | oes = &vsi->eth_stats_offsets; |
| 546 | |
| 547 | /* Gather up the stats that the hw collects */ |
| 548 | i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx), |
| 549 | vsi->stat_offsets_loaded, |
| 550 | &oes->tx_errors, &es->tx_errors); |
| 551 | i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx), |
| 552 | vsi->stat_offsets_loaded, |
| 553 | &oes->rx_discards, &es->rx_discards); |
Shannon Nelson | 41a9e55 | 2014-04-23 04:50:20 +0000 | [diff] [blame] | 554 | i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx), |
| 555 | vsi->stat_offsets_loaded, |
| 556 | &oes->rx_unknown_protocol, &es->rx_unknown_protocol); |
| 557 | i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx), |
| 558 | vsi->stat_offsets_loaded, |
| 559 | &oes->tx_errors, &es->tx_errors); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 560 | |
| 561 | i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx), |
| 562 | I40E_GLV_GORCL(stat_idx), |
| 563 | vsi->stat_offsets_loaded, |
| 564 | &oes->rx_bytes, &es->rx_bytes); |
| 565 | i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx), |
| 566 | I40E_GLV_UPRCL(stat_idx), |
| 567 | vsi->stat_offsets_loaded, |
| 568 | &oes->rx_unicast, &es->rx_unicast); |
| 569 | i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx), |
| 570 | I40E_GLV_MPRCL(stat_idx), |
| 571 | vsi->stat_offsets_loaded, |
| 572 | &oes->rx_multicast, &es->rx_multicast); |
| 573 | i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx), |
| 574 | I40E_GLV_BPRCL(stat_idx), |
| 575 | vsi->stat_offsets_loaded, |
| 576 | &oes->rx_broadcast, &es->rx_broadcast); |
| 577 | |
| 578 | i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx), |
| 579 | I40E_GLV_GOTCL(stat_idx), |
| 580 | vsi->stat_offsets_loaded, |
| 581 | &oes->tx_bytes, &es->tx_bytes); |
| 582 | i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx), |
| 583 | I40E_GLV_UPTCL(stat_idx), |
| 584 | vsi->stat_offsets_loaded, |
| 585 | &oes->tx_unicast, &es->tx_unicast); |
| 586 | i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx), |
| 587 | I40E_GLV_MPTCL(stat_idx), |
| 588 | vsi->stat_offsets_loaded, |
| 589 | &oes->tx_multicast, &es->tx_multicast); |
| 590 | i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx), |
| 591 | I40E_GLV_BPTCL(stat_idx), |
| 592 | vsi->stat_offsets_loaded, |
| 593 | &oes->tx_broadcast, &es->tx_broadcast); |
| 594 | vsi->stat_offsets_loaded = true; |
| 595 | } |
| 596 | |
| 597 | /** |
| 598 | * i40e_update_veb_stats - Update Switch component statistics |
| 599 | * @veb: the VEB being updated |
| 600 | **/ |
| 601 | static void i40e_update_veb_stats(struct i40e_veb *veb) |
| 602 | { |
| 603 | struct i40e_pf *pf = veb->pf; |
| 604 | struct i40e_hw *hw = &pf->hw; |
| 605 | struct i40e_eth_stats *oes; |
| 606 | struct i40e_eth_stats *es; /* device's eth stats */ |
| 607 | int idx = 0; |
| 608 | |
| 609 | idx = veb->stats_idx; |
| 610 | es = &veb->stats; |
| 611 | oes = &veb->stats_offsets; |
| 612 | |
| 613 | /* Gather up the stats that the hw collects */ |
| 614 | i40e_stat_update32(hw, I40E_GLSW_TDPC(idx), |
| 615 | veb->stat_offsets_loaded, |
| 616 | &oes->tx_discards, &es->tx_discards); |
Jesse Brandeburg | 7134f9c | 2013-11-26 08:56:05 +0000 | [diff] [blame] | 617 | if (hw->revision_id > 0) |
| 618 | i40e_stat_update32(hw, I40E_GLSW_RUPP(idx), |
| 619 | veb->stat_offsets_loaded, |
| 620 | &oes->rx_unknown_protocol, |
| 621 | &es->rx_unknown_protocol); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 622 | i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx), |
| 623 | veb->stat_offsets_loaded, |
| 624 | &oes->rx_bytes, &es->rx_bytes); |
| 625 | i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx), |
| 626 | veb->stat_offsets_loaded, |
| 627 | &oes->rx_unicast, &es->rx_unicast); |
| 628 | i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx), |
| 629 | veb->stat_offsets_loaded, |
| 630 | &oes->rx_multicast, &es->rx_multicast); |
| 631 | i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx), |
| 632 | veb->stat_offsets_loaded, |
| 633 | &oes->rx_broadcast, &es->rx_broadcast); |
| 634 | |
| 635 | i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx), |
| 636 | veb->stat_offsets_loaded, |
| 637 | &oes->tx_bytes, &es->tx_bytes); |
| 638 | i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx), |
| 639 | veb->stat_offsets_loaded, |
| 640 | &oes->tx_unicast, &es->tx_unicast); |
| 641 | i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx), |
| 642 | veb->stat_offsets_loaded, |
| 643 | &oes->tx_multicast, &es->tx_multicast); |
| 644 | i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx), |
| 645 | veb->stat_offsets_loaded, |
| 646 | &oes->tx_broadcast, &es->tx_broadcast); |
| 647 | veb->stat_offsets_loaded = true; |
| 648 | } |
| 649 | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 650 | #ifdef I40E_FCOE |
| 651 | /** |
| 652 | * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters. |
| 653 | * @vsi: the VSI that is capable of doing FCoE |
| 654 | **/ |
| 655 | static void i40e_update_fcoe_stats(struct i40e_vsi *vsi) |
| 656 | { |
| 657 | struct i40e_pf *pf = vsi->back; |
| 658 | struct i40e_hw *hw = &pf->hw; |
| 659 | struct i40e_fcoe_stats *ofs; |
| 660 | struct i40e_fcoe_stats *fs; /* device's eth stats */ |
| 661 | int idx; |
| 662 | |
| 663 | if (vsi->type != I40E_VSI_FCOE) |
| 664 | return; |
| 665 | |
| 666 | idx = (pf->pf_seid - I40E_BASE_PF_SEID) + I40E_FCOE_PF_STAT_OFFSET; |
| 667 | fs = &vsi->fcoe_stats; |
| 668 | ofs = &vsi->fcoe_stats_offsets; |
| 669 | |
| 670 | i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx), |
| 671 | vsi->fcoe_stat_offsets_loaded, |
| 672 | &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets); |
| 673 | i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx), |
| 674 | vsi->fcoe_stat_offsets_loaded, |
| 675 | &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords); |
| 676 | i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx), |
| 677 | vsi->fcoe_stat_offsets_loaded, |
| 678 | &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped); |
| 679 | i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx), |
| 680 | vsi->fcoe_stat_offsets_loaded, |
| 681 | &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets); |
| 682 | i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx), |
| 683 | vsi->fcoe_stat_offsets_loaded, |
| 684 | &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords); |
| 685 | i40e_stat_update32(hw, I40E_GL_FCOECRC(idx), |
| 686 | vsi->fcoe_stat_offsets_loaded, |
| 687 | &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc); |
| 688 | i40e_stat_update32(hw, I40E_GL_FCOELAST(idx), |
| 689 | vsi->fcoe_stat_offsets_loaded, |
| 690 | &ofs->fcoe_last_error, &fs->fcoe_last_error); |
| 691 | i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx), |
| 692 | vsi->fcoe_stat_offsets_loaded, |
| 693 | &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count); |
| 694 | |
| 695 | vsi->fcoe_stat_offsets_loaded = true; |
| 696 | } |
| 697 | |
| 698 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 699 | /** |
| 700 | * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode |
| 701 | * @pf: the corresponding PF |
| 702 | * |
| 703 | * Update the Rx XOFF counter (PAUSE frames) in link flow control mode |
| 704 | **/ |
| 705 | static void i40e_update_link_xoff_rx(struct i40e_pf *pf) |
| 706 | { |
| 707 | struct i40e_hw_port_stats *osd = &pf->stats_offsets; |
| 708 | struct i40e_hw_port_stats *nsd = &pf->stats; |
| 709 | struct i40e_hw *hw = &pf->hw; |
| 710 | u64 xoff = 0; |
| 711 | u16 i, v; |
| 712 | |
| 713 | if ((hw->fc.current_mode != I40E_FC_FULL) && |
| 714 | (hw->fc.current_mode != I40E_FC_RX_PAUSE)) |
| 715 | return; |
| 716 | |
| 717 | xoff = nsd->link_xoff_rx; |
| 718 | i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port), |
| 719 | pf->stat_offsets_loaded, |
| 720 | &osd->link_xoff_rx, &nsd->link_xoff_rx); |
| 721 | |
| 722 | /* No new LFC xoff rx */ |
| 723 | if (!(nsd->link_xoff_rx - xoff)) |
| 724 | return; |
| 725 | |
| 726 | /* Clear the __I40E_HANG_CHECK_ARMED bit for all Tx rings */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 727 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 728 | struct i40e_vsi *vsi = pf->vsi[v]; |
| 729 | |
Mitch Williams | ddfda80 | 2014-05-10 04:49:10 +0000 | [diff] [blame] | 730 | if (!vsi || !vsi->tx_rings[0]) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 731 | continue; |
| 732 | |
| 733 | for (i = 0; i < vsi->num_queue_pairs; i++) { |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 734 | struct i40e_ring *ring = vsi->tx_rings[i]; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 735 | clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state); |
| 736 | } |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | /** |
| 741 | * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode |
| 742 | * @pf: the corresponding PF |
| 743 | * |
| 744 | * Update the Rx XOFF counter (PAUSE frames) in PFC mode |
| 745 | **/ |
| 746 | static void i40e_update_prio_xoff_rx(struct i40e_pf *pf) |
| 747 | { |
| 748 | struct i40e_hw_port_stats *osd = &pf->stats_offsets; |
| 749 | struct i40e_hw_port_stats *nsd = &pf->stats; |
| 750 | bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false}; |
| 751 | struct i40e_dcbx_config *dcb_cfg; |
| 752 | struct i40e_hw *hw = &pf->hw; |
| 753 | u16 i, v; |
| 754 | u8 tc; |
| 755 | |
| 756 | dcb_cfg = &hw->local_dcbx_config; |
| 757 | |
| 758 | /* See if DCB enabled with PFC TC */ |
| 759 | if (!(pf->flags & I40E_FLAG_DCB_ENABLED) || |
| 760 | !(dcb_cfg->pfc.pfcenable)) { |
| 761 | i40e_update_link_xoff_rx(pf); |
| 762 | return; |
| 763 | } |
| 764 | |
| 765 | for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) { |
| 766 | u64 prio_xoff = nsd->priority_xoff_rx[i]; |
| 767 | i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i), |
| 768 | pf->stat_offsets_loaded, |
| 769 | &osd->priority_xoff_rx[i], |
| 770 | &nsd->priority_xoff_rx[i]); |
| 771 | |
| 772 | /* No new PFC xoff rx */ |
| 773 | if (!(nsd->priority_xoff_rx[i] - prio_xoff)) |
| 774 | continue; |
| 775 | /* Get the TC for given priority */ |
| 776 | tc = dcb_cfg->etscfg.prioritytable[i]; |
| 777 | xoff[tc] = true; |
| 778 | } |
| 779 | |
| 780 | /* Clear the __I40E_HANG_CHECK_ARMED bit for Tx rings */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 781 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 782 | struct i40e_vsi *vsi = pf->vsi[v]; |
| 783 | |
Mitch Williams | ddfda80 | 2014-05-10 04:49:10 +0000 | [diff] [blame] | 784 | if (!vsi || !vsi->tx_rings[0]) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 785 | continue; |
| 786 | |
| 787 | for (i = 0; i < vsi->num_queue_pairs; i++) { |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 788 | struct i40e_ring *ring = vsi->tx_rings[i]; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 789 | |
| 790 | tc = ring->dcb_tc; |
| 791 | if (xoff[tc]) |
| 792 | clear_bit(__I40E_HANG_CHECK_ARMED, |
| 793 | &ring->state); |
| 794 | } |
| 795 | } |
| 796 | } |
| 797 | |
| 798 | /** |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 799 | * i40e_update_vsi_stats - Update the vsi statistics counters. |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 800 | * @vsi: the VSI to be updated |
| 801 | * |
| 802 | * There are a few instances where we store the same stat in a |
| 803 | * couple of different structs. This is partly because we have |
| 804 | * the netdev stats that need to be filled out, which is slightly |
| 805 | * different from the "eth_stats" defined by the chip and used in |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 806 | * VF communications. We sort it out here. |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 807 | **/ |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 808 | static void i40e_update_vsi_stats(struct i40e_vsi *vsi) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 809 | { |
| 810 | struct i40e_pf *pf = vsi->back; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 811 | struct rtnl_link_stats64 *ons; |
| 812 | struct rtnl_link_stats64 *ns; /* netdev stats */ |
| 813 | struct i40e_eth_stats *oes; |
| 814 | struct i40e_eth_stats *es; /* device's eth stats */ |
| 815 | u32 tx_restart, tx_busy; |
Akeem G Abodunrin | bf00b37 | 2014-10-17 03:14:39 +0000 | [diff] [blame] | 816 | struct i40e_ring *p; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 817 | u32 rx_page, rx_buf; |
Akeem G Abodunrin | bf00b37 | 2014-10-17 03:14:39 +0000 | [diff] [blame] | 818 | u64 bytes, packets; |
| 819 | unsigned int start; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 820 | u64 rx_p, rx_b; |
| 821 | u64 tx_p, tx_b; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 822 | u16 q; |
| 823 | |
| 824 | if (test_bit(__I40E_DOWN, &vsi->state) || |
| 825 | test_bit(__I40E_CONFIG_BUSY, &pf->state)) |
| 826 | return; |
| 827 | |
| 828 | ns = i40e_get_vsi_stats_struct(vsi); |
| 829 | ons = &vsi->net_stats_offsets; |
| 830 | es = &vsi->eth_stats; |
| 831 | oes = &vsi->eth_stats_offsets; |
| 832 | |
| 833 | /* Gather up the netdev and vsi stats that the driver collects |
| 834 | * on the fly during packet processing |
| 835 | */ |
| 836 | rx_b = rx_p = 0; |
| 837 | tx_b = tx_p = 0; |
| 838 | tx_restart = tx_busy = 0; |
| 839 | rx_page = 0; |
| 840 | rx_buf = 0; |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 841 | rcu_read_lock(); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 842 | for (q = 0; q < vsi->num_queue_pairs; q++) { |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 843 | /* locate Tx ring */ |
| 844 | p = ACCESS_ONCE(vsi->tx_rings[q]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 845 | |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 846 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 847 | start = u64_stats_fetch_begin_irq(&p->syncp); |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 848 | packets = p->stats.packets; |
| 849 | bytes = p->stats.bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 850 | } while (u64_stats_fetch_retry_irq(&p->syncp, start)); |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 851 | tx_b += bytes; |
| 852 | tx_p += packets; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 853 | tx_restart += p->tx_stats.restart_queue; |
| 854 | tx_busy += p->tx_stats.tx_busy; |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 855 | |
| 856 | /* Rx queue is part of the same block as Tx queue */ |
| 857 | p = &p[1]; |
| 858 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 859 | start = u64_stats_fetch_begin_irq(&p->syncp); |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 860 | packets = p->stats.packets; |
| 861 | bytes = p->stats.bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 862 | } while (u64_stats_fetch_retry_irq(&p->syncp, start)); |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 863 | rx_b += bytes; |
| 864 | rx_p += packets; |
Mitch Williams | 420136c | 2013-12-18 13:45:59 +0000 | [diff] [blame] | 865 | rx_buf += p->rx_stats.alloc_buff_failed; |
| 866 | rx_page += p->rx_stats.alloc_page_failed; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 867 | } |
Alexander Duyck | 980e9b1 | 2013-09-28 06:01:03 +0000 | [diff] [blame] | 868 | rcu_read_unlock(); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 869 | vsi->tx_restart = tx_restart; |
| 870 | vsi->tx_busy = tx_busy; |
| 871 | vsi->rx_page_failed = rx_page; |
| 872 | vsi->rx_buf_failed = rx_buf; |
| 873 | |
| 874 | ns->rx_packets = rx_p; |
| 875 | ns->rx_bytes = rx_b; |
| 876 | ns->tx_packets = tx_p; |
| 877 | ns->tx_bytes = tx_b; |
| 878 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 879 | /* update netdev stats from eth stats */ |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 880 | i40e_update_eth_stats(vsi); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 881 | ons->tx_errors = oes->tx_errors; |
| 882 | ns->tx_errors = es->tx_errors; |
| 883 | ons->multicast = oes->rx_multicast; |
| 884 | ns->multicast = es->rx_multicast; |
Shannon Nelson | 41a9e55 | 2014-04-23 04:50:20 +0000 | [diff] [blame] | 885 | ons->rx_dropped = oes->rx_discards; |
| 886 | ns->rx_dropped = es->rx_discards; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 887 | ons->tx_dropped = oes->tx_discards; |
| 888 | ns->tx_dropped = es->tx_discards; |
| 889 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 890 | /* pull in a couple PF stats if this is the main vsi */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 891 | if (vsi == pf->vsi[pf->lan_vsi]) { |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 892 | ns->rx_crc_errors = pf->stats.crc_errors; |
| 893 | ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes; |
| 894 | ns->rx_length_errors = pf->stats.rx_length_errors; |
| 895 | } |
| 896 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 897 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 898 | /** |
| 899 | * i40e_update_pf_stats - Update the pf statistics counters. |
| 900 | * @pf: the PF to be updated |
| 901 | **/ |
| 902 | static void i40e_update_pf_stats(struct i40e_pf *pf) |
| 903 | { |
| 904 | struct i40e_hw_port_stats *osd = &pf->stats_offsets; |
| 905 | struct i40e_hw_port_stats *nsd = &pf->stats; |
| 906 | struct i40e_hw *hw = &pf->hw; |
| 907 | u32 val; |
| 908 | int i; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 909 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 910 | i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port), |
| 911 | I40E_GLPRT_GORCL(hw->port), |
| 912 | pf->stat_offsets_loaded, |
| 913 | &osd->eth.rx_bytes, &nsd->eth.rx_bytes); |
| 914 | i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port), |
| 915 | I40E_GLPRT_GOTCL(hw->port), |
| 916 | pf->stat_offsets_loaded, |
| 917 | &osd->eth.tx_bytes, &nsd->eth.tx_bytes); |
| 918 | i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port), |
| 919 | pf->stat_offsets_loaded, |
| 920 | &osd->eth.rx_discards, |
| 921 | &nsd->eth.rx_discards); |
| 922 | i40e_stat_update32(hw, I40E_GLPRT_TDPC(hw->port), |
| 923 | pf->stat_offsets_loaded, |
| 924 | &osd->eth.tx_discards, |
| 925 | &nsd->eth.tx_discards); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 926 | |
Shannon Nelson | 532d283 | 2014-04-23 04:50:09 +0000 | [diff] [blame] | 927 | i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port), |
| 928 | I40E_GLPRT_UPRCL(hw->port), |
| 929 | pf->stat_offsets_loaded, |
| 930 | &osd->eth.rx_unicast, |
| 931 | &nsd->eth.rx_unicast); |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 932 | i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port), |
| 933 | I40E_GLPRT_MPRCL(hw->port), |
| 934 | pf->stat_offsets_loaded, |
| 935 | &osd->eth.rx_multicast, |
| 936 | &nsd->eth.rx_multicast); |
Shannon Nelson | 532d283 | 2014-04-23 04:50:09 +0000 | [diff] [blame] | 937 | i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port), |
| 938 | I40E_GLPRT_BPRCL(hw->port), |
| 939 | pf->stat_offsets_loaded, |
| 940 | &osd->eth.rx_broadcast, |
| 941 | &nsd->eth.rx_broadcast); |
| 942 | i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port), |
| 943 | I40E_GLPRT_UPTCL(hw->port), |
| 944 | pf->stat_offsets_loaded, |
| 945 | &osd->eth.tx_unicast, |
| 946 | &nsd->eth.tx_unicast); |
| 947 | i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port), |
| 948 | I40E_GLPRT_MPTCL(hw->port), |
| 949 | pf->stat_offsets_loaded, |
| 950 | &osd->eth.tx_multicast, |
| 951 | &nsd->eth.tx_multicast); |
| 952 | i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port), |
| 953 | I40E_GLPRT_BPTCL(hw->port), |
| 954 | pf->stat_offsets_loaded, |
| 955 | &osd->eth.tx_broadcast, |
| 956 | &nsd->eth.tx_broadcast); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 957 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 958 | i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port), |
| 959 | pf->stat_offsets_loaded, |
| 960 | &osd->tx_dropped_link_down, |
| 961 | &nsd->tx_dropped_link_down); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 962 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 963 | i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port), |
| 964 | pf->stat_offsets_loaded, |
| 965 | &osd->crc_errors, &nsd->crc_errors); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 966 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 967 | i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port), |
| 968 | pf->stat_offsets_loaded, |
| 969 | &osd->illegal_bytes, &nsd->illegal_bytes); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 970 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 971 | i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port), |
| 972 | pf->stat_offsets_loaded, |
| 973 | &osd->mac_local_faults, |
| 974 | &nsd->mac_local_faults); |
| 975 | i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port), |
| 976 | pf->stat_offsets_loaded, |
| 977 | &osd->mac_remote_faults, |
| 978 | &nsd->mac_remote_faults); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 979 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 980 | i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port), |
| 981 | pf->stat_offsets_loaded, |
| 982 | &osd->rx_length_errors, |
| 983 | &nsd->rx_length_errors); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 984 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 985 | i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port), |
| 986 | pf->stat_offsets_loaded, |
| 987 | &osd->link_xon_rx, &nsd->link_xon_rx); |
| 988 | i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port), |
| 989 | pf->stat_offsets_loaded, |
| 990 | &osd->link_xon_tx, &nsd->link_xon_tx); |
| 991 | i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */ |
| 992 | i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port), |
| 993 | pf->stat_offsets_loaded, |
| 994 | &osd->link_xoff_tx, &nsd->link_xoff_tx); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 995 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 996 | for (i = 0; i < 8; i++) { |
| 997 | i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i), |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 998 | pf->stat_offsets_loaded, |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 999 | &osd->priority_xon_rx[i], |
| 1000 | &nsd->priority_xon_rx[i]); |
| 1001 | i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i), |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1002 | pf->stat_offsets_loaded, |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 1003 | &osd->priority_xon_tx[i], |
| 1004 | &nsd->priority_xon_tx[i]); |
| 1005 | i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i), |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1006 | pf->stat_offsets_loaded, |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 1007 | &osd->priority_xoff_tx[i], |
| 1008 | &nsd->priority_xoff_tx[i]); |
| 1009 | i40e_stat_update32(hw, |
| 1010 | I40E_GLPRT_RXON2OFFCNT(hw->port, i), |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1011 | pf->stat_offsets_loaded, |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 1012 | &osd->priority_xon_2_xoff[i], |
| 1013 | &nsd->priority_xon_2_xoff[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1014 | } |
| 1015 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 1016 | i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port), |
| 1017 | I40E_GLPRT_PRC64L(hw->port), |
| 1018 | pf->stat_offsets_loaded, |
| 1019 | &osd->rx_size_64, &nsd->rx_size_64); |
| 1020 | i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port), |
| 1021 | I40E_GLPRT_PRC127L(hw->port), |
| 1022 | pf->stat_offsets_loaded, |
| 1023 | &osd->rx_size_127, &nsd->rx_size_127); |
| 1024 | i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port), |
| 1025 | I40E_GLPRT_PRC255L(hw->port), |
| 1026 | pf->stat_offsets_loaded, |
| 1027 | &osd->rx_size_255, &nsd->rx_size_255); |
| 1028 | i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port), |
| 1029 | I40E_GLPRT_PRC511L(hw->port), |
| 1030 | pf->stat_offsets_loaded, |
| 1031 | &osd->rx_size_511, &nsd->rx_size_511); |
| 1032 | i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port), |
| 1033 | I40E_GLPRT_PRC1023L(hw->port), |
| 1034 | pf->stat_offsets_loaded, |
| 1035 | &osd->rx_size_1023, &nsd->rx_size_1023); |
| 1036 | i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port), |
| 1037 | I40E_GLPRT_PRC1522L(hw->port), |
| 1038 | pf->stat_offsets_loaded, |
| 1039 | &osd->rx_size_1522, &nsd->rx_size_1522); |
| 1040 | i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port), |
| 1041 | I40E_GLPRT_PRC9522L(hw->port), |
| 1042 | pf->stat_offsets_loaded, |
| 1043 | &osd->rx_size_big, &nsd->rx_size_big); |
| 1044 | |
| 1045 | i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port), |
| 1046 | I40E_GLPRT_PTC64L(hw->port), |
| 1047 | pf->stat_offsets_loaded, |
| 1048 | &osd->tx_size_64, &nsd->tx_size_64); |
| 1049 | i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port), |
| 1050 | I40E_GLPRT_PTC127L(hw->port), |
| 1051 | pf->stat_offsets_loaded, |
| 1052 | &osd->tx_size_127, &nsd->tx_size_127); |
| 1053 | i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port), |
| 1054 | I40E_GLPRT_PTC255L(hw->port), |
| 1055 | pf->stat_offsets_loaded, |
| 1056 | &osd->tx_size_255, &nsd->tx_size_255); |
| 1057 | i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port), |
| 1058 | I40E_GLPRT_PTC511L(hw->port), |
| 1059 | pf->stat_offsets_loaded, |
| 1060 | &osd->tx_size_511, &nsd->tx_size_511); |
| 1061 | i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port), |
| 1062 | I40E_GLPRT_PTC1023L(hw->port), |
| 1063 | pf->stat_offsets_loaded, |
| 1064 | &osd->tx_size_1023, &nsd->tx_size_1023); |
| 1065 | i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port), |
| 1066 | I40E_GLPRT_PTC1522L(hw->port), |
| 1067 | pf->stat_offsets_loaded, |
| 1068 | &osd->tx_size_1522, &nsd->tx_size_1522); |
| 1069 | i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port), |
| 1070 | I40E_GLPRT_PTC9522L(hw->port), |
| 1071 | pf->stat_offsets_loaded, |
| 1072 | &osd->tx_size_big, &nsd->tx_size_big); |
| 1073 | |
| 1074 | i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port), |
| 1075 | pf->stat_offsets_loaded, |
| 1076 | &osd->rx_undersize, &nsd->rx_undersize); |
| 1077 | i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port), |
| 1078 | pf->stat_offsets_loaded, |
| 1079 | &osd->rx_fragments, &nsd->rx_fragments); |
| 1080 | i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port), |
| 1081 | pf->stat_offsets_loaded, |
| 1082 | &osd->rx_oversize, &nsd->rx_oversize); |
| 1083 | i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port), |
| 1084 | pf->stat_offsets_loaded, |
| 1085 | &osd->rx_jabber, &nsd->rx_jabber); |
| 1086 | |
Anjali Singhai Jain | 433c47d | 2014-05-22 06:32:17 +0000 | [diff] [blame] | 1087 | /* FDIR stats */ |
| 1088 | i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_atr_cnt_idx), |
| 1089 | pf->stat_offsets_loaded, |
| 1090 | &osd->fd_atr_match, &nsd->fd_atr_match); |
| 1091 | i40e_stat_update32(hw, I40E_GLQF_PCNT(pf->fd_sb_cnt_idx), |
| 1092 | pf->stat_offsets_loaded, |
| 1093 | &osd->fd_sb_match, &nsd->fd_sb_match); |
| 1094 | |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 1095 | val = rd32(hw, I40E_PRTPM_EEE_STAT); |
| 1096 | nsd->tx_lpi_status = |
| 1097 | (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >> |
| 1098 | I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT; |
| 1099 | nsd->rx_lpi_status = |
| 1100 | (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >> |
| 1101 | I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT; |
| 1102 | i40e_stat_update32(hw, I40E_PRTPM_TLPIC, |
| 1103 | pf->stat_offsets_loaded, |
| 1104 | &osd->tx_lpi_count, &nsd->tx_lpi_count); |
| 1105 | i40e_stat_update32(hw, I40E_PRTPM_RLPIC, |
| 1106 | pf->stat_offsets_loaded, |
| 1107 | &osd->rx_lpi_count, &nsd->rx_lpi_count); |
| 1108 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1109 | pf->stat_offsets_loaded = true; |
| 1110 | } |
| 1111 | |
| 1112 | /** |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 1113 | * i40e_update_stats - Update the various statistics counters. |
| 1114 | * @vsi: the VSI to be updated |
| 1115 | * |
| 1116 | * Update the various stats for this VSI and its related entities. |
| 1117 | **/ |
| 1118 | void i40e_update_stats(struct i40e_vsi *vsi) |
| 1119 | { |
| 1120 | struct i40e_pf *pf = vsi->back; |
| 1121 | |
| 1122 | if (vsi == pf->vsi[pf->lan_vsi]) |
| 1123 | i40e_update_pf_stats(pf); |
| 1124 | |
| 1125 | i40e_update_vsi_stats(vsi); |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 1126 | #ifdef I40E_FCOE |
| 1127 | i40e_update_fcoe_stats(vsi); |
| 1128 | #endif |
Shannon Nelson | 7812fdd | 2014-04-23 04:50:18 +0000 | [diff] [blame] | 1129 | } |
| 1130 | |
| 1131 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1132 | * i40e_find_filter - Search VSI filter list for specific mac/vlan filter |
| 1133 | * @vsi: the VSI to be searched |
| 1134 | * @macaddr: the MAC address |
| 1135 | * @vlan: the vlan |
| 1136 | * @is_vf: make sure its a vf filter, else doesn't matter |
| 1137 | * @is_netdev: make sure its a netdev filter, else doesn't matter |
| 1138 | * |
| 1139 | * Returns ptr to the filter object or NULL |
| 1140 | **/ |
| 1141 | static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi, |
| 1142 | u8 *macaddr, s16 vlan, |
| 1143 | bool is_vf, bool is_netdev) |
| 1144 | { |
| 1145 | struct i40e_mac_filter *f; |
| 1146 | |
| 1147 | if (!vsi || !macaddr) |
| 1148 | return NULL; |
| 1149 | |
| 1150 | list_for_each_entry(f, &vsi->mac_filter_list, list) { |
| 1151 | if ((ether_addr_equal(macaddr, f->macaddr)) && |
| 1152 | (vlan == f->vlan) && |
| 1153 | (!is_vf || f->is_vf) && |
| 1154 | (!is_netdev || f->is_netdev)) |
| 1155 | return f; |
| 1156 | } |
| 1157 | return NULL; |
| 1158 | } |
| 1159 | |
| 1160 | /** |
| 1161 | * i40e_find_mac - Find a mac addr in the macvlan filters list |
| 1162 | * @vsi: the VSI to be searched |
| 1163 | * @macaddr: the MAC address we are searching for |
| 1164 | * @is_vf: make sure its a vf filter, else doesn't matter |
| 1165 | * @is_netdev: make sure its a netdev filter, else doesn't matter |
| 1166 | * |
| 1167 | * Returns the first filter with the provided MAC address or NULL if |
| 1168 | * MAC address was not found |
| 1169 | **/ |
| 1170 | struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr, |
| 1171 | bool is_vf, bool is_netdev) |
| 1172 | { |
| 1173 | struct i40e_mac_filter *f; |
| 1174 | |
| 1175 | if (!vsi || !macaddr) |
| 1176 | return NULL; |
| 1177 | |
| 1178 | list_for_each_entry(f, &vsi->mac_filter_list, list) { |
| 1179 | if ((ether_addr_equal(macaddr, f->macaddr)) && |
| 1180 | (!is_vf || f->is_vf) && |
| 1181 | (!is_netdev || f->is_netdev)) |
| 1182 | return f; |
| 1183 | } |
| 1184 | return NULL; |
| 1185 | } |
| 1186 | |
| 1187 | /** |
| 1188 | * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode |
| 1189 | * @vsi: the VSI to be searched |
| 1190 | * |
| 1191 | * Returns true if VSI is in vlan mode or false otherwise |
| 1192 | **/ |
| 1193 | bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi) |
| 1194 | { |
| 1195 | struct i40e_mac_filter *f; |
| 1196 | |
| 1197 | /* Only -1 for all the filters denotes not in vlan mode |
| 1198 | * so we have to go through all the list in order to make sure |
| 1199 | */ |
| 1200 | list_for_each_entry(f, &vsi->mac_filter_list, list) { |
| 1201 | if (f->vlan >= 0) |
| 1202 | return true; |
| 1203 | } |
| 1204 | |
| 1205 | return false; |
| 1206 | } |
| 1207 | |
| 1208 | /** |
| 1209 | * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans |
| 1210 | * @vsi: the VSI to be searched |
| 1211 | * @macaddr: the mac address to be filtered |
| 1212 | * @is_vf: true if it is a vf |
| 1213 | * @is_netdev: true if it is a netdev |
| 1214 | * |
| 1215 | * Goes through all the macvlan filters and adds a |
| 1216 | * macvlan filter for each unique vlan that already exists |
| 1217 | * |
| 1218 | * Returns first filter found on success, else NULL |
| 1219 | **/ |
| 1220 | struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr, |
| 1221 | bool is_vf, bool is_netdev) |
| 1222 | { |
| 1223 | struct i40e_mac_filter *f; |
| 1224 | |
| 1225 | list_for_each_entry(f, &vsi->mac_filter_list, list) { |
| 1226 | if (!i40e_find_filter(vsi, macaddr, f->vlan, |
| 1227 | is_vf, is_netdev)) { |
| 1228 | if (!i40e_add_filter(vsi, macaddr, f->vlan, |
Jesse Brandeburg | 8fb905b | 2014-01-17 15:36:33 -0800 | [diff] [blame] | 1229 | is_vf, is_netdev)) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1230 | return NULL; |
| 1231 | } |
| 1232 | } |
| 1233 | |
| 1234 | return list_first_entry_or_null(&vsi->mac_filter_list, |
| 1235 | struct i40e_mac_filter, list); |
| 1236 | } |
| 1237 | |
| 1238 | /** |
Greg Rose | 8c27d42 | 2014-05-22 06:31:56 +0000 | [diff] [blame] | 1239 | * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM |
| 1240 | * @vsi: the PF Main VSI - inappropriate for any other VSI |
| 1241 | * @macaddr: the MAC address |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1242 | * |
| 1243 | * Some older firmware configurations set up a default promiscuous VLAN |
| 1244 | * filter that needs to be removed. |
Greg Rose | 8c27d42 | 2014-05-22 06:31:56 +0000 | [diff] [blame] | 1245 | **/ |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1246 | static int i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr) |
Greg Rose | 8c27d42 | 2014-05-22 06:31:56 +0000 | [diff] [blame] | 1247 | { |
| 1248 | struct i40e_aqc_remove_macvlan_element_data element; |
| 1249 | struct i40e_pf *pf = vsi->back; |
| 1250 | i40e_status aq_ret; |
| 1251 | |
| 1252 | /* Only appropriate for the PF main VSI */ |
| 1253 | if (vsi->type != I40E_VSI_MAIN) |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1254 | return -EINVAL; |
Greg Rose | 8c27d42 | 2014-05-22 06:31:56 +0000 | [diff] [blame] | 1255 | |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1256 | memset(&element, 0, sizeof(element)); |
Greg Rose | 8c27d42 | 2014-05-22 06:31:56 +0000 | [diff] [blame] | 1257 | ether_addr_copy(element.mac_addr, macaddr); |
| 1258 | element.vlan_tag = 0; |
| 1259 | element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH | |
| 1260 | I40E_AQC_MACVLAN_DEL_IGNORE_VLAN; |
| 1261 | aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL); |
| 1262 | if (aq_ret) |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1263 | return -ENOENT; |
| 1264 | |
| 1265 | return 0; |
Greg Rose | 8c27d42 | 2014-05-22 06:31:56 +0000 | [diff] [blame] | 1266 | } |
| 1267 | |
| 1268 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1269 | * i40e_add_filter - Add a mac/vlan filter to the VSI |
| 1270 | * @vsi: the VSI to be searched |
| 1271 | * @macaddr: the MAC address |
| 1272 | * @vlan: the vlan |
| 1273 | * @is_vf: make sure its a vf filter, else doesn't matter |
| 1274 | * @is_netdev: make sure its a netdev filter, else doesn't matter |
| 1275 | * |
| 1276 | * Returns ptr to the filter object or NULL when no memory available. |
| 1277 | **/ |
| 1278 | struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi, |
| 1279 | u8 *macaddr, s16 vlan, |
| 1280 | bool is_vf, bool is_netdev) |
| 1281 | { |
| 1282 | struct i40e_mac_filter *f; |
| 1283 | |
| 1284 | if (!vsi || !macaddr) |
| 1285 | return NULL; |
| 1286 | |
| 1287 | f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev); |
| 1288 | if (!f) { |
| 1289 | f = kzalloc(sizeof(*f), GFP_ATOMIC); |
| 1290 | if (!f) |
| 1291 | goto add_filter_out; |
| 1292 | |
Greg Rose | 9a17390 | 2014-05-22 06:32:02 +0000 | [diff] [blame] | 1293 | ether_addr_copy(f->macaddr, macaddr); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1294 | f->vlan = vlan; |
| 1295 | f->changed = true; |
| 1296 | |
| 1297 | INIT_LIST_HEAD(&f->list); |
| 1298 | list_add(&f->list, &vsi->mac_filter_list); |
| 1299 | } |
| 1300 | |
| 1301 | /* increment counter and add a new flag if needed */ |
| 1302 | if (is_vf) { |
| 1303 | if (!f->is_vf) { |
| 1304 | f->is_vf = true; |
| 1305 | f->counter++; |
| 1306 | } |
| 1307 | } else if (is_netdev) { |
| 1308 | if (!f->is_netdev) { |
| 1309 | f->is_netdev = true; |
| 1310 | f->counter++; |
| 1311 | } |
| 1312 | } else { |
| 1313 | f->counter++; |
| 1314 | } |
| 1315 | |
| 1316 | /* changed tells sync_filters_subtask to |
| 1317 | * push the filter down to the firmware |
| 1318 | */ |
| 1319 | if (f->changed) { |
| 1320 | vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED; |
| 1321 | vsi->back->flags |= I40E_FLAG_FILTER_SYNC; |
| 1322 | } |
| 1323 | |
| 1324 | add_filter_out: |
| 1325 | return f; |
| 1326 | } |
| 1327 | |
| 1328 | /** |
| 1329 | * i40e_del_filter - Remove a mac/vlan filter from the VSI |
| 1330 | * @vsi: the VSI to be searched |
| 1331 | * @macaddr: the MAC address |
| 1332 | * @vlan: the vlan |
| 1333 | * @is_vf: make sure it's a vf filter, else doesn't matter |
| 1334 | * @is_netdev: make sure it's a netdev filter, else doesn't matter |
| 1335 | **/ |
| 1336 | void i40e_del_filter(struct i40e_vsi *vsi, |
| 1337 | u8 *macaddr, s16 vlan, |
| 1338 | bool is_vf, bool is_netdev) |
| 1339 | { |
| 1340 | struct i40e_mac_filter *f; |
| 1341 | |
| 1342 | if (!vsi || !macaddr) |
| 1343 | return; |
| 1344 | |
| 1345 | f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev); |
| 1346 | if (!f || f->counter == 0) |
| 1347 | return; |
| 1348 | |
| 1349 | if (is_vf) { |
| 1350 | if (f->is_vf) { |
| 1351 | f->is_vf = false; |
| 1352 | f->counter--; |
| 1353 | } |
| 1354 | } else if (is_netdev) { |
| 1355 | if (f->is_netdev) { |
| 1356 | f->is_netdev = false; |
| 1357 | f->counter--; |
| 1358 | } |
| 1359 | } else { |
| 1360 | /* make sure we don't remove a filter in use by vf or netdev */ |
| 1361 | int min_f = 0; |
| 1362 | min_f += (f->is_vf ? 1 : 0); |
| 1363 | min_f += (f->is_netdev ? 1 : 0); |
| 1364 | |
| 1365 | if (f->counter > min_f) |
| 1366 | f->counter--; |
| 1367 | } |
| 1368 | |
| 1369 | /* counter == 0 tells sync_filters_subtask to |
| 1370 | * remove the filter from the firmware's list |
| 1371 | */ |
| 1372 | if (f->counter == 0) { |
| 1373 | f->changed = true; |
| 1374 | vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED; |
| 1375 | vsi->back->flags |= I40E_FLAG_FILTER_SYNC; |
| 1376 | } |
| 1377 | } |
| 1378 | |
| 1379 | /** |
| 1380 | * i40e_set_mac - NDO callback to set mac address |
| 1381 | * @netdev: network interface device structure |
| 1382 | * @p: pointer to an address structure |
| 1383 | * |
| 1384 | * Returns 0 on success, negative on failure |
| 1385 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 1386 | #ifdef I40E_FCOE |
| 1387 | int i40e_set_mac(struct net_device *netdev, void *p) |
| 1388 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1389 | static int i40e_set_mac(struct net_device *netdev, void *p) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 1390 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1391 | { |
| 1392 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 1393 | struct i40e_vsi *vsi = np->vsi; |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1394 | struct i40e_pf *pf = vsi->back; |
| 1395 | struct i40e_hw *hw = &pf->hw; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1396 | struct sockaddr *addr = p; |
| 1397 | struct i40e_mac_filter *f; |
| 1398 | |
| 1399 | if (!is_valid_ether_addr(addr->sa_data)) |
| 1400 | return -EADDRNOTAVAIL; |
| 1401 | |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1402 | if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) { |
| 1403 | netdev_info(netdev, "already using mac address %pM\n", |
| 1404 | addr->sa_data); |
| 1405 | return 0; |
| 1406 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1407 | |
Anjali Singhai Jain | 80f6428 | 2013-11-28 06:39:47 +0000 | [diff] [blame] | 1408 | if (test_bit(__I40E_DOWN, &vsi->back->state) || |
| 1409 | test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state)) |
| 1410 | return -EADDRNOTAVAIL; |
| 1411 | |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1412 | if (ether_addr_equal(hw->mac.addr, addr->sa_data)) |
| 1413 | netdev_info(netdev, "returning to hw mac address %pM\n", |
| 1414 | hw->mac.addr); |
| 1415 | else |
| 1416 | netdev_info(netdev, "set new mac address %pM\n", addr->sa_data); |
| 1417 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1418 | if (vsi->type == I40E_VSI_MAIN) { |
| 1419 | i40e_status ret; |
| 1420 | ret = i40e_aq_mac_address_write(&vsi->back->hw, |
Shannon Nelson | cc41222 | 2014-06-04 01:23:21 +0000 | [diff] [blame] | 1421 | I40E_AQC_WRITE_TYPE_LAA_WOL, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1422 | addr->sa_data, NULL); |
| 1423 | if (ret) { |
| 1424 | netdev_info(netdev, |
| 1425 | "Addr change for Main VSI failed: %d\n", |
| 1426 | ret); |
| 1427 | return -EADDRNOTAVAIL; |
| 1428 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1429 | } |
| 1430 | |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1431 | if (ether_addr_equal(netdev->dev_addr, hw->mac.addr)) { |
| 1432 | struct i40e_aqc_remove_macvlan_element_data element; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1433 | |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1434 | memset(&element, 0, sizeof(element)); |
| 1435 | ether_addr_copy(element.mac_addr, netdev->dev_addr); |
| 1436 | element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH; |
| 1437 | i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL); |
| 1438 | } else { |
Shannon Nelson | 6c8ad1b | 2014-06-04 01:23:22 +0000 | [diff] [blame] | 1439 | i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY, |
| 1440 | false, false); |
Shannon Nelson | 6c8ad1b | 2014-06-04 01:23:22 +0000 | [diff] [blame] | 1441 | } |
| 1442 | |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1443 | if (ether_addr_equal(addr->sa_data, hw->mac.addr)) { |
| 1444 | struct i40e_aqc_add_macvlan_element_data element; |
| 1445 | |
| 1446 | memset(&element, 0, sizeof(element)); |
| 1447 | ether_addr_copy(element.mac_addr, hw->mac.addr); |
| 1448 | element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH); |
| 1449 | i40e_aq_add_macvlan(&pf->hw, vsi->seid, &element, 1, NULL); |
| 1450 | } else { |
| 1451 | f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY, |
| 1452 | false, false); |
| 1453 | if (f) |
| 1454 | f->is_laa = true; |
| 1455 | } |
| 1456 | |
| 1457 | i40e_sync_vsi_filters(vsi); |
| 1458 | ether_addr_copy(netdev->dev_addr, addr->sa_data); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1459 | |
| 1460 | return 0; |
| 1461 | } |
| 1462 | |
| 1463 | /** |
| 1464 | * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc |
| 1465 | * @vsi: the VSI being setup |
| 1466 | * @ctxt: VSI context structure |
| 1467 | * @enabled_tc: Enabled TCs bitmap |
| 1468 | * @is_add: True if called before Add VSI |
| 1469 | * |
| 1470 | * Setup VSI queue mapping for enabled traffic classes. |
| 1471 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 1472 | #ifdef I40E_FCOE |
| 1473 | void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi, |
| 1474 | struct i40e_vsi_context *ctxt, |
| 1475 | u8 enabled_tc, |
| 1476 | bool is_add) |
| 1477 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1478 | static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi, |
| 1479 | struct i40e_vsi_context *ctxt, |
| 1480 | u8 enabled_tc, |
| 1481 | bool is_add) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 1482 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1483 | { |
| 1484 | struct i40e_pf *pf = vsi->back; |
| 1485 | u16 sections = 0; |
| 1486 | u8 netdev_tc = 0; |
| 1487 | u16 numtc = 0; |
| 1488 | u16 qcount; |
| 1489 | u8 offset; |
| 1490 | u16 qmap; |
| 1491 | int i; |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 1492 | u16 num_tc_qps = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1493 | |
| 1494 | sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID; |
| 1495 | offset = 0; |
| 1496 | |
| 1497 | if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) { |
| 1498 | /* Find numtc from enabled TC bitmap */ |
| 1499 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { |
| 1500 | if (enabled_tc & (1 << i)) /* TC is enabled */ |
| 1501 | numtc++; |
| 1502 | } |
| 1503 | if (!numtc) { |
| 1504 | dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n"); |
| 1505 | numtc = 1; |
| 1506 | } |
| 1507 | } else { |
| 1508 | /* At least TC0 is enabled in case of non-DCB case */ |
| 1509 | numtc = 1; |
| 1510 | } |
| 1511 | |
| 1512 | vsi->tc_config.numtc = numtc; |
| 1513 | vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1; |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 1514 | /* Number of queues per enabled TC */ |
Anjali Singhai Jain | eb051af | 2014-05-20 08:01:46 +0000 | [diff] [blame] | 1515 | num_tc_qps = vsi->alloc_queue_pairs/numtc; |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 1516 | num_tc_qps = min_t(int, num_tc_qps, I40E_MAX_QUEUES_PER_TC); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1517 | |
| 1518 | /* Setup queue offset/count for all TCs for given VSI */ |
| 1519 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { |
| 1520 | /* See if the given TC is enabled for the given VSI */ |
| 1521 | if (vsi->tc_config.enabled_tc & (1 << i)) { /* TC is enabled */ |
| 1522 | int pow, num_qps; |
| 1523 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1524 | switch (vsi->type) { |
| 1525 | case I40E_VSI_MAIN: |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 1526 | qcount = min_t(int, pf->rss_size, num_tc_qps); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1527 | break; |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 1528 | #ifdef I40E_FCOE |
| 1529 | case I40E_VSI_FCOE: |
| 1530 | qcount = num_tc_qps; |
| 1531 | break; |
| 1532 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1533 | case I40E_VSI_FDIR: |
| 1534 | case I40E_VSI_SRIOV: |
| 1535 | case I40E_VSI_VMDQ2: |
| 1536 | default: |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 1537 | qcount = num_tc_qps; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1538 | WARN_ON(i != 0); |
| 1539 | break; |
| 1540 | } |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 1541 | vsi->tc_config.tc_info[i].qoffset = offset; |
| 1542 | vsi->tc_config.tc_info[i].qcount = qcount; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1543 | |
| 1544 | /* find the power-of-2 of the number of queue pairs */ |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 1545 | num_qps = qcount; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1546 | pow = 0; |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 1547 | while (num_qps && ((1 << pow) < qcount)) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1548 | pow++; |
| 1549 | num_qps >>= 1; |
| 1550 | } |
| 1551 | |
| 1552 | vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++; |
| 1553 | qmap = |
| 1554 | (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) | |
| 1555 | (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT); |
| 1556 | |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 1557 | offset += qcount; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1558 | } else { |
| 1559 | /* TC is not enabled so set the offset to |
| 1560 | * default queue and allocate one queue |
| 1561 | * for the given TC. |
| 1562 | */ |
| 1563 | vsi->tc_config.tc_info[i].qoffset = 0; |
| 1564 | vsi->tc_config.tc_info[i].qcount = 1; |
| 1565 | vsi->tc_config.tc_info[i].netdev_tc = 0; |
| 1566 | |
| 1567 | qmap = 0; |
| 1568 | } |
| 1569 | ctxt->info.tc_mapping[i] = cpu_to_le16(qmap); |
| 1570 | } |
| 1571 | |
| 1572 | /* Set actual Tx/Rx queue pairs */ |
| 1573 | vsi->num_queue_pairs = offset; |
| 1574 | |
| 1575 | /* Scheduler section valid can only be set for ADD VSI */ |
| 1576 | if (is_add) { |
| 1577 | sections |= I40E_AQ_VSI_PROP_SCHED_VALID; |
| 1578 | |
| 1579 | ctxt->info.up_enable_bits = enabled_tc; |
| 1580 | } |
| 1581 | if (vsi->type == I40E_VSI_SRIOV) { |
| 1582 | ctxt->info.mapping_flags |= |
| 1583 | cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG); |
| 1584 | for (i = 0; i < vsi->num_queue_pairs; i++) |
| 1585 | ctxt->info.queue_mapping[i] = |
| 1586 | cpu_to_le16(vsi->base_queue + i); |
| 1587 | } else { |
| 1588 | ctxt->info.mapping_flags |= |
| 1589 | cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG); |
| 1590 | ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue); |
| 1591 | } |
| 1592 | ctxt->info.valid_sections |= cpu_to_le16(sections); |
| 1593 | } |
| 1594 | |
| 1595 | /** |
| 1596 | * i40e_set_rx_mode - NDO callback to set the netdev filters |
| 1597 | * @netdev: network interface device structure |
| 1598 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 1599 | #ifdef I40E_FCOE |
| 1600 | void i40e_set_rx_mode(struct net_device *netdev) |
| 1601 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1602 | static void i40e_set_rx_mode(struct net_device *netdev) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 1603 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1604 | { |
| 1605 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 1606 | struct i40e_mac_filter *f, *ftmp; |
| 1607 | struct i40e_vsi *vsi = np->vsi; |
| 1608 | struct netdev_hw_addr *uca; |
| 1609 | struct netdev_hw_addr *mca; |
| 1610 | struct netdev_hw_addr *ha; |
| 1611 | |
| 1612 | /* add addr if not already in the filter list */ |
| 1613 | netdev_for_each_uc_addr(uca, netdev) { |
| 1614 | if (!i40e_find_mac(vsi, uca->addr, false, true)) { |
| 1615 | if (i40e_is_vsi_in_vlan(vsi)) |
| 1616 | i40e_put_mac_in_vlan(vsi, uca->addr, |
| 1617 | false, true); |
| 1618 | else |
| 1619 | i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY, |
| 1620 | false, true); |
| 1621 | } |
| 1622 | } |
| 1623 | |
| 1624 | netdev_for_each_mc_addr(mca, netdev) { |
| 1625 | if (!i40e_find_mac(vsi, mca->addr, false, true)) { |
| 1626 | if (i40e_is_vsi_in_vlan(vsi)) |
| 1627 | i40e_put_mac_in_vlan(vsi, mca->addr, |
| 1628 | false, true); |
| 1629 | else |
| 1630 | i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY, |
| 1631 | false, true); |
| 1632 | } |
| 1633 | } |
| 1634 | |
| 1635 | /* remove filter if not in netdev list */ |
| 1636 | list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) { |
| 1637 | bool found = false; |
| 1638 | |
| 1639 | if (!f->is_netdev) |
| 1640 | continue; |
| 1641 | |
| 1642 | if (is_multicast_ether_addr(f->macaddr)) { |
| 1643 | netdev_for_each_mc_addr(mca, netdev) { |
| 1644 | if (ether_addr_equal(mca->addr, f->macaddr)) { |
| 1645 | found = true; |
| 1646 | break; |
| 1647 | } |
| 1648 | } |
| 1649 | } else { |
| 1650 | netdev_for_each_uc_addr(uca, netdev) { |
| 1651 | if (ether_addr_equal(uca->addr, f->macaddr)) { |
| 1652 | found = true; |
| 1653 | break; |
| 1654 | } |
| 1655 | } |
| 1656 | |
| 1657 | for_each_dev_addr(netdev, ha) { |
| 1658 | if (ether_addr_equal(ha->addr, f->macaddr)) { |
| 1659 | found = true; |
| 1660 | break; |
| 1661 | } |
| 1662 | } |
| 1663 | } |
| 1664 | if (!found) |
| 1665 | i40e_del_filter( |
| 1666 | vsi, f->macaddr, I40E_VLAN_ANY, false, true); |
| 1667 | } |
| 1668 | |
| 1669 | /* check for other flag changes */ |
| 1670 | if (vsi->current_netdev_flags != vsi->netdev->flags) { |
| 1671 | vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED; |
| 1672 | vsi->back->flags |= I40E_FLAG_FILTER_SYNC; |
| 1673 | } |
| 1674 | } |
| 1675 | |
| 1676 | /** |
| 1677 | * i40e_sync_vsi_filters - Update the VSI filter list to the HW |
| 1678 | * @vsi: ptr to the VSI |
| 1679 | * |
| 1680 | * Push any outstanding VSI filter changes through the AdminQ. |
| 1681 | * |
| 1682 | * Returns 0 or error value |
| 1683 | **/ |
| 1684 | int i40e_sync_vsi_filters(struct i40e_vsi *vsi) |
| 1685 | { |
| 1686 | struct i40e_mac_filter *f, *ftmp; |
| 1687 | bool promisc_forced_on = false; |
| 1688 | bool add_happened = false; |
| 1689 | int filter_list_len = 0; |
| 1690 | u32 changed_flags = 0; |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1691 | i40e_status aq_ret = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1692 | struct i40e_pf *pf; |
| 1693 | int num_add = 0; |
| 1694 | int num_del = 0; |
| 1695 | u16 cmd_flags; |
| 1696 | |
| 1697 | /* empty array typed pointers, kcalloc later */ |
| 1698 | struct i40e_aqc_add_macvlan_element_data *add_list; |
| 1699 | struct i40e_aqc_remove_macvlan_element_data *del_list; |
| 1700 | |
| 1701 | while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state)) |
| 1702 | usleep_range(1000, 2000); |
| 1703 | pf = vsi->back; |
| 1704 | |
| 1705 | if (vsi->netdev) { |
| 1706 | changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags; |
| 1707 | vsi->current_netdev_flags = vsi->netdev->flags; |
| 1708 | } |
| 1709 | |
| 1710 | if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) { |
| 1711 | vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED; |
| 1712 | |
| 1713 | filter_list_len = pf->hw.aq.asq_buf_size / |
| 1714 | sizeof(struct i40e_aqc_remove_macvlan_element_data); |
| 1715 | del_list = kcalloc(filter_list_len, |
| 1716 | sizeof(struct i40e_aqc_remove_macvlan_element_data), |
| 1717 | GFP_KERNEL); |
| 1718 | if (!del_list) |
| 1719 | return -ENOMEM; |
| 1720 | |
| 1721 | list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) { |
| 1722 | if (!f->changed) |
| 1723 | continue; |
| 1724 | |
| 1725 | if (f->counter != 0) |
| 1726 | continue; |
| 1727 | f->changed = false; |
| 1728 | cmd_flags = 0; |
| 1729 | |
| 1730 | /* add to delete list */ |
Greg Rose | 9a17390 | 2014-05-22 06:32:02 +0000 | [diff] [blame] | 1731 | ether_addr_copy(del_list[num_del].mac_addr, f->macaddr); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1732 | del_list[num_del].vlan_tag = |
| 1733 | cpu_to_le16((u16)(f->vlan == |
| 1734 | I40E_VLAN_ANY ? 0 : f->vlan)); |
| 1735 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1736 | cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH; |
| 1737 | del_list[num_del].flags = cmd_flags; |
| 1738 | num_del++; |
| 1739 | |
| 1740 | /* unlink from filter list */ |
| 1741 | list_del(&f->list); |
| 1742 | kfree(f); |
| 1743 | |
| 1744 | /* flush a full buffer */ |
| 1745 | if (num_del == filter_list_len) { |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1746 | aq_ret = i40e_aq_remove_macvlan(&pf->hw, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1747 | vsi->seid, del_list, num_del, |
| 1748 | NULL); |
| 1749 | num_del = 0; |
| 1750 | memset(del_list, 0, sizeof(*del_list)); |
| 1751 | |
Shannon Nelson | fdfe9cb | 2014-05-20 08:01:39 +0000 | [diff] [blame] | 1752 | if (aq_ret && |
| 1753 | pf->hw.aq.asq_last_status != |
| 1754 | I40E_AQ_RC_ENOENT) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1755 | dev_info(&pf->pdev->dev, |
| 1756 | "ignoring delete macvlan error, err %d, aq_err %d while flushing a full buffer\n", |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1757 | aq_ret, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1758 | pf->hw.aq.asq_last_status); |
| 1759 | } |
| 1760 | } |
| 1761 | if (num_del) { |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1762 | aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1763 | del_list, num_del, NULL); |
| 1764 | num_del = 0; |
| 1765 | |
Shannon Nelson | fdfe9cb | 2014-05-20 08:01:39 +0000 | [diff] [blame] | 1766 | if (aq_ret && |
| 1767 | pf->hw.aq.asq_last_status != I40E_AQ_RC_ENOENT) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1768 | dev_info(&pf->pdev->dev, |
| 1769 | "ignoring delete macvlan error, err %d, aq_err %d\n", |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1770 | aq_ret, pf->hw.aq.asq_last_status); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1771 | } |
| 1772 | |
| 1773 | kfree(del_list); |
| 1774 | del_list = NULL; |
| 1775 | |
| 1776 | /* do all the adds now */ |
| 1777 | filter_list_len = pf->hw.aq.asq_buf_size / |
| 1778 | sizeof(struct i40e_aqc_add_macvlan_element_data), |
| 1779 | add_list = kcalloc(filter_list_len, |
| 1780 | sizeof(struct i40e_aqc_add_macvlan_element_data), |
| 1781 | GFP_KERNEL); |
| 1782 | if (!add_list) |
| 1783 | return -ENOMEM; |
| 1784 | |
| 1785 | list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) { |
| 1786 | if (!f->changed) |
| 1787 | continue; |
| 1788 | |
| 1789 | if (f->counter == 0) |
| 1790 | continue; |
| 1791 | f->changed = false; |
| 1792 | add_happened = true; |
| 1793 | cmd_flags = 0; |
| 1794 | |
| 1795 | /* add to add array */ |
Greg Rose | 9a17390 | 2014-05-22 06:32:02 +0000 | [diff] [blame] | 1796 | ether_addr_copy(add_list[num_add].mac_addr, f->macaddr); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1797 | add_list[num_add].vlan_tag = |
| 1798 | cpu_to_le16( |
| 1799 | (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan)); |
| 1800 | add_list[num_add].queue_number = 0; |
| 1801 | |
| 1802 | cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1803 | add_list[num_add].flags = cpu_to_le16(cmd_flags); |
| 1804 | num_add++; |
| 1805 | |
| 1806 | /* flush a full buffer */ |
| 1807 | if (num_add == filter_list_len) { |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1808 | aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid, |
| 1809 | add_list, num_add, |
| 1810 | NULL); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1811 | num_add = 0; |
| 1812 | |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1813 | if (aq_ret) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1814 | break; |
| 1815 | memset(add_list, 0, sizeof(*add_list)); |
| 1816 | } |
| 1817 | } |
| 1818 | if (num_add) { |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1819 | aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid, |
| 1820 | add_list, num_add, NULL); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1821 | num_add = 0; |
| 1822 | } |
| 1823 | kfree(add_list); |
| 1824 | add_list = NULL; |
| 1825 | |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 1826 | if (add_happened && aq_ret && |
| 1827 | pf->hw.aq.asq_last_status != I40E_AQ_RC_EINVAL) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1828 | dev_info(&pf->pdev->dev, |
| 1829 | "add filter failed, err %d, aq_err %d\n", |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1830 | aq_ret, pf->hw.aq.asq_last_status); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1831 | if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) && |
| 1832 | !test_bit(__I40E_FILTER_OVERFLOW_PROMISC, |
| 1833 | &vsi->state)) { |
| 1834 | promisc_forced_on = true; |
| 1835 | set_bit(__I40E_FILTER_OVERFLOW_PROMISC, |
| 1836 | &vsi->state); |
| 1837 | dev_info(&pf->pdev->dev, "promiscuous mode forced on\n"); |
| 1838 | } |
| 1839 | } |
| 1840 | } |
| 1841 | |
| 1842 | /* check for changes in promiscuous modes */ |
| 1843 | if (changed_flags & IFF_ALLMULTI) { |
| 1844 | bool cur_multipromisc; |
| 1845 | cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI); |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1846 | aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw, |
| 1847 | vsi->seid, |
| 1848 | cur_multipromisc, |
| 1849 | NULL); |
| 1850 | if (aq_ret) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1851 | dev_info(&pf->pdev->dev, |
| 1852 | "set multi promisc failed, err %d, aq_err %d\n", |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1853 | aq_ret, pf->hw.aq.asq_last_status); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1854 | } |
| 1855 | if ((changed_flags & IFF_PROMISC) || promisc_forced_on) { |
| 1856 | bool cur_promisc; |
| 1857 | cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) || |
| 1858 | test_bit(__I40E_FILTER_OVERFLOW_PROMISC, |
| 1859 | &vsi->state)); |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1860 | aq_ret = i40e_aq_set_vsi_unicast_promiscuous(&vsi->back->hw, |
| 1861 | vsi->seid, |
| 1862 | cur_promisc, NULL); |
| 1863 | if (aq_ret) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1864 | dev_info(&pf->pdev->dev, |
| 1865 | "set uni promisc failed, err %d, aq_err %d\n", |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 1866 | aq_ret, pf->hw.aq.asq_last_status); |
Greg Rose | 1a10370 | 2013-11-28 06:42:39 +0000 | [diff] [blame] | 1867 | aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw, |
| 1868 | vsi->seid, |
| 1869 | cur_promisc, NULL); |
| 1870 | if (aq_ret) |
| 1871 | dev_info(&pf->pdev->dev, |
| 1872 | "set brdcast promisc failed, err %d, aq_err %d\n", |
| 1873 | aq_ret, pf->hw.aq.asq_last_status); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1874 | } |
| 1875 | |
| 1876 | clear_bit(__I40E_CONFIG_BUSY, &vsi->state); |
| 1877 | return 0; |
| 1878 | } |
| 1879 | |
| 1880 | /** |
| 1881 | * i40e_sync_filters_subtask - Sync the VSI filter list with HW |
| 1882 | * @pf: board private structure |
| 1883 | **/ |
| 1884 | static void i40e_sync_filters_subtask(struct i40e_pf *pf) |
| 1885 | { |
| 1886 | int v; |
| 1887 | |
| 1888 | if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC)) |
| 1889 | return; |
| 1890 | pf->flags &= ~I40E_FLAG_FILTER_SYNC; |
| 1891 | |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 1892 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1893 | if (pf->vsi[v] && |
| 1894 | (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) |
| 1895 | i40e_sync_vsi_filters(pf->vsi[v]); |
| 1896 | } |
| 1897 | } |
| 1898 | |
| 1899 | /** |
| 1900 | * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit |
| 1901 | * @netdev: network interface device structure |
| 1902 | * @new_mtu: new value for maximum frame size |
| 1903 | * |
| 1904 | * Returns 0 on success, negative on failure |
| 1905 | **/ |
| 1906 | static int i40e_change_mtu(struct net_device *netdev, int new_mtu) |
| 1907 | { |
| 1908 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
Jesse Brandeburg | 61a46a4 | 2014-04-23 04:50:05 +0000 | [diff] [blame] | 1909 | int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1910 | struct i40e_vsi *vsi = np->vsi; |
| 1911 | |
| 1912 | /* MTU < 68 is an error and causes problems on some kernels */ |
| 1913 | if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER)) |
| 1914 | return -EINVAL; |
| 1915 | |
| 1916 | netdev_info(netdev, "changing MTU from %d to %d\n", |
| 1917 | netdev->mtu, new_mtu); |
| 1918 | netdev->mtu = new_mtu; |
| 1919 | if (netif_running(netdev)) |
| 1920 | i40e_vsi_reinit_locked(vsi); |
| 1921 | |
| 1922 | return 0; |
| 1923 | } |
| 1924 | |
| 1925 | /** |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 1926 | * i40e_ioctl - Access the hwtstamp interface |
| 1927 | * @netdev: network interface device structure |
| 1928 | * @ifr: interface request data |
| 1929 | * @cmd: ioctl command |
| 1930 | **/ |
| 1931 | int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) |
| 1932 | { |
| 1933 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 1934 | struct i40e_pf *pf = np->vsi->back; |
| 1935 | |
| 1936 | switch (cmd) { |
| 1937 | case SIOCGHWTSTAMP: |
| 1938 | return i40e_ptp_get_ts_config(pf, ifr); |
| 1939 | case SIOCSHWTSTAMP: |
| 1940 | return i40e_ptp_set_ts_config(pf, ifr); |
| 1941 | default: |
| 1942 | return -EOPNOTSUPP; |
| 1943 | } |
| 1944 | } |
| 1945 | |
| 1946 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 1947 | * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI |
| 1948 | * @vsi: the vsi being adjusted |
| 1949 | **/ |
| 1950 | void i40e_vlan_stripping_enable(struct i40e_vsi *vsi) |
| 1951 | { |
| 1952 | struct i40e_vsi_context ctxt; |
| 1953 | i40e_status ret; |
| 1954 | |
| 1955 | if ((vsi->info.valid_sections & |
| 1956 | cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) && |
| 1957 | ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0)) |
| 1958 | return; /* already enabled */ |
| 1959 | |
| 1960 | vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID); |
| 1961 | vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL | |
| 1962 | I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH; |
| 1963 | |
| 1964 | ctxt.seid = vsi->seid; |
| 1965 | memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info)); |
| 1966 | ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL); |
| 1967 | if (ret) { |
| 1968 | dev_info(&vsi->back->pdev->dev, |
| 1969 | "%s: update vsi failed, aq_err=%d\n", |
| 1970 | __func__, vsi->back->hw.aq.asq_last_status); |
| 1971 | } |
| 1972 | } |
| 1973 | |
| 1974 | /** |
| 1975 | * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI |
| 1976 | * @vsi: the vsi being adjusted |
| 1977 | **/ |
| 1978 | void i40e_vlan_stripping_disable(struct i40e_vsi *vsi) |
| 1979 | { |
| 1980 | struct i40e_vsi_context ctxt; |
| 1981 | i40e_status ret; |
| 1982 | |
| 1983 | if ((vsi->info.valid_sections & |
| 1984 | cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) && |
| 1985 | ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) == |
| 1986 | I40E_AQ_VSI_PVLAN_EMOD_MASK)) |
| 1987 | return; /* already disabled */ |
| 1988 | |
| 1989 | vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID); |
| 1990 | vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL | |
| 1991 | I40E_AQ_VSI_PVLAN_EMOD_NOTHING; |
| 1992 | |
| 1993 | ctxt.seid = vsi->seid; |
| 1994 | memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info)); |
| 1995 | ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL); |
| 1996 | if (ret) { |
| 1997 | dev_info(&vsi->back->pdev->dev, |
| 1998 | "%s: update vsi failed, aq_err=%d\n", |
| 1999 | __func__, vsi->back->hw.aq.asq_last_status); |
| 2000 | } |
| 2001 | } |
| 2002 | |
| 2003 | /** |
| 2004 | * i40e_vlan_rx_register - Setup or shutdown vlan offload |
| 2005 | * @netdev: network interface to be adjusted |
| 2006 | * @features: netdev features to test if VLAN offload is enabled or not |
| 2007 | **/ |
| 2008 | static void i40e_vlan_rx_register(struct net_device *netdev, u32 features) |
| 2009 | { |
| 2010 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 2011 | struct i40e_vsi *vsi = np->vsi; |
| 2012 | |
| 2013 | if (features & NETIF_F_HW_VLAN_CTAG_RX) |
| 2014 | i40e_vlan_stripping_enable(vsi); |
| 2015 | else |
| 2016 | i40e_vlan_stripping_disable(vsi); |
| 2017 | } |
| 2018 | |
| 2019 | /** |
| 2020 | * i40e_vsi_add_vlan - Add vsi membership for given vlan |
| 2021 | * @vsi: the vsi being configured |
| 2022 | * @vid: vlan id to be added (0 = untagged only , -1 = any) |
| 2023 | **/ |
| 2024 | int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid) |
| 2025 | { |
| 2026 | struct i40e_mac_filter *f, *add_f; |
| 2027 | bool is_netdev, is_vf; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2028 | |
| 2029 | is_vf = (vsi->type == I40E_VSI_SRIOV); |
| 2030 | is_netdev = !!(vsi->netdev); |
| 2031 | |
| 2032 | if (is_netdev) { |
| 2033 | add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid, |
| 2034 | is_vf, is_netdev); |
| 2035 | if (!add_f) { |
| 2036 | dev_info(&vsi->back->pdev->dev, |
| 2037 | "Could not add vlan filter %d for %pM\n", |
| 2038 | vid, vsi->netdev->dev_addr); |
| 2039 | return -ENOMEM; |
| 2040 | } |
| 2041 | } |
| 2042 | |
| 2043 | list_for_each_entry(f, &vsi->mac_filter_list, list) { |
| 2044 | add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev); |
| 2045 | if (!add_f) { |
| 2046 | dev_info(&vsi->back->pdev->dev, |
| 2047 | "Could not add vlan filter %d for %pM\n", |
| 2048 | vid, f->macaddr); |
| 2049 | return -ENOMEM; |
| 2050 | } |
| 2051 | } |
| 2052 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2053 | /* Now if we add a vlan tag, make sure to check if it is the first |
| 2054 | * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag" |
| 2055 | * with 0, so we now accept untagged and specified tagged traffic |
| 2056 | * (and not any taged and untagged) |
| 2057 | */ |
| 2058 | if (vid > 0) { |
| 2059 | if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr, |
| 2060 | I40E_VLAN_ANY, |
| 2061 | is_vf, is_netdev)) { |
| 2062 | i40e_del_filter(vsi, vsi->netdev->dev_addr, |
| 2063 | I40E_VLAN_ANY, is_vf, is_netdev); |
| 2064 | add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0, |
| 2065 | is_vf, is_netdev); |
| 2066 | if (!add_f) { |
| 2067 | dev_info(&vsi->back->pdev->dev, |
| 2068 | "Could not add filter 0 for %pM\n", |
| 2069 | vsi->netdev->dev_addr); |
| 2070 | return -ENOMEM; |
| 2071 | } |
| 2072 | } |
Greg Rose | 8d82a7c | 2014-01-13 16:13:04 -0800 | [diff] [blame] | 2073 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2074 | |
Greg Rose | 8d82a7c | 2014-01-13 16:13:04 -0800 | [diff] [blame] | 2075 | /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */ |
| 2076 | if (vid > 0 && !vsi->info.pvid) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2077 | list_for_each_entry(f, &vsi->mac_filter_list, list) { |
| 2078 | if (i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY, |
| 2079 | is_vf, is_netdev)) { |
| 2080 | i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY, |
| 2081 | is_vf, is_netdev); |
| 2082 | add_f = i40e_add_filter(vsi, f->macaddr, |
| 2083 | 0, is_vf, is_netdev); |
| 2084 | if (!add_f) { |
| 2085 | dev_info(&vsi->back->pdev->dev, |
| 2086 | "Could not add filter 0 for %pM\n", |
| 2087 | f->macaddr); |
| 2088 | return -ENOMEM; |
| 2089 | } |
| 2090 | } |
| 2091 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2092 | } |
| 2093 | |
Anjali Singhai Jain | 80f6428 | 2013-11-28 06:39:47 +0000 | [diff] [blame] | 2094 | if (test_bit(__I40E_DOWN, &vsi->back->state) || |
| 2095 | test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state)) |
| 2096 | return 0; |
| 2097 | |
| 2098 | return i40e_sync_vsi_filters(vsi); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2099 | } |
| 2100 | |
| 2101 | /** |
| 2102 | * i40e_vsi_kill_vlan - Remove vsi membership for given vlan |
| 2103 | * @vsi: the vsi being configured |
| 2104 | * @vid: vlan id to be removed (0 = untagged only , -1 = any) |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2105 | * |
| 2106 | * Return: 0 on success or negative otherwise |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2107 | **/ |
| 2108 | int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid) |
| 2109 | { |
| 2110 | struct net_device *netdev = vsi->netdev; |
| 2111 | struct i40e_mac_filter *f, *add_f; |
| 2112 | bool is_vf, is_netdev; |
| 2113 | int filter_count = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2114 | |
| 2115 | is_vf = (vsi->type == I40E_VSI_SRIOV); |
| 2116 | is_netdev = !!(netdev); |
| 2117 | |
| 2118 | if (is_netdev) |
| 2119 | i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev); |
| 2120 | |
| 2121 | list_for_each_entry(f, &vsi->mac_filter_list, list) |
| 2122 | i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev); |
| 2123 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2124 | /* go through all the filters for this VSI and if there is only |
| 2125 | * vid == 0 it means there are no other filters, so vid 0 must |
| 2126 | * be replaced with -1. This signifies that we should from now |
| 2127 | * on accept any traffic (with any tag present, or untagged) |
| 2128 | */ |
| 2129 | list_for_each_entry(f, &vsi->mac_filter_list, list) { |
| 2130 | if (is_netdev) { |
| 2131 | if (f->vlan && |
| 2132 | ether_addr_equal(netdev->dev_addr, f->macaddr)) |
| 2133 | filter_count++; |
| 2134 | } |
| 2135 | |
| 2136 | if (f->vlan) |
| 2137 | filter_count++; |
| 2138 | } |
| 2139 | |
| 2140 | if (!filter_count && is_netdev) { |
| 2141 | i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev); |
| 2142 | f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY, |
| 2143 | is_vf, is_netdev); |
| 2144 | if (!f) { |
| 2145 | dev_info(&vsi->back->pdev->dev, |
| 2146 | "Could not add filter %d for %pM\n", |
| 2147 | I40E_VLAN_ANY, netdev->dev_addr); |
| 2148 | return -ENOMEM; |
| 2149 | } |
| 2150 | } |
| 2151 | |
| 2152 | if (!filter_count) { |
| 2153 | list_for_each_entry(f, &vsi->mac_filter_list, list) { |
| 2154 | i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev); |
| 2155 | add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY, |
| 2156 | is_vf, is_netdev); |
| 2157 | if (!add_f) { |
| 2158 | dev_info(&vsi->back->pdev->dev, |
| 2159 | "Could not add filter %d for %pM\n", |
| 2160 | I40E_VLAN_ANY, f->macaddr); |
| 2161 | return -ENOMEM; |
| 2162 | } |
| 2163 | } |
| 2164 | } |
| 2165 | |
Anjali Singhai Jain | 80f6428 | 2013-11-28 06:39:47 +0000 | [diff] [blame] | 2166 | if (test_bit(__I40E_DOWN, &vsi->back->state) || |
| 2167 | test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state)) |
| 2168 | return 0; |
| 2169 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2170 | return i40e_sync_vsi_filters(vsi); |
| 2171 | } |
| 2172 | |
| 2173 | /** |
| 2174 | * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload |
| 2175 | * @netdev: network interface to be adjusted |
| 2176 | * @vid: vlan id to be added |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2177 | * |
| 2178 | * net_device_ops implementation for adding vlan ids |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2179 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 2180 | #ifdef I40E_FCOE |
| 2181 | int i40e_vlan_rx_add_vid(struct net_device *netdev, |
| 2182 | __always_unused __be16 proto, u16 vid) |
| 2183 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2184 | static int i40e_vlan_rx_add_vid(struct net_device *netdev, |
| 2185 | __always_unused __be16 proto, u16 vid) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 2186 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2187 | { |
| 2188 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 2189 | struct i40e_vsi *vsi = np->vsi; |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2190 | int ret = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2191 | |
| 2192 | if (vid > 4095) |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2193 | return -EINVAL; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2194 | |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2195 | netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid); |
| 2196 | |
Anjali Singhai Jain | 6982d42 | 2014-02-06 05:51:10 +0000 | [diff] [blame] | 2197 | /* If the network stack called us with vid = 0 then |
| 2198 | * it is asking to receive priority tagged packets with |
| 2199 | * vlan id 0. Our HW receives them by default when configured |
| 2200 | * to receive untagged packets so there is no need to add an |
| 2201 | * extra filter for vlan 0 tagged packets. |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2202 | */ |
Anjali Singhai Jain | 6982d42 | 2014-02-06 05:51:10 +0000 | [diff] [blame] | 2203 | if (vid) |
| 2204 | ret = i40e_vsi_add_vlan(vsi, vid); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2205 | |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2206 | if (!ret && (vid < VLAN_N_VID)) |
| 2207 | set_bit(vid, vsi->active_vlans); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2208 | |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2209 | return ret; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2210 | } |
| 2211 | |
| 2212 | /** |
| 2213 | * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload |
| 2214 | * @netdev: network interface to be adjusted |
| 2215 | * @vid: vlan id to be removed |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2216 | * |
Akeem G Abodunrin | fdfd943 | 2014-02-11 08:24:15 +0000 | [diff] [blame] | 2217 | * net_device_ops implementation for removing vlan ids |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2218 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 2219 | #ifdef I40E_FCOE |
| 2220 | int i40e_vlan_rx_kill_vid(struct net_device *netdev, |
| 2221 | __always_unused __be16 proto, u16 vid) |
| 2222 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2223 | static int i40e_vlan_rx_kill_vid(struct net_device *netdev, |
| 2224 | __always_unused __be16 proto, u16 vid) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 2225 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2226 | { |
| 2227 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 2228 | struct i40e_vsi *vsi = np->vsi; |
| 2229 | |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2230 | netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid); |
| 2231 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2232 | /* return code is ignored as there is nothing a user |
| 2233 | * can do about failure to remove and a log message was |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2234 | * already printed from the other function |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2235 | */ |
| 2236 | i40e_vsi_kill_vlan(vsi, vid); |
| 2237 | |
| 2238 | clear_bit(vid, vsi->active_vlans); |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 2239 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2240 | return 0; |
| 2241 | } |
| 2242 | |
| 2243 | /** |
| 2244 | * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up |
| 2245 | * @vsi: the vsi being brought back up |
| 2246 | **/ |
| 2247 | static void i40e_restore_vlan(struct i40e_vsi *vsi) |
| 2248 | { |
| 2249 | u16 vid; |
| 2250 | |
| 2251 | if (!vsi->netdev) |
| 2252 | return; |
| 2253 | |
| 2254 | i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features); |
| 2255 | |
| 2256 | for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID) |
| 2257 | i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q), |
| 2258 | vid); |
| 2259 | } |
| 2260 | |
| 2261 | /** |
| 2262 | * i40e_vsi_add_pvid - Add pvid for the VSI |
| 2263 | * @vsi: the vsi being adjusted |
| 2264 | * @vid: the vlan id to set as a PVID |
| 2265 | **/ |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 2266 | int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2267 | { |
| 2268 | struct i40e_vsi_context ctxt; |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 2269 | i40e_status aq_ret; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2270 | |
| 2271 | vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID); |
| 2272 | vsi->info.pvid = cpu_to_le16(vid); |
Greg Rose | 6c12fcb | 2013-11-28 06:39:34 +0000 | [diff] [blame] | 2273 | vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED | |
| 2274 | I40E_AQ_VSI_PVLAN_INSERT_PVID | |
Greg Rose | b774c7d | 2013-11-28 06:39:44 +0000 | [diff] [blame] | 2275 | I40E_AQ_VSI_PVLAN_EMOD_STR; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2276 | |
| 2277 | ctxt.seid = vsi->seid; |
| 2278 | memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info)); |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 2279 | aq_ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL); |
| 2280 | if (aq_ret) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2281 | dev_info(&vsi->back->pdev->dev, |
| 2282 | "%s: update vsi failed, aq_err=%d\n", |
| 2283 | __func__, vsi->back->hw.aq.asq_last_status); |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 2284 | return -ENOENT; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2285 | } |
| 2286 | |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 2287 | return 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2288 | } |
| 2289 | |
| 2290 | /** |
| 2291 | * i40e_vsi_remove_pvid - Remove the pvid from the VSI |
| 2292 | * @vsi: the vsi being adjusted |
| 2293 | * |
| 2294 | * Just use the vlan_rx_register() service to put it back to normal |
| 2295 | **/ |
| 2296 | void i40e_vsi_remove_pvid(struct i40e_vsi *vsi) |
| 2297 | { |
Greg Rose | 6c12fcb | 2013-11-28 06:39:34 +0000 | [diff] [blame] | 2298 | i40e_vlan_stripping_disable(vsi); |
| 2299 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2300 | vsi->info.pvid = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2301 | } |
| 2302 | |
| 2303 | /** |
| 2304 | * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources |
| 2305 | * @vsi: ptr to the VSI |
| 2306 | * |
| 2307 | * If this function returns with an error, then it's possible one or |
| 2308 | * more of the rings is populated (while the rest are not). It is the |
| 2309 | * callers duty to clean those orphaned rings. |
| 2310 | * |
| 2311 | * Return 0 on success, negative on failure |
| 2312 | **/ |
| 2313 | static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi) |
| 2314 | { |
| 2315 | int i, err = 0; |
| 2316 | |
| 2317 | for (i = 0; i < vsi->num_queue_pairs && !err; i++) |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 2318 | err = i40e_setup_tx_descriptors(vsi->tx_rings[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2319 | |
| 2320 | return err; |
| 2321 | } |
| 2322 | |
| 2323 | /** |
| 2324 | * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues |
| 2325 | * @vsi: ptr to the VSI |
| 2326 | * |
| 2327 | * Free VSI's transmit software resources |
| 2328 | **/ |
| 2329 | static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi) |
| 2330 | { |
| 2331 | int i; |
| 2332 | |
Greg Rose | 8e9dca5 | 2013-12-18 13:45:53 +0000 | [diff] [blame] | 2333 | if (!vsi->tx_rings) |
| 2334 | return; |
| 2335 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2336 | for (i = 0; i < vsi->num_queue_pairs; i++) |
Greg Rose | 8e9dca5 | 2013-12-18 13:45:53 +0000 | [diff] [blame] | 2337 | if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 2338 | i40e_free_tx_resources(vsi->tx_rings[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2339 | } |
| 2340 | |
| 2341 | /** |
| 2342 | * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources |
| 2343 | * @vsi: ptr to the VSI |
| 2344 | * |
| 2345 | * If this function returns with an error, then it's possible one or |
| 2346 | * more of the rings is populated (while the rest are not). It is the |
| 2347 | * callers duty to clean those orphaned rings. |
| 2348 | * |
| 2349 | * Return 0 on success, negative on failure |
| 2350 | **/ |
| 2351 | static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi) |
| 2352 | { |
| 2353 | int i, err = 0; |
| 2354 | |
| 2355 | for (i = 0; i < vsi->num_queue_pairs && !err; i++) |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 2356 | err = i40e_setup_rx_descriptors(vsi->rx_rings[i]); |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 2357 | #ifdef I40E_FCOE |
| 2358 | i40e_fcoe_setup_ddp_resources(vsi); |
| 2359 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2360 | return err; |
| 2361 | } |
| 2362 | |
| 2363 | /** |
| 2364 | * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues |
| 2365 | * @vsi: ptr to the VSI |
| 2366 | * |
| 2367 | * Free all receive software resources |
| 2368 | **/ |
| 2369 | static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi) |
| 2370 | { |
| 2371 | int i; |
| 2372 | |
Greg Rose | 8e9dca5 | 2013-12-18 13:45:53 +0000 | [diff] [blame] | 2373 | if (!vsi->rx_rings) |
| 2374 | return; |
| 2375 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2376 | for (i = 0; i < vsi->num_queue_pairs; i++) |
Greg Rose | 8e9dca5 | 2013-12-18 13:45:53 +0000 | [diff] [blame] | 2377 | if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc) |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 2378 | i40e_free_rx_resources(vsi->rx_rings[i]); |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 2379 | #ifdef I40E_FCOE |
| 2380 | i40e_fcoe_free_ddp_resources(vsi); |
| 2381 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2382 | } |
| 2383 | |
| 2384 | /** |
Neerav Parikh | 3ffa037 | 2014-11-12 00:19:02 +0000 | [diff] [blame] | 2385 | * i40e_config_xps_tx_ring - Configure XPS for a Tx ring |
| 2386 | * @ring: The Tx ring to configure |
| 2387 | * |
| 2388 | * This enables/disables XPS for a given Tx descriptor ring |
| 2389 | * based on the TCs enabled for the VSI that ring belongs to. |
| 2390 | **/ |
| 2391 | static void i40e_config_xps_tx_ring(struct i40e_ring *ring) |
| 2392 | { |
| 2393 | struct i40e_vsi *vsi = ring->vsi; |
| 2394 | cpumask_var_t mask; |
| 2395 | |
| 2396 | if (ring->q_vector && ring->netdev) { |
| 2397 | /* Single TC mode enable XPS */ |
| 2398 | if (vsi->tc_config.numtc <= 1 && |
| 2399 | !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state)) { |
| 2400 | netif_set_xps_queue(ring->netdev, |
| 2401 | &ring->q_vector->affinity_mask, |
| 2402 | ring->queue_index); |
| 2403 | } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) { |
| 2404 | /* Disable XPS to allow selection based on TC */ |
| 2405 | bitmap_zero(cpumask_bits(mask), nr_cpumask_bits); |
| 2406 | netif_set_xps_queue(ring->netdev, mask, |
| 2407 | ring->queue_index); |
| 2408 | free_cpumask_var(mask); |
| 2409 | } |
| 2410 | } |
| 2411 | } |
| 2412 | |
| 2413 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2414 | * i40e_configure_tx_ring - Configure a transmit ring context and rest |
| 2415 | * @ring: The Tx ring to configure |
| 2416 | * |
| 2417 | * Configure the Tx descriptor ring in the HMC context. |
| 2418 | **/ |
| 2419 | static int i40e_configure_tx_ring(struct i40e_ring *ring) |
| 2420 | { |
| 2421 | struct i40e_vsi *vsi = ring->vsi; |
| 2422 | u16 pf_q = vsi->base_queue + ring->queue_index; |
| 2423 | struct i40e_hw *hw = &vsi->back->hw; |
| 2424 | struct i40e_hmc_obj_txq tx_ctx; |
| 2425 | i40e_status err = 0; |
| 2426 | u32 qtx_ctl = 0; |
| 2427 | |
| 2428 | /* some ATR related tx ring init */ |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 2429 | if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2430 | ring->atr_sample_rate = vsi->back->atr_sample_rate; |
| 2431 | ring->atr_count = 0; |
| 2432 | } else { |
| 2433 | ring->atr_sample_rate = 0; |
| 2434 | } |
| 2435 | |
Neerav Parikh | 3ffa037 | 2014-11-12 00:19:02 +0000 | [diff] [blame] | 2436 | /* configure XPS */ |
| 2437 | i40e_config_xps_tx_ring(ring); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2438 | |
| 2439 | /* clear the context structure first */ |
| 2440 | memset(&tx_ctx, 0, sizeof(tx_ctx)); |
| 2441 | |
| 2442 | tx_ctx.new_context = 1; |
| 2443 | tx_ctx.base = (ring->dma / 128); |
| 2444 | tx_ctx.qlen = ring->count; |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 2445 | tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED | |
| 2446 | I40E_FLAG_FD_ATR_ENABLED)); |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 2447 | #ifdef I40E_FCOE |
| 2448 | tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE); |
| 2449 | #endif |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 2450 | tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP); |
Jesse Brandeburg | 1943d8b | 2014-02-14 02:14:40 +0000 | [diff] [blame] | 2451 | /* FDIR VSI tx ring can still use RS bit and writebacks */ |
| 2452 | if (vsi->type != I40E_VSI_FDIR) |
| 2453 | tx_ctx.head_wb_ena = 1; |
| 2454 | tx_ctx.head_wb_addr = ring->dma + |
| 2455 | (ring->count * sizeof(struct i40e_tx_desc)); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2456 | |
| 2457 | /* As part of VSI creation/update, FW allocates certain |
| 2458 | * Tx arbitration queue sets for each TC enabled for |
| 2459 | * the VSI. The FW returns the handles to these queue |
| 2460 | * sets as part of the response buffer to Add VSI, |
| 2461 | * Update VSI, etc. AQ commands. It is expected that |
| 2462 | * these queue set handles be associated with the Tx |
| 2463 | * queues by the driver as part of the TX queue context |
| 2464 | * initialization. This has to be done regardless of |
| 2465 | * DCB as by default everything is mapped to TC0. |
| 2466 | */ |
| 2467 | tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]); |
| 2468 | tx_ctx.rdylist_act = 0; |
| 2469 | |
| 2470 | /* clear the context in the HMC */ |
| 2471 | err = i40e_clear_lan_tx_queue_context(hw, pf_q); |
| 2472 | if (err) { |
| 2473 | dev_info(&vsi->back->pdev->dev, |
| 2474 | "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n", |
| 2475 | ring->queue_index, pf_q, err); |
| 2476 | return -ENOMEM; |
| 2477 | } |
| 2478 | |
| 2479 | /* set the context in the HMC */ |
| 2480 | err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx); |
| 2481 | if (err) { |
| 2482 | dev_info(&vsi->back->pdev->dev, |
| 2483 | "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n", |
| 2484 | ring->queue_index, pf_q, err); |
| 2485 | return -ENOMEM; |
| 2486 | } |
| 2487 | |
| 2488 | /* Now associate this queue with this PCI function */ |
Mitch Williams | 7a28d88 | 2014-10-17 03:14:52 +0000 | [diff] [blame] | 2489 | if (vsi->type == I40E_VSI_VMDQ2) { |
Shannon Nelson | 9d8bf54 | 2014-01-14 00:49:50 -0800 | [diff] [blame] | 2490 | qtx_ctl = I40E_QTX_CTL_VM_QUEUE; |
Mitch Williams | 7a28d88 | 2014-10-17 03:14:52 +0000 | [diff] [blame] | 2491 | qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) & |
| 2492 | I40E_QTX_CTL_VFVM_INDX_MASK; |
| 2493 | } else { |
Shannon Nelson | 9d8bf54 | 2014-01-14 00:49:50 -0800 | [diff] [blame] | 2494 | qtx_ctl = I40E_QTX_CTL_PF_QUEUE; |
Mitch Williams | 7a28d88 | 2014-10-17 03:14:52 +0000 | [diff] [blame] | 2495 | } |
| 2496 | |
Shannon Nelson | 13fd97749 | 2013-09-28 07:14:19 +0000 | [diff] [blame] | 2497 | qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) & |
| 2498 | I40E_QTX_CTL_PF_INDX_MASK); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2499 | wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl); |
| 2500 | i40e_flush(hw); |
| 2501 | |
| 2502 | clear_bit(__I40E_HANG_CHECK_ARMED, &ring->state); |
| 2503 | |
| 2504 | /* cache tail off for easier writes later */ |
| 2505 | ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q); |
| 2506 | |
| 2507 | return 0; |
| 2508 | } |
| 2509 | |
| 2510 | /** |
| 2511 | * i40e_configure_rx_ring - Configure a receive ring context |
| 2512 | * @ring: The Rx ring to configure |
| 2513 | * |
| 2514 | * Configure the Rx descriptor ring in the HMC context. |
| 2515 | **/ |
| 2516 | static int i40e_configure_rx_ring(struct i40e_ring *ring) |
| 2517 | { |
| 2518 | struct i40e_vsi *vsi = ring->vsi; |
| 2519 | u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len; |
| 2520 | u16 pf_q = vsi->base_queue + ring->queue_index; |
| 2521 | struct i40e_hw *hw = &vsi->back->hw; |
| 2522 | struct i40e_hmc_obj_rxq rx_ctx; |
| 2523 | i40e_status err = 0; |
| 2524 | |
| 2525 | ring->state = 0; |
| 2526 | |
| 2527 | /* clear the context structure first */ |
| 2528 | memset(&rx_ctx, 0, sizeof(rx_ctx)); |
| 2529 | |
| 2530 | ring->rx_buf_len = vsi->rx_buf_len; |
| 2531 | ring->rx_hdr_len = vsi->rx_hdr_len; |
| 2532 | |
| 2533 | rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT; |
| 2534 | rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT; |
| 2535 | |
| 2536 | rx_ctx.base = (ring->dma / 128); |
| 2537 | rx_ctx.qlen = ring->count; |
| 2538 | |
| 2539 | if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) { |
| 2540 | set_ring_16byte_desc_enabled(ring); |
| 2541 | rx_ctx.dsize = 0; |
| 2542 | } else { |
| 2543 | rx_ctx.dsize = 1; |
| 2544 | } |
| 2545 | |
| 2546 | rx_ctx.dtype = vsi->dtype; |
| 2547 | if (vsi->dtype) { |
| 2548 | set_ring_ps_enabled(ring); |
| 2549 | rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 | |
| 2550 | I40E_RX_SPLIT_IP | |
| 2551 | I40E_RX_SPLIT_TCP_UDP | |
| 2552 | I40E_RX_SPLIT_SCTP; |
| 2553 | } else { |
| 2554 | rx_ctx.hsplit_0 = 0; |
| 2555 | } |
| 2556 | |
| 2557 | rx_ctx.rxmax = min_t(u16, vsi->max_frame, |
| 2558 | (chain_len * ring->rx_buf_len)); |
Jesse Brandeburg | 7134f9c | 2013-11-26 08:56:05 +0000 | [diff] [blame] | 2559 | if (hw->revision_id == 0) |
| 2560 | rx_ctx.lrxqthresh = 0; |
| 2561 | else |
| 2562 | rx_ctx.lrxqthresh = 2; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2563 | rx_ctx.crcstrip = 1; |
| 2564 | rx_ctx.l2tsel = 1; |
| 2565 | rx_ctx.showiv = 1; |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 2566 | #ifdef I40E_FCOE |
| 2567 | rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE); |
| 2568 | #endif |
Catherine Sullivan | acb3676 | 2014-03-06 09:02:30 +0000 | [diff] [blame] | 2569 | /* set the prefena field to 1 because the manual says to */ |
| 2570 | rx_ctx.prefena = 1; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2571 | |
| 2572 | /* clear the context in the HMC */ |
| 2573 | err = i40e_clear_lan_rx_queue_context(hw, pf_q); |
| 2574 | if (err) { |
| 2575 | dev_info(&vsi->back->pdev->dev, |
| 2576 | "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n", |
| 2577 | ring->queue_index, pf_q, err); |
| 2578 | return -ENOMEM; |
| 2579 | } |
| 2580 | |
| 2581 | /* set the context in the HMC */ |
| 2582 | err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx); |
| 2583 | if (err) { |
| 2584 | dev_info(&vsi->back->pdev->dev, |
| 2585 | "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n", |
| 2586 | ring->queue_index, pf_q, err); |
| 2587 | return -ENOMEM; |
| 2588 | } |
| 2589 | |
| 2590 | /* cache tail for quicker writes, and clear the reg before use */ |
| 2591 | ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q); |
| 2592 | writel(0, ring->tail); |
| 2593 | |
| 2594 | i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring)); |
| 2595 | |
| 2596 | return 0; |
| 2597 | } |
| 2598 | |
| 2599 | /** |
| 2600 | * i40e_vsi_configure_tx - Configure the VSI for Tx |
| 2601 | * @vsi: VSI structure describing this set of rings and resources |
| 2602 | * |
| 2603 | * Configure the Tx VSI for operation. |
| 2604 | **/ |
| 2605 | static int i40e_vsi_configure_tx(struct i40e_vsi *vsi) |
| 2606 | { |
| 2607 | int err = 0; |
| 2608 | u16 i; |
| 2609 | |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 2610 | for (i = 0; (i < vsi->num_queue_pairs) && !err; i++) |
| 2611 | err = i40e_configure_tx_ring(vsi->tx_rings[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2612 | |
| 2613 | return err; |
| 2614 | } |
| 2615 | |
| 2616 | /** |
| 2617 | * i40e_vsi_configure_rx - Configure the VSI for Rx |
| 2618 | * @vsi: the VSI being configured |
| 2619 | * |
| 2620 | * Configure the Rx VSI for operation. |
| 2621 | **/ |
| 2622 | static int i40e_vsi_configure_rx(struct i40e_vsi *vsi) |
| 2623 | { |
| 2624 | int err = 0; |
| 2625 | u16 i; |
| 2626 | |
| 2627 | if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN)) |
| 2628 | vsi->max_frame = vsi->netdev->mtu + ETH_HLEN |
| 2629 | + ETH_FCS_LEN + VLAN_HLEN; |
| 2630 | else |
| 2631 | vsi->max_frame = I40E_RXBUFFER_2048; |
| 2632 | |
| 2633 | /* figure out correct receive buffer length */ |
| 2634 | switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED | |
| 2635 | I40E_FLAG_RX_PS_ENABLED)) { |
| 2636 | case I40E_FLAG_RX_1BUF_ENABLED: |
| 2637 | vsi->rx_hdr_len = 0; |
| 2638 | vsi->rx_buf_len = vsi->max_frame; |
| 2639 | vsi->dtype = I40E_RX_DTYPE_NO_SPLIT; |
| 2640 | break; |
| 2641 | case I40E_FLAG_RX_PS_ENABLED: |
| 2642 | vsi->rx_hdr_len = I40E_RX_HDR_SIZE; |
| 2643 | vsi->rx_buf_len = I40E_RXBUFFER_2048; |
| 2644 | vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT; |
| 2645 | break; |
| 2646 | default: |
| 2647 | vsi->rx_hdr_len = I40E_RX_HDR_SIZE; |
| 2648 | vsi->rx_buf_len = I40E_RXBUFFER_2048; |
| 2649 | vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS; |
| 2650 | break; |
| 2651 | } |
| 2652 | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 2653 | #ifdef I40E_FCOE |
| 2654 | /* setup rx buffer for FCoE */ |
| 2655 | if ((vsi->type == I40E_VSI_FCOE) && |
| 2656 | (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) { |
| 2657 | vsi->rx_hdr_len = 0; |
| 2658 | vsi->rx_buf_len = I40E_RXBUFFER_3072; |
| 2659 | vsi->max_frame = I40E_RXBUFFER_3072; |
| 2660 | vsi->dtype = I40E_RX_DTYPE_NO_SPLIT; |
| 2661 | } |
| 2662 | |
| 2663 | #endif /* I40E_FCOE */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2664 | /* round up for the chip's needs */ |
| 2665 | vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len, |
| 2666 | (1 << I40E_RXQ_CTX_HBUFF_SHIFT)); |
| 2667 | vsi->rx_buf_len = ALIGN(vsi->rx_buf_len, |
| 2668 | (1 << I40E_RXQ_CTX_DBUFF_SHIFT)); |
| 2669 | |
| 2670 | /* set up individual rings */ |
| 2671 | for (i = 0; i < vsi->num_queue_pairs && !err; i++) |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 2672 | err = i40e_configure_rx_ring(vsi->rx_rings[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2673 | |
| 2674 | return err; |
| 2675 | } |
| 2676 | |
| 2677 | /** |
| 2678 | * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC |
| 2679 | * @vsi: ptr to the VSI |
| 2680 | **/ |
| 2681 | static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi) |
| 2682 | { |
Akeem G Abodunrin | e7046ee | 2014-04-09 05:58:58 +0000 | [diff] [blame] | 2683 | struct i40e_ring *tx_ring, *rx_ring; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2684 | u16 qoffset, qcount; |
| 2685 | int i, n; |
| 2686 | |
| 2687 | if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) |
| 2688 | return; |
| 2689 | |
| 2690 | for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) { |
| 2691 | if (!(vsi->tc_config.enabled_tc & (1 << n))) |
| 2692 | continue; |
| 2693 | |
| 2694 | qoffset = vsi->tc_config.tc_info[n].qoffset; |
| 2695 | qcount = vsi->tc_config.tc_info[n].qcount; |
| 2696 | for (i = qoffset; i < (qoffset + qcount); i++) { |
Akeem G Abodunrin | e7046ee | 2014-04-09 05:58:58 +0000 | [diff] [blame] | 2697 | rx_ring = vsi->rx_rings[i]; |
| 2698 | tx_ring = vsi->tx_rings[i]; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2699 | rx_ring->dcb_tc = n; |
| 2700 | tx_ring->dcb_tc = n; |
| 2701 | } |
| 2702 | } |
| 2703 | } |
| 2704 | |
| 2705 | /** |
| 2706 | * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI |
| 2707 | * @vsi: ptr to the VSI |
| 2708 | **/ |
| 2709 | static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi) |
| 2710 | { |
| 2711 | if (vsi->netdev) |
| 2712 | i40e_set_rx_mode(vsi->netdev); |
| 2713 | } |
| 2714 | |
| 2715 | /** |
Joseph Gasparakis | 17a73f6 | 2014-02-12 01:45:30 +0000 | [diff] [blame] | 2716 | * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters |
| 2717 | * @vsi: Pointer to the targeted VSI |
| 2718 | * |
| 2719 | * This function replays the hlist on the hw where all the SB Flow Director |
| 2720 | * filters were saved. |
| 2721 | **/ |
| 2722 | static void i40e_fdir_filter_restore(struct i40e_vsi *vsi) |
| 2723 | { |
| 2724 | struct i40e_fdir_filter *filter; |
| 2725 | struct i40e_pf *pf = vsi->back; |
| 2726 | struct hlist_node *node; |
| 2727 | |
Anjali Singhai Jain | 55a5e60 | 2014-02-12 06:33:25 +0000 | [diff] [blame] | 2728 | if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED)) |
| 2729 | return; |
| 2730 | |
Joseph Gasparakis | 17a73f6 | 2014-02-12 01:45:30 +0000 | [diff] [blame] | 2731 | hlist_for_each_entry_safe(filter, node, |
| 2732 | &pf->fdir_filter_list, fdir_node) { |
| 2733 | i40e_add_del_fdir(vsi, filter, true); |
| 2734 | } |
| 2735 | } |
| 2736 | |
| 2737 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2738 | * i40e_vsi_configure - Set up the VSI for action |
| 2739 | * @vsi: the VSI being configured |
| 2740 | **/ |
| 2741 | static int i40e_vsi_configure(struct i40e_vsi *vsi) |
| 2742 | { |
| 2743 | int err; |
| 2744 | |
| 2745 | i40e_set_vsi_rx_mode(vsi); |
| 2746 | i40e_restore_vlan(vsi); |
| 2747 | i40e_vsi_config_dcb_rings(vsi); |
| 2748 | err = i40e_vsi_configure_tx(vsi); |
| 2749 | if (!err) |
| 2750 | err = i40e_vsi_configure_rx(vsi); |
| 2751 | |
| 2752 | return err; |
| 2753 | } |
| 2754 | |
| 2755 | /** |
| 2756 | * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW |
| 2757 | * @vsi: the VSI being configured |
| 2758 | **/ |
| 2759 | static void i40e_vsi_configure_msix(struct i40e_vsi *vsi) |
| 2760 | { |
| 2761 | struct i40e_pf *pf = vsi->back; |
| 2762 | struct i40e_q_vector *q_vector; |
| 2763 | struct i40e_hw *hw = &pf->hw; |
| 2764 | u16 vector; |
| 2765 | int i, q; |
| 2766 | u32 val; |
| 2767 | u32 qp; |
| 2768 | |
| 2769 | /* The interrupt indexing is offset by 1 in the PFINT_ITRn |
| 2770 | * and PFINT_LNKLSTn registers, e.g.: |
| 2771 | * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts) |
| 2772 | */ |
| 2773 | qp = vsi->base_queue; |
| 2774 | vector = vsi->base_vector; |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 2775 | for (i = 0; i < vsi->num_q_vectors; i++, vector++) { |
| 2776 | q_vector = vsi->q_vectors[i]; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2777 | q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting); |
| 2778 | q_vector->rx.latency_range = I40E_LOW_LATENCY; |
| 2779 | wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1), |
| 2780 | q_vector->rx.itr); |
| 2781 | q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting); |
| 2782 | q_vector->tx.latency_range = I40E_LOW_LATENCY; |
| 2783 | wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1), |
| 2784 | q_vector->tx.itr); |
| 2785 | |
| 2786 | /* Linked list for the queuepairs assigned to this vector */ |
| 2787 | wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp); |
| 2788 | for (q = 0; q < q_vector->num_ringpairs; q++) { |
| 2789 | val = I40E_QINT_RQCTL_CAUSE_ENA_MASK | |
| 2790 | (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) | |
| 2791 | (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) | |
| 2792 | (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)| |
| 2793 | (I40E_QUEUE_TYPE_TX |
| 2794 | << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT); |
| 2795 | |
| 2796 | wr32(hw, I40E_QINT_RQCTL(qp), val); |
| 2797 | |
| 2798 | val = I40E_QINT_TQCTL_CAUSE_ENA_MASK | |
| 2799 | (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) | |
| 2800 | (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) | |
| 2801 | ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)| |
| 2802 | (I40E_QUEUE_TYPE_RX |
| 2803 | << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT); |
| 2804 | |
| 2805 | /* Terminate the linked list */ |
| 2806 | if (q == (q_vector->num_ringpairs - 1)) |
| 2807 | val |= (I40E_QUEUE_END_OF_LIST |
| 2808 | << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT); |
| 2809 | |
| 2810 | wr32(hw, I40E_QINT_TQCTL(qp), val); |
| 2811 | qp++; |
| 2812 | } |
| 2813 | } |
| 2814 | |
| 2815 | i40e_flush(hw); |
| 2816 | } |
| 2817 | |
| 2818 | /** |
| 2819 | * i40e_enable_misc_int_causes - enable the non-queue interrupts |
| 2820 | * @hw: ptr to the hardware info |
| 2821 | **/ |
| 2822 | static void i40e_enable_misc_int_causes(struct i40e_hw *hw) |
| 2823 | { |
| 2824 | u32 val; |
| 2825 | |
| 2826 | /* clear things first */ |
| 2827 | wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */ |
| 2828 | rd32(hw, I40E_PFINT_ICR0); /* read to clear */ |
| 2829 | |
| 2830 | val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK | |
| 2831 | I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK | |
| 2832 | I40E_PFINT_ICR0_ENA_GRST_MASK | |
| 2833 | I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK | |
| 2834 | I40E_PFINT_ICR0_ENA_GPIO_MASK | |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 2835 | I40E_PFINT_ICR0_ENA_TIMESYNC_MASK | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2836 | I40E_PFINT_ICR0_ENA_HMC_ERR_MASK | |
| 2837 | I40E_PFINT_ICR0_ENA_VFLR_MASK | |
| 2838 | I40E_PFINT_ICR0_ENA_ADMINQ_MASK; |
| 2839 | |
| 2840 | wr32(hw, I40E_PFINT_ICR0_ENA, val); |
| 2841 | |
| 2842 | /* SW_ITR_IDX = 0, but don't change INTENA */ |
Anjali Singhai Jain | 84ed40e | 2013-11-26 10:49:32 +0000 | [diff] [blame] | 2843 | wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK | |
| 2844 | I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2845 | |
| 2846 | /* OTHER_ITR_IDX = 0 */ |
| 2847 | wr32(hw, I40E_PFINT_STAT_CTL0, 0); |
| 2848 | } |
| 2849 | |
| 2850 | /** |
| 2851 | * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW |
| 2852 | * @vsi: the VSI being configured |
| 2853 | **/ |
| 2854 | static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi) |
| 2855 | { |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 2856 | struct i40e_q_vector *q_vector = vsi->q_vectors[0]; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2857 | struct i40e_pf *pf = vsi->back; |
| 2858 | struct i40e_hw *hw = &pf->hw; |
| 2859 | u32 val; |
| 2860 | |
| 2861 | /* set the ITR configuration */ |
| 2862 | q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting); |
| 2863 | q_vector->rx.latency_range = I40E_LOW_LATENCY; |
| 2864 | wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr); |
| 2865 | q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting); |
| 2866 | q_vector->tx.latency_range = I40E_LOW_LATENCY; |
| 2867 | wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr); |
| 2868 | |
| 2869 | i40e_enable_misc_int_causes(hw); |
| 2870 | |
| 2871 | /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */ |
| 2872 | wr32(hw, I40E_PFINT_LNKLST0, 0); |
| 2873 | |
Jesse Brandeburg | f29eaa3 | 2014-02-11 08:24:12 +0000 | [diff] [blame] | 2874 | /* Associate the queue pair to the vector and enable the queue int */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2875 | val = I40E_QINT_RQCTL_CAUSE_ENA_MASK | |
| 2876 | (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) | |
| 2877 | (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT); |
| 2878 | |
| 2879 | wr32(hw, I40E_QINT_RQCTL(0), val); |
| 2880 | |
| 2881 | val = I40E_QINT_TQCTL_CAUSE_ENA_MASK | |
| 2882 | (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) | |
| 2883 | (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT); |
| 2884 | |
| 2885 | wr32(hw, I40E_QINT_TQCTL(0), val); |
| 2886 | i40e_flush(hw); |
| 2887 | } |
| 2888 | |
| 2889 | /** |
Mitch Williams | 2ef28cf | 2013-11-28 06:39:32 +0000 | [diff] [blame] | 2890 | * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0 |
| 2891 | * @pf: board private structure |
| 2892 | **/ |
| 2893 | void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf) |
| 2894 | { |
| 2895 | struct i40e_hw *hw = &pf->hw; |
| 2896 | |
| 2897 | wr32(hw, I40E_PFINT_DYN_CTL0, |
| 2898 | I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT); |
| 2899 | i40e_flush(hw); |
| 2900 | } |
| 2901 | |
| 2902 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2903 | * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0 |
| 2904 | * @pf: board private structure |
| 2905 | **/ |
Shannon Nelson | 116a57d | 2013-09-28 07:13:59 +0000 | [diff] [blame] | 2906 | void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2907 | { |
| 2908 | struct i40e_hw *hw = &pf->hw; |
| 2909 | u32 val; |
| 2910 | |
| 2911 | val = I40E_PFINT_DYN_CTL0_INTENA_MASK | |
| 2912 | I40E_PFINT_DYN_CTL0_CLEARPBA_MASK | |
| 2913 | (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT); |
| 2914 | |
| 2915 | wr32(hw, I40E_PFINT_DYN_CTL0, val); |
| 2916 | i40e_flush(hw); |
| 2917 | } |
| 2918 | |
| 2919 | /** |
| 2920 | * i40e_irq_dynamic_enable - Enable default interrupt generation settings |
| 2921 | * @vsi: pointer to a vsi |
| 2922 | * @vector: enable a particular Hw Interrupt vector |
| 2923 | **/ |
| 2924 | void i40e_irq_dynamic_enable(struct i40e_vsi *vsi, int vector) |
| 2925 | { |
| 2926 | struct i40e_pf *pf = vsi->back; |
| 2927 | struct i40e_hw *hw = &pf->hw; |
| 2928 | u32 val; |
| 2929 | |
| 2930 | val = I40E_PFINT_DYN_CTLN_INTENA_MASK | |
| 2931 | I40E_PFINT_DYN_CTLN_CLEARPBA_MASK | |
| 2932 | (I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT); |
| 2933 | wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val); |
Jesse Brandeburg | 1022cb6 | 2013-09-28 07:13:08 +0000 | [diff] [blame] | 2934 | /* skip the flush */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2935 | } |
| 2936 | |
| 2937 | /** |
Carolyn Wyborny | 5c2cebd | 2014-06-04 01:23:18 +0000 | [diff] [blame] | 2938 | * i40e_irq_dynamic_disable - Disable default interrupt generation settings |
| 2939 | * @vsi: pointer to a vsi |
| 2940 | * @vector: enable a particular Hw Interrupt vector |
| 2941 | **/ |
| 2942 | void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector) |
| 2943 | { |
| 2944 | struct i40e_pf *pf = vsi->back; |
| 2945 | struct i40e_hw *hw = &pf->hw; |
| 2946 | u32 val; |
| 2947 | |
| 2948 | val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT; |
| 2949 | wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val); |
| 2950 | i40e_flush(hw); |
| 2951 | } |
| 2952 | |
| 2953 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2954 | * i40e_msix_clean_rings - MSIX mode Interrupt Handler |
| 2955 | * @irq: interrupt number |
| 2956 | * @data: pointer to a q_vector |
| 2957 | **/ |
| 2958 | static irqreturn_t i40e_msix_clean_rings(int irq, void *data) |
| 2959 | { |
| 2960 | struct i40e_q_vector *q_vector = data; |
| 2961 | |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 2962 | if (!q_vector->tx.ring && !q_vector->rx.ring) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2963 | return IRQ_HANDLED; |
| 2964 | |
| 2965 | napi_schedule(&q_vector->napi); |
| 2966 | |
| 2967 | return IRQ_HANDLED; |
| 2968 | } |
| 2969 | |
| 2970 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2971 | * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts |
| 2972 | * @vsi: the VSI being configured |
| 2973 | * @basename: name for the vector |
| 2974 | * |
| 2975 | * Allocates MSI-X vectors and requests interrupts from the kernel. |
| 2976 | **/ |
| 2977 | static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename) |
| 2978 | { |
| 2979 | int q_vectors = vsi->num_q_vectors; |
| 2980 | struct i40e_pf *pf = vsi->back; |
| 2981 | int base = vsi->base_vector; |
| 2982 | int rx_int_idx = 0; |
| 2983 | int tx_int_idx = 0; |
| 2984 | int vector, err; |
| 2985 | |
| 2986 | for (vector = 0; vector < q_vectors; vector++) { |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 2987 | struct i40e_q_vector *q_vector = vsi->q_vectors[vector]; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2988 | |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 2989 | if (q_vector->tx.ring && q_vector->rx.ring) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2990 | snprintf(q_vector->name, sizeof(q_vector->name) - 1, |
| 2991 | "%s-%s-%d", basename, "TxRx", rx_int_idx++); |
| 2992 | tx_int_idx++; |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 2993 | } else if (q_vector->rx.ring) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2994 | snprintf(q_vector->name, sizeof(q_vector->name) - 1, |
| 2995 | "%s-%s-%d", basename, "rx", rx_int_idx++); |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 2996 | } else if (q_vector->tx.ring) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 2997 | snprintf(q_vector->name, sizeof(q_vector->name) - 1, |
| 2998 | "%s-%s-%d", basename, "tx", tx_int_idx++); |
| 2999 | } else { |
| 3000 | /* skip this unused q_vector */ |
| 3001 | continue; |
| 3002 | } |
| 3003 | err = request_irq(pf->msix_entries[base + vector].vector, |
| 3004 | vsi->irq_handler, |
| 3005 | 0, |
| 3006 | q_vector->name, |
| 3007 | q_vector); |
| 3008 | if (err) { |
| 3009 | dev_info(&pf->pdev->dev, |
| 3010 | "%s: request_irq failed, error: %d\n", |
| 3011 | __func__, err); |
| 3012 | goto free_queue_irqs; |
| 3013 | } |
| 3014 | /* assign the mask for this irq */ |
| 3015 | irq_set_affinity_hint(pf->msix_entries[base + vector].vector, |
| 3016 | &q_vector->affinity_mask); |
| 3017 | } |
| 3018 | |
Shannon Nelson | 6374184 | 2014-04-23 04:50:16 +0000 | [diff] [blame] | 3019 | vsi->irqs_ready = true; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3020 | return 0; |
| 3021 | |
| 3022 | free_queue_irqs: |
| 3023 | while (vector) { |
| 3024 | vector--; |
| 3025 | irq_set_affinity_hint(pf->msix_entries[base + vector].vector, |
| 3026 | NULL); |
| 3027 | free_irq(pf->msix_entries[base + vector].vector, |
| 3028 | &(vsi->q_vectors[vector])); |
| 3029 | } |
| 3030 | return err; |
| 3031 | } |
| 3032 | |
| 3033 | /** |
| 3034 | * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI |
| 3035 | * @vsi: the VSI being un-configured |
| 3036 | **/ |
| 3037 | static void i40e_vsi_disable_irq(struct i40e_vsi *vsi) |
| 3038 | { |
| 3039 | struct i40e_pf *pf = vsi->back; |
| 3040 | struct i40e_hw *hw = &pf->hw; |
| 3041 | int base = vsi->base_vector; |
| 3042 | int i; |
| 3043 | |
| 3044 | for (i = 0; i < vsi->num_queue_pairs; i++) { |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 3045 | wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0); |
| 3046 | wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3047 | } |
| 3048 | |
| 3049 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) { |
| 3050 | for (i = vsi->base_vector; |
| 3051 | i < (vsi->num_q_vectors + vsi->base_vector); i++) |
| 3052 | wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0); |
| 3053 | |
| 3054 | i40e_flush(hw); |
| 3055 | for (i = 0; i < vsi->num_q_vectors; i++) |
| 3056 | synchronize_irq(pf->msix_entries[i + base].vector); |
| 3057 | } else { |
| 3058 | /* Legacy and MSI mode - this stops all interrupt handling */ |
| 3059 | wr32(hw, I40E_PFINT_ICR0_ENA, 0); |
| 3060 | wr32(hw, I40E_PFINT_DYN_CTL0, 0); |
| 3061 | i40e_flush(hw); |
| 3062 | synchronize_irq(pf->pdev->irq); |
| 3063 | } |
| 3064 | } |
| 3065 | |
| 3066 | /** |
| 3067 | * i40e_vsi_enable_irq - Enable IRQ for the given VSI |
| 3068 | * @vsi: the VSI being configured |
| 3069 | **/ |
| 3070 | static int i40e_vsi_enable_irq(struct i40e_vsi *vsi) |
| 3071 | { |
| 3072 | struct i40e_pf *pf = vsi->back; |
| 3073 | int i; |
| 3074 | |
| 3075 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) { |
| 3076 | for (i = vsi->base_vector; |
| 3077 | i < (vsi->num_q_vectors + vsi->base_vector); i++) |
| 3078 | i40e_irq_dynamic_enable(vsi, i); |
| 3079 | } else { |
| 3080 | i40e_irq_dynamic_enable_icr0(pf); |
| 3081 | } |
| 3082 | |
Jesse Brandeburg | 1022cb6 | 2013-09-28 07:13:08 +0000 | [diff] [blame] | 3083 | i40e_flush(&pf->hw); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3084 | return 0; |
| 3085 | } |
| 3086 | |
| 3087 | /** |
| 3088 | * i40e_stop_misc_vector - Stop the vector that handles non-queue events |
| 3089 | * @pf: board private structure |
| 3090 | **/ |
| 3091 | static void i40e_stop_misc_vector(struct i40e_pf *pf) |
| 3092 | { |
| 3093 | /* Disable ICR 0 */ |
| 3094 | wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0); |
| 3095 | i40e_flush(&pf->hw); |
| 3096 | } |
| 3097 | |
| 3098 | /** |
| 3099 | * i40e_intr - MSI/Legacy and non-queue interrupt handler |
| 3100 | * @irq: interrupt number |
| 3101 | * @data: pointer to a q_vector |
| 3102 | * |
| 3103 | * This is the handler used for all MSI/Legacy interrupts, and deals |
| 3104 | * with both queue and non-queue interrupts. This is also used in |
| 3105 | * MSIX mode to handle the non-queue interrupts. |
| 3106 | **/ |
| 3107 | static irqreturn_t i40e_intr(int irq, void *data) |
| 3108 | { |
| 3109 | struct i40e_pf *pf = (struct i40e_pf *)data; |
| 3110 | struct i40e_hw *hw = &pf->hw; |
Anjali Singhai Jain | 5e823066 | 2013-12-18 13:45:49 +0000 | [diff] [blame] | 3111 | irqreturn_t ret = IRQ_NONE; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3112 | u32 icr0, icr0_remaining; |
| 3113 | u32 val, ena_mask; |
| 3114 | |
| 3115 | icr0 = rd32(hw, I40E_PFINT_ICR0); |
Anjali Singhai Jain | 5e823066 | 2013-12-18 13:45:49 +0000 | [diff] [blame] | 3116 | ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3117 | |
Shannon Nelson | 116a57d | 2013-09-28 07:13:59 +0000 | [diff] [blame] | 3118 | /* if sharing a legacy IRQ, we might get called w/o an intr pending */ |
| 3119 | if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0) |
Anjali Singhai Jain | 5e823066 | 2013-12-18 13:45:49 +0000 | [diff] [blame] | 3120 | goto enable_intr; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3121 | |
Shannon Nelson | cd92e72 | 2013-11-16 10:00:44 +0000 | [diff] [blame] | 3122 | /* if interrupt but no bits showing, must be SWINT */ |
| 3123 | if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) || |
| 3124 | (icr0 & I40E_PFINT_ICR0_SWINT_MASK)) |
| 3125 | pf->sw_int_count++; |
| 3126 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3127 | /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */ |
| 3128 | if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) { |
| 3129 | |
| 3130 | /* temporarily disable queue cause for NAPI processing */ |
| 3131 | u32 qval = rd32(hw, I40E_QINT_RQCTL(0)); |
| 3132 | qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK; |
| 3133 | wr32(hw, I40E_QINT_RQCTL(0), qval); |
| 3134 | |
| 3135 | qval = rd32(hw, I40E_QINT_TQCTL(0)); |
| 3136 | qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK; |
| 3137 | wr32(hw, I40E_QINT_TQCTL(0), qval); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3138 | |
| 3139 | if (!test_bit(__I40E_DOWN, &pf->state)) |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3140 | napi_schedule(&pf->vsi[pf->lan_vsi]->q_vectors[0]->napi); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3141 | } |
| 3142 | |
| 3143 | if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) { |
| 3144 | ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK; |
| 3145 | set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state); |
| 3146 | } |
| 3147 | |
| 3148 | if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) { |
| 3149 | ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK; |
| 3150 | set_bit(__I40E_MDD_EVENT_PENDING, &pf->state); |
| 3151 | } |
| 3152 | |
| 3153 | if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) { |
| 3154 | ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK; |
| 3155 | set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state); |
| 3156 | } |
| 3157 | |
| 3158 | if (icr0 & I40E_PFINT_ICR0_GRST_MASK) { |
| 3159 | if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) |
| 3160 | set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state); |
| 3161 | ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK; |
| 3162 | val = rd32(hw, I40E_GLGEN_RSTAT); |
| 3163 | val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK) |
| 3164 | >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT; |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 3165 | if (val == I40E_RESET_CORER) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3166 | pf->corer_count++; |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 3167 | } else if (val == I40E_RESET_GLOBR) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3168 | pf->globr_count++; |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 3169 | } else if (val == I40E_RESET_EMPR) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3170 | pf->empr_count++; |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 3171 | set_bit(__I40E_EMP_RESET_REQUESTED, &pf->state); |
| 3172 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3173 | } |
| 3174 | |
Anjali Singhai Jain | 9c010ee | 2013-11-28 06:39:20 +0000 | [diff] [blame] | 3175 | if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) { |
| 3176 | icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK; |
| 3177 | dev_info(&pf->pdev->dev, "HMC error interrupt\n"); |
| 3178 | } |
| 3179 | |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 3180 | if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) { |
| 3181 | u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0); |
| 3182 | |
| 3183 | if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) { |
Jacob Keller | cafa1fc | 2014-04-24 18:05:03 -0700 | [diff] [blame] | 3184 | icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK; |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 3185 | i40e_ptp_tx_hwtstamp(pf); |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 3186 | } |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 3187 | } |
| 3188 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3189 | /* If a critical error is pending we have no choice but to reset the |
| 3190 | * device. |
| 3191 | * Report and mask out any remaining unexpected interrupts. |
| 3192 | */ |
| 3193 | icr0_remaining = icr0 & ena_mask; |
| 3194 | if (icr0_remaining) { |
| 3195 | dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n", |
| 3196 | icr0_remaining); |
Anjali Singhai Jain | 9c010ee | 2013-11-28 06:39:20 +0000 | [diff] [blame] | 3197 | if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) || |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3198 | (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) || |
Anjali Singhai Jain | c0c2897 | 2014-02-12 01:45:34 +0000 | [diff] [blame] | 3199 | (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) { |
Anjali Singhai Jain | 9c010ee | 2013-11-28 06:39:20 +0000 | [diff] [blame] | 3200 | dev_info(&pf->pdev->dev, "device will be reset\n"); |
| 3201 | set_bit(__I40E_PF_RESET_REQUESTED, &pf->state); |
| 3202 | i40e_service_event_schedule(pf); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3203 | } |
| 3204 | ena_mask &= ~icr0_remaining; |
| 3205 | } |
Anjali Singhai Jain | 5e823066 | 2013-12-18 13:45:49 +0000 | [diff] [blame] | 3206 | ret = IRQ_HANDLED; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3207 | |
Anjali Singhai Jain | 5e823066 | 2013-12-18 13:45:49 +0000 | [diff] [blame] | 3208 | enable_intr: |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3209 | /* re-enable interrupt causes */ |
| 3210 | wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3211 | if (!test_bit(__I40E_DOWN, &pf->state)) { |
| 3212 | i40e_service_event_schedule(pf); |
| 3213 | i40e_irq_dynamic_enable_icr0(pf); |
| 3214 | } |
| 3215 | |
Anjali Singhai Jain | 5e823066 | 2013-12-18 13:45:49 +0000 | [diff] [blame] | 3216 | return ret; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3217 | } |
| 3218 | |
| 3219 | /** |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 3220 | * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes |
| 3221 | * @tx_ring: tx ring to clean |
| 3222 | * @budget: how many cleans we're allowed |
| 3223 | * |
| 3224 | * Returns true if there's any budget left (e.g. the clean is finished) |
| 3225 | **/ |
| 3226 | static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget) |
| 3227 | { |
| 3228 | struct i40e_vsi *vsi = tx_ring->vsi; |
| 3229 | u16 i = tx_ring->next_to_clean; |
| 3230 | struct i40e_tx_buffer *tx_buf; |
| 3231 | struct i40e_tx_desc *tx_desc; |
| 3232 | |
| 3233 | tx_buf = &tx_ring->tx_bi[i]; |
| 3234 | tx_desc = I40E_TX_DESC(tx_ring, i); |
| 3235 | i -= tx_ring->count; |
| 3236 | |
| 3237 | do { |
| 3238 | struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch; |
| 3239 | |
| 3240 | /* if next_to_watch is not set then there is no work pending */ |
| 3241 | if (!eop_desc) |
| 3242 | break; |
| 3243 | |
| 3244 | /* prevent any other reads prior to eop_desc */ |
| 3245 | read_barrier_depends(); |
| 3246 | |
| 3247 | /* if the descriptor isn't done, no work yet to do */ |
| 3248 | if (!(eop_desc->cmd_type_offset_bsz & |
| 3249 | cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE))) |
| 3250 | break; |
| 3251 | |
| 3252 | /* clear next_to_watch to prevent false hangs */ |
| 3253 | tx_buf->next_to_watch = NULL; |
| 3254 | |
Anjali Singhai Jain | 49d7d93 | 2014-06-04 08:45:15 +0000 | [diff] [blame] | 3255 | tx_desc->buffer_addr = 0; |
| 3256 | tx_desc->cmd_type_offset_bsz = 0; |
| 3257 | /* move past filter desc */ |
| 3258 | tx_buf++; |
| 3259 | tx_desc++; |
| 3260 | i++; |
| 3261 | if (unlikely(!i)) { |
| 3262 | i -= tx_ring->count; |
| 3263 | tx_buf = tx_ring->tx_bi; |
| 3264 | tx_desc = I40E_TX_DESC(tx_ring, 0); |
| 3265 | } |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 3266 | /* unmap skb header data */ |
| 3267 | dma_unmap_single(tx_ring->dev, |
| 3268 | dma_unmap_addr(tx_buf, dma), |
| 3269 | dma_unmap_len(tx_buf, len), |
| 3270 | DMA_TO_DEVICE); |
Anjali Singhai Jain | 49d7d93 | 2014-06-04 08:45:15 +0000 | [diff] [blame] | 3271 | if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB) |
| 3272 | kfree(tx_buf->raw_buf); |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 3273 | |
Anjali Singhai Jain | 49d7d93 | 2014-06-04 08:45:15 +0000 | [diff] [blame] | 3274 | tx_buf->raw_buf = NULL; |
| 3275 | tx_buf->tx_flags = 0; |
| 3276 | tx_buf->next_to_watch = NULL; |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 3277 | dma_unmap_len_set(tx_buf, len, 0); |
Anjali Singhai Jain | 49d7d93 | 2014-06-04 08:45:15 +0000 | [diff] [blame] | 3278 | tx_desc->buffer_addr = 0; |
| 3279 | tx_desc->cmd_type_offset_bsz = 0; |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 3280 | |
Anjali Singhai Jain | 49d7d93 | 2014-06-04 08:45:15 +0000 | [diff] [blame] | 3281 | /* move us past the eop_desc for start of next FD desc */ |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 3282 | tx_buf++; |
| 3283 | tx_desc++; |
| 3284 | i++; |
| 3285 | if (unlikely(!i)) { |
| 3286 | i -= tx_ring->count; |
| 3287 | tx_buf = tx_ring->tx_bi; |
| 3288 | tx_desc = I40E_TX_DESC(tx_ring, 0); |
| 3289 | } |
| 3290 | |
| 3291 | /* update budget accounting */ |
| 3292 | budget--; |
| 3293 | } while (likely(budget)); |
| 3294 | |
| 3295 | i += tx_ring->count; |
| 3296 | tx_ring->next_to_clean = i; |
| 3297 | |
| 3298 | if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) { |
| 3299 | i40e_irq_dynamic_enable(vsi, |
| 3300 | tx_ring->q_vector->v_idx + vsi->base_vector); |
| 3301 | } |
| 3302 | return budget > 0; |
| 3303 | } |
| 3304 | |
| 3305 | /** |
| 3306 | * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring |
| 3307 | * @irq: interrupt number |
| 3308 | * @data: pointer to a q_vector |
| 3309 | **/ |
| 3310 | static irqreturn_t i40e_fdir_clean_ring(int irq, void *data) |
| 3311 | { |
| 3312 | struct i40e_q_vector *q_vector = data; |
| 3313 | struct i40e_vsi *vsi; |
| 3314 | |
| 3315 | if (!q_vector->tx.ring) |
| 3316 | return IRQ_HANDLED; |
| 3317 | |
| 3318 | vsi = q_vector->tx.ring->vsi; |
| 3319 | i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit); |
| 3320 | |
| 3321 | return IRQ_HANDLED; |
| 3322 | } |
| 3323 | |
| 3324 | /** |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 3325 | * i40e_map_vector_to_qp - Assigns the queue pair to the vector |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3326 | * @vsi: the VSI being configured |
| 3327 | * @v_idx: vector index |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 3328 | * @qp_idx: queue pair index |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3329 | **/ |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 3330 | static void map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3331 | { |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3332 | struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx]; |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 3333 | struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx]; |
| 3334 | struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx]; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3335 | |
| 3336 | tx_ring->q_vector = q_vector; |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 3337 | tx_ring->next = q_vector->tx.ring; |
| 3338 | q_vector->tx.ring = tx_ring; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3339 | q_vector->tx.count++; |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 3340 | |
| 3341 | rx_ring->q_vector = q_vector; |
| 3342 | rx_ring->next = q_vector->rx.ring; |
| 3343 | q_vector->rx.ring = rx_ring; |
| 3344 | q_vector->rx.count++; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3345 | } |
| 3346 | |
| 3347 | /** |
| 3348 | * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors |
| 3349 | * @vsi: the VSI being configured |
| 3350 | * |
| 3351 | * This function maps descriptor rings to the queue-specific vectors |
| 3352 | * we were allotted through the MSI-X enabling code. Ideally, we'd have |
| 3353 | * one vector per queue pair, but on a constrained vector budget, we |
| 3354 | * group the queue pairs as "efficiently" as possible. |
| 3355 | **/ |
| 3356 | static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi) |
| 3357 | { |
| 3358 | int qp_remaining = vsi->num_queue_pairs; |
| 3359 | int q_vectors = vsi->num_q_vectors; |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 3360 | int num_ringpairs; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3361 | int v_start = 0; |
| 3362 | int qp_idx = 0; |
| 3363 | |
| 3364 | /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to |
| 3365 | * group them so there are multiple queues per vector. |
Anjali Singhai Jain | 70114ec | 2014-06-03 23:50:14 +0000 | [diff] [blame] | 3366 | * It is also important to go through all the vectors available to be |
| 3367 | * sure that if we don't use all the vectors, that the remaining vectors |
| 3368 | * are cleared. This is especially important when decreasing the |
| 3369 | * number of queues in use. |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3370 | */ |
Anjali Singhai Jain | 70114ec | 2014-06-03 23:50:14 +0000 | [diff] [blame] | 3371 | for (; v_start < q_vectors; v_start++) { |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 3372 | struct i40e_q_vector *q_vector = vsi->q_vectors[v_start]; |
| 3373 | |
| 3374 | num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start); |
| 3375 | |
| 3376 | q_vector->num_ringpairs = num_ringpairs; |
| 3377 | |
| 3378 | q_vector->rx.count = 0; |
| 3379 | q_vector->tx.count = 0; |
| 3380 | q_vector->rx.ring = NULL; |
| 3381 | q_vector->tx.ring = NULL; |
| 3382 | |
| 3383 | while (num_ringpairs--) { |
| 3384 | map_vector_to_qp(vsi, v_start, qp_idx); |
| 3385 | qp_idx++; |
| 3386 | qp_remaining--; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3387 | } |
| 3388 | } |
| 3389 | } |
| 3390 | |
| 3391 | /** |
| 3392 | * i40e_vsi_request_irq - Request IRQ from the OS |
| 3393 | * @vsi: the VSI being configured |
| 3394 | * @basename: name for the vector |
| 3395 | **/ |
| 3396 | static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename) |
| 3397 | { |
| 3398 | struct i40e_pf *pf = vsi->back; |
| 3399 | int err; |
| 3400 | |
| 3401 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) |
| 3402 | err = i40e_vsi_request_irq_msix(vsi, basename); |
| 3403 | else if (pf->flags & I40E_FLAG_MSI_ENABLED) |
| 3404 | err = request_irq(pf->pdev->irq, i40e_intr, 0, |
| 3405 | pf->misc_int_name, pf); |
| 3406 | else |
| 3407 | err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED, |
| 3408 | pf->misc_int_name, pf); |
| 3409 | |
| 3410 | if (err) |
| 3411 | dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err); |
| 3412 | |
| 3413 | return err; |
| 3414 | } |
| 3415 | |
| 3416 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 3417 | /** |
| 3418 | * i40e_netpoll - A Polling 'interrupt'handler |
| 3419 | * @netdev: network interface device structure |
| 3420 | * |
| 3421 | * This is used by netconsole to send skbs without having to re-enable |
| 3422 | * interrupts. It's not called while the normal interrupt routine is executing. |
| 3423 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 3424 | #ifdef I40E_FCOE |
| 3425 | void i40e_netpoll(struct net_device *netdev) |
| 3426 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3427 | static void i40e_netpoll(struct net_device *netdev) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 3428 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3429 | { |
| 3430 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 3431 | struct i40e_vsi *vsi = np->vsi; |
| 3432 | struct i40e_pf *pf = vsi->back; |
| 3433 | int i; |
| 3434 | |
| 3435 | /* if interface is down do nothing */ |
| 3436 | if (test_bit(__I40E_DOWN, &vsi->state)) |
| 3437 | return; |
| 3438 | |
| 3439 | pf->flags |= I40E_FLAG_IN_NETPOLL; |
| 3440 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) { |
| 3441 | for (i = 0; i < vsi->num_q_vectors; i++) |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3442 | i40e_msix_clean_rings(0, vsi->q_vectors[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3443 | } else { |
| 3444 | i40e_intr(pf->pdev->irq, netdev); |
| 3445 | } |
| 3446 | pf->flags &= ~I40E_FLAG_IN_NETPOLL; |
| 3447 | } |
| 3448 | #endif |
| 3449 | |
| 3450 | /** |
Neerav Parikh | 2352730 | 2014-06-03 23:50:15 +0000 | [diff] [blame] | 3451 | * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled |
| 3452 | * @pf: the PF being configured |
| 3453 | * @pf_q: the PF queue |
| 3454 | * @enable: enable or disable state of the queue |
| 3455 | * |
| 3456 | * This routine will wait for the given Tx queue of the PF to reach the |
| 3457 | * enabled or disabled state. |
| 3458 | * Returns -ETIMEDOUT in case of failing to reach the requested state after |
| 3459 | * multiple retries; else will return 0 in case of success. |
| 3460 | **/ |
| 3461 | static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable) |
| 3462 | { |
| 3463 | int i; |
| 3464 | u32 tx_reg; |
| 3465 | |
| 3466 | for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) { |
| 3467 | tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q)); |
| 3468 | if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK)) |
| 3469 | break; |
| 3470 | |
Neerav Parikh | f98a200 | 2014-09-13 07:40:44 +0000 | [diff] [blame] | 3471 | usleep_range(10, 20); |
Neerav Parikh | 2352730 | 2014-06-03 23:50:15 +0000 | [diff] [blame] | 3472 | } |
| 3473 | if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT) |
| 3474 | return -ETIMEDOUT; |
| 3475 | |
| 3476 | return 0; |
| 3477 | } |
| 3478 | |
| 3479 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3480 | * i40e_vsi_control_tx - Start or stop a VSI's rings |
| 3481 | * @vsi: the VSI being configured |
| 3482 | * @enable: start or stop the rings |
| 3483 | **/ |
| 3484 | static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable) |
| 3485 | { |
| 3486 | struct i40e_pf *pf = vsi->back; |
| 3487 | struct i40e_hw *hw = &pf->hw; |
Neerav Parikh | 2352730 | 2014-06-03 23:50:15 +0000 | [diff] [blame] | 3488 | int i, j, pf_q, ret = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3489 | u32 tx_reg; |
| 3490 | |
| 3491 | pf_q = vsi->base_queue; |
| 3492 | for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) { |
Matt Jared | 351499ab | 2014-04-23 04:50:03 +0000 | [diff] [blame] | 3493 | |
| 3494 | /* warn the TX unit of coming changes */ |
| 3495 | i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable); |
| 3496 | if (!enable) |
Neerav Parikh | f98a200 | 2014-09-13 07:40:44 +0000 | [diff] [blame] | 3497 | usleep_range(10, 20); |
Matt Jared | 351499ab | 2014-04-23 04:50:03 +0000 | [diff] [blame] | 3498 | |
Mitch Williams | 6c5ef62 | 2014-02-20 19:29:16 -0800 | [diff] [blame] | 3499 | for (j = 0; j < 50; j++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3500 | tx_reg = rd32(hw, I40E_QTX_ENA(pf_q)); |
Mitch Williams | 6c5ef62 | 2014-02-20 19:29:16 -0800 | [diff] [blame] | 3501 | if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) == |
| 3502 | ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1)) |
| 3503 | break; |
| 3504 | usleep_range(1000, 2000); |
| 3505 | } |
Mitch Williams | fda972f | 2013-11-28 06:39:29 +0000 | [diff] [blame] | 3506 | /* Skip if the queue is already in the requested state */ |
Catherine Sullivan | 7c122007 | 2014-03-14 07:32:29 +0000 | [diff] [blame] | 3507 | if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK)) |
Mitch Williams | fda972f | 2013-11-28 06:39:29 +0000 | [diff] [blame] | 3508 | continue; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3509 | |
| 3510 | /* turn on/off the queue */ |
Shannon Nelson | c5c9eb9 | 2013-12-21 05:44:48 +0000 | [diff] [blame] | 3511 | if (enable) { |
| 3512 | wr32(hw, I40E_QTX_HEAD(pf_q), 0); |
Mitch Williams | 6c5ef62 | 2014-02-20 19:29:16 -0800 | [diff] [blame] | 3513 | tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK; |
Shannon Nelson | c5c9eb9 | 2013-12-21 05:44:48 +0000 | [diff] [blame] | 3514 | } else { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3515 | tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK; |
Shannon Nelson | c5c9eb9 | 2013-12-21 05:44:48 +0000 | [diff] [blame] | 3516 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3517 | |
| 3518 | wr32(hw, I40E_QTX_ENA(pf_q), tx_reg); |
Neerav Parikh | 69129dc | 2014-11-12 00:18:46 +0000 | [diff] [blame] | 3519 | /* No waiting for the Tx queue to disable */ |
| 3520 | if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state)) |
| 3521 | continue; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3522 | |
| 3523 | /* wait for the change to finish */ |
Neerav Parikh | 2352730 | 2014-06-03 23:50:15 +0000 | [diff] [blame] | 3524 | ret = i40e_pf_txq_wait(pf, pf_q, enable); |
| 3525 | if (ret) { |
| 3526 | dev_info(&pf->pdev->dev, |
| 3527 | "%s: VSI seid %d Tx ring %d %sable timeout\n", |
| 3528 | __func__, vsi->seid, pf_q, |
| 3529 | (enable ? "en" : "dis")); |
| 3530 | break; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3531 | } |
| 3532 | } |
| 3533 | |
Jesse Brandeburg | 7134f9c | 2013-11-26 08:56:05 +0000 | [diff] [blame] | 3534 | if (hw->revision_id == 0) |
| 3535 | mdelay(50); |
Neerav Parikh | 2352730 | 2014-06-03 23:50:15 +0000 | [diff] [blame] | 3536 | return ret; |
| 3537 | } |
| 3538 | |
| 3539 | /** |
| 3540 | * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled |
| 3541 | * @pf: the PF being configured |
| 3542 | * @pf_q: the PF queue |
| 3543 | * @enable: enable or disable state of the queue |
| 3544 | * |
| 3545 | * This routine will wait for the given Rx queue of the PF to reach the |
| 3546 | * enabled or disabled state. |
| 3547 | * Returns -ETIMEDOUT in case of failing to reach the requested state after |
| 3548 | * multiple retries; else will return 0 in case of success. |
| 3549 | **/ |
| 3550 | static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable) |
| 3551 | { |
| 3552 | int i; |
| 3553 | u32 rx_reg; |
| 3554 | |
| 3555 | for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) { |
| 3556 | rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q)); |
| 3557 | if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK)) |
| 3558 | break; |
| 3559 | |
Neerav Parikh | f98a200 | 2014-09-13 07:40:44 +0000 | [diff] [blame] | 3560 | usleep_range(10, 20); |
Neerav Parikh | 2352730 | 2014-06-03 23:50:15 +0000 | [diff] [blame] | 3561 | } |
| 3562 | if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT) |
| 3563 | return -ETIMEDOUT; |
Jesse Brandeburg | 7134f9c | 2013-11-26 08:56:05 +0000 | [diff] [blame] | 3564 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3565 | return 0; |
| 3566 | } |
| 3567 | |
| 3568 | /** |
| 3569 | * i40e_vsi_control_rx - Start or stop a VSI's rings |
| 3570 | * @vsi: the VSI being configured |
| 3571 | * @enable: start or stop the rings |
| 3572 | **/ |
| 3573 | static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable) |
| 3574 | { |
| 3575 | struct i40e_pf *pf = vsi->back; |
| 3576 | struct i40e_hw *hw = &pf->hw; |
Neerav Parikh | 2352730 | 2014-06-03 23:50:15 +0000 | [diff] [blame] | 3577 | int i, j, pf_q, ret = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3578 | u32 rx_reg; |
| 3579 | |
| 3580 | pf_q = vsi->base_queue; |
| 3581 | for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) { |
Mitch Williams | 6c5ef62 | 2014-02-20 19:29:16 -0800 | [diff] [blame] | 3582 | for (j = 0; j < 50; j++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3583 | rx_reg = rd32(hw, I40E_QRX_ENA(pf_q)); |
Mitch Williams | 6c5ef62 | 2014-02-20 19:29:16 -0800 | [diff] [blame] | 3584 | if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) == |
| 3585 | ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1)) |
| 3586 | break; |
| 3587 | usleep_range(1000, 2000); |
| 3588 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3589 | |
Catherine Sullivan | 7c122007 | 2014-03-14 07:32:29 +0000 | [diff] [blame] | 3590 | /* Skip if the queue is already in the requested state */ |
| 3591 | if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK)) |
| 3592 | continue; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3593 | |
| 3594 | /* turn on/off the queue */ |
| 3595 | if (enable) |
Mitch Williams | 6c5ef62 | 2014-02-20 19:29:16 -0800 | [diff] [blame] | 3596 | rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3597 | else |
Mitch Williams | 6c5ef62 | 2014-02-20 19:29:16 -0800 | [diff] [blame] | 3598 | rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3599 | wr32(hw, I40E_QRX_ENA(pf_q), rx_reg); |
| 3600 | |
| 3601 | /* wait for the change to finish */ |
Neerav Parikh | 2352730 | 2014-06-03 23:50:15 +0000 | [diff] [blame] | 3602 | ret = i40e_pf_rxq_wait(pf, pf_q, enable); |
| 3603 | if (ret) { |
| 3604 | dev_info(&pf->pdev->dev, |
| 3605 | "%s: VSI seid %d Rx ring %d %sable timeout\n", |
| 3606 | __func__, vsi->seid, pf_q, |
| 3607 | (enable ? "en" : "dis")); |
| 3608 | break; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3609 | } |
| 3610 | } |
| 3611 | |
Neerav Parikh | 2352730 | 2014-06-03 23:50:15 +0000 | [diff] [blame] | 3612 | return ret; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3613 | } |
| 3614 | |
| 3615 | /** |
| 3616 | * i40e_vsi_control_rings - Start or stop a VSI's rings |
| 3617 | * @vsi: the VSI being configured |
| 3618 | * @enable: start or stop the rings |
| 3619 | **/ |
Mitch Williams | fc18eaa | 2013-11-28 06:39:27 +0000 | [diff] [blame] | 3620 | int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3621 | { |
Anjali Singhai Jain | 3b867b2 | 2013-12-21 05:44:44 +0000 | [diff] [blame] | 3622 | int ret = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3623 | |
| 3624 | /* do rx first for enable and last for disable */ |
| 3625 | if (request) { |
| 3626 | ret = i40e_vsi_control_rx(vsi, request); |
| 3627 | if (ret) |
| 3628 | return ret; |
| 3629 | ret = i40e_vsi_control_tx(vsi, request); |
| 3630 | } else { |
Anjali Singhai Jain | 3b867b2 | 2013-12-21 05:44:44 +0000 | [diff] [blame] | 3631 | /* Ignore return value, we need to shutdown whatever we can */ |
| 3632 | i40e_vsi_control_tx(vsi, request); |
| 3633 | i40e_vsi_control_rx(vsi, request); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3634 | } |
| 3635 | |
| 3636 | return ret; |
| 3637 | } |
| 3638 | |
| 3639 | /** |
| 3640 | * i40e_vsi_free_irq - Free the irq association with the OS |
| 3641 | * @vsi: the VSI being configured |
| 3642 | **/ |
| 3643 | static void i40e_vsi_free_irq(struct i40e_vsi *vsi) |
| 3644 | { |
| 3645 | struct i40e_pf *pf = vsi->back; |
| 3646 | struct i40e_hw *hw = &pf->hw; |
| 3647 | int base = vsi->base_vector; |
| 3648 | u32 val, qp; |
| 3649 | int i; |
| 3650 | |
| 3651 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) { |
| 3652 | if (!vsi->q_vectors) |
| 3653 | return; |
| 3654 | |
Shannon Nelson | 6374184 | 2014-04-23 04:50:16 +0000 | [diff] [blame] | 3655 | if (!vsi->irqs_ready) |
| 3656 | return; |
| 3657 | |
| 3658 | vsi->irqs_ready = false; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3659 | for (i = 0; i < vsi->num_q_vectors; i++) { |
| 3660 | u16 vector = i + base; |
| 3661 | |
| 3662 | /* free only the irqs that were actually requested */ |
Shannon Nelson | 78681b1 | 2013-11-28 06:39:36 +0000 | [diff] [blame] | 3663 | if (!vsi->q_vectors[i] || |
| 3664 | !vsi->q_vectors[i]->num_ringpairs) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3665 | continue; |
| 3666 | |
| 3667 | /* clear the affinity_mask in the IRQ descriptor */ |
| 3668 | irq_set_affinity_hint(pf->msix_entries[vector].vector, |
| 3669 | NULL); |
| 3670 | free_irq(pf->msix_entries[vector].vector, |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3671 | vsi->q_vectors[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3672 | |
| 3673 | /* Tear down the interrupt queue link list |
| 3674 | * |
| 3675 | * We know that they come in pairs and always |
| 3676 | * the Rx first, then the Tx. To clear the |
| 3677 | * link list, stick the EOL value into the |
| 3678 | * next_q field of the registers. |
| 3679 | */ |
| 3680 | val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1)); |
| 3681 | qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK) |
| 3682 | >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT; |
| 3683 | val |= I40E_QUEUE_END_OF_LIST |
| 3684 | << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT; |
| 3685 | wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val); |
| 3686 | |
| 3687 | while (qp != I40E_QUEUE_END_OF_LIST) { |
| 3688 | u32 next; |
| 3689 | |
| 3690 | val = rd32(hw, I40E_QINT_RQCTL(qp)); |
| 3691 | |
| 3692 | val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK | |
| 3693 | I40E_QINT_RQCTL_MSIX0_INDX_MASK | |
| 3694 | I40E_QINT_RQCTL_CAUSE_ENA_MASK | |
| 3695 | I40E_QINT_RQCTL_INTEVENT_MASK); |
| 3696 | |
| 3697 | val |= (I40E_QINT_RQCTL_ITR_INDX_MASK | |
| 3698 | I40E_QINT_RQCTL_NEXTQ_INDX_MASK); |
| 3699 | |
| 3700 | wr32(hw, I40E_QINT_RQCTL(qp), val); |
| 3701 | |
| 3702 | val = rd32(hw, I40E_QINT_TQCTL(qp)); |
| 3703 | |
| 3704 | next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK) |
| 3705 | >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT; |
| 3706 | |
| 3707 | val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK | |
| 3708 | I40E_QINT_TQCTL_MSIX0_INDX_MASK | |
| 3709 | I40E_QINT_TQCTL_CAUSE_ENA_MASK | |
| 3710 | I40E_QINT_TQCTL_INTEVENT_MASK); |
| 3711 | |
| 3712 | val |= (I40E_QINT_TQCTL_ITR_INDX_MASK | |
| 3713 | I40E_QINT_TQCTL_NEXTQ_INDX_MASK); |
| 3714 | |
| 3715 | wr32(hw, I40E_QINT_TQCTL(qp), val); |
| 3716 | qp = next; |
| 3717 | } |
| 3718 | } |
| 3719 | } else { |
| 3720 | free_irq(pf->pdev->irq, pf); |
| 3721 | |
| 3722 | val = rd32(hw, I40E_PFINT_LNKLST0); |
| 3723 | qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK) |
| 3724 | >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT; |
| 3725 | val |= I40E_QUEUE_END_OF_LIST |
| 3726 | << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT; |
| 3727 | wr32(hw, I40E_PFINT_LNKLST0, val); |
| 3728 | |
| 3729 | val = rd32(hw, I40E_QINT_RQCTL(qp)); |
| 3730 | val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK | |
| 3731 | I40E_QINT_RQCTL_MSIX0_INDX_MASK | |
| 3732 | I40E_QINT_RQCTL_CAUSE_ENA_MASK | |
| 3733 | I40E_QINT_RQCTL_INTEVENT_MASK); |
| 3734 | |
| 3735 | val |= (I40E_QINT_RQCTL_ITR_INDX_MASK | |
| 3736 | I40E_QINT_RQCTL_NEXTQ_INDX_MASK); |
| 3737 | |
| 3738 | wr32(hw, I40E_QINT_RQCTL(qp), val); |
| 3739 | |
| 3740 | val = rd32(hw, I40E_QINT_TQCTL(qp)); |
| 3741 | |
| 3742 | val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK | |
| 3743 | I40E_QINT_TQCTL_MSIX0_INDX_MASK | |
| 3744 | I40E_QINT_TQCTL_CAUSE_ENA_MASK | |
| 3745 | I40E_QINT_TQCTL_INTEVENT_MASK); |
| 3746 | |
| 3747 | val |= (I40E_QINT_TQCTL_ITR_INDX_MASK | |
| 3748 | I40E_QINT_TQCTL_NEXTQ_INDX_MASK); |
| 3749 | |
| 3750 | wr32(hw, I40E_QINT_TQCTL(qp), val); |
| 3751 | } |
| 3752 | } |
| 3753 | |
| 3754 | /** |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3755 | * i40e_free_q_vector - Free memory allocated for specific interrupt vector |
| 3756 | * @vsi: the VSI being configured |
| 3757 | * @v_idx: Index of vector to be freed |
| 3758 | * |
| 3759 | * This function frees the memory allocated to the q_vector. In addition if |
| 3760 | * NAPI is enabled it will delete any references to the NAPI struct prior |
| 3761 | * to freeing the q_vector. |
| 3762 | **/ |
| 3763 | static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx) |
| 3764 | { |
| 3765 | struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx]; |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 3766 | struct i40e_ring *ring; |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3767 | |
| 3768 | if (!q_vector) |
| 3769 | return; |
| 3770 | |
| 3771 | /* disassociate q_vector from rings */ |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 3772 | i40e_for_each_ring(ring, q_vector->tx) |
| 3773 | ring->q_vector = NULL; |
| 3774 | |
| 3775 | i40e_for_each_ring(ring, q_vector->rx) |
| 3776 | ring->q_vector = NULL; |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3777 | |
| 3778 | /* only VSI w/ an associated netdev is set up w/ NAPI */ |
| 3779 | if (vsi->netdev) |
| 3780 | netif_napi_del(&q_vector->napi); |
| 3781 | |
| 3782 | vsi->q_vectors[v_idx] = NULL; |
| 3783 | |
| 3784 | kfree_rcu(q_vector, rcu); |
| 3785 | } |
| 3786 | |
| 3787 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3788 | * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors |
| 3789 | * @vsi: the VSI being un-configured |
| 3790 | * |
| 3791 | * This frees the memory allocated to the q_vectors and |
| 3792 | * deletes references to the NAPI struct. |
| 3793 | **/ |
| 3794 | static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi) |
| 3795 | { |
| 3796 | int v_idx; |
| 3797 | |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3798 | for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++) |
| 3799 | i40e_free_q_vector(vsi, v_idx); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3800 | } |
| 3801 | |
| 3802 | /** |
| 3803 | * i40e_reset_interrupt_capability - Disable interrupt setup in OS |
| 3804 | * @pf: board private structure |
| 3805 | **/ |
| 3806 | static void i40e_reset_interrupt_capability(struct i40e_pf *pf) |
| 3807 | { |
| 3808 | /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */ |
| 3809 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) { |
| 3810 | pci_disable_msix(pf->pdev); |
| 3811 | kfree(pf->msix_entries); |
| 3812 | pf->msix_entries = NULL; |
| 3813 | } else if (pf->flags & I40E_FLAG_MSI_ENABLED) { |
| 3814 | pci_disable_msi(pf->pdev); |
| 3815 | } |
| 3816 | pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED); |
| 3817 | } |
| 3818 | |
| 3819 | /** |
| 3820 | * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings |
| 3821 | * @pf: board private structure |
| 3822 | * |
| 3823 | * We go through and clear interrupt specific resources and reset the structure |
| 3824 | * to pre-load conditions |
| 3825 | **/ |
| 3826 | static void i40e_clear_interrupt_scheme(struct i40e_pf *pf) |
| 3827 | { |
| 3828 | int i; |
| 3829 | |
| 3830 | i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1); |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 3831 | for (i = 0; i < pf->num_alloc_vsi; i++) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3832 | if (pf->vsi[i]) |
| 3833 | i40e_vsi_free_q_vectors(pf->vsi[i]); |
| 3834 | i40e_reset_interrupt_capability(pf); |
| 3835 | } |
| 3836 | |
| 3837 | /** |
| 3838 | * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI |
| 3839 | * @vsi: the VSI being configured |
| 3840 | **/ |
| 3841 | static void i40e_napi_enable_all(struct i40e_vsi *vsi) |
| 3842 | { |
| 3843 | int q_idx; |
| 3844 | |
| 3845 | if (!vsi->netdev) |
| 3846 | return; |
| 3847 | |
| 3848 | for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++) |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3849 | napi_enable(&vsi->q_vectors[q_idx]->napi); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3850 | } |
| 3851 | |
| 3852 | /** |
| 3853 | * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI |
| 3854 | * @vsi: the VSI being configured |
| 3855 | **/ |
| 3856 | static void i40e_napi_disable_all(struct i40e_vsi *vsi) |
| 3857 | { |
| 3858 | int q_idx; |
| 3859 | |
| 3860 | if (!vsi->netdev) |
| 3861 | return; |
| 3862 | |
| 3863 | for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++) |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 3864 | napi_disable(&vsi->q_vectors[q_idx]->napi); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3865 | } |
| 3866 | |
| 3867 | /** |
Shannon Nelson | 90ef8d4 | 2014-03-14 07:32:26 +0000 | [diff] [blame] | 3868 | * i40e_vsi_close - Shut down a VSI |
| 3869 | * @vsi: the vsi to be quelled |
| 3870 | **/ |
| 3871 | static void i40e_vsi_close(struct i40e_vsi *vsi) |
| 3872 | { |
| 3873 | if (!test_and_set_bit(__I40E_DOWN, &vsi->state)) |
| 3874 | i40e_down(vsi); |
| 3875 | i40e_vsi_free_irq(vsi); |
| 3876 | i40e_vsi_free_tx_resources(vsi); |
| 3877 | i40e_vsi_free_rx_resources(vsi); |
| 3878 | } |
| 3879 | |
| 3880 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3881 | * i40e_quiesce_vsi - Pause a given VSI |
| 3882 | * @vsi: the VSI being paused |
| 3883 | **/ |
| 3884 | static void i40e_quiesce_vsi(struct i40e_vsi *vsi) |
| 3885 | { |
| 3886 | if (test_bit(__I40E_DOWN, &vsi->state)) |
| 3887 | return; |
| 3888 | |
Neerav Parikh | d341b7a | 2014-11-12 00:18:51 +0000 | [diff] [blame] | 3889 | /* No need to disable FCoE VSI when Tx suspended */ |
| 3890 | if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) && |
| 3891 | vsi->type == I40E_VSI_FCOE) { |
| 3892 | dev_dbg(&vsi->back->pdev->dev, |
| 3893 | "%s: VSI seid %d skipping FCoE VSI disable\n", |
| 3894 | __func__, vsi->seid); |
| 3895 | return; |
| 3896 | } |
| 3897 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3898 | set_bit(__I40E_NEEDS_RESTART, &vsi->state); |
| 3899 | if (vsi->netdev && netif_running(vsi->netdev)) { |
| 3900 | vsi->netdev->netdev_ops->ndo_stop(vsi->netdev); |
| 3901 | } else { |
Shannon Nelson | 90ef8d4 | 2014-03-14 07:32:26 +0000 | [diff] [blame] | 3902 | i40e_vsi_close(vsi); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3903 | } |
| 3904 | } |
| 3905 | |
| 3906 | /** |
| 3907 | * i40e_unquiesce_vsi - Resume a given VSI |
| 3908 | * @vsi: the VSI being resumed |
| 3909 | **/ |
| 3910 | static void i40e_unquiesce_vsi(struct i40e_vsi *vsi) |
| 3911 | { |
| 3912 | if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state)) |
| 3913 | return; |
| 3914 | |
| 3915 | clear_bit(__I40E_NEEDS_RESTART, &vsi->state); |
| 3916 | if (vsi->netdev && netif_running(vsi->netdev)) |
| 3917 | vsi->netdev->netdev_ops->ndo_open(vsi->netdev); |
| 3918 | else |
Shannon Nelson | 8276f75 | 2014-03-14 07:32:27 +0000 | [diff] [blame] | 3919 | i40e_vsi_open(vsi); /* this clears the DOWN bit */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3920 | } |
| 3921 | |
| 3922 | /** |
| 3923 | * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF |
| 3924 | * @pf: the PF |
| 3925 | **/ |
| 3926 | static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf) |
| 3927 | { |
| 3928 | int v; |
| 3929 | |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 3930 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3931 | if (pf->vsi[v]) |
| 3932 | i40e_quiesce_vsi(pf->vsi[v]); |
| 3933 | } |
| 3934 | } |
| 3935 | |
| 3936 | /** |
| 3937 | * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF |
| 3938 | * @pf: the PF |
| 3939 | **/ |
| 3940 | static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf) |
| 3941 | { |
| 3942 | int v; |
| 3943 | |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 3944 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 3945 | if (pf->vsi[v]) |
| 3946 | i40e_unquiesce_vsi(pf->vsi[v]); |
| 3947 | } |
| 3948 | } |
| 3949 | |
Neerav Parikh | 69129dc | 2014-11-12 00:18:46 +0000 | [diff] [blame] | 3950 | #ifdef CONFIG_I40E_DCB |
| 3951 | /** |
| 3952 | * i40e_vsi_wait_txq_disabled - Wait for VSI's queues to be disabled |
| 3953 | * @vsi: the VSI being configured |
| 3954 | * |
| 3955 | * This function waits for the given VSI's Tx queues to be disabled. |
| 3956 | **/ |
| 3957 | static int i40e_vsi_wait_txq_disabled(struct i40e_vsi *vsi) |
| 3958 | { |
| 3959 | struct i40e_pf *pf = vsi->back; |
| 3960 | int i, pf_q, ret; |
| 3961 | |
| 3962 | pf_q = vsi->base_queue; |
| 3963 | for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) { |
| 3964 | /* Check and wait for the disable status of the queue */ |
| 3965 | ret = i40e_pf_txq_wait(pf, pf_q, false); |
| 3966 | if (ret) { |
| 3967 | dev_info(&pf->pdev->dev, |
| 3968 | "%s: VSI seid %d Tx ring %d disable timeout\n", |
| 3969 | __func__, vsi->seid, pf_q); |
| 3970 | return ret; |
| 3971 | } |
| 3972 | } |
| 3973 | |
| 3974 | return 0; |
| 3975 | } |
| 3976 | |
| 3977 | /** |
| 3978 | * i40e_pf_wait_txq_disabled - Wait for all queues of PF VSIs to be disabled |
| 3979 | * @pf: the PF |
| 3980 | * |
| 3981 | * This function waits for the Tx queues to be in disabled state for all the |
| 3982 | * VSIs that are managed by this PF. |
| 3983 | **/ |
| 3984 | static int i40e_pf_wait_txq_disabled(struct i40e_pf *pf) |
| 3985 | { |
| 3986 | int v, ret = 0; |
| 3987 | |
| 3988 | for (v = 0; v < pf->hw.func_caps.num_vsis; v++) { |
Neerav Parikh | d341b7a | 2014-11-12 00:18:51 +0000 | [diff] [blame] | 3989 | /* No need to wait for FCoE VSI queues */ |
| 3990 | if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) { |
Neerav Parikh | 69129dc | 2014-11-12 00:18:46 +0000 | [diff] [blame] | 3991 | ret = i40e_vsi_wait_txq_disabled(pf->vsi[v]); |
| 3992 | if (ret) |
| 3993 | break; |
| 3994 | } |
| 3995 | } |
| 3996 | |
| 3997 | return ret; |
| 3998 | } |
| 3999 | |
| 4000 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4001 | /** |
| 4002 | * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config |
| 4003 | * @dcbcfg: the corresponding DCBx configuration structure |
| 4004 | * |
| 4005 | * Return the number of TCs from given DCBx configuration |
| 4006 | **/ |
| 4007 | static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg) |
| 4008 | { |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 4009 | u8 num_tc = 0; |
| 4010 | int i; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4011 | |
| 4012 | /* Scan the ETS Config Priority Table to find |
| 4013 | * traffic class enabled for a given priority |
| 4014 | * and use the traffic class index to get the |
| 4015 | * number of traffic classes enabled |
| 4016 | */ |
| 4017 | for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) { |
| 4018 | if (dcbcfg->etscfg.prioritytable[i] > num_tc) |
| 4019 | num_tc = dcbcfg->etscfg.prioritytable[i]; |
| 4020 | } |
| 4021 | |
| 4022 | /* Traffic class index starts from zero so |
| 4023 | * increment to return the actual count |
| 4024 | */ |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 4025 | return num_tc + 1; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4026 | } |
| 4027 | |
| 4028 | /** |
| 4029 | * i40e_dcb_get_enabled_tc - Get enabled traffic classes |
| 4030 | * @dcbcfg: the corresponding DCBx configuration structure |
| 4031 | * |
| 4032 | * Query the current DCB configuration and return the number of |
| 4033 | * traffic classes enabled from the given DCBX config |
| 4034 | **/ |
| 4035 | static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg) |
| 4036 | { |
| 4037 | u8 num_tc = i40e_dcb_get_num_tc(dcbcfg); |
| 4038 | u8 enabled_tc = 1; |
| 4039 | u8 i; |
| 4040 | |
| 4041 | for (i = 0; i < num_tc; i++) |
| 4042 | enabled_tc |= 1 << i; |
| 4043 | |
| 4044 | return enabled_tc; |
| 4045 | } |
| 4046 | |
| 4047 | /** |
| 4048 | * i40e_pf_get_num_tc - Get enabled traffic classes for PF |
| 4049 | * @pf: PF being queried |
| 4050 | * |
| 4051 | * Return number of traffic classes enabled for the given PF |
| 4052 | **/ |
| 4053 | static u8 i40e_pf_get_num_tc(struct i40e_pf *pf) |
| 4054 | { |
| 4055 | struct i40e_hw *hw = &pf->hw; |
| 4056 | u8 i, enabled_tc; |
| 4057 | u8 num_tc = 0; |
| 4058 | struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config; |
| 4059 | |
| 4060 | /* If DCB is not enabled then always in single TC */ |
| 4061 | if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) |
| 4062 | return 1; |
| 4063 | |
| 4064 | /* MFP mode return count of enabled TCs for this PF */ |
| 4065 | if (pf->flags & I40E_FLAG_MFP_ENABLED) { |
| 4066 | enabled_tc = pf->hw.func_caps.enabled_tcmap; |
| 4067 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { |
| 4068 | if (enabled_tc & (1 << i)) |
| 4069 | num_tc++; |
| 4070 | } |
| 4071 | return num_tc; |
| 4072 | } |
| 4073 | |
| 4074 | /* SFP mode will be enabled for all TCs on port */ |
| 4075 | return i40e_dcb_get_num_tc(dcbcfg); |
| 4076 | } |
| 4077 | |
| 4078 | /** |
| 4079 | * i40e_pf_get_default_tc - Get bitmap for first enabled TC |
| 4080 | * @pf: PF being queried |
| 4081 | * |
| 4082 | * Return a bitmap for first enabled traffic class for this PF. |
| 4083 | **/ |
| 4084 | static u8 i40e_pf_get_default_tc(struct i40e_pf *pf) |
| 4085 | { |
| 4086 | u8 enabled_tc = pf->hw.func_caps.enabled_tcmap; |
| 4087 | u8 i = 0; |
| 4088 | |
| 4089 | if (!enabled_tc) |
| 4090 | return 0x1; /* TC0 */ |
| 4091 | |
| 4092 | /* Find the first enabled TC */ |
| 4093 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { |
| 4094 | if (enabled_tc & (1 << i)) |
| 4095 | break; |
| 4096 | } |
| 4097 | |
| 4098 | return 1 << i; |
| 4099 | } |
| 4100 | |
| 4101 | /** |
| 4102 | * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes |
| 4103 | * @pf: PF being queried |
| 4104 | * |
| 4105 | * Return a bitmap for enabled traffic classes for this PF. |
| 4106 | **/ |
| 4107 | static u8 i40e_pf_get_tc_map(struct i40e_pf *pf) |
| 4108 | { |
| 4109 | /* If DCB is not enabled for this PF then just return default TC */ |
| 4110 | if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) |
| 4111 | return i40e_pf_get_default_tc(pf); |
| 4112 | |
| 4113 | /* MFP mode will have enabled TCs set by FW */ |
| 4114 | if (pf->flags & I40E_FLAG_MFP_ENABLED) |
| 4115 | return pf->hw.func_caps.enabled_tcmap; |
| 4116 | |
| 4117 | /* SFP mode we want PF to be enabled for all TCs */ |
| 4118 | return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config); |
| 4119 | } |
| 4120 | |
| 4121 | /** |
| 4122 | * i40e_vsi_get_bw_info - Query VSI BW Information |
| 4123 | * @vsi: the VSI being queried |
| 4124 | * |
| 4125 | * Returns 0 on success, negative value on failure |
| 4126 | **/ |
| 4127 | static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi) |
| 4128 | { |
| 4129 | struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0}; |
| 4130 | struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0}; |
| 4131 | struct i40e_pf *pf = vsi->back; |
| 4132 | struct i40e_hw *hw = &pf->hw; |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4133 | i40e_status aq_ret; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4134 | u32 tc_bw_max; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4135 | int i; |
| 4136 | |
| 4137 | /* Get the VSI level BW configuration */ |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4138 | aq_ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL); |
| 4139 | if (aq_ret) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4140 | dev_info(&pf->pdev->dev, |
| 4141 | "couldn't get pf vsi bw config, err %d, aq_err %d\n", |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4142 | aq_ret, pf->hw.aq.asq_last_status); |
| 4143 | return -EINVAL; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4144 | } |
| 4145 | |
| 4146 | /* Get the VSI level BW configuration per TC */ |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4147 | aq_ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config, |
Jesse Brandeburg | 6838b53 | 2014-01-14 00:49:52 -0800 | [diff] [blame] | 4148 | NULL); |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4149 | if (aq_ret) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4150 | dev_info(&pf->pdev->dev, |
| 4151 | "couldn't get pf vsi ets bw config, err %d, aq_err %d\n", |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4152 | aq_ret, pf->hw.aq.asq_last_status); |
| 4153 | return -EINVAL; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4154 | } |
| 4155 | |
| 4156 | if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) { |
| 4157 | dev_info(&pf->pdev->dev, |
| 4158 | "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n", |
| 4159 | bw_config.tc_valid_bits, |
| 4160 | bw_ets_config.tc_valid_bits); |
| 4161 | /* Still continuing */ |
| 4162 | } |
| 4163 | |
| 4164 | vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit); |
| 4165 | vsi->bw_max_quanta = bw_config.max_bw; |
| 4166 | tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) | |
| 4167 | (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16); |
| 4168 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { |
| 4169 | vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i]; |
| 4170 | vsi->bw_ets_limit_credits[i] = |
| 4171 | le16_to_cpu(bw_ets_config.credits[i]); |
| 4172 | /* 3 bits out of 4 for each TC */ |
| 4173 | vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7); |
| 4174 | } |
Jesse Brandeburg | 078b587 | 2013-09-25 23:41:14 +0000 | [diff] [blame] | 4175 | |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4176 | return 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4177 | } |
| 4178 | |
| 4179 | /** |
| 4180 | * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC |
| 4181 | * @vsi: the VSI being configured |
| 4182 | * @enabled_tc: TC bitmap |
| 4183 | * @bw_credits: BW shared credits per TC |
| 4184 | * |
| 4185 | * Returns 0 on success, negative value on failure |
| 4186 | **/ |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4187 | static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4188 | u8 *bw_share) |
| 4189 | { |
| 4190 | struct i40e_aqc_configure_vsi_tc_bw_data bw_data; |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4191 | i40e_status aq_ret; |
| 4192 | int i; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4193 | |
| 4194 | bw_data.tc_valid_bits = enabled_tc; |
| 4195 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) |
| 4196 | bw_data.tc_bw_credits[i] = bw_share[i]; |
| 4197 | |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4198 | aq_ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data, |
| 4199 | NULL); |
| 4200 | if (aq_ret) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4201 | dev_info(&vsi->back->pdev->dev, |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 4202 | "AQ command Config VSI BW allocation per TC failed = %d\n", |
| 4203 | vsi->back->hw.aq.asq_last_status); |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4204 | return -EINVAL; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4205 | } |
| 4206 | |
| 4207 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) |
| 4208 | vsi->info.qs_handle[i] = bw_data.qs_handles[i]; |
| 4209 | |
Jesse Brandeburg | dcae29b | 2013-09-13 08:23:20 +0000 | [diff] [blame] | 4210 | return 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4211 | } |
| 4212 | |
| 4213 | /** |
| 4214 | * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration |
| 4215 | * @vsi: the VSI being configured |
| 4216 | * @enabled_tc: TC map to be enabled |
| 4217 | * |
| 4218 | **/ |
| 4219 | static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc) |
| 4220 | { |
| 4221 | struct net_device *netdev = vsi->netdev; |
| 4222 | struct i40e_pf *pf = vsi->back; |
| 4223 | struct i40e_hw *hw = &pf->hw; |
| 4224 | u8 netdev_tc = 0; |
| 4225 | int i; |
| 4226 | struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config; |
| 4227 | |
| 4228 | if (!netdev) |
| 4229 | return; |
| 4230 | |
| 4231 | if (!enabled_tc) { |
| 4232 | netdev_reset_tc(netdev); |
| 4233 | return; |
| 4234 | } |
| 4235 | |
| 4236 | /* Set up actual enabled TCs on the VSI */ |
| 4237 | if (netdev_set_num_tc(netdev, vsi->tc_config.numtc)) |
| 4238 | return; |
| 4239 | |
| 4240 | /* set per TC queues for the VSI */ |
| 4241 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { |
| 4242 | /* Only set TC queues for enabled tcs |
| 4243 | * |
| 4244 | * e.g. For a VSI that has TC0 and TC3 enabled the |
| 4245 | * enabled_tc bitmap would be 0x00001001; the driver |
| 4246 | * will set the numtc for netdev as 2 that will be |
| 4247 | * referenced by the netdev layer as TC 0 and 1. |
| 4248 | */ |
| 4249 | if (vsi->tc_config.enabled_tc & (1 << i)) |
| 4250 | netdev_set_tc_queue(netdev, |
| 4251 | vsi->tc_config.tc_info[i].netdev_tc, |
| 4252 | vsi->tc_config.tc_info[i].qcount, |
| 4253 | vsi->tc_config.tc_info[i].qoffset); |
| 4254 | } |
| 4255 | |
| 4256 | /* Assign UP2TC map for the VSI */ |
| 4257 | for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) { |
| 4258 | /* Get the actual TC# for the UP */ |
| 4259 | u8 ets_tc = dcbcfg->etscfg.prioritytable[i]; |
| 4260 | /* Get the mapped netdev TC# for the UP */ |
| 4261 | netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc; |
| 4262 | netdev_set_prio_tc_map(netdev, i, netdev_tc); |
| 4263 | } |
| 4264 | } |
| 4265 | |
| 4266 | /** |
| 4267 | * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map |
| 4268 | * @vsi: the VSI being configured |
| 4269 | * @ctxt: the ctxt buffer returned from AQ VSI update param command |
| 4270 | **/ |
| 4271 | static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi, |
| 4272 | struct i40e_vsi_context *ctxt) |
| 4273 | { |
| 4274 | /* copy just the sections touched not the entire info |
| 4275 | * since not all sections are valid as returned by |
| 4276 | * update vsi params |
| 4277 | */ |
| 4278 | vsi->info.mapping_flags = ctxt->info.mapping_flags; |
| 4279 | memcpy(&vsi->info.queue_mapping, |
| 4280 | &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping)); |
| 4281 | memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping, |
| 4282 | sizeof(vsi->info.tc_mapping)); |
| 4283 | } |
| 4284 | |
| 4285 | /** |
| 4286 | * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map |
| 4287 | * @vsi: VSI to be configured |
| 4288 | * @enabled_tc: TC bitmap |
| 4289 | * |
| 4290 | * This configures a particular VSI for TCs that are mapped to the |
| 4291 | * given TC bitmap. It uses default bandwidth share for TCs across |
| 4292 | * VSIs to configure TC for a particular VSI. |
| 4293 | * |
| 4294 | * NOTE: |
| 4295 | * It is expected that the VSI queues have been quisced before calling |
| 4296 | * this function. |
| 4297 | **/ |
| 4298 | static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc) |
| 4299 | { |
| 4300 | u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0}; |
| 4301 | struct i40e_vsi_context ctxt; |
| 4302 | int ret = 0; |
| 4303 | int i; |
| 4304 | |
| 4305 | /* Check if enabled_tc is same as existing or new TCs */ |
| 4306 | if (vsi->tc_config.enabled_tc == enabled_tc) |
| 4307 | return ret; |
| 4308 | |
| 4309 | /* Enable ETS TCs with equal BW Share for now across all VSIs */ |
| 4310 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { |
| 4311 | if (enabled_tc & (1 << i)) |
| 4312 | bw_share[i] = 1; |
| 4313 | } |
| 4314 | |
| 4315 | ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share); |
| 4316 | if (ret) { |
| 4317 | dev_info(&vsi->back->pdev->dev, |
| 4318 | "Failed configuring TC map %d for VSI %d\n", |
| 4319 | enabled_tc, vsi->seid); |
| 4320 | goto out; |
| 4321 | } |
| 4322 | |
| 4323 | /* Update Queue Pairs Mapping for currently enabled UPs */ |
| 4324 | ctxt.seid = vsi->seid; |
| 4325 | ctxt.pf_num = vsi->back->hw.pf_id; |
| 4326 | ctxt.vf_num = 0; |
| 4327 | ctxt.uplink_seid = vsi->uplink_seid; |
| 4328 | memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info)); |
| 4329 | i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false); |
| 4330 | |
| 4331 | /* Update the VSI after updating the VSI queue-mapping information */ |
| 4332 | ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL); |
| 4333 | if (ret) { |
| 4334 | dev_info(&vsi->back->pdev->dev, |
| 4335 | "update vsi failed, aq_err=%d\n", |
| 4336 | vsi->back->hw.aq.asq_last_status); |
| 4337 | goto out; |
| 4338 | } |
| 4339 | /* update the local VSI info with updated queue map */ |
| 4340 | i40e_vsi_update_queue_map(vsi, &ctxt); |
| 4341 | vsi->info.valid_sections = 0; |
| 4342 | |
| 4343 | /* Update current VSI BW information */ |
| 4344 | ret = i40e_vsi_get_bw_info(vsi); |
| 4345 | if (ret) { |
| 4346 | dev_info(&vsi->back->pdev->dev, |
| 4347 | "Failed updating vsi bw info, aq_err=%d\n", |
| 4348 | vsi->back->hw.aq.asq_last_status); |
| 4349 | goto out; |
| 4350 | } |
| 4351 | |
| 4352 | /* Update the netdev TC setup */ |
| 4353 | i40e_vsi_config_netdev_tc(vsi, enabled_tc); |
| 4354 | out: |
| 4355 | return ret; |
| 4356 | } |
| 4357 | |
| 4358 | /** |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 4359 | * i40e_veb_config_tc - Configure TCs for given VEB |
| 4360 | * @veb: given VEB |
| 4361 | * @enabled_tc: TC bitmap |
| 4362 | * |
| 4363 | * Configures given TC bitmap for VEB (switching) element |
| 4364 | **/ |
| 4365 | int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc) |
| 4366 | { |
| 4367 | struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0}; |
| 4368 | struct i40e_pf *pf = veb->pf; |
| 4369 | int ret = 0; |
| 4370 | int i; |
| 4371 | |
| 4372 | /* No TCs or already enabled TCs just return */ |
| 4373 | if (!enabled_tc || veb->enabled_tc == enabled_tc) |
| 4374 | return ret; |
| 4375 | |
| 4376 | bw_data.tc_valid_bits = enabled_tc; |
| 4377 | /* bw_data.absolute_credits is not set (relative) */ |
| 4378 | |
| 4379 | /* Enable ETS TCs with equal BW Share for now */ |
| 4380 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { |
| 4381 | if (enabled_tc & (1 << i)) |
| 4382 | bw_data.tc_bw_share_credits[i] = 1; |
| 4383 | } |
| 4384 | |
| 4385 | ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid, |
| 4386 | &bw_data, NULL); |
| 4387 | if (ret) { |
| 4388 | dev_info(&pf->pdev->dev, |
| 4389 | "veb bw config failed, aq_err=%d\n", |
| 4390 | pf->hw.aq.asq_last_status); |
| 4391 | goto out; |
| 4392 | } |
| 4393 | |
| 4394 | /* Update the BW information */ |
| 4395 | ret = i40e_veb_get_bw_info(veb); |
| 4396 | if (ret) { |
| 4397 | dev_info(&pf->pdev->dev, |
| 4398 | "Failed getting veb bw config, aq_err=%d\n", |
| 4399 | pf->hw.aq.asq_last_status); |
| 4400 | } |
| 4401 | |
| 4402 | out: |
| 4403 | return ret; |
| 4404 | } |
| 4405 | |
| 4406 | #ifdef CONFIG_I40E_DCB |
| 4407 | /** |
| 4408 | * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs |
| 4409 | * @pf: PF struct |
| 4410 | * |
| 4411 | * Reconfigure VEB/VSIs on a given PF; it is assumed that |
| 4412 | * the caller would've quiesce all the VSIs before calling |
| 4413 | * this function |
| 4414 | **/ |
| 4415 | static void i40e_dcb_reconfigure(struct i40e_pf *pf) |
| 4416 | { |
| 4417 | u8 tc_map = 0; |
| 4418 | int ret; |
| 4419 | u8 v; |
| 4420 | |
| 4421 | /* Enable the TCs available on PF to all VEBs */ |
| 4422 | tc_map = i40e_pf_get_tc_map(pf); |
| 4423 | for (v = 0; v < I40E_MAX_VEB; v++) { |
| 4424 | if (!pf->veb[v]) |
| 4425 | continue; |
| 4426 | ret = i40e_veb_config_tc(pf->veb[v], tc_map); |
| 4427 | if (ret) { |
| 4428 | dev_info(&pf->pdev->dev, |
| 4429 | "Failed configuring TC for VEB seid=%d\n", |
| 4430 | pf->veb[v]->seid); |
| 4431 | /* Will try to configure as many components */ |
| 4432 | } |
| 4433 | } |
| 4434 | |
| 4435 | /* Update each VSI */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 4436 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 4437 | if (!pf->vsi[v]) |
| 4438 | continue; |
| 4439 | |
| 4440 | /* - Enable all TCs for the LAN VSI |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 4441 | #ifdef I40E_FCOE |
| 4442 | * - For FCoE VSI only enable the TC configured |
| 4443 | * as per the APP TLV |
| 4444 | #endif |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 4445 | * - For all others keep them at TC0 for now |
| 4446 | */ |
| 4447 | if (v == pf->lan_vsi) |
| 4448 | tc_map = i40e_pf_get_tc_map(pf); |
| 4449 | else |
| 4450 | tc_map = i40e_pf_get_default_tc(pf); |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 4451 | #ifdef I40E_FCOE |
| 4452 | if (pf->vsi[v]->type == I40E_VSI_FCOE) |
| 4453 | tc_map = i40e_get_fcoe_tc_map(pf); |
| 4454 | #endif /* #ifdef I40E_FCOE */ |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 4455 | |
| 4456 | ret = i40e_vsi_config_tc(pf->vsi[v], tc_map); |
| 4457 | if (ret) { |
| 4458 | dev_info(&pf->pdev->dev, |
| 4459 | "Failed configuring TC for VSI seid=%d\n", |
| 4460 | pf->vsi[v]->seid); |
| 4461 | /* Will try to configure as many components */ |
| 4462 | } else { |
Neerav Parikh | 0672a09 | 2014-04-01 07:11:47 +0000 | [diff] [blame] | 4463 | /* Re-configure VSI vectors based on updated TC map */ |
| 4464 | i40e_vsi_map_rings_to_vectors(pf->vsi[v]); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 4465 | if (pf->vsi[v]->netdev) |
| 4466 | i40e_dcbnl_set_all(pf->vsi[v]); |
| 4467 | } |
| 4468 | } |
| 4469 | } |
| 4470 | |
| 4471 | /** |
Neerav Parikh | 2fd75f3 | 2014-11-12 00:18:20 +0000 | [diff] [blame] | 4472 | * i40e_resume_port_tx - Resume port Tx |
| 4473 | * @pf: PF struct |
| 4474 | * |
| 4475 | * Resume a port's Tx and issue a PF reset in case of failure to |
| 4476 | * resume. |
| 4477 | **/ |
| 4478 | static int i40e_resume_port_tx(struct i40e_pf *pf) |
| 4479 | { |
| 4480 | struct i40e_hw *hw = &pf->hw; |
| 4481 | int ret; |
| 4482 | |
| 4483 | ret = i40e_aq_resume_port_tx(hw, NULL); |
| 4484 | if (ret) { |
| 4485 | dev_info(&pf->pdev->dev, |
| 4486 | "AQ command Resume Port Tx failed = %d\n", |
| 4487 | pf->hw.aq.asq_last_status); |
| 4488 | /* Schedule PF reset to recover */ |
| 4489 | set_bit(__I40E_PF_RESET_REQUESTED, &pf->state); |
| 4490 | i40e_service_event_schedule(pf); |
| 4491 | } |
| 4492 | |
| 4493 | return ret; |
| 4494 | } |
| 4495 | |
| 4496 | /** |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 4497 | * i40e_init_pf_dcb - Initialize DCB configuration |
| 4498 | * @pf: PF being configured |
| 4499 | * |
| 4500 | * Query the current DCB configuration and cache it |
| 4501 | * in the hardware structure |
| 4502 | **/ |
| 4503 | static int i40e_init_pf_dcb(struct i40e_pf *pf) |
| 4504 | { |
| 4505 | struct i40e_hw *hw = &pf->hw; |
| 4506 | int err = 0; |
| 4507 | |
| 4508 | if (pf->hw.func_caps.npar_enable) |
| 4509 | goto out; |
| 4510 | |
| 4511 | /* Get the initial DCB configuration */ |
| 4512 | err = i40e_init_dcb(hw); |
| 4513 | if (!err) { |
| 4514 | /* Device/Function is not DCBX capable */ |
| 4515 | if ((!hw->func_caps.dcb) || |
| 4516 | (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) { |
| 4517 | dev_info(&pf->pdev->dev, |
| 4518 | "DCBX offload is not supported or is disabled for this PF.\n"); |
| 4519 | |
| 4520 | if (pf->flags & I40E_FLAG_MFP_ENABLED) |
| 4521 | goto out; |
| 4522 | |
| 4523 | } else { |
| 4524 | /* When status is not DISABLED then DCBX in FW */ |
| 4525 | pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED | |
| 4526 | DCB_CAP_DCBX_VER_IEEE; |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 4527 | |
| 4528 | pf->flags |= I40E_FLAG_DCB_CAPABLE; |
| 4529 | /* Enable DCB tagging only when more than one TC */ |
| 4530 | if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1) |
| 4531 | pf->flags |= I40E_FLAG_DCB_ENABLED; |
Neerav Parikh | 9fa61dd | 2014-11-12 00:18:25 +0000 | [diff] [blame] | 4532 | dev_dbg(&pf->pdev->dev, |
| 4533 | "DCBX offload is supported for this PF.\n"); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 4534 | } |
Neerav Parikh | 014269f | 2014-04-01 07:11:48 +0000 | [diff] [blame] | 4535 | } else { |
| 4536 | dev_info(&pf->pdev->dev, "AQ Querying DCB configuration failed: %d\n", |
| 4537 | pf->hw.aq.asq_last_status); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 4538 | } |
| 4539 | |
| 4540 | out: |
| 4541 | return err; |
| 4542 | } |
| 4543 | #endif /* CONFIG_I40E_DCB */ |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4544 | #define SPEED_SIZE 14 |
| 4545 | #define FC_SIZE 8 |
| 4546 | /** |
| 4547 | * i40e_print_link_message - print link up or down |
| 4548 | * @vsi: the VSI for which link needs a message |
| 4549 | */ |
| 4550 | static void i40e_print_link_message(struct i40e_vsi *vsi, bool isup) |
| 4551 | { |
| 4552 | char speed[SPEED_SIZE] = "Unknown"; |
| 4553 | char fc[FC_SIZE] = "RX/TX"; |
| 4554 | |
| 4555 | if (!isup) { |
| 4556 | netdev_info(vsi->netdev, "NIC Link is Down\n"); |
| 4557 | return; |
| 4558 | } |
| 4559 | |
Greg Rose | 148c2d8 | 2014-12-11 07:06:27 +0000 | [diff] [blame] | 4560 | /* Warn user if link speed on NPAR enabled partition is not at |
| 4561 | * least 10GB |
| 4562 | */ |
| 4563 | if (vsi->back->hw.func_caps.npar_enable && |
| 4564 | (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB || |
| 4565 | vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB)) |
| 4566 | netdev_warn(vsi->netdev, |
| 4567 | "The partition detected link speed that is less than 10Gbps\n"); |
| 4568 | |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4569 | switch (vsi->back->hw.phy.link_info.link_speed) { |
| 4570 | case I40E_LINK_SPEED_40GB: |
Rickard Strandqvist | 35a7d80 | 2014-07-29 09:26:25 +0000 | [diff] [blame] | 4571 | strlcpy(speed, "40 Gbps", SPEED_SIZE); |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4572 | break; |
| 4573 | case I40E_LINK_SPEED_10GB: |
Rickard Strandqvist | 35a7d80 | 2014-07-29 09:26:25 +0000 | [diff] [blame] | 4574 | strlcpy(speed, "10 Gbps", SPEED_SIZE); |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4575 | break; |
| 4576 | case I40E_LINK_SPEED_1GB: |
Rickard Strandqvist | 35a7d80 | 2014-07-29 09:26:25 +0000 | [diff] [blame] | 4577 | strlcpy(speed, "1000 Mbps", SPEED_SIZE); |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4578 | break; |
Mitch Williams | 5960d33 | 2014-09-13 07:40:47 +0000 | [diff] [blame] | 4579 | case I40E_LINK_SPEED_100MB: |
| 4580 | strncpy(speed, "100 Mbps", SPEED_SIZE); |
| 4581 | break; |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4582 | default: |
| 4583 | break; |
| 4584 | } |
| 4585 | |
| 4586 | switch (vsi->back->hw.fc.current_mode) { |
| 4587 | case I40E_FC_FULL: |
Rickard Strandqvist | 35a7d80 | 2014-07-29 09:26:25 +0000 | [diff] [blame] | 4588 | strlcpy(fc, "RX/TX", FC_SIZE); |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4589 | break; |
| 4590 | case I40E_FC_TX_PAUSE: |
Rickard Strandqvist | 35a7d80 | 2014-07-29 09:26:25 +0000 | [diff] [blame] | 4591 | strlcpy(fc, "TX", FC_SIZE); |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4592 | break; |
| 4593 | case I40E_FC_RX_PAUSE: |
Rickard Strandqvist | 35a7d80 | 2014-07-29 09:26:25 +0000 | [diff] [blame] | 4594 | strlcpy(fc, "RX", FC_SIZE); |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4595 | break; |
| 4596 | default: |
Rickard Strandqvist | 35a7d80 | 2014-07-29 09:26:25 +0000 | [diff] [blame] | 4597 | strlcpy(fc, "None", FC_SIZE); |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4598 | break; |
| 4599 | } |
| 4600 | |
| 4601 | netdev_info(vsi->netdev, "NIC Link is Up %s Full Duplex, Flow Control: %s\n", |
| 4602 | speed, fc); |
| 4603 | } |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 4604 | |
| 4605 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4606 | * i40e_up_complete - Finish the last steps of bringing up a connection |
| 4607 | * @vsi: the VSI being configured |
| 4608 | **/ |
| 4609 | static int i40e_up_complete(struct i40e_vsi *vsi) |
| 4610 | { |
| 4611 | struct i40e_pf *pf = vsi->back; |
| 4612 | int err; |
| 4613 | |
| 4614 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) |
| 4615 | i40e_vsi_configure_msix(vsi); |
| 4616 | else |
| 4617 | i40e_configure_msi_and_legacy(vsi); |
| 4618 | |
| 4619 | /* start rings */ |
| 4620 | err = i40e_vsi_control_rings(vsi, true); |
| 4621 | if (err) |
| 4622 | return err; |
| 4623 | |
| 4624 | clear_bit(__I40E_DOWN, &vsi->state); |
| 4625 | i40e_napi_enable_all(vsi); |
| 4626 | i40e_vsi_enable_irq(vsi); |
| 4627 | |
| 4628 | if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) && |
| 4629 | (vsi->netdev)) { |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4630 | i40e_print_link_message(vsi, true); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4631 | netif_tx_start_all_queues(vsi->netdev); |
| 4632 | netif_carrier_on(vsi->netdev); |
Anjali Singhai | 6d779b4 | 2013-09-28 06:00:02 +0000 | [diff] [blame] | 4633 | } else if (vsi->netdev) { |
Jesse Brandeburg | cf05ed0 | 2014-04-23 04:50:12 +0000 | [diff] [blame] | 4634 | i40e_print_link_message(vsi, false); |
Carolyn Wyborny | 7b592f6 | 2014-07-10 07:58:19 +0000 | [diff] [blame] | 4635 | /* need to check for qualified module here*/ |
| 4636 | if ((pf->hw.phy.link_info.link_info & |
| 4637 | I40E_AQ_MEDIA_AVAILABLE) && |
| 4638 | (!(pf->hw.phy.link_info.an_info & |
| 4639 | I40E_AQ_QUALIFIED_MODULE))) |
| 4640 | netdev_err(vsi->netdev, |
| 4641 | "the driver failed to link because an unqualified module was detected."); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4642 | } |
Anjali Singhai Jain | ca64fa4 | 2014-02-11 08:26:30 +0000 | [diff] [blame] | 4643 | |
| 4644 | /* replay FDIR SB filters */ |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 4645 | if (vsi->type == I40E_VSI_FDIR) { |
| 4646 | /* reset fd counters */ |
| 4647 | pf->fd_add_err = pf->fd_atr_cnt = 0; |
| 4648 | if (pf->fd_tcp_rule > 0) { |
| 4649 | pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED; |
| 4650 | dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n"); |
| 4651 | pf->fd_tcp_rule = 0; |
| 4652 | } |
Anjali Singhai Jain | ca64fa4 | 2014-02-11 08:26:30 +0000 | [diff] [blame] | 4653 | i40e_fdir_filter_restore(vsi); |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 4654 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4655 | i40e_service_event_schedule(pf); |
| 4656 | |
| 4657 | return 0; |
| 4658 | } |
| 4659 | |
| 4660 | /** |
| 4661 | * i40e_vsi_reinit_locked - Reset the VSI |
| 4662 | * @vsi: the VSI being configured |
| 4663 | * |
| 4664 | * Rebuild the ring structs after some configuration |
| 4665 | * has changed, e.g. MTU size. |
| 4666 | **/ |
| 4667 | static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi) |
| 4668 | { |
| 4669 | struct i40e_pf *pf = vsi->back; |
| 4670 | |
| 4671 | WARN_ON(in_interrupt()); |
| 4672 | while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state)) |
| 4673 | usleep_range(1000, 2000); |
| 4674 | i40e_down(vsi); |
| 4675 | |
| 4676 | /* Give a VF some time to respond to the reset. The |
| 4677 | * two second wait is based upon the watchdog cycle in |
| 4678 | * the VF driver. |
| 4679 | */ |
| 4680 | if (vsi->type == I40E_VSI_SRIOV) |
| 4681 | msleep(2000); |
| 4682 | i40e_up(vsi); |
| 4683 | clear_bit(__I40E_CONFIG_BUSY, &pf->state); |
| 4684 | } |
| 4685 | |
| 4686 | /** |
| 4687 | * i40e_up - Bring the connection back up after being down |
| 4688 | * @vsi: the VSI being configured |
| 4689 | **/ |
| 4690 | int i40e_up(struct i40e_vsi *vsi) |
| 4691 | { |
| 4692 | int err; |
| 4693 | |
| 4694 | err = i40e_vsi_configure(vsi); |
| 4695 | if (!err) |
| 4696 | err = i40e_up_complete(vsi); |
| 4697 | |
| 4698 | return err; |
| 4699 | } |
| 4700 | |
| 4701 | /** |
| 4702 | * i40e_down - Shutdown the connection processing |
| 4703 | * @vsi: the VSI being stopped |
| 4704 | **/ |
| 4705 | void i40e_down(struct i40e_vsi *vsi) |
| 4706 | { |
| 4707 | int i; |
| 4708 | |
| 4709 | /* It is assumed that the caller of this function |
| 4710 | * sets the vsi->state __I40E_DOWN bit. |
| 4711 | */ |
| 4712 | if (vsi->netdev) { |
| 4713 | netif_carrier_off(vsi->netdev); |
| 4714 | netif_tx_disable(vsi->netdev); |
| 4715 | } |
| 4716 | i40e_vsi_disable_irq(vsi); |
| 4717 | i40e_vsi_control_rings(vsi, false); |
| 4718 | i40e_napi_disable_all(vsi); |
| 4719 | |
| 4720 | for (i = 0; i < vsi->num_queue_pairs; i++) { |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 4721 | i40e_clean_tx_ring(vsi->tx_rings[i]); |
| 4722 | i40e_clean_rx_ring(vsi->rx_rings[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4723 | } |
| 4724 | } |
| 4725 | |
| 4726 | /** |
| 4727 | * i40e_setup_tc - configure multiple traffic classes |
| 4728 | * @netdev: net device to configure |
| 4729 | * @tc: number of traffic classes to enable |
| 4730 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 4731 | #ifdef I40E_FCOE |
| 4732 | int i40e_setup_tc(struct net_device *netdev, u8 tc) |
| 4733 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4734 | static int i40e_setup_tc(struct net_device *netdev, u8 tc) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 4735 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4736 | { |
| 4737 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 4738 | struct i40e_vsi *vsi = np->vsi; |
| 4739 | struct i40e_pf *pf = vsi->back; |
| 4740 | u8 enabled_tc = 0; |
| 4741 | int ret = -EINVAL; |
| 4742 | int i; |
| 4743 | |
| 4744 | /* Check if DCB enabled to continue */ |
| 4745 | if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) { |
| 4746 | netdev_info(netdev, "DCB is not enabled for adapter\n"); |
| 4747 | goto exit; |
| 4748 | } |
| 4749 | |
| 4750 | /* Check if MFP enabled */ |
| 4751 | if (pf->flags & I40E_FLAG_MFP_ENABLED) { |
| 4752 | netdev_info(netdev, "Configuring TC not supported in MFP mode\n"); |
| 4753 | goto exit; |
| 4754 | } |
| 4755 | |
| 4756 | /* Check whether tc count is within enabled limit */ |
| 4757 | if (tc > i40e_pf_get_num_tc(pf)) { |
| 4758 | netdev_info(netdev, "TC count greater than enabled on link for adapter\n"); |
| 4759 | goto exit; |
| 4760 | } |
| 4761 | |
| 4762 | /* Generate TC map for number of tc requested */ |
| 4763 | for (i = 0; i < tc; i++) |
| 4764 | enabled_tc |= (1 << i); |
| 4765 | |
| 4766 | /* Requesting same TC configuration as already enabled */ |
| 4767 | if (enabled_tc == vsi->tc_config.enabled_tc) |
| 4768 | return 0; |
| 4769 | |
| 4770 | /* Quiesce VSI queues */ |
| 4771 | i40e_quiesce_vsi(vsi); |
| 4772 | |
| 4773 | /* Configure VSI for enabled TCs */ |
| 4774 | ret = i40e_vsi_config_tc(vsi, enabled_tc); |
| 4775 | if (ret) { |
| 4776 | netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n", |
| 4777 | vsi->seid); |
| 4778 | goto exit; |
| 4779 | } |
| 4780 | |
| 4781 | /* Unquiesce VSI */ |
| 4782 | i40e_unquiesce_vsi(vsi); |
| 4783 | |
| 4784 | exit: |
| 4785 | return ret; |
| 4786 | } |
| 4787 | |
| 4788 | /** |
| 4789 | * i40e_open - Called when a network interface is made active |
| 4790 | * @netdev: network interface device structure |
| 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 netdev watchdog subtask is |
| 4796 | * enabled, and the stack is notified that the interface is ready. |
| 4797 | * |
| 4798 | * Returns 0 on success, negative value on failure |
| 4799 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 4800 | #ifdef I40E_FCOE |
| 4801 | int i40e_open(struct net_device *netdev) |
| 4802 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4803 | static int i40e_open(struct net_device *netdev) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 4804 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4805 | { |
| 4806 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 4807 | struct i40e_vsi *vsi = np->vsi; |
| 4808 | struct i40e_pf *pf = vsi->back; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4809 | int err; |
| 4810 | |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 4811 | /* disallow open during test or if eeprom is broken */ |
| 4812 | if (test_bit(__I40E_TESTING, &pf->state) || |
| 4813 | test_bit(__I40E_BAD_EEPROM, &pf->state)) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4814 | return -EBUSY; |
| 4815 | |
| 4816 | netif_carrier_off(netdev); |
| 4817 | |
Elizabeth Kappler | 6c167f5 | 2014-02-15 07:41:38 +0000 | [diff] [blame] | 4818 | err = i40e_vsi_open(vsi); |
| 4819 | if (err) |
| 4820 | return err; |
| 4821 | |
Jesse Brandeburg | 059dab6 | 2014-04-01 09:07:20 +0000 | [diff] [blame] | 4822 | /* configure global TSO hardware offload settings */ |
| 4823 | wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH | |
| 4824 | TCP_FLAG_FIN) >> 16); |
| 4825 | wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH | |
| 4826 | TCP_FLAG_FIN | |
| 4827 | TCP_FLAG_CWR) >> 16); |
| 4828 | wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16); |
| 4829 | |
Elizabeth Kappler | 6c167f5 | 2014-02-15 07:41:38 +0000 | [diff] [blame] | 4830 | #ifdef CONFIG_I40E_VXLAN |
| 4831 | vxlan_get_rx_port(netdev); |
| 4832 | #endif |
| 4833 | |
| 4834 | return 0; |
| 4835 | } |
| 4836 | |
| 4837 | /** |
| 4838 | * i40e_vsi_open - |
| 4839 | * @vsi: the VSI to open |
| 4840 | * |
| 4841 | * Finish initialization of the VSI. |
| 4842 | * |
| 4843 | * Returns 0 on success, negative value on failure |
| 4844 | **/ |
| 4845 | int i40e_vsi_open(struct i40e_vsi *vsi) |
| 4846 | { |
| 4847 | struct i40e_pf *pf = vsi->back; |
| 4848 | char int_name[IFNAMSIZ]; |
| 4849 | int err; |
| 4850 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4851 | /* allocate descriptors */ |
| 4852 | err = i40e_vsi_setup_tx_resources(vsi); |
| 4853 | if (err) |
| 4854 | goto err_setup_tx; |
| 4855 | err = i40e_vsi_setup_rx_resources(vsi); |
| 4856 | if (err) |
| 4857 | goto err_setup_rx; |
| 4858 | |
| 4859 | err = i40e_vsi_configure(vsi); |
| 4860 | if (err) |
| 4861 | goto err_setup_rx; |
| 4862 | |
Shannon Nelson | c22e3c6 | 2014-03-14 07:32:25 +0000 | [diff] [blame] | 4863 | if (vsi->netdev) { |
| 4864 | snprintf(int_name, sizeof(int_name) - 1, "%s-%s", |
| 4865 | dev_driver_string(&pf->pdev->dev), vsi->netdev->name); |
| 4866 | err = i40e_vsi_request_irq(vsi, int_name); |
| 4867 | if (err) |
| 4868 | goto err_setup_rx; |
| 4869 | |
| 4870 | /* Notify the stack of the actual queue counts. */ |
| 4871 | err = netif_set_real_num_tx_queues(vsi->netdev, |
| 4872 | vsi->num_queue_pairs); |
| 4873 | if (err) |
| 4874 | goto err_set_queues; |
| 4875 | |
| 4876 | err = netif_set_real_num_rx_queues(vsi->netdev, |
| 4877 | vsi->num_queue_pairs); |
| 4878 | if (err) |
| 4879 | goto err_set_queues; |
Shannon Nelson | 8a9eb7d | 2014-03-14 07:32:28 +0000 | [diff] [blame] | 4880 | |
| 4881 | } else if (vsi->type == I40E_VSI_FDIR) { |
Carolyn Wyborny | b2008cb | 2014-11-11 20:05:26 +0000 | [diff] [blame] | 4882 | snprintf(int_name, sizeof(int_name) - 1, "%s-%s-fdir", |
| 4883 | dev_driver_string(&pf->pdev->dev), |
| 4884 | dev_name(&pf->pdev->dev)); |
Shannon Nelson | 8a9eb7d | 2014-03-14 07:32:28 +0000 | [diff] [blame] | 4885 | err = i40e_vsi_request_irq(vsi, int_name); |
Carolyn Wyborny | b2008cb | 2014-11-11 20:05:26 +0000 | [diff] [blame] | 4886 | |
Shannon Nelson | c22e3c6 | 2014-03-14 07:32:25 +0000 | [diff] [blame] | 4887 | } else { |
Jean Sacren | ce9ccb1 | 2014-05-01 14:31:18 +0000 | [diff] [blame] | 4888 | err = -EINVAL; |
Elizabeth Kappler | 6c167f5 | 2014-02-15 07:41:38 +0000 | [diff] [blame] | 4889 | goto err_setup_rx; |
| 4890 | } |
Anjali Singhai Jain | 25946dd | 2013-11-26 10:49:14 +0000 | [diff] [blame] | 4891 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4892 | err = i40e_up_complete(vsi); |
| 4893 | if (err) |
| 4894 | goto err_up_complete; |
| 4895 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4896 | return 0; |
| 4897 | |
| 4898 | err_up_complete: |
| 4899 | i40e_down(vsi); |
Anjali Singhai Jain | 25946dd | 2013-11-26 10:49:14 +0000 | [diff] [blame] | 4900 | err_set_queues: |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4901 | i40e_vsi_free_irq(vsi); |
| 4902 | err_setup_rx: |
| 4903 | i40e_vsi_free_rx_resources(vsi); |
| 4904 | err_setup_tx: |
| 4905 | i40e_vsi_free_tx_resources(vsi); |
| 4906 | if (vsi == pf->vsi[pf->lan_vsi]) |
| 4907 | i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED)); |
| 4908 | |
| 4909 | return err; |
| 4910 | } |
| 4911 | |
| 4912 | /** |
Joseph Gasparakis | 17a73f6 | 2014-02-12 01:45:30 +0000 | [diff] [blame] | 4913 | * i40e_fdir_filter_exit - Cleans up the Flow Director accounting |
| 4914 | * @pf: Pointer to pf |
| 4915 | * |
| 4916 | * This function destroys the hlist where all the Flow Director |
| 4917 | * filters were saved. |
| 4918 | **/ |
| 4919 | static void i40e_fdir_filter_exit(struct i40e_pf *pf) |
| 4920 | { |
| 4921 | struct i40e_fdir_filter *filter; |
| 4922 | struct hlist_node *node2; |
| 4923 | |
| 4924 | hlist_for_each_entry_safe(filter, node2, |
| 4925 | &pf->fdir_filter_list, fdir_node) { |
| 4926 | hlist_del(&filter->fdir_node); |
| 4927 | kfree(filter); |
| 4928 | } |
| 4929 | pf->fdir_pf_active_filters = 0; |
| 4930 | } |
| 4931 | |
| 4932 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4933 | * i40e_close - Disables a network interface |
| 4934 | * @netdev: network interface device structure |
| 4935 | * |
| 4936 | * The close entry point is called when an interface is de-activated |
| 4937 | * by the OS. The hardware is still under the driver's control, but |
| 4938 | * this netdev interface is disabled. |
| 4939 | * |
| 4940 | * Returns 0, this is not allowed to fail |
| 4941 | **/ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 4942 | #ifdef I40E_FCOE |
| 4943 | int i40e_close(struct net_device *netdev) |
| 4944 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4945 | static int i40e_close(struct net_device *netdev) |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 4946 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4947 | { |
| 4948 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 4949 | struct i40e_vsi *vsi = np->vsi; |
| 4950 | |
Shannon Nelson | 90ef8d4 | 2014-03-14 07:32:26 +0000 | [diff] [blame] | 4951 | i40e_vsi_close(vsi); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4952 | |
| 4953 | return 0; |
| 4954 | } |
| 4955 | |
| 4956 | /** |
| 4957 | * i40e_do_reset - Start a PF or Core Reset sequence |
| 4958 | * @pf: board private structure |
| 4959 | * @reset_flags: which reset is requested |
| 4960 | * |
| 4961 | * The essential difference in resets is that the PF Reset |
| 4962 | * doesn't clear the packet buffers, doesn't reset the PE |
| 4963 | * firmware, and doesn't bother the other PFs on the chip. |
| 4964 | **/ |
| 4965 | void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags) |
| 4966 | { |
| 4967 | u32 val; |
| 4968 | |
| 4969 | WARN_ON(in_interrupt()); |
| 4970 | |
Mitch Williams | 263fc48 | 2014-04-23 04:50:11 +0000 | [diff] [blame] | 4971 | if (i40e_check_asq_alive(&pf->hw)) |
| 4972 | i40e_vc_notify_reset(pf); |
| 4973 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4974 | /* do the biggest reset indicated */ |
| 4975 | if (reset_flags & (1 << __I40E_GLOBAL_RESET_REQUESTED)) { |
| 4976 | |
| 4977 | /* Request a Global Reset |
| 4978 | * |
| 4979 | * This will start the chip's countdown to the actual full |
| 4980 | * chip reset event, and a warning interrupt to be sent |
| 4981 | * to all PFs, including the requestor. Our handler |
| 4982 | * for the warning interrupt will deal with the shutdown |
| 4983 | * and recovery of the switch setup. |
| 4984 | */ |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 4985 | dev_dbg(&pf->pdev->dev, "GlobalR requested\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4986 | val = rd32(&pf->hw, I40E_GLGEN_RTRIG); |
| 4987 | val |= I40E_GLGEN_RTRIG_GLOBR_MASK; |
| 4988 | wr32(&pf->hw, I40E_GLGEN_RTRIG, val); |
| 4989 | |
| 4990 | } else if (reset_flags & (1 << __I40E_CORE_RESET_REQUESTED)) { |
| 4991 | |
| 4992 | /* Request a Core Reset |
| 4993 | * |
| 4994 | * Same as Global Reset, except does *not* include the MAC/PHY |
| 4995 | */ |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 4996 | dev_dbg(&pf->pdev->dev, "CoreR requested\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 4997 | val = rd32(&pf->hw, I40E_GLGEN_RTRIG); |
| 4998 | val |= I40E_GLGEN_RTRIG_CORER_MASK; |
| 4999 | wr32(&pf->hw, I40E_GLGEN_RTRIG, val); |
| 5000 | i40e_flush(&pf->hw); |
| 5001 | |
Shannon Nelson | 7823fe3 | 2013-11-16 10:00:45 +0000 | [diff] [blame] | 5002 | } else if (reset_flags & (1 << __I40E_EMP_RESET_REQUESTED)) { |
| 5003 | |
| 5004 | /* Request a Firmware Reset |
| 5005 | * |
| 5006 | * Same as Global reset, plus restarting the |
| 5007 | * embedded firmware engine. |
| 5008 | */ |
| 5009 | /* enable EMP Reset */ |
| 5010 | val = rd32(&pf->hw, I40E_GLGEN_RSTENA_EMP); |
| 5011 | val |= I40E_GLGEN_RSTENA_EMP_EMP_RST_ENA_MASK; |
| 5012 | wr32(&pf->hw, I40E_GLGEN_RSTENA_EMP, val); |
| 5013 | |
| 5014 | /* force the reset */ |
| 5015 | val = rd32(&pf->hw, I40E_GLGEN_RTRIG); |
| 5016 | val |= I40E_GLGEN_RTRIG_EMPFWR_MASK; |
| 5017 | wr32(&pf->hw, I40E_GLGEN_RTRIG, val); |
| 5018 | i40e_flush(&pf->hw); |
| 5019 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5020 | } else if (reset_flags & (1 << __I40E_PF_RESET_REQUESTED)) { |
| 5021 | |
| 5022 | /* Request a PF Reset |
| 5023 | * |
| 5024 | * Resets only the PF-specific registers |
| 5025 | * |
| 5026 | * This goes directly to the tear-down and rebuild of |
| 5027 | * the switch, since we need to do all the recovery as |
| 5028 | * for the Core Reset. |
| 5029 | */ |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5030 | dev_dbg(&pf->pdev->dev, "PFR requested\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5031 | i40e_handle_reset_warning(pf); |
| 5032 | |
| 5033 | } else if (reset_flags & (1 << __I40E_REINIT_REQUESTED)) { |
| 5034 | int v; |
| 5035 | |
| 5036 | /* Find the VSI(s) that requested a re-init */ |
| 5037 | dev_info(&pf->pdev->dev, |
| 5038 | "VSI reinit requested\n"); |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 5039 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5040 | struct i40e_vsi *vsi = pf->vsi[v]; |
| 5041 | if (vsi != NULL && |
| 5042 | test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) { |
| 5043 | i40e_vsi_reinit_locked(pf->vsi[v]); |
| 5044 | clear_bit(__I40E_REINIT_REQUESTED, &vsi->state); |
| 5045 | } |
| 5046 | } |
| 5047 | |
| 5048 | /* no further action needed, so return now */ |
| 5049 | return; |
Neerav Parikh | b5d06f0 | 2014-06-03 23:50:17 +0000 | [diff] [blame] | 5050 | } else if (reset_flags & (1 << __I40E_DOWN_REQUESTED)) { |
| 5051 | int v; |
| 5052 | |
| 5053 | /* Find the VSI(s) that needs to be brought down */ |
| 5054 | dev_info(&pf->pdev->dev, "VSI down requested\n"); |
| 5055 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
| 5056 | struct i40e_vsi *vsi = pf->vsi[v]; |
| 5057 | if (vsi != NULL && |
| 5058 | test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) { |
| 5059 | set_bit(__I40E_DOWN, &vsi->state); |
| 5060 | i40e_down(vsi); |
| 5061 | clear_bit(__I40E_DOWN_REQUESTED, &vsi->state); |
| 5062 | } |
| 5063 | } |
| 5064 | |
| 5065 | /* no further action needed, so return now */ |
| 5066 | return; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5067 | } else { |
| 5068 | dev_info(&pf->pdev->dev, |
| 5069 | "bad reset request 0x%08x\n", reset_flags); |
| 5070 | return; |
| 5071 | } |
| 5072 | } |
| 5073 | |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5074 | #ifdef CONFIG_I40E_DCB |
| 5075 | /** |
| 5076 | * i40e_dcb_need_reconfig - Check if DCB needs reconfig |
| 5077 | * @pf: board private structure |
| 5078 | * @old_cfg: current DCB config |
| 5079 | * @new_cfg: new DCB config |
| 5080 | **/ |
| 5081 | bool i40e_dcb_need_reconfig(struct i40e_pf *pf, |
| 5082 | struct i40e_dcbx_config *old_cfg, |
| 5083 | struct i40e_dcbx_config *new_cfg) |
| 5084 | { |
| 5085 | bool need_reconfig = false; |
| 5086 | |
| 5087 | /* Check if ETS configuration has changed */ |
| 5088 | if (memcmp(&new_cfg->etscfg, |
| 5089 | &old_cfg->etscfg, |
| 5090 | sizeof(new_cfg->etscfg))) { |
| 5091 | /* If Priority Table has changed reconfig is needed */ |
| 5092 | if (memcmp(&new_cfg->etscfg.prioritytable, |
| 5093 | &old_cfg->etscfg.prioritytable, |
| 5094 | sizeof(new_cfg->etscfg.prioritytable))) { |
| 5095 | need_reconfig = true; |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5096 | dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n"); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5097 | } |
| 5098 | |
| 5099 | if (memcmp(&new_cfg->etscfg.tcbwtable, |
| 5100 | &old_cfg->etscfg.tcbwtable, |
| 5101 | sizeof(new_cfg->etscfg.tcbwtable))) |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5102 | dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n"); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5103 | |
| 5104 | if (memcmp(&new_cfg->etscfg.tsatable, |
| 5105 | &old_cfg->etscfg.tsatable, |
| 5106 | sizeof(new_cfg->etscfg.tsatable))) |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5107 | dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n"); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5108 | } |
| 5109 | |
| 5110 | /* Check if PFC configuration has changed */ |
| 5111 | if (memcmp(&new_cfg->pfc, |
| 5112 | &old_cfg->pfc, |
| 5113 | sizeof(new_cfg->pfc))) { |
| 5114 | need_reconfig = true; |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5115 | dev_dbg(&pf->pdev->dev, "PFC config change detected.\n"); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5116 | } |
| 5117 | |
| 5118 | /* Check if APP Table has changed */ |
| 5119 | if (memcmp(&new_cfg->app, |
| 5120 | &old_cfg->app, |
Dave Jones | 3d9667a | 2014-01-27 23:11:09 -0500 | [diff] [blame] | 5121 | sizeof(new_cfg->app))) { |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5122 | need_reconfig = true; |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5123 | dev_dbg(&pf->pdev->dev, "APP Table change detected.\n"); |
Dave Jones | 3d9667a | 2014-01-27 23:11:09 -0500 | [diff] [blame] | 5124 | } |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5125 | |
Neerav Parikh | 9fa61dd | 2014-11-12 00:18:25 +0000 | [diff] [blame] | 5126 | dev_dbg(&pf->pdev->dev, "%s: need_reconfig=%d\n", __func__, |
| 5127 | need_reconfig); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5128 | return need_reconfig; |
| 5129 | } |
| 5130 | |
| 5131 | /** |
| 5132 | * i40e_handle_lldp_event - Handle LLDP Change MIB event |
| 5133 | * @pf: board private structure |
| 5134 | * @e: event info posted on ARQ |
| 5135 | **/ |
| 5136 | static int i40e_handle_lldp_event(struct i40e_pf *pf, |
| 5137 | struct i40e_arq_event_info *e) |
| 5138 | { |
| 5139 | struct i40e_aqc_lldp_get_mib *mib = |
| 5140 | (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw; |
| 5141 | struct i40e_hw *hw = &pf->hw; |
| 5142 | struct i40e_dcbx_config *dcbx_cfg = &hw->local_dcbx_config; |
| 5143 | struct i40e_dcbx_config tmp_dcbx_cfg; |
| 5144 | bool need_reconfig = false; |
| 5145 | int ret = 0; |
| 5146 | u8 type; |
| 5147 | |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 5148 | /* Not DCB capable or capability disabled */ |
| 5149 | if (!(pf->flags & I40E_FLAG_DCB_CAPABLE)) |
| 5150 | return ret; |
| 5151 | |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5152 | /* Ignore if event is not for Nearest Bridge */ |
| 5153 | type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT) |
| 5154 | & I40E_AQ_LLDP_BRIDGE_TYPE_MASK); |
Neerav Parikh | 9fa61dd | 2014-11-12 00:18:25 +0000 | [diff] [blame] | 5155 | dev_dbg(&pf->pdev->dev, |
| 5156 | "%s: LLDP event mib bridge type 0x%x\n", __func__, type); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5157 | if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE) |
| 5158 | return ret; |
| 5159 | |
| 5160 | /* Check MIB Type and return if event for Remote MIB update */ |
| 5161 | type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK; |
Neerav Parikh | 9fa61dd | 2014-11-12 00:18:25 +0000 | [diff] [blame] | 5162 | dev_dbg(&pf->pdev->dev, |
| 5163 | "%s: LLDP event mib type %s\n", __func__, |
| 5164 | type ? "remote" : "local"); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5165 | if (type == I40E_AQ_LLDP_MIB_REMOTE) { |
| 5166 | /* Update the remote cached instance and return */ |
| 5167 | ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE, |
| 5168 | I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE, |
| 5169 | &hw->remote_dcbx_config); |
| 5170 | goto exit; |
| 5171 | } |
| 5172 | |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5173 | memset(&tmp_dcbx_cfg, 0, sizeof(tmp_dcbx_cfg)); |
Neerav Parikh | 9fa61dd | 2014-11-12 00:18:25 +0000 | [diff] [blame] | 5174 | /* Store the old configuration */ |
| 5175 | tmp_dcbx_cfg = *dcbx_cfg; |
| 5176 | |
| 5177 | /* Get updated DCBX data from firmware */ |
| 5178 | ret = i40e_get_dcb_config(&pf->hw); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5179 | if (ret) { |
Neerav Parikh | 9fa61dd | 2014-11-12 00:18:25 +0000 | [diff] [blame] | 5180 | dev_info(&pf->pdev->dev, "Failed querying DCB configuration data from firmware.\n"); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5181 | goto exit; |
| 5182 | } |
| 5183 | |
| 5184 | /* No change detected in DCBX configs */ |
| 5185 | if (!memcmp(&tmp_dcbx_cfg, dcbx_cfg, sizeof(tmp_dcbx_cfg))) { |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5186 | dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n"); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5187 | goto exit; |
| 5188 | } |
| 5189 | |
Neerav Parikh | 9fa61dd | 2014-11-12 00:18:25 +0000 | [diff] [blame] | 5190 | need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg, dcbx_cfg); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5191 | |
Neerav Parikh | 9fa61dd | 2014-11-12 00:18:25 +0000 | [diff] [blame] | 5192 | i40e_dcbnl_flush_apps(pf, dcbx_cfg); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5193 | |
| 5194 | if (!need_reconfig) |
| 5195 | goto exit; |
| 5196 | |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 5197 | /* Enable DCB tagging only when more than one TC */ |
| 5198 | if (i40e_dcb_get_num_tc(dcbx_cfg) > 1) |
| 5199 | pf->flags |= I40E_FLAG_DCB_ENABLED; |
| 5200 | else |
| 5201 | pf->flags &= ~I40E_FLAG_DCB_ENABLED; |
| 5202 | |
Neerav Parikh | 69129dc | 2014-11-12 00:18:46 +0000 | [diff] [blame] | 5203 | set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5204 | /* Reconfiguration needed quiesce all VSIs */ |
| 5205 | i40e_pf_quiesce_all_vsi(pf); |
| 5206 | |
| 5207 | /* Changes in configuration update VEB/VSI */ |
| 5208 | i40e_dcb_reconfigure(pf); |
| 5209 | |
Neerav Parikh | 2fd75f3 | 2014-11-12 00:18:20 +0000 | [diff] [blame] | 5210 | ret = i40e_resume_port_tx(pf); |
| 5211 | |
Neerav Parikh | 69129dc | 2014-11-12 00:18:46 +0000 | [diff] [blame] | 5212 | clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state); |
Neerav Parikh | 2fd75f3 | 2014-11-12 00:18:20 +0000 | [diff] [blame] | 5213 | /* In case of error no point in resuming VSIs */ |
Neerav Parikh | 69129dc | 2014-11-12 00:18:46 +0000 | [diff] [blame] | 5214 | if (ret) |
| 5215 | goto exit; |
| 5216 | |
| 5217 | /* Wait for the PF's Tx queues to be disabled */ |
| 5218 | ret = i40e_pf_wait_txq_disabled(pf); |
Neerav Parikh | 2fd75f3 | 2014-11-12 00:18:20 +0000 | [diff] [blame] | 5219 | if (!ret) |
| 5220 | i40e_pf_unquiesce_all_vsi(pf); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5221 | exit: |
| 5222 | return ret; |
| 5223 | } |
| 5224 | #endif /* CONFIG_I40E_DCB */ |
| 5225 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5226 | /** |
Anjali Singhai Jain | 2332618 | 2013-11-26 10:49:22 +0000 | [diff] [blame] | 5227 | * i40e_do_reset_safe - Protected reset path for userland calls. |
| 5228 | * @pf: board private structure |
| 5229 | * @reset_flags: which reset is requested |
| 5230 | * |
| 5231 | **/ |
| 5232 | void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags) |
| 5233 | { |
| 5234 | rtnl_lock(); |
| 5235 | i40e_do_reset(pf, reset_flags); |
| 5236 | rtnl_unlock(); |
| 5237 | } |
| 5238 | |
| 5239 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5240 | * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event |
| 5241 | * @pf: board private structure |
| 5242 | * @e: event info posted on ARQ |
| 5243 | * |
| 5244 | * Handler for LAN Queue Overflow Event generated by the firmware for PF |
| 5245 | * and VF queues |
| 5246 | **/ |
| 5247 | static void i40e_handle_lan_overflow_event(struct i40e_pf *pf, |
| 5248 | struct i40e_arq_event_info *e) |
| 5249 | { |
| 5250 | struct i40e_aqc_lan_overflow *data = |
| 5251 | (struct i40e_aqc_lan_overflow *)&e->desc.params.raw; |
| 5252 | u32 queue = le32_to_cpu(data->prtdcb_rupto); |
| 5253 | u32 qtx_ctl = le32_to_cpu(data->otx_ctl); |
| 5254 | struct i40e_hw *hw = &pf->hw; |
| 5255 | struct i40e_vf *vf; |
| 5256 | u16 vf_id; |
| 5257 | |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5258 | dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n", |
| 5259 | queue, qtx_ctl); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5260 | |
| 5261 | /* Queue belongs to VF, find the VF and issue VF reset */ |
| 5262 | if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK) |
| 5263 | >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) { |
| 5264 | vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK) |
| 5265 | >> I40E_QTX_CTL_VFVM_INDX_SHIFT); |
| 5266 | vf_id -= hw->func_caps.vf_base_id; |
| 5267 | vf = &pf->vf[vf_id]; |
| 5268 | i40e_vc_notify_vf_reset(vf); |
| 5269 | /* Allow VF to process pending reset notification */ |
| 5270 | msleep(20); |
| 5271 | i40e_reset_vf(vf, false); |
| 5272 | } |
| 5273 | } |
| 5274 | |
| 5275 | /** |
| 5276 | * i40e_service_event_complete - Finish up the service event |
| 5277 | * @pf: board private structure |
| 5278 | **/ |
| 5279 | static void i40e_service_event_complete(struct i40e_pf *pf) |
| 5280 | { |
| 5281 | BUG_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state)); |
| 5282 | |
| 5283 | /* flush memory to make sure state is correct before next watchog */ |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 5284 | smp_mb__before_atomic(); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5285 | clear_bit(__I40E_SERVICE_SCHED, &pf->state); |
| 5286 | } |
| 5287 | |
| 5288 | /** |
Anjali Singhai Jain | 1295738 | 2014-06-04 04:22:47 +0000 | [diff] [blame] | 5289 | * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters |
| 5290 | * @pf: board private structure |
| 5291 | **/ |
| 5292 | int i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf) |
| 5293 | { |
| 5294 | int val, fcnt_prog; |
| 5295 | |
| 5296 | val = rd32(&pf->hw, I40E_PFQF_FDSTAT); |
| 5297 | fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK); |
| 5298 | return fcnt_prog; |
| 5299 | } |
| 5300 | |
| 5301 | /** |
| 5302 | * i40e_get_current_fd_count - Get the count of total FD filters programmed |
Anjali Singhai Jain | 55a5e60 | 2014-02-12 06:33:25 +0000 | [diff] [blame] | 5303 | * @pf: board private structure |
| 5304 | **/ |
| 5305 | int i40e_get_current_fd_count(struct i40e_pf *pf) |
| 5306 | { |
| 5307 | int val, fcnt_prog; |
| 5308 | val = rd32(&pf->hw, I40E_PFQF_FDSTAT); |
| 5309 | fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) + |
| 5310 | ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >> |
| 5311 | I40E_PFQF_FDSTAT_BEST_CNT_SHIFT); |
| 5312 | return fcnt_prog; |
| 5313 | } |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 5314 | |
Anjali Singhai Jain | 55a5e60 | 2014-02-12 06:33:25 +0000 | [diff] [blame] | 5315 | /** |
| 5316 | * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled |
| 5317 | * @pf: board private structure |
| 5318 | **/ |
| 5319 | void i40e_fdir_check_and_reenable(struct i40e_pf *pf) |
| 5320 | { |
| 5321 | u32 fcnt_prog, fcnt_avail; |
| 5322 | |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 5323 | if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state)) |
| 5324 | return; |
| 5325 | |
Anjali Singhai Jain | 55a5e60 | 2014-02-12 06:33:25 +0000 | [diff] [blame] | 5326 | /* Check if, FD SB or ATR was auto disabled and if there is enough room |
| 5327 | * to re-enable |
| 5328 | */ |
Anjali Singhai Jain | 1295738 | 2014-06-04 04:22:47 +0000 | [diff] [blame] | 5329 | fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf); |
| 5330 | fcnt_avail = pf->fdir_pf_filter_count; |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 5331 | if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) || |
| 5332 | (pf->fd_add_err == 0) || |
| 5333 | (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) { |
Anjali Singhai Jain | 55a5e60 | 2014-02-12 06:33:25 +0000 | [diff] [blame] | 5334 | if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) && |
| 5335 | (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) { |
| 5336 | pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED; |
| 5337 | dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n"); |
| 5338 | } |
| 5339 | } |
| 5340 | /* Wait for some more space to be available to turn on ATR */ |
| 5341 | if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) { |
| 5342 | if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) && |
| 5343 | (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) { |
| 5344 | pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED; |
| 5345 | dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n"); |
| 5346 | } |
| 5347 | } |
| 5348 | } |
| 5349 | |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 5350 | #define I40E_MIN_FD_FLUSH_INTERVAL 10 |
| 5351 | /** |
| 5352 | * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB |
| 5353 | * @pf: board private structure |
| 5354 | **/ |
| 5355 | static void i40e_fdir_flush_and_replay(struct i40e_pf *pf) |
| 5356 | { |
| 5357 | int flush_wait_retry = 50; |
| 5358 | int reg; |
| 5359 | |
Akeem G Abodunrin | 1790ed0 | 2014-10-17 03:14:41 +0000 | [diff] [blame] | 5360 | if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))) |
| 5361 | return; |
| 5362 | |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 5363 | if (time_after(jiffies, pf->fd_flush_timestamp + |
| 5364 | (I40E_MIN_FD_FLUSH_INTERVAL * HZ))) { |
| 5365 | set_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state); |
| 5366 | pf->fd_flush_timestamp = jiffies; |
| 5367 | pf->auto_disable_flags |= I40E_FLAG_FD_SB_ENABLED; |
| 5368 | pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED; |
| 5369 | /* flush all filters */ |
| 5370 | wr32(&pf->hw, I40E_PFQF_CTL_1, |
| 5371 | I40E_PFQF_CTL_1_CLEARFDTABLE_MASK); |
| 5372 | i40e_flush(&pf->hw); |
Anjali Singhai Jain | 60793f4a | 2014-07-09 07:46:23 +0000 | [diff] [blame] | 5373 | pf->fd_flush_cnt++; |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 5374 | pf->fd_add_err = 0; |
| 5375 | do { |
| 5376 | /* Check FD flush status every 5-6msec */ |
| 5377 | usleep_range(5000, 6000); |
| 5378 | reg = rd32(&pf->hw, I40E_PFQF_CTL_1); |
| 5379 | if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK)) |
| 5380 | break; |
| 5381 | } while (flush_wait_retry--); |
| 5382 | if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) { |
| 5383 | dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n"); |
| 5384 | } else { |
| 5385 | /* replay sideband filters */ |
| 5386 | i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]); |
| 5387 | |
| 5388 | pf->flags |= I40E_FLAG_FD_ATR_ENABLED; |
| 5389 | pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED; |
| 5390 | pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED; |
| 5391 | clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state); |
| 5392 | dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n"); |
| 5393 | } |
| 5394 | } |
| 5395 | } |
| 5396 | |
| 5397 | /** |
| 5398 | * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed |
| 5399 | * @pf: board private structure |
| 5400 | **/ |
| 5401 | int i40e_get_current_atr_cnt(struct i40e_pf *pf) |
| 5402 | { |
| 5403 | return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters; |
| 5404 | } |
| 5405 | |
| 5406 | /* We can see up to 256 filter programming desc in transit if the filters are |
| 5407 | * being applied really fast; before we see the first |
| 5408 | * filter miss error on Rx queue 0. Accumulating enough error messages before |
| 5409 | * reacting will make sure we don't cause flush too often. |
| 5410 | */ |
| 5411 | #define I40E_MAX_FD_PROGRAM_ERROR 256 |
| 5412 | |
Anjali Singhai Jain | 55a5e60 | 2014-02-12 06:33:25 +0000 | [diff] [blame] | 5413 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5414 | * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table |
| 5415 | * @pf: board private structure |
| 5416 | **/ |
| 5417 | static void i40e_fdir_reinit_subtask(struct i40e_pf *pf) |
| 5418 | { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5419 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5420 | /* if interface is down do nothing */ |
| 5421 | if (test_bit(__I40E_DOWN, &pf->state)) |
| 5422 | return; |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 5423 | |
Akeem G Abodunrin | 1790ed0 | 2014-10-17 03:14:41 +0000 | [diff] [blame] | 5424 | if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))) |
| 5425 | return; |
| 5426 | |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 5427 | if ((pf->fd_add_err >= I40E_MAX_FD_PROGRAM_ERROR) && |
| 5428 | (i40e_get_current_atr_cnt(pf) >= pf->fd_atr_cnt) && |
| 5429 | (i40e_get_current_atr_cnt(pf) > pf->fdir_pf_filter_count)) |
| 5430 | i40e_fdir_flush_and_replay(pf); |
| 5431 | |
Anjali Singhai Jain | 55a5e60 | 2014-02-12 06:33:25 +0000 | [diff] [blame] | 5432 | i40e_fdir_check_and_reenable(pf); |
| 5433 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5434 | } |
| 5435 | |
| 5436 | /** |
| 5437 | * i40e_vsi_link_event - notify VSI of a link event |
| 5438 | * @vsi: vsi to be notified |
| 5439 | * @link_up: link up or down |
| 5440 | **/ |
| 5441 | static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up) |
| 5442 | { |
Jesse Brandeburg | 32b5b81 | 2014-08-12 06:33:14 +0000 | [diff] [blame] | 5443 | if (!vsi || test_bit(__I40E_DOWN, &vsi->state)) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5444 | return; |
| 5445 | |
| 5446 | switch (vsi->type) { |
| 5447 | case I40E_VSI_MAIN: |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 5448 | #ifdef I40E_FCOE |
| 5449 | case I40E_VSI_FCOE: |
| 5450 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5451 | if (!vsi->netdev || !vsi->netdev_registered) |
| 5452 | break; |
| 5453 | |
| 5454 | if (link_up) { |
| 5455 | netif_carrier_on(vsi->netdev); |
| 5456 | netif_tx_wake_all_queues(vsi->netdev); |
| 5457 | } else { |
| 5458 | netif_carrier_off(vsi->netdev); |
| 5459 | netif_tx_stop_all_queues(vsi->netdev); |
| 5460 | } |
| 5461 | break; |
| 5462 | |
| 5463 | case I40E_VSI_SRIOV: |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5464 | case I40E_VSI_VMDQ2: |
| 5465 | case I40E_VSI_CTRL: |
| 5466 | case I40E_VSI_MIRROR: |
| 5467 | default: |
| 5468 | /* there is no notification for other VSIs */ |
| 5469 | break; |
| 5470 | } |
| 5471 | } |
| 5472 | |
| 5473 | /** |
| 5474 | * i40e_veb_link_event - notify elements on the veb of a link event |
| 5475 | * @veb: veb to be notified |
| 5476 | * @link_up: link up or down |
| 5477 | **/ |
| 5478 | static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up) |
| 5479 | { |
| 5480 | struct i40e_pf *pf; |
| 5481 | int i; |
| 5482 | |
| 5483 | if (!veb || !veb->pf) |
| 5484 | return; |
| 5485 | pf = veb->pf; |
| 5486 | |
| 5487 | /* depth first... */ |
| 5488 | for (i = 0; i < I40E_MAX_VEB; i++) |
| 5489 | if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid)) |
| 5490 | i40e_veb_link_event(pf->veb[i], link_up); |
| 5491 | |
| 5492 | /* ... now the local VSIs */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 5493 | for (i = 0; i < pf->num_alloc_vsi; i++) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5494 | if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid)) |
| 5495 | i40e_vsi_link_event(pf->vsi[i], link_up); |
| 5496 | } |
| 5497 | |
| 5498 | /** |
| 5499 | * i40e_link_event - Update netif_carrier status |
| 5500 | * @pf: board private structure |
| 5501 | **/ |
| 5502 | static void i40e_link_event(struct i40e_pf *pf) |
| 5503 | { |
| 5504 | bool new_link, old_link; |
Mitch Williams | 320684c | 2014-10-17 03:14:43 +0000 | [diff] [blame] | 5505 | struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi]; |
Catherine Sullivan | fef59dd | 2014-12-11 07:06:33 +0000 | [diff] [blame^] | 5506 | u8 new_link_speed, old_link_speed; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5507 | |
Jesse Brandeburg | 1e701e0 | 2014-09-13 07:40:42 +0000 | [diff] [blame] | 5508 | /* set this to force the get_link_status call to refresh state */ |
| 5509 | pf->hw.phy.get_link_info = true; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5510 | |
Jesse Brandeburg | 1e701e0 | 2014-09-13 07:40:42 +0000 | [diff] [blame] | 5511 | old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP); |
| 5512 | new_link = i40e_get_link_status(&pf->hw); |
Catherine Sullivan | fef59dd | 2014-12-11 07:06:33 +0000 | [diff] [blame^] | 5513 | old_link_speed = pf->hw.phy.link_info_old.link_speed; |
| 5514 | new_link_speed = pf->hw.phy.link_info.link_speed; |
Jesse Brandeburg | 1e701e0 | 2014-09-13 07:40:42 +0000 | [diff] [blame] | 5515 | |
| 5516 | if (new_link == old_link && |
Catherine Sullivan | fef59dd | 2014-12-11 07:06:33 +0000 | [diff] [blame^] | 5517 | new_link_speed == old_link_speed && |
Mitch Williams | 320684c | 2014-10-17 03:14:43 +0000 | [diff] [blame] | 5518 | (test_bit(__I40E_DOWN, &vsi->state) || |
| 5519 | new_link == netif_carrier_ok(vsi->netdev))) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5520 | return; |
Mitch Williams | 320684c | 2014-10-17 03:14:43 +0000 | [diff] [blame] | 5521 | |
| 5522 | if (!test_bit(__I40E_DOWN, &vsi->state)) |
| 5523 | i40e_print_link_message(vsi, new_link); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5524 | |
| 5525 | /* Notify the base of the switch tree connected to |
| 5526 | * the link. Floating VEBs are not notified. |
| 5527 | */ |
| 5528 | if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb]) |
| 5529 | i40e_veb_link_event(pf->veb[pf->lan_veb], new_link); |
| 5530 | else |
Mitch Williams | 320684c | 2014-10-17 03:14:43 +0000 | [diff] [blame] | 5531 | i40e_vsi_link_event(vsi, new_link); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5532 | |
| 5533 | if (pf->vf) |
| 5534 | i40e_vc_notify_link_state(pf); |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 5535 | |
| 5536 | if (pf->flags & I40E_FLAG_PTP) |
| 5537 | i40e_ptp_set_increment(pf); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5538 | } |
| 5539 | |
| 5540 | /** |
| 5541 | * i40e_check_hang_subtask - Check for hung queues and dropped interrupts |
| 5542 | * @pf: board private structure |
| 5543 | * |
| 5544 | * Set the per-queue flags to request a check for stuck queues in the irq |
| 5545 | * clean functions, then force interrupts to be sure the irq clean is called. |
| 5546 | **/ |
| 5547 | static void i40e_check_hang_subtask(struct i40e_pf *pf) |
| 5548 | { |
| 5549 | int i, v; |
| 5550 | |
| 5551 | /* If we're down or resetting, just bail */ |
| 5552 | if (test_bit(__I40E_CONFIG_BUSY, &pf->state)) |
| 5553 | return; |
| 5554 | |
| 5555 | /* for each VSI/netdev |
| 5556 | * for each Tx queue |
| 5557 | * set the check flag |
| 5558 | * for each q_vector |
| 5559 | * force an interrupt |
| 5560 | */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 5561 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5562 | struct i40e_vsi *vsi = pf->vsi[v]; |
| 5563 | int armed = 0; |
| 5564 | |
| 5565 | if (!pf->vsi[v] || |
| 5566 | test_bit(__I40E_DOWN, &vsi->state) || |
| 5567 | (vsi->netdev && !netif_carrier_ok(vsi->netdev))) |
| 5568 | continue; |
| 5569 | |
| 5570 | for (i = 0; i < vsi->num_queue_pairs; i++) { |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 5571 | set_check_for_tx_hang(vsi->tx_rings[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5572 | if (test_bit(__I40E_HANG_CHECK_ARMED, |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 5573 | &vsi->tx_rings[i]->state)) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5574 | armed++; |
| 5575 | } |
| 5576 | |
| 5577 | if (armed) { |
| 5578 | if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) { |
| 5579 | wr32(&vsi->back->hw, I40E_PFINT_DYN_CTL0, |
| 5580 | (I40E_PFINT_DYN_CTL0_INTENA_MASK | |
Shannon Nelson | 5d1ff106 | 2014-11-11 20:04:35 +0000 | [diff] [blame] | 5581 | I40E_PFINT_DYN_CTL0_SWINT_TRIG_MASK | |
| 5582 | I40E_PFINT_DYN_CTL0_ITR_INDX_MASK | |
| 5583 | I40E_PFINT_DYN_CTL0_SW_ITR_INDX_ENA_MASK | |
| 5584 | I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK)); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5585 | } else { |
| 5586 | u16 vec = vsi->base_vector - 1; |
| 5587 | u32 val = (I40E_PFINT_DYN_CTLN_INTENA_MASK | |
Shannon Nelson | 5d1ff106 | 2014-11-11 20:04:35 +0000 | [diff] [blame] | 5588 | I40E_PFINT_DYN_CTLN_SWINT_TRIG_MASK | |
| 5589 | I40E_PFINT_DYN_CTLN_ITR_INDX_MASK | |
| 5590 | I40E_PFINT_DYN_CTLN_SW_ITR_INDX_ENA_MASK | |
| 5591 | I40E_PFINT_DYN_CTLN_SW_ITR_INDX_MASK); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5592 | for (i = 0; i < vsi->num_q_vectors; i++, vec++) |
| 5593 | wr32(&vsi->back->hw, |
| 5594 | I40E_PFINT_DYN_CTLN(vec), val); |
| 5595 | } |
| 5596 | i40e_flush(&vsi->back->hw); |
| 5597 | } |
| 5598 | } |
| 5599 | } |
| 5600 | |
| 5601 | /** |
Shannon Nelson | 2153671 | 2014-10-25 10:35:25 +0000 | [diff] [blame] | 5602 | * i40e_watchdog_subtask - periodic checks not using event driven response |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5603 | * @pf: board private structure |
| 5604 | **/ |
| 5605 | static void i40e_watchdog_subtask(struct i40e_pf *pf) |
| 5606 | { |
| 5607 | int i; |
| 5608 | |
| 5609 | /* if interface is down do nothing */ |
| 5610 | if (test_bit(__I40E_DOWN, &pf->state) || |
| 5611 | test_bit(__I40E_CONFIG_BUSY, &pf->state)) |
| 5612 | return; |
| 5613 | |
Shannon Nelson | 2153671 | 2014-10-25 10:35:25 +0000 | [diff] [blame] | 5614 | /* make sure we don't do these things too often */ |
| 5615 | if (time_before(jiffies, (pf->service_timer_previous + |
| 5616 | pf->service_timer_period))) |
| 5617 | return; |
| 5618 | pf->service_timer_previous = jiffies; |
| 5619 | |
| 5620 | i40e_check_hang_subtask(pf); |
| 5621 | i40e_link_event(pf); |
| 5622 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5623 | /* Update the stats for active netdevs so the network stack |
| 5624 | * can look at updated numbers whenever it cares to |
| 5625 | */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 5626 | for (i = 0; i < pf->num_alloc_vsi; i++) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5627 | if (pf->vsi[i] && pf->vsi[i]->netdev) |
| 5628 | i40e_update_stats(pf->vsi[i]); |
| 5629 | |
| 5630 | /* Update the stats for the active switching components */ |
| 5631 | for (i = 0; i < I40E_MAX_VEB; i++) |
| 5632 | if (pf->veb[i]) |
| 5633 | i40e_update_veb_stats(pf->veb[i]); |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 5634 | |
| 5635 | i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5636 | } |
| 5637 | |
| 5638 | /** |
| 5639 | * i40e_reset_subtask - Set up for resetting the device and driver |
| 5640 | * @pf: board private structure |
| 5641 | **/ |
| 5642 | static void i40e_reset_subtask(struct i40e_pf *pf) |
| 5643 | { |
| 5644 | u32 reset_flags = 0; |
| 5645 | |
Anjali Singhai Jain | 2332618 | 2013-11-26 10:49:22 +0000 | [diff] [blame] | 5646 | rtnl_lock(); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5647 | if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) { |
| 5648 | reset_flags |= (1 << __I40E_REINIT_REQUESTED); |
| 5649 | clear_bit(__I40E_REINIT_REQUESTED, &pf->state); |
| 5650 | } |
| 5651 | if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) { |
| 5652 | reset_flags |= (1 << __I40E_PF_RESET_REQUESTED); |
| 5653 | clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state); |
| 5654 | } |
| 5655 | if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) { |
| 5656 | reset_flags |= (1 << __I40E_CORE_RESET_REQUESTED); |
| 5657 | clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state); |
| 5658 | } |
| 5659 | if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) { |
| 5660 | reset_flags |= (1 << __I40E_GLOBAL_RESET_REQUESTED); |
| 5661 | clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state); |
| 5662 | } |
Neerav Parikh | b5d06f0 | 2014-06-03 23:50:17 +0000 | [diff] [blame] | 5663 | if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) { |
| 5664 | reset_flags |= (1 << __I40E_DOWN_REQUESTED); |
| 5665 | clear_bit(__I40E_DOWN_REQUESTED, &pf->state); |
| 5666 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5667 | |
| 5668 | /* If there's a recovery already waiting, it takes |
| 5669 | * precedence before starting a new reset sequence. |
| 5670 | */ |
| 5671 | if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) { |
| 5672 | i40e_handle_reset_warning(pf); |
Anjali Singhai Jain | 2332618 | 2013-11-26 10:49:22 +0000 | [diff] [blame] | 5673 | goto unlock; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5674 | } |
| 5675 | |
| 5676 | /* If we're already down or resetting, just bail */ |
| 5677 | if (reset_flags && |
| 5678 | !test_bit(__I40E_DOWN, &pf->state) && |
| 5679 | !test_bit(__I40E_CONFIG_BUSY, &pf->state)) |
| 5680 | i40e_do_reset(pf, reset_flags); |
Anjali Singhai Jain | 2332618 | 2013-11-26 10:49:22 +0000 | [diff] [blame] | 5681 | |
| 5682 | unlock: |
| 5683 | rtnl_unlock(); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5684 | } |
| 5685 | |
| 5686 | /** |
| 5687 | * i40e_handle_link_event - Handle link event |
| 5688 | * @pf: board private structure |
| 5689 | * @e: event info posted on ARQ |
| 5690 | **/ |
| 5691 | static void i40e_handle_link_event(struct i40e_pf *pf, |
| 5692 | struct i40e_arq_event_info *e) |
| 5693 | { |
| 5694 | struct i40e_hw *hw = &pf->hw; |
| 5695 | struct i40e_aqc_get_link_status *status = |
| 5696 | (struct i40e_aqc_get_link_status *)&e->desc.params.raw; |
| 5697 | struct i40e_link_status *hw_link_info = &hw->phy.link_info; |
| 5698 | |
| 5699 | /* save off old link status information */ |
| 5700 | memcpy(&pf->hw.phy.link_info_old, hw_link_info, |
| 5701 | sizeof(pf->hw.phy.link_info_old)); |
| 5702 | |
Jesse Brandeburg | 1e701e0 | 2014-09-13 07:40:42 +0000 | [diff] [blame] | 5703 | /* Do a new status request to re-enable LSE reporting |
| 5704 | * and load new status information into the hw struct |
| 5705 | * This completely ignores any state information |
| 5706 | * in the ARQ event info, instead choosing to always |
| 5707 | * issue the AQ update link status command. |
| 5708 | */ |
| 5709 | i40e_link_event(pf); |
| 5710 | |
Carolyn Wyborny | 7b592f6 | 2014-07-10 07:58:19 +0000 | [diff] [blame] | 5711 | /* check for unqualified module, if link is down */ |
| 5712 | if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) && |
| 5713 | (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) && |
| 5714 | (!(status->link_info & I40E_AQ_LINK_UP))) |
| 5715 | dev_err(&pf->pdev->dev, |
| 5716 | "The driver failed to link because an unqualified module was detected.\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5717 | } |
| 5718 | |
| 5719 | /** |
| 5720 | * i40e_clean_adminq_subtask - Clean the AdminQ rings |
| 5721 | * @pf: board private structure |
| 5722 | **/ |
| 5723 | static void i40e_clean_adminq_subtask(struct i40e_pf *pf) |
| 5724 | { |
| 5725 | struct i40e_arq_event_info event; |
| 5726 | struct i40e_hw *hw = &pf->hw; |
| 5727 | u16 pending, i = 0; |
| 5728 | i40e_status ret; |
| 5729 | u16 opcode; |
Shannon Nelson | 86df242 | 2014-05-20 08:01:35 +0000 | [diff] [blame] | 5730 | u32 oldval; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5731 | u32 val; |
| 5732 | |
Anjali Singhai Jain | a316f65 | 2014-07-12 07:28:25 +0000 | [diff] [blame] | 5733 | /* Do not run clean AQ when PF reset fails */ |
| 5734 | if (test_bit(__I40E_RESET_FAILED, &pf->state)) |
| 5735 | return; |
| 5736 | |
Shannon Nelson | 86df242 | 2014-05-20 08:01:35 +0000 | [diff] [blame] | 5737 | /* check for error indications */ |
| 5738 | val = rd32(&pf->hw, pf->hw.aq.arq.len); |
| 5739 | oldval = val; |
| 5740 | if (val & I40E_PF_ARQLEN_ARQVFE_MASK) { |
| 5741 | dev_info(&pf->pdev->dev, "ARQ VF Error detected\n"); |
| 5742 | val &= ~I40E_PF_ARQLEN_ARQVFE_MASK; |
| 5743 | } |
| 5744 | if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) { |
| 5745 | dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n"); |
| 5746 | val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK; |
| 5747 | } |
| 5748 | if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) { |
| 5749 | dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n"); |
| 5750 | val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK; |
| 5751 | } |
| 5752 | if (oldval != val) |
| 5753 | wr32(&pf->hw, pf->hw.aq.arq.len, val); |
| 5754 | |
| 5755 | val = rd32(&pf->hw, pf->hw.aq.asq.len); |
| 5756 | oldval = val; |
| 5757 | if (val & I40E_PF_ATQLEN_ATQVFE_MASK) { |
| 5758 | dev_info(&pf->pdev->dev, "ASQ VF Error detected\n"); |
| 5759 | val &= ~I40E_PF_ATQLEN_ATQVFE_MASK; |
| 5760 | } |
| 5761 | if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) { |
| 5762 | dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n"); |
| 5763 | val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK; |
| 5764 | } |
| 5765 | if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) { |
| 5766 | dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n"); |
| 5767 | val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK; |
| 5768 | } |
| 5769 | if (oldval != val) |
| 5770 | wr32(&pf->hw, pf->hw.aq.asq.len, val); |
| 5771 | |
Mitch Williams | 1001dc3 | 2014-11-11 20:02:19 +0000 | [diff] [blame] | 5772 | event.buf_len = I40E_MAX_AQ_BUF_SIZE; |
| 5773 | event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5774 | if (!event.msg_buf) |
| 5775 | return; |
| 5776 | |
| 5777 | do { |
| 5778 | ret = i40e_clean_arq_element(hw, &event, &pending); |
Mitch Williams | 5649797 | 2014-06-04 08:45:18 +0000 | [diff] [blame] | 5779 | if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5780 | break; |
Mitch Williams | 5649797 | 2014-06-04 08:45:18 +0000 | [diff] [blame] | 5781 | else if (ret) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5782 | dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret); |
| 5783 | break; |
| 5784 | } |
| 5785 | |
| 5786 | opcode = le16_to_cpu(event.desc.opcode); |
| 5787 | switch (opcode) { |
| 5788 | |
| 5789 | case i40e_aqc_opc_get_link_status: |
| 5790 | i40e_handle_link_event(pf, &event); |
| 5791 | break; |
| 5792 | case i40e_aqc_opc_send_msg_to_pf: |
| 5793 | ret = i40e_vc_process_vf_msg(pf, |
| 5794 | le16_to_cpu(event.desc.retval), |
| 5795 | le32_to_cpu(event.desc.cookie_high), |
| 5796 | le32_to_cpu(event.desc.cookie_low), |
| 5797 | event.msg_buf, |
Mitch Williams | 1001dc3 | 2014-11-11 20:02:19 +0000 | [diff] [blame] | 5798 | event.msg_len); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5799 | break; |
| 5800 | case i40e_aqc_opc_lldp_update_mib: |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5801 | dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n"); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 5802 | #ifdef CONFIG_I40E_DCB |
| 5803 | rtnl_lock(); |
| 5804 | ret = i40e_handle_lldp_event(pf, &event); |
| 5805 | rtnl_unlock(); |
| 5806 | #endif /* CONFIG_I40E_DCB */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5807 | break; |
| 5808 | case i40e_aqc_opc_event_lan_overflow: |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 5809 | dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5810 | i40e_handle_lan_overflow_event(pf, &event); |
| 5811 | break; |
Shannon Nelson | 0467bc9 | 2013-12-18 13:45:58 +0000 | [diff] [blame] | 5812 | case i40e_aqc_opc_send_msg_to_peer: |
| 5813 | dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n"); |
| 5814 | break; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5815 | default: |
| 5816 | dev_info(&pf->pdev->dev, |
Shannon Nelson | 0467bc9 | 2013-12-18 13:45:58 +0000 | [diff] [blame] | 5817 | "ARQ Error: Unknown event 0x%04x received\n", |
| 5818 | opcode); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5819 | break; |
| 5820 | } |
| 5821 | } while (pending && (i++ < pf->adminq_work_limit)); |
| 5822 | |
| 5823 | clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state); |
| 5824 | /* re-enable Admin queue interrupt cause */ |
| 5825 | val = rd32(hw, I40E_PFINT_ICR0_ENA); |
| 5826 | val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK; |
| 5827 | wr32(hw, I40E_PFINT_ICR0_ENA, val); |
| 5828 | i40e_flush(hw); |
| 5829 | |
| 5830 | kfree(event.msg_buf); |
| 5831 | } |
| 5832 | |
| 5833 | /** |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 5834 | * i40e_verify_eeprom - make sure eeprom is good to use |
| 5835 | * @pf: board private structure |
| 5836 | **/ |
| 5837 | static void i40e_verify_eeprom(struct i40e_pf *pf) |
| 5838 | { |
| 5839 | int err; |
| 5840 | |
| 5841 | err = i40e_diag_eeprom_test(&pf->hw); |
| 5842 | if (err) { |
| 5843 | /* retry in case of garbage read */ |
| 5844 | err = i40e_diag_eeprom_test(&pf->hw); |
| 5845 | if (err) { |
| 5846 | dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n", |
| 5847 | err); |
| 5848 | set_bit(__I40E_BAD_EEPROM, &pf->state); |
| 5849 | } |
| 5850 | } |
| 5851 | |
| 5852 | if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) { |
| 5853 | dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n"); |
| 5854 | clear_bit(__I40E_BAD_EEPROM, &pf->state); |
| 5855 | } |
| 5856 | } |
| 5857 | |
| 5858 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5859 | * i40e_reconstitute_veb - rebuild the VEB and anything connected to it |
| 5860 | * @veb: pointer to the VEB instance |
| 5861 | * |
| 5862 | * This is a recursive function that first builds the attached VSIs then |
| 5863 | * recurses in to build the next layer of VEB. We track the connections |
| 5864 | * through our own index numbers because the seid's from the HW could |
| 5865 | * change across the reset. |
| 5866 | **/ |
| 5867 | static int i40e_reconstitute_veb(struct i40e_veb *veb) |
| 5868 | { |
| 5869 | struct i40e_vsi *ctl_vsi = NULL; |
| 5870 | struct i40e_pf *pf = veb->pf; |
| 5871 | int v, veb_idx; |
| 5872 | int ret; |
| 5873 | |
| 5874 | /* build VSI that owns this VEB, temporarily attached to base VEB */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 5875 | for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5876 | if (pf->vsi[v] && |
| 5877 | pf->vsi[v]->veb_idx == veb->idx && |
| 5878 | pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) { |
| 5879 | ctl_vsi = pf->vsi[v]; |
| 5880 | break; |
| 5881 | } |
| 5882 | } |
| 5883 | if (!ctl_vsi) { |
| 5884 | dev_info(&pf->pdev->dev, |
| 5885 | "missing owner VSI for veb_idx %d\n", veb->idx); |
| 5886 | ret = -ENOENT; |
| 5887 | goto end_reconstitute; |
| 5888 | } |
| 5889 | if (ctl_vsi != pf->vsi[pf->lan_vsi]) |
| 5890 | ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid; |
| 5891 | ret = i40e_add_vsi(ctl_vsi); |
| 5892 | if (ret) { |
| 5893 | dev_info(&pf->pdev->dev, |
| 5894 | "rebuild of owner VSI failed: %d\n", ret); |
| 5895 | goto end_reconstitute; |
| 5896 | } |
| 5897 | i40e_vsi_reset_stats(ctl_vsi); |
| 5898 | |
| 5899 | /* create the VEB in the switch and move the VSI onto the VEB */ |
| 5900 | ret = i40e_add_veb(veb, ctl_vsi); |
| 5901 | if (ret) |
| 5902 | goto end_reconstitute; |
| 5903 | |
Anjali Singhai Jain | b64ba08 | 2014-11-13 03:06:15 +0000 | [diff] [blame] | 5904 | /* Enable LB mode for the main VSI now that it is on a VEB */ |
| 5905 | i40e_enable_pf_switch_lb(pf); |
| 5906 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5907 | /* create the remaining VSIs attached to this VEB */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 5908 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5909 | if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi) |
| 5910 | continue; |
| 5911 | |
| 5912 | if (pf->vsi[v]->veb_idx == veb->idx) { |
| 5913 | struct i40e_vsi *vsi = pf->vsi[v]; |
| 5914 | vsi->uplink_seid = veb->seid; |
| 5915 | ret = i40e_add_vsi(vsi); |
| 5916 | if (ret) { |
| 5917 | dev_info(&pf->pdev->dev, |
| 5918 | "rebuild of vsi_idx %d failed: %d\n", |
| 5919 | v, ret); |
| 5920 | goto end_reconstitute; |
| 5921 | } |
| 5922 | i40e_vsi_reset_stats(vsi); |
| 5923 | } |
| 5924 | } |
| 5925 | |
| 5926 | /* create any VEBs attached to this VEB - RECURSION */ |
| 5927 | for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) { |
| 5928 | if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) { |
| 5929 | pf->veb[veb_idx]->uplink_seid = veb->seid; |
| 5930 | ret = i40e_reconstitute_veb(pf->veb[veb_idx]); |
| 5931 | if (ret) |
| 5932 | break; |
| 5933 | } |
| 5934 | } |
| 5935 | |
| 5936 | end_reconstitute: |
| 5937 | return ret; |
| 5938 | } |
| 5939 | |
| 5940 | /** |
| 5941 | * i40e_get_capabilities - get info about the HW |
| 5942 | * @pf: the PF struct |
| 5943 | **/ |
| 5944 | static int i40e_get_capabilities(struct i40e_pf *pf) |
| 5945 | { |
| 5946 | struct i40e_aqc_list_capabilities_element_resp *cap_buf; |
| 5947 | u16 data_size; |
| 5948 | int buf_len; |
| 5949 | int err; |
| 5950 | |
| 5951 | buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp); |
| 5952 | do { |
| 5953 | cap_buf = kzalloc(buf_len, GFP_KERNEL); |
| 5954 | if (!cap_buf) |
| 5955 | return -ENOMEM; |
| 5956 | |
| 5957 | /* this loads the data into the hw struct for us */ |
| 5958 | err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len, |
| 5959 | &data_size, |
| 5960 | i40e_aqc_opc_list_func_capabilities, |
| 5961 | NULL); |
| 5962 | /* data loaded, buffer no longer needed */ |
| 5963 | kfree(cap_buf); |
| 5964 | |
| 5965 | if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) { |
| 5966 | /* retry with a larger buffer */ |
| 5967 | buf_len = data_size; |
| 5968 | } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) { |
| 5969 | dev_info(&pf->pdev->dev, |
| 5970 | "capability discovery failed: aq=%d\n", |
| 5971 | pf->hw.aq.asq_last_status); |
| 5972 | return -ENODEV; |
| 5973 | } |
| 5974 | } while (err); |
| 5975 | |
Anjali Singhai Jain | ac71b7b | 2014-02-06 05:51:08 +0000 | [diff] [blame] | 5976 | if (((pf->hw.aq.fw_maj_ver == 2) && (pf->hw.aq.fw_min_ver < 22)) || |
| 5977 | (pf->hw.aq.fw_maj_ver < 2)) { |
| 5978 | pf->hw.func_caps.num_msix_vectors++; |
| 5979 | pf->hw.func_caps.num_msix_vectors_vf++; |
| 5980 | } |
| 5981 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 5982 | if (pf->hw.debug_mask & I40E_DEBUG_USER) |
| 5983 | dev_info(&pf->pdev->dev, |
| 5984 | "pf=%d, num_vfs=%d, msix_pf=%d, msix_vf=%d, fd_g=%d, fd_b=%d, pf_max_q=%d num_vsi=%d\n", |
| 5985 | pf->hw.pf_id, pf->hw.func_caps.num_vfs, |
| 5986 | pf->hw.func_caps.num_msix_vectors, |
| 5987 | pf->hw.func_caps.num_msix_vectors_vf, |
| 5988 | pf->hw.func_caps.fd_filters_guaranteed, |
| 5989 | pf->hw.func_caps.fd_filters_best_effort, |
| 5990 | pf->hw.func_caps.num_tx_qp, |
| 5991 | pf->hw.func_caps.num_vsis); |
| 5992 | |
Jesse Brandeburg | 7134f9c | 2013-11-26 08:56:05 +0000 | [diff] [blame] | 5993 | #define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \ |
| 5994 | + pf->hw.func_caps.num_vfs) |
| 5995 | if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) { |
| 5996 | dev_info(&pf->pdev->dev, |
| 5997 | "got num_vsis %d, setting num_vsis to %d\n", |
| 5998 | pf->hw.func_caps.num_vsis, DEF_NUM_VSI); |
| 5999 | pf->hw.func_caps.num_vsis = DEF_NUM_VSI; |
| 6000 | } |
| 6001 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6002 | return 0; |
| 6003 | } |
| 6004 | |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 6005 | static int i40e_vsi_clear(struct i40e_vsi *vsi); |
| 6006 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6007 | /** |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 6008 | * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6009 | * @pf: board private structure |
| 6010 | **/ |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 6011 | static void i40e_fdir_sb_setup(struct i40e_pf *pf) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6012 | { |
| 6013 | struct i40e_vsi *vsi; |
Shannon Nelson | 8a9eb7d | 2014-03-14 07:32:28 +0000 | [diff] [blame] | 6014 | int i; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6015 | |
Jesse Brandeburg | 407e063 | 2014-06-03 23:50:12 +0000 | [diff] [blame] | 6016 | /* quick workaround for an NVM issue that leaves a critical register |
| 6017 | * uninitialized |
| 6018 | */ |
| 6019 | if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) { |
| 6020 | static const u32 hkey[] = { |
| 6021 | 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36, |
| 6022 | 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb, |
| 6023 | 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21, |
| 6024 | 0x95b3a76d}; |
| 6025 | |
| 6026 | for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++) |
| 6027 | wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]); |
| 6028 | } |
| 6029 | |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 6030 | if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED)) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6031 | return; |
| 6032 | |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 6033 | /* find existing VSI and see if it needs configuring */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6034 | vsi = NULL; |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 6035 | for (i = 0; i < pf->num_alloc_vsi; i++) { |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 6036 | if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6037 | vsi = pf->vsi[i]; |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 6038 | break; |
| 6039 | } |
| 6040 | } |
| 6041 | |
| 6042 | /* create a new VSI if none exists */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6043 | if (!vsi) { |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 6044 | vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR, |
| 6045 | pf->vsi[pf->lan_vsi]->seid, 0); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6046 | if (!vsi) { |
| 6047 | dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n"); |
Shannon Nelson | 8a9eb7d | 2014-03-14 07:32:28 +0000 | [diff] [blame] | 6048 | pf->flags &= ~I40E_FLAG_FD_SB_ENABLED; |
| 6049 | return; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6050 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6051 | } |
Shannon Nelson | 8a9eb7d | 2014-03-14 07:32:28 +0000 | [diff] [blame] | 6052 | |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 6053 | i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6054 | } |
| 6055 | |
| 6056 | /** |
| 6057 | * i40e_fdir_teardown - release the Flow Director resources |
| 6058 | * @pf: board private structure |
| 6059 | **/ |
| 6060 | static void i40e_fdir_teardown(struct i40e_pf *pf) |
| 6061 | { |
| 6062 | int i; |
| 6063 | |
Joseph Gasparakis | 17a73f6 | 2014-02-12 01:45:30 +0000 | [diff] [blame] | 6064 | i40e_fdir_filter_exit(pf); |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 6065 | for (i = 0; i < pf->num_alloc_vsi; i++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6066 | if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) { |
| 6067 | i40e_vsi_release(pf->vsi[i]); |
| 6068 | break; |
| 6069 | } |
| 6070 | } |
| 6071 | } |
| 6072 | |
| 6073 | /** |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6074 | * i40e_prep_for_reset - prep for the core to reset |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6075 | * @pf: board private structure |
| 6076 | * |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6077 | * Close up the VFs and other things in prep for pf Reset. |
| 6078 | **/ |
Shannon Nelson | 23cfbe0 | 2014-06-04 01:23:14 +0000 | [diff] [blame] | 6079 | static void i40e_prep_for_reset(struct i40e_pf *pf) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6080 | { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6081 | struct i40e_hw *hw = &pf->hw; |
Shannon Nelson | 60442de | 2014-04-23 04:50:13 +0000 | [diff] [blame] | 6082 | i40e_status ret = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6083 | u32 v; |
| 6084 | |
| 6085 | clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state); |
| 6086 | if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) |
Shannon Nelson | 23cfbe0 | 2014-06-04 01:23:14 +0000 | [diff] [blame] | 6087 | return; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6088 | |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 6089 | dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6090 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6091 | /* quiesce the VSIs and their queues that are not already DOWN */ |
| 6092 | i40e_pf_quiesce_all_vsi(pf); |
| 6093 | |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 6094 | for (v = 0; v < pf->num_alloc_vsi; v++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6095 | if (pf->vsi[v]) |
| 6096 | pf->vsi[v]->seid = 0; |
| 6097 | } |
| 6098 | |
| 6099 | i40e_shutdown_adminq(&pf->hw); |
| 6100 | |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6101 | /* call shutdown HMC */ |
Shannon Nelson | 60442de | 2014-04-23 04:50:13 +0000 | [diff] [blame] | 6102 | if (hw->hmc.hmc_obj) { |
| 6103 | ret = i40e_shutdown_lan_hmc(hw); |
Shannon Nelson | 23cfbe0 | 2014-06-04 01:23:14 +0000 | [diff] [blame] | 6104 | if (ret) |
Shannon Nelson | 60442de | 2014-04-23 04:50:13 +0000 | [diff] [blame] | 6105 | dev_warn(&pf->pdev->dev, |
| 6106 | "shutdown_lan_hmc failed: %d\n", ret); |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6107 | } |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6108 | } |
| 6109 | |
| 6110 | /** |
Jesse Brandeburg | 44033fa | 2014-04-23 04:50:15 +0000 | [diff] [blame] | 6111 | * i40e_send_version - update firmware with driver version |
| 6112 | * @pf: PF struct |
| 6113 | */ |
| 6114 | static void i40e_send_version(struct i40e_pf *pf) |
| 6115 | { |
| 6116 | struct i40e_driver_version dv; |
| 6117 | |
| 6118 | dv.major_version = DRV_VERSION_MAJOR; |
| 6119 | dv.minor_version = DRV_VERSION_MINOR; |
| 6120 | dv.build_version = DRV_VERSION_BUILD; |
| 6121 | dv.subbuild_version = 0; |
Rickard Strandqvist | 35a7d80 | 2014-07-29 09:26:25 +0000 | [diff] [blame] | 6122 | strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string)); |
Jesse Brandeburg | 44033fa | 2014-04-23 04:50:15 +0000 | [diff] [blame] | 6123 | i40e_aq_send_driver_version(&pf->hw, &dv, NULL); |
| 6124 | } |
| 6125 | |
| 6126 | /** |
Jesse Brandeburg | 4dda12e | 2013-12-18 13:46:01 +0000 | [diff] [blame] | 6127 | * i40e_reset_and_rebuild - reset and rebuild using a saved config |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6128 | * @pf: board private structure |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6129 | * @reinit: if the Main VSI needs to re-initialized. |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6130 | **/ |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6131 | static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit) |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6132 | { |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6133 | struct i40e_hw *hw = &pf->hw; |
Anjali Singhai Jain | cafa2ee | 2014-09-13 07:40:45 +0000 | [diff] [blame] | 6134 | u8 set_fc_aq_fail = 0; |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6135 | i40e_status ret; |
| 6136 | u32 v; |
| 6137 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6138 | /* Now we wait for GRST to settle out. |
| 6139 | * We don't have to delete the VEBs or VSIs from the hw switch |
| 6140 | * because the reset will make them disappear. |
| 6141 | */ |
| 6142 | ret = i40e_pf_reset(hw); |
Akeem G Abodunrin | b556540 | 2014-04-09 05:59:04 +0000 | [diff] [blame] | 6143 | if (ret) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6144 | dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret); |
Anjali Singhai Jain | a316f65 | 2014-07-12 07:28:25 +0000 | [diff] [blame] | 6145 | set_bit(__I40E_RESET_FAILED, &pf->state); |
| 6146 | goto clear_recovery; |
Akeem G Abodunrin | b556540 | 2014-04-09 05:59:04 +0000 | [diff] [blame] | 6147 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6148 | pf->pfr_count++; |
| 6149 | |
| 6150 | if (test_bit(__I40E_DOWN, &pf->state)) |
Anjali Singhai Jain | a316f65 | 2014-07-12 07:28:25 +0000 | [diff] [blame] | 6151 | goto clear_recovery; |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 6152 | dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6153 | |
| 6154 | /* rebuild the basics for the AdminQ, HMC, and initial HW switch */ |
| 6155 | ret = i40e_init_adminq(&pf->hw); |
| 6156 | if (ret) { |
| 6157 | dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, %d\n", ret); |
Anjali Singhai Jain | a316f65 | 2014-07-12 07:28:25 +0000 | [diff] [blame] | 6158 | goto clear_recovery; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6159 | } |
| 6160 | |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 6161 | /* re-verify the eeprom if we just had an EMP reset */ |
| 6162 | if (test_bit(__I40E_EMP_RESET_REQUESTED, &pf->state)) { |
| 6163 | clear_bit(__I40E_EMP_RESET_REQUESTED, &pf->state); |
| 6164 | i40e_verify_eeprom(pf); |
| 6165 | } |
| 6166 | |
Shannon Nelson | e78ac4bf | 2014-05-10 04:49:09 +0000 | [diff] [blame] | 6167 | i40e_clear_pxe_mode(hw); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6168 | ret = i40e_get_capabilities(pf); |
| 6169 | if (ret) { |
| 6170 | dev_info(&pf->pdev->dev, "i40e_get_capabilities failed, %d\n", |
| 6171 | ret); |
| 6172 | goto end_core_reset; |
| 6173 | } |
| 6174 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6175 | ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp, |
| 6176 | hw->func_caps.num_rx_qp, |
| 6177 | pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num); |
| 6178 | if (ret) { |
| 6179 | dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret); |
| 6180 | goto end_core_reset; |
| 6181 | } |
| 6182 | ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY); |
| 6183 | if (ret) { |
| 6184 | dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret); |
| 6185 | goto end_core_reset; |
| 6186 | } |
| 6187 | |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 6188 | #ifdef CONFIG_I40E_DCB |
| 6189 | ret = i40e_init_pf_dcb(pf); |
| 6190 | if (ret) { |
| 6191 | dev_info(&pf->pdev->dev, "init_pf_dcb failed: %d\n", ret); |
| 6192 | goto end_core_reset; |
| 6193 | } |
| 6194 | #endif /* CONFIG_I40E_DCB */ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6195 | #ifdef I40E_FCOE |
| 6196 | ret = i40e_init_pf_fcoe(pf); |
| 6197 | if (ret) |
| 6198 | dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", ret); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 6199 | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6200 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6201 | /* do basic switch setup */ |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6202 | ret = i40e_setup_pf_switch(pf, reinit); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6203 | if (ret) |
| 6204 | goto end_core_reset; |
| 6205 | |
Jesse Brandeburg | 7e2453f | 2014-09-13 07:40:41 +0000 | [diff] [blame] | 6206 | /* driver is only interested in link up/down and module qualification |
| 6207 | * reports from firmware |
| 6208 | */ |
| 6209 | ret = i40e_aq_set_phy_int_mask(&pf->hw, |
| 6210 | I40E_AQ_EVENT_LINK_UPDOWN | |
| 6211 | I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL); |
| 6212 | if (ret) |
| 6213 | dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", ret); |
| 6214 | |
Anjali Singhai Jain | cafa2ee | 2014-09-13 07:40:45 +0000 | [diff] [blame] | 6215 | /* make sure our flow control settings are restored */ |
| 6216 | ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true); |
| 6217 | if (ret) |
| 6218 | dev_info(&pf->pdev->dev, "set fc fail, aq_err %d\n", ret); |
| 6219 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6220 | /* Rebuild the VSIs and VEBs that existed before reset. |
| 6221 | * They are still in our local switch element arrays, so only |
| 6222 | * need to rebuild the switch model in the HW. |
| 6223 | * |
| 6224 | * If there were VEBs but the reconstitution failed, we'll try |
| 6225 | * try to recover minimal use by getting the basic PF VSI working. |
| 6226 | */ |
| 6227 | if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) { |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 6228 | dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6229 | /* find the one VEB connected to the MAC, and find orphans */ |
| 6230 | for (v = 0; v < I40E_MAX_VEB; v++) { |
| 6231 | if (!pf->veb[v]) |
| 6232 | continue; |
| 6233 | |
| 6234 | if (pf->veb[v]->uplink_seid == pf->mac_seid || |
| 6235 | pf->veb[v]->uplink_seid == 0) { |
| 6236 | ret = i40e_reconstitute_veb(pf->veb[v]); |
| 6237 | |
| 6238 | if (!ret) |
| 6239 | continue; |
| 6240 | |
| 6241 | /* If Main VEB failed, we're in deep doodoo, |
| 6242 | * so give up rebuilding the switch and set up |
| 6243 | * for minimal rebuild of PF VSI. |
| 6244 | * If orphan failed, we'll report the error |
| 6245 | * but try to keep going. |
| 6246 | */ |
| 6247 | if (pf->veb[v]->uplink_seid == pf->mac_seid) { |
| 6248 | dev_info(&pf->pdev->dev, |
| 6249 | "rebuild of switch failed: %d, will try to set up simple PF connection\n", |
| 6250 | ret); |
| 6251 | pf->vsi[pf->lan_vsi]->uplink_seid |
| 6252 | = pf->mac_seid; |
| 6253 | break; |
| 6254 | } else if (pf->veb[v]->uplink_seid == 0) { |
| 6255 | dev_info(&pf->pdev->dev, |
| 6256 | "rebuild of orphan VEB failed: %d\n", |
| 6257 | ret); |
| 6258 | } |
| 6259 | } |
| 6260 | } |
| 6261 | } |
| 6262 | |
| 6263 | if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) { |
Shannon Nelson | cde4cbc | 2014-06-04 01:23:17 +0000 | [diff] [blame] | 6264 | dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6265 | /* no VEB, so rebuild only the Main VSI */ |
| 6266 | ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]); |
| 6267 | if (ret) { |
| 6268 | dev_info(&pf->pdev->dev, |
| 6269 | "rebuild of Main VSI failed: %d\n", ret); |
| 6270 | goto end_core_reset; |
| 6271 | } |
| 6272 | } |
| 6273 | |
Anjali Singhai Jain | cafa2ee | 2014-09-13 07:40:45 +0000 | [diff] [blame] | 6274 | msleep(75); |
| 6275 | ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL); |
| 6276 | if (ret) { |
| 6277 | dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n", |
| 6278 | pf->hw.aq.asq_last_status); |
| 6279 | } |
| 6280 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6281 | /* reinit the misc interrupt */ |
| 6282 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) |
| 6283 | ret = i40e_setup_misc_vector(pf); |
| 6284 | |
| 6285 | /* restart the VSIs that were rebuilt and running before the reset */ |
| 6286 | i40e_pf_unquiesce_all_vsi(pf); |
| 6287 | |
Mitch Williams | 69f64b2 | 2014-02-13 03:48:46 -0800 | [diff] [blame] | 6288 | if (pf->num_alloc_vfs) { |
| 6289 | for (v = 0; v < pf->num_alloc_vfs; v++) |
| 6290 | i40e_reset_vf(&pf->vf[v], true); |
| 6291 | } |
| 6292 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6293 | /* tell the firmware that we're starting */ |
Jesse Brandeburg | 44033fa | 2014-04-23 04:50:15 +0000 | [diff] [blame] | 6294 | i40e_send_version(pf); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6295 | |
| 6296 | end_core_reset: |
Anjali Singhai Jain | a316f65 | 2014-07-12 07:28:25 +0000 | [diff] [blame] | 6297 | clear_bit(__I40E_RESET_FAILED, &pf->state); |
| 6298 | clear_recovery: |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6299 | clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state); |
| 6300 | } |
| 6301 | |
| 6302 | /** |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6303 | * i40e_handle_reset_warning - prep for the pf to reset, reset and rebuild |
| 6304 | * @pf: board private structure |
| 6305 | * |
| 6306 | * Close up the VFs and other things in prep for a Core Reset, |
| 6307 | * then get ready to rebuild the world. |
| 6308 | **/ |
| 6309 | static void i40e_handle_reset_warning(struct i40e_pf *pf) |
| 6310 | { |
Shannon Nelson | 23cfbe0 | 2014-06-04 01:23:14 +0000 | [diff] [blame] | 6311 | i40e_prep_for_reset(pf); |
| 6312 | i40e_reset_and_rebuild(pf, false); |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6313 | } |
| 6314 | |
| 6315 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6316 | * i40e_handle_mdd_event |
| 6317 | * @pf: pointer to the pf structure |
| 6318 | * |
| 6319 | * Called from the MDD irq handler to identify possibly malicious vfs |
| 6320 | **/ |
| 6321 | static void i40e_handle_mdd_event(struct i40e_pf *pf) |
| 6322 | { |
| 6323 | struct i40e_hw *hw = &pf->hw; |
| 6324 | bool mdd_detected = false; |
Neerav Parikh | df430b1 | 2014-06-04 01:23:15 +0000 | [diff] [blame] | 6325 | bool pf_mdd_detected = false; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6326 | struct i40e_vf *vf; |
| 6327 | u32 reg; |
| 6328 | int i; |
| 6329 | |
| 6330 | if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state)) |
| 6331 | return; |
| 6332 | |
| 6333 | /* find what triggered the MDD event */ |
| 6334 | reg = rd32(hw, I40E_GL_MDET_TX); |
| 6335 | if (reg & I40E_GL_MDET_TX_VALID_MASK) { |
Anjali Singhai Jain | 4c33f83 | 2014-06-05 00:18:21 +0000 | [diff] [blame] | 6336 | u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >> |
| 6337 | I40E_GL_MDET_TX_PF_NUM_SHIFT; |
Mitch Williams | 2089ad0 | 2014-10-17 03:14:53 +0000 | [diff] [blame] | 6338 | u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >> |
Anjali Singhai Jain | 4c33f83 | 2014-06-05 00:18:21 +0000 | [diff] [blame] | 6339 | I40E_GL_MDET_TX_VF_NUM_SHIFT; |
Dan Carpenter | 013f657 | 2014-10-22 20:06:29 -0700 | [diff] [blame] | 6340 | u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >> |
Anjali Singhai Jain | 4c33f83 | 2014-06-05 00:18:21 +0000 | [diff] [blame] | 6341 | I40E_GL_MDET_TX_EVENT_SHIFT; |
Mitch Williams | 2089ad0 | 2014-10-17 03:14:53 +0000 | [diff] [blame] | 6342 | u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >> |
| 6343 | I40E_GL_MDET_TX_QUEUE_SHIFT) - |
| 6344 | pf->hw.func_caps.base_queue; |
Jesse Brandeburg | faf3297 | 2014-07-12 07:28:21 +0000 | [diff] [blame] | 6345 | if (netif_msg_tx_err(pf)) |
| 6346 | dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d pf number 0x%02x vf number 0x%02x\n", |
| 6347 | event, queue, pf_num, vf_num); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6348 | wr32(hw, I40E_GL_MDET_TX, 0xffffffff); |
| 6349 | mdd_detected = true; |
| 6350 | } |
| 6351 | reg = rd32(hw, I40E_GL_MDET_RX); |
| 6352 | if (reg & I40E_GL_MDET_RX_VALID_MASK) { |
Anjali Singhai Jain | 4c33f83 | 2014-06-05 00:18:21 +0000 | [diff] [blame] | 6353 | u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >> |
| 6354 | I40E_GL_MDET_RX_FUNCTION_SHIFT; |
Dan Carpenter | 013f657 | 2014-10-22 20:06:29 -0700 | [diff] [blame] | 6355 | u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >> |
Anjali Singhai Jain | 4c33f83 | 2014-06-05 00:18:21 +0000 | [diff] [blame] | 6356 | I40E_GL_MDET_RX_EVENT_SHIFT; |
Mitch Williams | 2089ad0 | 2014-10-17 03:14:53 +0000 | [diff] [blame] | 6357 | u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >> |
| 6358 | I40E_GL_MDET_RX_QUEUE_SHIFT) - |
| 6359 | pf->hw.func_caps.base_queue; |
Jesse Brandeburg | faf3297 | 2014-07-12 07:28:21 +0000 | [diff] [blame] | 6360 | if (netif_msg_rx_err(pf)) |
| 6361 | dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n", |
| 6362 | event, queue, func); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6363 | wr32(hw, I40E_GL_MDET_RX, 0xffffffff); |
| 6364 | mdd_detected = true; |
| 6365 | } |
| 6366 | |
Neerav Parikh | df430b1 | 2014-06-04 01:23:15 +0000 | [diff] [blame] | 6367 | if (mdd_detected) { |
| 6368 | reg = rd32(hw, I40E_PF_MDET_TX); |
| 6369 | if (reg & I40E_PF_MDET_TX_VALID_MASK) { |
| 6370 | wr32(hw, I40E_PF_MDET_TX, 0xFFFF); |
Jesse Brandeburg | faf3297 | 2014-07-12 07:28:21 +0000 | [diff] [blame] | 6371 | dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n"); |
Neerav Parikh | df430b1 | 2014-06-04 01:23:15 +0000 | [diff] [blame] | 6372 | pf_mdd_detected = true; |
| 6373 | } |
| 6374 | reg = rd32(hw, I40E_PF_MDET_RX); |
| 6375 | if (reg & I40E_PF_MDET_RX_VALID_MASK) { |
| 6376 | wr32(hw, I40E_PF_MDET_RX, 0xFFFF); |
Jesse Brandeburg | faf3297 | 2014-07-12 07:28:21 +0000 | [diff] [blame] | 6377 | dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n"); |
Neerav Parikh | df430b1 | 2014-06-04 01:23:15 +0000 | [diff] [blame] | 6378 | pf_mdd_detected = true; |
| 6379 | } |
| 6380 | /* Queue belongs to the PF, initiate a reset */ |
| 6381 | if (pf_mdd_detected) { |
| 6382 | set_bit(__I40E_PF_RESET_REQUESTED, &pf->state); |
| 6383 | i40e_service_event_schedule(pf); |
| 6384 | } |
| 6385 | } |
| 6386 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6387 | /* see if one of the VFs needs its hand slapped */ |
| 6388 | for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) { |
| 6389 | vf = &(pf->vf[i]); |
| 6390 | reg = rd32(hw, I40E_VP_MDET_TX(i)); |
| 6391 | if (reg & I40E_VP_MDET_TX_VALID_MASK) { |
| 6392 | wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF); |
| 6393 | vf->num_mdd_events++; |
Jesse Brandeburg | faf3297 | 2014-07-12 07:28:21 +0000 | [diff] [blame] | 6394 | dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n", |
| 6395 | i); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6396 | } |
| 6397 | |
| 6398 | reg = rd32(hw, I40E_VP_MDET_RX(i)); |
| 6399 | if (reg & I40E_VP_MDET_RX_VALID_MASK) { |
| 6400 | wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF); |
| 6401 | vf->num_mdd_events++; |
Jesse Brandeburg | faf3297 | 2014-07-12 07:28:21 +0000 | [diff] [blame] | 6402 | dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n", |
| 6403 | i); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6404 | } |
| 6405 | |
| 6406 | if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) { |
| 6407 | dev_info(&pf->pdev->dev, |
| 6408 | "Too many MDD events on VF %d, disabled\n", i); |
| 6409 | dev_info(&pf->pdev->dev, |
| 6410 | "Use PF Control I/F to re-enable the VF\n"); |
| 6411 | set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states); |
| 6412 | } |
| 6413 | } |
| 6414 | |
| 6415 | /* re-enable mdd interrupt cause */ |
| 6416 | clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state); |
| 6417 | reg = rd32(hw, I40E_PFINT_ICR0_ENA); |
| 6418 | reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK; |
| 6419 | wr32(hw, I40E_PFINT_ICR0_ENA, reg); |
| 6420 | i40e_flush(hw); |
| 6421 | } |
| 6422 | |
Jeff Kirsher | a1c9a9d | 2013-12-28 07:32:18 +0000 | [diff] [blame] | 6423 | #ifdef CONFIG_I40E_VXLAN |
| 6424 | /** |
| 6425 | * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW |
| 6426 | * @pf: board private structure |
| 6427 | **/ |
| 6428 | static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf) |
| 6429 | { |
Jeff Kirsher | a1c9a9d | 2013-12-28 07:32:18 +0000 | [diff] [blame] | 6430 | struct i40e_hw *hw = &pf->hw; |
| 6431 | i40e_status ret; |
| 6432 | u8 filter_index; |
| 6433 | __be16 port; |
| 6434 | int i; |
| 6435 | |
| 6436 | if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC)) |
| 6437 | return; |
| 6438 | |
| 6439 | pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC; |
| 6440 | |
| 6441 | for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) { |
| 6442 | if (pf->pending_vxlan_bitmap & (1 << i)) { |
| 6443 | pf->pending_vxlan_bitmap &= ~(1 << i); |
| 6444 | port = pf->vxlan_ports[i]; |
| 6445 | ret = port ? |
| 6446 | i40e_aq_add_udp_tunnel(hw, ntohs(port), |
Jeff Kirsher | a1c9a9d | 2013-12-28 07:32:18 +0000 | [diff] [blame] | 6447 | I40E_AQC_TUNNEL_TYPE_VXLAN, |
| 6448 | &filter_index, NULL) |
| 6449 | : i40e_aq_del_udp_tunnel(hw, i, NULL); |
| 6450 | |
| 6451 | if (ret) { |
| 6452 | dev_info(&pf->pdev->dev, "Failed to execute AQ command for %s port %d with index %d\n", |
| 6453 | port ? "adding" : "deleting", |
| 6454 | ntohs(port), port ? i : i); |
| 6455 | |
| 6456 | pf->vxlan_ports[i] = 0; |
| 6457 | } else { |
| 6458 | dev_info(&pf->pdev->dev, "%s port %d with AQ command with index %d\n", |
| 6459 | port ? "Added" : "Deleted", |
| 6460 | ntohs(port), port ? i : filter_index); |
| 6461 | } |
| 6462 | } |
| 6463 | } |
| 6464 | } |
| 6465 | |
| 6466 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6467 | /** |
| 6468 | * i40e_service_task - Run the driver's async subtasks |
| 6469 | * @work: pointer to work_struct containing our data |
| 6470 | **/ |
| 6471 | static void i40e_service_task(struct work_struct *work) |
| 6472 | { |
| 6473 | struct i40e_pf *pf = container_of(work, |
| 6474 | struct i40e_pf, |
| 6475 | service_task); |
| 6476 | unsigned long start_time = jiffies; |
| 6477 | |
Shannon Nelson | e57a2fe | 2014-06-03 23:50:19 +0000 | [diff] [blame] | 6478 | /* don't bother with service tasks if a reset is in progress */ |
| 6479 | if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) { |
| 6480 | i40e_service_event_complete(pf); |
| 6481 | return; |
| 6482 | } |
| 6483 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6484 | i40e_reset_subtask(pf); |
| 6485 | i40e_handle_mdd_event(pf); |
| 6486 | i40e_vc_process_vflr_event(pf); |
| 6487 | i40e_watchdog_subtask(pf); |
| 6488 | i40e_fdir_reinit_subtask(pf); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6489 | i40e_sync_filters_subtask(pf); |
Jeff Kirsher | a1c9a9d | 2013-12-28 07:32:18 +0000 | [diff] [blame] | 6490 | #ifdef CONFIG_I40E_VXLAN |
| 6491 | i40e_sync_vxlan_filters_subtask(pf); |
| 6492 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6493 | i40e_clean_adminq_subtask(pf); |
| 6494 | |
| 6495 | i40e_service_event_complete(pf); |
| 6496 | |
| 6497 | /* If the tasks have taken longer than one timer cycle or there |
| 6498 | * is more work to be done, reschedule the service task now |
| 6499 | * rather than wait for the timer to tick again. |
| 6500 | */ |
| 6501 | if (time_after(jiffies, (start_time + pf->service_timer_period)) || |
| 6502 | test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) || |
| 6503 | test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) || |
| 6504 | test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state)) |
| 6505 | i40e_service_event_schedule(pf); |
| 6506 | } |
| 6507 | |
| 6508 | /** |
| 6509 | * i40e_service_timer - timer callback |
| 6510 | * @data: pointer to PF struct |
| 6511 | **/ |
| 6512 | static void i40e_service_timer(unsigned long data) |
| 6513 | { |
| 6514 | struct i40e_pf *pf = (struct i40e_pf *)data; |
| 6515 | |
| 6516 | mod_timer(&pf->service_timer, |
| 6517 | round_jiffies(jiffies + pf->service_timer_period)); |
| 6518 | i40e_service_event_schedule(pf); |
| 6519 | } |
| 6520 | |
| 6521 | /** |
| 6522 | * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI |
| 6523 | * @vsi: the VSI being configured |
| 6524 | **/ |
| 6525 | static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi) |
| 6526 | { |
| 6527 | struct i40e_pf *pf = vsi->back; |
| 6528 | |
| 6529 | switch (vsi->type) { |
| 6530 | case I40E_VSI_MAIN: |
| 6531 | vsi->alloc_queue_pairs = pf->num_lan_qps; |
| 6532 | vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS, |
| 6533 | I40E_REQ_DESCRIPTOR_MULTIPLE); |
| 6534 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) |
| 6535 | vsi->num_q_vectors = pf->num_lan_msix; |
| 6536 | else |
| 6537 | vsi->num_q_vectors = 1; |
| 6538 | |
| 6539 | break; |
| 6540 | |
| 6541 | case I40E_VSI_FDIR: |
| 6542 | vsi->alloc_queue_pairs = 1; |
| 6543 | vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT, |
| 6544 | I40E_REQ_DESCRIPTOR_MULTIPLE); |
| 6545 | vsi->num_q_vectors = 1; |
| 6546 | break; |
| 6547 | |
| 6548 | case I40E_VSI_VMDQ2: |
| 6549 | vsi->alloc_queue_pairs = pf->num_vmdq_qps; |
| 6550 | vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS, |
| 6551 | I40E_REQ_DESCRIPTOR_MULTIPLE); |
| 6552 | vsi->num_q_vectors = pf->num_vmdq_msix; |
| 6553 | break; |
| 6554 | |
| 6555 | case I40E_VSI_SRIOV: |
| 6556 | vsi->alloc_queue_pairs = pf->num_vf_qps; |
| 6557 | vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS, |
| 6558 | I40E_REQ_DESCRIPTOR_MULTIPLE); |
| 6559 | break; |
| 6560 | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6561 | #ifdef I40E_FCOE |
| 6562 | case I40E_VSI_FCOE: |
| 6563 | vsi->alloc_queue_pairs = pf->num_fcoe_qps; |
| 6564 | vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS, |
| 6565 | I40E_REQ_DESCRIPTOR_MULTIPLE); |
| 6566 | vsi->num_q_vectors = pf->num_fcoe_msix; |
| 6567 | break; |
| 6568 | |
| 6569 | #endif /* I40E_FCOE */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6570 | default: |
| 6571 | WARN_ON(1); |
| 6572 | return -ENODATA; |
| 6573 | } |
| 6574 | |
| 6575 | return 0; |
| 6576 | } |
| 6577 | |
| 6578 | /** |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6579 | * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi |
| 6580 | * @type: VSI pointer |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6581 | * @alloc_qvectors: a bool to specify if q_vectors need to be allocated. |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6582 | * |
| 6583 | * On error: returns error code (negative) |
| 6584 | * On success: returns 0 |
| 6585 | **/ |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6586 | static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors) |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6587 | { |
| 6588 | int size; |
| 6589 | int ret = 0; |
| 6590 | |
Shannon Nelson | ac6c5e3 | 2013-11-20 10:02:57 +0000 | [diff] [blame] | 6591 | /* allocate memory for both Tx and Rx ring pointers */ |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6592 | size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2; |
| 6593 | vsi->tx_rings = kzalloc(size, GFP_KERNEL); |
| 6594 | if (!vsi->tx_rings) |
| 6595 | return -ENOMEM; |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6596 | vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs]; |
| 6597 | |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6598 | if (alloc_qvectors) { |
| 6599 | /* allocate memory for q_vector pointers */ |
Julia Lawall | f57e4fb | 2014-07-30 03:11:09 +0000 | [diff] [blame] | 6600 | size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors; |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6601 | vsi->q_vectors = kzalloc(size, GFP_KERNEL); |
| 6602 | if (!vsi->q_vectors) { |
| 6603 | ret = -ENOMEM; |
| 6604 | goto err_vectors; |
| 6605 | } |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6606 | } |
| 6607 | return ret; |
| 6608 | |
| 6609 | err_vectors: |
| 6610 | kfree(vsi->tx_rings); |
| 6611 | return ret; |
| 6612 | } |
| 6613 | |
| 6614 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6615 | * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF |
| 6616 | * @pf: board private structure |
| 6617 | * @type: type of VSI |
| 6618 | * |
| 6619 | * On error: returns error code (negative) |
| 6620 | * On success: returns vsi index in PF (positive) |
| 6621 | **/ |
| 6622 | static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type) |
| 6623 | { |
| 6624 | int ret = -ENODEV; |
| 6625 | struct i40e_vsi *vsi; |
| 6626 | int vsi_idx; |
| 6627 | int i; |
| 6628 | |
| 6629 | /* Need to protect the allocation of the VSIs at the PF level */ |
| 6630 | mutex_lock(&pf->switch_mutex); |
| 6631 | |
| 6632 | /* VSI list may be fragmented if VSI creation/destruction has |
| 6633 | * been happening. We can afford to do a quick scan to look |
| 6634 | * for any free VSIs in the list. |
| 6635 | * |
| 6636 | * find next empty vsi slot, looping back around if necessary |
| 6637 | */ |
| 6638 | i = pf->next_vsi; |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 6639 | while (i < pf->num_alloc_vsi && pf->vsi[i]) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6640 | i++; |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 6641 | if (i >= pf->num_alloc_vsi) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6642 | i = 0; |
| 6643 | while (i < pf->next_vsi && pf->vsi[i]) |
| 6644 | i++; |
| 6645 | } |
| 6646 | |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 6647 | if (i < pf->num_alloc_vsi && !pf->vsi[i]) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6648 | vsi_idx = i; /* Found one! */ |
| 6649 | } else { |
| 6650 | ret = -ENODEV; |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 6651 | goto unlock_pf; /* out of VSI slots! */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6652 | } |
| 6653 | pf->next_vsi = ++i; |
| 6654 | |
| 6655 | vsi = kzalloc(sizeof(*vsi), GFP_KERNEL); |
| 6656 | if (!vsi) { |
| 6657 | ret = -ENOMEM; |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 6658 | goto unlock_pf; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6659 | } |
| 6660 | vsi->type = type; |
| 6661 | vsi->back = pf; |
| 6662 | set_bit(__I40E_DOWN, &vsi->state); |
| 6663 | vsi->flags = 0; |
| 6664 | vsi->idx = vsi_idx; |
| 6665 | vsi->rx_itr_setting = pf->rx_itr_default; |
| 6666 | vsi->tx_itr_setting = pf->tx_itr_default; |
| 6667 | vsi->netdev_registered = false; |
| 6668 | vsi->work_limit = I40E_DEFAULT_IRQ_WORK; |
| 6669 | INIT_LIST_HEAD(&vsi->mac_filter_list); |
Shannon Nelson | 6374184 | 2014-04-23 04:50:16 +0000 | [diff] [blame] | 6670 | vsi->irqs_ready = false; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6671 | |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6672 | ret = i40e_set_num_rings_in_vsi(vsi); |
| 6673 | if (ret) |
| 6674 | goto err_rings; |
| 6675 | |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6676 | ret = i40e_vsi_alloc_arrays(vsi, true); |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6677 | if (ret) |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6678 | goto err_rings; |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 6679 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6680 | /* Setup default MSIX irq handler for VSI */ |
| 6681 | i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings); |
| 6682 | |
| 6683 | pf->vsi[vsi_idx] = vsi; |
| 6684 | ret = vsi_idx; |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 6685 | goto unlock_pf; |
| 6686 | |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6687 | err_rings: |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 6688 | pf->next_vsi = i - 1; |
| 6689 | kfree(vsi); |
| 6690 | unlock_pf: |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6691 | mutex_unlock(&pf->switch_mutex); |
| 6692 | return ret; |
| 6693 | } |
| 6694 | |
| 6695 | /** |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6696 | * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI |
| 6697 | * @type: VSI pointer |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6698 | * @free_qvectors: a bool to specify if q_vectors need to be freed. |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6699 | * |
| 6700 | * On error: returns error code (negative) |
| 6701 | * On success: returns 0 |
| 6702 | **/ |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6703 | static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors) |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6704 | { |
| 6705 | /* free the ring and vector containers */ |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6706 | if (free_qvectors) { |
| 6707 | kfree(vsi->q_vectors); |
| 6708 | vsi->q_vectors = NULL; |
| 6709 | } |
Anjali Singhai Jain | f650a38 | 2013-11-20 10:02:55 +0000 | [diff] [blame] | 6710 | kfree(vsi->tx_rings); |
| 6711 | vsi->tx_rings = NULL; |
| 6712 | vsi->rx_rings = NULL; |
| 6713 | } |
| 6714 | |
| 6715 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6716 | * i40e_vsi_clear - Deallocate the VSI provided |
| 6717 | * @vsi: the VSI being un-configured |
| 6718 | **/ |
| 6719 | static int i40e_vsi_clear(struct i40e_vsi *vsi) |
| 6720 | { |
| 6721 | struct i40e_pf *pf; |
| 6722 | |
| 6723 | if (!vsi) |
| 6724 | return 0; |
| 6725 | |
| 6726 | if (!vsi->back) |
| 6727 | goto free_vsi; |
| 6728 | pf = vsi->back; |
| 6729 | |
| 6730 | mutex_lock(&pf->switch_mutex); |
| 6731 | if (!pf->vsi[vsi->idx]) { |
| 6732 | dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n", |
| 6733 | vsi->idx, vsi->idx, vsi, vsi->type); |
| 6734 | goto unlock_vsi; |
| 6735 | } |
| 6736 | |
| 6737 | if (pf->vsi[vsi->idx] != vsi) { |
| 6738 | dev_err(&pf->pdev->dev, |
| 6739 | "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n", |
| 6740 | pf->vsi[vsi->idx]->idx, |
| 6741 | pf->vsi[vsi->idx], |
| 6742 | pf->vsi[vsi->idx]->type, |
| 6743 | vsi->idx, vsi, vsi->type); |
| 6744 | goto unlock_vsi; |
| 6745 | } |
| 6746 | |
| 6747 | /* updates the pf for this cleared vsi */ |
| 6748 | i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx); |
| 6749 | i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx); |
| 6750 | |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 6751 | i40e_vsi_free_arrays(vsi, true); |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 6752 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6753 | pf->vsi[vsi->idx] = NULL; |
| 6754 | if (vsi->idx < pf->next_vsi) |
| 6755 | pf->next_vsi = vsi->idx; |
| 6756 | |
| 6757 | unlock_vsi: |
| 6758 | mutex_unlock(&pf->switch_mutex); |
| 6759 | free_vsi: |
| 6760 | kfree(vsi); |
| 6761 | |
| 6762 | return 0; |
| 6763 | } |
| 6764 | |
| 6765 | /** |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6766 | * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI |
| 6767 | * @vsi: the VSI being cleaned |
| 6768 | **/ |
Shannon Nelson | be1d5ee | 2013-11-28 06:39:23 +0000 | [diff] [blame] | 6769 | static void i40e_vsi_clear_rings(struct i40e_vsi *vsi) |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6770 | { |
| 6771 | int i; |
| 6772 | |
Greg Rose | 8e9dca5 | 2013-12-18 13:45:53 +0000 | [diff] [blame] | 6773 | if (vsi->tx_rings && vsi->tx_rings[0]) { |
Neerav Parikh | d739764 | 2013-11-28 06:39:37 +0000 | [diff] [blame] | 6774 | for (i = 0; i < vsi->alloc_queue_pairs; i++) { |
Mitch Williams | 00403f0 | 2013-09-28 07:13:13 +0000 | [diff] [blame] | 6775 | kfree_rcu(vsi->tx_rings[i], rcu); |
| 6776 | vsi->tx_rings[i] = NULL; |
| 6777 | vsi->rx_rings[i] = NULL; |
| 6778 | } |
Shannon Nelson | be1d5ee | 2013-11-28 06:39:23 +0000 | [diff] [blame] | 6779 | } |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6780 | } |
| 6781 | |
| 6782 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6783 | * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI |
| 6784 | * @vsi: the VSI being configured |
| 6785 | **/ |
| 6786 | static int i40e_alloc_rings(struct i40e_vsi *vsi) |
| 6787 | { |
Akeem G Abodunrin | e7046ee | 2014-04-09 05:58:58 +0000 | [diff] [blame] | 6788 | struct i40e_ring *tx_ring, *rx_ring; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6789 | struct i40e_pf *pf = vsi->back; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6790 | int i; |
| 6791 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6792 | /* Set basic values in the rings to be used later during open() */ |
Neerav Parikh | d739764 | 2013-11-28 06:39:37 +0000 | [diff] [blame] | 6793 | for (i = 0; i < vsi->alloc_queue_pairs; i++) { |
Shannon Nelson | ac6c5e3 | 2013-11-20 10:02:57 +0000 | [diff] [blame] | 6794 | /* allocate space for both Tx and Rx in one shot */ |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6795 | tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL); |
| 6796 | if (!tx_ring) |
| 6797 | goto err_out; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6798 | |
| 6799 | tx_ring->queue_index = i; |
| 6800 | tx_ring->reg_idx = vsi->base_queue + i; |
| 6801 | tx_ring->ring_active = false; |
| 6802 | tx_ring->vsi = vsi; |
| 6803 | tx_ring->netdev = vsi->netdev; |
| 6804 | tx_ring->dev = &pf->pdev->dev; |
| 6805 | tx_ring->count = vsi->num_desc; |
| 6806 | tx_ring->size = 0; |
| 6807 | tx_ring->dcb_tc = 0; |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6808 | vsi->tx_rings[i] = tx_ring; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6809 | |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6810 | rx_ring = &tx_ring[1]; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6811 | rx_ring->queue_index = i; |
| 6812 | rx_ring->reg_idx = vsi->base_queue + i; |
| 6813 | rx_ring->ring_active = false; |
| 6814 | rx_ring->vsi = vsi; |
| 6815 | rx_ring->netdev = vsi->netdev; |
| 6816 | rx_ring->dev = &pf->pdev->dev; |
| 6817 | rx_ring->count = vsi->num_desc; |
| 6818 | rx_ring->size = 0; |
| 6819 | rx_ring->dcb_tc = 0; |
| 6820 | if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) |
| 6821 | set_ring_16byte_desc_enabled(rx_ring); |
| 6822 | else |
| 6823 | clear_ring_16byte_desc_enabled(rx_ring); |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6824 | vsi->rx_rings[i] = rx_ring; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6825 | } |
| 6826 | |
| 6827 | return 0; |
Alexander Duyck | 9f65e15 | 2013-09-28 06:00:58 +0000 | [diff] [blame] | 6828 | |
| 6829 | err_out: |
| 6830 | i40e_vsi_clear_rings(vsi); |
| 6831 | return -ENOMEM; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6832 | } |
| 6833 | |
| 6834 | /** |
| 6835 | * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel |
| 6836 | * @pf: board private structure |
| 6837 | * @vectors: the number of MSI-X vectors to request |
| 6838 | * |
| 6839 | * Returns the number of vectors reserved, or error |
| 6840 | **/ |
| 6841 | static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors) |
| 6842 | { |
Alexander Gordeev | 7b37f37 | 2014-02-18 11:11:42 +0100 | [diff] [blame] | 6843 | vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries, |
| 6844 | I40E_MIN_MSIX, vectors); |
| 6845 | if (vectors < 0) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6846 | dev_info(&pf->pdev->dev, |
Alexander Gordeev | 7b37f37 | 2014-02-18 11:11:42 +0100 | [diff] [blame] | 6847 | "MSI-X vector reservation failed: %d\n", vectors); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6848 | vectors = 0; |
| 6849 | } |
| 6850 | |
| 6851 | return vectors; |
| 6852 | } |
| 6853 | |
| 6854 | /** |
| 6855 | * i40e_init_msix - Setup the MSIX capability |
| 6856 | * @pf: board private structure |
| 6857 | * |
| 6858 | * Work with the OS to set up the MSIX vectors needed. |
| 6859 | * |
| 6860 | * Returns 0 on success, negative on failure |
| 6861 | **/ |
| 6862 | static int i40e_init_msix(struct i40e_pf *pf) |
| 6863 | { |
| 6864 | i40e_status err = 0; |
| 6865 | struct i40e_hw *hw = &pf->hw; |
Shannon Nelson | c135b0d | 2014-10-17 03:14:49 +0000 | [diff] [blame] | 6866 | int other_vecs = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6867 | int v_budget, i; |
| 6868 | int vec; |
| 6869 | |
| 6870 | if (!(pf->flags & I40E_FLAG_MSIX_ENABLED)) |
| 6871 | return -ENODEV; |
| 6872 | |
| 6873 | /* The number of vectors we'll request will be comprised of: |
| 6874 | * - Add 1 for "other" cause for Admin Queue events, etc. |
| 6875 | * - The number of LAN queue pairs |
Anjali Singhai Jain | f8ff146 | 2013-11-26 10:49:19 +0000 | [diff] [blame] | 6876 | * - Queues being used for RSS. |
| 6877 | * We don't need as many as max_rss_size vectors. |
| 6878 | * use rss_size instead in the calculation since that |
| 6879 | * is governed by number of cpus in the system. |
| 6880 | * - assumes symmetric Tx/Rx pairing |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6881 | * - The number of VMDq pairs |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6882 | #ifdef I40E_FCOE |
| 6883 | * - The number of FCOE qps. |
| 6884 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6885 | * Once we count this up, try the request. |
| 6886 | * |
| 6887 | * If we can't get what we want, we'll simplify to nearly nothing |
| 6888 | * and try again. If that still fails, we punt. |
| 6889 | */ |
Anjali Singhai Jain | f8ff146 | 2013-11-26 10:49:19 +0000 | [diff] [blame] | 6890 | pf->num_lan_msix = pf->num_lan_qps - (pf->rss_size_max - pf->rss_size); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6891 | pf->num_vmdq_msix = pf->num_vmdq_qps; |
Shannon Nelson | c135b0d | 2014-10-17 03:14:49 +0000 | [diff] [blame] | 6892 | other_vecs = 1; |
| 6893 | other_vecs += (pf->num_vmdq_vsis * pf->num_vmdq_msix); |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 6894 | if (pf->flags & I40E_FLAG_FD_SB_ENABLED) |
Shannon Nelson | c135b0d | 2014-10-17 03:14:49 +0000 | [diff] [blame] | 6895 | other_vecs++; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6896 | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6897 | #ifdef I40E_FCOE |
| 6898 | if (pf->flags & I40E_FLAG_FCOE_ENABLED) { |
| 6899 | pf->num_fcoe_msix = pf->num_fcoe_qps; |
| 6900 | v_budget += pf->num_fcoe_msix; |
| 6901 | } |
| 6902 | |
| 6903 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6904 | /* Scale down if necessary, and the rings will share vectors */ |
Shannon Nelson | c135b0d | 2014-10-17 03:14:49 +0000 | [diff] [blame] | 6905 | pf->num_lan_msix = min_t(int, pf->num_lan_msix, |
| 6906 | (hw->func_caps.num_msix_vectors - other_vecs)); |
| 6907 | v_budget = pf->num_lan_msix + other_vecs; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6908 | |
| 6909 | pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry), |
| 6910 | GFP_KERNEL); |
| 6911 | if (!pf->msix_entries) |
| 6912 | return -ENOMEM; |
| 6913 | |
| 6914 | for (i = 0; i < v_budget; i++) |
| 6915 | pf->msix_entries[i].entry = i; |
| 6916 | vec = i40e_reserve_msix_vectors(pf, v_budget); |
Anjali Singhai Jain | a34977b | 2014-05-21 23:32:43 +0000 | [diff] [blame] | 6917 | |
| 6918 | if (vec != v_budget) { |
| 6919 | /* If we have limited resources, we will start with no vectors |
| 6920 | * for the special features and then allocate vectors to some |
| 6921 | * of these features based on the policy and at the end disable |
| 6922 | * the features that did not get any vectors. |
| 6923 | */ |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6924 | #ifdef I40E_FCOE |
| 6925 | pf->num_fcoe_qps = 0; |
| 6926 | pf->num_fcoe_msix = 0; |
| 6927 | #endif |
Anjali Singhai Jain | a34977b | 2014-05-21 23:32:43 +0000 | [diff] [blame] | 6928 | pf->num_vmdq_msix = 0; |
| 6929 | } |
| 6930 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6931 | if (vec < I40E_MIN_MSIX) { |
| 6932 | pf->flags &= ~I40E_FLAG_MSIX_ENABLED; |
| 6933 | kfree(pf->msix_entries); |
| 6934 | pf->msix_entries = NULL; |
| 6935 | return -ENODEV; |
| 6936 | |
| 6937 | } else if (vec == I40E_MIN_MSIX) { |
| 6938 | /* Adjust for minimal MSIX use */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6939 | pf->num_vmdq_vsis = 0; |
| 6940 | pf->num_vmdq_qps = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6941 | pf->num_lan_qps = 1; |
| 6942 | pf->num_lan_msix = 1; |
| 6943 | |
| 6944 | } else if (vec != v_budget) { |
Anjali Singhai Jain | a34977b | 2014-05-21 23:32:43 +0000 | [diff] [blame] | 6945 | /* reserve the misc vector */ |
| 6946 | vec--; |
| 6947 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6948 | /* Scale vector usage down */ |
| 6949 | pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */ |
Anjali Singhai Jain | a34977b | 2014-05-21 23:32:43 +0000 | [diff] [blame] | 6950 | pf->num_vmdq_vsis = 1; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6951 | |
| 6952 | /* partition out the remaining vectors */ |
| 6953 | switch (vec) { |
| 6954 | case 2: |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6955 | pf->num_lan_msix = 1; |
| 6956 | break; |
| 6957 | case 3: |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6958 | #ifdef I40E_FCOE |
| 6959 | /* give one vector to FCoE */ |
| 6960 | if (pf->flags & I40E_FLAG_FCOE_ENABLED) { |
| 6961 | pf->num_lan_msix = 1; |
| 6962 | pf->num_fcoe_msix = 1; |
| 6963 | } |
| 6964 | #else |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6965 | pf->num_lan_msix = 2; |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6966 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6967 | break; |
| 6968 | default: |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6969 | #ifdef I40E_FCOE |
| 6970 | /* give one vector to FCoE */ |
| 6971 | if (pf->flags & I40E_FLAG_FCOE_ENABLED) { |
| 6972 | pf->num_fcoe_msix = 1; |
| 6973 | vec--; |
| 6974 | } |
| 6975 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6976 | pf->num_lan_msix = min_t(int, (vec / 2), |
| 6977 | pf->num_lan_qps); |
| 6978 | pf->num_vmdq_vsis = min_t(int, (vec - pf->num_lan_msix), |
| 6979 | I40E_DEFAULT_NUM_VMDQ_VSI); |
| 6980 | break; |
| 6981 | } |
| 6982 | } |
| 6983 | |
Anjali Singhai Jain | a34977b | 2014-05-21 23:32:43 +0000 | [diff] [blame] | 6984 | if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) && |
| 6985 | (pf->num_vmdq_msix == 0)) { |
| 6986 | dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n"); |
| 6987 | pf->flags &= ~I40E_FLAG_VMDQ_ENABLED; |
| 6988 | } |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 6989 | #ifdef I40E_FCOE |
| 6990 | |
| 6991 | if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) { |
| 6992 | dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n"); |
| 6993 | pf->flags &= ~I40E_FLAG_FCOE_ENABLED; |
| 6994 | } |
| 6995 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 6996 | return err; |
| 6997 | } |
| 6998 | |
| 6999 | /** |
Greg Rose | 90e0407 | 2014-03-06 08:59:57 +0000 | [diff] [blame] | 7000 | * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 7001 | * @vsi: the VSI being configured |
| 7002 | * @v_idx: index of the vector in the vsi struct |
| 7003 | * |
| 7004 | * We allocate one q_vector. If allocation fails we return -ENOMEM. |
| 7005 | **/ |
Greg Rose | 90e0407 | 2014-03-06 08:59:57 +0000 | [diff] [blame] | 7006 | static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx) |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 7007 | { |
| 7008 | struct i40e_q_vector *q_vector; |
| 7009 | |
| 7010 | /* allocate q_vector */ |
| 7011 | q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL); |
| 7012 | if (!q_vector) |
| 7013 | return -ENOMEM; |
| 7014 | |
| 7015 | q_vector->vsi = vsi; |
| 7016 | q_vector->v_idx = v_idx; |
| 7017 | cpumask_set_cpu(v_idx, &q_vector->affinity_mask); |
| 7018 | if (vsi->netdev) |
| 7019 | netif_napi_add(vsi->netdev, &q_vector->napi, |
Jesse Brandeburg | eefeace | 2014-05-10 04:49:13 +0000 | [diff] [blame] | 7020 | i40e_napi_poll, NAPI_POLL_WEIGHT); |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 7021 | |
Alexander Duyck | cd0b6fa | 2013-09-28 06:00:53 +0000 | [diff] [blame] | 7022 | q_vector->rx.latency_range = I40E_LOW_LATENCY; |
| 7023 | q_vector->tx.latency_range = I40E_LOW_LATENCY; |
| 7024 | |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 7025 | /* tie q_vector and vsi together */ |
| 7026 | vsi->q_vectors[v_idx] = q_vector; |
| 7027 | |
| 7028 | return 0; |
| 7029 | } |
| 7030 | |
| 7031 | /** |
Greg Rose | 90e0407 | 2014-03-06 08:59:57 +0000 | [diff] [blame] | 7032 | * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7033 | * @vsi: the VSI being configured |
| 7034 | * |
| 7035 | * We allocate one q_vector per queue interrupt. If allocation fails we |
| 7036 | * return -ENOMEM. |
| 7037 | **/ |
Greg Rose | 90e0407 | 2014-03-06 08:59:57 +0000 | [diff] [blame] | 7038 | static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7039 | { |
| 7040 | struct i40e_pf *pf = vsi->back; |
| 7041 | int v_idx, num_q_vectors; |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 7042 | int err; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7043 | |
| 7044 | /* if not MSIX, give the one vector only to the LAN VSI */ |
| 7045 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) |
| 7046 | num_q_vectors = vsi->num_q_vectors; |
| 7047 | else if (vsi == pf->vsi[pf->lan_vsi]) |
| 7048 | num_q_vectors = 1; |
| 7049 | else |
| 7050 | return -EINVAL; |
| 7051 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7052 | for (v_idx = 0; v_idx < num_q_vectors; v_idx++) { |
Greg Rose | 90e0407 | 2014-03-06 08:59:57 +0000 | [diff] [blame] | 7053 | err = i40e_vsi_alloc_q_vector(vsi, v_idx); |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 7054 | if (err) |
| 7055 | goto err_out; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7056 | } |
| 7057 | |
| 7058 | return 0; |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 7059 | |
| 7060 | err_out: |
| 7061 | while (v_idx--) |
| 7062 | i40e_free_q_vector(vsi, v_idx); |
| 7063 | |
| 7064 | return err; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7065 | } |
| 7066 | |
| 7067 | /** |
| 7068 | * i40e_init_interrupt_scheme - Determine proper interrupt scheme |
| 7069 | * @pf: board private structure to initialize |
| 7070 | **/ |
| 7071 | static void i40e_init_interrupt_scheme(struct i40e_pf *pf) |
| 7072 | { |
| 7073 | int err = 0; |
| 7074 | |
| 7075 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) { |
| 7076 | err = i40e_init_msix(pf); |
| 7077 | if (err) { |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 7078 | pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 7079 | #ifdef I40E_FCOE |
| 7080 | I40E_FLAG_FCOE_ENABLED | |
| 7081 | #endif |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 7082 | I40E_FLAG_RSS_ENABLED | |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 7083 | I40E_FLAG_DCB_CAPABLE | |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 7084 | I40E_FLAG_SRIOV_ENABLED | |
| 7085 | I40E_FLAG_FD_SB_ENABLED | |
| 7086 | I40E_FLAG_FD_ATR_ENABLED | |
| 7087 | I40E_FLAG_VMDQ_ENABLED); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7088 | |
| 7089 | /* rework the queue expectations without MSIX */ |
| 7090 | i40e_determine_queue_usage(pf); |
| 7091 | } |
| 7092 | } |
| 7093 | |
| 7094 | if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) && |
| 7095 | (pf->flags & I40E_FLAG_MSI_ENABLED)) { |
Catherine Sullivan | 77fa28b | 2014-02-20 19:29:17 -0800 | [diff] [blame] | 7096 | dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7097 | err = pci_enable_msi(pf->pdev); |
| 7098 | if (err) { |
Shannon Nelson | 958a3e3 | 2013-09-28 07:13:28 +0000 | [diff] [blame] | 7099 | dev_info(&pf->pdev->dev, "MSI init failed - %d\n", err); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7100 | pf->flags &= ~I40E_FLAG_MSI_ENABLED; |
| 7101 | } |
| 7102 | } |
| 7103 | |
Shannon Nelson | 958a3e3 | 2013-09-28 07:13:28 +0000 | [diff] [blame] | 7104 | if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED))) |
Catherine Sullivan | 77fa28b | 2014-02-20 19:29:17 -0800 | [diff] [blame] | 7105 | dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n"); |
Shannon Nelson | 958a3e3 | 2013-09-28 07:13:28 +0000 | [diff] [blame] | 7106 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7107 | /* track first vector for misc interrupts */ |
| 7108 | err = i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT-1); |
| 7109 | } |
| 7110 | |
| 7111 | /** |
| 7112 | * i40e_setup_misc_vector - Setup the misc vector to handle non queue events |
| 7113 | * @pf: board private structure |
| 7114 | * |
| 7115 | * This sets up the handler for MSIX 0, which is used to manage the |
| 7116 | * non-queue interrupts, e.g. AdminQ and errors. This is not used |
| 7117 | * when in MSI or Legacy interrupt mode. |
| 7118 | **/ |
| 7119 | static int i40e_setup_misc_vector(struct i40e_pf *pf) |
| 7120 | { |
| 7121 | struct i40e_hw *hw = &pf->hw; |
| 7122 | int err = 0; |
| 7123 | |
| 7124 | /* Only request the irq if this is the first time through, and |
| 7125 | * not when we're rebuilding after a Reset |
| 7126 | */ |
| 7127 | if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) { |
| 7128 | err = request_irq(pf->msix_entries[0].vector, |
| 7129 | i40e_intr, 0, pf->misc_int_name, pf); |
| 7130 | if (err) { |
| 7131 | dev_info(&pf->pdev->dev, |
Catherine Sullivan | 77fa28b | 2014-02-20 19:29:17 -0800 | [diff] [blame] | 7132 | "request_irq for %s failed: %d\n", |
| 7133 | pf->misc_int_name, err); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7134 | return -EFAULT; |
| 7135 | } |
| 7136 | } |
| 7137 | |
| 7138 | i40e_enable_misc_int_causes(hw); |
| 7139 | |
| 7140 | /* associate no queues to the misc vector */ |
| 7141 | wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST); |
| 7142 | wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K); |
| 7143 | |
| 7144 | i40e_flush(hw); |
| 7145 | |
| 7146 | i40e_irq_dynamic_enable_icr0(pf); |
| 7147 | |
| 7148 | return err; |
| 7149 | } |
| 7150 | |
| 7151 | /** |
| 7152 | * i40e_config_rss - Prepare for RSS if used |
| 7153 | * @pf: board private structure |
| 7154 | **/ |
| 7155 | static int i40e_config_rss(struct i40e_pf *pf) |
| 7156 | { |
Eric Dumazet | 22f258a | 2014-11-16 06:23:13 -0800 | [diff] [blame] | 7157 | u32 rss_key[I40E_PFQF_HKEY_MAX_INDEX + 1]; |
Anjali Singhai Jain | 4617e8c | 2013-11-20 10:02:56 +0000 | [diff] [blame] | 7158 | struct i40e_hw *hw = &pf->hw; |
| 7159 | u32 lut = 0; |
| 7160 | int i, j; |
| 7161 | u64 hena; |
Carolyn Wyborny | e157ea3 | 2014-06-03 23:50:22 +0000 | [diff] [blame] | 7162 | u32 reg_val; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7163 | |
Eric Dumazet | 22f258a | 2014-11-16 06:23:13 -0800 | [diff] [blame] | 7164 | netdev_rss_key_fill(rss_key, sizeof(rss_key)); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7165 | for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++) |
Eric Dumazet | 22f258a | 2014-11-16 06:23:13 -0800 | [diff] [blame] | 7166 | wr32(hw, I40E_PFQF_HKEY(i), rss_key[i]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7167 | |
| 7168 | /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */ |
| 7169 | hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) | |
| 7170 | ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32); |
Mitch Williams | 12dc4fe | 2013-11-28 06:39:32 +0000 | [diff] [blame] | 7171 | hena |= I40E_DEFAULT_RSS_HENA; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7172 | wr32(hw, I40E_PFQF_HENA(0), (u32)hena); |
| 7173 | wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32)); |
| 7174 | |
Carolyn Wyborny | e157ea3 | 2014-06-03 23:50:22 +0000 | [diff] [blame] | 7175 | /* Check capability and Set table size and register per hw expectation*/ |
| 7176 | reg_val = rd32(hw, I40E_PFQF_CTL_0); |
| 7177 | if (hw->func_caps.rss_table_size == 512) { |
| 7178 | reg_val |= I40E_PFQF_CTL_0_HASHLUTSIZE_512; |
| 7179 | pf->rss_table_size = 512; |
| 7180 | } else { |
| 7181 | pf->rss_table_size = 128; |
| 7182 | reg_val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_512; |
| 7183 | } |
| 7184 | wr32(hw, I40E_PFQF_CTL_0, reg_val); |
| 7185 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7186 | /* Populate the LUT with max no. of queues in round robin fashion */ |
Carolyn Wyborny | e157ea3 | 2014-06-03 23:50:22 +0000 | [diff] [blame] | 7187 | for (i = 0, j = 0; i < pf->rss_table_size; i++, j++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7188 | |
| 7189 | /* The assumption is that lan qp count will be the highest |
| 7190 | * qp count for any PF VSI that needs RSS. |
| 7191 | * If multiple VSIs need RSS support, all the qp counts |
| 7192 | * for those VSIs should be a power of 2 for RSS to work. |
| 7193 | * If LAN VSI is the only consumer for RSS then this requirement |
| 7194 | * is not necessary. |
| 7195 | */ |
| 7196 | if (j == pf->rss_size) |
| 7197 | j = 0; |
| 7198 | /* lut = 4-byte sliding window of 4 lut entries */ |
| 7199 | lut = (lut << 8) | (j & |
| 7200 | ((0x1 << pf->hw.func_caps.rss_table_entry_width) - 1)); |
| 7201 | /* On i = 3, we have 4 entries in lut; write to the register */ |
| 7202 | if ((i & 3) == 3) |
| 7203 | wr32(hw, I40E_PFQF_HLUT(i >> 2), lut); |
| 7204 | } |
| 7205 | i40e_flush(hw); |
| 7206 | |
| 7207 | return 0; |
| 7208 | } |
| 7209 | |
| 7210 | /** |
Anjali Singhai Jain | f8ff146 | 2013-11-26 10:49:19 +0000 | [diff] [blame] | 7211 | * i40e_reconfig_rss_queues - change number of queues for rss and rebuild |
| 7212 | * @pf: board private structure |
| 7213 | * @queue_count: the requested queue count for rss. |
| 7214 | * |
| 7215 | * returns 0 if rss is not enabled, if enabled returns the final rss queue |
| 7216 | * count which may be different from the requested queue count. |
| 7217 | **/ |
| 7218 | int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count) |
| 7219 | { |
| 7220 | if (!(pf->flags & I40E_FLAG_RSS_ENABLED)) |
| 7221 | return 0; |
| 7222 | |
| 7223 | queue_count = min_t(int, queue_count, pf->rss_size_max); |
Anjali Singhai Jain | f8ff146 | 2013-11-26 10:49:19 +0000 | [diff] [blame] | 7224 | |
| 7225 | if (queue_count != pf->rss_size) { |
Anjali Singhai Jain | f8ff146 | 2013-11-26 10:49:19 +0000 | [diff] [blame] | 7226 | i40e_prep_for_reset(pf); |
| 7227 | |
Anjali Singhai Jain | f8ff146 | 2013-11-26 10:49:19 +0000 | [diff] [blame] | 7228 | pf->rss_size = queue_count; |
| 7229 | |
| 7230 | i40e_reset_and_rebuild(pf, true); |
| 7231 | i40e_config_rss(pf); |
| 7232 | } |
| 7233 | dev_info(&pf->pdev->dev, "RSS count: %d\n", pf->rss_size); |
| 7234 | return pf->rss_size; |
| 7235 | } |
| 7236 | |
| 7237 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7238 | * i40e_sw_init - Initialize general software structures (struct i40e_pf) |
| 7239 | * @pf: board private structure to initialize |
| 7240 | * |
| 7241 | * i40e_sw_init initializes the Adapter private data structure. |
| 7242 | * Fields are initialized based on PCI device information and |
| 7243 | * OS network device settings (MTU size). |
| 7244 | **/ |
| 7245 | static int i40e_sw_init(struct i40e_pf *pf) |
| 7246 | { |
| 7247 | int err = 0; |
| 7248 | int size; |
| 7249 | |
| 7250 | pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE, |
| 7251 | (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK)); |
Shannon Nelson | 2759997 | 2013-11-16 10:00:43 +0000 | [diff] [blame] | 7252 | pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7253 | if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) { |
| 7254 | if (I40E_DEBUG_USER & debug) |
| 7255 | pf->hw.debug_mask = debug; |
| 7256 | pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER), |
| 7257 | I40E_DEFAULT_MSG_ENABLE); |
| 7258 | } |
| 7259 | |
| 7260 | /* Set default capability flags */ |
| 7261 | pf->flags = I40E_FLAG_RX_CSUM_ENABLED | |
| 7262 | I40E_FLAG_MSI_ENABLED | |
| 7263 | I40E_FLAG_MSIX_ENABLED | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7264 | I40E_FLAG_RX_1BUF_ENABLED; |
| 7265 | |
Mitch Williams | ca99eb9 | 2014-04-04 04:43:07 +0000 | [diff] [blame] | 7266 | /* Set default ITR */ |
| 7267 | pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF; |
| 7268 | pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF; |
| 7269 | |
Jesse Brandeburg | 7134f9c | 2013-11-26 08:56:05 +0000 | [diff] [blame] | 7270 | /* Depending on PF configurations, it is possible that the RSS |
| 7271 | * maximum might end up larger than the available queues |
| 7272 | */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7273 | pf->rss_size_max = 0x1 << pf->hw.func_caps.rss_table_entry_width; |
Paul M Stillwell Jr | ec9a7db | 2014-07-09 07:46:10 +0000 | [diff] [blame] | 7274 | pf->rss_size = 1; |
Jesse Brandeburg | 7134f9c | 2013-11-26 08:56:05 +0000 | [diff] [blame] | 7275 | pf->rss_size_max = min_t(int, pf->rss_size_max, |
| 7276 | pf->hw.func_caps.num_tx_qp); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7277 | if (pf->hw.func_caps.rss) { |
| 7278 | pf->flags |= I40E_FLAG_RSS_ENABLED; |
Jesse Brandeburg | bf051a3 | 2013-11-26 10:49:17 +0000 | [diff] [blame] | 7279 | pf->rss_size = min_t(int, pf->rss_size_max, num_online_cpus()); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7280 | } |
| 7281 | |
Catherine Sullivan | 2050bc6 | 2013-12-18 13:46:03 +0000 | [diff] [blame] | 7282 | /* MFP mode enabled */ |
| 7283 | if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.mfp_mode_1) { |
| 7284 | pf->flags |= I40E_FLAG_MFP_ENABLED; |
| 7285 | dev_info(&pf->pdev->dev, "MFP mode Enabled\n"); |
| 7286 | } |
| 7287 | |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 7288 | /* FW/NVM is not yet fixed in this regard */ |
| 7289 | if ((pf->hw.func_caps.fd_filters_guaranteed > 0) || |
| 7290 | (pf->hw.func_caps.fd_filters_best_effort > 0)) { |
| 7291 | pf->flags |= I40E_FLAG_FD_ATR_ENABLED; |
| 7292 | pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE; |
Anjali Singhai Jain | 433c47d | 2014-05-22 06:32:17 +0000 | [diff] [blame] | 7293 | /* Setup a counter for fd_atr per pf */ |
| 7294 | pf->fd_atr_cnt_idx = I40E_FD_ATR_STAT_IDX(pf->hw.pf_id); |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 7295 | if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) { |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 7296 | pf->flags |= I40E_FLAG_FD_SB_ENABLED; |
Anjali Singhai Jain | 433c47d | 2014-05-22 06:32:17 +0000 | [diff] [blame] | 7297 | /* Setup a counter for fd_sb per pf */ |
| 7298 | pf->fd_sb_cnt_idx = I40E_FD_SB_STAT_IDX(pf->hw.pf_id); |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 7299 | } else { |
| 7300 | dev_info(&pf->pdev->dev, |
Anjali Singhai Jain | 0b67584 | 2014-03-06 08:59:51 +0000 | [diff] [blame] | 7301 | "Flow Director Sideband mode Disabled in MFP mode\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7302 | } |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 7303 | pf->fdir_pf_filter_count = |
| 7304 | pf->hw.func_caps.fd_filters_guaranteed; |
| 7305 | pf->hw.fdir_shared_filter_count = |
| 7306 | pf->hw.func_caps.fd_filters_best_effort; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7307 | } |
| 7308 | |
| 7309 | if (pf->hw.func_caps.vmdq) { |
| 7310 | pf->flags |= I40E_FLAG_VMDQ_ENABLED; |
| 7311 | pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI; |
| 7312 | pf->num_vmdq_qps = I40E_DEFAULT_QUEUES_PER_VMDQ; |
| 7313 | } |
| 7314 | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 7315 | #ifdef I40E_FCOE |
| 7316 | err = i40e_init_pf_fcoe(pf); |
| 7317 | if (err) |
| 7318 | dev_info(&pf->pdev->dev, "init_pf_fcoe failed: %d\n", err); |
| 7319 | |
| 7320 | #endif /* I40E_FCOE */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7321 | #ifdef CONFIG_PCI_IOV |
| 7322 | if (pf->hw.func_caps.num_vfs) { |
| 7323 | pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF; |
| 7324 | pf->flags |= I40E_FLAG_SRIOV_ENABLED; |
| 7325 | pf->num_req_vfs = min_t(int, |
| 7326 | pf->hw.func_caps.num_vfs, |
| 7327 | I40E_MAX_VF_COUNT); |
| 7328 | } |
| 7329 | #endif /* CONFIG_PCI_IOV */ |
| 7330 | pf->eeprom_version = 0xDEAD; |
| 7331 | pf->lan_veb = I40E_NO_VEB; |
| 7332 | pf->lan_vsi = I40E_NO_VSI; |
| 7333 | |
| 7334 | /* set up queue assignment tracking */ |
| 7335 | size = sizeof(struct i40e_lump_tracking) |
| 7336 | + (sizeof(u16) * pf->hw.func_caps.num_tx_qp); |
| 7337 | pf->qp_pile = kzalloc(size, GFP_KERNEL); |
| 7338 | if (!pf->qp_pile) { |
| 7339 | err = -ENOMEM; |
| 7340 | goto sw_init_done; |
| 7341 | } |
| 7342 | pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp; |
| 7343 | pf->qp_pile->search_hint = 0; |
| 7344 | |
| 7345 | /* set up vector assignment tracking */ |
| 7346 | size = sizeof(struct i40e_lump_tracking) |
| 7347 | + (sizeof(u16) * pf->hw.func_caps.num_msix_vectors); |
| 7348 | pf->irq_pile = kzalloc(size, GFP_KERNEL); |
| 7349 | if (!pf->irq_pile) { |
| 7350 | kfree(pf->qp_pile); |
| 7351 | err = -ENOMEM; |
| 7352 | goto sw_init_done; |
| 7353 | } |
| 7354 | pf->irq_pile->num_entries = pf->hw.func_caps.num_msix_vectors; |
| 7355 | pf->irq_pile->search_hint = 0; |
| 7356 | |
Anjali Singhai Jain | 327fe04 | 2014-06-04 01:23:26 +0000 | [diff] [blame] | 7357 | pf->tx_timeout_recovery_level = 1; |
| 7358 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7359 | mutex_init(&pf->switch_mutex); |
| 7360 | |
| 7361 | sw_init_done: |
| 7362 | return err; |
| 7363 | } |
| 7364 | |
| 7365 | /** |
Anjali Singhai Jain | 7c3c288 | 2014-02-14 02:14:38 +0000 | [diff] [blame] | 7366 | * i40e_set_ntuple - set the ntuple feature flag and take action |
| 7367 | * @pf: board private structure to initialize |
| 7368 | * @features: the feature set that the stack is suggesting |
| 7369 | * |
| 7370 | * returns a bool to indicate if reset needs to happen |
| 7371 | **/ |
| 7372 | bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features) |
| 7373 | { |
| 7374 | bool need_reset = false; |
| 7375 | |
| 7376 | /* Check if Flow Director n-tuple support was enabled or disabled. If |
| 7377 | * the state changed, we need to reset. |
| 7378 | */ |
| 7379 | if (features & NETIF_F_NTUPLE) { |
| 7380 | /* Enable filters and mark for reset */ |
| 7381 | if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED)) |
| 7382 | need_reset = true; |
| 7383 | pf->flags |= I40E_FLAG_FD_SB_ENABLED; |
| 7384 | } else { |
| 7385 | /* turn off filters, mark for reset and clear SW filter list */ |
| 7386 | if (pf->flags & I40E_FLAG_FD_SB_ENABLED) { |
| 7387 | need_reset = true; |
| 7388 | i40e_fdir_filter_exit(pf); |
| 7389 | } |
| 7390 | pf->flags &= ~I40E_FLAG_FD_SB_ENABLED; |
Anjali Singhai Jain | 8a4f34f | 2014-06-04 08:45:20 +0000 | [diff] [blame] | 7391 | pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED; |
Anjali Singhai Jain | 1e1be8f | 2014-07-10 08:03:26 +0000 | [diff] [blame] | 7392 | /* reset fd counters */ |
| 7393 | pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0; |
| 7394 | pf->fdir_pf_active_filters = 0; |
| 7395 | pf->flags |= I40E_FLAG_FD_ATR_ENABLED; |
| 7396 | dev_info(&pf->pdev->dev, "ATR re-enabled.\n"); |
Anjali Singhai Jain | 8a4f34f | 2014-06-04 08:45:20 +0000 | [diff] [blame] | 7397 | /* if ATR was auto disabled it can be re-enabled. */ |
| 7398 | if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) && |
| 7399 | (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) |
| 7400 | pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED; |
Anjali Singhai Jain | 7c3c288 | 2014-02-14 02:14:38 +0000 | [diff] [blame] | 7401 | } |
| 7402 | return need_reset; |
| 7403 | } |
| 7404 | |
| 7405 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7406 | * i40e_set_features - set the netdev feature flags |
| 7407 | * @netdev: ptr to the netdev being adjusted |
| 7408 | * @features: the feature set that the stack is suggesting |
| 7409 | **/ |
| 7410 | static int i40e_set_features(struct net_device *netdev, |
| 7411 | netdev_features_t features) |
| 7412 | { |
| 7413 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 7414 | struct i40e_vsi *vsi = np->vsi; |
Anjali Singhai Jain | 7c3c288 | 2014-02-14 02:14:38 +0000 | [diff] [blame] | 7415 | struct i40e_pf *pf = vsi->back; |
| 7416 | bool need_reset; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7417 | |
| 7418 | if (features & NETIF_F_HW_VLAN_CTAG_RX) |
| 7419 | i40e_vlan_stripping_enable(vsi); |
| 7420 | else |
| 7421 | i40e_vlan_stripping_disable(vsi); |
| 7422 | |
Anjali Singhai Jain | 7c3c288 | 2014-02-14 02:14:38 +0000 | [diff] [blame] | 7423 | need_reset = i40e_set_ntuple(pf, features); |
| 7424 | |
| 7425 | if (need_reset) |
| 7426 | i40e_do_reset(pf, (1 << __I40E_PF_RESET_REQUESTED)); |
| 7427 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7428 | return 0; |
| 7429 | } |
| 7430 | |
Jeff Kirsher | a1c9a9d | 2013-12-28 07:32:18 +0000 | [diff] [blame] | 7431 | #ifdef CONFIG_I40E_VXLAN |
| 7432 | /** |
| 7433 | * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port |
| 7434 | * @pf: board private structure |
| 7435 | * @port: The UDP port to look up |
| 7436 | * |
| 7437 | * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found |
| 7438 | **/ |
| 7439 | static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port) |
| 7440 | { |
| 7441 | u8 i; |
| 7442 | |
| 7443 | for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) { |
| 7444 | if (pf->vxlan_ports[i] == port) |
| 7445 | return i; |
| 7446 | } |
| 7447 | |
| 7448 | return i; |
| 7449 | } |
| 7450 | |
| 7451 | /** |
| 7452 | * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up |
| 7453 | * @netdev: This physical port's netdev |
| 7454 | * @sa_family: Socket Family that VXLAN is notifying us about |
| 7455 | * @port: New UDP port number that VXLAN started listening to |
| 7456 | **/ |
| 7457 | static void i40e_add_vxlan_port(struct net_device *netdev, |
| 7458 | sa_family_t sa_family, __be16 port) |
| 7459 | { |
| 7460 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 7461 | struct i40e_vsi *vsi = np->vsi; |
| 7462 | struct i40e_pf *pf = vsi->back; |
| 7463 | u8 next_idx; |
| 7464 | u8 idx; |
| 7465 | |
| 7466 | if (sa_family == AF_INET6) |
| 7467 | return; |
| 7468 | |
| 7469 | idx = i40e_get_vxlan_port_idx(pf, port); |
| 7470 | |
| 7471 | /* Check if port already exists */ |
| 7472 | if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) { |
| 7473 | netdev_info(netdev, "Port %d already offloaded\n", ntohs(port)); |
| 7474 | return; |
| 7475 | } |
| 7476 | |
| 7477 | /* Now check if there is space to add the new port */ |
| 7478 | next_idx = i40e_get_vxlan_port_idx(pf, 0); |
| 7479 | |
| 7480 | if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) { |
| 7481 | netdev_info(netdev, "Maximum number of UDP ports reached, not adding port %d\n", |
| 7482 | ntohs(port)); |
| 7483 | return; |
| 7484 | } |
| 7485 | |
| 7486 | /* New port: add it and mark its index in the bitmap */ |
| 7487 | pf->vxlan_ports[next_idx] = port; |
| 7488 | pf->pending_vxlan_bitmap |= (1 << next_idx); |
| 7489 | |
| 7490 | pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC; |
| 7491 | } |
| 7492 | |
| 7493 | /** |
| 7494 | * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away |
| 7495 | * @netdev: This physical port's netdev |
| 7496 | * @sa_family: Socket Family that VXLAN is notifying us about |
| 7497 | * @port: UDP port number that VXLAN stopped listening to |
| 7498 | **/ |
| 7499 | static void i40e_del_vxlan_port(struct net_device *netdev, |
| 7500 | sa_family_t sa_family, __be16 port) |
| 7501 | { |
| 7502 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 7503 | struct i40e_vsi *vsi = np->vsi; |
| 7504 | struct i40e_pf *pf = vsi->back; |
| 7505 | u8 idx; |
| 7506 | |
| 7507 | if (sa_family == AF_INET6) |
| 7508 | return; |
| 7509 | |
| 7510 | idx = i40e_get_vxlan_port_idx(pf, port); |
| 7511 | |
| 7512 | /* Check if port already exists */ |
| 7513 | if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) { |
| 7514 | /* if port exists, set it to 0 (mark for deletion) |
| 7515 | * and make it pending |
| 7516 | */ |
| 7517 | pf->vxlan_ports[idx] = 0; |
| 7518 | |
| 7519 | pf->pending_vxlan_bitmap |= (1 << idx); |
| 7520 | |
| 7521 | pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC; |
| 7522 | } else { |
| 7523 | netdev_warn(netdev, "Port %d was not found, not deleting\n", |
| 7524 | ntohs(port)); |
| 7525 | } |
| 7526 | } |
| 7527 | |
| 7528 | #endif |
Neerav Parikh | 1f224ad | 2014-02-12 01:45:31 +0000 | [diff] [blame] | 7529 | static int i40e_get_phys_port_id(struct net_device *netdev, |
Jiri Pirko | 02637fc | 2014-11-28 14:34:16 +0100 | [diff] [blame] | 7530 | struct netdev_phys_item_id *ppid) |
Neerav Parikh | 1f224ad | 2014-02-12 01:45:31 +0000 | [diff] [blame] | 7531 | { |
| 7532 | struct i40e_netdev_priv *np = netdev_priv(netdev); |
| 7533 | struct i40e_pf *pf = np->vsi->back; |
| 7534 | struct i40e_hw *hw = &pf->hw; |
| 7535 | |
| 7536 | if (!(pf->flags & I40E_FLAG_PORT_ID_VALID)) |
| 7537 | return -EOPNOTSUPP; |
| 7538 | |
| 7539 | ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id)); |
| 7540 | memcpy(ppid->id, hw->mac.port_addr, ppid->id_len); |
| 7541 | |
| 7542 | return 0; |
| 7543 | } |
| 7544 | |
Jesse Brandeburg | 2f90ade | 2014-11-20 16:30:02 -0800 | [diff] [blame] | 7545 | /** |
| 7546 | * i40e_ndo_fdb_add - add an entry to the hardware database |
| 7547 | * @ndm: the input from the stack |
| 7548 | * @tb: pointer to array of nladdr (unused) |
| 7549 | * @dev: the net device pointer |
| 7550 | * @addr: the MAC address entry being added |
| 7551 | * @flags: instructions from stack about fdb operation |
| 7552 | */ |
Greg Rose | 4ba0dea | 2014-03-06 08:59:55 +0000 | [diff] [blame] | 7553 | static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[], |
| 7554 | struct net_device *dev, |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 7555 | const unsigned char *addr, u16 vid, |
Greg Rose | 4ba0dea | 2014-03-06 08:59:55 +0000 | [diff] [blame] | 7556 | u16 flags) |
Greg Rose | 4ba0dea | 2014-03-06 08:59:55 +0000 | [diff] [blame] | 7557 | { |
| 7558 | struct i40e_netdev_priv *np = netdev_priv(dev); |
| 7559 | struct i40e_pf *pf = np->vsi->back; |
| 7560 | int err = 0; |
| 7561 | |
| 7562 | if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED)) |
| 7563 | return -EOPNOTSUPP; |
| 7564 | |
Or Gerlitz | 65891fe | 2014-12-14 18:19:05 +0200 | [diff] [blame] | 7565 | if (vid) { |
| 7566 | pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name); |
| 7567 | return -EINVAL; |
| 7568 | } |
| 7569 | |
Greg Rose | 4ba0dea | 2014-03-06 08:59:55 +0000 | [diff] [blame] | 7570 | /* Hardware does not support aging addresses so if a |
| 7571 | * ndm_state is given only allow permanent addresses |
| 7572 | */ |
| 7573 | if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) { |
| 7574 | netdev_info(dev, "FDB only supports static addresses\n"); |
| 7575 | return -EINVAL; |
| 7576 | } |
| 7577 | |
| 7578 | if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) |
| 7579 | err = dev_uc_add_excl(dev, addr); |
| 7580 | else if (is_multicast_ether_addr(addr)) |
| 7581 | err = dev_mc_add_excl(dev, addr); |
| 7582 | else |
| 7583 | err = -EINVAL; |
| 7584 | |
| 7585 | /* Only return duplicate errors if NLM_F_EXCL is set */ |
| 7586 | if (err == -EEXIST && !(flags & NLM_F_EXCL)) |
| 7587 | err = 0; |
| 7588 | |
| 7589 | return err; |
| 7590 | } |
| 7591 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7592 | static const struct net_device_ops i40e_netdev_ops = { |
| 7593 | .ndo_open = i40e_open, |
| 7594 | .ndo_stop = i40e_close, |
| 7595 | .ndo_start_xmit = i40e_lan_xmit_frame, |
| 7596 | .ndo_get_stats64 = i40e_get_netdev_stats_struct, |
| 7597 | .ndo_set_rx_mode = i40e_set_rx_mode, |
| 7598 | .ndo_validate_addr = eth_validate_addr, |
| 7599 | .ndo_set_mac_address = i40e_set_mac, |
| 7600 | .ndo_change_mtu = i40e_change_mtu, |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 7601 | .ndo_do_ioctl = i40e_ioctl, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7602 | .ndo_tx_timeout = i40e_tx_timeout, |
| 7603 | .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid, |
| 7604 | .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid, |
| 7605 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 7606 | .ndo_poll_controller = i40e_netpoll, |
| 7607 | #endif |
| 7608 | .ndo_setup_tc = i40e_setup_tc, |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 7609 | #ifdef I40E_FCOE |
| 7610 | .ndo_fcoe_enable = i40e_fcoe_enable, |
| 7611 | .ndo_fcoe_disable = i40e_fcoe_disable, |
| 7612 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7613 | .ndo_set_features = i40e_set_features, |
| 7614 | .ndo_set_vf_mac = i40e_ndo_set_vf_mac, |
| 7615 | .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan, |
Sucheta Chakraborty | ed61668 | 2014-05-22 09:59:05 -0400 | [diff] [blame] | 7616 | .ndo_set_vf_rate = i40e_ndo_set_vf_bw, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7617 | .ndo_get_vf_config = i40e_ndo_get_vf_config, |
Mitch Williams | 588aefa | 2014-02-11 08:27:49 +0000 | [diff] [blame] | 7618 | .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state, |
Serey Kong | e6d9004 | 2014-07-12 07:28:14 +0000 | [diff] [blame] | 7619 | .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk, |
Jeff Kirsher | a1c9a9d | 2013-12-28 07:32:18 +0000 | [diff] [blame] | 7620 | #ifdef CONFIG_I40E_VXLAN |
| 7621 | .ndo_add_vxlan_port = i40e_add_vxlan_port, |
| 7622 | .ndo_del_vxlan_port = i40e_del_vxlan_port, |
| 7623 | #endif |
Neerav Parikh | 1f224ad | 2014-02-12 01:45:31 +0000 | [diff] [blame] | 7624 | .ndo_get_phys_port_id = i40e_get_phys_port_id, |
Greg Rose | 4ba0dea | 2014-03-06 08:59:55 +0000 | [diff] [blame] | 7625 | .ndo_fdb_add = i40e_ndo_fdb_add, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7626 | }; |
| 7627 | |
| 7628 | /** |
| 7629 | * i40e_config_netdev - Setup the netdev flags |
| 7630 | * @vsi: the VSI being configured |
| 7631 | * |
| 7632 | * Returns 0 on success, negative value on failure |
| 7633 | **/ |
| 7634 | static int i40e_config_netdev(struct i40e_vsi *vsi) |
| 7635 | { |
Greg Rose | 1a10370 | 2013-11-28 06:42:39 +0000 | [diff] [blame] | 7636 | u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7637 | struct i40e_pf *pf = vsi->back; |
| 7638 | struct i40e_hw *hw = &pf->hw; |
| 7639 | struct i40e_netdev_priv *np; |
| 7640 | struct net_device *netdev; |
| 7641 | u8 mac_addr[ETH_ALEN]; |
| 7642 | int etherdev_size; |
| 7643 | |
| 7644 | etherdev_size = sizeof(struct i40e_netdev_priv); |
Anjali Singhai Jain | f8ff146 | 2013-11-26 10:49:19 +0000 | [diff] [blame] | 7645 | netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7646 | if (!netdev) |
| 7647 | return -ENOMEM; |
| 7648 | |
| 7649 | vsi->netdev = netdev; |
| 7650 | np = netdev_priv(netdev); |
| 7651 | np->vsi = vsi; |
| 7652 | |
Or Gerlitz | d70e941 | 2014-03-18 10:36:45 +0200 | [diff] [blame] | 7653 | netdev->hw_enc_features |= NETIF_F_IP_CSUM | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7654 | NETIF_F_GSO_UDP_TUNNEL | |
Or Gerlitz | d70e941 | 2014-03-18 10:36:45 +0200 | [diff] [blame] | 7655 | NETIF_F_TSO; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7656 | |
| 7657 | netdev->features = NETIF_F_SG | |
| 7658 | NETIF_F_IP_CSUM | |
| 7659 | NETIF_F_SCTP_CSUM | |
| 7660 | NETIF_F_HIGHDMA | |
| 7661 | NETIF_F_GSO_UDP_TUNNEL | |
| 7662 | NETIF_F_HW_VLAN_CTAG_TX | |
| 7663 | NETIF_F_HW_VLAN_CTAG_RX | |
| 7664 | NETIF_F_HW_VLAN_CTAG_FILTER | |
| 7665 | NETIF_F_IPV6_CSUM | |
| 7666 | NETIF_F_TSO | |
Jesse Brandeburg | 059dab6 | 2014-04-01 09:07:20 +0000 | [diff] [blame] | 7667 | NETIF_F_TSO_ECN | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7668 | NETIF_F_TSO6 | |
| 7669 | NETIF_F_RXCSUM | |
| 7670 | NETIF_F_RXHASH | |
| 7671 | 0; |
| 7672 | |
Anjali Singhai Jain | 2e86a0b | 2014-04-01 07:11:53 +0000 | [diff] [blame] | 7673 | if (!(pf->flags & I40E_FLAG_MFP_ENABLED)) |
| 7674 | netdev->features |= NETIF_F_NTUPLE; |
| 7675 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7676 | /* copy netdev features into list of user selectable features */ |
| 7677 | netdev->hw_features |= netdev->features; |
| 7678 | |
| 7679 | if (vsi->type == I40E_VSI_MAIN) { |
| 7680 | SET_NETDEV_DEV(netdev, &pf->pdev->dev); |
Greg Rose | 9a17390 | 2014-05-22 06:32:02 +0000 | [diff] [blame] | 7681 | ether_addr_copy(mac_addr, hw->mac.perm_addr); |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 7682 | /* The following steps are necessary to prevent reception |
| 7683 | * of tagged packets - some older NVM configurations load a |
| 7684 | * default a MAC-VLAN filter that accepts any tagged packet |
| 7685 | * which must be replaced by a normal filter. |
Greg Rose | 8c27d42 | 2014-05-22 06:31:56 +0000 | [diff] [blame] | 7686 | */ |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 7687 | if (!i40e_rm_default_mac_filter(vsi, mac_addr)) |
| 7688 | i40e_add_filter(vsi, mac_addr, |
| 7689 | I40E_VLAN_ANY, false, true); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7690 | } else { |
| 7691 | /* relate the VSI_VMDQ name to the VSI_MAIN name */ |
| 7692 | snprintf(netdev->name, IFNAMSIZ, "%sv%%d", |
| 7693 | pf->vsi[pf->lan_vsi]->netdev->name); |
| 7694 | random_ether_addr(mac_addr); |
| 7695 | i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false); |
| 7696 | } |
Greg Rose | 1a10370 | 2013-11-28 06:42:39 +0000 | [diff] [blame] | 7697 | i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7698 | |
Greg Rose | 9a17390 | 2014-05-22 06:32:02 +0000 | [diff] [blame] | 7699 | ether_addr_copy(netdev->dev_addr, mac_addr); |
| 7700 | ether_addr_copy(netdev->perm_addr, mac_addr); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7701 | /* vlan gets same features (except vlan offload) |
| 7702 | * after any tweaks for specific VSI types |
| 7703 | */ |
| 7704 | netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX | |
| 7705 | NETIF_F_HW_VLAN_CTAG_RX | |
| 7706 | NETIF_F_HW_VLAN_CTAG_FILTER); |
| 7707 | netdev->priv_flags |= IFF_UNICAST_FLT; |
| 7708 | netdev->priv_flags |= IFF_SUPP_NOFCS; |
| 7709 | /* Setup netdev TC information */ |
| 7710 | i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc); |
| 7711 | |
| 7712 | netdev->netdev_ops = &i40e_netdev_ops; |
| 7713 | netdev->watchdog_timeo = 5 * HZ; |
| 7714 | i40e_set_ethtool_ops(netdev); |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 7715 | #ifdef I40E_FCOE |
| 7716 | i40e_fcoe_config_netdev(netdev, vsi); |
| 7717 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7718 | |
| 7719 | return 0; |
| 7720 | } |
| 7721 | |
| 7722 | /** |
| 7723 | * i40e_vsi_delete - Delete a VSI from the switch |
| 7724 | * @vsi: the VSI being removed |
| 7725 | * |
| 7726 | * Returns 0 on success, negative value on failure |
| 7727 | **/ |
| 7728 | static void i40e_vsi_delete(struct i40e_vsi *vsi) |
| 7729 | { |
| 7730 | /* remove default VSI is not allowed */ |
| 7731 | if (vsi == vsi->back->vsi[vsi->back->lan_vsi]) |
| 7732 | return; |
| 7733 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7734 | i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7735 | } |
| 7736 | |
| 7737 | /** |
| 7738 | * i40e_add_vsi - Add a VSI to the switch |
| 7739 | * @vsi: the VSI being configured |
| 7740 | * |
| 7741 | * This initializes a VSI context depending on the VSI type to be added and |
| 7742 | * passes it down to the add_vsi aq command. |
| 7743 | **/ |
| 7744 | static int i40e_add_vsi(struct i40e_vsi *vsi) |
| 7745 | { |
| 7746 | int ret = -ENODEV; |
| 7747 | struct i40e_mac_filter *f, *ftmp; |
| 7748 | struct i40e_pf *pf = vsi->back; |
| 7749 | struct i40e_hw *hw = &pf->hw; |
| 7750 | struct i40e_vsi_context ctxt; |
| 7751 | u8 enabled_tc = 0x1; /* TC0 enabled */ |
| 7752 | int f_count = 0; |
| 7753 | |
| 7754 | memset(&ctxt, 0, sizeof(ctxt)); |
| 7755 | switch (vsi->type) { |
| 7756 | case I40E_VSI_MAIN: |
| 7757 | /* The PF's main VSI is already setup as part of the |
| 7758 | * device initialization, so we'll not bother with |
| 7759 | * the add_vsi call, but we will retrieve the current |
| 7760 | * VSI context. |
| 7761 | */ |
| 7762 | ctxt.seid = pf->main_vsi_seid; |
| 7763 | ctxt.pf_num = pf->hw.pf_id; |
| 7764 | ctxt.vf_num = 0; |
| 7765 | ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL); |
| 7766 | ctxt.flags = I40E_AQ_VSI_TYPE_PF; |
| 7767 | if (ret) { |
| 7768 | dev_info(&pf->pdev->dev, |
| 7769 | "couldn't get pf vsi config, err %d, aq_err %d\n", |
| 7770 | ret, pf->hw.aq.asq_last_status); |
| 7771 | return -ENOENT; |
| 7772 | } |
| 7773 | memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info)); |
| 7774 | vsi->info.valid_sections = 0; |
| 7775 | |
| 7776 | vsi->seid = ctxt.seid; |
| 7777 | vsi->id = ctxt.vsi_number; |
| 7778 | |
| 7779 | enabled_tc = i40e_pf_get_tc_map(pf); |
| 7780 | |
| 7781 | /* MFP mode setup queue map and update VSI */ |
| 7782 | if (pf->flags & I40E_FLAG_MFP_ENABLED) { |
| 7783 | memset(&ctxt, 0, sizeof(ctxt)); |
| 7784 | ctxt.seid = pf->main_vsi_seid; |
| 7785 | ctxt.pf_num = pf->hw.pf_id; |
| 7786 | ctxt.vf_num = 0; |
| 7787 | i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false); |
| 7788 | ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL); |
| 7789 | if (ret) { |
| 7790 | dev_info(&pf->pdev->dev, |
| 7791 | "update vsi failed, aq_err=%d\n", |
| 7792 | pf->hw.aq.asq_last_status); |
| 7793 | ret = -ENOENT; |
| 7794 | goto err; |
| 7795 | } |
| 7796 | /* update the local VSI info queue map */ |
| 7797 | i40e_vsi_update_queue_map(vsi, &ctxt); |
| 7798 | vsi->info.valid_sections = 0; |
| 7799 | } else { |
| 7800 | /* Default/Main VSI is only enabled for TC0 |
| 7801 | * reconfigure it to enable all TCs that are |
| 7802 | * available on the port in SFP mode. |
| 7803 | */ |
| 7804 | ret = i40e_vsi_config_tc(vsi, enabled_tc); |
| 7805 | if (ret) { |
| 7806 | dev_info(&pf->pdev->dev, |
| 7807 | "failed to configure TCs for main VSI tc_map 0x%08x, err %d, aq_err %d\n", |
| 7808 | enabled_tc, ret, |
| 7809 | pf->hw.aq.asq_last_status); |
| 7810 | ret = -ENOENT; |
| 7811 | } |
| 7812 | } |
| 7813 | break; |
| 7814 | |
| 7815 | case I40E_VSI_FDIR: |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 7816 | ctxt.pf_num = hw->pf_id; |
| 7817 | ctxt.vf_num = 0; |
| 7818 | ctxt.uplink_seid = vsi->uplink_seid; |
| 7819 | ctxt.connection_type = 0x1; /* regular data port */ |
| 7820 | ctxt.flags = I40E_AQ_VSI_TYPE_PF; |
Anjali Singhai Jain | 79c21a8 | 2014-11-13 03:06:14 +0000 | [diff] [blame] | 7821 | ctxt.info.valid_sections |= |
| 7822 | cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID); |
| 7823 | ctxt.info.switch_id = |
| 7824 | cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7825 | i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7826 | break; |
| 7827 | |
| 7828 | case I40E_VSI_VMDQ2: |
| 7829 | ctxt.pf_num = hw->pf_id; |
| 7830 | ctxt.vf_num = 0; |
| 7831 | ctxt.uplink_seid = vsi->uplink_seid; |
| 7832 | ctxt.connection_type = 0x1; /* regular data port */ |
| 7833 | ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2; |
| 7834 | |
| 7835 | ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID); |
| 7836 | |
| 7837 | /* This VSI is connected to VEB so the switch_id |
| 7838 | * should be set to zero by default. |
| 7839 | */ |
| 7840 | ctxt.info.switch_id = 0; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7841 | ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB); |
| 7842 | |
| 7843 | /* Setup the VSI tx/rx queue map for TC0 only for now */ |
| 7844 | i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true); |
| 7845 | break; |
| 7846 | |
| 7847 | case I40E_VSI_SRIOV: |
| 7848 | ctxt.pf_num = hw->pf_id; |
| 7849 | ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id; |
| 7850 | ctxt.uplink_seid = vsi->uplink_seid; |
| 7851 | ctxt.connection_type = 0x1; /* regular data port */ |
| 7852 | ctxt.flags = I40E_AQ_VSI_TYPE_VF; |
| 7853 | |
| 7854 | ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID); |
| 7855 | |
| 7856 | /* This VSI is connected to VEB so the switch_id |
| 7857 | * should be set to zero by default. |
| 7858 | */ |
| 7859 | ctxt.info.switch_id = cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB); |
| 7860 | |
| 7861 | ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID); |
| 7862 | ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL; |
Mitch Williams | c674d12 | 2014-05-20 08:01:40 +0000 | [diff] [blame] | 7863 | if (pf->vf[vsi->vf_id].spoofchk) { |
| 7864 | ctxt.info.valid_sections |= |
| 7865 | cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID); |
| 7866 | ctxt.info.sec_flags |= |
| 7867 | (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK | |
| 7868 | I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK); |
| 7869 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7870 | /* Setup the VSI tx/rx queue map for TC0 only for now */ |
| 7871 | i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true); |
| 7872 | break; |
| 7873 | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 7874 | #ifdef I40E_FCOE |
| 7875 | case I40E_VSI_FCOE: |
| 7876 | ret = i40e_fcoe_vsi_init(vsi, &ctxt); |
| 7877 | if (ret) { |
| 7878 | dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n"); |
| 7879 | return ret; |
| 7880 | } |
| 7881 | break; |
| 7882 | |
| 7883 | #endif /* I40E_FCOE */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7884 | default: |
| 7885 | return -ENODEV; |
| 7886 | } |
| 7887 | |
| 7888 | if (vsi->type != I40E_VSI_MAIN) { |
| 7889 | ret = i40e_aq_add_vsi(hw, &ctxt, NULL); |
| 7890 | if (ret) { |
| 7891 | dev_info(&vsi->back->pdev->dev, |
| 7892 | "add vsi failed, aq_err=%d\n", |
| 7893 | vsi->back->hw.aq.asq_last_status); |
| 7894 | ret = -ENOENT; |
| 7895 | goto err; |
| 7896 | } |
| 7897 | memcpy(&vsi->info, &ctxt.info, sizeof(ctxt.info)); |
| 7898 | vsi->info.valid_sections = 0; |
| 7899 | vsi->seid = ctxt.seid; |
| 7900 | vsi->id = ctxt.vsi_number; |
| 7901 | } |
| 7902 | |
| 7903 | /* If macvlan filters already exist, force them to get loaded */ |
| 7904 | list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) { |
| 7905 | f->changed = true; |
| 7906 | f_count++; |
Shannon Nelson | 6252c7e | 2014-06-04 01:23:23 +0000 | [diff] [blame] | 7907 | |
| 7908 | if (f->is_laa && vsi->type == I40E_VSI_MAIN) { |
Shannon Nelson | 30650cc | 2014-07-29 04:01:50 +0000 | [diff] [blame] | 7909 | struct i40e_aqc_remove_macvlan_element_data element; |
| 7910 | |
| 7911 | memset(&element, 0, sizeof(element)); |
| 7912 | ether_addr_copy(element.mac_addr, f->macaddr); |
| 7913 | element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH; |
| 7914 | ret = i40e_aq_remove_macvlan(hw, vsi->seid, |
| 7915 | &element, 1, NULL); |
| 7916 | if (ret) { |
| 7917 | /* some older FW has a different default */ |
| 7918 | element.flags |= |
| 7919 | I40E_AQC_MACVLAN_DEL_IGNORE_VLAN; |
| 7920 | i40e_aq_remove_macvlan(hw, vsi->seid, |
| 7921 | &element, 1, NULL); |
| 7922 | } |
| 7923 | |
| 7924 | i40e_aq_mac_address_write(hw, |
Shannon Nelson | 6252c7e | 2014-06-04 01:23:23 +0000 | [diff] [blame] | 7925 | I40E_AQC_WRITE_TYPE_LAA_WOL, |
| 7926 | f->macaddr, NULL); |
| 7927 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7928 | } |
| 7929 | if (f_count) { |
| 7930 | vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED; |
| 7931 | pf->flags |= I40E_FLAG_FILTER_SYNC; |
| 7932 | } |
| 7933 | |
| 7934 | /* Update VSI BW information */ |
| 7935 | ret = i40e_vsi_get_bw_info(vsi); |
| 7936 | if (ret) { |
| 7937 | dev_info(&pf->pdev->dev, |
| 7938 | "couldn't get vsi bw info, err %d, aq_err %d\n", |
| 7939 | ret, pf->hw.aq.asq_last_status); |
| 7940 | /* VSI is already added so not tearing that up */ |
| 7941 | ret = 0; |
| 7942 | } |
| 7943 | |
| 7944 | err: |
| 7945 | return ret; |
| 7946 | } |
| 7947 | |
| 7948 | /** |
| 7949 | * i40e_vsi_release - Delete a VSI and free its resources |
| 7950 | * @vsi: the VSI being removed |
| 7951 | * |
| 7952 | * Returns 0 on success or < 0 on error |
| 7953 | **/ |
| 7954 | int i40e_vsi_release(struct i40e_vsi *vsi) |
| 7955 | { |
| 7956 | struct i40e_mac_filter *f, *ftmp; |
| 7957 | struct i40e_veb *veb = NULL; |
| 7958 | struct i40e_pf *pf; |
| 7959 | u16 uplink_seid; |
| 7960 | int i, n; |
| 7961 | |
| 7962 | pf = vsi->back; |
| 7963 | |
| 7964 | /* release of a VEB-owner or last VSI is not allowed */ |
| 7965 | if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) { |
| 7966 | dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n", |
| 7967 | vsi->seid, vsi->uplink_seid); |
| 7968 | return -ENODEV; |
| 7969 | } |
| 7970 | if (vsi == pf->vsi[pf->lan_vsi] && |
| 7971 | !test_bit(__I40E_DOWN, &pf->state)) { |
| 7972 | dev_info(&pf->pdev->dev, "Can't remove PF VSI\n"); |
| 7973 | return -ENODEV; |
| 7974 | } |
| 7975 | |
| 7976 | uplink_seid = vsi->uplink_seid; |
| 7977 | if (vsi->type != I40E_VSI_SRIOV) { |
| 7978 | if (vsi->netdev_registered) { |
| 7979 | vsi->netdev_registered = false; |
| 7980 | if (vsi->netdev) { |
| 7981 | /* results in a call to i40e_close() */ |
| 7982 | unregister_netdev(vsi->netdev); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7983 | } |
| 7984 | } else { |
Shannon Nelson | 90ef8d4 | 2014-03-14 07:32:26 +0000 | [diff] [blame] | 7985 | i40e_vsi_close(vsi); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 7986 | } |
| 7987 | i40e_vsi_disable_irq(vsi); |
| 7988 | } |
| 7989 | |
| 7990 | list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) |
| 7991 | i40e_del_filter(vsi, f->macaddr, f->vlan, |
| 7992 | f->is_vf, f->is_netdev); |
| 7993 | i40e_sync_vsi_filters(vsi); |
| 7994 | |
| 7995 | i40e_vsi_delete(vsi); |
| 7996 | i40e_vsi_free_q_vectors(vsi); |
Shannon Nelson | a486659 | 2014-02-11 08:24:07 +0000 | [diff] [blame] | 7997 | if (vsi->netdev) { |
| 7998 | free_netdev(vsi->netdev); |
| 7999 | vsi->netdev = NULL; |
| 8000 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8001 | i40e_vsi_clear_rings(vsi); |
| 8002 | i40e_vsi_clear(vsi); |
| 8003 | |
| 8004 | /* If this was the last thing on the VEB, except for the |
| 8005 | * controlling VSI, remove the VEB, which puts the controlling |
| 8006 | * VSI onto the next level down in the switch. |
| 8007 | * |
| 8008 | * Well, okay, there's one more exception here: don't remove |
| 8009 | * the orphan VEBs yet. We'll wait for an explicit remove request |
| 8010 | * from up the network stack. |
| 8011 | */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 8012 | for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8013 | if (pf->vsi[i] && |
| 8014 | pf->vsi[i]->uplink_seid == uplink_seid && |
| 8015 | (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) { |
| 8016 | n++; /* count the VSIs */ |
| 8017 | } |
| 8018 | } |
| 8019 | for (i = 0; i < I40E_MAX_VEB; i++) { |
| 8020 | if (!pf->veb[i]) |
| 8021 | continue; |
| 8022 | if (pf->veb[i]->uplink_seid == uplink_seid) |
| 8023 | n++; /* count the VEBs */ |
| 8024 | if (pf->veb[i]->seid == uplink_seid) |
| 8025 | veb = pf->veb[i]; |
| 8026 | } |
| 8027 | if (n == 0 && veb && veb->uplink_seid != 0) |
| 8028 | i40e_veb_release(veb); |
| 8029 | |
| 8030 | return 0; |
| 8031 | } |
| 8032 | |
| 8033 | /** |
| 8034 | * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI |
| 8035 | * @vsi: ptr to the VSI |
| 8036 | * |
| 8037 | * This should only be called after i40e_vsi_mem_alloc() which allocates the |
| 8038 | * corresponding SW VSI structure and initializes num_queue_pairs for the |
| 8039 | * newly allocated VSI. |
| 8040 | * |
| 8041 | * Returns 0 on success or negative on failure |
| 8042 | **/ |
| 8043 | static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi) |
| 8044 | { |
| 8045 | int ret = -ENOENT; |
| 8046 | struct i40e_pf *pf = vsi->back; |
| 8047 | |
Alexander Duyck | 493fb30 | 2013-09-28 07:01:44 +0000 | [diff] [blame] | 8048 | if (vsi->q_vectors[0]) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8049 | dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n", |
| 8050 | vsi->seid); |
| 8051 | return -EEXIST; |
| 8052 | } |
| 8053 | |
| 8054 | if (vsi->base_vector) { |
Jesse Brandeburg | f29eaa3 | 2014-02-11 08:24:12 +0000 | [diff] [blame] | 8055 | dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n", |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8056 | vsi->seid, vsi->base_vector); |
| 8057 | return -EEXIST; |
| 8058 | } |
| 8059 | |
Greg Rose | 90e0407 | 2014-03-06 08:59:57 +0000 | [diff] [blame] | 8060 | ret = i40e_vsi_alloc_q_vectors(vsi); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8061 | if (ret) { |
| 8062 | dev_info(&pf->pdev->dev, |
| 8063 | "failed to allocate %d q_vector for VSI %d, ret=%d\n", |
| 8064 | vsi->num_q_vectors, vsi->seid, ret); |
| 8065 | vsi->num_q_vectors = 0; |
| 8066 | goto vector_setup_out; |
| 8067 | } |
| 8068 | |
Shannon Nelson | 958a3e3 | 2013-09-28 07:13:28 +0000 | [diff] [blame] | 8069 | if (vsi->num_q_vectors) |
| 8070 | vsi->base_vector = i40e_get_lump(pf, pf->irq_pile, |
| 8071 | vsi->num_q_vectors, vsi->idx); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8072 | if (vsi->base_vector < 0) { |
| 8073 | dev_info(&pf->pdev->dev, |
Shannon Nelson | 049a2be | 2014-10-17 03:14:50 +0000 | [diff] [blame] | 8074 | "failed to get tracking for %d vectors for VSI %d, err=%d\n", |
| 8075 | vsi->num_q_vectors, vsi->seid, vsi->base_vector); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8076 | i40e_vsi_free_q_vectors(vsi); |
| 8077 | ret = -ENOENT; |
| 8078 | goto vector_setup_out; |
| 8079 | } |
| 8080 | |
| 8081 | vector_setup_out: |
| 8082 | return ret; |
| 8083 | } |
| 8084 | |
| 8085 | /** |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 8086 | * i40e_vsi_reinit_setup - return and reallocate resources for a VSI |
| 8087 | * @vsi: pointer to the vsi. |
| 8088 | * |
| 8089 | * This re-allocates a vsi's queue resources. |
| 8090 | * |
| 8091 | * Returns pointer to the successfully allocated and configured VSI sw struct |
| 8092 | * on success, otherwise returns NULL on failure. |
| 8093 | **/ |
| 8094 | static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi) |
| 8095 | { |
| 8096 | struct i40e_pf *pf = vsi->back; |
| 8097 | u8 enabled_tc; |
| 8098 | int ret; |
| 8099 | |
| 8100 | i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx); |
| 8101 | i40e_vsi_clear_rings(vsi); |
| 8102 | |
| 8103 | i40e_vsi_free_arrays(vsi, false); |
| 8104 | i40e_set_num_rings_in_vsi(vsi); |
| 8105 | ret = i40e_vsi_alloc_arrays(vsi, false); |
| 8106 | if (ret) |
| 8107 | goto err_vsi; |
| 8108 | |
| 8109 | ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx); |
| 8110 | if (ret < 0) { |
Shannon Nelson | 049a2be | 2014-10-17 03:14:50 +0000 | [diff] [blame] | 8111 | dev_info(&pf->pdev->dev, |
| 8112 | "failed to get tracking for %d queues for VSI %d err=%d\n", |
| 8113 | vsi->alloc_queue_pairs, vsi->seid, ret); |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 8114 | goto err_vsi; |
| 8115 | } |
| 8116 | vsi->base_queue = ret; |
| 8117 | |
| 8118 | /* Update the FW view of the VSI. Force a reset of TC and queue |
| 8119 | * layout configurations. |
| 8120 | */ |
| 8121 | enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc; |
| 8122 | pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0; |
| 8123 | pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid; |
| 8124 | i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc); |
| 8125 | |
| 8126 | /* assign it some queues */ |
| 8127 | ret = i40e_alloc_rings(vsi); |
| 8128 | if (ret) |
| 8129 | goto err_rings; |
| 8130 | |
| 8131 | /* map all of the rings to the q_vectors */ |
| 8132 | i40e_vsi_map_rings_to_vectors(vsi); |
| 8133 | return vsi; |
| 8134 | |
| 8135 | err_rings: |
| 8136 | i40e_vsi_free_q_vectors(vsi); |
| 8137 | if (vsi->netdev_registered) { |
| 8138 | vsi->netdev_registered = false; |
| 8139 | unregister_netdev(vsi->netdev); |
| 8140 | free_netdev(vsi->netdev); |
| 8141 | vsi->netdev = NULL; |
| 8142 | } |
| 8143 | i40e_aq_delete_element(&pf->hw, vsi->seid, NULL); |
| 8144 | err_vsi: |
| 8145 | i40e_vsi_clear(vsi); |
| 8146 | return NULL; |
| 8147 | } |
| 8148 | |
| 8149 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8150 | * i40e_vsi_setup - Set up a VSI by a given type |
| 8151 | * @pf: board private structure |
| 8152 | * @type: VSI type |
| 8153 | * @uplink_seid: the switch element to link to |
| 8154 | * @param1: usage depends upon VSI type. For VF types, indicates VF id |
| 8155 | * |
| 8156 | * This allocates the sw VSI structure and its queue resources, then add a VSI |
| 8157 | * to the identified VEB. |
| 8158 | * |
| 8159 | * Returns pointer to the successfully allocated and configure VSI sw struct on |
| 8160 | * success, otherwise returns NULL on failure. |
| 8161 | **/ |
| 8162 | struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type, |
| 8163 | u16 uplink_seid, u32 param1) |
| 8164 | { |
| 8165 | struct i40e_vsi *vsi = NULL; |
| 8166 | struct i40e_veb *veb = NULL; |
| 8167 | int ret, i; |
| 8168 | int v_idx; |
| 8169 | |
| 8170 | /* The requested uplink_seid must be either |
| 8171 | * - the PF's port seid |
| 8172 | * no VEB is needed because this is the PF |
| 8173 | * or this is a Flow Director special case VSI |
| 8174 | * - seid of an existing VEB |
| 8175 | * - seid of a VSI that owns an existing VEB |
| 8176 | * - seid of a VSI that doesn't own a VEB |
| 8177 | * a new VEB is created and the VSI becomes the owner |
| 8178 | * - seid of the PF VSI, which is what creates the first VEB |
| 8179 | * this is a special case of the previous |
| 8180 | * |
| 8181 | * Find which uplink_seid we were given and create a new VEB if needed |
| 8182 | */ |
| 8183 | for (i = 0; i < I40E_MAX_VEB; i++) { |
| 8184 | if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) { |
| 8185 | veb = pf->veb[i]; |
| 8186 | break; |
| 8187 | } |
| 8188 | } |
| 8189 | |
| 8190 | if (!veb && uplink_seid != pf->mac_seid) { |
| 8191 | |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 8192 | for (i = 0; i < pf->num_alloc_vsi; i++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8193 | if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) { |
| 8194 | vsi = pf->vsi[i]; |
| 8195 | break; |
| 8196 | } |
| 8197 | } |
| 8198 | if (!vsi) { |
| 8199 | dev_info(&pf->pdev->dev, "no such uplink_seid %d\n", |
| 8200 | uplink_seid); |
| 8201 | return NULL; |
| 8202 | } |
| 8203 | |
| 8204 | if (vsi->uplink_seid == pf->mac_seid) |
| 8205 | veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid, |
| 8206 | vsi->tc_config.enabled_tc); |
| 8207 | else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) |
| 8208 | veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid, |
| 8209 | vsi->tc_config.enabled_tc); |
Anjali Singhai Jain | 79c21a8 | 2014-11-13 03:06:14 +0000 | [diff] [blame] | 8210 | if (veb) { |
| 8211 | if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) { |
| 8212 | dev_info(&vsi->back->pdev->dev, |
| 8213 | "%s: New VSI creation error, uplink seid of LAN VSI expected.\n", |
| 8214 | __func__); |
| 8215 | return NULL; |
| 8216 | } |
| 8217 | i40e_enable_pf_switch_lb(pf); |
| 8218 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8219 | for (i = 0; i < I40E_MAX_VEB && !veb; i++) { |
| 8220 | if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid) |
| 8221 | veb = pf->veb[i]; |
| 8222 | } |
| 8223 | if (!veb) { |
| 8224 | dev_info(&pf->pdev->dev, "couldn't add VEB\n"); |
| 8225 | return NULL; |
| 8226 | } |
| 8227 | |
| 8228 | vsi->flags |= I40E_VSI_FLAG_VEB_OWNER; |
| 8229 | uplink_seid = veb->seid; |
| 8230 | } |
| 8231 | |
| 8232 | /* get vsi sw struct */ |
| 8233 | v_idx = i40e_vsi_mem_alloc(pf, type); |
| 8234 | if (v_idx < 0) |
| 8235 | goto err_alloc; |
| 8236 | vsi = pf->vsi[v_idx]; |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 8237 | if (!vsi) |
| 8238 | goto err_alloc; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8239 | vsi->type = type; |
| 8240 | vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB); |
| 8241 | |
| 8242 | if (type == I40E_VSI_MAIN) |
| 8243 | pf->lan_vsi = v_idx; |
| 8244 | else if (type == I40E_VSI_SRIOV) |
| 8245 | vsi->vf_id = param1; |
| 8246 | /* assign it some queues */ |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 8247 | ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, |
| 8248 | vsi->idx); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8249 | if (ret < 0) { |
Shannon Nelson | 049a2be | 2014-10-17 03:14:50 +0000 | [diff] [blame] | 8250 | dev_info(&pf->pdev->dev, |
| 8251 | "failed to get tracking for %d queues for VSI %d err=%d\n", |
| 8252 | vsi->alloc_queue_pairs, vsi->seid, ret); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8253 | goto err_vsi; |
| 8254 | } |
| 8255 | vsi->base_queue = ret; |
| 8256 | |
| 8257 | /* get a VSI from the hardware */ |
| 8258 | vsi->uplink_seid = uplink_seid; |
| 8259 | ret = i40e_add_vsi(vsi); |
| 8260 | if (ret) |
| 8261 | goto err_vsi; |
| 8262 | |
| 8263 | switch (vsi->type) { |
| 8264 | /* setup the netdev if needed */ |
| 8265 | case I40E_VSI_MAIN: |
| 8266 | case I40E_VSI_VMDQ2: |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 8267 | case I40E_VSI_FCOE: |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8268 | ret = i40e_config_netdev(vsi); |
| 8269 | if (ret) |
| 8270 | goto err_netdev; |
| 8271 | ret = register_netdev(vsi->netdev); |
| 8272 | if (ret) |
| 8273 | goto err_netdev; |
| 8274 | vsi->netdev_registered = true; |
| 8275 | netif_carrier_off(vsi->netdev); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 8276 | #ifdef CONFIG_I40E_DCB |
| 8277 | /* Setup DCB netlink interface */ |
| 8278 | i40e_dcbnl_setup(vsi); |
| 8279 | #endif /* CONFIG_I40E_DCB */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8280 | /* fall through */ |
| 8281 | |
| 8282 | case I40E_VSI_FDIR: |
| 8283 | /* set up vectors and rings if needed */ |
| 8284 | ret = i40e_vsi_setup_vectors(vsi); |
| 8285 | if (ret) |
| 8286 | goto err_msix; |
| 8287 | |
| 8288 | ret = i40e_alloc_rings(vsi); |
| 8289 | if (ret) |
| 8290 | goto err_rings; |
| 8291 | |
| 8292 | /* map all of the rings to the q_vectors */ |
| 8293 | i40e_vsi_map_rings_to_vectors(vsi); |
| 8294 | |
| 8295 | i40e_vsi_reset_stats(vsi); |
| 8296 | break; |
| 8297 | |
| 8298 | default: |
| 8299 | /* no netdev or rings for the other VSI types */ |
| 8300 | break; |
| 8301 | } |
| 8302 | |
| 8303 | return vsi; |
| 8304 | |
| 8305 | err_rings: |
| 8306 | i40e_vsi_free_q_vectors(vsi); |
| 8307 | err_msix: |
| 8308 | if (vsi->netdev_registered) { |
| 8309 | vsi->netdev_registered = false; |
| 8310 | unregister_netdev(vsi->netdev); |
| 8311 | free_netdev(vsi->netdev); |
| 8312 | vsi->netdev = NULL; |
| 8313 | } |
| 8314 | err_netdev: |
| 8315 | i40e_aq_delete_element(&pf->hw, vsi->seid, NULL); |
| 8316 | err_vsi: |
| 8317 | i40e_vsi_clear(vsi); |
| 8318 | err_alloc: |
| 8319 | return NULL; |
| 8320 | } |
| 8321 | |
| 8322 | /** |
| 8323 | * i40e_veb_get_bw_info - Query VEB BW information |
| 8324 | * @veb: the veb to query |
| 8325 | * |
| 8326 | * Query the Tx scheduler BW configuration data for given VEB |
| 8327 | **/ |
| 8328 | static int i40e_veb_get_bw_info(struct i40e_veb *veb) |
| 8329 | { |
| 8330 | struct i40e_aqc_query_switching_comp_ets_config_resp ets_data; |
| 8331 | struct i40e_aqc_query_switching_comp_bw_config_resp bw_data; |
| 8332 | struct i40e_pf *pf = veb->pf; |
| 8333 | struct i40e_hw *hw = &pf->hw; |
| 8334 | u32 tc_bw_max; |
| 8335 | int ret = 0; |
| 8336 | int i; |
| 8337 | |
| 8338 | ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid, |
| 8339 | &bw_data, NULL); |
| 8340 | if (ret) { |
| 8341 | dev_info(&pf->pdev->dev, |
| 8342 | "query veb bw config failed, aq_err=%d\n", |
| 8343 | hw->aq.asq_last_status); |
| 8344 | goto out; |
| 8345 | } |
| 8346 | |
| 8347 | ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid, |
| 8348 | &ets_data, NULL); |
| 8349 | if (ret) { |
| 8350 | dev_info(&pf->pdev->dev, |
| 8351 | "query veb bw ets config failed, aq_err=%d\n", |
| 8352 | hw->aq.asq_last_status); |
| 8353 | goto out; |
| 8354 | } |
| 8355 | |
| 8356 | veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit); |
| 8357 | veb->bw_max_quanta = ets_data.tc_bw_max; |
| 8358 | veb->is_abs_credits = bw_data.absolute_credits_enable; |
Neerav Parikh | 23cd1f0 | 2014-11-12 00:18:41 +0000 | [diff] [blame] | 8359 | veb->enabled_tc = ets_data.tc_valid_bits; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8360 | tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) | |
| 8361 | (le16_to_cpu(bw_data.tc_bw_max[1]) << 16); |
| 8362 | for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) { |
| 8363 | veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i]; |
| 8364 | veb->bw_tc_limit_credits[i] = |
| 8365 | le16_to_cpu(bw_data.tc_bw_limits[i]); |
| 8366 | veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7); |
| 8367 | } |
| 8368 | |
| 8369 | out: |
| 8370 | return ret; |
| 8371 | } |
| 8372 | |
| 8373 | /** |
| 8374 | * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF |
| 8375 | * @pf: board private structure |
| 8376 | * |
| 8377 | * On error: returns error code (negative) |
| 8378 | * On success: returns vsi index in PF (positive) |
| 8379 | **/ |
| 8380 | static int i40e_veb_mem_alloc(struct i40e_pf *pf) |
| 8381 | { |
| 8382 | int ret = -ENOENT; |
| 8383 | struct i40e_veb *veb; |
| 8384 | int i; |
| 8385 | |
| 8386 | /* Need to protect the allocation of switch elements at the PF level */ |
| 8387 | mutex_lock(&pf->switch_mutex); |
| 8388 | |
| 8389 | /* VEB list may be fragmented if VEB creation/destruction has |
| 8390 | * been happening. We can afford to do a quick scan to look |
| 8391 | * for any free slots in the list. |
| 8392 | * |
| 8393 | * find next empty veb slot, looping back around if necessary |
| 8394 | */ |
| 8395 | i = 0; |
| 8396 | while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL)) |
| 8397 | i++; |
| 8398 | if (i >= I40E_MAX_VEB) { |
| 8399 | ret = -ENOMEM; |
| 8400 | goto err_alloc_veb; /* out of VEB slots! */ |
| 8401 | } |
| 8402 | |
| 8403 | veb = kzalloc(sizeof(*veb), GFP_KERNEL); |
| 8404 | if (!veb) { |
| 8405 | ret = -ENOMEM; |
| 8406 | goto err_alloc_veb; |
| 8407 | } |
| 8408 | veb->pf = pf; |
| 8409 | veb->idx = i; |
| 8410 | veb->enabled_tc = 1; |
| 8411 | |
| 8412 | pf->veb[i] = veb; |
| 8413 | ret = i; |
| 8414 | err_alloc_veb: |
| 8415 | mutex_unlock(&pf->switch_mutex); |
| 8416 | return ret; |
| 8417 | } |
| 8418 | |
| 8419 | /** |
| 8420 | * i40e_switch_branch_release - Delete a branch of the switch tree |
| 8421 | * @branch: where to start deleting |
| 8422 | * |
| 8423 | * This uses recursion to find the tips of the branch to be |
| 8424 | * removed, deleting until we get back to and can delete this VEB. |
| 8425 | **/ |
| 8426 | static void i40e_switch_branch_release(struct i40e_veb *branch) |
| 8427 | { |
| 8428 | struct i40e_pf *pf = branch->pf; |
| 8429 | u16 branch_seid = branch->seid; |
| 8430 | u16 veb_idx = branch->idx; |
| 8431 | int i; |
| 8432 | |
| 8433 | /* release any VEBs on this VEB - RECURSION */ |
| 8434 | for (i = 0; i < I40E_MAX_VEB; i++) { |
| 8435 | if (!pf->veb[i]) |
| 8436 | continue; |
| 8437 | if (pf->veb[i]->uplink_seid == branch->seid) |
| 8438 | i40e_switch_branch_release(pf->veb[i]); |
| 8439 | } |
| 8440 | |
| 8441 | /* Release the VSIs on this VEB, but not the owner VSI. |
| 8442 | * |
| 8443 | * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing |
| 8444 | * the VEB itself, so don't use (*branch) after this loop. |
| 8445 | */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 8446 | for (i = 0; i < pf->num_alloc_vsi; i++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8447 | if (!pf->vsi[i]) |
| 8448 | continue; |
| 8449 | if (pf->vsi[i]->uplink_seid == branch_seid && |
| 8450 | (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) { |
| 8451 | i40e_vsi_release(pf->vsi[i]); |
| 8452 | } |
| 8453 | } |
| 8454 | |
| 8455 | /* There's one corner case where the VEB might not have been |
| 8456 | * removed, so double check it here and remove it if needed. |
| 8457 | * This case happens if the veb was created from the debugfs |
| 8458 | * commands and no VSIs were added to it. |
| 8459 | */ |
| 8460 | if (pf->veb[veb_idx]) |
| 8461 | i40e_veb_release(pf->veb[veb_idx]); |
| 8462 | } |
| 8463 | |
| 8464 | /** |
| 8465 | * i40e_veb_clear - remove veb struct |
| 8466 | * @veb: the veb to remove |
| 8467 | **/ |
| 8468 | static void i40e_veb_clear(struct i40e_veb *veb) |
| 8469 | { |
| 8470 | if (!veb) |
| 8471 | return; |
| 8472 | |
| 8473 | if (veb->pf) { |
| 8474 | struct i40e_pf *pf = veb->pf; |
| 8475 | |
| 8476 | mutex_lock(&pf->switch_mutex); |
| 8477 | if (pf->veb[veb->idx] == veb) |
| 8478 | pf->veb[veb->idx] = NULL; |
| 8479 | mutex_unlock(&pf->switch_mutex); |
| 8480 | } |
| 8481 | |
| 8482 | kfree(veb); |
| 8483 | } |
| 8484 | |
| 8485 | /** |
| 8486 | * i40e_veb_release - Delete a VEB and free its resources |
| 8487 | * @veb: the VEB being removed |
| 8488 | **/ |
| 8489 | void i40e_veb_release(struct i40e_veb *veb) |
| 8490 | { |
| 8491 | struct i40e_vsi *vsi = NULL; |
| 8492 | struct i40e_pf *pf; |
| 8493 | int i, n = 0; |
| 8494 | |
| 8495 | pf = veb->pf; |
| 8496 | |
| 8497 | /* find the remaining VSI and check for extras */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 8498 | for (i = 0; i < pf->num_alloc_vsi; i++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8499 | if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) { |
| 8500 | n++; |
| 8501 | vsi = pf->vsi[i]; |
| 8502 | } |
| 8503 | } |
| 8504 | if (n != 1) { |
| 8505 | dev_info(&pf->pdev->dev, |
| 8506 | "can't remove VEB %d with %d VSIs left\n", |
| 8507 | veb->seid, n); |
| 8508 | return; |
| 8509 | } |
| 8510 | |
| 8511 | /* move the remaining VSI to uplink veb */ |
| 8512 | vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER; |
| 8513 | if (veb->uplink_seid) { |
| 8514 | vsi->uplink_seid = veb->uplink_seid; |
| 8515 | if (veb->uplink_seid == pf->mac_seid) |
| 8516 | vsi->veb_idx = I40E_NO_VEB; |
| 8517 | else |
| 8518 | vsi->veb_idx = veb->veb_idx; |
| 8519 | } else { |
| 8520 | /* floating VEB */ |
| 8521 | vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid; |
| 8522 | vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx; |
| 8523 | } |
| 8524 | |
| 8525 | i40e_aq_delete_element(&pf->hw, veb->seid, NULL); |
| 8526 | i40e_veb_clear(veb); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8527 | } |
| 8528 | |
| 8529 | /** |
| 8530 | * i40e_add_veb - create the VEB in the switch |
| 8531 | * @veb: the VEB to be instantiated |
| 8532 | * @vsi: the controlling VSI |
| 8533 | **/ |
| 8534 | static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi) |
| 8535 | { |
Greg Rose | 5674726 | 2013-11-28 06:39:37 +0000 | [diff] [blame] | 8536 | bool is_default = false; |
Kevin Scott | e1c51b95 | 2013-11-20 10:02:51 +0000 | [diff] [blame] | 8537 | bool is_cloud = false; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8538 | int ret; |
| 8539 | |
| 8540 | /* get a VEB from the hardware */ |
| 8541 | ret = i40e_aq_add_veb(&veb->pf->hw, veb->uplink_seid, vsi->seid, |
Kevin Scott | e1c51b95 | 2013-11-20 10:02:51 +0000 | [diff] [blame] | 8542 | veb->enabled_tc, is_default, |
| 8543 | is_cloud, &veb->seid, NULL); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8544 | if (ret) { |
| 8545 | dev_info(&veb->pf->pdev->dev, |
| 8546 | "couldn't add VEB, err %d, aq_err %d\n", |
| 8547 | ret, veb->pf->hw.aq.asq_last_status); |
| 8548 | return -EPERM; |
| 8549 | } |
| 8550 | |
| 8551 | /* get statistics counter */ |
| 8552 | ret = i40e_aq_get_veb_parameters(&veb->pf->hw, veb->seid, NULL, NULL, |
| 8553 | &veb->stats_idx, NULL, NULL, NULL); |
| 8554 | if (ret) { |
| 8555 | dev_info(&veb->pf->pdev->dev, |
| 8556 | "couldn't get VEB statistics idx, err %d, aq_err %d\n", |
| 8557 | ret, veb->pf->hw.aq.asq_last_status); |
| 8558 | return -EPERM; |
| 8559 | } |
| 8560 | ret = i40e_veb_get_bw_info(veb); |
| 8561 | if (ret) { |
| 8562 | dev_info(&veb->pf->pdev->dev, |
| 8563 | "couldn't get VEB bw info, err %d, aq_err %d\n", |
| 8564 | ret, veb->pf->hw.aq.asq_last_status); |
| 8565 | i40e_aq_delete_element(&veb->pf->hw, veb->seid, NULL); |
| 8566 | return -ENOENT; |
| 8567 | } |
| 8568 | |
| 8569 | vsi->uplink_seid = veb->seid; |
| 8570 | vsi->veb_idx = veb->idx; |
| 8571 | vsi->flags |= I40E_VSI_FLAG_VEB_OWNER; |
| 8572 | |
| 8573 | return 0; |
| 8574 | } |
| 8575 | |
| 8576 | /** |
| 8577 | * i40e_veb_setup - Set up a VEB |
| 8578 | * @pf: board private structure |
| 8579 | * @flags: VEB setup flags |
| 8580 | * @uplink_seid: the switch element to link to |
| 8581 | * @vsi_seid: the initial VSI seid |
| 8582 | * @enabled_tc: Enabled TC bit-map |
| 8583 | * |
| 8584 | * This allocates the sw VEB structure and links it into the switch |
| 8585 | * It is possible and legal for this to be a duplicate of an already |
| 8586 | * existing VEB. It is also possible for both uplink and vsi seids |
| 8587 | * to be zero, in order to create a floating VEB. |
| 8588 | * |
| 8589 | * Returns pointer to the successfully allocated VEB sw struct on |
| 8590 | * success, otherwise returns NULL on failure. |
| 8591 | **/ |
| 8592 | struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags, |
| 8593 | u16 uplink_seid, u16 vsi_seid, |
| 8594 | u8 enabled_tc) |
| 8595 | { |
| 8596 | struct i40e_veb *veb, *uplink_veb = NULL; |
| 8597 | int vsi_idx, veb_idx; |
| 8598 | int ret; |
| 8599 | |
| 8600 | /* if one seid is 0, the other must be 0 to create a floating relay */ |
| 8601 | if ((uplink_seid == 0 || vsi_seid == 0) && |
| 8602 | (uplink_seid + vsi_seid != 0)) { |
| 8603 | dev_info(&pf->pdev->dev, |
| 8604 | "one, not both seid's are 0: uplink=%d vsi=%d\n", |
| 8605 | uplink_seid, vsi_seid); |
| 8606 | return NULL; |
| 8607 | } |
| 8608 | |
| 8609 | /* make sure there is such a vsi and uplink */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 8610 | for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8611 | if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid) |
| 8612 | break; |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 8613 | if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8614 | dev_info(&pf->pdev->dev, "vsi seid %d not found\n", |
| 8615 | vsi_seid); |
| 8616 | return NULL; |
| 8617 | } |
| 8618 | |
| 8619 | if (uplink_seid && uplink_seid != pf->mac_seid) { |
| 8620 | for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) { |
| 8621 | if (pf->veb[veb_idx] && |
| 8622 | pf->veb[veb_idx]->seid == uplink_seid) { |
| 8623 | uplink_veb = pf->veb[veb_idx]; |
| 8624 | break; |
| 8625 | } |
| 8626 | } |
| 8627 | if (!uplink_veb) { |
| 8628 | dev_info(&pf->pdev->dev, |
| 8629 | "uplink seid %d not found\n", uplink_seid); |
| 8630 | return NULL; |
| 8631 | } |
| 8632 | } |
| 8633 | |
| 8634 | /* get veb sw struct */ |
| 8635 | veb_idx = i40e_veb_mem_alloc(pf); |
| 8636 | if (veb_idx < 0) |
| 8637 | goto err_alloc; |
| 8638 | veb = pf->veb[veb_idx]; |
| 8639 | veb->flags = flags; |
| 8640 | veb->uplink_seid = uplink_seid; |
| 8641 | veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB); |
| 8642 | veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1); |
| 8643 | |
| 8644 | /* create the VEB in the switch */ |
| 8645 | ret = i40e_add_veb(veb, pf->vsi[vsi_idx]); |
| 8646 | if (ret) |
| 8647 | goto err_veb; |
Shannon Nelson | 1bb8b93 | 2014-04-23 04:49:54 +0000 | [diff] [blame] | 8648 | if (vsi_idx == pf->lan_vsi) |
| 8649 | pf->lan_veb = veb->idx; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8650 | |
| 8651 | return veb; |
| 8652 | |
| 8653 | err_veb: |
| 8654 | i40e_veb_clear(veb); |
| 8655 | err_alloc: |
| 8656 | return NULL; |
| 8657 | } |
| 8658 | |
| 8659 | /** |
| 8660 | * i40e_setup_pf_switch_element - set pf vars based on switch type |
| 8661 | * @pf: board private structure |
| 8662 | * @ele: element we are building info from |
| 8663 | * @num_reported: total number of elements |
| 8664 | * @printconfig: should we print the contents |
| 8665 | * |
| 8666 | * helper function to assist in extracting a few useful SEID values. |
| 8667 | **/ |
| 8668 | static void i40e_setup_pf_switch_element(struct i40e_pf *pf, |
| 8669 | struct i40e_aqc_switch_config_element_resp *ele, |
| 8670 | u16 num_reported, bool printconfig) |
| 8671 | { |
| 8672 | u16 downlink_seid = le16_to_cpu(ele->downlink_seid); |
| 8673 | u16 uplink_seid = le16_to_cpu(ele->uplink_seid); |
| 8674 | u8 element_type = ele->element_type; |
| 8675 | u16 seid = le16_to_cpu(ele->seid); |
| 8676 | |
| 8677 | if (printconfig) |
| 8678 | dev_info(&pf->pdev->dev, |
| 8679 | "type=%d seid=%d uplink=%d downlink=%d\n", |
| 8680 | element_type, seid, uplink_seid, downlink_seid); |
| 8681 | |
| 8682 | switch (element_type) { |
| 8683 | case I40E_SWITCH_ELEMENT_TYPE_MAC: |
| 8684 | pf->mac_seid = seid; |
| 8685 | break; |
| 8686 | case I40E_SWITCH_ELEMENT_TYPE_VEB: |
| 8687 | /* Main VEB? */ |
| 8688 | if (uplink_seid != pf->mac_seid) |
| 8689 | break; |
| 8690 | if (pf->lan_veb == I40E_NO_VEB) { |
| 8691 | int v; |
| 8692 | |
| 8693 | /* find existing or else empty VEB */ |
| 8694 | for (v = 0; v < I40E_MAX_VEB; v++) { |
| 8695 | if (pf->veb[v] && (pf->veb[v]->seid == seid)) { |
| 8696 | pf->lan_veb = v; |
| 8697 | break; |
| 8698 | } |
| 8699 | } |
| 8700 | if (pf->lan_veb == I40E_NO_VEB) { |
| 8701 | v = i40e_veb_mem_alloc(pf); |
| 8702 | if (v < 0) |
| 8703 | break; |
| 8704 | pf->lan_veb = v; |
| 8705 | } |
| 8706 | } |
| 8707 | |
| 8708 | pf->veb[pf->lan_veb]->seid = seid; |
| 8709 | pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid; |
| 8710 | pf->veb[pf->lan_veb]->pf = pf; |
| 8711 | pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB; |
| 8712 | break; |
| 8713 | case I40E_SWITCH_ELEMENT_TYPE_VSI: |
| 8714 | if (num_reported != 1) |
| 8715 | break; |
| 8716 | /* This is immediately after a reset so we can assume this is |
| 8717 | * the PF's VSI |
| 8718 | */ |
| 8719 | pf->mac_seid = uplink_seid; |
| 8720 | pf->pf_seid = downlink_seid; |
| 8721 | pf->main_vsi_seid = seid; |
| 8722 | if (printconfig) |
| 8723 | dev_info(&pf->pdev->dev, |
| 8724 | "pf_seid=%d main_vsi_seid=%d\n", |
| 8725 | pf->pf_seid, pf->main_vsi_seid); |
| 8726 | break; |
| 8727 | case I40E_SWITCH_ELEMENT_TYPE_PF: |
| 8728 | case I40E_SWITCH_ELEMENT_TYPE_VF: |
| 8729 | case I40E_SWITCH_ELEMENT_TYPE_EMP: |
| 8730 | case I40E_SWITCH_ELEMENT_TYPE_BMC: |
| 8731 | case I40E_SWITCH_ELEMENT_TYPE_PE: |
| 8732 | case I40E_SWITCH_ELEMENT_TYPE_PA: |
| 8733 | /* ignore these for now */ |
| 8734 | break; |
| 8735 | default: |
| 8736 | dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n", |
| 8737 | element_type, seid); |
| 8738 | break; |
| 8739 | } |
| 8740 | } |
| 8741 | |
| 8742 | /** |
| 8743 | * i40e_fetch_switch_configuration - Get switch config from firmware |
| 8744 | * @pf: board private structure |
| 8745 | * @printconfig: should we print the contents |
| 8746 | * |
| 8747 | * Get the current switch configuration from the device and |
| 8748 | * extract a few useful SEID values. |
| 8749 | **/ |
| 8750 | int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig) |
| 8751 | { |
| 8752 | struct i40e_aqc_get_switch_config_resp *sw_config; |
| 8753 | u16 next_seid = 0; |
| 8754 | int ret = 0; |
| 8755 | u8 *aq_buf; |
| 8756 | int i; |
| 8757 | |
| 8758 | aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL); |
| 8759 | if (!aq_buf) |
| 8760 | return -ENOMEM; |
| 8761 | |
| 8762 | sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf; |
| 8763 | do { |
| 8764 | u16 num_reported, num_total; |
| 8765 | |
| 8766 | ret = i40e_aq_get_switch_config(&pf->hw, sw_config, |
| 8767 | I40E_AQ_LARGE_BUF, |
| 8768 | &next_seid, NULL); |
| 8769 | if (ret) { |
| 8770 | dev_info(&pf->pdev->dev, |
| 8771 | "get switch config failed %d aq_err=%x\n", |
| 8772 | ret, pf->hw.aq.asq_last_status); |
| 8773 | kfree(aq_buf); |
| 8774 | return -ENOENT; |
| 8775 | } |
| 8776 | |
| 8777 | num_reported = le16_to_cpu(sw_config->header.num_reported); |
| 8778 | num_total = le16_to_cpu(sw_config->header.num_total); |
| 8779 | |
| 8780 | if (printconfig) |
| 8781 | dev_info(&pf->pdev->dev, |
| 8782 | "header: %d reported %d total\n", |
| 8783 | num_reported, num_total); |
| 8784 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8785 | for (i = 0; i < num_reported; i++) { |
| 8786 | struct i40e_aqc_switch_config_element_resp *ele = |
| 8787 | &sw_config->element[i]; |
| 8788 | |
| 8789 | i40e_setup_pf_switch_element(pf, ele, num_reported, |
| 8790 | printconfig); |
| 8791 | } |
| 8792 | } while (next_seid != 0); |
| 8793 | |
| 8794 | kfree(aq_buf); |
| 8795 | return ret; |
| 8796 | } |
| 8797 | |
| 8798 | /** |
| 8799 | * i40e_setup_pf_switch - Setup the HW switch on startup or after reset |
| 8800 | * @pf: board private structure |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 8801 | * @reinit: if the Main VSI needs to re-initialized. |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8802 | * |
| 8803 | * Returns 0 on success, negative value on failure |
| 8804 | **/ |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 8805 | static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8806 | { |
| 8807 | int ret; |
| 8808 | |
| 8809 | /* find out what's out there already */ |
| 8810 | ret = i40e_fetch_switch_configuration(pf, false); |
| 8811 | if (ret) { |
| 8812 | dev_info(&pf->pdev->dev, |
| 8813 | "couldn't fetch switch config, err %d, aq_err %d\n", |
| 8814 | ret, pf->hw.aq.asq_last_status); |
| 8815 | return ret; |
| 8816 | } |
| 8817 | i40e_pf_reset_stats(pf); |
| 8818 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8819 | /* first time setup */ |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 8820 | if (pf->lan_vsi == I40E_NO_VSI || reinit) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8821 | struct i40e_vsi *vsi = NULL; |
| 8822 | u16 uplink_seid; |
| 8823 | |
| 8824 | /* Set up the PF VSI associated with the PF's main VSI |
| 8825 | * that is already in the HW switch |
| 8826 | */ |
| 8827 | if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb]) |
| 8828 | uplink_seid = pf->veb[pf->lan_veb]->seid; |
| 8829 | else |
| 8830 | uplink_seid = pf->mac_seid; |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 8831 | if (pf->lan_vsi == I40E_NO_VSI) |
| 8832 | vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0); |
| 8833 | else if (reinit) |
| 8834 | vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8835 | if (!vsi) { |
| 8836 | dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n"); |
| 8837 | i40e_fdir_teardown(pf); |
| 8838 | return -EAGAIN; |
| 8839 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8840 | } else { |
| 8841 | /* force a reset of TC and queue layout configurations */ |
| 8842 | u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc; |
| 8843 | pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0; |
| 8844 | pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid; |
| 8845 | i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc); |
| 8846 | } |
| 8847 | i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]); |
| 8848 | |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 8849 | i40e_fdir_sb_setup(pf); |
| 8850 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8851 | /* Setup static PF queue filter control settings */ |
| 8852 | ret = i40e_setup_pf_filter_control(pf); |
| 8853 | if (ret) { |
| 8854 | dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n", |
| 8855 | ret); |
| 8856 | /* Failure here should not stop continuing other steps */ |
| 8857 | } |
| 8858 | |
| 8859 | /* enable RSS in the HW, even for only one queue, as the stack can use |
| 8860 | * the hash |
| 8861 | */ |
| 8862 | if ((pf->flags & I40E_FLAG_RSS_ENABLED)) |
| 8863 | i40e_config_rss(pf); |
| 8864 | |
| 8865 | /* fill in link information and enable LSE reporting */ |
Catherine Sullivan | 8109e12 | 2014-06-04 08:45:24 +0000 | [diff] [blame] | 8866 | i40e_update_link_info(&pf->hw, true); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8867 | i40e_link_event(pf); |
| 8868 | |
Jesse Brandeburg | d52c20b | 2013-11-26 10:49:15 +0000 | [diff] [blame] | 8869 | /* Initialize user-specific link properties */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8870 | pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info & |
| 8871 | I40E_AQ_AN_COMPLETED) ? true : false); |
Jesse Brandeburg | d52c20b | 2013-11-26 10:49:15 +0000 | [diff] [blame] | 8872 | |
Mitch Williams | a34a671 | 2014-09-13 07:40:46 +0000 | [diff] [blame] | 8873 | /* fill in link information and enable LSE reporting */ |
| 8874 | i40e_update_link_info(&pf->hw, true); |
| 8875 | i40e_link_event(pf); |
| 8876 | |
| 8877 | /* Initialize user-specific link properties */ |
| 8878 | pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info & |
| 8879 | I40E_AQ_AN_COMPLETED) ? true : false); |
| 8880 | |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 8881 | i40e_ptp_init(pf); |
| 8882 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8883 | return ret; |
| 8884 | } |
| 8885 | |
| 8886 | /** |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8887 | * i40e_determine_queue_usage - Work out queue distribution |
| 8888 | * @pf: board private structure |
| 8889 | **/ |
| 8890 | static void i40e_determine_queue_usage(struct i40e_pf *pf) |
| 8891 | { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8892 | int queues_left; |
| 8893 | |
| 8894 | pf->num_lan_qps = 0; |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 8895 | #ifdef I40E_FCOE |
| 8896 | pf->num_fcoe_qps = 0; |
| 8897 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8898 | |
| 8899 | /* Find the max queues to be put into basic use. We'll always be |
| 8900 | * using TC0, whether or not DCB is running, and TC0 will get the |
| 8901 | * big RSS set. |
| 8902 | */ |
| 8903 | queues_left = pf->hw.func_caps.num_tx_qp; |
| 8904 | |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 8905 | if ((queues_left == 1) || |
Frank Zhang | 9aa7e93 | 2014-05-20 08:01:42 +0000 | [diff] [blame] | 8906 | !(pf->flags & I40E_FLAG_MSIX_ENABLED)) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8907 | /* one qp for PF, no queues for anything else */ |
| 8908 | queues_left = 0; |
| 8909 | pf->rss_size = pf->num_lan_qps = 1; |
| 8910 | |
| 8911 | /* make sure all the fancies are disabled */ |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 8912 | pf->flags &= ~(I40E_FLAG_RSS_ENABLED | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 8913 | #ifdef I40E_FCOE |
| 8914 | I40E_FLAG_FCOE_ENABLED | |
| 8915 | #endif |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 8916 | I40E_FLAG_FD_SB_ENABLED | |
| 8917 | I40E_FLAG_FD_ATR_ENABLED | |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 8918 | I40E_FLAG_DCB_CAPABLE | |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 8919 | I40E_FLAG_SRIOV_ENABLED | |
| 8920 | I40E_FLAG_VMDQ_ENABLED); |
Frank Zhang | 9aa7e93 | 2014-05-20 08:01:42 +0000 | [diff] [blame] | 8921 | } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED | |
| 8922 | I40E_FLAG_FD_SB_ENABLED | |
Anjali Singhai Jain | bbe7d0e | 2014-05-20 08:01:44 +0000 | [diff] [blame] | 8923 | I40E_FLAG_FD_ATR_ENABLED | |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 8924 | I40E_FLAG_DCB_CAPABLE))) { |
Frank Zhang | 9aa7e93 | 2014-05-20 08:01:42 +0000 | [diff] [blame] | 8925 | /* one qp for PF */ |
| 8926 | pf->rss_size = pf->num_lan_qps = 1; |
| 8927 | queues_left -= pf->num_lan_qps; |
| 8928 | |
| 8929 | pf->flags &= ~(I40E_FLAG_RSS_ENABLED | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 8930 | #ifdef I40E_FCOE |
| 8931 | I40E_FLAG_FCOE_ENABLED | |
| 8932 | #endif |
Frank Zhang | 9aa7e93 | 2014-05-20 08:01:42 +0000 | [diff] [blame] | 8933 | I40E_FLAG_FD_SB_ENABLED | |
| 8934 | I40E_FLAG_FD_ATR_ENABLED | |
| 8935 | I40E_FLAG_DCB_ENABLED | |
| 8936 | I40E_FLAG_VMDQ_ENABLED); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8937 | } else { |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 8938 | /* Not enough queues for all TCs */ |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 8939 | if ((pf->flags & I40E_FLAG_DCB_CAPABLE) && |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 8940 | (queues_left < I40E_MAX_TRAFFIC_CLASS)) { |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 8941 | pf->flags &= ~I40E_FLAG_DCB_CAPABLE; |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 8942 | dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n"); |
| 8943 | } |
| 8944 | pf->num_lan_qps = pf->rss_size_max; |
| 8945 | queues_left -= pf->num_lan_qps; |
| 8946 | } |
| 8947 | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 8948 | #ifdef I40E_FCOE |
| 8949 | if (pf->flags & I40E_FLAG_FCOE_ENABLED) { |
| 8950 | if (I40E_DEFAULT_FCOE <= queues_left) { |
| 8951 | pf->num_fcoe_qps = I40E_DEFAULT_FCOE; |
| 8952 | } else if (I40E_MINIMUM_FCOE <= queues_left) { |
| 8953 | pf->num_fcoe_qps = I40E_MINIMUM_FCOE; |
| 8954 | } else { |
| 8955 | pf->num_fcoe_qps = 0; |
| 8956 | pf->flags &= ~I40E_FLAG_FCOE_ENABLED; |
| 8957 | dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n"); |
| 8958 | } |
| 8959 | |
| 8960 | queues_left -= pf->num_fcoe_qps; |
| 8961 | } |
| 8962 | |
| 8963 | #endif |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 8964 | if (pf->flags & I40E_FLAG_FD_SB_ENABLED) { |
| 8965 | if (queues_left > 1) { |
| 8966 | queues_left -= 1; /* save 1 queue for FD */ |
| 8967 | } else { |
| 8968 | pf->flags &= ~I40E_FLAG_FD_SB_ENABLED; |
| 8969 | dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n"); |
| 8970 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8971 | } |
| 8972 | |
| 8973 | if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) && |
| 8974 | pf->num_vf_qps && pf->num_req_vfs && queues_left) { |
Anjali Singhai Jain | cbf6132 | 2014-01-17 15:36:35 -0800 | [diff] [blame] | 8975 | pf->num_req_vfs = min_t(int, pf->num_req_vfs, |
| 8976 | (queues_left / pf->num_vf_qps)); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8977 | queues_left -= (pf->num_req_vfs * pf->num_vf_qps); |
| 8978 | } |
| 8979 | |
| 8980 | if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) && |
| 8981 | pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) { |
| 8982 | pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis, |
| 8983 | (queues_left / pf->num_vmdq_qps)); |
| 8984 | queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps); |
| 8985 | } |
| 8986 | |
Anjali Singhai Jain | f8ff146 | 2013-11-26 10:49:19 +0000 | [diff] [blame] | 8987 | pf->queues_left = queues_left; |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 8988 | #ifdef I40E_FCOE |
| 8989 | dev_info(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps); |
| 8990 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 8991 | } |
| 8992 | |
| 8993 | /** |
| 8994 | * i40e_setup_pf_filter_control - Setup PF static filter control |
| 8995 | * @pf: PF to be setup |
| 8996 | * |
| 8997 | * i40e_setup_pf_filter_control sets up a pf's initial filter control |
| 8998 | * settings. If PE/FCoE are enabled then it will also set the per PF |
| 8999 | * based filter sizes required for them. It also enables Flow director, |
| 9000 | * ethertype and macvlan type filter settings for the pf. |
| 9001 | * |
| 9002 | * Returns 0 on success, negative on failure |
| 9003 | **/ |
| 9004 | static int i40e_setup_pf_filter_control(struct i40e_pf *pf) |
| 9005 | { |
| 9006 | struct i40e_filter_control_settings *settings = &pf->filter_settings; |
| 9007 | |
| 9008 | settings->hash_lut_size = I40E_HASH_LUT_SIZE_128; |
| 9009 | |
| 9010 | /* Flow Director is enabled */ |
Jesse Brandeburg | 60ea5f8 | 2014-01-17 15:36:34 -0800 | [diff] [blame] | 9011 | if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)) |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9012 | settings->enable_fdir = true; |
| 9013 | |
| 9014 | /* Ethtype and MACVLAN filters enabled for PF */ |
| 9015 | settings->enable_ethtype = true; |
| 9016 | settings->enable_macvlan = true; |
| 9017 | |
| 9018 | if (i40e_set_filter_control(&pf->hw, settings)) |
| 9019 | return -ENOENT; |
| 9020 | |
| 9021 | return 0; |
| 9022 | } |
| 9023 | |
Jesse Brandeburg | 0c22b3d | 2014-02-11 08:24:14 +0000 | [diff] [blame] | 9024 | #define INFO_STRING_LEN 255 |
| 9025 | static void i40e_print_features(struct i40e_pf *pf) |
| 9026 | { |
| 9027 | struct i40e_hw *hw = &pf->hw; |
| 9028 | char *buf, *string; |
| 9029 | |
| 9030 | string = kzalloc(INFO_STRING_LEN, GFP_KERNEL); |
| 9031 | if (!string) { |
| 9032 | dev_err(&pf->pdev->dev, "Features string allocation failed\n"); |
| 9033 | return; |
| 9034 | } |
| 9035 | |
| 9036 | buf = string; |
| 9037 | |
| 9038 | buf += sprintf(string, "Features: PF-id[%d] ", hw->pf_id); |
| 9039 | #ifdef CONFIG_PCI_IOV |
| 9040 | buf += sprintf(buf, "VFs: %d ", pf->num_req_vfs); |
| 9041 | #endif |
| 9042 | buf += sprintf(buf, "VSIs: %d QP: %d ", pf->hw.func_caps.num_vsis, |
| 9043 | pf->vsi[pf->lan_vsi]->num_queue_pairs); |
| 9044 | |
| 9045 | if (pf->flags & I40E_FLAG_RSS_ENABLED) |
| 9046 | buf += sprintf(buf, "RSS "); |
Jesse Brandeburg | 0c22b3d | 2014-02-11 08:24:14 +0000 | [diff] [blame] | 9047 | if (pf->flags & I40E_FLAG_FD_ATR_ENABLED) |
Akeem G Abodunrin | c6423ff | 2014-05-10 04:49:08 +0000 | [diff] [blame] | 9048 | buf += sprintf(buf, "FD_ATR "); |
| 9049 | if (pf->flags & I40E_FLAG_FD_SB_ENABLED) { |
| 9050 | buf += sprintf(buf, "FD_SB "); |
Jesse Brandeburg | 0c22b3d | 2014-02-11 08:24:14 +0000 | [diff] [blame] | 9051 | buf += sprintf(buf, "NTUPLE "); |
Akeem G Abodunrin | c6423ff | 2014-05-10 04:49:08 +0000 | [diff] [blame] | 9052 | } |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 9053 | if (pf->flags & I40E_FLAG_DCB_CAPABLE) |
Jesse Brandeburg | 0c22b3d | 2014-02-11 08:24:14 +0000 | [diff] [blame] | 9054 | buf += sprintf(buf, "DCB "); |
| 9055 | if (pf->flags & I40E_FLAG_PTP) |
| 9056 | buf += sprintf(buf, "PTP "); |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 9057 | #ifdef I40E_FCOE |
| 9058 | if (pf->flags & I40E_FLAG_FCOE_ENABLED) |
| 9059 | buf += sprintf(buf, "FCOE "); |
| 9060 | #endif |
Jesse Brandeburg | 0c22b3d | 2014-02-11 08:24:14 +0000 | [diff] [blame] | 9061 | |
| 9062 | BUG_ON(buf > (string + INFO_STRING_LEN)); |
| 9063 | dev_info(&pf->pdev->dev, "%s\n", string); |
| 9064 | kfree(string); |
| 9065 | } |
| 9066 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9067 | /** |
| 9068 | * i40e_probe - Device initialization routine |
| 9069 | * @pdev: PCI device information struct |
| 9070 | * @ent: entry in i40e_pci_tbl |
| 9071 | * |
| 9072 | * i40e_probe initializes a pf identified by a pci_dev structure. |
| 9073 | * The OS initialization, configuring of the pf private structure, |
| 9074 | * and a hardware reset occur. |
| 9075 | * |
| 9076 | * Returns 0 on success, negative on failure |
| 9077 | **/ |
| 9078 | static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
| 9079 | { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9080 | struct i40e_pf *pf; |
| 9081 | struct i40e_hw *hw; |
Anjali Singhai Jain | 93cd765 | 2013-11-20 10:03:01 +0000 | [diff] [blame] | 9082 | static u16 pfs_found; |
Catherine Sullivan | d4dfb81 | 2013-11-28 06:39:21 +0000 | [diff] [blame] | 9083 | u16 link_status; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9084 | int err = 0; |
| 9085 | u32 len; |
Shannon Nelson | 8a9eb7d | 2014-03-14 07:32:28 +0000 | [diff] [blame] | 9086 | u32 i; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9087 | |
| 9088 | err = pci_enable_device_mem(pdev); |
| 9089 | if (err) |
| 9090 | return err; |
| 9091 | |
| 9092 | /* set up for high or low dma */ |
Mitch Williams | 6494294 | 2014-02-11 08:26:33 +0000 | [diff] [blame] | 9093 | err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)); |
Mitch Williams | 6494294 | 2014-02-11 08:26:33 +0000 | [diff] [blame] | 9094 | if (err) { |
Jean Sacren | e3e3bfd | 2014-03-25 04:30:27 +0000 | [diff] [blame] | 9095 | err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)); |
| 9096 | if (err) { |
| 9097 | dev_err(&pdev->dev, |
| 9098 | "DMA configuration failed: 0x%x\n", err); |
| 9099 | goto err_dma; |
| 9100 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9101 | } |
| 9102 | |
| 9103 | /* set up pci connections */ |
| 9104 | err = pci_request_selected_regions(pdev, pci_select_bars(pdev, |
| 9105 | IORESOURCE_MEM), i40e_driver_name); |
| 9106 | if (err) { |
| 9107 | dev_info(&pdev->dev, |
| 9108 | "pci_request_selected_regions failed %d\n", err); |
| 9109 | goto err_pci_reg; |
| 9110 | } |
| 9111 | |
| 9112 | pci_enable_pcie_error_reporting(pdev); |
| 9113 | pci_set_master(pdev); |
| 9114 | |
| 9115 | /* Now that we have a PCI connection, we need to do the |
| 9116 | * low level device setup. This is primarily setting up |
| 9117 | * the Admin Queue structures and then querying for the |
| 9118 | * device's current profile information. |
| 9119 | */ |
| 9120 | pf = kzalloc(sizeof(*pf), GFP_KERNEL); |
| 9121 | if (!pf) { |
| 9122 | err = -ENOMEM; |
| 9123 | goto err_pf_alloc; |
| 9124 | } |
| 9125 | pf->next_vsi = 0; |
| 9126 | pf->pdev = pdev; |
| 9127 | set_bit(__I40E_DOWN, &pf->state); |
| 9128 | |
| 9129 | hw = &pf->hw; |
| 9130 | hw->back = pf; |
| 9131 | hw->hw_addr = ioremap(pci_resource_start(pdev, 0), |
| 9132 | pci_resource_len(pdev, 0)); |
| 9133 | if (!hw->hw_addr) { |
| 9134 | err = -EIO; |
| 9135 | dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n", |
| 9136 | (unsigned int)pci_resource_start(pdev, 0), |
| 9137 | (unsigned int)pci_resource_len(pdev, 0), err); |
| 9138 | goto err_ioremap; |
| 9139 | } |
| 9140 | hw->vendor_id = pdev->vendor; |
| 9141 | hw->device_id = pdev->device; |
| 9142 | pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id); |
| 9143 | hw->subsystem_vendor_id = pdev->subsystem_vendor; |
| 9144 | hw->subsystem_device_id = pdev->subsystem_device; |
| 9145 | hw->bus.device = PCI_SLOT(pdev->devfn); |
| 9146 | hw->bus.func = PCI_FUNC(pdev->devfn); |
Anjali Singhai Jain | 93cd765 | 2013-11-20 10:03:01 +0000 | [diff] [blame] | 9147 | pf->instance = pfs_found; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9148 | |
Shannon Nelson | 5b5faa4 | 2014-10-17 03:14:51 +0000 | [diff] [blame] | 9149 | if (debug != -1) { |
| 9150 | pf->msg_enable = pf->hw.debug_mask; |
| 9151 | pf->msg_enable = debug; |
| 9152 | } |
| 9153 | |
Jesse Brandeburg | 7134f9c | 2013-11-26 08:56:05 +0000 | [diff] [blame] | 9154 | /* do a special CORER for clearing PXE mode once at init */ |
| 9155 | if (hw->revision_id == 0 && |
| 9156 | (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) { |
| 9157 | wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK); |
| 9158 | i40e_flush(hw); |
| 9159 | msleep(200); |
| 9160 | pf->corer_count++; |
| 9161 | |
| 9162 | i40e_clear_pxe_mode(hw); |
| 9163 | } |
| 9164 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9165 | /* Reset here to make sure all is clean and to define PF 'n' */ |
Shannon Nelson | 838d41d | 2014-06-04 20:41:27 +0000 | [diff] [blame] | 9166 | i40e_clear_hw(hw); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9167 | err = i40e_pf_reset(hw); |
| 9168 | if (err) { |
| 9169 | dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err); |
| 9170 | goto err_pf_reset; |
| 9171 | } |
| 9172 | pf->pfr_count++; |
| 9173 | |
| 9174 | hw->aq.num_arq_entries = I40E_AQ_LEN; |
| 9175 | hw->aq.num_asq_entries = I40E_AQ_LEN; |
| 9176 | hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE; |
| 9177 | hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE; |
| 9178 | pf->adminq_work_limit = I40E_AQ_WORK_LIMIT; |
Carolyn Wyborny | b2008cb | 2014-11-11 20:05:26 +0000 | [diff] [blame] | 9179 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9180 | snprintf(pf->misc_int_name, sizeof(pf->misc_int_name) - 1, |
Carolyn Wyborny | b2008cb | 2014-11-11 20:05:26 +0000 | [diff] [blame] | 9181 | "%s-%s:misc", |
| 9182 | dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev)); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9183 | |
| 9184 | err = i40e_init_shared_code(hw); |
| 9185 | if (err) { |
| 9186 | dev_info(&pdev->dev, "init_shared_code failed: %d\n", err); |
| 9187 | goto err_pf_reset; |
| 9188 | } |
| 9189 | |
Jesse Brandeburg | d52c20b | 2013-11-26 10:49:15 +0000 | [diff] [blame] | 9190 | /* set up a default setting for link flow control */ |
| 9191 | pf->hw.fc.requested_mode = I40E_FC_NONE; |
| 9192 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9193 | err = i40e_init_adminq(hw); |
| 9194 | dev_info(&pdev->dev, "%s\n", i40e_fw_version_str(hw)); |
| 9195 | if (err) { |
| 9196 | dev_info(&pdev->dev, |
Catherine Sullivan | 7aa6761 | 2014-07-09 07:46:17 +0000 | [diff] [blame] | 9197 | "The driver for the device stopped because the NVM image is newer than expected. You must install the most recent version of the network driver.\n"); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9198 | goto err_pf_reset; |
| 9199 | } |
| 9200 | |
Catherine Sullivan | 7aa6761 | 2014-07-09 07:46:17 +0000 | [diff] [blame] | 9201 | if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR && |
| 9202 | hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR) |
Shannon Nelson | 278b6f6 | 2014-06-04 01:41:03 +0000 | [diff] [blame] | 9203 | dev_info(&pdev->dev, |
Catherine Sullivan | 7aa6761 | 2014-07-09 07:46:17 +0000 | [diff] [blame] | 9204 | "The driver for the device detected a newer version of the NVM image than expected. Please install the most recent version of the network driver.\n"); |
| 9205 | else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR || |
| 9206 | hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1)) |
Shannon Nelson | 278b6f6 | 2014-06-04 01:41:03 +0000 | [diff] [blame] | 9207 | dev_info(&pdev->dev, |
Catherine Sullivan | 7aa6761 | 2014-07-09 07:46:17 +0000 | [diff] [blame] | 9208 | "The driver for the device detected an older version of the NVM image than expected. Please update the NVM image.\n"); |
Shannon Nelson | 278b6f6 | 2014-06-04 01:41:03 +0000 | [diff] [blame] | 9209 | |
| 9210 | |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 9211 | i40e_verify_eeprom(pf); |
| 9212 | |
Jesse Brandeburg | 2c5fe33 | 2014-04-23 04:49:57 +0000 | [diff] [blame] | 9213 | /* Rev 0 hardware was never productized */ |
| 9214 | if (hw->revision_id < 1) |
| 9215 | dev_warn(&pdev->dev, "This device is a pre-production adapter/LOM. Please be aware there may be issues with your hardware. If you are experiencing problems please contact your Intel or hardware representative who provided you with this hardware.\n"); |
| 9216 | |
Shannon Nelson | 6ff4ef8 | 2013-12-21 05:44:49 +0000 | [diff] [blame] | 9217 | i40e_clear_pxe_mode(hw); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9218 | err = i40e_get_capabilities(pf); |
| 9219 | if (err) |
| 9220 | goto err_adminq_setup; |
| 9221 | |
| 9222 | err = i40e_sw_init(pf); |
| 9223 | if (err) { |
| 9224 | dev_info(&pdev->dev, "sw_init failed: %d\n", err); |
| 9225 | goto err_sw_init; |
| 9226 | } |
| 9227 | |
| 9228 | err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp, |
| 9229 | hw->func_caps.num_rx_qp, |
| 9230 | pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num); |
| 9231 | if (err) { |
| 9232 | dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err); |
| 9233 | goto err_init_lan_hmc; |
| 9234 | } |
| 9235 | |
| 9236 | err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY); |
| 9237 | if (err) { |
| 9238 | dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err); |
| 9239 | err = -ENOENT; |
| 9240 | goto err_configure_lan_hmc; |
| 9241 | } |
| 9242 | |
| 9243 | i40e_get_mac_addr(hw, hw->mac.addr); |
Jesse Brandeburg | f62b506 | 2013-11-28 06:39:27 +0000 | [diff] [blame] | 9244 | if (!is_valid_ether_addr(hw->mac.addr)) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9245 | dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr); |
| 9246 | err = -EIO; |
| 9247 | goto err_mac_addr; |
| 9248 | } |
| 9249 | dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr); |
Greg Rose | 9a17390 | 2014-05-22 06:32:02 +0000 | [diff] [blame] | 9250 | ether_addr_copy(hw->mac.perm_addr, hw->mac.addr); |
Neerav Parikh | 1f224ad | 2014-02-12 01:45:31 +0000 | [diff] [blame] | 9251 | i40e_get_port_mac_addr(hw, hw->mac.port_addr); |
| 9252 | if (is_valid_ether_addr(hw->mac.port_addr)) |
| 9253 | pf->flags |= I40E_FLAG_PORT_ID_VALID; |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 9254 | #ifdef I40E_FCOE |
| 9255 | err = i40e_get_san_mac_addr(hw, hw->mac.san_addr); |
| 9256 | if (err) |
| 9257 | dev_info(&pdev->dev, |
| 9258 | "(non-fatal) SAN MAC retrieval failed: %d\n", err); |
| 9259 | if (!is_valid_ether_addr(hw->mac.san_addr)) { |
| 9260 | dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n", |
| 9261 | hw->mac.san_addr); |
| 9262 | ether_addr_copy(hw->mac.san_addr, hw->mac.addr); |
| 9263 | } |
| 9264 | dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr); |
| 9265 | #endif /* I40E_FCOE */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9266 | |
| 9267 | pci_set_drvdata(pdev, pf); |
| 9268 | pci_save_state(pdev); |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 9269 | #ifdef CONFIG_I40E_DCB |
| 9270 | err = i40e_init_pf_dcb(pf); |
| 9271 | if (err) { |
| 9272 | dev_info(&pdev->dev, "init_pf_dcb failed: %d\n", err); |
Neerav Parikh | 4d9b604 | 2014-05-22 06:31:51 +0000 | [diff] [blame] | 9273 | pf->flags &= ~I40E_FLAG_DCB_CAPABLE; |
Neerav Parikh | 014269f | 2014-04-01 07:11:48 +0000 | [diff] [blame] | 9274 | /* Continue without DCB enabled */ |
Neerav Parikh | 4e3b35b | 2014-01-17 15:36:37 -0800 | [diff] [blame] | 9275 | } |
| 9276 | #endif /* CONFIG_I40E_DCB */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9277 | |
| 9278 | /* set up periodic task facility */ |
| 9279 | setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf); |
| 9280 | pf->service_timer_period = HZ; |
| 9281 | |
| 9282 | INIT_WORK(&pf->service_task, i40e_service_task); |
| 9283 | clear_bit(__I40E_SERVICE_SCHED, &pf->state); |
| 9284 | pf->flags |= I40E_FLAG_NEED_LINK_UPDATE; |
| 9285 | pf->link_check_timeout = jiffies; |
| 9286 | |
Shannon Nelson | 8e2773a | 2013-11-28 06:39:22 +0000 | [diff] [blame] | 9287 | /* WoL defaults to disabled */ |
| 9288 | pf->wol_en = false; |
| 9289 | device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en); |
| 9290 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9291 | /* set up the main switch operations */ |
| 9292 | i40e_determine_queue_usage(pf); |
| 9293 | i40e_init_interrupt_scheme(pf); |
| 9294 | |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 9295 | /* The number of VSIs reported by the FW is the minimum guaranteed |
| 9296 | * to us; HW supports far more and we share the remaining pool with |
| 9297 | * the other PFs. We allocate space for more than the guarantee with |
| 9298 | * the understanding that we might not get them all later. |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9299 | */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 9300 | if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC) |
| 9301 | pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC; |
| 9302 | else |
| 9303 | pf->num_alloc_vsi = pf->hw.func_caps.num_vsis; |
| 9304 | |
| 9305 | /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */ |
| 9306 | len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9307 | pf->vsi = kzalloc(len, GFP_KERNEL); |
Wei Yongjun | ed87ac0 | 2013-09-24 05:17:25 +0000 | [diff] [blame] | 9308 | if (!pf->vsi) { |
| 9309 | err = -ENOMEM; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9310 | goto err_switch_setup; |
Wei Yongjun | ed87ac0 | 2013-09-24 05:17:25 +0000 | [diff] [blame] | 9311 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9312 | |
Anjali Singhai Jain | bc7d338 | 2013-11-26 10:49:18 +0000 | [diff] [blame] | 9313 | err = i40e_setup_pf_switch(pf, false); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9314 | if (err) { |
| 9315 | dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err); |
| 9316 | goto err_vsis; |
| 9317 | } |
Shannon Nelson | 8a9eb7d | 2014-03-14 07:32:28 +0000 | [diff] [blame] | 9318 | /* if FDIR VSI was set up, start it now */ |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 9319 | for (i = 0; i < pf->num_alloc_vsi; i++) { |
Shannon Nelson | 8a9eb7d | 2014-03-14 07:32:28 +0000 | [diff] [blame] | 9320 | if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) { |
| 9321 | i40e_vsi_open(pf->vsi[i]); |
| 9322 | break; |
| 9323 | } |
| 9324 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9325 | |
Jesse Brandeburg | 7e2453f | 2014-09-13 07:40:41 +0000 | [diff] [blame] | 9326 | /* driver is only interested in link up/down and module qualification |
| 9327 | * reports from firmware |
| 9328 | */ |
| 9329 | err = i40e_aq_set_phy_int_mask(&pf->hw, |
| 9330 | I40E_AQ_EVENT_LINK_UPDOWN | |
| 9331 | I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL); |
| 9332 | if (err) |
| 9333 | dev_info(&pf->pdev->dev, "set phy mask fail, aq_err %d\n", err); |
| 9334 | |
Anjali Singhai Jain | cafa2ee | 2014-09-13 07:40:45 +0000 | [diff] [blame] | 9335 | msleep(75); |
| 9336 | err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL); |
| 9337 | if (err) { |
| 9338 | dev_info(&pf->pdev->dev, "link restart failed, aq_err=%d\n", |
| 9339 | pf->hw.aq.asq_last_status); |
| 9340 | } |
| 9341 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9342 | /* The main driver is (mostly) up and happy. We need to set this state |
| 9343 | * before setting up the misc vector or we get a race and the vector |
| 9344 | * ends up disabled forever. |
| 9345 | */ |
| 9346 | clear_bit(__I40E_DOWN, &pf->state); |
| 9347 | |
| 9348 | /* In case of MSIX we are going to setup the misc vector right here |
| 9349 | * to handle admin queue events etc. In case of legacy and MSI |
| 9350 | * the misc functionality and queue processing is combined in |
| 9351 | * the same vector and that gets setup at open. |
| 9352 | */ |
| 9353 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) { |
| 9354 | err = i40e_setup_misc_vector(pf); |
| 9355 | if (err) { |
| 9356 | dev_info(&pdev->dev, |
| 9357 | "setup of misc vector failed: %d\n", err); |
| 9358 | goto err_vsis; |
| 9359 | } |
| 9360 | } |
| 9361 | |
Greg Rose | df805f6 | 2014-04-04 04:43:16 +0000 | [diff] [blame] | 9362 | #ifdef CONFIG_PCI_IOV |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9363 | /* prep for VF support */ |
| 9364 | if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) && |
Shannon Nelson | 4eb3f76 | 2014-03-06 08:59:58 +0000 | [diff] [blame] | 9365 | (pf->flags & I40E_FLAG_MSIX_ENABLED) && |
| 9366 | !test_bit(__I40E_BAD_EEPROM, &pf->state)) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9367 | u32 val; |
| 9368 | |
| 9369 | /* disable link interrupts for VFs */ |
| 9370 | val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM); |
| 9371 | val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK; |
| 9372 | wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val); |
| 9373 | i40e_flush(hw); |
Mitch Williams | 4aeec01 | 2014-02-13 03:48:47 -0800 | [diff] [blame] | 9374 | |
| 9375 | if (pci_num_vf(pdev)) { |
| 9376 | dev_info(&pdev->dev, |
| 9377 | "Active VFs found, allocating resources.\n"); |
| 9378 | err = i40e_alloc_vfs(pf, pci_num_vf(pdev)); |
| 9379 | if (err) |
| 9380 | dev_info(&pdev->dev, |
| 9381 | "Error %d allocating resources for existing VFs\n", |
| 9382 | err); |
| 9383 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9384 | } |
Greg Rose | df805f6 | 2014-04-04 04:43:16 +0000 | [diff] [blame] | 9385 | #endif /* CONFIG_PCI_IOV */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9386 | |
Anjali Singhai Jain | 93cd765 | 2013-11-20 10:03:01 +0000 | [diff] [blame] | 9387 | pfs_found++; |
| 9388 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9389 | i40e_dbg_pf_init(pf); |
| 9390 | |
| 9391 | /* tell the firmware that we're starting */ |
Jesse Brandeburg | 44033fa | 2014-04-23 04:50:15 +0000 | [diff] [blame] | 9392 | i40e_send_version(pf); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9393 | |
| 9394 | /* since everything's happy, start the service_task timer */ |
| 9395 | mod_timer(&pf->service_timer, |
| 9396 | round_jiffies(jiffies + pf->service_timer_period)); |
| 9397 | |
Vasu Dev | 38e0043 | 2014-08-01 13:27:03 -0700 | [diff] [blame] | 9398 | #ifdef I40E_FCOE |
| 9399 | /* create FCoE interface */ |
| 9400 | i40e_fcoe_vsi_setup(pf); |
| 9401 | |
| 9402 | #endif |
Catherine Sullivan | d4dfb81 | 2013-11-28 06:39:21 +0000 | [diff] [blame] | 9403 | /* Get the negotiated link width and speed from PCI config space */ |
| 9404 | pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA, &link_status); |
| 9405 | |
| 9406 | i40e_set_pci_config_data(hw, link_status); |
| 9407 | |
Jesse Brandeburg | 69bfb11 | 2014-02-11 08:24:13 +0000 | [diff] [blame] | 9408 | dev_info(&pdev->dev, "PCI-Express: %s %s\n", |
Catherine Sullivan | d4dfb81 | 2013-11-28 06:39:21 +0000 | [diff] [blame] | 9409 | (hw->bus.speed == i40e_bus_speed_8000 ? "Speed 8.0GT/s" : |
| 9410 | hw->bus.speed == i40e_bus_speed_5000 ? "Speed 5.0GT/s" : |
| 9411 | hw->bus.speed == i40e_bus_speed_2500 ? "Speed 2.5GT/s" : |
| 9412 | "Unknown"), |
| 9413 | (hw->bus.width == i40e_bus_width_pcie_x8 ? "Width x8" : |
| 9414 | hw->bus.width == i40e_bus_width_pcie_x4 ? "Width x4" : |
| 9415 | hw->bus.width == i40e_bus_width_pcie_x2 ? "Width x2" : |
| 9416 | hw->bus.width == i40e_bus_width_pcie_x1 ? "Width x1" : |
| 9417 | "Unknown")); |
| 9418 | |
| 9419 | if (hw->bus.width < i40e_bus_width_pcie_x8 || |
| 9420 | hw->bus.speed < i40e_bus_speed_8000) { |
| 9421 | dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n"); |
| 9422 | dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n"); |
| 9423 | } |
| 9424 | |
Jesse Brandeburg | 0c22b3d | 2014-02-11 08:24:14 +0000 | [diff] [blame] | 9425 | /* print a string summarizing features */ |
| 9426 | i40e_print_features(pf); |
| 9427 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9428 | return 0; |
| 9429 | |
| 9430 | /* Unwind what we've done if something failed in the setup */ |
| 9431 | err_vsis: |
| 9432 | set_bit(__I40E_DOWN, &pf->state); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9433 | i40e_clear_interrupt_scheme(pf); |
| 9434 | kfree(pf->vsi); |
Shannon Nelson | 04b0301 | 2013-11-28 06:39:34 +0000 | [diff] [blame] | 9435 | err_switch_setup: |
| 9436 | i40e_reset_interrupt_capability(pf); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9437 | del_timer_sync(&pf->service_timer); |
| 9438 | err_mac_addr: |
| 9439 | err_configure_lan_hmc: |
| 9440 | (void)i40e_shutdown_lan_hmc(hw); |
| 9441 | err_init_lan_hmc: |
| 9442 | kfree(pf->qp_pile); |
| 9443 | kfree(pf->irq_pile); |
| 9444 | err_sw_init: |
| 9445 | err_adminq_setup: |
| 9446 | (void)i40e_shutdown_adminq(hw); |
| 9447 | err_pf_reset: |
| 9448 | iounmap(hw->hw_addr); |
| 9449 | err_ioremap: |
| 9450 | kfree(pf); |
| 9451 | err_pf_alloc: |
| 9452 | pci_disable_pcie_error_reporting(pdev); |
| 9453 | pci_release_selected_regions(pdev, |
| 9454 | pci_select_bars(pdev, IORESOURCE_MEM)); |
| 9455 | err_pci_reg: |
| 9456 | err_dma: |
| 9457 | pci_disable_device(pdev); |
| 9458 | return err; |
| 9459 | } |
| 9460 | |
| 9461 | /** |
| 9462 | * i40e_remove - Device removal routine |
| 9463 | * @pdev: PCI device information struct |
| 9464 | * |
| 9465 | * i40e_remove is called by the PCI subsystem to alert the driver |
| 9466 | * that is should release a PCI device. This could be caused by a |
| 9467 | * Hot-Plug event, or because the driver is going to be removed from |
| 9468 | * memory. |
| 9469 | **/ |
| 9470 | static void i40e_remove(struct pci_dev *pdev) |
| 9471 | { |
| 9472 | struct i40e_pf *pf = pci_get_drvdata(pdev); |
| 9473 | i40e_status ret_code; |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9474 | int i; |
| 9475 | |
| 9476 | i40e_dbg_pf_exit(pf); |
| 9477 | |
Jacob Keller | beb0dff | 2014-01-11 05:43:19 +0000 | [diff] [blame] | 9478 | i40e_ptp_stop(pf); |
| 9479 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9480 | /* no more scheduling of any task */ |
| 9481 | set_bit(__I40E_DOWN, &pf->state); |
| 9482 | del_timer_sync(&pf->service_timer); |
| 9483 | cancel_work_sync(&pf->service_task); |
| 9484 | |
Mitch Williams | eb2d80b | 2014-02-13 03:48:48 -0800 | [diff] [blame] | 9485 | if (pf->flags & I40E_FLAG_SRIOV_ENABLED) { |
| 9486 | i40e_free_vfs(pf); |
| 9487 | pf->flags &= ~I40E_FLAG_SRIOV_ENABLED; |
| 9488 | } |
| 9489 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9490 | i40e_fdir_teardown(pf); |
| 9491 | |
| 9492 | /* If there is a switch structure or any orphans, remove them. |
| 9493 | * This will leave only the PF's VSI remaining. |
| 9494 | */ |
| 9495 | for (i = 0; i < I40E_MAX_VEB; i++) { |
| 9496 | if (!pf->veb[i]) |
| 9497 | continue; |
| 9498 | |
| 9499 | if (pf->veb[i]->uplink_seid == pf->mac_seid || |
| 9500 | pf->veb[i]->uplink_seid == 0) |
| 9501 | i40e_switch_branch_release(pf->veb[i]); |
| 9502 | } |
| 9503 | |
| 9504 | /* Now we can shutdown the PF's VSI, just before we kill |
| 9505 | * adminq and hmc. |
| 9506 | */ |
| 9507 | if (pf->vsi[pf->lan_vsi]) |
| 9508 | i40e_vsi_release(pf->vsi[pf->lan_vsi]); |
| 9509 | |
| 9510 | i40e_stop_misc_vector(pf); |
| 9511 | if (pf->flags & I40E_FLAG_MSIX_ENABLED) { |
| 9512 | synchronize_irq(pf->msix_entries[0].vector); |
| 9513 | free_irq(pf->msix_entries[0].vector, pf); |
| 9514 | } |
| 9515 | |
| 9516 | /* shutdown and destroy the HMC */ |
Shannon Nelson | 60442de | 2014-04-23 04:50:13 +0000 | [diff] [blame] | 9517 | if (pf->hw.hmc.hmc_obj) { |
| 9518 | ret_code = i40e_shutdown_lan_hmc(&pf->hw); |
| 9519 | if (ret_code) |
| 9520 | dev_warn(&pdev->dev, |
| 9521 | "Failed to destroy the HMC resources: %d\n", |
| 9522 | ret_code); |
| 9523 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9524 | |
| 9525 | /* shutdown the adminq */ |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9526 | ret_code = i40e_shutdown_adminq(&pf->hw); |
| 9527 | if (ret_code) |
| 9528 | dev_warn(&pdev->dev, |
| 9529 | "Failed to destroy the Admin Queue resources: %d\n", |
| 9530 | ret_code); |
| 9531 | |
| 9532 | /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */ |
| 9533 | i40e_clear_interrupt_scheme(pf); |
Mitch Williams | 505682c | 2014-05-20 08:01:37 +0000 | [diff] [blame] | 9534 | for (i = 0; i < pf->num_alloc_vsi; i++) { |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9535 | if (pf->vsi[i]) { |
| 9536 | i40e_vsi_clear_rings(pf->vsi[i]); |
| 9537 | i40e_vsi_clear(pf->vsi[i]); |
| 9538 | pf->vsi[i] = NULL; |
| 9539 | } |
| 9540 | } |
| 9541 | |
| 9542 | for (i = 0; i < I40E_MAX_VEB; i++) { |
| 9543 | kfree(pf->veb[i]); |
| 9544 | pf->veb[i] = NULL; |
| 9545 | } |
| 9546 | |
| 9547 | kfree(pf->qp_pile); |
| 9548 | kfree(pf->irq_pile); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9549 | kfree(pf->vsi); |
| 9550 | |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9551 | iounmap(pf->hw.hw_addr); |
| 9552 | kfree(pf); |
| 9553 | pci_release_selected_regions(pdev, |
| 9554 | pci_select_bars(pdev, IORESOURCE_MEM)); |
| 9555 | |
| 9556 | pci_disable_pcie_error_reporting(pdev); |
| 9557 | pci_disable_device(pdev); |
| 9558 | } |
| 9559 | |
| 9560 | /** |
| 9561 | * i40e_pci_error_detected - warning that something funky happened in PCI land |
| 9562 | * @pdev: PCI device information struct |
| 9563 | * |
| 9564 | * Called to warn that something happened and the error handling steps |
| 9565 | * are in progress. Allows the driver to quiesce things, be ready for |
| 9566 | * remediation. |
| 9567 | **/ |
| 9568 | static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev, |
| 9569 | enum pci_channel_state error) |
| 9570 | { |
| 9571 | struct i40e_pf *pf = pci_get_drvdata(pdev); |
| 9572 | |
| 9573 | dev_info(&pdev->dev, "%s: error %d\n", __func__, error); |
| 9574 | |
| 9575 | /* shutdown all operations */ |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9576 | if (!test_bit(__I40E_SUSPENDED, &pf->state)) { |
| 9577 | rtnl_lock(); |
| 9578 | i40e_prep_for_reset(pf); |
| 9579 | rtnl_unlock(); |
| 9580 | } |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9581 | |
| 9582 | /* Request a slot reset */ |
| 9583 | return PCI_ERS_RESULT_NEED_RESET; |
| 9584 | } |
| 9585 | |
| 9586 | /** |
| 9587 | * i40e_pci_error_slot_reset - a PCI slot reset just happened |
| 9588 | * @pdev: PCI device information struct |
| 9589 | * |
| 9590 | * Called to find if the driver can work with the device now that |
| 9591 | * the pci slot has been reset. If a basic connection seems good |
| 9592 | * (registers are readable and have sane content) then return a |
| 9593 | * happy little PCI_ERS_RESULT_xxx. |
| 9594 | **/ |
| 9595 | static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev) |
| 9596 | { |
| 9597 | struct i40e_pf *pf = pci_get_drvdata(pdev); |
| 9598 | pci_ers_result_t result; |
| 9599 | int err; |
| 9600 | u32 reg; |
| 9601 | |
| 9602 | dev_info(&pdev->dev, "%s\n", __func__); |
| 9603 | if (pci_enable_device_mem(pdev)) { |
| 9604 | dev_info(&pdev->dev, |
| 9605 | "Cannot re-enable PCI device after reset.\n"); |
| 9606 | result = PCI_ERS_RESULT_DISCONNECT; |
| 9607 | } else { |
| 9608 | pci_set_master(pdev); |
| 9609 | pci_restore_state(pdev); |
| 9610 | pci_save_state(pdev); |
| 9611 | pci_wake_from_d3(pdev, false); |
| 9612 | |
| 9613 | reg = rd32(&pf->hw, I40E_GLGEN_RTRIG); |
| 9614 | if (reg == 0) |
| 9615 | result = PCI_ERS_RESULT_RECOVERED; |
| 9616 | else |
| 9617 | result = PCI_ERS_RESULT_DISCONNECT; |
| 9618 | } |
| 9619 | |
| 9620 | err = pci_cleanup_aer_uncorrect_error_status(pdev); |
| 9621 | if (err) { |
| 9622 | dev_info(&pdev->dev, |
| 9623 | "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n", |
| 9624 | err); |
| 9625 | /* non-fatal, continue */ |
| 9626 | } |
| 9627 | |
| 9628 | return result; |
| 9629 | } |
| 9630 | |
| 9631 | /** |
| 9632 | * i40e_pci_error_resume - restart operations after PCI error recovery |
| 9633 | * @pdev: PCI device information struct |
| 9634 | * |
| 9635 | * Called to allow the driver to bring things back up after PCI error |
| 9636 | * and/or reset recovery has finished. |
| 9637 | **/ |
| 9638 | static void i40e_pci_error_resume(struct pci_dev *pdev) |
| 9639 | { |
| 9640 | struct i40e_pf *pf = pci_get_drvdata(pdev); |
| 9641 | |
| 9642 | dev_info(&pdev->dev, "%s\n", __func__); |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9643 | if (test_bit(__I40E_SUSPENDED, &pf->state)) |
| 9644 | return; |
| 9645 | |
| 9646 | rtnl_lock(); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9647 | i40e_handle_reset_warning(pf); |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9648 | rtnl_lock(); |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9649 | } |
| 9650 | |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9651 | /** |
| 9652 | * i40e_shutdown - PCI callback for shutting down |
| 9653 | * @pdev: PCI device information struct |
| 9654 | **/ |
| 9655 | static void i40e_shutdown(struct pci_dev *pdev) |
| 9656 | { |
| 9657 | struct i40e_pf *pf = pci_get_drvdata(pdev); |
Shannon Nelson | 8e2773a | 2013-11-28 06:39:22 +0000 | [diff] [blame] | 9658 | struct i40e_hw *hw = &pf->hw; |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9659 | |
| 9660 | set_bit(__I40E_SUSPENDED, &pf->state); |
| 9661 | set_bit(__I40E_DOWN, &pf->state); |
| 9662 | rtnl_lock(); |
| 9663 | i40e_prep_for_reset(pf); |
| 9664 | rtnl_unlock(); |
| 9665 | |
Shannon Nelson | 8e2773a | 2013-11-28 06:39:22 +0000 | [diff] [blame] | 9666 | wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0)); |
| 9667 | wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0)); |
| 9668 | |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9669 | if (system_state == SYSTEM_POWER_OFF) { |
Shannon Nelson | 8e2773a | 2013-11-28 06:39:22 +0000 | [diff] [blame] | 9670 | pci_wake_from_d3(pdev, pf->wol_en); |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9671 | pci_set_power_state(pdev, PCI_D3hot); |
| 9672 | } |
| 9673 | } |
| 9674 | |
| 9675 | #ifdef CONFIG_PM |
| 9676 | /** |
| 9677 | * i40e_suspend - PCI callback for moving to D3 |
| 9678 | * @pdev: PCI device information struct |
| 9679 | **/ |
| 9680 | static int i40e_suspend(struct pci_dev *pdev, pm_message_t state) |
| 9681 | { |
| 9682 | struct i40e_pf *pf = pci_get_drvdata(pdev); |
Shannon Nelson | 8e2773a | 2013-11-28 06:39:22 +0000 | [diff] [blame] | 9683 | struct i40e_hw *hw = &pf->hw; |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9684 | |
| 9685 | set_bit(__I40E_SUSPENDED, &pf->state); |
| 9686 | set_bit(__I40E_DOWN, &pf->state); |
| 9687 | rtnl_lock(); |
| 9688 | i40e_prep_for_reset(pf); |
| 9689 | rtnl_unlock(); |
| 9690 | |
Shannon Nelson | 8e2773a | 2013-11-28 06:39:22 +0000 | [diff] [blame] | 9691 | wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0)); |
| 9692 | wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0)); |
| 9693 | |
| 9694 | pci_wake_from_d3(pdev, pf->wol_en); |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9695 | pci_set_power_state(pdev, PCI_D3hot); |
| 9696 | |
| 9697 | return 0; |
| 9698 | } |
| 9699 | |
| 9700 | /** |
| 9701 | * i40e_resume - PCI callback for waking up from D3 |
| 9702 | * @pdev: PCI device information struct |
| 9703 | **/ |
| 9704 | static int i40e_resume(struct pci_dev *pdev) |
| 9705 | { |
| 9706 | struct i40e_pf *pf = pci_get_drvdata(pdev); |
| 9707 | u32 err; |
| 9708 | |
| 9709 | pci_set_power_state(pdev, PCI_D0); |
| 9710 | pci_restore_state(pdev); |
| 9711 | /* pci_restore_state() clears dev->state_saves, so |
| 9712 | * call pci_save_state() again to restore it. |
| 9713 | */ |
| 9714 | pci_save_state(pdev); |
| 9715 | |
| 9716 | err = pci_enable_device_mem(pdev); |
| 9717 | if (err) { |
| 9718 | dev_err(&pdev->dev, |
| 9719 | "%s: Cannot enable PCI device from suspend\n", |
| 9720 | __func__); |
| 9721 | return err; |
| 9722 | } |
| 9723 | pci_set_master(pdev); |
| 9724 | |
| 9725 | /* no wakeup events while running */ |
| 9726 | pci_wake_from_d3(pdev, false); |
| 9727 | |
| 9728 | /* handling the reset will rebuild the device state */ |
| 9729 | if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) { |
| 9730 | clear_bit(__I40E_DOWN, &pf->state); |
| 9731 | rtnl_lock(); |
| 9732 | i40e_reset_and_rebuild(pf, false); |
| 9733 | rtnl_unlock(); |
| 9734 | } |
| 9735 | |
| 9736 | return 0; |
| 9737 | } |
| 9738 | |
| 9739 | #endif |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9740 | static const struct pci_error_handlers i40e_err_handler = { |
| 9741 | .error_detected = i40e_pci_error_detected, |
| 9742 | .slot_reset = i40e_pci_error_slot_reset, |
| 9743 | .resume = i40e_pci_error_resume, |
| 9744 | }; |
| 9745 | |
| 9746 | static struct pci_driver i40e_driver = { |
| 9747 | .name = i40e_driver_name, |
| 9748 | .id_table = i40e_pci_tbl, |
| 9749 | .probe = i40e_probe, |
| 9750 | .remove = i40e_remove, |
Shannon Nelson | 9007bcc | 2013-11-26 10:49:23 +0000 | [diff] [blame] | 9751 | #ifdef CONFIG_PM |
| 9752 | .suspend = i40e_suspend, |
| 9753 | .resume = i40e_resume, |
| 9754 | #endif |
| 9755 | .shutdown = i40e_shutdown, |
Jesse Brandeburg | 41c445f | 2013-09-11 08:39:46 +0000 | [diff] [blame] | 9756 | .err_handler = &i40e_err_handler, |
| 9757 | .sriov_configure = i40e_pci_sriov_configure, |
| 9758 | }; |
| 9759 | |
| 9760 | /** |
| 9761 | * i40e_init_module - Driver registration routine |
| 9762 | * |
| 9763 | * i40e_init_module is the first routine called when the driver is |
| 9764 | * loaded. All it does is register with the PCI subsystem. |
| 9765 | **/ |
| 9766 | static int __init i40e_init_module(void) |
| 9767 | { |
| 9768 | pr_info("%s: %s - version %s\n", i40e_driver_name, |
| 9769 | i40e_driver_string, i40e_driver_version_str); |
| 9770 | pr_info("%s: %s\n", i40e_driver_name, i40e_copyright); |
| 9771 | i40e_dbg_init(); |
| 9772 | return pci_register_driver(&i40e_driver); |
| 9773 | } |
| 9774 | module_init(i40e_init_module); |
| 9775 | |
| 9776 | /** |
| 9777 | * i40e_exit_module - Driver exit cleanup routine |
| 9778 | * |
| 9779 | * i40e_exit_module is called just before the driver is removed |
| 9780 | * from memory. |
| 9781 | **/ |
| 9782 | static void __exit i40e_exit_module(void) |
| 9783 | { |
| 9784 | pci_unregister_driver(&i40e_driver); |
| 9785 | i40e_dbg_exit(); |
| 9786 | } |
| 9787 | module_exit(i40e_exit_module); |