blob: 4de52001a2b9d43f1c09ccff358cfacbcea84ba7 [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Shannon Nelson4fc8c672017-06-07 05:43:08 -04004 * Copyright(c) 2013 - 2017 Intel Corporation.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005 *
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 Rosedc641b72013-12-18 13:45:51 +000015 * 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 Brandeburg41c445f2013-09-11 08:39:46 +000017 *
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
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050027#include <linux/etherdevice.h>
28#include <linux/of_net.h>
29#include <linux/pci.h>
Björn Töpel0c8493d2017-05-24 07:55:34 +020030#include <linux/bpf.h>
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050031
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000032/* Local includes */
33#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000034#include "i40e_diag.h"
Alexander Duyck06a5f7f2016-06-16 12:22:06 -070035#include <net/udp_tunnel.h>
Scott Petersoned0980c2017-04-13 04:45:44 -040036/* All i40e tracepoints are defined by the include below, which
37 * must be included exactly once across the whole kernel with
38 * CREATE_TRACE_POINTS defined
39 */
40#define CREATE_TRACE_POINTS
41#include "i40e_trace.h"
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000042
43const char i40e_driver_name[] = "i40e";
44static const char i40e_driver_string[] =
45 "Intel(R) Ethernet Connection XL710 Network Driver";
46
47#define DRV_KERN "-k"
48
Bimmy Pujari15990832017-01-30 12:29:37 -080049#define DRV_VERSION_MAJOR 2
50#define DRV_VERSION_MINOR 1
Jacob Keller2318b402017-04-19 09:25:53 -040051#define DRV_VERSION_BUILD 14
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000052#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
53 __stringify(DRV_VERSION_MINOR) "." \
54 __stringify(DRV_VERSION_BUILD) DRV_KERN
55const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080056static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000057
58/* a bit of forward declarations */
59static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
Maciej Sosin373149f2017-04-05 07:50:55 -040060static void i40e_handle_reset_warning(struct i40e_pf *pf, bool lock_acquired);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000061static int i40e_add_vsi(struct i40e_vsi *vsi);
62static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000063static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000064static int i40e_setup_misc_vector(struct i40e_pf *pf);
65static void i40e_determine_queue_usage(struct i40e_pf *pf);
66static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Maciej Sosin373149f2017-04-05 07:50:55 -040067static void i40e_prep_for_reset(struct i40e_pf *pf, bool lock_acquired);
68static int i40e_reset(struct i40e_pf *pf);
69static void i40e_rebuild(struct i40e_pf *pf, bool reinit, bool lock_acquired);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080070static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080071static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000072
73/* i40e_pci_tbl - PCI Device ID Table
74 *
75 * Last entry must be all 0s
76 *
77 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
78 * Class, Class Mask, private data (not used) }
79 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020080static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080081 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080082 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080083 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
84 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080085 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
86 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
87 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Mitch Williams5960d332014-09-13 07:40:47 +000088 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
Shannon Nelsonbc5166b92015-08-26 15:14:10 -040089 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T4), 0},
Anjali Singhai Jain35dae512015-12-22 14:25:03 -080090 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_X722), 0},
91 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_X722), 0},
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -040092 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_X722), 0},
93 {PCI_VDEVICE(INTEL, I40E_DEV_ID_1G_BASE_T_X722), 0},
94 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T_X722), 0},
Catherine Sullivand6bf58c2016-03-18 12:18:08 -070095 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_I_X722), 0},
Shannon Nelson48a3b512015-07-23 16:54:39 -040096 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
97 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2_A), 0},
Carolyn Wyborny31232372016-11-21 13:03:48 -080098 {PCI_VDEVICE(INTEL, I40E_DEV_ID_25G_B), 0},
99 {PCI_VDEVICE(INTEL, I40E_DEV_ID_25G_SFP28), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000100 /* required last entry */
101 {0, }
102};
103MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
104
105#define I40E_MAX_VF_COUNT 128
106static int debug = -1;
Alexander Duyck5d4ca232016-09-30 08:21:46 -0400107module_param(debug, uint, 0);
108MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all), Debug mask (0x8XXXXXXX)");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000109
110MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
111MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
112MODULE_LICENSE("GPL");
113MODULE_VERSION(DRV_VERSION);
114
Jesse Brandeburg2803b162015-12-22 14:25:08 -0800115static struct workqueue_struct *i40e_wq;
116
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000117/**
118 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
119 * @hw: pointer to the HW structure
120 * @mem: ptr to mem struct to fill out
121 * @size: size of memory requested
122 * @alignment: what to align the allocation to
123 **/
124int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
125 u64 size, u32 alignment)
126{
127 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
128
129 mem->size = ALIGN(size, alignment);
130 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
131 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000132 if (!mem->va)
133 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000134
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000135 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000136}
137
138/**
139 * i40e_free_dma_mem_d - OS specific memory free for shared code
140 * @hw: pointer to the HW structure
141 * @mem: ptr to mem struct to free
142 **/
143int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
144{
145 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
146
147 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
148 mem->va = NULL;
149 mem->pa = 0;
150 mem->size = 0;
151
152 return 0;
153}
154
155/**
156 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
157 * @hw: pointer to the HW structure
158 * @mem: ptr to mem struct to fill out
159 * @size: size of memory requested
160 **/
161int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
162 u32 size)
163{
164 mem->size = size;
165 mem->va = kzalloc(size, GFP_KERNEL);
166
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000167 if (!mem->va)
168 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000169
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000170 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000171}
172
173/**
174 * i40e_free_virt_mem_d - OS specific memory free for shared code
175 * @hw: pointer to the HW structure
176 * @mem: ptr to mem struct to free
177 **/
178int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
179{
180 /* it's ok to kfree a NULL pointer */
181 kfree(mem->va);
182 mem->va = NULL;
183 mem->size = 0;
184
185 return 0;
186}
187
188/**
189 * i40e_get_lump - find a lump of free generic resource
190 * @pf: board private structure
191 * @pile: the pile of resource to search
192 * @needed: the number of items needed
193 * @id: an owner id to stick on the items assigned
194 *
195 * Returns the base item index of the lump, or negative for error
196 *
197 * The search_hint trick and lack of advanced fit-finding only work
198 * because we're highly likely to have all the same size lump requests.
199 * Linear search time and any fragmentation should be minimal.
200 **/
201static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
202 u16 needed, u16 id)
203{
204 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000205 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000206
207 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
208 dev_info(&pf->pdev->dev,
209 "param err: pile=%p needed=%d id=0x%04x\n",
210 pile, needed, id);
211 return -EINVAL;
212 }
213
214 /* start the linear search with an imperfect hint */
215 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000216 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000217 /* skip already allocated entries */
218 if (pile->list[i] & I40E_PILE_VALID_BIT) {
219 i++;
220 continue;
221 }
222
223 /* do we have enough in this lump? */
224 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
225 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
226 break;
227 }
228
229 if (j == needed) {
230 /* there was enough, so assign it to the requestor */
231 for (j = 0; j < needed; j++)
232 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
233 ret = i;
234 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000235 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000236 }
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400237
238 /* not enough, so skip over it and continue looking */
239 i += j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000240 }
241
242 return ret;
243}
244
245/**
246 * i40e_put_lump - return a lump of generic resource
247 * @pile: the pile of resource to search
248 * @index: the base item index
249 * @id: the owner id of the items assigned
250 *
251 * Returns the count of items in the lump
252 **/
253static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
254{
255 int valid_id = (id | I40E_PILE_VALID_BIT);
256 int count = 0;
257 int i;
258
259 if (!pile || index >= pile->num_entries)
260 return -EINVAL;
261
262 for (i = index;
263 i < pile->num_entries && pile->list[i] == valid_id;
264 i++) {
265 pile->list[i] = 0;
266 count++;
267 }
268
269 if (count && index < pile->search_hint)
270 pile->search_hint = index;
271
272 return count;
273}
274
275/**
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700276 * i40e_find_vsi_from_id - searches for the vsi with the given id
277 * @pf - the pf structure to search for the vsi
278 * @id - id of the vsi it is searching for
279 **/
280struct i40e_vsi *i40e_find_vsi_from_id(struct i40e_pf *pf, u16 id)
281{
282 int i;
283
284 for (i = 0; i < pf->num_alloc_vsi; i++)
285 if (pf->vsi[i] && (pf->vsi[i]->id == id))
286 return pf->vsi[i];
287
288 return NULL;
289}
290
291/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000292 * i40e_service_event_schedule - Schedule the service task to wake up
293 * @pf: board private structure
294 *
295 * If not already scheduled, this puts the task into the work queue
296 **/
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600297void i40e_service_event_schedule(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000298{
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -0300299 if (!test_bit(__I40E_DOWN, pf->state) &&
Jacob Keller0da36b92017-04-19 09:25:55 -0400300 !test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
Jesse Brandeburg2803b162015-12-22 14:25:08 -0800301 queue_work(i40e_wq, &pf->service_task);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000302}
303
304/**
305 * i40e_tx_timeout - Respond to a Tx Hang
306 * @netdev: network interface device structure
307 *
308 * If any port has noticed a Tx timeout, it is likely that the whole
309 * device is munged, not just the one netdev port, so go for the full
310 * reset.
311 **/
312static void i40e_tx_timeout(struct net_device *netdev)
313{
314 struct i40e_netdev_priv *np = netdev_priv(netdev);
315 struct i40e_vsi *vsi = np->vsi;
316 struct i40e_pf *pf = vsi->back;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400317 struct i40e_ring *tx_ring = NULL;
318 unsigned int i, hung_queue = 0;
319 u32 head, val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000320
321 pf->tx_timeout_count++;
322
Kiran Patilb03a8c12015-09-24 18:13:15 -0400323 /* find the stopped queue the same way the stack does */
324 for (i = 0; i < netdev->num_tx_queues; i++) {
325 struct netdev_queue *q;
326 unsigned long trans_start;
327
328 q = netdev_get_tx_queue(netdev, i);
Florian Westphal9b366272016-05-03 16:33:14 +0200329 trans_start = q->trans_start;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400330 if (netif_xmit_stopped(q) &&
331 time_after(jiffies,
332 (trans_start + netdev->watchdog_timeo))) {
333 hung_queue = i;
334 break;
335 }
336 }
337
338 if (i == netdev->num_tx_queues) {
339 netdev_info(netdev, "tx_timeout: no netdev hung queue found\n");
340 } else {
341 /* now that we have an index, find the tx_ring struct */
342 for (i = 0; i < vsi->num_queue_pairs; i++) {
343 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
344 if (hung_queue ==
345 vsi->tx_rings[i]->queue_index) {
346 tx_ring = vsi->tx_rings[i];
347 break;
348 }
349 }
350 }
351 }
352
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000353 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Kiran Patilb03a8c12015-09-24 18:13:15 -0400354 pf->tx_timeout_recovery_level = 1; /* reset after some time */
355 else if (time_before(jiffies,
356 (pf->tx_timeout_last_recovery + netdev->watchdog_timeo)))
357 return; /* don't do any new action before the next timeout */
358
359 if (tx_ring) {
360 head = i40e_get_head(tx_ring);
361 /* Read interrupt register */
362 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
363 val = rd32(&pf->hw,
364 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
365 tx_ring->vsi->base_vector - 1));
366 else
367 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
368
369 netdev_info(netdev, "tx_timeout: VSI_seid: %d, Q %d, NTC: 0x%x, HWB: 0x%x, NTU: 0x%x, TAIL: 0x%x, INT: 0x%x\n",
370 vsi->seid, hung_queue, tx_ring->next_to_clean,
371 head, tx_ring->next_to_use,
372 readl(tx_ring->tail), val);
373 }
374
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000375 pf->tx_timeout_last_recovery = jiffies;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400376 netdev_info(netdev, "tx_timeout recovery level %d, hung_queue %d\n",
377 pf->tx_timeout_recovery_level, hung_queue);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000378
379 switch (pf->tx_timeout_recovery_level) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000380 case 1:
Jacob Keller0da36b92017-04-19 09:25:55 -0400381 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000382 break;
383 case 2:
Jacob Keller0da36b92017-04-19 09:25:55 -0400384 set_bit(__I40E_CORE_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000385 break;
386 case 3:
Jacob Keller0da36b92017-04-19 09:25:55 -0400387 set_bit(__I40E_GLOBAL_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000388 break;
389 default:
390 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000391 break;
392 }
Kiran Patilb03a8c12015-09-24 18:13:15 -0400393
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000394 i40e_service_event_schedule(pf);
395 pf->tx_timeout_recovery_level++;
396}
397
398/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000399 * i40e_get_vsi_stats_struct - Get System Network Statistics
400 * @vsi: the VSI we care about
401 *
402 * Returns the address of the device statistics structure.
403 * The statistics are actually updated from the service task.
404 **/
405struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
406{
407 return &vsi->net_stats;
408}
409
410/**
Björn Töpel74608d12017-05-24 07:55:35 +0200411 * i40e_get_netdev_stats_struct_tx - populate stats from a Tx ring
412 * @ring: Tx ring to get statistics from
413 * @stats: statistics entry to be updated
414 **/
415static void i40e_get_netdev_stats_struct_tx(struct i40e_ring *ring,
416 struct rtnl_link_stats64 *stats)
417{
418 u64 bytes, packets;
419 unsigned int start;
420
421 do {
422 start = u64_stats_fetch_begin_irq(&ring->syncp);
423 packets = ring->stats.packets;
424 bytes = ring->stats.bytes;
425 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
426
427 stats->tx_packets += packets;
428 stats->tx_bytes += bytes;
429}
430
431/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000432 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
433 * @netdev: network interface device structure
434 *
435 * Returns the address of the device statistics structure.
436 * The statistics are actually updated from the service task.
437 **/
Alexander Duyck9eed69a2017-02-21 15:55:47 -0800438static void i40e_get_netdev_stats_struct(struct net_device *netdev,
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800439 struct rtnl_link_stats64 *stats)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000440{
441 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000442 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000443 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000444 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
445 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000446
Jacob Keller0da36b92017-04-19 09:25:55 -0400447 if (test_bit(__I40E_VSI_DOWN, vsi->state))
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800448 return;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000449
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800450 if (!vsi->tx_rings)
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800451 return;
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800452
Alexander Duyck980e9b12013-09-28 06:01:03 +0000453 rcu_read_lock();
454 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000455 u64 bytes, packets;
456 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000457
Alexander Duyck980e9b12013-09-28 06:01:03 +0000458 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
459 if (!tx_ring)
460 continue;
Björn Töpel74608d12017-05-24 07:55:35 +0200461 i40e_get_netdev_stats_struct_tx(tx_ring, stats);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000462
Alexander Duyck980e9b12013-09-28 06:01:03 +0000463 rx_ring = &tx_ring[1];
464
465 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700466 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000467 packets = rx_ring->stats.packets;
468 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700469 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000470
471 stats->rx_packets += packets;
472 stats->rx_bytes += bytes;
Björn Töpel74608d12017-05-24 07:55:35 +0200473
474 if (i40e_enabled_xdp_vsi(vsi))
475 i40e_get_netdev_stats_struct_tx(&rx_ring[1], stats);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000476 }
477 rcu_read_unlock();
478
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000479 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000480 stats->multicast = vsi_stats->multicast;
481 stats->tx_errors = vsi_stats->tx_errors;
482 stats->tx_dropped = vsi_stats->tx_dropped;
483 stats->rx_errors = vsi_stats->rx_errors;
Jesse Brandeburgd8201e22015-07-23 16:54:35 -0400484 stats->rx_dropped = vsi_stats->rx_dropped;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000485 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
486 stats->rx_length_errors = vsi_stats->rx_length_errors;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000487}
488
489/**
490 * i40e_vsi_reset_stats - Resets all stats of the given vsi
491 * @vsi: the VSI to have its stats reset
492 **/
493void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
494{
495 struct rtnl_link_stats64 *ns;
496 int i;
497
498 if (!vsi)
499 return;
500
501 ns = i40e_get_vsi_stats_struct(vsi);
502 memset(ns, 0, sizeof(*ns));
503 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
504 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
505 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000506 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000507 for (i = 0; i < vsi->num_queue_pairs; i++) {
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400508 memset(&vsi->rx_rings[i]->stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000509 sizeof(vsi->rx_rings[i]->stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400510 memset(&vsi->rx_rings[i]->rx_stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000511 sizeof(vsi->rx_rings[i]->rx_stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400512 memset(&vsi->tx_rings[i]->stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000513 sizeof(vsi->tx_rings[i]->stats));
514 memset(&vsi->tx_rings[i]->tx_stats, 0,
515 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000516 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000517 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000518 vsi->stat_offsets_loaded = false;
519}
520
521/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +0000522 * i40e_pf_reset_stats - Reset all of the stats for the given PF
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000523 * @pf: the PF to be reset
524 **/
525void i40e_pf_reset_stats(struct i40e_pf *pf)
526{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000527 int i;
528
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000529 memset(&pf->stats, 0, sizeof(pf->stats));
530 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
531 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000532
533 for (i = 0; i < I40E_MAX_VEB; i++) {
534 if (pf->veb[i]) {
535 memset(&pf->veb[i]->stats, 0,
536 sizeof(pf->veb[i]->stats));
537 memset(&pf->veb[i]->stats_offsets, 0,
538 sizeof(pf->veb[i]->stats_offsets));
539 pf->veb[i]->stat_offsets_loaded = false;
540 }
541 }
Catherine Sullivan42bce042016-07-27 12:02:32 -0700542 pf->hw_csum_rx_error = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000543}
544
545/**
546 * i40e_stat_update48 - read and update a 48 bit stat from the chip
547 * @hw: ptr to the hardware info
548 * @hireg: the high 32 bit reg to read
549 * @loreg: the low 32 bit reg to read
550 * @offset_loaded: has the initial offset been loaded yet
551 * @offset: ptr to current offset value
552 * @stat: ptr to the stat
553 *
554 * Since the device stats are not reset at PFReset, they likely will not
555 * be zeroed when the driver starts. We'll save the first values read
556 * and use them as offsets to be subtracted from the raw values in order
557 * to report stats that count from zero. In the process, we also manage
558 * the potential roll-over.
559 **/
560static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
561 bool offset_loaded, u64 *offset, u64 *stat)
562{
563 u64 new_data;
564
Shannon Nelsonab600852014-01-17 15:36:39 -0800565 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000566 new_data = rd32(hw, loreg);
567 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
568 } else {
569 new_data = rd64(hw, loreg);
570 }
571 if (!offset_loaded)
572 *offset = new_data;
573 if (likely(new_data >= *offset))
574 *stat = new_data - *offset;
575 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400576 *stat = (new_data + BIT_ULL(48)) - *offset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000577 *stat &= 0xFFFFFFFFFFFFULL;
578}
579
580/**
581 * i40e_stat_update32 - read and update a 32 bit stat from the chip
582 * @hw: ptr to the hardware info
583 * @reg: the hw reg to read
584 * @offset_loaded: has the initial offset been loaded yet
585 * @offset: ptr to current offset value
586 * @stat: ptr to the stat
587 **/
588static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
589 bool offset_loaded, u64 *offset, u64 *stat)
590{
591 u32 new_data;
592
593 new_data = rd32(hw, reg);
594 if (!offset_loaded)
595 *offset = new_data;
596 if (likely(new_data >= *offset))
597 *stat = (u32)(new_data - *offset);
598 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400599 *stat = (u32)((new_data + BIT_ULL(32)) - *offset);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000600}
601
602/**
Mariusz Stachura0dc86922017-07-14 09:27:00 -0400603 * i40e_stat_update_and_clear32 - read and clear hw reg, update a 32 bit stat
604 * @hw: ptr to the hardware info
605 * @reg: the hw reg to read and clear
606 * @stat: ptr to the stat
607 **/
608static void i40e_stat_update_and_clear32(struct i40e_hw *hw, u32 reg, u64 *stat)
609{
610 u32 new_data = rd32(hw, reg);
611
612 wr32(hw, reg, 1); /* must write a nonzero value to clear register */
613 *stat += new_data;
614}
615
616/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000617 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
618 * @vsi: the VSI to be updated
619 **/
620void i40e_update_eth_stats(struct i40e_vsi *vsi)
621{
622 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
623 struct i40e_pf *pf = vsi->back;
624 struct i40e_hw *hw = &pf->hw;
625 struct i40e_eth_stats *oes;
626 struct i40e_eth_stats *es; /* device's eth stats */
627
628 es = &vsi->eth_stats;
629 oes = &vsi->eth_stats_offsets;
630
631 /* Gather up the stats that the hw collects */
632 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
633 vsi->stat_offsets_loaded,
634 &oes->tx_errors, &es->tx_errors);
635 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
636 vsi->stat_offsets_loaded,
637 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000638 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
639 vsi->stat_offsets_loaded,
640 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
641 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
642 vsi->stat_offsets_loaded,
643 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000644
645 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
646 I40E_GLV_GORCL(stat_idx),
647 vsi->stat_offsets_loaded,
648 &oes->rx_bytes, &es->rx_bytes);
649 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
650 I40E_GLV_UPRCL(stat_idx),
651 vsi->stat_offsets_loaded,
652 &oes->rx_unicast, &es->rx_unicast);
653 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
654 I40E_GLV_MPRCL(stat_idx),
655 vsi->stat_offsets_loaded,
656 &oes->rx_multicast, &es->rx_multicast);
657 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
658 I40E_GLV_BPRCL(stat_idx),
659 vsi->stat_offsets_loaded,
660 &oes->rx_broadcast, &es->rx_broadcast);
661
662 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
663 I40E_GLV_GOTCL(stat_idx),
664 vsi->stat_offsets_loaded,
665 &oes->tx_bytes, &es->tx_bytes);
666 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
667 I40E_GLV_UPTCL(stat_idx),
668 vsi->stat_offsets_loaded,
669 &oes->tx_unicast, &es->tx_unicast);
670 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
671 I40E_GLV_MPTCL(stat_idx),
672 vsi->stat_offsets_loaded,
673 &oes->tx_multicast, &es->tx_multicast);
674 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
675 I40E_GLV_BPTCL(stat_idx),
676 vsi->stat_offsets_loaded,
677 &oes->tx_broadcast, &es->tx_broadcast);
678 vsi->stat_offsets_loaded = true;
679}
680
681/**
682 * i40e_update_veb_stats - Update Switch component statistics
683 * @veb: the VEB being updated
684 **/
685static void i40e_update_veb_stats(struct i40e_veb *veb)
686{
687 struct i40e_pf *pf = veb->pf;
688 struct i40e_hw *hw = &pf->hw;
689 struct i40e_eth_stats *oes;
690 struct i40e_eth_stats *es; /* device's eth stats */
Neerav Parikhfe860af2015-07-10 19:36:02 -0400691 struct i40e_veb_tc_stats *veb_oes;
692 struct i40e_veb_tc_stats *veb_es;
693 int i, idx = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000694
695 idx = veb->stats_idx;
696 es = &veb->stats;
697 oes = &veb->stats_offsets;
Neerav Parikhfe860af2015-07-10 19:36:02 -0400698 veb_es = &veb->tc_stats;
699 veb_oes = &veb->tc_stats_offsets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000700
701 /* Gather up the stats that the hw collects */
702 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
703 veb->stat_offsets_loaded,
704 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000705 if (hw->revision_id > 0)
706 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
707 veb->stat_offsets_loaded,
708 &oes->rx_unknown_protocol,
709 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000710 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
711 veb->stat_offsets_loaded,
712 &oes->rx_bytes, &es->rx_bytes);
713 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
714 veb->stat_offsets_loaded,
715 &oes->rx_unicast, &es->rx_unicast);
716 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
717 veb->stat_offsets_loaded,
718 &oes->rx_multicast, &es->rx_multicast);
719 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
720 veb->stat_offsets_loaded,
721 &oes->rx_broadcast, &es->rx_broadcast);
722
723 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
724 veb->stat_offsets_loaded,
725 &oes->tx_bytes, &es->tx_bytes);
726 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
727 veb->stat_offsets_loaded,
728 &oes->tx_unicast, &es->tx_unicast);
729 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
730 veb->stat_offsets_loaded,
731 &oes->tx_multicast, &es->tx_multicast);
732 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
733 veb->stat_offsets_loaded,
734 &oes->tx_broadcast, &es->tx_broadcast);
Neerav Parikhfe860af2015-07-10 19:36:02 -0400735 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
736 i40e_stat_update48(hw, I40E_GLVEBTC_RPCH(i, idx),
737 I40E_GLVEBTC_RPCL(i, idx),
738 veb->stat_offsets_loaded,
739 &veb_oes->tc_rx_packets[i],
740 &veb_es->tc_rx_packets[i]);
741 i40e_stat_update48(hw, I40E_GLVEBTC_RBCH(i, idx),
742 I40E_GLVEBTC_RBCL(i, idx),
743 veb->stat_offsets_loaded,
744 &veb_oes->tc_rx_bytes[i],
745 &veb_es->tc_rx_bytes[i]);
746 i40e_stat_update48(hw, I40E_GLVEBTC_TPCH(i, idx),
747 I40E_GLVEBTC_TPCL(i, idx),
748 veb->stat_offsets_loaded,
749 &veb_oes->tc_tx_packets[i],
750 &veb_es->tc_tx_packets[i]);
751 i40e_stat_update48(hw, I40E_GLVEBTC_TBCH(i, idx),
752 I40E_GLVEBTC_TBCL(i, idx),
753 veb->stat_offsets_loaded,
754 &veb_oes->tc_tx_bytes[i],
755 &veb_es->tc_tx_bytes[i]);
756 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000757 veb->stat_offsets_loaded = true;
758}
759
760/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000761 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000762 * @vsi: the VSI to be updated
763 *
764 * There are a few instances where we store the same stat in a
765 * couple of different structs. This is partly because we have
766 * the netdev stats that need to be filled out, which is slightly
767 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000768 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000769 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000770static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000771{
772 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000773 struct rtnl_link_stats64 *ons;
774 struct rtnl_link_stats64 *ns; /* netdev stats */
775 struct i40e_eth_stats *oes;
776 struct i40e_eth_stats *es; /* device's eth stats */
777 u32 tx_restart, tx_busy;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000778 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000779 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000780 u64 bytes, packets;
781 unsigned int start;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400782 u64 tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400783 u64 tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000784 u64 rx_p, rx_b;
785 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000786 u16 q;
787
Jacob Keller0da36b92017-04-19 09:25:55 -0400788 if (test_bit(__I40E_VSI_DOWN, vsi->state) ||
789 test_bit(__I40E_CONFIG_BUSY, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000790 return;
791
792 ns = i40e_get_vsi_stats_struct(vsi);
793 ons = &vsi->net_stats_offsets;
794 es = &vsi->eth_stats;
795 oes = &vsi->eth_stats_offsets;
796
797 /* Gather up the netdev and vsi stats that the driver collects
798 * on the fly during packet processing
799 */
800 rx_b = rx_p = 0;
801 tx_b = tx_p = 0;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400802 tx_restart = tx_busy = tx_linearize = tx_force_wb = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000803 rx_page = 0;
804 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000805 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000806 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000807 /* locate Tx ring */
808 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000809
Alexander Duyck980e9b12013-09-28 06:01:03 +0000810 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700811 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000812 packets = p->stats.packets;
813 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700814 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000815 tx_b += bytes;
816 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000817 tx_restart += p->tx_stats.restart_queue;
818 tx_busy += p->tx_stats.tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400819 tx_linearize += p->tx_stats.tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400820 tx_force_wb += p->tx_stats.tx_force_wb;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000821
822 /* Rx queue is part of the same block as Tx queue */
823 p = &p[1];
824 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700825 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000826 packets = p->stats.packets;
827 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700828 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000829 rx_b += bytes;
830 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000831 rx_buf += p->rx_stats.alloc_buff_failed;
832 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000833 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000834 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000835 vsi->tx_restart = tx_restart;
836 vsi->tx_busy = tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400837 vsi->tx_linearize = tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400838 vsi->tx_force_wb = tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000839 vsi->rx_page_failed = rx_page;
840 vsi->rx_buf_failed = rx_buf;
841
842 ns->rx_packets = rx_p;
843 ns->rx_bytes = rx_b;
844 ns->tx_packets = tx_p;
845 ns->tx_bytes = tx_b;
846
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000847 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000848 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000849 ons->tx_errors = oes->tx_errors;
850 ns->tx_errors = es->tx_errors;
851 ons->multicast = oes->rx_multicast;
852 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000853 ons->rx_dropped = oes->rx_discards;
854 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000855 ons->tx_dropped = oes->tx_discards;
856 ns->tx_dropped = es->tx_discards;
857
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000858 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000859 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000860 ns->rx_crc_errors = pf->stats.crc_errors;
861 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
862 ns->rx_length_errors = pf->stats.rx_length_errors;
863 }
864}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000865
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000866/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +0000867 * i40e_update_pf_stats - Update the PF statistics counters.
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000868 * @pf: the PF to be updated
869 **/
870static void i40e_update_pf_stats(struct i40e_pf *pf)
871{
872 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
873 struct i40e_hw_port_stats *nsd = &pf->stats;
874 struct i40e_hw *hw = &pf->hw;
875 u32 val;
876 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000877
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000878 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
879 I40E_GLPRT_GORCL(hw->port),
880 pf->stat_offsets_loaded,
881 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
882 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
883 I40E_GLPRT_GOTCL(hw->port),
884 pf->stat_offsets_loaded,
885 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
886 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
887 pf->stat_offsets_loaded,
888 &osd->eth.rx_discards,
889 &nsd->eth.rx_discards);
Shannon Nelson532d2832014-04-23 04:50:09 +0000890 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
891 I40E_GLPRT_UPRCL(hw->port),
892 pf->stat_offsets_loaded,
893 &osd->eth.rx_unicast,
894 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000895 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
896 I40E_GLPRT_MPRCL(hw->port),
897 pf->stat_offsets_loaded,
898 &osd->eth.rx_multicast,
899 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000900 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
901 I40E_GLPRT_BPRCL(hw->port),
902 pf->stat_offsets_loaded,
903 &osd->eth.rx_broadcast,
904 &nsd->eth.rx_broadcast);
905 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
906 I40E_GLPRT_UPTCL(hw->port),
907 pf->stat_offsets_loaded,
908 &osd->eth.tx_unicast,
909 &nsd->eth.tx_unicast);
910 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
911 I40E_GLPRT_MPTCL(hw->port),
912 pf->stat_offsets_loaded,
913 &osd->eth.tx_multicast,
914 &nsd->eth.tx_multicast);
915 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
916 I40E_GLPRT_BPTCL(hw->port),
917 pf->stat_offsets_loaded,
918 &osd->eth.tx_broadcast,
919 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000920
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000921 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
922 pf->stat_offsets_loaded,
923 &osd->tx_dropped_link_down,
924 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000925
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000926 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
927 pf->stat_offsets_loaded,
928 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000929
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000930 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
931 pf->stat_offsets_loaded,
932 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000933
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000934 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
935 pf->stat_offsets_loaded,
936 &osd->mac_local_faults,
937 &nsd->mac_local_faults);
938 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
939 pf->stat_offsets_loaded,
940 &osd->mac_remote_faults,
941 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000942
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000943 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
944 pf->stat_offsets_loaded,
945 &osd->rx_length_errors,
946 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000947
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000948 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
949 pf->stat_offsets_loaded,
950 &osd->link_xon_rx, &nsd->link_xon_rx);
951 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
952 pf->stat_offsets_loaded,
953 &osd->link_xon_tx, &nsd->link_xon_tx);
Neerav Parikh95db2392015-11-06 15:26:09 -0800954 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
955 pf->stat_offsets_loaded,
956 &osd->link_xoff_rx, &nsd->link_xoff_rx);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000957 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
958 pf->stat_offsets_loaded,
959 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000960
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000961 for (i = 0; i < 8; i++) {
Neerav Parikh95db2392015-11-06 15:26:09 -0800962 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
963 pf->stat_offsets_loaded,
964 &osd->priority_xoff_rx[i],
965 &nsd->priority_xoff_rx[i]);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000966 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000967 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000968 &osd->priority_xon_rx[i],
969 &nsd->priority_xon_rx[i]);
970 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000971 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000972 &osd->priority_xon_tx[i],
973 &nsd->priority_xon_tx[i]);
974 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000975 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000976 &osd->priority_xoff_tx[i],
977 &nsd->priority_xoff_tx[i]);
978 i40e_stat_update32(hw,
979 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000980 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000981 &osd->priority_xon_2_xoff[i],
982 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000983 }
984
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000985 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
986 I40E_GLPRT_PRC64L(hw->port),
987 pf->stat_offsets_loaded,
988 &osd->rx_size_64, &nsd->rx_size_64);
989 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
990 I40E_GLPRT_PRC127L(hw->port),
991 pf->stat_offsets_loaded,
992 &osd->rx_size_127, &nsd->rx_size_127);
993 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
994 I40E_GLPRT_PRC255L(hw->port),
995 pf->stat_offsets_loaded,
996 &osd->rx_size_255, &nsd->rx_size_255);
997 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
998 I40E_GLPRT_PRC511L(hw->port),
999 pf->stat_offsets_loaded,
1000 &osd->rx_size_511, &nsd->rx_size_511);
1001 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1002 I40E_GLPRT_PRC1023L(hw->port),
1003 pf->stat_offsets_loaded,
1004 &osd->rx_size_1023, &nsd->rx_size_1023);
1005 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1006 I40E_GLPRT_PRC1522L(hw->port),
1007 pf->stat_offsets_loaded,
1008 &osd->rx_size_1522, &nsd->rx_size_1522);
1009 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1010 I40E_GLPRT_PRC9522L(hw->port),
1011 pf->stat_offsets_loaded,
1012 &osd->rx_size_big, &nsd->rx_size_big);
1013
1014 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1015 I40E_GLPRT_PTC64L(hw->port),
1016 pf->stat_offsets_loaded,
1017 &osd->tx_size_64, &nsd->tx_size_64);
1018 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1019 I40E_GLPRT_PTC127L(hw->port),
1020 pf->stat_offsets_loaded,
1021 &osd->tx_size_127, &nsd->tx_size_127);
1022 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1023 I40E_GLPRT_PTC255L(hw->port),
1024 pf->stat_offsets_loaded,
1025 &osd->tx_size_255, &nsd->tx_size_255);
1026 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1027 I40E_GLPRT_PTC511L(hw->port),
1028 pf->stat_offsets_loaded,
1029 &osd->tx_size_511, &nsd->tx_size_511);
1030 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1031 I40E_GLPRT_PTC1023L(hw->port),
1032 pf->stat_offsets_loaded,
1033 &osd->tx_size_1023, &nsd->tx_size_1023);
1034 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1035 I40E_GLPRT_PTC1522L(hw->port),
1036 pf->stat_offsets_loaded,
1037 &osd->tx_size_1522, &nsd->tx_size_1522);
1038 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1039 I40E_GLPRT_PTC9522L(hw->port),
1040 pf->stat_offsets_loaded,
1041 &osd->tx_size_big, &nsd->tx_size_big);
1042
1043 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1044 pf->stat_offsets_loaded,
1045 &osd->rx_undersize, &nsd->rx_undersize);
1046 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1047 pf->stat_offsets_loaded,
1048 &osd->rx_fragments, &nsd->rx_fragments);
1049 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1050 pf->stat_offsets_loaded,
1051 &osd->rx_oversize, &nsd->rx_oversize);
1052 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1053 pf->stat_offsets_loaded,
1054 &osd->rx_jabber, &nsd->rx_jabber);
1055
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001056 /* FDIR stats */
Mariusz Stachura0dc86922017-07-14 09:27:00 -04001057 i40e_stat_update_and_clear32(hw,
1058 I40E_GLQF_PCNT(I40E_FD_ATR_STAT_IDX(hw->pf_id)),
1059 &nsd->fd_atr_match);
1060 i40e_stat_update_and_clear32(hw,
1061 I40E_GLQF_PCNT(I40E_FD_SB_STAT_IDX(hw->pf_id)),
1062 &nsd->fd_sb_match);
1063 i40e_stat_update_and_clear32(hw,
1064 I40E_GLQF_PCNT(I40E_FD_ATR_TUNNEL_STAT_IDX(hw->pf_id)),
1065 &nsd->fd_atr_tunnel_match);
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001066
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001067 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1068 nsd->tx_lpi_status =
1069 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1070 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1071 nsd->rx_lpi_status =
1072 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1073 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1074 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1075 pf->stat_offsets_loaded,
1076 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1077 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1078 pf->stat_offsets_loaded,
1079 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1080
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001081 if (pf->flags & I40E_FLAG_FD_SB_ENABLED &&
Jacob Keller47994c12017-04-19 09:25:57 -04001082 !(pf->flags & I40E_FLAG_FD_SB_AUTO_DISABLED))
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001083 nsd->fd_sb_status = true;
1084 else
1085 nsd->fd_sb_status = false;
1086
1087 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED &&
Jacob Keller47994c12017-04-19 09:25:57 -04001088 !(pf->flags & I40E_FLAG_FD_ATR_AUTO_DISABLED))
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001089 nsd->fd_atr_status = true;
1090 else
1091 nsd->fd_atr_status = false;
1092
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001093 pf->stat_offsets_loaded = true;
1094}
1095
1096/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001097 * i40e_update_stats - Update the various statistics counters.
1098 * @vsi: the VSI to be updated
1099 *
1100 * Update the various stats for this VSI and its related entities.
1101 **/
1102void i40e_update_stats(struct i40e_vsi *vsi)
1103{
1104 struct i40e_pf *pf = vsi->back;
1105
1106 if (vsi == pf->vsi[pf->lan_vsi])
1107 i40e_update_pf_stats(pf);
1108
1109 i40e_update_vsi_stats(vsi);
1110}
1111
1112/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001113 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1114 * @vsi: the VSI to be searched
1115 * @macaddr: the MAC address
1116 * @vlan: the vlan
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001117 *
1118 * Returns ptr to the filter object or NULL
1119 **/
1120static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
Jacob Keller6622f5c2016-10-05 09:30:32 -07001121 const u8 *macaddr, s16 vlan)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001122{
1123 struct i40e_mac_filter *f;
Jacob Keller278e7d02016-10-05 09:30:37 -07001124 u64 key;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001125
1126 if (!vsi || !macaddr)
1127 return NULL;
1128
Jacob Keller278e7d02016-10-05 09:30:37 -07001129 key = i40e_addr_to_hkey(macaddr);
1130 hash_for_each_possible(vsi->mac_filter_hash, f, hlist, key) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001131 if ((ether_addr_equal(macaddr, f->macaddr)) &&
Jacob Keller1bc87e82016-10-05 09:30:31 -07001132 (vlan == f->vlan))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001133 return f;
1134 }
1135 return NULL;
1136}
1137
1138/**
1139 * i40e_find_mac - Find a mac addr in the macvlan filters list
1140 * @vsi: the VSI to be searched
1141 * @macaddr: the MAC address we are searching for
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001142 *
1143 * Returns the first filter with the provided MAC address or NULL if
1144 * MAC address was not found
1145 **/
Jacob Keller6622f5c2016-10-05 09:30:32 -07001146struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, const u8 *macaddr)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001147{
1148 struct i40e_mac_filter *f;
Jacob Keller278e7d02016-10-05 09:30:37 -07001149 u64 key;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001150
1151 if (!vsi || !macaddr)
1152 return NULL;
1153
Jacob Keller278e7d02016-10-05 09:30:37 -07001154 key = i40e_addr_to_hkey(macaddr);
1155 hash_for_each_possible(vsi->mac_filter_hash, f, hlist, key) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07001156 if ((ether_addr_equal(macaddr, f->macaddr)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001157 return f;
1158 }
1159 return NULL;
1160}
1161
1162/**
1163 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1164 * @vsi: the VSI to be searched
1165 *
1166 * Returns true if VSI is in vlan mode or false otherwise
1167 **/
1168bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1169{
Jacob Kellercbebb852016-10-05 09:30:40 -07001170 /* If we have a PVID, always operate in VLAN mode */
1171 if (vsi->info.pvid)
1172 return true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001173
Jacob Kellercbebb852016-10-05 09:30:40 -07001174 /* We need to operate in VLAN mode whenever we have any filters with
1175 * a VLAN other than I40E_VLAN_ALL. We could check the table each
1176 * time, incurring search cost repeatedly. However, we can notice two
1177 * things:
1178 *
1179 * 1) the only place where we can gain a VLAN filter is in
1180 * i40e_add_filter.
1181 *
1182 * 2) the only place where filters are actually removed is in
Jacob Keller0b7c8b52016-10-25 16:08:52 -07001183 * i40e_sync_filters_subtask.
Jacob Kellercbebb852016-10-05 09:30:40 -07001184 *
1185 * Thus, we can simply use a boolean value, has_vlan_filters which we
1186 * will set to true when we add a VLAN filter in i40e_add_filter. Then
1187 * we have to perform the full search after deleting filters in
Jacob Keller0b7c8b52016-10-25 16:08:52 -07001188 * i40e_sync_filters_subtask, but we already have to search
Jacob Kellercbebb852016-10-05 09:30:40 -07001189 * filters here and can perform the check at the same time. This
1190 * results in avoiding embedding a loop for VLAN mode inside another
1191 * loop over all the filters, and should maintain correctness as noted
1192 * above.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001193 */
Jacob Kellercbebb852016-10-05 09:30:40 -07001194 return vsi->has_vlan_filter;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001195}
1196
1197/**
Jacob Keller489a3262016-11-11 12:39:31 -08001198 * i40e_correct_mac_vlan_filters - Correct non-VLAN filters if necessary
1199 * @vsi: the VSI to configure
1200 * @tmp_add_list: list of filters ready to be added
1201 * @tmp_del_list: list of filters ready to be deleted
1202 * @vlan_filters: the number of active VLAN filters
1203 *
1204 * Update VLAN=0 and VLAN=-1 (I40E_VLAN_ANY) filters properly so that they
1205 * behave as expected. If we have any active VLAN filters remaining or about
1206 * to be added then we need to update non-VLAN filters to be marked as VLAN=0
1207 * so that they only match against untagged traffic. If we no longer have any
1208 * active VLAN filters, we need to make all non-VLAN filters marked as VLAN=-1
1209 * so that they match against both tagged and untagged traffic. In this way,
1210 * we ensure that we correctly receive the desired traffic. This ensures that
1211 * when we have an active VLAN we will receive only untagged traffic and
1212 * traffic matching active VLANs. If we have no active VLANs then we will
1213 * operate in non-VLAN mode and receive all traffic, tagged or untagged.
1214 *
1215 * Finally, in a similar fashion, this function also corrects filters when
1216 * there is an active PVID assigned to this VSI.
1217 *
1218 * In case of memory allocation failure return -ENOMEM. Otherwise, return 0.
1219 *
1220 * This function is only expected to be called from within
1221 * i40e_sync_vsi_filters.
1222 *
1223 * NOTE: This function expects to be called while under the
1224 * mac_filter_hash_lock
1225 */
1226static int i40e_correct_mac_vlan_filters(struct i40e_vsi *vsi,
1227 struct hlist_head *tmp_add_list,
1228 struct hlist_head *tmp_del_list,
1229 int vlan_filters)
1230{
Jacob Keller5cb25902016-12-12 15:44:15 -08001231 s16 pvid = le16_to_cpu(vsi->info.pvid);
Jacob Keller489a3262016-11-11 12:39:31 -08001232 struct i40e_mac_filter *f, *add_head;
Jacob Keller671889e2016-12-02 12:33:00 -08001233 struct i40e_new_mac_filter *new;
Jacob Keller489a3262016-11-11 12:39:31 -08001234 struct hlist_node *h;
1235 int bkt, new_vlan;
1236
1237 /* To determine if a particular filter needs to be replaced we
1238 * have the three following conditions:
1239 *
1240 * a) if we have a PVID assigned, then all filters which are
1241 * not marked as VLAN=PVID must be replaced with filters that
1242 * are.
1243 * b) otherwise, if we have any active VLANS, all filters
1244 * which are marked as VLAN=-1 must be replaced with
1245 * filters marked as VLAN=0
1246 * c) finally, if we do not have any active VLANS, all filters
1247 * which are marked as VLAN=0 must be replaced with filters
1248 * marked as VLAN=-1
1249 */
1250
1251 /* Update the filters about to be added in place */
Jacob Keller671889e2016-12-02 12:33:00 -08001252 hlist_for_each_entry(new, tmp_add_list, hlist) {
Jacob Keller5cb25902016-12-12 15:44:15 -08001253 if (pvid && new->f->vlan != pvid)
1254 new->f->vlan = pvid;
Jacob Keller671889e2016-12-02 12:33:00 -08001255 else if (vlan_filters && new->f->vlan == I40E_VLAN_ANY)
1256 new->f->vlan = 0;
1257 else if (!vlan_filters && new->f->vlan == 0)
1258 new->f->vlan = I40E_VLAN_ANY;
Jacob Keller489a3262016-11-11 12:39:31 -08001259 }
1260
1261 /* Update the remaining active filters */
1262 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
1263 /* Combine the checks for whether a filter needs to be changed
1264 * and then determine the new VLAN inside the if block, in
1265 * order to avoid duplicating code for adding the new filter
1266 * then deleting the old filter.
1267 */
Jacob Keller5cb25902016-12-12 15:44:15 -08001268 if ((pvid && f->vlan != pvid) ||
Jacob Keller489a3262016-11-11 12:39:31 -08001269 (vlan_filters && f->vlan == I40E_VLAN_ANY) ||
1270 (!vlan_filters && f->vlan == 0)) {
1271 /* Determine the new vlan we will be adding */
Jacob Keller5cb25902016-12-12 15:44:15 -08001272 if (pvid)
1273 new_vlan = pvid;
Jacob Keller489a3262016-11-11 12:39:31 -08001274 else if (vlan_filters)
1275 new_vlan = 0;
1276 else
1277 new_vlan = I40E_VLAN_ANY;
1278
1279 /* Create the new filter */
1280 add_head = i40e_add_filter(vsi, f->macaddr, new_vlan);
1281 if (!add_head)
1282 return -ENOMEM;
1283
Jacob Keller671889e2016-12-02 12:33:00 -08001284 /* Create a temporary i40e_new_mac_filter */
1285 new = kzalloc(sizeof(*new), GFP_ATOMIC);
1286 if (!new)
1287 return -ENOMEM;
1288
1289 new->f = add_head;
1290 new->state = add_head->state;
1291
1292 /* Add the new filter to the tmp list */
1293 hlist_add_head(&new->hlist, tmp_add_list);
Jacob Keller489a3262016-11-11 12:39:31 -08001294
1295 /* Put the original filter into the delete list */
1296 f->state = I40E_FILTER_REMOVE;
1297 hash_del(&f->hlist);
1298 hlist_add_head(&f->hlist, tmp_del_list);
1299 }
1300 }
1301
1302 vsi->has_vlan_filter = !!vlan_filters;
1303
1304 return 0;
1305}
1306
1307/**
Jacob Keller1596b5d2016-11-08 13:05:15 -08001308 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1309 * @vsi: the PF Main VSI - inappropriate for any other VSI
1310 * @macaddr: the MAC address
1311 *
1312 * Remove whatever filter the firmware set up so the driver can manage
1313 * its own filtering intelligently.
1314 **/
1315static void i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
1316{
1317 struct i40e_aqc_remove_macvlan_element_data element;
1318 struct i40e_pf *pf = vsi->back;
1319
1320 /* Only appropriate for the PF main VSI */
1321 if (vsi->type != I40E_VSI_MAIN)
1322 return;
1323
1324 memset(&element, 0, sizeof(element));
1325 ether_addr_copy(element.mac_addr, macaddr);
1326 element.vlan_tag = 0;
1327 /* Ignore error returns, some firmware does it this way... */
1328 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1329 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1330
1331 memset(&element, 0, sizeof(element));
1332 ether_addr_copy(element.mac_addr, macaddr);
1333 element.vlan_tag = 0;
1334 /* ...and some firmware does it this way. */
1335 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1336 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1337 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1338}
1339
1340/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001341 * i40e_add_filter - Add a mac/vlan filter to the VSI
1342 * @vsi: the VSI to be searched
1343 * @macaddr: the MAC address
1344 * @vlan: the vlan
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001345 *
1346 * Returns ptr to the filter object or NULL when no memory available.
Kiran Patil21659032015-09-30 14:09:03 -04001347 *
Jacob Keller278e7d02016-10-05 09:30:37 -07001348 * NOTE: This function is expected to be called with mac_filter_hash_lock
Kiran Patil21659032015-09-30 14:09:03 -04001349 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001350 **/
1351struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
Jacob Keller6622f5c2016-10-05 09:30:32 -07001352 const u8 *macaddr, s16 vlan)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001353{
1354 struct i40e_mac_filter *f;
Jacob Keller278e7d02016-10-05 09:30:37 -07001355 u64 key;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001356
1357 if (!vsi || !macaddr)
1358 return NULL;
1359
Jacob Keller1bc87e82016-10-05 09:30:31 -07001360 f = i40e_find_filter(vsi, macaddr, vlan);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001361 if (!f) {
1362 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1363 if (!f)
Jacob Keller1bc87e82016-10-05 09:30:31 -07001364 return NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001365
Jacob Kellercbebb852016-10-05 09:30:40 -07001366 /* Update the boolean indicating if we need to function in
1367 * VLAN mode.
1368 */
1369 if (vlan >= 0)
1370 vsi->has_vlan_filter = true;
1371
Greg Rose9a173902014-05-22 06:32:02 +00001372 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001373 f->vlan = vlan;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001374 /* If we're in overflow promisc mode, set the state directly
1375 * to failed, so we don't bother to try sending the filter
1376 * to the hardware.
1377 */
Jacob Keller0da36b92017-04-19 09:25:55 -04001378 if (test_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state))
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001379 f->state = I40E_FILTER_FAILED;
1380 else
1381 f->state = I40E_FILTER_NEW;
Jacob Keller278e7d02016-10-05 09:30:37 -07001382 INIT_HLIST_NODE(&f->hlist);
1383
1384 key = i40e_addr_to_hkey(macaddr);
1385 hash_add(vsi->mac_filter_hash, &f->hlist, key);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001386
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001387 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1388 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1389 }
1390
Jacob Keller1bc87e82016-10-05 09:30:31 -07001391 /* If we're asked to add a filter that has been marked for removal, it
1392 * is safe to simply restore it to active state. __i40e_del_filter
1393 * will have simply deleted any filters which were previously marked
1394 * NEW or FAILED, so if it is currently marked REMOVE it must have
1395 * previously been ACTIVE. Since we haven't yet run the sync filters
1396 * task, just restore this filter to the ACTIVE state so that the
1397 * sync task leaves it in place
1398 */
1399 if (f->state == I40E_FILTER_REMOVE)
1400 f->state = I40E_FILTER_ACTIVE;
1401
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001402 return f;
1403}
1404
1405/**
Jacob Keller290d2552016-10-05 09:30:36 -07001406 * __i40e_del_filter - Remove a specific filter from the VSI
1407 * @vsi: VSI to remove from
1408 * @f: the filter to remove from the list
1409 *
1410 * This function should be called instead of i40e_del_filter only if you know
1411 * the exact filter you will remove already, such as via i40e_find_filter or
1412 * i40e_find_mac.
Kiran Patil21659032015-09-30 14:09:03 -04001413 *
Jacob Keller278e7d02016-10-05 09:30:37 -07001414 * NOTE: This function is expected to be called with mac_filter_hash_lock
Kiran Patil21659032015-09-30 14:09:03 -04001415 * being held.
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001416 * ANOTHER NOTE: This function MUST be called from within the context of
1417 * the "safe" variants of any list iterators, e.g. list_for_each_entry_safe()
1418 * instead of list_for_each_entry().
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001419 **/
Jacob Keller148141b2016-11-11 12:39:36 -08001420void __i40e_del_filter(struct i40e_vsi *vsi, struct i40e_mac_filter *f)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001421{
Jacob Keller1bc87e82016-10-05 09:30:31 -07001422 if (!f)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001423 return;
1424
Alan Bradya410c822016-12-12 15:44:07 -08001425 /* If the filter was never added to firmware then we can just delete it
1426 * directly and we don't want to set the status to remove or else an
1427 * admin queue command will unnecessarily fire.
1428 */
Jacob Keller1bc87e82016-10-05 09:30:31 -07001429 if ((f->state == I40E_FILTER_FAILED) ||
1430 (f->state == I40E_FILTER_NEW)) {
Jacob Keller278e7d02016-10-05 09:30:37 -07001431 hash_del(&f->hlist);
Jacob Keller1bc87e82016-10-05 09:30:31 -07001432 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001433 } else {
Jacob Keller1bc87e82016-10-05 09:30:31 -07001434 f->state = I40E_FILTER_REMOVE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001435 }
Alan Bradya410c822016-12-12 15:44:07 -08001436
1437 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1438 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001439}
1440
1441/**
Jacob Keller290d2552016-10-05 09:30:36 -07001442 * i40e_del_filter - Remove a MAC/VLAN filter from the VSI
1443 * @vsi: the VSI to be searched
1444 * @macaddr: the MAC address
1445 * @vlan: the VLAN
1446 *
Jacob Keller278e7d02016-10-05 09:30:37 -07001447 * NOTE: This function is expected to be called with mac_filter_hash_lock
Jacob Keller290d2552016-10-05 09:30:36 -07001448 * being held.
1449 * ANOTHER NOTE: This function MUST be called from within the context of
1450 * the "safe" variants of any list iterators, e.g. list_for_each_entry_safe()
1451 * instead of list_for_each_entry().
1452 **/
1453void i40e_del_filter(struct i40e_vsi *vsi, const u8 *macaddr, s16 vlan)
1454{
1455 struct i40e_mac_filter *f;
1456
1457 if (!vsi || !macaddr)
1458 return;
1459
1460 f = i40e_find_filter(vsi, macaddr, vlan);
1461 __i40e_del_filter(vsi, f);
1462}
1463
1464/**
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001465 * i40e_add_mac_filter - Add a MAC filter for all active VLANs
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001466 * @vsi: the VSI to be searched
1467 * @macaddr: the mac address to be filtered
1468 *
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001469 * If we're not in VLAN mode, just add the filter to I40E_VLAN_ANY. Otherwise,
1470 * go through all the macvlan filters and add a macvlan filter for each
Jacob Keller5feb3d72016-10-05 09:30:34 -07001471 * unique vlan that already exists. If a PVID has been assigned, instead only
1472 * add the macaddr to that VLAN.
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001473 *
Jacob Keller5feb3d72016-10-05 09:30:34 -07001474 * Returns last filter added on success, else NULL
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001475 **/
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001476struct i40e_mac_filter *i40e_add_mac_filter(struct i40e_vsi *vsi,
1477 const u8 *macaddr)
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001478{
Jacob Keller5feb3d72016-10-05 09:30:34 -07001479 struct i40e_mac_filter *f, *add = NULL;
Jacob Keller278e7d02016-10-05 09:30:37 -07001480 struct hlist_node *h;
1481 int bkt;
Jacob Keller5feb3d72016-10-05 09:30:34 -07001482
1483 if (vsi->info.pvid)
1484 return i40e_add_filter(vsi, macaddr,
1485 le16_to_cpu(vsi->info.pvid));
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001486
Jacob Keller7aaf95362016-11-11 12:39:33 -08001487 if (!i40e_is_vsi_in_vlan(vsi))
1488 return i40e_add_filter(vsi, macaddr, I40E_VLAN_ANY);
1489
Jacob Keller278e7d02016-10-05 09:30:37 -07001490 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Jacob Keller57b341d2016-10-05 09:30:35 -07001491 if (f->state == I40E_FILTER_REMOVE)
1492 continue;
Jacob Keller5feb3d72016-10-05 09:30:34 -07001493 add = i40e_add_filter(vsi, macaddr, f->vlan);
1494 if (!add)
1495 return NULL;
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001496 }
1497
Jacob Keller5feb3d72016-10-05 09:30:34 -07001498 return add;
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001499}
1500
1501/**
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001502 * i40e_del_mac_filter - Remove a MAC filter from all VLANs
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001503 * @vsi: the VSI to be searched
1504 * @macaddr: the mac address to be removed
1505 *
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001506 * Removes a given MAC address from a VSI regardless of what VLAN it has been
1507 * associated with.
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001508 *
1509 * Returns 0 for success, or error
1510 **/
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001511int i40e_del_mac_filter(struct i40e_vsi *vsi, const u8 *macaddr)
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001512{
Jacob Keller278e7d02016-10-05 09:30:37 -07001513 struct i40e_mac_filter *f;
1514 struct hlist_node *h;
Jacob Keller290d2552016-10-05 09:30:36 -07001515 bool found = false;
Jacob Keller278e7d02016-10-05 09:30:37 -07001516 int bkt;
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001517
Jacob Keller278e7d02016-10-05 09:30:37 -07001518 WARN(!spin_is_locked(&vsi->mac_filter_hash_lock),
1519 "Missing mac_filter_hash_lock\n");
1520 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Jacob Keller290d2552016-10-05 09:30:36 -07001521 if (ether_addr_equal(macaddr, f->macaddr)) {
1522 __i40e_del_filter(vsi, f);
1523 found = true;
1524 }
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001525 }
Jacob Keller290d2552016-10-05 09:30:36 -07001526
1527 if (found)
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001528 return 0;
Jacob Keller290d2552016-10-05 09:30:36 -07001529 else
1530 return -ENOENT;
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001531}
1532
1533/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001534 * i40e_set_mac - NDO callback to set mac address
1535 * @netdev: network interface device structure
1536 * @p: pointer to an address structure
1537 *
1538 * Returns 0 on success, negative on failure
1539 **/
1540static int i40e_set_mac(struct net_device *netdev, void *p)
1541{
1542 struct i40e_netdev_priv *np = netdev_priv(netdev);
1543 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001544 struct i40e_pf *pf = vsi->back;
1545 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001546 struct sockaddr *addr = p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001547
1548 if (!is_valid_ether_addr(addr->sa_data))
1549 return -EADDRNOTAVAIL;
1550
Shannon Nelson30650cc2014-07-29 04:01:50 +00001551 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1552 netdev_info(netdev, "already using mac address %pM\n",
1553 addr->sa_data);
1554 return 0;
1555 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001556
Jacob Keller0da36b92017-04-19 09:25:55 -04001557 if (test_bit(__I40E_VSI_DOWN, vsi->back->state) ||
1558 test_bit(__I40E_RESET_RECOVERY_PENDING, vsi->back->state))
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001559 return -EADDRNOTAVAIL;
1560
Shannon Nelson30650cc2014-07-29 04:01:50 +00001561 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1562 netdev_info(netdev, "returning to hw mac address %pM\n",
1563 hw->mac.addr);
1564 else
1565 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1566
Jacob Keller278e7d02016-10-05 09:30:37 -07001567 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001568 i40e_del_mac_filter(vsi, netdev->dev_addr);
1569 i40e_add_mac_filter(vsi, addr->sa_data);
Jacob Keller278e7d02016-10-05 09:30:37 -07001570 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001571 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001572 if (vsi->type == I40E_VSI_MAIN) {
1573 i40e_status ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001574
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001575 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001576 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001577 addr->sa_data, NULL);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001578 if (ret)
1579 netdev_info(netdev, "Ignoring error from firmware on LAA update, status %s, AQ ret %s\n",
1580 i40e_stat_str(hw, ret),
1581 i40e_aq_str(hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001582 }
1583
Jesse Brandeburgc53934c2016-01-04 10:33:06 -08001584 /* schedule our worker thread which will take care of
1585 * applying the new filter changes
1586 */
1587 i40e_service_event_schedule(vsi->back);
1588 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001589}
1590
1591/**
1592 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1593 * @vsi: the VSI being setup
1594 * @ctxt: VSI context structure
1595 * @enabled_tc: Enabled TCs bitmap
1596 * @is_add: True if called before Add VSI
1597 *
1598 * Setup VSI queue mapping for enabled traffic classes.
1599 **/
1600static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1601 struct i40e_vsi_context *ctxt,
1602 u8 enabled_tc,
1603 bool is_add)
1604{
1605 struct i40e_pf *pf = vsi->back;
1606 u16 sections = 0;
1607 u8 netdev_tc = 0;
1608 u16 numtc = 0;
1609 u16 qcount;
1610 u8 offset;
1611 u16 qmap;
1612 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001613 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001614
1615 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1616 offset = 0;
1617
1618 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1619 /* Find numtc from enabled TC bitmap */
1620 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001621 if (enabled_tc & BIT(i)) /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001622 numtc++;
1623 }
1624 if (!numtc) {
1625 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1626 numtc = 1;
1627 }
1628 } else {
1629 /* At least TC0 is enabled in case of non-DCB case */
1630 numtc = 1;
1631 }
1632
1633 vsi->tc_config.numtc = numtc;
1634 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001635 /* Number of queues per enabled TC */
Catherine Sullivan7d644022016-05-16 10:26:41 -07001636 qcount = vsi->alloc_queue_pairs;
1637
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001638 num_tc_qps = qcount / numtc;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001639 num_tc_qps = min_t(int, num_tc_qps, i40e_pf_get_max_q_per_tc(pf));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001640
1641 /* Setup queue offset/count for all TCs for given VSI */
1642 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1643 /* See if the given TC is enabled for the given VSI */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001644 if (vsi->tc_config.enabled_tc & BIT(i)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001645 /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001646 int pow, num_qps;
1647
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001648 switch (vsi->type) {
1649 case I40E_VSI_MAIN:
Helin Zhangacd65442015-10-26 19:44:28 -04001650 qcount = min_t(int, pf->alloc_rss_size,
1651 num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001652 break;
1653 case I40E_VSI_FDIR:
1654 case I40E_VSI_SRIOV:
1655 case I40E_VSI_VMDQ2:
1656 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001657 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001658 WARN_ON(i != 0);
1659 break;
1660 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001661 vsi->tc_config.tc_info[i].qoffset = offset;
1662 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001663
Shannon Nelson1e200e42015-02-27 09:15:24 +00001664 /* find the next higher power-of-2 of num queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001665 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001666 pow = 0;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001667 while (num_qps && (BIT_ULL(pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001668 pow++;
1669 num_qps >>= 1;
1670 }
1671
1672 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1673 qmap =
1674 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1675 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1676
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001677 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001678 } else {
1679 /* TC is not enabled so set the offset to
1680 * default queue and allocate one queue
1681 * for the given TC.
1682 */
1683 vsi->tc_config.tc_info[i].qoffset = 0;
1684 vsi->tc_config.tc_info[i].qcount = 1;
1685 vsi->tc_config.tc_info[i].netdev_tc = 0;
1686
1687 qmap = 0;
1688 }
1689 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1690 }
1691
1692 /* Set actual Tx/Rx queue pairs */
1693 vsi->num_queue_pairs = offset;
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001694 if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) {
1695 if (vsi->req_queue_pairs > 0)
1696 vsi->num_queue_pairs = vsi->req_queue_pairs;
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001697 else if (pf->flags & I40E_FLAG_MSIX_ENABLED)
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001698 vsi->num_queue_pairs = pf->num_lan_msix;
1699 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001700
1701 /* Scheduler section valid can only be set for ADD VSI */
1702 if (is_add) {
1703 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1704
1705 ctxt->info.up_enable_bits = enabled_tc;
1706 }
1707 if (vsi->type == I40E_VSI_SRIOV) {
1708 ctxt->info.mapping_flags |=
1709 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1710 for (i = 0; i < vsi->num_queue_pairs; i++)
1711 ctxt->info.queue_mapping[i] =
1712 cpu_to_le16(vsi->base_queue + i);
1713 } else {
1714 ctxt->info.mapping_flags |=
1715 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1716 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1717 }
1718 ctxt->info.valid_sections |= cpu_to_le16(sections);
1719}
1720
1721/**
Jacob Keller6622f5c2016-10-05 09:30:32 -07001722 * i40e_addr_sync - Callback for dev_(mc|uc)_sync to add address
1723 * @netdev: the netdevice
1724 * @addr: address to add
1725 *
1726 * Called by __dev_(mc|uc)_sync when an address needs to be added. We call
1727 * __dev_(uc|mc)_sync from .set_rx_mode and guarantee to hold the hash lock.
1728 */
1729static int i40e_addr_sync(struct net_device *netdev, const u8 *addr)
1730{
1731 struct i40e_netdev_priv *np = netdev_priv(netdev);
1732 struct i40e_vsi *vsi = np->vsi;
Jacob Keller6622f5c2016-10-05 09:30:32 -07001733
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001734 if (i40e_add_mac_filter(vsi, addr))
Jacob Keller6622f5c2016-10-05 09:30:32 -07001735 return 0;
1736 else
1737 return -ENOMEM;
1738}
1739
1740/**
1741 * i40e_addr_unsync - Callback for dev_(mc|uc)_sync to remove address
1742 * @netdev: the netdevice
1743 * @addr: address to add
1744 *
1745 * Called by __dev_(mc|uc)_sync when an address needs to be removed. We call
1746 * __dev_(uc|mc)_sync from .set_rx_mode and guarantee to hold the hash lock.
1747 */
1748static int i40e_addr_unsync(struct net_device *netdev, const u8 *addr)
1749{
1750 struct i40e_netdev_priv *np = netdev_priv(netdev);
1751 struct i40e_vsi *vsi = np->vsi;
1752
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001753 i40e_del_mac_filter(vsi, addr);
Jacob Keller6622f5c2016-10-05 09:30:32 -07001754
1755 return 0;
1756}
1757
1758/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001759 * i40e_set_rx_mode - NDO callback to set the netdev filters
1760 * @netdev: network interface device structure
1761 **/
1762static void i40e_set_rx_mode(struct net_device *netdev)
1763{
1764 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001765 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001766
Jacob Keller278e7d02016-10-05 09:30:37 -07001767 spin_lock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -04001768
Jacob Keller6622f5c2016-10-05 09:30:32 -07001769 __dev_uc_sync(netdev, i40e_addr_sync, i40e_addr_unsync);
1770 __dev_mc_sync(netdev, i40e_addr_sync, i40e_addr_unsync);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001771
Jacob Keller278e7d02016-10-05 09:30:37 -07001772 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001773
1774 /* check for other flag changes */
1775 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1776 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1777 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1778 }
1779}
1780
1781/**
Jacob Keller671889e2016-12-02 12:33:00 -08001782 * i40e_undo_del_filter_entries - Undo the changes made to MAC filter entries
Jacob Keller4a2ce272016-10-05 09:30:38 -07001783 * @vsi: Pointer to VSI struct
Kiran Patil21659032015-09-30 14:09:03 -04001784 * @from: Pointer to list which contains MAC filter entries - changes to
1785 * those entries needs to be undone.
1786 *
Jacob Keller671889e2016-12-02 12:33:00 -08001787 * MAC filter entries from this list were slated for deletion.
Kiran Patil21659032015-09-30 14:09:03 -04001788 **/
Jacob Keller671889e2016-12-02 12:33:00 -08001789static void i40e_undo_del_filter_entries(struct i40e_vsi *vsi,
1790 struct hlist_head *from)
Kiran Patil21659032015-09-30 14:09:03 -04001791{
Jacob Keller278e7d02016-10-05 09:30:37 -07001792 struct i40e_mac_filter *f;
1793 struct hlist_node *h;
Kiran Patil21659032015-09-30 14:09:03 -04001794
Jacob Keller278e7d02016-10-05 09:30:37 -07001795 hlist_for_each_entry_safe(f, h, from, hlist) {
1796 u64 key = i40e_addr_to_hkey(f->macaddr);
1797
Kiran Patil21659032015-09-30 14:09:03 -04001798 /* Move the element back into MAC filter list*/
Jacob Keller278e7d02016-10-05 09:30:37 -07001799 hlist_del(&f->hlist);
1800 hash_add(vsi->mac_filter_hash, &f->hlist, key);
Kiran Patil21659032015-09-30 14:09:03 -04001801 }
1802}
1803
1804/**
Jacob Keller671889e2016-12-02 12:33:00 -08001805 * i40e_undo_add_filter_entries - Undo the changes made to MAC filter entries
1806 * @vsi: Pointer to vsi struct
1807 * @from: Pointer to list which contains MAC filter entries - changes to
1808 * those entries needs to be undone.
1809 *
1810 * MAC filter entries from this list were slated for addition.
1811 **/
1812static void i40e_undo_add_filter_entries(struct i40e_vsi *vsi,
1813 struct hlist_head *from)
1814{
1815 struct i40e_new_mac_filter *new;
1816 struct hlist_node *h;
1817
1818 hlist_for_each_entry_safe(new, h, from, hlist) {
1819 /* We can simply free the wrapper structure */
1820 hlist_del(&new->hlist);
1821 kfree(new);
1822 }
1823}
1824
1825/**
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001826 * i40e_next_entry - Get the next non-broadcast filter from a list
Jacob Keller671889e2016-12-02 12:33:00 -08001827 * @next: pointer to filter in list
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001828 *
1829 * Returns the next non-broadcast filter in the list. Required so that we
1830 * ignore broadcast filters within the list, since these are not handled via
1831 * the normal firmware update path.
1832 */
Jacob Keller671889e2016-12-02 12:33:00 -08001833static
1834struct i40e_new_mac_filter *i40e_next_filter(struct i40e_new_mac_filter *next)
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001835{
Jacob Keller584a8872017-03-07 15:17:52 -08001836 hlist_for_each_entry_continue(next, hlist) {
1837 if (!is_broadcast_ether_addr(next->f->macaddr))
1838 return next;
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001839 }
1840
Jacob Keller584a8872017-03-07 15:17:52 -08001841 return NULL;
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001842}
1843
1844/**
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001845 * i40e_update_filter_state - Update filter state based on return data
1846 * from firmware
1847 * @count: Number of filters added
1848 * @add_list: return data from fw
1849 * @head: pointer to first filter in current batch
Kiran Patil21659032015-09-30 14:09:03 -04001850 *
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001851 * MAC filter entries from list were slated to be added to device. Returns
1852 * number of successful filters. Note that 0 does NOT mean success!
Kiran Patil21659032015-09-30 14:09:03 -04001853 **/
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001854static int
1855i40e_update_filter_state(int count,
1856 struct i40e_aqc_add_macvlan_element_data *add_list,
Jacob Keller671889e2016-12-02 12:33:00 -08001857 struct i40e_new_mac_filter *add_head)
Kiran Patil21659032015-09-30 14:09:03 -04001858{
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001859 int retval = 0;
1860 int i;
Kiran Patil21659032015-09-30 14:09:03 -04001861
Jacob Kellerac9e2392016-11-11 12:39:27 -08001862 for (i = 0; i < count; i++) {
1863 /* Always check status of each filter. We don't need to check
1864 * the firmware return status because we pre-set the filter
1865 * status to I40E_AQC_MM_ERR_NO_RES when sending the filter
1866 * request to the adminq. Thus, if it no longer matches then
1867 * we know the filter is active.
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001868 */
Jacob Kellerac9e2392016-11-11 12:39:27 -08001869 if (add_list[i].match_method == I40E_AQC_MM_ERR_NO_RES) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001870 add_head->state = I40E_FILTER_FAILED;
Jacob Kellerac9e2392016-11-11 12:39:27 -08001871 } else {
1872 add_head->state = I40E_FILTER_ACTIVE;
1873 retval++;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001874 }
Jacob Kellerac9e2392016-11-11 12:39:27 -08001875
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001876 add_head = i40e_next_filter(add_head);
1877 if (!add_head)
1878 break;
Kiran Patil21659032015-09-30 14:09:03 -04001879 }
Jacob Kellerac9e2392016-11-11 12:39:27 -08001880
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001881 return retval;
Kiran Patil21659032015-09-30 14:09:03 -04001882}
1883
1884/**
Jacob Keller00936312016-10-05 09:30:41 -07001885 * i40e_aqc_del_filters - Request firmware to delete a set of filters
1886 * @vsi: ptr to the VSI
1887 * @vsi_name: name to display in messages
1888 * @list: the list of filters to send to firmware
1889 * @num_del: the number of filters to delete
1890 * @retval: Set to -EIO on failure to delete
1891 *
1892 * Send a request to firmware via AdminQ to delete a set of filters. Uses
1893 * *retval instead of a return value so that success does not force ret_val to
1894 * be set to 0. This ensures that a sequence of calls to this function
1895 * preserve the previous value of *retval on successful delete.
1896 */
1897static
1898void i40e_aqc_del_filters(struct i40e_vsi *vsi, const char *vsi_name,
1899 struct i40e_aqc_remove_macvlan_element_data *list,
1900 int num_del, int *retval)
1901{
1902 struct i40e_hw *hw = &vsi->back->hw;
1903 i40e_status aq_ret;
1904 int aq_err;
1905
1906 aq_ret = i40e_aq_remove_macvlan(hw, vsi->seid, list, num_del, NULL);
1907 aq_err = hw->aq.asq_last_status;
1908
1909 /* Explicitly ignore and do not report when firmware returns ENOENT */
1910 if (aq_ret && !(aq_err == I40E_AQ_RC_ENOENT)) {
1911 *retval = -EIO;
1912 dev_info(&vsi->back->pdev->dev,
1913 "ignoring delete macvlan error on %s, err %s, aq_err %s\n",
1914 vsi_name, i40e_stat_str(hw, aq_ret),
1915 i40e_aq_str(hw, aq_err));
1916 }
1917}
1918
1919/**
1920 * i40e_aqc_add_filters - Request firmware to add a set of filters
1921 * @vsi: ptr to the VSI
1922 * @vsi_name: name to display in messages
1923 * @list: the list of filters to send to firmware
1924 * @add_head: Position in the add hlist
1925 * @num_add: the number of filters to add
1926 * @promisc_change: set to true on exit if promiscuous mode was forced on
1927 *
1928 * Send a request to firmware via AdminQ to add a chunk of filters. Will set
1929 * promisc_changed to true if the firmware has run out of space for more
1930 * filters.
1931 */
1932static
1933void i40e_aqc_add_filters(struct i40e_vsi *vsi, const char *vsi_name,
1934 struct i40e_aqc_add_macvlan_element_data *list,
Jacob Keller671889e2016-12-02 12:33:00 -08001935 struct i40e_new_mac_filter *add_head,
Jacob Keller00936312016-10-05 09:30:41 -07001936 int num_add, bool *promisc_changed)
1937{
1938 struct i40e_hw *hw = &vsi->back->hw;
Jacob Keller00936312016-10-05 09:30:41 -07001939 int aq_err, fcnt;
1940
Jacob Kellerac9e2392016-11-11 12:39:27 -08001941 i40e_aq_add_macvlan(hw, vsi->seid, list, num_add, NULL);
Jacob Keller00936312016-10-05 09:30:41 -07001942 aq_err = hw->aq.asq_last_status;
Jacob Kellerac9e2392016-11-11 12:39:27 -08001943 fcnt = i40e_update_filter_state(num_add, list, add_head);
Jacob Keller00936312016-10-05 09:30:41 -07001944
1945 if (fcnt != num_add) {
1946 *promisc_changed = true;
Jacob Keller0da36b92017-04-19 09:25:55 -04001947 set_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state);
Jacob Keller00936312016-10-05 09:30:41 -07001948 dev_warn(&vsi->back->pdev->dev,
1949 "Error %s adding RX filters on %s, promiscuous mode forced on\n",
1950 i40e_aq_str(hw, aq_err),
1951 vsi_name);
1952 }
1953}
1954
1955/**
Jacob Keller435c0842016-11-08 13:05:10 -08001956 * i40e_aqc_broadcast_filter - Set promiscuous broadcast flags
1957 * @vsi: pointer to the VSI
1958 * @f: filter data
1959 *
1960 * This function sets or clears the promiscuous broadcast flags for VLAN
1961 * filters in order to properly receive broadcast frames. Assumes that only
1962 * broadcast filters are passed.
Jacob Keller671889e2016-12-02 12:33:00 -08001963 *
1964 * Returns status indicating success or failure;
Jacob Keller435c0842016-11-08 13:05:10 -08001965 **/
Jacob Keller671889e2016-12-02 12:33:00 -08001966static i40e_status
1967i40e_aqc_broadcast_filter(struct i40e_vsi *vsi, const char *vsi_name,
1968 struct i40e_mac_filter *f)
Jacob Keller435c0842016-11-08 13:05:10 -08001969{
1970 bool enable = f->state == I40E_FILTER_NEW;
1971 struct i40e_hw *hw = &vsi->back->hw;
1972 i40e_status aq_ret;
1973
1974 if (f->vlan == I40E_VLAN_ANY) {
1975 aq_ret = i40e_aq_set_vsi_broadcast(hw,
1976 vsi->seid,
1977 enable,
1978 NULL);
1979 } else {
1980 aq_ret = i40e_aq_set_vsi_bc_promisc_on_vlan(hw,
1981 vsi->seid,
1982 enable,
1983 f->vlan,
1984 NULL);
1985 }
1986
Jacob Keller671889e2016-12-02 12:33:00 -08001987 if (aq_ret)
Jacob Keller435c0842016-11-08 13:05:10 -08001988 dev_warn(&vsi->back->pdev->dev,
1989 "Error %s setting broadcast promiscuous mode on %s\n",
1990 i40e_aq_str(hw, hw->aq.asq_last_status),
1991 vsi_name);
Jacob Keller671889e2016-12-02 12:33:00 -08001992
1993 return aq_ret;
Jacob Keller435c0842016-11-08 13:05:10 -08001994}
1995
1996/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001997 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1998 * @vsi: ptr to the VSI
1999 *
2000 * Push any outstanding VSI filter changes through the AdminQ.
2001 *
2002 * Returns 0 or error value
2003 **/
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002004int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002005{
Jacob Keller278e7d02016-10-05 09:30:37 -07002006 struct hlist_head tmp_add_list, tmp_del_list;
Jacob Keller671889e2016-12-02 12:33:00 -08002007 struct i40e_mac_filter *f;
2008 struct i40e_new_mac_filter *new, *add_head = NULL;
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002009 struct i40e_hw *hw = &vsi->back->hw;
Jacob Keller38326212016-11-11 12:39:26 -08002010 unsigned int failed_filters = 0;
Alan Brady84f5ca62016-10-05 09:30:39 -07002011 unsigned int vlan_filters = 0;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002012 bool promisc_changed = false;
Shannon Nelson2d1de822016-05-16 10:26:44 -07002013 char vsi_name[16] = "PF";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002014 int filter_list_len = 0;
Mitch Williamsea02e902015-11-09 15:35:50 -08002015 i40e_status aq_ret = 0;
Alan Brady84f5ca62016-10-05 09:30:39 -07002016 u32 changed_flags = 0;
Jacob Keller278e7d02016-10-05 09:30:37 -07002017 struct hlist_node *h;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002018 struct i40e_pf *pf;
2019 int num_add = 0;
2020 int num_del = 0;
Alan Brady84f5ca62016-10-05 09:30:39 -07002021 int retval = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002022 u16 cmd_flags;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002023 int list_size;
Jacob Keller278e7d02016-10-05 09:30:37 -07002024 int bkt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002025
2026 /* empty array typed pointers, kcalloc later */
2027 struct i40e_aqc_add_macvlan_element_data *add_list;
2028 struct i40e_aqc_remove_macvlan_element_data *del_list;
2029
Jacob Keller0da36b92017-04-19 09:25:55 -04002030 while (test_and_set_bit(__I40E_VSI_SYNCING_FILTERS, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002031 usleep_range(1000, 2000);
2032 pf = vsi->back;
2033
2034 if (vsi->netdev) {
2035 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
2036 vsi->current_netdev_flags = vsi->netdev->flags;
2037 }
2038
Jacob Keller278e7d02016-10-05 09:30:37 -07002039 INIT_HLIST_HEAD(&tmp_add_list);
2040 INIT_HLIST_HEAD(&tmp_del_list);
Kiran Patil21659032015-09-30 14:09:03 -04002041
Shannon Nelson2d1de822016-05-16 10:26:44 -07002042 if (vsi->type == I40E_VSI_SRIOV)
2043 snprintf(vsi_name, sizeof(vsi_name) - 1, "VF %d", vsi->vf_id);
2044 else if (vsi->type != I40E_VSI_MAIN)
2045 snprintf(vsi_name, sizeof(vsi_name) - 1, "vsi %d", vsi->seid);
2046
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002047 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
2048 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
2049
Jacob Keller278e7d02016-10-05 09:30:37 -07002050 spin_lock_bh(&vsi->mac_filter_hash_lock);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002051 /* Create a list of filters to delete. */
Jacob Keller278e7d02016-10-05 09:30:37 -07002052 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002053 if (f->state == I40E_FILTER_REMOVE) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002054 /* Move the element into temporary del_list */
Jacob Keller278e7d02016-10-05 09:30:37 -07002055 hash_del(&f->hlist);
2056 hlist_add_head(&f->hlist, &tmp_del_list);
Alan Brady84f5ca62016-10-05 09:30:39 -07002057
2058 /* Avoid counting removed filters */
2059 continue;
Kiran Patil21659032015-09-30 14:09:03 -04002060 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002061 if (f->state == I40E_FILTER_NEW) {
Jacob Keller671889e2016-12-02 12:33:00 -08002062 /* Create a temporary i40e_new_mac_filter */
2063 new = kzalloc(sizeof(*new), GFP_ATOMIC);
2064 if (!new)
2065 goto err_no_memory_locked;
2066
2067 /* Store pointer to the real filter */
2068 new->f = f;
2069 new->state = f->state;
2070
2071 /* Add it to the hash list */
2072 hlist_add_head(&new->hlist, &tmp_add_list);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002073 }
Alan Brady84f5ca62016-10-05 09:30:39 -07002074
Jacob Keller489a3262016-11-11 12:39:31 -08002075 /* Count the number of active (current and new) VLAN
2076 * filters we have now. Does not count filters which
2077 * are marked for deletion.
Alan Brady84f5ca62016-10-05 09:30:39 -07002078 */
2079 if (f->vlan > 0)
2080 vlan_filters++;
Alan Brady84f5ca62016-10-05 09:30:39 -07002081 }
2082
Jacob Keller489a3262016-11-11 12:39:31 -08002083 retval = i40e_correct_mac_vlan_filters(vsi,
2084 &tmp_add_list,
2085 &tmp_del_list,
2086 vlan_filters);
2087 if (retval)
2088 goto err_no_memory_locked;
Alan Brady84f5ca62016-10-05 09:30:39 -07002089
Jacob Keller278e7d02016-10-05 09:30:37 -07002090 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -04002091 }
2092
2093 /* Now process 'del_list' outside the lock */
Jacob Keller278e7d02016-10-05 09:30:37 -07002094 if (!hlist_empty(&tmp_del_list)) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002095 filter_list_len = hw->aq.asq_buf_size /
Kiran Patil21659032015-09-30 14:09:03 -04002096 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002097 list_size = filter_list_len *
Shannon Nelsonf1199992015-11-19 11:34:23 -08002098 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002099 del_list = kzalloc(list_size, GFP_ATOMIC);
Jacob Keller4a2ce272016-10-05 09:30:38 -07002100 if (!del_list)
2101 goto err_no_memory;
Kiran Patil21659032015-09-30 14:09:03 -04002102
Jacob Keller278e7d02016-10-05 09:30:37 -07002103 hlist_for_each_entry_safe(f, h, &tmp_del_list, hlist) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002104 cmd_flags = 0;
2105
Jacob Keller435c0842016-11-08 13:05:10 -08002106 /* handle broadcast filters by updating the broadcast
Jacob Kellerd88d40b2016-12-02 12:32:59 -08002107 * promiscuous flag and release filter list.
Jacob Keller435c0842016-11-08 13:05:10 -08002108 */
2109 if (is_broadcast_ether_addr(f->macaddr)) {
2110 i40e_aqc_broadcast_filter(vsi, vsi_name, f);
2111
2112 hlist_del(&f->hlist);
2113 kfree(f);
2114 continue;
2115 }
2116
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002117 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00002118 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002119 if (f->vlan == I40E_VLAN_ANY) {
2120 del_list[num_del].vlan_tag = 0;
Alan Bradya6cb9142016-09-06 18:05:07 -07002121 cmd_flags |= I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002122 } else {
2123 del_list[num_del].vlan_tag =
2124 cpu_to_le16((u16)(f->vlan));
2125 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002126
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002127 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
2128 del_list[num_del].flags = cmd_flags;
2129 num_del++;
2130
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002131 /* flush a full buffer */
2132 if (num_del == filter_list_len) {
Jacob Keller00936312016-10-05 09:30:41 -07002133 i40e_aqc_del_filters(vsi, vsi_name, del_list,
2134 num_del, &retval);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002135 memset(del_list, 0, list_size);
Jacob Keller00936312016-10-05 09:30:41 -07002136 num_del = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002137 }
Kiran Patil21659032015-09-30 14:09:03 -04002138 /* Release memory for MAC filter entries which were
2139 * synced up with HW.
2140 */
Jacob Keller278e7d02016-10-05 09:30:37 -07002141 hlist_del(&f->hlist);
Kiran Patil21659032015-09-30 14:09:03 -04002142 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002143 }
Kiran Patil21659032015-09-30 14:09:03 -04002144
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002145 if (num_del) {
Jacob Keller00936312016-10-05 09:30:41 -07002146 i40e_aqc_del_filters(vsi, vsi_name, del_list,
2147 num_del, &retval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002148 }
2149
2150 kfree(del_list);
2151 del_list = NULL;
Kiran Patil21659032015-09-30 14:09:03 -04002152 }
2153
Jacob Keller278e7d02016-10-05 09:30:37 -07002154 if (!hlist_empty(&tmp_add_list)) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002155 /* Do all the adds now. */
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002156 filter_list_len = hw->aq.asq_buf_size /
Shannon Nelsonf1199992015-11-19 11:34:23 -08002157 sizeof(struct i40e_aqc_add_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002158 list_size = filter_list_len *
2159 sizeof(struct i40e_aqc_add_macvlan_element_data);
2160 add_list = kzalloc(list_size, GFP_ATOMIC);
Jacob Keller4a2ce272016-10-05 09:30:38 -07002161 if (!add_list)
2162 goto err_no_memory;
2163
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002164 num_add = 0;
Jacob Keller671889e2016-12-02 12:33:00 -08002165 hlist_for_each_entry_safe(new, h, &tmp_add_list, hlist) {
Jacob Kellerd19cb642017-04-21 13:38:05 -07002166 if (test_bit(__I40E_VSI_OVERFLOW_PROMISC,
Jacob Keller0da36b92017-04-19 09:25:55 -04002167 vsi->state)) {
Jacob Keller671889e2016-12-02 12:33:00 -08002168 new->state = I40E_FILTER_FAILED;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002169 continue;
2170 }
Jacob Keller435c0842016-11-08 13:05:10 -08002171
2172 /* handle broadcast filters by updating the broadcast
2173 * promiscuous flag instead of adding a MAC filter.
2174 */
Jacob Keller671889e2016-12-02 12:33:00 -08002175 if (is_broadcast_ether_addr(new->f->macaddr)) {
2176 if (i40e_aqc_broadcast_filter(vsi, vsi_name,
2177 new->f))
2178 new->state = I40E_FILTER_FAILED;
2179 else
2180 new->state = I40E_FILTER_ACTIVE;
Jacob Keller435c0842016-11-08 13:05:10 -08002181 continue;
2182 }
2183
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002184 /* add to add array */
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002185 if (num_add == 0)
Jacob Keller671889e2016-12-02 12:33:00 -08002186 add_head = new;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002187 cmd_flags = 0;
Jacob Keller671889e2016-12-02 12:33:00 -08002188 ether_addr_copy(add_list[num_add].mac_addr,
2189 new->f->macaddr);
2190 if (new->f->vlan == I40E_VLAN_ANY) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002191 add_list[num_add].vlan_tag = 0;
2192 cmd_flags |= I40E_AQC_MACVLAN_ADD_IGNORE_VLAN;
2193 } else {
2194 add_list[num_add].vlan_tag =
Jacob Keller671889e2016-12-02 12:33:00 -08002195 cpu_to_le16((u16)(new->f->vlan));
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002196 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002197 add_list[num_add].queue_number = 0;
Jacob Kellerac9e2392016-11-11 12:39:27 -08002198 /* set invalid match method for later detection */
Keller, Jacob E0266ac42016-12-09 13:39:21 -08002199 add_list[num_add].match_method = I40E_AQC_MM_ERR_NO_RES;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002200 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002201 add_list[num_add].flags = cpu_to_le16(cmd_flags);
2202 num_add++;
2203
2204 /* flush a full buffer */
2205 if (num_add == filter_list_len) {
Jacob Keller00936312016-10-05 09:30:41 -07002206 i40e_aqc_add_filters(vsi, vsi_name, add_list,
2207 add_head, num_add,
2208 &promisc_changed);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002209 memset(add_list, 0, list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002210 num_add = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002211 }
2212 }
2213 if (num_add) {
Jacob Keller00936312016-10-05 09:30:41 -07002214 i40e_aqc_add_filters(vsi, vsi_name, add_list, add_head,
2215 num_add, &promisc_changed);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002216 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002217 /* Now move all of the filters from the temp add list back to
2218 * the VSI's list.
2219 */
Jacob Keller278e7d02016-10-05 09:30:37 -07002220 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller671889e2016-12-02 12:33:00 -08002221 hlist_for_each_entry_safe(new, h, &tmp_add_list, hlist) {
2222 /* Only update the state if we're still NEW */
2223 if (new->f->state == I40E_FILTER_NEW)
2224 new->f->state = new->state;
2225 hlist_del(&new->hlist);
2226 kfree(new);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002227 }
Jacob Keller278e7d02016-10-05 09:30:37 -07002228 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002229 kfree(add_list);
2230 add_list = NULL;
2231 }
2232
Jacob Keller38326212016-11-11 12:39:26 -08002233 /* Determine the number of active and failed filters. */
2234 spin_lock_bh(&vsi->mac_filter_hash_lock);
2235 vsi->active_filters = 0;
2236 hash_for_each(vsi->mac_filter_hash, bkt, f, hlist) {
2237 if (f->state == I40E_FILTER_ACTIVE)
2238 vsi->active_filters++;
2239 else if (f->state == I40E_FILTER_FAILED)
2240 failed_filters++;
2241 }
2242 spin_unlock_bh(&vsi->mac_filter_hash_lock);
2243
2244 /* If promiscuous mode has changed, we need to calculate a new
2245 * threshold for when we are safe to exit
2246 */
2247 if (promisc_changed)
2248 vsi->promisc_threshold = (vsi->active_filters * 3) / 4;
2249
2250 /* Check if we are able to exit overflow promiscuous mode. We can
2251 * safely exit if we didn't just enter, we no longer have any failed
2252 * filters, and we have reduced filters below the threshold value.
2253 */
Jacob Keller0da36b92017-04-19 09:25:55 -04002254 if (test_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state) &&
Jacob Keller38326212016-11-11 12:39:26 -08002255 !promisc_changed && !failed_filters &&
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002256 (vsi->active_filters < vsi->promisc_threshold)) {
Jacob Keller38326212016-11-11 12:39:26 -08002257 dev_info(&pf->pdev->dev,
2258 "filter logjam cleared on %s, leaving overflow promiscuous mode\n",
2259 vsi_name);
Jacob Keller0da36b92017-04-19 09:25:55 -04002260 clear_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state);
Jacob Keller38326212016-11-11 12:39:26 -08002261 promisc_changed = true;
2262 vsi->promisc_threshold = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002263 }
2264
Anjali Singhai Jaina856b5c2016-04-13 03:08:23 -07002265 /* if the VF is not trusted do not do promisc */
2266 if ((vsi->type == I40E_VSI_SRIOV) && !pf->vf[vsi->vf_id].trusted) {
Jacob Keller0da36b92017-04-19 09:25:55 -04002267 clear_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state);
Anjali Singhai Jaina856b5c2016-04-13 03:08:23 -07002268 goto out;
2269 }
2270
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002271 /* check for changes in promiscuous modes */
2272 if (changed_flags & IFF_ALLMULTI) {
2273 bool cur_multipromisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002274
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002275 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Mitch Williamsea02e902015-11-09 15:35:50 -08002276 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
2277 vsi->seid,
2278 cur_multipromisc,
2279 NULL);
2280 if (aq_ret) {
2281 retval = i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002282 hw->aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002283 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002284 "set multi promisc failed on %s, err %s aq_err %s\n",
2285 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002286 i40e_stat_str(hw, aq_ret),
2287 i40e_aq_str(hw, hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002288 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002289 }
Alan Bradye5887232017-06-07 05:43:10 -04002290
2291 if ((changed_flags & IFF_PROMISC) || promisc_changed) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002292 bool cur_promisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002293
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002294 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
Jacob Kellerd19cb642017-04-21 13:38:05 -07002295 test_bit(__I40E_VSI_OVERFLOW_PROMISC,
Jacob Keller0da36b92017-04-19 09:25:55 -04002296 vsi->state));
Anjali Singhai Jain6784ed52016-01-15 14:33:13 -08002297 if ((vsi->type == I40E_VSI_MAIN) &&
2298 (pf->lan_veb != I40E_NO_VEB) &&
2299 !(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002300 /* set defport ON for Main VSI instead of true promisc
2301 * this way we will get all unicast/multicast and VLAN
2302 * promisc behavior but will not get VF or VMDq traffic
2303 * replicated on the Main VSI.
2304 */
2305 if (pf->cur_promisc != cur_promisc) {
2306 pf->cur_promisc = cur_promisc;
Mitch Williams5bc16032016-05-16 10:26:43 -07002307 if (cur_promisc)
2308 aq_ret =
2309 i40e_aq_set_default_vsi(hw,
2310 vsi->seid,
2311 NULL);
2312 else
2313 aq_ret =
2314 i40e_aq_clear_default_vsi(hw,
2315 vsi->seid,
2316 NULL);
2317 if (aq_ret) {
2318 retval = i40e_aq_rc_to_posix(aq_ret,
2319 hw->aq.asq_last_status);
2320 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002321 "Set default VSI failed on %s, err %s, aq_err %s\n",
2322 vsi_name,
Mitch Williams5bc16032016-05-16 10:26:43 -07002323 i40e_stat_str(hw, aq_ret),
2324 i40e_aq_str(hw,
2325 hw->aq.asq_last_status));
2326 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002327 }
2328 } else {
Mitch Williamsea02e902015-11-09 15:35:50 -08002329 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002330 hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002331 vsi->seid,
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07002332 cur_promisc, NULL,
2333 true);
Mitch Williamsea02e902015-11-09 15:35:50 -08002334 if (aq_ret) {
2335 retval =
2336 i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002337 hw->aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002338 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002339 "set unicast promisc failed on %s, err %s, aq_err %s\n",
2340 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002341 i40e_stat_str(hw, aq_ret),
2342 i40e_aq_str(hw,
2343 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002344 }
2345 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002346 hw,
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002347 vsi->seid,
2348 cur_promisc, NULL);
Mitch Williamsea02e902015-11-09 15:35:50 -08002349 if (aq_ret) {
2350 retval =
2351 i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002352 hw->aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002353 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002354 "set multicast promisc failed on %s, err %s, aq_err %s\n",
2355 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002356 i40e_stat_str(hw, aq_ret),
2357 i40e_aq_str(hw,
2358 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002359 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002360 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002361 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
2362 vsi->seid,
2363 cur_promisc, NULL);
2364 if (aq_ret) {
2365 retval = i40e_aq_rc_to_posix(aq_ret,
2366 pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00002367 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002368 "set brdcast promisc failed, err %s, aq_err %s\n",
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002369 i40e_stat_str(hw, aq_ret),
2370 i40e_aq_str(hw,
2371 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002372 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002373 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002374out:
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08002375 /* if something went wrong then set the changed flag so we try again */
2376 if (retval)
2377 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
2378
Jacob Keller0da36b92017-04-19 09:25:55 -04002379 clear_bit(__I40E_VSI_SYNCING_FILTERS, vsi->state);
Mitch Williamsea02e902015-11-09 15:35:50 -08002380 return retval;
Jacob Keller4a2ce272016-10-05 09:30:38 -07002381
2382err_no_memory:
2383 /* Restore elements on the temporary add and delete lists */
2384 spin_lock_bh(&vsi->mac_filter_hash_lock);
Alan Brady84f5ca62016-10-05 09:30:39 -07002385err_no_memory_locked:
Jacob Keller671889e2016-12-02 12:33:00 -08002386 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
2387 i40e_undo_add_filter_entries(vsi, &tmp_add_list);
Jacob Keller4a2ce272016-10-05 09:30:38 -07002388 spin_unlock_bh(&vsi->mac_filter_hash_lock);
2389
2390 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
Jacob Keller0da36b92017-04-19 09:25:55 -04002391 clear_bit(__I40E_VSI_SYNCING_FILTERS, vsi->state);
Jacob Keller4a2ce272016-10-05 09:30:38 -07002392 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002393}
2394
2395/**
2396 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
2397 * @pf: board private structure
2398 **/
2399static void i40e_sync_filters_subtask(struct i40e_pf *pf)
2400{
2401 int v;
2402
2403 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
2404 return;
2405 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
2406
Mitch Williams505682c2014-05-20 08:01:37 +00002407 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002408 if (pf->vsi[v] &&
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002409 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) {
2410 int ret = i40e_sync_vsi_filters(pf->vsi[v]);
2411
2412 if (ret) {
2413 /* come back and try again later */
2414 pf->flags |= I40E_FLAG_FILTER_SYNC;
2415 break;
2416 }
2417 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002418 }
2419}
2420
2421/**
Björn Töpel0c8493d2017-05-24 07:55:34 +02002422 * i40e_max_xdp_frame_size - returns the maximum allowed frame size for XDP
2423 * @vsi: the vsi
2424 **/
2425static int i40e_max_xdp_frame_size(struct i40e_vsi *vsi)
2426{
2427 if (PAGE_SIZE >= 8192 || (vsi->back->flags & I40E_FLAG_LEGACY_RX))
2428 return I40E_RXBUFFER_2048;
2429 else
2430 return I40E_RXBUFFER_3072;
2431}
2432
2433/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002434 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
2435 * @netdev: network interface device structure
2436 * @new_mtu: new value for maximum frame size
2437 *
2438 * Returns 0 on success, negative on failure
2439 **/
2440static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
2441{
2442 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002443 struct i40e_vsi *vsi = np->vsi;
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08002444 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002445
Björn Töpel0c8493d2017-05-24 07:55:34 +02002446 if (i40e_enabled_xdp_vsi(vsi)) {
2447 int frame_size = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
2448
2449 if (frame_size > i40e_max_xdp_frame_size(vsi))
2450 return -EINVAL;
2451 }
2452
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002453 netdev_info(netdev, "changing MTU from %d to %d\n",
2454 netdev->mtu, new_mtu);
2455 netdev->mtu = new_mtu;
2456 if (netif_running(netdev))
2457 i40e_vsi_reinit_locked(vsi);
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08002458 pf->flags |= (I40E_FLAG_SERVICE_CLIENT_REQUESTED |
2459 I40E_FLAG_CLIENT_L2_CHANGE);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002460 return 0;
2461}
2462
2463/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002464 * i40e_ioctl - Access the hwtstamp interface
2465 * @netdev: network interface device structure
2466 * @ifr: interface request data
2467 * @cmd: ioctl command
2468 **/
2469int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2470{
2471 struct i40e_netdev_priv *np = netdev_priv(netdev);
2472 struct i40e_pf *pf = np->vsi->back;
2473
2474 switch (cmd) {
2475 case SIOCGHWTSTAMP:
2476 return i40e_ptp_get_ts_config(pf, ifr);
2477 case SIOCSHWTSTAMP:
2478 return i40e_ptp_set_ts_config(pf, ifr);
2479 default:
2480 return -EOPNOTSUPP;
2481 }
2482}
2483
2484/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002485 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
2486 * @vsi: the vsi being adjusted
2487 **/
2488void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
2489{
2490 struct i40e_vsi_context ctxt;
2491 i40e_status ret;
2492
2493 if ((vsi->info.valid_sections &
2494 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2495 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
2496 return; /* already enabled */
2497
2498 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2499 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2500 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
2501
2502 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002503 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002504 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2505 if (ret) {
2506 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002507 "update vlan stripping failed, err %s aq_err %s\n",
2508 i40e_stat_str(&vsi->back->hw, ret),
2509 i40e_aq_str(&vsi->back->hw,
2510 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002511 }
2512}
2513
2514/**
2515 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
2516 * @vsi: the vsi being adjusted
2517 **/
2518void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
2519{
2520 struct i40e_vsi_context ctxt;
2521 i40e_status ret;
2522
2523 if ((vsi->info.valid_sections &
2524 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2525 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
2526 I40E_AQ_VSI_PVLAN_EMOD_MASK))
2527 return; /* already disabled */
2528
2529 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2530 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2531 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
2532
2533 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002534 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002535 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2536 if (ret) {
2537 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002538 "update vlan stripping failed, err %s aq_err %s\n",
2539 i40e_stat_str(&vsi->back->hw, ret),
2540 i40e_aq_str(&vsi->back->hw,
2541 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002542 }
2543}
2544
2545/**
2546 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2547 * @netdev: network interface to be adjusted
2548 * @features: netdev features to test if VLAN offload is enabled or not
2549 **/
2550static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2551{
2552 struct i40e_netdev_priv *np = netdev_priv(netdev);
2553 struct i40e_vsi *vsi = np->vsi;
2554
2555 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2556 i40e_vlan_stripping_enable(vsi);
2557 else
2558 i40e_vlan_stripping_disable(vsi);
2559}
2560
2561/**
Jacob Keller490a4ad2016-11-11 12:39:29 -08002562 * i40e_add_vlan_all_mac - Add a MAC/VLAN filter for each existing MAC address
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002563 * @vsi: the vsi being configured
2564 * @vid: vlan id to be added (0 = untagged only , -1 = any)
Jacob Keller490a4ad2016-11-11 12:39:29 -08002565 *
2566 * This is a helper function for adding a new MAC/VLAN filter with the
2567 * specified VLAN for each existing MAC address already in the hash table.
2568 * This function does *not* perform any accounting to update filters based on
2569 * VLAN mode.
2570 *
2571 * NOTE: this function expects to be called while under the
2572 * mac_filter_hash_lock
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002573 **/
Jacob Keller9af52f62016-11-11 12:39:30 -08002574int i40e_add_vlan_all_mac(struct i40e_vsi *vsi, s16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002575{
Jacob Keller490a4ad2016-11-11 12:39:29 -08002576 struct i40e_mac_filter *f, *add_f;
Jacob Keller278e7d02016-10-05 09:30:37 -07002577 struct hlist_node *h;
2578 int bkt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002579
Jacob Keller278e7d02016-10-05 09:30:37 -07002580 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Jacob Keller57b341d2016-10-05 09:30:35 -07002581 if (f->state == I40E_FILTER_REMOVE)
2582 continue;
Jacob Keller1bc87e82016-10-05 09:30:31 -07002583 add_f = i40e_add_filter(vsi, f->macaddr, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002584 if (!add_f) {
2585 dev_info(&vsi->back->pdev->dev,
2586 "Could not add vlan filter %d for %pM\n",
2587 vid, f->macaddr);
2588 return -ENOMEM;
2589 }
2590 }
2591
Jacob Keller490a4ad2016-11-11 12:39:29 -08002592 return 0;
2593}
2594
2595/**
2596 * i40e_vsi_add_vlan - Add VSI membership for given VLAN
2597 * @vsi: the VSI being configured
Jacob Kellerf94484b2016-12-07 14:05:34 -08002598 * @vid: VLAN id to be added
Jacob Keller490a4ad2016-11-11 12:39:29 -08002599 **/
Jacob Kellerf94484b2016-12-07 14:05:34 -08002600int i40e_vsi_add_vlan(struct i40e_vsi *vsi, u16 vid)
Jacob Keller490a4ad2016-11-11 12:39:29 -08002601{
Jacob Keller489a3262016-11-11 12:39:31 -08002602 int err;
Jacob Keller490a4ad2016-11-11 12:39:29 -08002603
Jacob Kellerfcf6cfc2017-06-23 04:24:51 -04002604 if (vsi->info.pvid)
Jacob Kellerf94484b2016-12-07 14:05:34 -08002605 return -EINVAL;
2606
Jacob Kellerfcf6cfc2017-06-23 04:24:51 -04002607 /* The network stack will attempt to add VID=0, with the intention to
2608 * receive priority tagged packets with a VLAN of 0. Our HW receives
2609 * these packets by default when configured to receive untagged
2610 * packets, so we don't need to add a filter for this case.
2611 * Additionally, HW interprets adding a VID=0 filter as meaning to
2612 * receive *only* tagged traffic and stops receiving untagged traffic.
2613 * Thus, we do not want to actually add a filter for VID=0
2614 */
2615 if (!vid)
2616 return 0;
2617
Jacob Keller490a4ad2016-11-11 12:39:29 -08002618 /* Locked once because all functions invoked below iterates list*/
2619 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller490a4ad2016-11-11 12:39:29 -08002620 err = i40e_add_vlan_all_mac(vsi, vid);
Jacob Keller278e7d02016-10-05 09:30:37 -07002621 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller489a3262016-11-11 12:39:31 -08002622 if (err)
2623 return err;
Kiran Patil21659032015-09-30 14:09:03 -04002624
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002625 /* schedule our worker thread which will take care of
2626 * applying the new filter changes
2627 */
2628 i40e_service_event_schedule(vsi->back);
2629 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002630}
2631
2632/**
Jacob Keller490a4ad2016-11-11 12:39:29 -08002633 * i40e_rm_vlan_all_mac - Remove MAC/VLAN pair for all MAC with the given VLAN
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002634 * @vsi: the vsi being configured
2635 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jacob Keller490a4ad2016-11-11 12:39:29 -08002636 *
2637 * This function should be used to remove all VLAN filters which match the
2638 * given VID. It does not schedule the service event and does not take the
2639 * mac_filter_hash_lock so it may be combined with other operations under
2640 * a single invocation of the mac_filter_hash_lock.
2641 *
2642 * NOTE: this function expects to be called while under the
2643 * mac_filter_hash_lock
2644 */
Jacob Keller9af52f62016-11-11 12:39:30 -08002645void i40e_rm_vlan_all_mac(struct i40e_vsi *vsi, s16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002646{
Alan Brady84f5ca62016-10-05 09:30:39 -07002647 struct i40e_mac_filter *f;
Jacob Keller278e7d02016-10-05 09:30:37 -07002648 struct hlist_node *h;
Jacob Keller278e7d02016-10-05 09:30:37 -07002649 int bkt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002650
Jacob Keller278e7d02016-10-05 09:30:37 -07002651 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Jacob Keller290d2552016-10-05 09:30:36 -07002652 if (f->vlan == vid)
2653 __i40e_del_filter(vsi, f);
2654 }
Jacob Keller490a4ad2016-11-11 12:39:29 -08002655}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002656
Jacob Keller490a4ad2016-11-11 12:39:29 -08002657/**
2658 * i40e_vsi_kill_vlan - Remove VSI membership for given VLAN
2659 * @vsi: the VSI being configured
Jacob Kellerf94484b2016-12-07 14:05:34 -08002660 * @vid: VLAN id to be removed
Jacob Keller490a4ad2016-11-11 12:39:29 -08002661 **/
Jacob Kellerf94484b2016-12-07 14:05:34 -08002662void i40e_vsi_kill_vlan(struct i40e_vsi *vsi, u16 vid)
Jacob Keller490a4ad2016-11-11 12:39:29 -08002663{
Jacob Kellerf94484b2016-12-07 14:05:34 -08002664 if (!vid || vsi->info.pvid)
2665 return;
2666
Jacob Keller490a4ad2016-11-11 12:39:29 -08002667 spin_lock_bh(&vsi->mac_filter_hash_lock);
2668 i40e_rm_vlan_all_mac(vsi, vid);
Jacob Keller278e7d02016-10-05 09:30:37 -07002669 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -04002670
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002671 /* schedule our worker thread which will take care of
2672 * applying the new filter changes
2673 */
2674 i40e_service_event_schedule(vsi->back);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002675}
2676
2677/**
2678 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2679 * @netdev: network interface to be adjusted
2680 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002681 *
2682 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002683 **/
2684static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2685 __always_unused __be16 proto, u16 vid)
2686{
2687 struct i40e_netdev_priv *np = netdev_priv(netdev);
2688 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002689 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002690
Jacob Keller6a1127852016-10-25 16:08:49 -07002691 if (vid >= VLAN_N_VID)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002692 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002693
Jacob Kellerfcf6cfc2017-06-23 04:24:51 -04002694 ret = i40e_vsi_add_vlan(vsi, vid);
Jacob Keller6a1127852016-10-25 16:08:49 -07002695 if (!ret)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002696 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002697
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002698 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002699}
2700
2701/**
2702 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2703 * @netdev: network interface to be adjusted
2704 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002705 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002706 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002707 **/
2708static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2709 __always_unused __be16 proto, u16 vid)
2710{
2711 struct i40e_netdev_priv *np = netdev_priv(netdev);
2712 struct i40e_vsi *vsi = np->vsi;
2713
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002714 /* return code is ignored as there is nothing a user
2715 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002716 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002717 */
2718 i40e_vsi_kill_vlan(vsi, vid);
2719
2720 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002721
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002722 return 0;
2723}
2724
2725/**
2726 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2727 * @vsi: the vsi being brought back up
2728 **/
2729static void i40e_restore_vlan(struct i40e_vsi *vsi)
2730{
2731 u16 vid;
2732
2733 if (!vsi->netdev)
2734 return;
2735
2736 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2737
2738 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2739 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2740 vid);
2741}
2742
2743/**
2744 * i40e_vsi_add_pvid - Add pvid for the VSI
2745 * @vsi: the vsi being adjusted
2746 * @vid: the vlan id to set as a PVID
2747 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002748int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002749{
2750 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002751 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002752
2753 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2754 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002755 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2756 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002757 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002758
2759 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002760 ctxt.info = vsi->info;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002761 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2762 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002763 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002764 "add pvid failed, err %s aq_err %s\n",
2765 i40e_stat_str(&vsi->back->hw, ret),
2766 i40e_aq_str(&vsi->back->hw,
2767 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002768 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002769 }
2770
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002771 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002772}
2773
2774/**
2775 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2776 * @vsi: the vsi being adjusted
2777 *
2778 * Just use the vlan_rx_register() service to put it back to normal
2779 **/
2780void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2781{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002782 i40e_vlan_stripping_disable(vsi);
2783
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002784 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002785}
2786
2787/**
2788 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2789 * @vsi: ptr to the VSI
2790 *
2791 * If this function returns with an error, then it's possible one or
2792 * more of the rings is populated (while the rest are not). It is the
2793 * callers duty to clean those orphaned rings.
2794 *
2795 * Return 0 on success, negative on failure
2796 **/
2797static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2798{
2799 int i, err = 0;
2800
2801 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002802 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002803
Björn Töpel74608d12017-05-24 07:55:35 +02002804 if (!i40e_enabled_xdp_vsi(vsi))
2805 return err;
2806
2807 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
2808 err = i40e_setup_tx_descriptors(vsi->xdp_rings[i]);
2809
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002810 return err;
2811}
2812
2813/**
2814 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2815 * @vsi: ptr to the VSI
2816 *
2817 * Free VSI's transmit software resources
2818 **/
2819static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2820{
2821 int i;
2822
Björn Töpel74608d12017-05-24 07:55:35 +02002823 if (vsi->tx_rings) {
2824 for (i = 0; i < vsi->num_queue_pairs; i++)
2825 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
2826 i40e_free_tx_resources(vsi->tx_rings[i]);
2827 }
Greg Rose8e9dca52013-12-18 13:45:53 +00002828
Björn Töpel74608d12017-05-24 07:55:35 +02002829 if (vsi->xdp_rings) {
2830 for (i = 0; i < vsi->num_queue_pairs; i++)
2831 if (vsi->xdp_rings[i] && vsi->xdp_rings[i]->desc)
2832 i40e_free_tx_resources(vsi->xdp_rings[i]);
2833 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002834}
2835
2836/**
2837 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2838 * @vsi: ptr to the VSI
2839 *
2840 * If this function returns with an error, then it's possible one or
2841 * more of the rings is populated (while the rest are not). It is the
2842 * callers duty to clean those orphaned rings.
2843 *
2844 * Return 0 on success, negative on failure
2845 **/
2846static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2847{
2848 int i, err = 0;
2849
2850 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002851 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002852 return err;
2853}
2854
2855/**
2856 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2857 * @vsi: ptr to the VSI
2858 *
2859 * Free all receive software resources
2860 **/
2861static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2862{
2863 int i;
2864
Greg Rose8e9dca52013-12-18 13:45:53 +00002865 if (!vsi->rx_rings)
2866 return;
2867
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002868 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002869 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002870 i40e_free_rx_resources(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002871}
2872
2873/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002874 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2875 * @ring: The Tx ring to configure
2876 *
2877 * This enables/disables XPS for a given Tx descriptor ring
2878 * based on the TCs enabled for the VSI that ring belongs to.
2879 **/
2880static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2881{
Jacob Kellerbe664cb2017-08-29 05:32:31 -04002882 int cpu;
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002883
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002884 if (!ring->q_vector || !ring->netdev)
2885 return;
2886
Jacob Keller6f853d42017-09-07 08:05:53 -04002887 /* We only initialize XPS once, so as not to overwrite user settings */
2888 if (test_and_set_bit(__I40E_TX_XPS_INIT_DONE, ring->state))
2889 return;
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002890
Jacob Keller6f853d42017-09-07 08:05:53 -04002891 cpu = cpumask_local_spread(ring->q_vector->v_idx, -1);
2892 netif_set_xps_queue(ring->netdev, get_cpu_mask(cpu),
2893 ring->queue_index);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002894}
2895
2896/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002897 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2898 * @ring: The Tx ring to configure
2899 *
2900 * Configure the Tx descriptor ring in the HMC context.
2901 **/
2902static int i40e_configure_tx_ring(struct i40e_ring *ring)
2903{
2904 struct i40e_vsi *vsi = ring->vsi;
2905 u16 pf_q = vsi->base_queue + ring->queue_index;
2906 struct i40e_hw *hw = &vsi->back->hw;
2907 struct i40e_hmc_obj_txq tx_ctx;
2908 i40e_status err = 0;
2909 u32 qtx_ctl = 0;
2910
2911 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002912 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002913 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2914 ring->atr_count = 0;
2915 } else {
2916 ring->atr_sample_rate = 0;
2917 }
2918
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002919 /* configure XPS */
2920 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002921
2922 /* clear the context structure first */
2923 memset(&tx_ctx, 0, sizeof(tx_ctx));
2924
2925 tx_ctx.new_context = 1;
2926 tx_ctx.base = (ring->dma / 128);
2927 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002928 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2929 I40E_FLAG_FD_ATR_ENABLED));
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002930 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002931 /* FDIR VSI tx ring can still use RS bit and writebacks */
2932 if (vsi->type != I40E_VSI_FDIR)
2933 tx_ctx.head_wb_ena = 1;
2934 tx_ctx.head_wb_addr = ring->dma +
2935 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002936
2937 /* As part of VSI creation/update, FW allocates certain
2938 * Tx arbitration queue sets for each TC enabled for
2939 * the VSI. The FW returns the handles to these queue
2940 * sets as part of the response buffer to Add VSI,
2941 * Update VSI, etc. AQ commands. It is expected that
2942 * these queue set handles be associated with the Tx
2943 * queues by the driver as part of the TX queue context
2944 * initialization. This has to be done regardless of
2945 * DCB as by default everything is mapped to TC0.
2946 */
2947 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2948 tx_ctx.rdylist_act = 0;
2949
2950 /* clear the context in the HMC */
2951 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2952 if (err) {
2953 dev_info(&vsi->back->pdev->dev,
2954 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2955 ring->queue_index, pf_q, err);
2956 return -ENOMEM;
2957 }
2958
2959 /* set the context in the HMC */
2960 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2961 if (err) {
2962 dev_info(&vsi->back->pdev->dev,
2963 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2964 ring->queue_index, pf_q, err);
2965 return -ENOMEM;
2966 }
2967
2968 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002969 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002970 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002971 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2972 I40E_QTX_CTL_VFVM_INDX_MASK;
2973 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002974 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002975 }
2976
Shannon Nelson13fd9772013-09-28 07:14:19 +00002977 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2978 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002979 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2980 i40e_flush(hw);
2981
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002982 /* cache tail off for easier writes later */
2983 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2984
2985 return 0;
2986}
2987
2988/**
2989 * i40e_configure_rx_ring - Configure a receive ring context
2990 * @ring: The Rx ring to configure
2991 *
2992 * Configure the Rx descriptor ring in the HMC context.
2993 **/
2994static int i40e_configure_rx_ring(struct i40e_ring *ring)
2995{
2996 struct i40e_vsi *vsi = ring->vsi;
2997 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2998 u16 pf_q = vsi->base_queue + ring->queue_index;
2999 struct i40e_hw *hw = &vsi->back->hw;
3000 struct i40e_hmc_obj_rxq rx_ctx;
3001 i40e_status err = 0;
3002
Jesse Brandeburgbd6cd4e2017-08-29 05:32:35 -04003003 bitmap_zero(ring->state, __I40E_RING_STATE_NBITS);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003004
3005 /* clear the context structure first */
3006 memset(&rx_ctx, 0, sizeof(rx_ctx));
3007
3008 ring->rx_buf_len = vsi->rx_buf_len;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003009
Alexander Duyckdab86af2017-03-14 10:15:27 -07003010 rx_ctx.dbuff = DIV_ROUND_UP(ring->rx_buf_len,
3011 BIT_ULL(I40E_RXQ_CTX_DBUFF_SHIFT));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003012
3013 rx_ctx.base = (ring->dma / 128);
3014 rx_ctx.qlen = ring->count;
3015
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07003016 /* use 32 byte descriptors */
3017 rx_ctx.dsize = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003018
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07003019 /* descriptor type is always zero
3020 * rx_ctx.dtype = 0;
3021 */
Jesse Brandeburgb32bfa172016-04-18 11:33:42 -07003022 rx_ctx.hsplit_0 = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003023
Jesse Brandeburgb32bfa172016-04-18 11:33:42 -07003024 rx_ctx.rxmax = min_t(u16, vsi->max_frame, chain_len * ring->rx_buf_len);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003025 if (hw->revision_id == 0)
3026 rx_ctx.lrxqthresh = 0;
3027 else
Jacob Keller7362be92017-09-07 08:05:50 -04003028 rx_ctx.lrxqthresh = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003029 rx_ctx.crcstrip = 1;
3030 rx_ctx.l2tsel = 1;
Jesse Brandeburgc4bbac32015-09-28 11:21:48 -07003031 /* this controls whether VLAN is stripped from inner headers */
3032 rx_ctx.showiv = 0;
Catherine Sullivanacb36762014-03-06 09:02:30 +00003033 /* set the prefena field to 1 because the manual says to */
3034 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003035
3036 /* clear the context in the HMC */
3037 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
3038 if (err) {
3039 dev_info(&vsi->back->pdev->dev,
3040 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
3041 ring->queue_index, pf_q, err);
3042 return -ENOMEM;
3043 }
3044
3045 /* set the context in the HMC */
3046 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
3047 if (err) {
3048 dev_info(&vsi->back->pdev->dev,
3049 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
3050 ring->queue_index, pf_q, err);
3051 return -ENOMEM;
3052 }
3053
Alexander Duyckca9ec082017-04-05 07:51:02 -04003054 /* configure Rx buffer alignment */
3055 if (!vsi->netdev || (vsi->back->flags & I40E_FLAG_LEGACY_RX))
3056 clear_ring_build_skb_enabled(ring);
3057 else
3058 set_ring_build_skb_enabled(ring);
3059
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003060 /* cache tail for quicker writes, and clear the reg before use */
3061 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
3062 writel(0, ring->tail);
3063
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -07003064 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003065
3066 return 0;
3067}
3068
3069/**
3070 * i40e_vsi_configure_tx - Configure the VSI for Tx
3071 * @vsi: VSI structure describing this set of rings and resources
3072 *
3073 * Configure the Tx VSI for operation.
3074 **/
3075static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
3076{
3077 int err = 0;
3078 u16 i;
3079
Alexander Duyck9f65e152013-09-28 06:00:58 +00003080 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
3081 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003082
Björn Töpel74608d12017-05-24 07:55:35 +02003083 if (!i40e_enabled_xdp_vsi(vsi))
3084 return err;
3085
3086 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
3087 err = i40e_configure_tx_ring(vsi->xdp_rings[i]);
3088
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003089 return err;
3090}
3091
3092/**
3093 * i40e_vsi_configure_rx - Configure the VSI for Rx
3094 * @vsi: the VSI being configured
3095 *
3096 * Configure the Rx VSI for operation.
3097 **/
3098static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
3099{
3100 int err = 0;
3101 u16 i;
3102
Alexander Duyckdab86af2017-03-14 10:15:27 -07003103 if (!vsi->netdev || (vsi->back->flags & I40E_FLAG_LEGACY_RX)) {
3104 vsi->max_frame = I40E_MAX_RXBUFFER;
3105 vsi->rx_buf_len = I40E_RXBUFFER_2048;
3106#if (PAGE_SIZE < 8192)
Alexander Duyckca9ec082017-04-05 07:51:02 -04003107 } else if (!I40E_2K_TOO_SMALL_WITH_PADDING &&
3108 (vsi->netdev->mtu <= ETH_DATA_LEN)) {
Alexander Duyckdab86af2017-03-14 10:15:27 -07003109 vsi->max_frame = I40E_RXBUFFER_1536 - NET_IP_ALIGN;
3110 vsi->rx_buf_len = I40E_RXBUFFER_1536 - NET_IP_ALIGN;
3111#endif
3112 } else {
3113 vsi->max_frame = I40E_MAX_RXBUFFER;
Alexander Duyck98efd692017-04-05 07:51:01 -04003114 vsi->rx_buf_len = (PAGE_SIZE < 8192) ? I40E_RXBUFFER_3072 :
3115 I40E_RXBUFFER_2048;
Alexander Duyckdab86af2017-03-14 10:15:27 -07003116 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003117
3118 /* set up individual rings */
3119 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00003120 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003121
3122 return err;
3123}
3124
3125/**
3126 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
3127 * @vsi: ptr to the VSI
3128 **/
3129static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
3130{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00003131 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003132 u16 qoffset, qcount;
3133 int i, n;
3134
Parikh, Neeravcd238a32015-02-21 06:43:37 +00003135 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
3136 /* Reset the TC information */
3137 for (i = 0; i < vsi->num_queue_pairs; i++) {
3138 rx_ring = vsi->rx_rings[i];
3139 tx_ring = vsi->tx_rings[i];
3140 rx_ring->dcb_tc = 0;
3141 tx_ring->dcb_tc = 0;
3142 }
3143 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003144
3145 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04003146 if (!(vsi->tc_config.enabled_tc & BIT_ULL(n)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003147 continue;
3148
3149 qoffset = vsi->tc_config.tc_info[n].qoffset;
3150 qcount = vsi->tc_config.tc_info[n].qcount;
3151 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00003152 rx_ring = vsi->rx_rings[i];
3153 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003154 rx_ring->dcb_tc = n;
3155 tx_ring->dcb_tc = n;
3156 }
3157 }
3158}
3159
3160/**
3161 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
3162 * @vsi: ptr to the VSI
3163 **/
3164static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
3165{
3166 if (vsi->netdev)
3167 i40e_set_rx_mode(vsi->netdev);
3168}
3169
3170/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003171 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
3172 * @vsi: Pointer to the targeted VSI
3173 *
3174 * This function replays the hlist on the hw where all the SB Flow Director
3175 * filters were saved.
3176 **/
3177static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
3178{
3179 struct i40e_fdir_filter *filter;
3180 struct i40e_pf *pf = vsi->back;
3181 struct hlist_node *node;
3182
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003183 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
3184 return;
3185
Jacob Keller6d069422017-02-06 14:38:44 -08003186 /* Reset FDir counters as we're replaying all existing filters */
Jacob Keller097dbf52017-02-06 14:38:46 -08003187 pf->fd_tcp4_filter_cnt = 0;
3188 pf->fd_udp4_filter_cnt = 0;
Jacob Kellerf223c872017-02-06 14:38:51 -08003189 pf->fd_sctp4_filter_cnt = 0;
Jacob Keller097dbf52017-02-06 14:38:46 -08003190 pf->fd_ip4_filter_cnt = 0;
Jacob Keller6d069422017-02-06 14:38:44 -08003191
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003192 hlist_for_each_entry_safe(filter, node,
3193 &pf->fdir_filter_list, fdir_node) {
3194 i40e_add_del_fdir(vsi, filter, true);
3195 }
3196}
3197
3198/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003199 * i40e_vsi_configure - Set up the VSI for action
3200 * @vsi: the VSI being configured
3201 **/
3202static int i40e_vsi_configure(struct i40e_vsi *vsi)
3203{
3204 int err;
3205
3206 i40e_set_vsi_rx_mode(vsi);
3207 i40e_restore_vlan(vsi);
3208 i40e_vsi_config_dcb_rings(vsi);
3209 err = i40e_vsi_configure_tx(vsi);
3210 if (!err)
3211 err = i40e_vsi_configure_rx(vsi);
3212
3213 return err;
3214}
3215
3216/**
3217 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
3218 * @vsi: the VSI being configured
3219 **/
3220static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
3221{
Björn Töpel74608d12017-05-24 07:55:35 +02003222 bool has_xdp = i40e_enabled_xdp_vsi(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003223 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003224 struct i40e_hw *hw = &pf->hw;
3225 u16 vector;
3226 int i, q;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003227 u32 qp;
3228
3229 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
3230 * and PFINT_LNKLSTn registers, e.g.:
3231 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
3232 */
3233 qp = vsi->base_queue;
3234 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00003235 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003236 struct i40e_q_vector *q_vector = vsi->q_vectors[i];
3237
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003238 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003239 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[i]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003240 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3241 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
3242 q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003243 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[i]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003244 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3245 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
3246 q_vector->tx.itr);
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003247 wr32(hw, I40E_PFINT_RATEN(vector - 1),
Alan Brady1c0e6a32016-11-28 16:06:02 -08003248 i40e_intrl_usec_to_reg(vsi->int_rate_limit));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003249
3250 /* Linked list for the queuepairs assigned to this vector */
3251 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
3252 for (q = 0; q < q_vector->num_ringpairs; q++) {
Björn Töpel74608d12017-05-24 07:55:35 +02003253 u32 nextqp = has_xdp ? qp + vsi->alloc_queue_pairs : qp;
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003254 u32 val;
3255
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003256 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
Björn Töpel74608d12017-05-24 07:55:35 +02003257 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3258 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
3259 (nextqp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT) |
3260 (I40E_QUEUE_TYPE_TX <<
3261 I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003262
3263 wr32(hw, I40E_QINT_RQCTL(qp), val);
3264
Björn Töpel74608d12017-05-24 07:55:35 +02003265 if (has_xdp) {
3266 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3267 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3268 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3269 (qp << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT) |
3270 (I40E_QUEUE_TYPE_TX <<
3271 I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3272
3273 wr32(hw, I40E_QINT_TQCTL(nextqp), val);
3274 }
3275
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003276 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
Björn Töpel74608d12017-05-24 07:55:35 +02003277 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3278 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3279 ((qp + 1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT) |
3280 (I40E_QUEUE_TYPE_RX <<
3281 I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003282
3283 /* Terminate the linked list */
3284 if (q == (q_vector->num_ringpairs - 1))
Björn Töpel74608d12017-05-24 07:55:35 +02003285 val |= (I40E_QUEUE_END_OF_LIST <<
3286 I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003287
3288 wr32(hw, I40E_QINT_TQCTL(qp), val);
3289 qp++;
3290 }
3291 }
3292
3293 i40e_flush(hw);
3294}
3295
3296/**
3297 * i40e_enable_misc_int_causes - enable the non-queue interrupts
3298 * @hw: ptr to the hardware info
3299 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00003300static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003301{
Jacob Kellerab437b52014-12-14 01:55:08 +00003302 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003303 u32 val;
3304
3305 /* clear things first */
3306 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
3307 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
3308
3309 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
3310 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
3311 I40E_PFINT_ICR0_ENA_GRST_MASK |
3312 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
3313 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003314 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
3315 I40E_PFINT_ICR0_ENA_VFLR_MASK |
3316 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3317
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003318 if (pf->flags & I40E_FLAG_IWARP_ENABLED)
3319 val |= I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3320
Jacob Kellerab437b52014-12-14 01:55:08 +00003321 if (pf->flags & I40E_FLAG_PTP)
3322 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
3323
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003324 wr32(hw, I40E_PFINT_ICR0_ENA, val);
3325
3326 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00003327 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
3328 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003329
3330 /* OTHER_ITR_IDX = 0 */
3331 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
3332}
3333
3334/**
3335 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
3336 * @vsi: the VSI being configured
3337 **/
3338static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
3339{
Björn Töpel74608d12017-05-24 07:55:35 +02003340 u32 nextqp = i40e_enabled_xdp_vsi(vsi) ? vsi->alloc_queue_pairs : 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00003341 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003342 struct i40e_pf *pf = vsi->back;
3343 struct i40e_hw *hw = &pf->hw;
3344 u32 val;
3345
3346 /* set the ITR configuration */
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003347 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003348 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[0]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003349 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3350 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003351 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[0]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003352 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3353 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
3354
Jacob Kellerab437b52014-12-14 01:55:08 +00003355 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003356
3357 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
3358 wr32(hw, I40E_PFINT_LNKLST0, 0);
3359
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00003360 /* Associate the queue pair to the vector and enable the queue int */
Björn Töpel74608d12017-05-24 07:55:35 +02003361 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3362 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3363 (nextqp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003364 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3365
3366 wr32(hw, I40E_QINT_RQCTL(0), val);
3367
Björn Töpel74608d12017-05-24 07:55:35 +02003368 if (i40e_enabled_xdp_vsi(vsi)) {
3369 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3370 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT)|
3371 (I40E_QUEUE_TYPE_TX
3372 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3373
3374 wr32(hw, I40E_QINT_TQCTL(nextqp), val);
3375 }
3376
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003377 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3378 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3379 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3380
3381 wr32(hw, I40E_QINT_TQCTL(0), val);
3382 i40e_flush(hw);
3383}
3384
3385/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00003386 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
3387 * @pf: board private structure
3388 **/
3389void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
3390{
3391 struct i40e_hw *hw = &pf->hw;
3392
3393 wr32(hw, I40E_PFINT_DYN_CTL0,
3394 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
3395 i40e_flush(hw);
3396}
3397
3398/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003399 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
3400 * @pf: board private structure
3401 **/
Jacob Kellerdbadbbe2017-09-07 08:05:49 -04003402void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003403{
3404 struct i40e_hw *hw = &pf->hw;
3405 u32 val;
3406
3407 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
Jacob Kellerdbadbbe2017-09-07 08:05:49 -04003408 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003409 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
3410
3411 wr32(hw, I40E_PFINT_DYN_CTL0, val);
3412 i40e_flush(hw);
3413}
3414
3415/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003416 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
3417 * @irq: interrupt number
3418 * @data: pointer to a q_vector
3419 **/
3420static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
3421{
3422 struct i40e_q_vector *q_vector = data;
3423
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003424 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003425 return IRQ_HANDLED;
3426
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003427 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003428
3429 return IRQ_HANDLED;
3430}
3431
3432/**
Alan Brady96db7762016-09-14 16:24:38 -07003433 * i40e_irq_affinity_notify - Callback for affinity changes
3434 * @notify: context as to what irq was changed
3435 * @mask: the new affinity mask
3436 *
3437 * This is a callback function used by the irq_set_affinity_notifier function
3438 * so that we may register to receive changes to the irq affinity masks.
3439 **/
3440static void i40e_irq_affinity_notify(struct irq_affinity_notify *notify,
3441 const cpumask_t *mask)
3442{
3443 struct i40e_q_vector *q_vector =
3444 container_of(notify, struct i40e_q_vector, affinity_notify);
3445
Jacob Keller7e4d01e2017-07-12 05:46:05 -04003446 cpumask_copy(&q_vector->affinity_mask, mask);
Alan Brady96db7762016-09-14 16:24:38 -07003447}
3448
3449/**
3450 * i40e_irq_affinity_release - Callback for affinity notifier release
3451 * @ref: internal core kernel usage
3452 *
3453 * This is a callback function used by the irq_set_affinity_notifier function
3454 * to inform the current notification subscriber that they will no longer
3455 * receive notifications.
3456 **/
3457static void i40e_irq_affinity_release(struct kref *ref) {}
3458
3459/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003460 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
3461 * @vsi: the VSI being configured
3462 * @basename: name for the vector
3463 *
3464 * Allocates MSI-X vectors and requests interrupts from the kernel.
3465 **/
3466static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
3467{
3468 int q_vectors = vsi->num_q_vectors;
3469 struct i40e_pf *pf = vsi->back;
3470 int base = vsi->base_vector;
3471 int rx_int_idx = 0;
3472 int tx_int_idx = 0;
3473 int vector, err;
Alan Brady96db7762016-09-14 16:24:38 -07003474 int irq_num;
Jacob Kellerbe664cb2017-08-29 05:32:31 -04003475 int cpu;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003476
3477 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00003478 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003479
Alan Brady96db7762016-09-14 16:24:38 -07003480 irq_num = pf->msix_entries[base + vector].vector;
3481
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003482 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003483 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3484 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3485 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003486 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003487 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3488 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003489 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003490 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3491 "%s-%s-%d", basename, "tx", tx_int_idx++);
3492 } else {
3493 /* skip this unused q_vector */
3494 continue;
3495 }
Alan Brady96db7762016-09-14 16:24:38 -07003496 err = request_irq(irq_num,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003497 vsi->irq_handler,
3498 0,
3499 q_vector->name,
3500 q_vector);
3501 if (err) {
3502 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003503 "MSIX request_irq failed, error: %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003504 goto free_queue_irqs;
3505 }
Alan Brady96db7762016-09-14 16:24:38 -07003506
3507 /* register for affinity change notifications */
3508 q_vector->affinity_notify.notify = i40e_irq_affinity_notify;
3509 q_vector->affinity_notify.release = i40e_irq_affinity_release;
3510 irq_set_affinity_notifier(irq_num, &q_vector->affinity_notify);
Jacob Kellerbe664cb2017-08-29 05:32:31 -04003511 /* Spread affinity hints out across online CPUs.
3512 *
3513 * get_cpu_mask returns a static constant mask with
3514 * a permanent lifetime so it's ok to pass to
3515 * irq_set_affinity_hint without making a copy.
Jacob Keller759dc4a2017-07-14 09:10:10 -04003516 */
Jacob Kellerbe664cb2017-08-29 05:32:31 -04003517 cpu = cpumask_local_spread(q_vector->v_idx, -1);
3518 irq_set_affinity_hint(irq_num, get_cpu_mask(cpu));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003519 }
3520
Shannon Nelson63741842014-04-23 04:50:16 +00003521 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003522 return 0;
3523
3524free_queue_irqs:
3525 while (vector) {
3526 vector--;
Alan Brady96db7762016-09-14 16:24:38 -07003527 irq_num = pf->msix_entries[base + vector].vector;
3528 irq_set_affinity_notifier(irq_num, NULL);
3529 irq_set_affinity_hint(irq_num, NULL);
3530 free_irq(irq_num, &vsi->q_vectors[vector]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003531 }
3532 return err;
3533}
3534
3535/**
3536 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3537 * @vsi: the VSI being un-configured
3538 **/
3539static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3540{
3541 struct i40e_pf *pf = vsi->back;
3542 struct i40e_hw *hw = &pf->hw;
3543 int base = vsi->base_vector;
3544 int i;
3545
Shannon Nelson2e5c26ea2017-06-07 05:43:11 -04003546 /* disable interrupt causation from each queue */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003547 for (i = 0; i < vsi->num_queue_pairs; i++) {
Shannon Nelson2e5c26ea2017-06-07 05:43:11 -04003548 u32 val;
3549
3550 val = rd32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx));
3551 val &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3552 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), val);
3553
3554 val = rd32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx));
3555 val &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3556 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), val);
3557
Björn Töpel74608d12017-05-24 07:55:35 +02003558 if (!i40e_enabled_xdp_vsi(vsi))
3559 continue;
3560 wr32(hw, I40E_QINT_TQCTL(vsi->xdp_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003561 }
3562
Shannon Nelson2e5c26ea2017-06-07 05:43:11 -04003563 /* disable each interrupt */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003564 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3565 for (i = vsi->base_vector;
3566 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3567 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3568
3569 i40e_flush(hw);
3570 for (i = 0; i < vsi->num_q_vectors; i++)
3571 synchronize_irq(pf->msix_entries[i + base].vector);
3572 } else {
3573 /* Legacy and MSI mode - this stops all interrupt handling */
3574 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3575 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3576 i40e_flush(hw);
3577 synchronize_irq(pf->pdev->irq);
3578 }
3579}
3580
3581/**
3582 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3583 * @vsi: the VSI being configured
3584 **/
3585static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3586{
3587 struct i40e_pf *pf = vsi->back;
3588 int i;
3589
3590 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Jesse Brandeburg78455482015-07-23 16:54:41 -04003591 for (i = 0; i < vsi->num_q_vectors; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003592 i40e_irq_dynamic_enable(vsi, i);
3593 } else {
Jacob Kellerdbadbbe2017-09-07 08:05:49 -04003594 i40e_irq_dynamic_enable_icr0(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003595 }
3596
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003597 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003598 return 0;
3599}
3600
3601/**
Jacob Kellerc17401a2017-07-14 09:27:02 -04003602 * i40e_free_misc_vector - Free the vector that handles non-queue events
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003603 * @pf: board private structure
3604 **/
Jacob Kellerc17401a2017-07-14 09:27:02 -04003605static void i40e_free_misc_vector(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003606{
3607 /* Disable ICR 0 */
3608 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3609 i40e_flush(&pf->hw);
Jacob Kellerc17401a2017-07-14 09:27:02 -04003610
3611 if (pf->flags & I40E_FLAG_MSIX_ENABLED && pf->msix_entries) {
3612 synchronize_irq(pf->msix_entries[0].vector);
3613 free_irq(pf->msix_entries[0].vector, pf);
3614 clear_bit(__I40E_MISC_IRQ_REQUESTED, pf->state);
3615 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003616}
3617
3618/**
3619 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3620 * @irq: interrupt number
3621 * @data: pointer to a q_vector
3622 *
3623 * This is the handler used for all MSI/Legacy interrupts, and deals
3624 * with both queue and non-queue interrupts. This is also used in
3625 * MSIX mode to handle the non-queue interrupts.
3626 **/
3627static irqreturn_t i40e_intr(int irq, void *data)
3628{
3629 struct i40e_pf *pf = (struct i40e_pf *)data;
3630 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003631 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003632 u32 icr0, icr0_remaining;
3633 u32 val, ena_mask;
3634
3635 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003636 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003637
Shannon Nelson116a57d2013-09-28 07:13:59 +00003638 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3639 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003640 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003641
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003642 /* if interrupt but no bits showing, must be SWINT */
3643 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3644 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3645 pf->sw_int_count++;
3646
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003647 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
Catherine Sullivan76429842017-06-07 05:43:12 -04003648 (icr0 & I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK)) {
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003649 ena_mask &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
Carolyn Wyborny23bb6dc2016-11-08 13:05:12 -08003650 dev_dbg(&pf->pdev->dev, "cleared PE_CRITERR\n");
Catherine Sullivan76429842017-06-07 05:43:12 -04003651 set_bit(__I40E_CORE_RESET_REQUESTED, pf->state);
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003652 }
3653
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003654 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3655 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003656 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
3657 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003658
Anjali Singhai Jaina16ae2d2016-01-15 14:33:16 -08003659 /* We do not have a way to disarm Queue causes while leaving
3660 * interrupt enabled for all other causes, ideally
3661 * interrupt should be disabled while we are in NAPI but
3662 * this is not a performance path and napi_schedule()
3663 * can deal with rescheduling.
3664 */
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03003665 if (!test_bit(__I40E_DOWN, pf->state))
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003666 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003667 }
3668
3669 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3670 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
Jacob Keller0da36b92017-04-19 09:25:55 -04003671 set_bit(__I40E_ADMINQ_EVENT_PENDING, pf->state);
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08003672 i40e_debug(&pf->hw, I40E_DEBUG_NVM, "AdminQ event\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003673 }
3674
3675 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3676 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
Jacob Keller0da36b92017-04-19 09:25:55 -04003677 set_bit(__I40E_MDD_EVENT_PENDING, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003678 }
3679
3680 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3681 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
Jacob Keller0da36b92017-04-19 09:25:55 -04003682 set_bit(__I40E_VFLR_EVENT_PENDING, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003683 }
3684
3685 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
Jacob Keller0da36b92017-04-19 09:25:55 -04003686 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
3687 set_bit(__I40E_RESET_INTR_RECEIVED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003688 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3689 val = rd32(hw, I40E_GLGEN_RSTAT);
3690 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3691 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003692 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003693 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003694 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003695 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003696 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003697 pf->empr_count++;
Jacob Keller0da36b92017-04-19 09:25:55 -04003698 set_bit(__I40E_EMP_RESET_INTR_RECEIVED, pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003699 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003700 }
3701
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003702 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3703 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3704 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
Anjali Singhai Jain25fc0e62015-03-31 00:45:01 -07003705 dev_info(&pf->pdev->dev, "HMC error info 0x%x, HMC error data 0x%x\n",
3706 rd32(hw, I40E_PFHMC_ERRORINFO),
3707 rd32(hw, I40E_PFHMC_ERRORDATA));
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003708 }
3709
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003710 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3711 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3712
3713 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003714 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003715 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003716 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003717 }
3718
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003719 /* If a critical error is pending we have no choice but to reset the
3720 * device.
3721 * Report and mask out any remaining unexpected interrupts.
3722 */
3723 icr0_remaining = icr0 & ena_mask;
3724 if (icr0_remaining) {
3725 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3726 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003727 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003728 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003729 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003730 dev_info(&pf->pdev->dev, "device will be reset\n");
Jacob Keller0da36b92017-04-19 09:25:55 -04003731 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003732 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003733 }
3734 ena_mask &= ~icr0_remaining;
3735 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003736 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003737
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003738enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003739 /* re-enable interrupt causes */
3740 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03003741 if (!test_bit(__I40E_DOWN, pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003742 i40e_service_event_schedule(pf);
Jacob Kellerdbadbbe2017-09-07 08:05:49 -04003743 i40e_irq_dynamic_enable_icr0(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003744 }
3745
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003746 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003747}
3748
3749/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003750 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3751 * @tx_ring: tx ring to clean
3752 * @budget: how many cleans we're allowed
3753 *
3754 * Returns true if there's any budget left (e.g. the clean is finished)
3755 **/
3756static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3757{
3758 struct i40e_vsi *vsi = tx_ring->vsi;
3759 u16 i = tx_ring->next_to_clean;
3760 struct i40e_tx_buffer *tx_buf;
3761 struct i40e_tx_desc *tx_desc;
3762
3763 tx_buf = &tx_ring->tx_bi[i];
3764 tx_desc = I40E_TX_DESC(tx_ring, i);
3765 i -= tx_ring->count;
3766
3767 do {
3768 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3769
3770 /* if next_to_watch is not set then there is no work pending */
3771 if (!eop_desc)
3772 break;
3773
3774 /* prevent any other reads prior to eop_desc */
3775 read_barrier_depends();
3776
3777 /* if the descriptor isn't done, no work yet to do */
3778 if (!(eop_desc->cmd_type_offset_bsz &
3779 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3780 break;
3781
3782 /* clear next_to_watch to prevent false hangs */
3783 tx_buf->next_to_watch = NULL;
3784
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003785 tx_desc->buffer_addr = 0;
3786 tx_desc->cmd_type_offset_bsz = 0;
3787 /* move past filter desc */
3788 tx_buf++;
3789 tx_desc++;
3790 i++;
3791 if (unlikely(!i)) {
3792 i -= tx_ring->count;
3793 tx_buf = tx_ring->tx_bi;
3794 tx_desc = I40E_TX_DESC(tx_ring, 0);
3795 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003796 /* unmap skb header data */
3797 dma_unmap_single(tx_ring->dev,
3798 dma_unmap_addr(tx_buf, dma),
3799 dma_unmap_len(tx_buf, len),
3800 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003801 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3802 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003803
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003804 tx_buf->raw_buf = NULL;
3805 tx_buf->tx_flags = 0;
3806 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003807 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003808 tx_desc->buffer_addr = 0;
3809 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003810
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003811 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003812 tx_buf++;
3813 tx_desc++;
3814 i++;
3815 if (unlikely(!i)) {
3816 i -= tx_ring->count;
3817 tx_buf = tx_ring->tx_bi;
3818 tx_desc = I40E_TX_DESC(tx_ring, 0);
3819 }
3820
3821 /* update budget accounting */
3822 budget--;
3823 } while (likely(budget));
3824
3825 i += tx_ring->count;
3826 tx_ring->next_to_clean = i;
3827
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003828 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED)
Jesse Brandeburg78455482015-07-23 16:54:41 -04003829 i40e_irq_dynamic_enable(vsi, tx_ring->q_vector->v_idx);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003830
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003831 return budget > 0;
3832}
3833
3834/**
3835 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3836 * @irq: interrupt number
3837 * @data: pointer to a q_vector
3838 **/
3839static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3840{
3841 struct i40e_q_vector *q_vector = data;
3842 struct i40e_vsi *vsi;
3843
3844 if (!q_vector->tx.ring)
3845 return IRQ_HANDLED;
3846
3847 vsi = q_vector->tx.ring->vsi;
3848 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3849
3850 return IRQ_HANDLED;
3851}
3852
3853/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003854 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003855 * @vsi: the VSI being configured
3856 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003857 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003858 **/
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003859static void i40e_map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003860{
Alexander Duyck493fb302013-09-28 07:01:44 +00003861 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e152013-09-28 06:00:58 +00003862 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3863 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003864
3865 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003866 tx_ring->next = q_vector->tx.ring;
3867 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003868 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003869
Björn Töpel74608d12017-05-24 07:55:35 +02003870 /* Place XDP Tx ring in the same q_vector ring list as regular Tx */
3871 if (i40e_enabled_xdp_vsi(vsi)) {
3872 struct i40e_ring *xdp_ring = vsi->xdp_rings[qp_idx];
3873
3874 xdp_ring->q_vector = q_vector;
3875 xdp_ring->next = q_vector->tx.ring;
3876 q_vector->tx.ring = xdp_ring;
3877 q_vector->tx.count++;
3878 }
3879
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003880 rx_ring->q_vector = q_vector;
3881 rx_ring->next = q_vector->rx.ring;
3882 q_vector->rx.ring = rx_ring;
3883 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003884}
3885
3886/**
3887 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3888 * @vsi: the VSI being configured
3889 *
3890 * This function maps descriptor rings to the queue-specific vectors
3891 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3892 * one vector per queue pair, but on a constrained vector budget, we
3893 * group the queue pairs as "efficiently" as possible.
3894 **/
3895static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3896{
3897 int qp_remaining = vsi->num_queue_pairs;
3898 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003899 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003900 int v_start = 0;
3901 int qp_idx = 0;
3902
3903 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3904 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003905 * It is also important to go through all the vectors available to be
3906 * sure that if we don't use all the vectors, that the remaining vectors
3907 * are cleared. This is especially important when decreasing the
3908 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003909 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003910 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003911 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3912
3913 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3914
3915 q_vector->num_ringpairs = num_ringpairs;
3916
3917 q_vector->rx.count = 0;
3918 q_vector->tx.count = 0;
3919 q_vector->rx.ring = NULL;
3920 q_vector->tx.ring = NULL;
3921
3922 while (num_ringpairs--) {
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003923 i40e_map_vector_to_qp(vsi, v_start, qp_idx);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003924 qp_idx++;
3925 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003926 }
3927 }
3928}
3929
3930/**
3931 * i40e_vsi_request_irq - Request IRQ from the OS
3932 * @vsi: the VSI being configured
3933 * @basename: name for the vector
3934 **/
3935static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3936{
3937 struct i40e_pf *pf = vsi->back;
3938 int err;
3939
3940 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3941 err = i40e_vsi_request_irq_msix(vsi, basename);
3942 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3943 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003944 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003945 else
3946 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003947 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003948
3949 if (err)
3950 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3951
3952 return err;
3953}
3954
3955#ifdef CONFIG_NET_POLL_CONTROLLER
3956/**
Jesse Brandeburgd89d9672016-01-04 10:33:02 -08003957 * i40e_netpoll - A Polling 'interrupt' handler
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003958 * @netdev: network interface device structure
3959 *
3960 * This is used by netconsole to send skbs without having to re-enable
3961 * interrupts. It's not called while the normal interrupt routine is executing.
3962 **/
3963static void i40e_netpoll(struct net_device *netdev)
3964{
3965 struct i40e_netdev_priv *np = netdev_priv(netdev);
3966 struct i40e_vsi *vsi = np->vsi;
3967 struct i40e_pf *pf = vsi->back;
3968 int i;
3969
3970 /* if interface is down do nothing */
Jacob Keller0da36b92017-04-19 09:25:55 -04003971 if (test_bit(__I40E_VSI_DOWN, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003972 return;
3973
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003974 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3975 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003976 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003977 } else {
3978 i40e_intr(pf->pdev->irq, netdev);
3979 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003980}
3981#endif
3982
Jacob Kellerc768e492017-04-13 04:45:47 -04003983#define I40E_QTX_ENA_WAIT_COUNT 50
3984
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003985/**
Neerav Parikh23527302014-06-03 23:50:15 +00003986 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3987 * @pf: the PF being configured
3988 * @pf_q: the PF queue
3989 * @enable: enable or disable state of the queue
3990 *
3991 * This routine will wait for the given Tx queue of the PF to reach the
3992 * enabled or disabled state.
3993 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3994 * multiple retries; else will return 0 in case of success.
3995 **/
3996static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3997{
3998 int i;
3999 u32 tx_reg;
4000
4001 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
4002 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
4003 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
4004 break;
4005
Neerav Parikhf98a2002014-09-13 07:40:44 +00004006 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00004007 }
4008 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
4009 return -ETIMEDOUT;
4010
4011 return 0;
4012}
4013
4014/**
Jacob Kellerc768e492017-04-13 04:45:47 -04004015 * i40e_control_tx_q - Start or stop a particular Tx queue
4016 * @pf: the PF structure
4017 * @pf_q: the PF queue to configure
4018 * @enable: start or stop the queue
4019 *
4020 * This function enables or disables a single queue. Note that any delay
4021 * required after the operation is expected to be handled by the caller of
4022 * this function.
4023 **/
4024static void i40e_control_tx_q(struct i40e_pf *pf, int pf_q, bool enable)
4025{
4026 struct i40e_hw *hw = &pf->hw;
4027 u32 tx_reg;
4028 int i;
4029
4030 /* warn the TX unit of coming changes */
4031 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
4032 if (!enable)
4033 usleep_range(10, 20);
4034
4035 for (i = 0; i < I40E_QTX_ENA_WAIT_COUNT; i++) {
4036 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
4037 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
4038 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
4039 break;
4040 usleep_range(1000, 2000);
4041 }
4042
4043 /* Skip if the queue is already in the requested state */
4044 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
4045 return;
4046
4047 /* turn on/off the queue */
4048 if (enable) {
4049 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
4050 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
4051 } else {
4052 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
4053 }
4054
4055 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
4056}
4057
4058/**
Björn Töpel74608d12017-05-24 07:55:35 +02004059 * i40e_control_wait_tx_q - Start/stop Tx queue and wait for completion
4060 * @seid: VSI SEID
4061 * @pf: the PF structure
4062 * @pf_q: the PF queue to configure
4063 * @is_xdp: true if the queue is used for XDP
4064 * @enable: start or stop the queue
4065 **/
4066static int i40e_control_wait_tx_q(int seid, struct i40e_pf *pf, int pf_q,
4067 bool is_xdp, bool enable)
4068{
4069 int ret;
4070
4071 i40e_control_tx_q(pf, pf_q, enable);
4072
4073 /* wait for the change to finish */
4074 ret = i40e_pf_txq_wait(pf, pf_q, enable);
4075 if (ret) {
4076 dev_info(&pf->pdev->dev,
4077 "VSI seid %d %sTx ring %d %sable timeout\n",
4078 seid, (is_xdp ? "XDP " : ""), pf_q,
4079 (enable ? "en" : "dis"));
4080 }
4081
4082 return ret;
4083}
4084
4085/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004086 * i40e_vsi_control_tx - Start or stop a VSI's rings
4087 * @vsi: the VSI being configured
4088 * @enable: start or stop the rings
4089 **/
4090static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
4091{
4092 struct i40e_pf *pf = vsi->back;
Jacob Kellerc768e492017-04-13 04:45:47 -04004093 int i, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004094
4095 pf_q = vsi->base_queue;
4096 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Björn Töpel74608d12017-05-24 07:55:35 +02004097 ret = i40e_control_wait_tx_q(vsi->seid, pf,
4098 pf_q,
4099 false /*is xdp*/, enable);
4100 if (ret)
Neerav Parikh23527302014-06-03 23:50:15 +00004101 break;
Björn Töpel74608d12017-05-24 07:55:35 +02004102
4103 if (!i40e_enabled_xdp_vsi(vsi))
4104 continue;
4105
4106 ret = i40e_control_wait_tx_q(vsi->seid, pf,
4107 pf_q + vsi->alloc_queue_pairs,
4108 true /*is xdp*/, enable);
4109 if (ret)
4110 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004111 }
4112
Neerav Parikh23527302014-06-03 23:50:15 +00004113 return ret;
4114}
4115
4116/**
4117 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
4118 * @pf: the PF being configured
4119 * @pf_q: the PF queue
4120 * @enable: enable or disable state of the queue
4121 *
4122 * This routine will wait for the given Rx queue of the PF to reach the
4123 * enabled or disabled state.
4124 * Returns -ETIMEDOUT in case of failing to reach the requested state after
4125 * multiple retries; else will return 0 in case of success.
4126 **/
4127static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
4128{
4129 int i;
4130 u32 rx_reg;
4131
4132 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
4133 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
4134 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
4135 break;
4136
Neerav Parikhf98a2002014-09-13 07:40:44 +00004137 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00004138 }
4139 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
4140 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00004141
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004142 return 0;
4143}
4144
4145/**
Jacob Kellerc768e492017-04-13 04:45:47 -04004146 * i40e_control_rx_q - Start or stop a particular Rx queue
4147 * @pf: the PF structure
4148 * @pf_q: the PF queue to configure
4149 * @enable: start or stop the queue
4150 *
4151 * This function enables or disables a single queue. Note that any delay
4152 * required after the operation is expected to be handled by the caller of
4153 * this function.
4154 **/
4155static void i40e_control_rx_q(struct i40e_pf *pf, int pf_q, bool enable)
4156{
4157 struct i40e_hw *hw = &pf->hw;
4158 u32 rx_reg;
4159 int i;
4160
4161 for (i = 0; i < I40E_QTX_ENA_WAIT_COUNT; i++) {
4162 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
4163 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
4164 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
4165 break;
4166 usleep_range(1000, 2000);
4167 }
4168
4169 /* Skip if the queue is already in the requested state */
4170 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
4171 return;
4172
4173 /* turn on/off the queue */
4174 if (enable)
4175 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
4176 else
4177 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
4178
4179 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
4180}
4181
4182/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004183 * i40e_vsi_control_rx - Start or stop a VSI's rings
4184 * @vsi: the VSI being configured
4185 * @enable: start or stop the rings
4186 **/
4187static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
4188{
4189 struct i40e_pf *pf = vsi->back;
Jacob Kellerc768e492017-04-13 04:45:47 -04004190 int i, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004191
4192 pf_q = vsi->base_queue;
4193 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Jacob Kellerc768e492017-04-13 04:45:47 -04004194 i40e_control_rx_q(pf, pf_q, enable);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004195
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004196 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00004197 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
4198 if (ret) {
4199 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004200 "VSI seid %d Rx ring %d %sable timeout\n",
4201 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00004202 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004203 }
4204 }
4205
Wyborny, Carolynd08a9f62017-03-28 08:00:48 -07004206 /* Due to HW errata, on Rx disable only, the register can indicate done
4207 * before it really is. Needs 50ms to be sure
4208 */
4209 if (!enable)
4210 mdelay(50);
4211
Neerav Parikh23527302014-06-03 23:50:15 +00004212 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004213}
4214
4215/**
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004216 * i40e_vsi_start_rings - Start a VSI's rings
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004217 * @vsi: the VSI being configured
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004218 **/
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004219int i40e_vsi_start_rings(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004220{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00004221 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004222
4223 /* do rx first for enable and last for disable */
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004224 ret = i40e_vsi_control_rx(vsi, true);
4225 if (ret)
4226 return ret;
4227 ret = i40e_vsi_control_tx(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004228
4229 return ret;
4230}
4231
4232/**
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004233 * i40e_vsi_stop_rings - Stop a VSI's rings
4234 * @vsi: the VSI being configured
4235 **/
4236void i40e_vsi_stop_rings(struct i40e_vsi *vsi)
4237{
Jacob Keller34807562017-04-13 04:45:53 -04004238 /* When port TX is suspended, don't wait */
Jacob Keller0da36b92017-04-19 09:25:55 -04004239 if (test_bit(__I40E_PORT_SUSPENDED, vsi->back->state))
Jacob Keller34807562017-04-13 04:45:53 -04004240 return i40e_vsi_stop_rings_no_wait(vsi);
4241
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004242 /* do rx first for enable and last for disable
4243 * Ignore return value, we need to shutdown whatever we can
4244 */
4245 i40e_vsi_control_tx(vsi, false);
4246 i40e_vsi_control_rx(vsi, false);
4247}
4248
4249/**
Jacob Kellere4b433f2017-04-13 04:45:52 -04004250 * i40e_vsi_stop_rings_no_wait - Stop a VSI's rings and do not delay
4251 * @vsi: the VSI being shutdown
4252 *
4253 * This function stops all the rings for a VSI but does not delay to verify
4254 * that rings have been disabled. It is expected that the caller is shutting
4255 * down multiple VSIs at once and will delay together for all the VSIs after
4256 * initiating the shutdown. This is particularly useful for shutting down lots
4257 * of VFs together. Otherwise, a large delay can be incurred while configuring
4258 * each VSI in serial.
4259 **/
4260void i40e_vsi_stop_rings_no_wait(struct i40e_vsi *vsi)
4261{
4262 struct i40e_pf *pf = vsi->back;
4263 int i, pf_q;
4264
4265 pf_q = vsi->base_queue;
4266 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4267 i40e_control_tx_q(pf, pf_q, false);
4268 i40e_control_rx_q(pf, pf_q, false);
4269 }
4270}
4271
4272/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004273 * i40e_vsi_free_irq - Free the irq association with the OS
4274 * @vsi: the VSI being configured
4275 **/
4276static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
4277{
4278 struct i40e_pf *pf = vsi->back;
4279 struct i40e_hw *hw = &pf->hw;
4280 int base = vsi->base_vector;
4281 u32 val, qp;
4282 int i;
4283
4284 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4285 if (!vsi->q_vectors)
4286 return;
4287
Shannon Nelson63741842014-04-23 04:50:16 +00004288 if (!vsi->irqs_ready)
4289 return;
4290
4291 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004292 for (i = 0; i < vsi->num_q_vectors; i++) {
Alan Brady96db7762016-09-14 16:24:38 -07004293 int irq_num;
4294 u16 vector;
4295
4296 vector = i + base;
4297 irq_num = pf->msix_entries[vector].vector;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004298
4299 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00004300 if (!vsi->q_vectors[i] ||
4301 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004302 continue;
4303
Alan Brady96db7762016-09-14 16:24:38 -07004304 /* clear the affinity notifier in the IRQ descriptor */
4305 irq_set_affinity_notifier(irq_num, NULL);
Jacob Keller759dc4a2017-07-14 09:10:10 -04004306 /* remove our suggested affinity mask for this IRQ */
Alan Brady96db7762016-09-14 16:24:38 -07004307 irq_set_affinity_hint(irq_num, NULL);
4308 synchronize_irq(irq_num);
4309 free_irq(irq_num, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004310
4311 /* Tear down the interrupt queue link list
4312 *
4313 * We know that they come in pairs and always
4314 * the Rx first, then the Tx. To clear the
4315 * link list, stick the EOL value into the
4316 * next_q field of the registers.
4317 */
4318 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
4319 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4320 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4321 val |= I40E_QUEUE_END_OF_LIST
4322 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4323 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
4324
4325 while (qp != I40E_QUEUE_END_OF_LIST) {
4326 u32 next;
4327
4328 val = rd32(hw, I40E_QINT_RQCTL(qp));
4329
4330 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4331 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4332 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4333 I40E_QINT_RQCTL_INTEVENT_MASK);
4334
4335 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4336 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4337
4338 wr32(hw, I40E_QINT_RQCTL(qp), val);
4339
4340 val = rd32(hw, I40E_QINT_TQCTL(qp));
4341
4342 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
4343 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
4344
4345 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4346 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4347 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4348 I40E_QINT_TQCTL_INTEVENT_MASK);
4349
4350 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4351 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4352
4353 wr32(hw, I40E_QINT_TQCTL(qp), val);
4354 qp = next;
4355 }
4356 }
4357 } else {
4358 free_irq(pf->pdev->irq, pf);
4359
4360 val = rd32(hw, I40E_PFINT_LNKLST0);
4361 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4362 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4363 val |= I40E_QUEUE_END_OF_LIST
4364 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
4365 wr32(hw, I40E_PFINT_LNKLST0, val);
4366
4367 val = rd32(hw, I40E_QINT_RQCTL(qp));
4368 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4369 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4370 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4371 I40E_QINT_RQCTL_INTEVENT_MASK);
4372
4373 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4374 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4375
4376 wr32(hw, I40E_QINT_RQCTL(qp), val);
4377
4378 val = rd32(hw, I40E_QINT_TQCTL(qp));
4379
4380 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4381 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4382 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4383 I40E_QINT_TQCTL_INTEVENT_MASK);
4384
4385 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4386 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4387
4388 wr32(hw, I40E_QINT_TQCTL(qp), val);
4389 }
4390}
4391
4392/**
Alexander Duyck493fb302013-09-28 07:01:44 +00004393 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
4394 * @vsi: the VSI being configured
4395 * @v_idx: Index of vector to be freed
4396 *
4397 * This function frees the memory allocated to the q_vector. In addition if
4398 * NAPI is enabled it will delete any references to the NAPI struct prior
4399 * to freeing the q_vector.
4400 **/
4401static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
4402{
4403 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004404 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00004405
4406 if (!q_vector)
4407 return;
4408
4409 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004410 i40e_for_each_ring(ring, q_vector->tx)
4411 ring->q_vector = NULL;
4412
4413 i40e_for_each_ring(ring, q_vector->rx)
4414 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00004415
4416 /* only VSI w/ an associated netdev is set up w/ NAPI */
4417 if (vsi->netdev)
4418 netif_napi_del(&q_vector->napi);
4419
4420 vsi->q_vectors[v_idx] = NULL;
4421
4422 kfree_rcu(q_vector, rcu);
4423}
4424
4425/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004426 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
4427 * @vsi: the VSI being un-configured
4428 *
4429 * This frees the memory allocated to the q_vectors and
4430 * deletes references to the NAPI struct.
4431 **/
4432static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
4433{
4434 int v_idx;
4435
Alexander Duyck493fb302013-09-28 07:01:44 +00004436 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
4437 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004438}
4439
4440/**
4441 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
4442 * @pf: board private structure
4443 **/
4444static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
4445{
4446 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
4447 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4448 pci_disable_msix(pf->pdev);
4449 kfree(pf->msix_entries);
4450 pf->msix_entries = NULL;
Shannon Nelson3b444392015-02-26 16:15:57 +00004451 kfree(pf->irq_pile);
4452 pf->irq_pile = NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004453 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
4454 pci_disable_msi(pf->pdev);
4455 }
4456 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
4457}
4458
4459/**
4460 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
4461 * @pf: board private structure
4462 *
4463 * We go through and clear interrupt specific resources and reset the structure
4464 * to pre-load conditions
4465 **/
4466static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
4467{
4468 int i;
4469
Jacob Kellerc17401a2017-07-14 09:27:02 -04004470 i40e_free_misc_vector(pf);
Shannon Nelsone1477582015-02-21 06:44:33 +00004471
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004472 i40e_put_lump(pf->irq_pile, pf->iwarp_base_vector,
4473 I40E_IWARP_IRQ_PILE_ID);
4474
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004475 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00004476 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004477 if (pf->vsi[i])
4478 i40e_vsi_free_q_vectors(pf->vsi[i]);
4479 i40e_reset_interrupt_capability(pf);
4480}
4481
4482/**
4483 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
4484 * @vsi: the VSI being configured
4485 **/
4486static void i40e_napi_enable_all(struct i40e_vsi *vsi)
4487{
4488 int q_idx;
4489
4490 if (!vsi->netdev)
4491 return;
4492
Alexander Duyck13a8cd12017-03-24 15:01:42 -07004493 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++) {
4494 struct i40e_q_vector *q_vector = vsi->q_vectors[q_idx];
4495
4496 if (q_vector->rx.ring || q_vector->tx.ring)
4497 napi_enable(&q_vector->napi);
4498 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004499}
4500
4501/**
4502 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
4503 * @vsi: the VSI being configured
4504 **/
4505static void i40e_napi_disable_all(struct i40e_vsi *vsi)
4506{
4507 int q_idx;
4508
4509 if (!vsi->netdev)
4510 return;
4511
Alexander Duyck13a8cd12017-03-24 15:01:42 -07004512 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++) {
4513 struct i40e_q_vector *q_vector = vsi->q_vectors[q_idx];
4514
4515 if (q_vector->rx.ring || q_vector->tx.ring)
4516 napi_disable(&q_vector->napi);
4517 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004518}
4519
4520/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004521 * i40e_vsi_close - Shut down a VSI
4522 * @vsi: the vsi to be quelled
4523 **/
4524static void i40e_vsi_close(struct i40e_vsi *vsi)
4525{
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08004526 struct i40e_pf *pf = vsi->back;
Jacob Keller0da36b92017-04-19 09:25:55 -04004527 if (!test_and_set_bit(__I40E_VSI_DOWN, vsi->state))
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004528 i40e_down(vsi);
4529 i40e_vsi_free_irq(vsi);
4530 i40e_vsi_free_tx_resources(vsi);
4531 i40e_vsi_free_rx_resources(vsi);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04004532 vsi->current_netdev_flags = 0;
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08004533 pf->flags |= I40E_FLAG_SERVICE_CLIENT_REQUESTED;
Jacob Keller0da36b92017-04-19 09:25:55 -04004534 if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08004535 pf->flags |= I40E_FLAG_CLIENT_RESET;
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004536}
4537
4538/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004539 * i40e_quiesce_vsi - Pause a given VSI
4540 * @vsi: the VSI being paused
4541 **/
4542static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
4543{
Jacob Keller0da36b92017-04-19 09:25:55 -04004544 if (test_bit(__I40E_VSI_DOWN, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004545 return;
4546
Jacob Keller0da36b92017-04-19 09:25:55 -04004547 set_bit(__I40E_VSI_NEEDS_RESTART, vsi->state);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004548 if (vsi->netdev && netif_running(vsi->netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004549 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004550 else
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004551 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004552}
4553
4554/**
4555 * i40e_unquiesce_vsi - Resume a given VSI
4556 * @vsi: the VSI being resumed
4557 **/
4558static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
4559{
Jacob Keller0da36b92017-04-19 09:25:55 -04004560 if (!test_and_clear_bit(__I40E_VSI_NEEDS_RESTART, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004561 return;
4562
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004563 if (vsi->netdev && netif_running(vsi->netdev))
4564 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
4565 else
Shannon Nelson8276f752014-03-14 07:32:27 +00004566 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004567}
4568
4569/**
4570 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
4571 * @pf: the PF
4572 **/
4573static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
4574{
4575 int v;
4576
Mitch Williams505682c2014-05-20 08:01:37 +00004577 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004578 if (pf->vsi[v])
4579 i40e_quiesce_vsi(pf->vsi[v]);
4580 }
4581}
4582
4583/**
4584 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
4585 * @pf: the PF
4586 **/
4587static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
4588{
4589 int v;
4590
Mitch Williams505682c2014-05-20 08:01:37 +00004591 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004592 if (pf->vsi[v])
4593 i40e_unquiesce_vsi(pf->vsi[v]);
4594 }
4595}
4596
Neerav Parikh69129dc2014-11-12 00:18:46 +00004597/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004598 * i40e_vsi_wait_queues_disabled - Wait for VSI's queues to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004599 * @vsi: the VSI being configured
4600 *
Jacob Kelleraf26ce22017-04-05 07:50:58 -04004601 * Wait until all queues on a given VSI have been disabled.
Neerav Parikh69129dc2014-11-12 00:18:46 +00004602 **/
Jacob Kellere4b433f2017-04-13 04:45:52 -04004603int i40e_vsi_wait_queues_disabled(struct i40e_vsi *vsi)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004604{
4605 struct i40e_pf *pf = vsi->back;
4606 int i, pf_q, ret;
4607
4608 pf_q = vsi->base_queue;
4609 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Jacob Kelleraf26ce22017-04-05 07:50:58 -04004610 /* Check and wait for the Tx queue */
Neerav Parikh69129dc2014-11-12 00:18:46 +00004611 ret = i40e_pf_txq_wait(pf, pf_q, false);
4612 if (ret) {
4613 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004614 "VSI seid %d Tx ring %d disable timeout\n",
4615 vsi->seid, pf_q);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004616 return ret;
4617 }
Björn Töpel74608d12017-05-24 07:55:35 +02004618
4619 if (!i40e_enabled_xdp_vsi(vsi))
4620 goto wait_rx;
4621
4622 /* Check and wait for the XDP Tx queue */
4623 ret = i40e_pf_txq_wait(pf, pf_q + vsi->alloc_queue_pairs,
4624 false);
4625 if (ret) {
4626 dev_info(&pf->pdev->dev,
4627 "VSI seid %d XDP Tx ring %d disable timeout\n",
4628 vsi->seid, pf_q);
4629 return ret;
4630 }
4631wait_rx:
4632 /* Check and wait for the Rx queue */
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004633 ret = i40e_pf_rxq_wait(pf, pf_q, false);
4634 if (ret) {
4635 dev_info(&pf->pdev->dev,
4636 "VSI seid %d Rx ring %d disable timeout\n",
4637 vsi->seid, pf_q);
4638 return ret;
4639 }
4640 }
4641
Neerav Parikh69129dc2014-11-12 00:18:46 +00004642 return 0;
4643}
4644
Jacob Kellere4b433f2017-04-13 04:45:52 -04004645#ifdef CONFIG_I40E_DCB
Neerav Parikh69129dc2014-11-12 00:18:46 +00004646/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004647 * i40e_pf_wait_queues_disabled - Wait for all queues of PF VSIs to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004648 * @pf: the PF
4649 *
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004650 * This function waits for the queues to be in disabled state for all the
Neerav Parikh69129dc2014-11-12 00:18:46 +00004651 * VSIs that are managed by this PF.
4652 **/
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004653static int i40e_pf_wait_queues_disabled(struct i40e_pf *pf)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004654{
4655 int v, ret = 0;
4656
4657 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Alexander Duyckc76cb6e2017-02-21 15:55:48 -08004658 if (pf->vsi[v]) {
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004659 ret = i40e_vsi_wait_queues_disabled(pf->vsi[v]);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004660 if (ret)
4661 break;
4662 }
4663 }
4664
4665 return ret;
4666}
4667
4668#endif
Kiran Patilb03a8c12015-09-24 18:13:15 -04004669
4670/**
4671 * i40e_detect_recover_hung_queue - Function to detect and recover hung_queue
4672 * @q_idx: TX queue number
4673 * @vsi: Pointer to VSI struct
4674 *
4675 * This function checks specified queue for given VSI. Detects hung condition.
Alan Brady17daabb2017-04-05 07:50:56 -04004676 * We proactively detect hung TX queues by checking if interrupts are disabled
4677 * but there are pending descriptors. If it appears hung, attempt to recover
4678 * by triggering a SW interrupt.
Kiran Patilb03a8c12015-09-24 18:13:15 -04004679 **/
4680static void i40e_detect_recover_hung_queue(int q_idx, struct i40e_vsi *vsi)
4681{
4682 struct i40e_ring *tx_ring = NULL;
4683 struct i40e_pf *pf;
Alan Brady17daabb2017-04-05 07:50:56 -04004684 u32 val, tx_pending;
Kiran Patilb03a8c12015-09-24 18:13:15 -04004685 int i;
4686
4687 pf = vsi->back;
4688
4689 /* now that we have an index, find the tx_ring struct */
4690 for (i = 0; i < vsi->num_queue_pairs; i++) {
4691 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
4692 if (q_idx == vsi->tx_rings[i]->queue_index) {
4693 tx_ring = vsi->tx_rings[i];
4694 break;
4695 }
4696 }
4697 }
4698
4699 if (!tx_ring)
4700 return;
4701
4702 /* Read interrupt register */
4703 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4704 val = rd32(&pf->hw,
4705 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
4706 tx_ring->vsi->base_vector - 1));
4707 else
4708 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
4709
Alan Brady17daabb2017-04-05 07:50:56 -04004710 tx_pending = i40e_get_tx_pending(tx_ring);
Kiran Patilb03a8c12015-09-24 18:13:15 -04004711
Alan Brady17daabb2017-04-05 07:50:56 -04004712 /* Interrupts are disabled and TX pending is non-zero,
4713 * trigger the SW interrupt (don't wait). Worst case
4714 * there will be one extra interrupt which may result
4715 * into not cleaning any queues because queues are cleaned.
Kiran Patilb03a8c12015-09-24 18:13:15 -04004716 */
Alan Brady17daabb2017-04-05 07:50:56 -04004717 if (tx_pending && (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK)))
4718 i40e_force_wb(vsi, tx_ring->q_vector);
Kiran Patilb03a8c12015-09-24 18:13:15 -04004719}
4720
4721/**
4722 * i40e_detect_recover_hung - Function to detect and recover hung_queues
4723 * @pf: pointer to PF struct
4724 *
4725 * LAN VSI has netdev and netdev has TX queues. This function is to check
4726 * each of those TX queues if they are hung, trigger recovery by issuing
4727 * SW interrupt.
4728 **/
4729static void i40e_detect_recover_hung(struct i40e_pf *pf)
4730{
4731 struct net_device *netdev;
4732 struct i40e_vsi *vsi;
Jesse Brandeburgb85c94b2017-06-20 15:16:59 -07004733 unsigned int i;
Kiran Patilb03a8c12015-09-24 18:13:15 -04004734
4735 /* Only for LAN VSI */
4736 vsi = pf->vsi[pf->lan_vsi];
4737
4738 if (!vsi)
4739 return;
4740
4741 /* Make sure, VSI state is not DOWN/RECOVERY_PENDING */
Jacob Keller0da36b92017-04-19 09:25:55 -04004742 if (test_bit(__I40E_VSI_DOWN, vsi->back->state) ||
4743 test_bit(__I40E_RESET_RECOVERY_PENDING, vsi->back->state))
Kiran Patilb03a8c12015-09-24 18:13:15 -04004744 return;
4745
4746 /* Make sure type is MAIN VSI */
4747 if (vsi->type != I40E_VSI_MAIN)
4748 return;
4749
4750 netdev = vsi->netdev;
4751 if (!netdev)
4752 return;
4753
4754 /* Bail out if netif_carrier is not OK */
4755 if (!netif_carrier_ok(netdev))
4756 return;
4757
4758 /* Go thru' TX queues for netdev */
4759 for (i = 0; i < netdev->num_tx_queues; i++) {
4760 struct netdev_queue *q;
4761
4762 q = netdev_get_tx_queue(netdev, i);
4763 if (q)
4764 i40e_detect_recover_hung_queue(i, vsi);
4765 }
4766}
4767
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004768/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004769 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00004770 * @pf: pointer to PF
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004771 *
4772 * Get TC map for ISCSI PF type that will include iSCSI TC
4773 * and LAN TC.
4774 **/
4775static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4776{
4777 struct i40e_dcb_app_priority_table app;
4778 struct i40e_hw *hw = &pf->hw;
4779 u8 enabled_tc = 1; /* TC0 is always enabled */
4780 u8 tc, i;
4781 /* Get the iSCSI APP TLV */
4782 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4783
4784 for (i = 0; i < dcbcfg->numapps; i++) {
4785 app = dcbcfg->app[i];
4786 if (app.selector == I40E_APP_SEL_TCPIP &&
4787 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4788 tc = dcbcfg->etscfg.prioritytable[app.priority];
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004789 enabled_tc |= BIT(tc);
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004790 break;
4791 }
4792 }
4793
4794 return enabled_tc;
4795}
4796
4797/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004798 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4799 * @dcbcfg: the corresponding DCBx configuration structure
4800 *
4801 * Return the number of TCs from given DCBx configuration
4802 **/
4803static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4804{
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004805 int i, tc_unused = 0;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004806 u8 num_tc = 0;
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004807 u8 ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004808
4809 /* Scan the ETS Config Priority Table to find
4810 * traffic class enabled for a given priority
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004811 * and create a bitmask of enabled TCs
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004812 */
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004813 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++)
4814 num_tc |= BIT(dcbcfg->etscfg.prioritytable[i]);
4815
4816 /* Now scan the bitmask to check for
4817 * contiguous TCs starting with TC0
4818 */
4819 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4820 if (num_tc & BIT(i)) {
4821 if (!tc_unused) {
4822 ret++;
4823 } else {
4824 pr_err("Non-contiguous TC - Disabling DCB\n");
4825 return 1;
4826 }
4827 } else {
4828 tc_unused = 1;
4829 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004830 }
4831
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004832 /* There is always at least TC0 */
4833 if (!ret)
4834 ret = 1;
4835
4836 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004837}
4838
4839/**
4840 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4841 * @dcbcfg: the corresponding DCBx configuration structure
4842 *
4843 * Query the current DCB configuration and return the number of
4844 * traffic classes enabled from the given DCBX config
4845 **/
4846static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4847{
4848 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4849 u8 enabled_tc = 1;
4850 u8 i;
4851
4852 for (i = 0; i < num_tc; i++)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004853 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004854
4855 return enabled_tc;
4856}
4857
4858/**
4859 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4860 * @pf: PF being queried
4861 *
4862 * Return number of traffic classes enabled for the given PF
4863 **/
4864static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4865{
4866 struct i40e_hw *hw = &pf->hw;
Dave Ertman52a08ca2016-07-27 12:02:34 -07004867 u8 i, enabled_tc = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004868 u8 num_tc = 0;
4869 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4870
4871 /* If DCB is not enabled then always in single TC */
4872 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4873 return 1;
4874
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004875 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004876 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4877 return i40e_dcb_get_num_tc(dcbcfg);
4878
4879 /* MFP mode return count of enabled TCs for this PF */
4880 if (pf->hw.func_caps.iscsi)
4881 enabled_tc = i40e_get_iscsi_tc_map(pf);
4882 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004883 return 1; /* Only TC0 */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004884
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004885 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004886 if (enabled_tc & BIT(i))
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004887 num_tc++;
4888 }
4889 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004890}
4891
4892/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004893 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4894 * @pf: PF being queried
4895 *
4896 * Return a bitmap for enabled traffic classes for this PF.
4897 **/
4898static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4899{
4900 /* If DCB is not enabled for this PF then just return default TC */
4901 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
David Ertmanea6acb72016-09-20 07:10:50 -07004902 return I40E_DEFAULT_TRAFFIC_CLASS;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004903
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004904 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004905 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4906 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4907
Neerav Parikhfc51de92015-02-24 06:58:53 +00004908 /* MFP enabled and iSCSI PF type */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004909 if (pf->hw.func_caps.iscsi)
4910 return i40e_get_iscsi_tc_map(pf);
4911 else
David Ertmanea6acb72016-09-20 07:10:50 -07004912 return I40E_DEFAULT_TRAFFIC_CLASS;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004913}
4914
4915/**
4916 * i40e_vsi_get_bw_info - Query VSI BW Information
4917 * @vsi: the VSI being queried
4918 *
4919 * Returns 0 on success, negative value on failure
4920 **/
4921static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4922{
4923 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4924 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4925 struct i40e_pf *pf = vsi->back;
4926 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004927 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004928 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004929 int i;
4930
4931 /* Get the VSI level BW configuration */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004932 ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4933 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004934 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004935 "couldn't get PF vsi bw config, err %s aq_err %s\n",
4936 i40e_stat_str(&pf->hw, ret),
4937 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004938 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004939 }
4940
4941 /* Get the VSI level BW configuration per TC */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004942 ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
4943 NULL);
4944 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004945 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004946 "couldn't get PF vsi ets bw config, err %s aq_err %s\n",
4947 i40e_stat_str(&pf->hw, ret),
4948 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004949 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004950 }
4951
4952 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4953 dev_info(&pf->pdev->dev,
4954 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4955 bw_config.tc_valid_bits,
4956 bw_ets_config.tc_valid_bits);
4957 /* Still continuing */
4958 }
4959
4960 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4961 vsi->bw_max_quanta = bw_config.max_bw;
4962 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4963 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4964 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4965 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4966 vsi->bw_ets_limit_credits[i] =
4967 le16_to_cpu(bw_ets_config.credits[i]);
4968 /* 3 bits out of 4 for each TC */
4969 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4970 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004971
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004972 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004973}
4974
4975/**
4976 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4977 * @vsi: the VSI being configured
4978 * @enabled_tc: TC bitmap
4979 * @bw_credits: BW shared credits per TC
4980 *
4981 * Returns 0 on success, negative value on failure
4982 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004983static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004984 u8 *bw_share)
4985{
4986 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004987 i40e_status ret;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004988 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004989
4990 bw_data.tc_valid_bits = enabled_tc;
4991 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4992 bw_data.tc_bw_credits[i] = bw_share[i];
4993
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004994 ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4995 NULL);
4996 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004997 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004998 "AQ command Config VSI BW allocation per TC failed = %d\n",
4999 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00005000 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005001 }
5002
5003 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
5004 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
5005
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00005006 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005007}
5008
5009/**
5010 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
5011 * @vsi: the VSI being configured
5012 * @enabled_tc: TC map to be enabled
5013 *
5014 **/
5015static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
5016{
5017 struct net_device *netdev = vsi->netdev;
5018 struct i40e_pf *pf = vsi->back;
5019 struct i40e_hw *hw = &pf->hw;
5020 u8 netdev_tc = 0;
5021 int i;
5022 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
5023
5024 if (!netdev)
5025 return;
5026
5027 if (!enabled_tc) {
5028 netdev_reset_tc(netdev);
5029 return;
5030 }
5031
5032 /* Set up actual enabled TCs on the VSI */
5033 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
5034 return;
5035
5036 /* set per TC queues for the VSI */
5037 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
5038 /* Only set TC queues for enabled tcs
5039 *
5040 * e.g. For a VSI that has TC0 and TC3 enabled the
5041 * enabled_tc bitmap would be 0x00001001; the driver
5042 * will set the numtc for netdev as 2 that will be
5043 * referenced by the netdev layer as TC 0 and 1.
5044 */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005045 if (vsi->tc_config.enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005046 netdev_set_tc_queue(netdev,
5047 vsi->tc_config.tc_info[i].netdev_tc,
5048 vsi->tc_config.tc_info[i].qcount,
5049 vsi->tc_config.tc_info[i].qoffset);
5050 }
5051
5052 /* Assign UP2TC map for the VSI */
5053 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
5054 /* Get the actual TC# for the UP */
5055 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
5056 /* Get the mapped netdev TC# for the UP */
5057 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
5058 netdev_set_prio_tc_map(netdev, i, netdev_tc);
5059 }
5060}
5061
5062/**
5063 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
5064 * @vsi: the VSI being configured
5065 * @ctxt: the ctxt buffer returned from AQ VSI update param command
5066 **/
5067static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
5068 struct i40e_vsi_context *ctxt)
5069{
5070 /* copy just the sections touched not the entire info
5071 * since not all sections are valid as returned by
5072 * update vsi params
5073 */
5074 vsi->info.mapping_flags = ctxt->info.mapping_flags;
5075 memcpy(&vsi->info.queue_mapping,
5076 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
5077 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
5078 sizeof(vsi->info.tc_mapping));
5079}
5080
5081/**
5082 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
5083 * @vsi: VSI to be configured
5084 * @enabled_tc: TC bitmap
5085 *
5086 * This configures a particular VSI for TCs that are mapped to the
5087 * given TC bitmap. It uses default bandwidth share for TCs across
5088 * VSIs to configure TC for a particular VSI.
5089 *
5090 * NOTE:
5091 * It is expected that the VSI queues have been quisced before calling
5092 * this function.
5093 **/
5094static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
5095{
5096 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
5097 struct i40e_vsi_context ctxt;
5098 int ret = 0;
5099 int i;
5100
5101 /* Check if enabled_tc is same as existing or new TCs */
5102 if (vsi->tc_config.enabled_tc == enabled_tc)
5103 return ret;
5104
5105 /* Enable ETS TCs with equal BW Share for now across all VSIs */
5106 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005107 if (enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005108 bw_share[i] = 1;
5109 }
5110
5111 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
5112 if (ret) {
5113 dev_info(&vsi->back->pdev->dev,
5114 "Failed configuring TC map %d for VSI %d\n",
5115 enabled_tc, vsi->seid);
5116 goto out;
5117 }
5118
5119 /* Update Queue Pairs Mapping for currently enabled UPs */
5120 ctxt.seid = vsi->seid;
5121 ctxt.pf_num = vsi->back->hw.pf_id;
5122 ctxt.vf_num = 0;
5123 ctxt.uplink_seid = vsi->uplink_seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07005124 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005125 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
5126
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005127 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
5128 ctxt.info.valid_sections |=
5129 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
5130 ctxt.info.queueing_opt_flags |= I40E_AQ_VSI_QUE_OPT_TCP_ENA;
5131 }
5132
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005133 /* Update the VSI after updating the VSI queue-mapping information */
5134 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
5135 if (ret) {
5136 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005137 "Update vsi tc config failed, err %s aq_err %s\n",
5138 i40e_stat_str(&vsi->back->hw, ret),
5139 i40e_aq_str(&vsi->back->hw,
5140 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005141 goto out;
5142 }
5143 /* update the local VSI info with updated queue map */
5144 i40e_vsi_update_queue_map(vsi, &ctxt);
5145 vsi->info.valid_sections = 0;
5146
5147 /* Update current VSI BW information */
5148 ret = i40e_vsi_get_bw_info(vsi);
5149 if (ret) {
5150 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005151 "Failed updating vsi bw info, err %s aq_err %s\n",
5152 i40e_stat_str(&vsi->back->hw, ret),
5153 i40e_aq_str(&vsi->back->hw,
5154 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005155 goto out;
5156 }
5157
5158 /* Update the netdev TC setup */
5159 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
5160out:
5161 return ret;
5162}
5163
5164/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005165 * i40e_veb_config_tc - Configure TCs for given VEB
5166 * @veb: given VEB
5167 * @enabled_tc: TC bitmap
5168 *
5169 * Configures given TC bitmap for VEB (switching) element
5170 **/
5171int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
5172{
5173 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
5174 struct i40e_pf *pf = veb->pf;
5175 int ret = 0;
5176 int i;
5177
5178 /* No TCs or already enabled TCs just return */
5179 if (!enabled_tc || veb->enabled_tc == enabled_tc)
5180 return ret;
5181
5182 bw_data.tc_valid_bits = enabled_tc;
5183 /* bw_data.absolute_credits is not set (relative) */
5184
5185 /* Enable ETS TCs with equal BW Share for now */
5186 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005187 if (enabled_tc & BIT(i))
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005188 bw_data.tc_bw_share_credits[i] = 1;
5189 }
5190
5191 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
5192 &bw_data, NULL);
5193 if (ret) {
5194 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005195 "VEB bw config failed, err %s aq_err %s\n",
5196 i40e_stat_str(&pf->hw, ret),
5197 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005198 goto out;
5199 }
5200
5201 /* Update the BW information */
5202 ret = i40e_veb_get_bw_info(veb);
5203 if (ret) {
5204 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005205 "Failed getting veb bw config, err %s aq_err %s\n",
5206 i40e_stat_str(&pf->hw, ret),
5207 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005208 }
5209
5210out:
5211 return ret;
5212}
5213
5214#ifdef CONFIG_I40E_DCB
5215/**
5216 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
5217 * @pf: PF struct
5218 *
5219 * Reconfigure VEB/VSIs on a given PF; it is assumed that
5220 * the caller would've quiesce all the VSIs before calling
5221 * this function
5222 **/
5223static void i40e_dcb_reconfigure(struct i40e_pf *pf)
5224{
5225 u8 tc_map = 0;
5226 int ret;
5227 u8 v;
5228
5229 /* Enable the TCs available on PF to all VEBs */
5230 tc_map = i40e_pf_get_tc_map(pf);
5231 for (v = 0; v < I40E_MAX_VEB; v++) {
5232 if (!pf->veb[v])
5233 continue;
5234 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
5235 if (ret) {
5236 dev_info(&pf->pdev->dev,
5237 "Failed configuring TC for VEB seid=%d\n",
5238 pf->veb[v]->seid);
5239 /* Will try to configure as many components */
5240 }
5241 }
5242
5243 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00005244 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005245 if (!pf->vsi[v])
5246 continue;
5247
5248 /* - Enable all TCs for the LAN VSI
5249 * - For all others keep them at TC0 for now
5250 */
5251 if (v == pf->lan_vsi)
5252 tc_map = i40e_pf_get_tc_map(pf);
5253 else
David Ertmanea6acb72016-09-20 07:10:50 -07005254 tc_map = I40E_DEFAULT_TRAFFIC_CLASS;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005255
5256 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
5257 if (ret) {
5258 dev_info(&pf->pdev->dev,
5259 "Failed configuring TC for VSI seid=%d\n",
5260 pf->vsi[v]->seid);
5261 /* Will try to configure as many components */
5262 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00005263 /* Re-configure VSI vectors based on updated TC map */
5264 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005265 if (pf->vsi[v]->netdev)
5266 i40e_dcbnl_set_all(pf->vsi[v]);
5267 }
5268 }
5269}
5270
5271/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005272 * i40e_resume_port_tx - Resume port Tx
5273 * @pf: PF struct
5274 *
5275 * Resume a port's Tx and issue a PF reset in case of failure to
5276 * resume.
5277 **/
5278static int i40e_resume_port_tx(struct i40e_pf *pf)
5279{
5280 struct i40e_hw *hw = &pf->hw;
5281 int ret;
5282
5283 ret = i40e_aq_resume_port_tx(hw, NULL);
5284 if (ret) {
5285 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005286 "Resume Port Tx failed, err %s aq_err %s\n",
5287 i40e_stat_str(&pf->hw, ret),
5288 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005289 /* Schedule PF reset to recover */
Jacob Keller0da36b92017-04-19 09:25:55 -04005290 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005291 i40e_service_event_schedule(pf);
5292 }
5293
5294 return ret;
5295}
5296
5297/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005298 * i40e_init_pf_dcb - Initialize DCB configuration
5299 * @pf: PF being configured
5300 *
5301 * Query the current DCB configuration and cache it
5302 * in the hardware structure
5303 **/
5304static int i40e_init_pf_dcb(struct i40e_pf *pf)
5305{
5306 struct i40e_hw *hw = &pf->hw;
5307 int err = 0;
5308
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00005309 /* Do not enable DCB for SW1 and SW2 images even if the FW is capable */
Jacob Kellerd36e41d2017-06-23 04:24:46 -04005310 if (pf->hw_features & I40E_HW_NO_DCB_SUPPORT)
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00005311 goto out;
5312
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005313 /* Get the initial DCB configuration */
5314 err = i40e_init_dcb(hw);
5315 if (!err) {
5316 /* Device/Function is not DCBX capable */
5317 if ((!hw->func_caps.dcb) ||
5318 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
5319 dev_info(&pf->pdev->dev,
5320 "DCBX offload is not supported or is disabled for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005321 } else {
5322 /* When status is not DISABLED then DCBX in FW */
5323 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
5324 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005325
5326 pf->flags |= I40E_FLAG_DCB_CAPABLE;
Dave Ertmana0362442016-08-29 17:38:26 -07005327 /* Enable DCB tagging only when more than one TC
5328 * or explicitly disable if only one TC
5329 */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005330 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
5331 pf->flags |= I40E_FLAG_DCB_ENABLED;
Dave Ertmana0362442016-08-29 17:38:26 -07005332 else
5333 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005334 dev_dbg(&pf->pdev->dev,
5335 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005336 }
Neerav Parikh014269f2014-04-01 07:11:48 +00005337 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00005338 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005339 "Query for DCB configuration failed, err %s aq_err %s\n",
5340 i40e_stat_str(&pf->hw, err),
5341 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005342 }
5343
5344out:
5345 return err;
5346}
5347#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005348#define SPEED_SIZE 14
5349#define FC_SIZE 8
5350/**
5351 * i40e_print_link_message - print link up or down
5352 * @vsi: the VSI for which link needs a message
5353 */
Matt Jaredc156f852015-08-27 11:42:39 -04005354void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005355{
Filip Sadowski7ec9ba12016-11-08 13:05:13 -08005356 enum i40e_aq_link_speed new_speed;
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005357 struct i40e_pf *pf = vsi->back;
Shannon Nelsona9165492015-09-03 17:19:00 -04005358 char *speed = "Unknown";
5359 char *fc = "Unknown";
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005360 char *fec = "";
Mariusz Stachura68e49702017-07-12 05:46:14 -04005361 char *req_fec = "";
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005362 char *an = "";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005363
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005364 new_speed = pf->hw.phy.link_info.link_speed;
Filip Sadowski7ec9ba12016-11-08 13:05:13 -08005365
5366 if ((vsi->current_isup == isup) && (vsi->current_speed == new_speed))
Matt Jaredc156f852015-08-27 11:42:39 -04005367 return;
5368 vsi->current_isup = isup;
Filip Sadowski7ec9ba12016-11-08 13:05:13 -08005369 vsi->current_speed = new_speed;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005370 if (!isup) {
5371 netdev_info(vsi->netdev, "NIC Link is Down\n");
5372 return;
5373 }
5374
Greg Rose148c2d82014-12-11 07:06:27 +00005375 /* Warn user if link speed on NPAR enabled partition is not at
5376 * least 10GB
5377 */
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005378 if (pf->hw.func_caps.npar_enable &&
5379 (pf->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
5380 pf->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
Greg Rose148c2d82014-12-11 07:06:27 +00005381 netdev_warn(vsi->netdev,
5382 "The partition detected link speed that is less than 10Gbps\n");
5383
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005384 switch (pf->hw.phy.link_info.link_speed) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005385 case I40E_LINK_SPEED_40GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005386 speed = "40 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005387 break;
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005388 case I40E_LINK_SPEED_20GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005389 speed = "20 G";
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005390 break;
Carolyn Wyborny31232372016-11-21 13:03:48 -08005391 case I40E_LINK_SPEED_25GB:
5392 speed = "25 G";
5393 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005394 case I40E_LINK_SPEED_10GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005395 speed = "10 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005396 break;
5397 case I40E_LINK_SPEED_1GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005398 speed = "1000 M";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005399 break;
Mitch Williams5960d332014-09-13 07:40:47 +00005400 case I40E_LINK_SPEED_100MB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005401 speed = "100 M";
Mitch Williams5960d332014-09-13 07:40:47 +00005402 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005403 default:
5404 break;
5405 }
5406
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005407 switch (pf->hw.fc.current_mode) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005408 case I40E_FC_FULL:
Shannon Nelsona9165492015-09-03 17:19:00 -04005409 fc = "RX/TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005410 break;
5411 case I40E_FC_TX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005412 fc = "TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005413 break;
5414 case I40E_FC_RX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005415 fc = "RX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005416 break;
5417 default:
Shannon Nelsona9165492015-09-03 17:19:00 -04005418 fc = "None";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005419 break;
5420 }
5421
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005422 if (pf->hw.phy.link_info.link_speed == I40E_LINK_SPEED_25GB) {
Mariusz Stachura68e49702017-07-12 05:46:14 -04005423 req_fec = ", Requested FEC: None";
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005424 fec = ", FEC: None";
5425 an = ", Autoneg: False";
5426
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005427 if (pf->hw.phy.link_info.an_info & I40E_AQ_AN_COMPLETED)
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005428 an = ", Autoneg: True";
5429
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005430 if (pf->hw.phy.link_info.fec_info &
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005431 I40E_AQ_CONFIG_FEC_KR_ENA)
5432 fec = ", FEC: CL74 FC-FEC/BASE-R";
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005433 else if (pf->hw.phy.link_info.fec_info &
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005434 I40E_AQ_CONFIG_FEC_RS_ENA)
5435 fec = ", FEC: CL108 RS-FEC";
Mariusz Stachura68e49702017-07-12 05:46:14 -04005436
5437 /* 'CL108 RS-FEC' should be displayed when RS is requested, or
5438 * both RS and FC are requested
5439 */
5440 if (vsi->back->hw.phy.link_info.req_fec_info &
5441 (I40E_AQ_REQUEST_FEC_KR | I40E_AQ_REQUEST_FEC_RS)) {
5442 if (vsi->back->hw.phy.link_info.req_fec_info &
5443 I40E_AQ_REQUEST_FEC_RS)
5444 req_fec = ", Requested FEC: CL108 RS-FEC";
5445 else
5446 req_fec = ", Requested FEC: CL74 FC-FEC/BASE-R";
5447 }
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005448 }
5449
Mariusz Stachura68e49702017-07-12 05:46:14 -04005450 netdev_info(vsi->netdev, "NIC Link is Up, %sbps Full Duplex%s%s%s, Flow Control: %s\n",
5451 speed, req_fec, fec, an, fc);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005452}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005453
5454/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005455 * i40e_up_complete - Finish the last steps of bringing up a connection
5456 * @vsi: the VSI being configured
5457 **/
5458static int i40e_up_complete(struct i40e_vsi *vsi)
5459{
5460 struct i40e_pf *pf = vsi->back;
5461 int err;
5462
5463 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5464 i40e_vsi_configure_msix(vsi);
5465 else
5466 i40e_configure_msi_and_legacy(vsi);
5467
5468 /* start rings */
Filip Sadowski3aa7b742016-10-11 15:26:58 -07005469 err = i40e_vsi_start_rings(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005470 if (err)
5471 return err;
5472
Jacob Keller0da36b92017-04-19 09:25:55 -04005473 clear_bit(__I40E_VSI_DOWN, vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005474 i40e_napi_enable_all(vsi);
5475 i40e_vsi_enable_irq(vsi);
5476
5477 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
5478 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005479 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005480 netif_tx_start_all_queues(vsi->netdev);
5481 netif_carrier_on(vsi->netdev);
5482 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005483
5484 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005485 if (vsi->type == I40E_VSI_FDIR) {
5486 /* reset fd counters */
Jacob Keller097dbf52017-02-06 14:38:46 -08005487 pf->fd_add_err = 0;
5488 pf->fd_atr_cnt = 0;
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005489 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005490 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005491
5492 /* On the next run of the service_task, notify any clients of the new
5493 * opened netdev
5494 */
5495 pf->flags |= I40E_FLAG_SERVICE_CLIENT_REQUESTED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005496 i40e_service_event_schedule(pf);
5497
5498 return 0;
5499}
5500
5501/**
5502 * i40e_vsi_reinit_locked - Reset the VSI
5503 * @vsi: the VSI being configured
5504 *
5505 * Rebuild the ring structs after some configuration
5506 * has changed, e.g. MTU size.
5507 **/
5508static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
5509{
5510 struct i40e_pf *pf = vsi->back;
5511
5512 WARN_ON(in_interrupt());
Jacob Keller0da36b92017-04-19 09:25:55 -04005513 while (test_and_set_bit(__I40E_CONFIG_BUSY, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005514 usleep_range(1000, 2000);
5515 i40e_down(vsi);
5516
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005517 i40e_up(vsi);
Jacob Keller0da36b92017-04-19 09:25:55 -04005518 clear_bit(__I40E_CONFIG_BUSY, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005519}
5520
5521/**
5522 * i40e_up - Bring the connection back up after being down
5523 * @vsi: the VSI being configured
5524 **/
5525int i40e_up(struct i40e_vsi *vsi)
5526{
5527 int err;
5528
5529 err = i40e_vsi_configure(vsi);
5530 if (!err)
5531 err = i40e_up_complete(vsi);
5532
5533 return err;
5534}
5535
5536/**
5537 * i40e_down - Shutdown the connection processing
5538 * @vsi: the VSI being stopped
5539 **/
5540void i40e_down(struct i40e_vsi *vsi)
5541{
5542 int i;
5543
5544 /* It is assumed that the caller of this function
Jacob Kellerd19cb642017-04-21 13:38:05 -07005545 * sets the vsi->state __I40E_VSI_DOWN bit.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005546 */
5547 if (vsi->netdev) {
5548 netif_carrier_off(vsi->netdev);
5549 netif_tx_disable(vsi->netdev);
5550 }
5551 i40e_vsi_disable_irq(vsi);
Filip Sadowski3aa7b742016-10-11 15:26:58 -07005552 i40e_vsi_stop_rings(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005553 i40e_napi_disable_all(vsi);
5554
5555 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00005556 i40e_clean_tx_ring(vsi->tx_rings[i]);
Björn Töpel74608d12017-05-24 07:55:35 +02005557 if (i40e_enabled_xdp_vsi(vsi))
5558 i40e_clean_tx_ring(vsi->xdp_rings[i]);
Alexander Duyck9f65e152013-09-28 06:00:58 +00005559 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005560 }
Catherine Sullivanf980d442016-05-16 10:26:34 -07005561
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005562}
5563
5564/**
5565 * i40e_setup_tc - configure multiple traffic classes
5566 * @netdev: net device to configure
5567 * @tc: number of traffic classes to enable
5568 **/
5569static int i40e_setup_tc(struct net_device *netdev, u8 tc)
5570{
5571 struct i40e_netdev_priv *np = netdev_priv(netdev);
5572 struct i40e_vsi *vsi = np->vsi;
5573 struct i40e_pf *pf = vsi->back;
5574 u8 enabled_tc = 0;
5575 int ret = -EINVAL;
5576 int i;
5577
5578 /* Check if DCB enabled to continue */
5579 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
5580 netdev_info(netdev, "DCB is not enabled for adapter\n");
5581 goto exit;
5582 }
5583
5584 /* Check if MFP enabled */
5585 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
5586 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
5587 goto exit;
5588 }
5589
5590 /* Check whether tc count is within enabled limit */
5591 if (tc > i40e_pf_get_num_tc(pf)) {
5592 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
5593 goto exit;
5594 }
5595
5596 /* Generate TC map for number of tc requested */
5597 for (i = 0; i < tc; i++)
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005598 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005599
5600 /* Requesting same TC configuration as already enabled */
5601 if (enabled_tc == vsi->tc_config.enabled_tc)
5602 return 0;
5603
5604 /* Quiesce VSI queues */
5605 i40e_quiesce_vsi(vsi);
5606
5607 /* Configure VSI for enabled TCs */
5608 ret = i40e_vsi_config_tc(vsi, enabled_tc);
5609 if (ret) {
5610 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
5611 vsi->seid);
5612 goto exit;
5613 }
5614
5615 /* Unquiesce VSI */
5616 i40e_unquiesce_vsi(vsi);
5617
5618exit:
5619 return ret;
5620}
5621
Jiri Pirko2572ac52017-08-07 10:15:17 +02005622static int __i40e_setup_tc(struct net_device *netdev, enum tc_setup_type type,
Jiri Pirkode4784c2017-08-07 10:15:32 +02005623 void *type_data)
John Fastabende4c67342016-02-16 21:16:15 -08005624{
Jiri Pirkode4784c2017-08-07 10:15:32 +02005625 struct tc_mqprio_qopt *mqprio = type_data;
5626
Jiri Pirko2572ac52017-08-07 10:15:17 +02005627 if (type != TC_SETUP_MQPRIO)
Jiri Pirko38cf0422017-08-07 10:15:31 +02005628 return -EOPNOTSUPP;
Amritha Nambiar56f36ac2017-03-15 10:39:25 -07005629
Jiri Pirkode4784c2017-08-07 10:15:32 +02005630 mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS;
Amritha Nambiar56f36ac2017-03-15 10:39:25 -07005631
Jiri Pirkode4784c2017-08-07 10:15:32 +02005632 return i40e_setup_tc(netdev, mqprio->num_tc);
John Fastabende4c67342016-02-16 21:16:15 -08005633}
5634
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005635/**
5636 * i40e_open - Called when a network interface is made active
5637 * @netdev: network interface device structure
5638 *
5639 * The open entry point is called when a network interface is made
5640 * active by the system (IFF_UP). At this point all resources needed
5641 * for transmit and receive operations are allocated, the interrupt
5642 * handler is registered with the OS, the netdev watchdog subtask is
5643 * enabled, and the stack is notified that the interface is ready.
5644 *
5645 * Returns 0 on success, negative value on failure
5646 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005647int i40e_open(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005648{
5649 struct i40e_netdev_priv *np = netdev_priv(netdev);
5650 struct i40e_vsi *vsi = np->vsi;
5651 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005652 int err;
5653
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005654 /* disallow open during test or if eeprom is broken */
Jacob Keller0da36b92017-04-19 09:25:55 -04005655 if (test_bit(__I40E_TESTING, pf->state) ||
5656 test_bit(__I40E_BAD_EEPROM, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005657 return -EBUSY;
5658
5659 netif_carrier_off(netdev);
5660
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005661 err = i40e_vsi_open(vsi);
5662 if (err)
5663 return err;
5664
Jesse Brandeburg059dab62014-04-01 09:07:20 +00005665 /* configure global TSO hardware offload settings */
5666 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
5667 TCP_FLAG_FIN) >> 16);
5668 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
5669 TCP_FLAG_FIN |
5670 TCP_FLAG_CWR) >> 16);
5671 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
5672
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07005673 udp_tunnel_get_rx_info(netdev);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005674
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005675 return 0;
5676}
5677
5678/**
5679 * i40e_vsi_open -
5680 * @vsi: the VSI to open
5681 *
5682 * Finish initialization of the VSI.
5683 *
5684 * Returns 0 on success, negative value on failure
Maciej Sosin373149f2017-04-05 07:50:55 -04005685 *
5686 * Note: expects to be called while under rtnl_lock()
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005687 **/
5688int i40e_vsi_open(struct i40e_vsi *vsi)
5689{
5690 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00005691 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005692 int err;
5693
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005694 /* allocate descriptors */
5695 err = i40e_vsi_setup_tx_resources(vsi);
5696 if (err)
5697 goto err_setup_tx;
5698 err = i40e_vsi_setup_rx_resources(vsi);
5699 if (err)
5700 goto err_setup_rx;
5701
5702 err = i40e_vsi_configure(vsi);
5703 if (err)
5704 goto err_setup_rx;
5705
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005706 if (vsi->netdev) {
5707 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
5708 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
5709 err = i40e_vsi_request_irq(vsi, int_name);
5710 if (err)
5711 goto err_setup_rx;
5712
5713 /* Notify the stack of the actual queue counts. */
5714 err = netif_set_real_num_tx_queues(vsi->netdev,
5715 vsi->num_queue_pairs);
5716 if (err)
5717 goto err_set_queues;
5718
5719 err = netif_set_real_num_rx_queues(vsi->netdev,
5720 vsi->num_queue_pairs);
5721 if (err)
5722 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005723
5724 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00005725 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005726 dev_driver_string(&pf->pdev->dev),
5727 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005728 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005729
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005730 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00005731 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005732 goto err_setup_rx;
5733 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005734
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005735 err = i40e_up_complete(vsi);
5736 if (err)
5737 goto err_up_complete;
5738
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005739 return 0;
5740
5741err_up_complete:
5742 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005743err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005744 i40e_vsi_free_irq(vsi);
5745err_setup_rx:
5746 i40e_vsi_free_rx_resources(vsi);
5747err_setup_tx:
5748 i40e_vsi_free_tx_resources(vsi);
5749 if (vsi == pf->vsi[pf->lan_vsi])
Maciej Sosin373149f2017-04-05 07:50:55 -04005750 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED), true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005751
5752 return err;
5753}
5754
5755/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005756 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00005757 * @pf: Pointer to PF
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005758 *
5759 * This function destroys the hlist where all the Flow Director
5760 * filters were saved.
5761 **/
5762static void i40e_fdir_filter_exit(struct i40e_pf *pf)
5763{
5764 struct i40e_fdir_filter *filter;
Jacob Keller0e588de2017-02-06 14:38:50 -08005765 struct i40e_flex_pit *pit_entry, *tmp;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005766 struct hlist_node *node2;
5767
5768 hlist_for_each_entry_safe(filter, node2,
5769 &pf->fdir_filter_list, fdir_node) {
5770 hlist_del(&filter->fdir_node);
5771 kfree(filter);
5772 }
Jacob Keller097dbf52017-02-06 14:38:46 -08005773
Jacob Keller0e588de2017-02-06 14:38:50 -08005774 list_for_each_entry_safe(pit_entry, tmp, &pf->l3_flex_pit_list, list) {
5775 list_del(&pit_entry->list);
5776 kfree(pit_entry);
5777 }
5778 INIT_LIST_HEAD(&pf->l3_flex_pit_list);
5779
5780 list_for_each_entry_safe(pit_entry, tmp, &pf->l4_flex_pit_list, list) {
5781 list_del(&pit_entry->list);
5782 kfree(pit_entry);
5783 }
5784 INIT_LIST_HEAD(&pf->l4_flex_pit_list);
5785
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005786 pf->fdir_pf_active_filters = 0;
Jacob Keller097dbf52017-02-06 14:38:46 -08005787 pf->fd_tcp4_filter_cnt = 0;
5788 pf->fd_udp4_filter_cnt = 0;
Jacob Kellerf223c872017-02-06 14:38:51 -08005789 pf->fd_sctp4_filter_cnt = 0;
Jacob Keller097dbf52017-02-06 14:38:46 -08005790 pf->fd_ip4_filter_cnt = 0;
Jacob Keller3bcee1e2017-02-06 14:38:46 -08005791
5792 /* Reprogram the default input set for TCP/IPv4 */
5793 i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_NONF_IPV4_TCP,
5794 I40E_L3_SRC_MASK | I40E_L3_DST_MASK |
5795 I40E_L4_SRC_MASK | I40E_L4_DST_MASK);
5796
5797 /* Reprogram the default input set for UDP/IPv4 */
5798 i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_NONF_IPV4_UDP,
5799 I40E_L3_SRC_MASK | I40E_L3_DST_MASK |
5800 I40E_L4_SRC_MASK | I40E_L4_DST_MASK);
5801
5802 /* Reprogram the default input set for SCTP/IPv4 */
5803 i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_NONF_IPV4_SCTP,
5804 I40E_L3_SRC_MASK | I40E_L3_DST_MASK |
5805 I40E_L4_SRC_MASK | I40E_L4_DST_MASK);
5806
5807 /* Reprogram the default input set for Other/IPv4 */
5808 i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_NONF_IPV4_OTHER,
5809 I40E_L3_SRC_MASK | I40E_L3_DST_MASK);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005810}
5811
5812/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005813 * i40e_close - Disables a network interface
5814 * @netdev: network interface device structure
5815 *
5816 * The close entry point is called when an interface is de-activated
5817 * by the OS. The hardware is still under the driver's control, but
5818 * this netdev interface is disabled.
5819 *
5820 * Returns 0, this is not allowed to fail
5821 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005822int i40e_close(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005823{
5824 struct i40e_netdev_priv *np = netdev_priv(netdev);
5825 struct i40e_vsi *vsi = np->vsi;
5826
Shannon Nelson90ef8d42014-03-14 07:32:26 +00005827 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005828
5829 return 0;
5830}
5831
5832/**
5833 * i40e_do_reset - Start a PF or Core Reset sequence
5834 * @pf: board private structure
5835 * @reset_flags: which reset is requested
Maciej Sosin373149f2017-04-05 07:50:55 -04005836 * @lock_acquired: indicates whether or not the lock has been acquired
5837 * before this function was called.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005838 *
5839 * The essential difference in resets is that the PF Reset
5840 * doesn't clear the packet buffers, doesn't reset the PE
5841 * firmware, and doesn't bother the other PFs on the chip.
5842 **/
Maciej Sosin373149f2017-04-05 07:50:55 -04005843void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags, bool lock_acquired)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005844{
5845 u32 val;
5846
5847 WARN_ON(in_interrupt());
5848
Mitch Williams263fc482014-04-23 04:50:11 +00005849
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005850 /* do the biggest reset indicated */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005851 if (reset_flags & BIT_ULL(__I40E_GLOBAL_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005852
5853 /* Request a Global Reset
5854 *
5855 * This will start the chip's countdown to the actual full
5856 * chip reset event, and a warning interrupt to be sent
5857 * to all PFs, including the requestor. Our handler
5858 * for the warning interrupt will deal with the shutdown
5859 * and recovery of the switch setup.
5860 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005861 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005862 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5863 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5864 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5865
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005866 } else if (reset_flags & BIT_ULL(__I40E_CORE_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005867
5868 /* Request a Core Reset
5869 *
5870 * Same as Global Reset, except does *not* include the MAC/PHY
5871 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005872 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005873 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5874 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5875 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5876 i40e_flush(&pf->hw);
5877
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005878 } else if (reset_flags & BIT_ULL(__I40E_PF_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005879
5880 /* Request a PF Reset
5881 *
5882 * Resets only the PF-specific registers
5883 *
5884 * This goes directly to the tear-down and rebuild of
5885 * the switch, since we need to do all the recovery as
5886 * for the Core Reset.
5887 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005888 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Maciej Sosin373149f2017-04-05 07:50:55 -04005889 i40e_handle_reset_warning(pf, lock_acquired);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005890
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005891 } else if (reset_flags & BIT_ULL(__I40E_REINIT_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005892 int v;
5893
5894 /* Find the VSI(s) that requested a re-init */
5895 dev_info(&pf->pdev->dev,
5896 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005897 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005898 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005899
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005900 if (vsi != NULL &&
Jacob Kellerd19cb642017-04-21 13:38:05 -07005901 test_and_clear_bit(__I40E_VSI_REINIT_REQUESTED,
Jacob Keller0da36b92017-04-19 09:25:55 -04005902 vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005903 i40e_vsi_reinit_locked(pf->vsi[v]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005904 }
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005905 } else if (reset_flags & BIT_ULL(__I40E_DOWN_REQUESTED)) {
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005906 int v;
5907
5908 /* Find the VSI(s) that needs to be brought down */
5909 dev_info(&pf->pdev->dev, "VSI down requested\n");
5910 for (v = 0; v < pf->num_alloc_vsi; v++) {
5911 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005912
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005913 if (vsi != NULL &&
Jacob Kellerd19cb642017-04-21 13:38:05 -07005914 test_and_clear_bit(__I40E_VSI_DOWN_REQUESTED,
Jacob Keller0da36b92017-04-19 09:25:55 -04005915 vsi->state)) {
5916 set_bit(__I40E_VSI_DOWN, vsi->state);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005917 i40e_down(vsi);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005918 }
5919 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005920 } else {
5921 dev_info(&pf->pdev->dev,
5922 "bad reset request 0x%08x\n", reset_flags);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005923 }
5924}
5925
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005926#ifdef CONFIG_I40E_DCB
5927/**
5928 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5929 * @pf: board private structure
5930 * @old_cfg: current DCB config
5931 * @new_cfg: new DCB config
5932 **/
5933bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5934 struct i40e_dcbx_config *old_cfg,
5935 struct i40e_dcbx_config *new_cfg)
5936{
5937 bool need_reconfig = false;
5938
5939 /* Check if ETS configuration has changed */
5940 if (memcmp(&new_cfg->etscfg,
5941 &old_cfg->etscfg,
5942 sizeof(new_cfg->etscfg))) {
5943 /* If Priority Table has changed reconfig is needed */
5944 if (memcmp(&new_cfg->etscfg.prioritytable,
5945 &old_cfg->etscfg.prioritytable,
5946 sizeof(new_cfg->etscfg.prioritytable))) {
5947 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005948 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005949 }
5950
5951 if (memcmp(&new_cfg->etscfg.tcbwtable,
5952 &old_cfg->etscfg.tcbwtable,
5953 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005954 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005955
5956 if (memcmp(&new_cfg->etscfg.tsatable,
5957 &old_cfg->etscfg.tsatable,
5958 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005959 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005960 }
5961
5962 /* Check if PFC configuration has changed */
5963 if (memcmp(&new_cfg->pfc,
5964 &old_cfg->pfc,
5965 sizeof(new_cfg->pfc))) {
5966 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005967 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005968 }
5969
5970 /* Check if APP Table has changed */
5971 if (memcmp(&new_cfg->app,
5972 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005973 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005974 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005975 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005976 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005977
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005978 dev_dbg(&pf->pdev->dev, "dcb need_reconfig=%d\n", need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005979 return need_reconfig;
5980}
5981
5982/**
5983 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5984 * @pf: board private structure
5985 * @e: event info posted on ARQ
5986 **/
5987static int i40e_handle_lldp_event(struct i40e_pf *pf,
5988 struct i40e_arq_event_info *e)
5989{
5990 struct i40e_aqc_lldp_get_mib *mib =
5991 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5992 struct i40e_hw *hw = &pf->hw;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005993 struct i40e_dcbx_config tmp_dcbx_cfg;
5994 bool need_reconfig = false;
5995 int ret = 0;
5996 u8 type;
5997
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005998 /* Not DCB capable or capability disabled */
David Ertmanea6acb72016-09-20 07:10:50 -07005999 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006000 return ret;
6001
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006002 /* Ignore if event is not for Nearest Bridge */
6003 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
6004 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04006005 dev_dbg(&pf->pdev->dev, "LLDP event mib bridge type 0x%x\n", type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006006 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
6007 return ret;
6008
6009 /* Check MIB Type and return if event for Remote MIB update */
6010 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00006011 dev_dbg(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04006012 "LLDP event mib type %s\n", type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006013 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
6014 /* Update the remote cached instance and return */
6015 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
6016 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
6017 &hw->remote_dcbx_config);
6018 goto exit;
6019 }
6020
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00006021 /* Store the old configuration */
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07006022 tmp_dcbx_cfg = hw->local_dcbx_config;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00006023
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006024 /* Reset the old DCBx configuration data */
6025 memset(&hw->local_dcbx_config, 0, sizeof(hw->local_dcbx_config));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00006026 /* Get updated DCBX data from firmware */
6027 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006028 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006029 dev_info(&pf->pdev->dev,
6030 "Failed querying DCB configuration data from firmware, err %s aq_err %s\n",
6031 i40e_stat_str(&pf->hw, ret),
6032 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006033 goto exit;
6034 }
6035
6036 /* No change detected in DCBX configs */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006037 if (!memcmp(&tmp_dcbx_cfg, &hw->local_dcbx_config,
6038 sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006039 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006040 goto exit;
6041 }
6042
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006043 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg,
6044 &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006045
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006046 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg, &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006047
6048 if (!need_reconfig)
6049 goto exit;
6050
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006051 /* Enable DCB tagging only when more than one TC */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006052 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006053 pf->flags |= I40E_FLAG_DCB_ENABLED;
6054 else
6055 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
6056
Jacob Keller0da36b92017-04-19 09:25:55 -04006057 set_bit(__I40E_PORT_SUSPENDED, pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006058 /* Reconfiguration needed quiesce all VSIs */
6059 i40e_pf_quiesce_all_vsi(pf);
6060
6061 /* Changes in configuration update VEB/VSI */
6062 i40e_dcb_reconfigure(pf);
6063
Neerav Parikh2fd75f32014-11-12 00:18:20 +00006064 ret = i40e_resume_port_tx(pf);
6065
Jacob Keller0da36b92017-04-19 09:25:55 -04006066 clear_bit(__I40E_PORT_SUSPENDED, pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00006067 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00006068 if (ret)
6069 goto exit;
6070
Neerav Parikh3fe06f42016-02-17 16:12:15 -08006071 /* Wait for the PF's queues to be disabled */
6072 ret = i40e_pf_wait_queues_disabled(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00006073 if (ret) {
6074 /* Schedule PF reset to recover */
Jacob Keller0da36b92017-04-19 09:25:55 -04006075 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Parikh, Neerav11e47702015-02-21 06:43:55 +00006076 i40e_service_event_schedule(pf);
6077 } else {
Neerav Parikh2fd75f32014-11-12 00:18:20 +00006078 i40e_pf_unquiesce_all_vsi(pf);
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08006079 pf->flags |= (I40E_FLAG_SERVICE_CLIENT_REQUESTED |
6080 I40E_FLAG_CLIENT_L2_CHANGE);
Parikh, Neerav11e47702015-02-21 06:43:55 +00006081 }
6082
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006083exit:
6084 return ret;
6085}
6086#endif /* CONFIG_I40E_DCB */
6087
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006088/**
Anjali Singhai Jain233261862013-11-26 10:49:22 +00006089 * i40e_do_reset_safe - Protected reset path for userland calls.
6090 * @pf: board private structure
6091 * @reset_flags: which reset is requested
6092 *
6093 **/
6094void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
6095{
6096 rtnl_lock();
Maciej Sosin373149f2017-04-05 07:50:55 -04006097 i40e_do_reset(pf, reset_flags, true);
Anjali Singhai Jain233261862013-11-26 10:49:22 +00006098 rtnl_unlock();
6099}
6100
6101/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006102 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
6103 * @pf: board private structure
6104 * @e: event info posted on ARQ
6105 *
6106 * Handler for LAN Queue Overflow Event generated by the firmware for PF
6107 * and VF queues
6108 **/
6109static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
6110 struct i40e_arq_event_info *e)
6111{
6112 struct i40e_aqc_lan_overflow *data =
6113 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
6114 u32 queue = le32_to_cpu(data->prtdcb_rupto);
6115 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
6116 struct i40e_hw *hw = &pf->hw;
6117 struct i40e_vf *vf;
6118 u16 vf_id;
6119
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006120 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
6121 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006122
6123 /* Queue belongs to VF, find the VF and issue VF reset */
6124 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
6125 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
6126 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
6127 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
6128 vf_id -= hw->func_caps.vf_base_id;
6129 vf = &pf->vf[vf_id];
6130 i40e_vc_notify_vf_reset(vf);
6131 /* Allow VF to process pending reset notification */
6132 msleep(20);
6133 i40e_reset_vf(vf, false);
6134 }
6135}
6136
6137/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00006138 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
6139 * @pf: board private structure
6140 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006141u32 i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain12957382014-06-04 04:22:47 +00006142{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006143 u32 val, fcnt_prog;
Anjali Singhai Jain12957382014-06-04 04:22:47 +00006144
6145 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
6146 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
6147 return fcnt_prog;
6148}
6149
6150/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006151 * i40e_get_current_fd_count - Get total FD filters programmed for this PF
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006152 * @pf: board private structure
6153 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006154u32 i40e_get_current_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006155{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006156 u32 val, fcnt_prog;
6157
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006158 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
6159 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
6160 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
6161 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
6162 return fcnt_prog;
6163}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006164
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006165/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006166 * i40e_get_global_fd_count - Get total FD filters programmed on device
6167 * @pf: board private structure
6168 **/
6169u32 i40e_get_global_fd_count(struct i40e_pf *pf)
6170{
6171 u32 val, fcnt_prog;
6172
6173 val = rd32(&pf->hw, I40E_GLQF_FDCNT_0);
6174 fcnt_prog = (val & I40E_GLQF_FDCNT_0_GUARANT_CNT_MASK) +
6175 ((val & I40E_GLQF_FDCNT_0_BESTCNT_MASK) >>
6176 I40E_GLQF_FDCNT_0_BESTCNT_SHIFT);
6177 return fcnt_prog;
6178}
6179
6180/**
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006181 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
6182 * @pf: board private structure
6183 **/
6184void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
6185{
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04006186 struct i40e_fdir_filter *filter;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006187 u32 fcnt_prog, fcnt_avail;
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04006188 struct hlist_node *node;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006189
Jacob Keller0da36b92017-04-19 09:25:55 -04006190 if (test_bit(__I40E_FD_FLUSH_REQUESTED, pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006191 return;
6192
Jacob Keller47994c12017-04-19 09:25:57 -04006193 /* Check if we have enough room to re-enable FDir SB capability. */
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006194 fcnt_prog = i40e_get_global_fd_count(pf);
Anjali Singhai Jain12957382014-06-04 04:22:47 +00006195 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006196 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
6197 (pf->fd_add_err == 0) ||
6198 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Jacob Keller47994c12017-04-19 09:25:57 -04006199 if (pf->flags & I40E_FLAG_FD_SB_AUTO_DISABLED) {
6200 pf->flags &= ~I40E_FLAG_FD_SB_AUTO_DISABLED;
6201 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
6202 (I40E_DEBUG_FD & pf->hw.debug_mask))
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04006203 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006204 }
6205 }
Jacob Kellera3417d22016-09-06 18:05:10 -07006206
Jacob Keller47994c12017-04-19 09:25:57 -04006207 /* We should wait for even more space before re-enabling ATR.
6208 * Additionally, we cannot enable ATR as long as we still have TCP SB
6209 * rules active.
Jacob Kellera3417d22016-09-06 18:05:10 -07006210 */
Jacob Keller47994c12017-04-19 09:25:57 -04006211 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) &&
6212 (pf->fd_tcp4_filter_cnt == 0)) {
6213 if (pf->flags & I40E_FLAG_FD_ATR_AUTO_DISABLED) {
6214 pf->flags &= ~I40E_FLAG_FD_ATR_AUTO_DISABLED;
6215 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
6216 (I40E_DEBUG_FD & pf->hw.debug_mask))
Jacob Kellera3417d22016-09-06 18:05:10 -07006217 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table and there are no conflicting ntuple rules\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006218 }
6219 }
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04006220
6221 /* if hw had a problem adding a filter, delete it */
6222 if (pf->fd_inv > 0) {
6223 hlist_for_each_entry_safe(filter, node,
6224 &pf->fdir_filter_list, fdir_node) {
6225 if (filter->fd_id == pf->fd_inv) {
6226 hlist_del(&filter->fdir_node);
6227 kfree(filter);
6228 pf->fdir_pf_active_filters--;
Filip Sadowski013df592017-08-29 05:32:38 -04006229 pf->fd_inv = 0;
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04006230 }
6231 }
6232 }
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006233}
6234
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006235#define I40E_MIN_FD_FLUSH_INTERVAL 10
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006236#define I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE 30
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006237/**
6238 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
6239 * @pf: board private structure
6240 **/
6241static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
6242{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006243 unsigned long min_flush_time;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006244 int flush_wait_retry = 50;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006245 bool disable_atr = false;
6246 int fd_room;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006247 int reg;
6248
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006249 if (!time_after(jiffies, pf->fd_flush_timestamp +
6250 (I40E_MIN_FD_FLUSH_INTERVAL * HZ)))
6251 return;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006252
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006253 /* If the flush is happening too quick and we have mostly SB rules we
6254 * should not re-enable ATR for some time.
6255 */
6256 min_flush_time = pf->fd_flush_timestamp +
6257 (I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE * HZ);
6258 fd_room = pf->fdir_pf_filter_count - pf->fdir_pf_active_filters;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006259
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006260 if (!(time_after(jiffies, min_flush_time)) &&
6261 (fd_room < I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) {
6262 if (I40E_DEBUG_FD & pf->hw.debug_mask)
6263 dev_info(&pf->pdev->dev, "ATR disabled, not enough FD filter space.\n");
6264 disable_atr = true;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006265 }
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006266
6267 pf->fd_flush_timestamp = jiffies;
Jacob Keller47994c12017-04-19 09:25:57 -04006268 pf->flags |= I40E_FLAG_FD_ATR_AUTO_DISABLED;
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006269 /* flush all filters */
6270 wr32(&pf->hw, I40E_PFQF_CTL_1,
6271 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
6272 i40e_flush(&pf->hw);
6273 pf->fd_flush_cnt++;
6274 pf->fd_add_err = 0;
6275 do {
6276 /* Check FD flush status every 5-6msec */
6277 usleep_range(5000, 6000);
6278 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
6279 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
6280 break;
6281 } while (flush_wait_retry--);
6282 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
6283 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
6284 } else {
6285 /* replay sideband filters */
6286 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
Jacob Keller097dbf52017-02-06 14:38:46 -08006287 if (!disable_atr && !pf->fd_tcp4_filter_cnt)
Jacob Keller47994c12017-04-19 09:25:57 -04006288 pf->flags &= ~I40E_FLAG_FD_ATR_AUTO_DISABLED;
Jacob Keller0da36b92017-04-19 09:25:55 -04006289 clear_bit(__I40E_FD_FLUSH_REQUESTED, pf->state);
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006290 if (I40E_DEBUG_FD & pf->hw.debug_mask)
6291 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
6292 }
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006293}
6294
6295/**
6296 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
6297 * @pf: board private structure
6298 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006299u32 i40e_get_current_atr_cnt(struct i40e_pf *pf)
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006300{
6301 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
6302}
6303
6304/* We can see up to 256 filter programming desc in transit if the filters are
6305 * being applied really fast; before we see the first
6306 * filter miss error on Rx queue 0. Accumulating enough error messages before
6307 * reacting will make sure we don't cause flush too often.
6308 */
6309#define I40E_MAX_FD_PROGRAM_ERROR 256
6310
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006311/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006312 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
6313 * @pf: board private structure
6314 **/
6315static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
6316{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006317
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006318 /* if interface is down do nothing */
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03006319 if (test_bit(__I40E_DOWN, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006320 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006321
Jacob Keller0da36b92017-04-19 09:25:55 -04006322 if (test_bit(__I40E_FD_FLUSH_REQUESTED, pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006323 i40e_fdir_flush_and_replay(pf);
6324
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006325 i40e_fdir_check_and_reenable(pf);
6326
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006327}
6328
6329/**
6330 * i40e_vsi_link_event - notify VSI of a link event
6331 * @vsi: vsi to be notified
6332 * @link_up: link up or down
6333 **/
6334static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
6335{
Jacob Keller0da36b92017-04-19 09:25:55 -04006336 if (!vsi || test_bit(__I40E_VSI_DOWN, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006337 return;
6338
6339 switch (vsi->type) {
6340 case I40E_VSI_MAIN:
6341 if (!vsi->netdev || !vsi->netdev_registered)
6342 break;
6343
6344 if (link_up) {
6345 netif_carrier_on(vsi->netdev);
6346 netif_tx_wake_all_queues(vsi->netdev);
6347 } else {
6348 netif_carrier_off(vsi->netdev);
6349 netif_tx_stop_all_queues(vsi->netdev);
6350 }
6351 break;
6352
6353 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006354 case I40E_VSI_VMDQ2:
6355 case I40E_VSI_CTRL:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06006356 case I40E_VSI_IWARP:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006357 case I40E_VSI_MIRROR:
6358 default:
6359 /* there is no notification for other VSIs */
6360 break;
6361 }
6362}
6363
6364/**
6365 * i40e_veb_link_event - notify elements on the veb of a link event
6366 * @veb: veb to be notified
6367 * @link_up: link up or down
6368 **/
6369static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
6370{
6371 struct i40e_pf *pf;
6372 int i;
6373
6374 if (!veb || !veb->pf)
6375 return;
6376 pf = veb->pf;
6377
6378 /* depth first... */
6379 for (i = 0; i < I40E_MAX_VEB; i++)
6380 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
6381 i40e_veb_link_event(pf->veb[i], link_up);
6382
6383 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00006384 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006385 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
6386 i40e_vsi_link_event(pf->vsi[i], link_up);
6387}
6388
6389/**
6390 * i40e_link_event - Update netif_carrier status
6391 * @pf: board private structure
6392 **/
6393static void i40e_link_event(struct i40e_pf *pf)
6394{
Mitch Williams320684c2014-10-17 03:14:43 +00006395 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006396 u8 new_link_speed, old_link_speed;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006397 i40e_status status;
6398 bool new_link, old_link;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006399
Catherine Sullivan1f9610e2015-10-21 19:47:09 -04006400 /* save off old link status information */
6401 pf->hw.phy.link_info_old = pf->hw.phy.link_info;
6402
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006403 /* set this to force the get_link_status call to refresh state */
6404 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006405
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006406 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006407
6408 status = i40e_get_link_status(&pf->hw, &new_link);
Harshitha Ramamurthyae136702016-12-12 15:44:16 -08006409
6410 /* On success, disable temp link polling */
6411 if (status == I40E_SUCCESS) {
6412 if (pf->flags & I40E_FLAG_TEMP_LINK_POLLING)
6413 pf->flags &= ~I40E_FLAG_TEMP_LINK_POLLING;
6414 } else {
6415 /* Enable link polling temporarily until i40e_get_link_status
6416 * returns I40E_SUCCESS
6417 */
6418 pf->flags |= I40E_FLAG_TEMP_LINK_POLLING;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006419 dev_dbg(&pf->pdev->dev, "couldn't get link state, status: %d\n",
6420 status);
6421 return;
6422 }
6423
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006424 old_link_speed = pf->hw.phy.link_info_old.link_speed;
6425 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006426
6427 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006428 new_link_speed == old_link_speed &&
Jacob Keller0da36b92017-04-19 09:25:55 -04006429 (test_bit(__I40E_VSI_DOWN, vsi->state) ||
Mitch Williams320684c2014-10-17 03:14:43 +00006430 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006431 return;
Mitch Williams320684c2014-10-17 03:14:43 +00006432
Sudheer Mogilappagari9a034492017-07-14 09:10:16 -04006433 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006434
6435 /* Notify the base of the switch tree connected to
6436 * the link. Floating VEBs are not notified.
6437 */
6438 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
6439 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
6440 else
Mitch Williams320684c2014-10-17 03:14:43 +00006441 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006442
6443 if (pf->vf)
6444 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006445
6446 if (pf->flags & I40E_FLAG_PTP)
6447 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006448}
6449
6450/**
Shannon Nelson21536712014-10-25 10:35:25 +00006451 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006452 * @pf: board private structure
6453 **/
6454static void i40e_watchdog_subtask(struct i40e_pf *pf)
6455{
6456 int i;
6457
6458 /* if interface is down do nothing */
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03006459 if (test_bit(__I40E_DOWN, pf->state) ||
Jacob Keller0da36b92017-04-19 09:25:55 -04006460 test_bit(__I40E_CONFIG_BUSY, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006461 return;
6462
Shannon Nelson21536712014-10-25 10:35:25 +00006463 /* make sure we don't do these things too often */
6464 if (time_before(jiffies, (pf->service_timer_previous +
6465 pf->service_timer_period)))
6466 return;
6467 pf->service_timer_previous = jiffies;
6468
Harshitha Ramamurthyae136702016-12-12 15:44:16 -08006469 if ((pf->flags & I40E_FLAG_LINK_POLLING_ENABLED) ||
6470 (pf->flags & I40E_FLAG_TEMP_LINK_POLLING))
Shannon Nelson9ac77262015-08-27 11:42:40 -04006471 i40e_link_event(pf);
Shannon Nelson21536712014-10-25 10:35:25 +00006472
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006473 /* Update the stats for active netdevs so the network stack
6474 * can look at updated numbers whenever it cares to
6475 */
Mitch Williams505682c2014-05-20 08:01:37 +00006476 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006477 if (pf->vsi[i] && pf->vsi[i]->netdev)
6478 i40e_update_stats(pf->vsi[i]);
6479
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04006480 if (pf->flags & I40E_FLAG_VEB_STATS_ENABLED) {
6481 /* Update the stats for the active switching components */
6482 for (i = 0; i < I40E_MAX_VEB; i++)
6483 if (pf->veb[i])
6484 i40e_update_veb_stats(pf->veb[i]);
6485 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006486
Jacob Keller61189552017-05-03 10:29:01 -07006487 i40e_ptp_rx_hang(pf);
Jacob Keller0bc07062017-05-03 10:29:02 -07006488 i40e_ptp_tx_hang(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006489}
6490
6491/**
6492 * i40e_reset_subtask - Set up for resetting the device and driver
6493 * @pf: board private structure
6494 **/
6495static void i40e_reset_subtask(struct i40e_pf *pf)
6496{
6497 u32 reset_flags = 0;
6498
Jacob Keller0da36b92017-04-19 09:25:55 -04006499 if (test_bit(__I40E_REINIT_REQUESTED, pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006500 reset_flags |= BIT(__I40E_REINIT_REQUESTED);
Jacob Keller0da36b92017-04-19 09:25:55 -04006501 clear_bit(__I40E_REINIT_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006502 }
Jacob Keller0da36b92017-04-19 09:25:55 -04006503 if (test_bit(__I40E_PF_RESET_REQUESTED, pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006504 reset_flags |= BIT(__I40E_PF_RESET_REQUESTED);
Jacob Keller0da36b92017-04-19 09:25:55 -04006505 clear_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006506 }
Jacob Keller0da36b92017-04-19 09:25:55 -04006507 if (test_bit(__I40E_CORE_RESET_REQUESTED, pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006508 reset_flags |= BIT(__I40E_CORE_RESET_REQUESTED);
Jacob Keller0da36b92017-04-19 09:25:55 -04006509 clear_bit(__I40E_CORE_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006510 }
Jacob Keller0da36b92017-04-19 09:25:55 -04006511 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006512 reset_flags |= BIT(__I40E_GLOBAL_RESET_REQUESTED);
Jacob Keller0da36b92017-04-19 09:25:55 -04006513 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006514 }
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03006515 if (test_bit(__I40E_DOWN_REQUESTED, pf->state)) {
6516 reset_flags |= BIT(__I40E_DOWN_REQUESTED);
6517 clear_bit(__I40E_DOWN_REQUESTED, pf->state);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006518 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006519
6520 /* If there's a recovery already waiting, it takes
6521 * precedence before starting a new reset sequence.
6522 */
Jacob Keller0da36b92017-04-19 09:25:55 -04006523 if (test_bit(__I40E_RESET_INTR_RECEIVED, pf->state)) {
Maciej Sosin373149f2017-04-05 07:50:55 -04006524 i40e_prep_for_reset(pf, false);
6525 i40e_reset(pf);
6526 i40e_rebuild(pf, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006527 }
6528
6529 /* If we're already down or resetting, just bail */
6530 if (reset_flags &&
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03006531 !test_bit(__I40E_DOWN, pf->state) &&
Jacob Keller0da36b92017-04-19 09:25:55 -04006532 !test_bit(__I40E_CONFIG_BUSY, pf->state)) {
Jacob Kellerdfc4ff62017-06-07 05:43:13 -04006533 i40e_do_reset(pf, reset_flags, false);
Maciej Sosin373149f2017-04-05 07:50:55 -04006534 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006535}
6536
6537/**
6538 * i40e_handle_link_event - Handle link event
6539 * @pf: board private structure
6540 * @e: event info posted on ARQ
6541 **/
6542static void i40e_handle_link_event(struct i40e_pf *pf,
6543 struct i40e_arq_event_info *e)
6544{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006545 struct i40e_aqc_get_link_status *status =
6546 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006547
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006548 /* Do a new status request to re-enable LSE reporting
6549 * and load new status information into the hw struct
6550 * This completely ignores any state information
6551 * in the ARQ event info, instead choosing to always
6552 * issue the AQ update link status command.
6553 */
6554 i40e_link_event(pf);
6555
Filip Sadowski9a858172017-08-29 05:32:37 -04006556 /* Check if module meets thermal requirements */
6557 if (status->phy_type == I40E_PHY_TYPE_NOT_SUPPORTED_HIGH_TEMP) {
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00006558 dev_err(&pf->pdev->dev,
Filip Sadowski9a858172017-08-29 05:32:37 -04006559 "Rx/Tx is disabled on this device because the module does not meet thermal requirements.\n");
6560 dev_err(&pf->pdev->dev,
6561 "Refer to the Intel(R) Ethernet Adapters and Devices User Guide for a list of supported modules.\n");
6562 } else {
6563 /* check for unqualified module, if link is down, suppress
6564 * the message if link was forced to be down.
6565 */
6566 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
6567 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
6568 (!(status->link_info & I40E_AQ_LINK_UP)) &&
6569 (!(pf->flags & I40E_FLAG_LINK_DOWN_ON_CLOSE_ENABLED))) {
6570 dev_err(&pf->pdev->dev,
6571 "Rx/Tx is disabled on this device because an unsupported SFP module type was detected.\n");
6572 dev_err(&pf->pdev->dev,
6573 "Refer to the Intel(R) Ethernet Adapters and Devices User Guide for a list of supported modules.\n");
6574 }
6575 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006576}
6577
6578/**
6579 * i40e_clean_adminq_subtask - Clean the AdminQ rings
6580 * @pf: board private structure
6581 **/
6582static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
6583{
6584 struct i40e_arq_event_info event;
6585 struct i40e_hw *hw = &pf->hw;
6586 u16 pending, i = 0;
6587 i40e_status ret;
6588 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00006589 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006590 u32 val;
6591
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006592 /* Do not run clean AQ when PF reset fails */
Jacob Keller0da36b92017-04-19 09:25:55 -04006593 if (test_bit(__I40E_RESET_FAILED, pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006594 return;
6595
Shannon Nelson86df2422014-05-20 08:01:35 +00006596 /* check for error indications */
6597 val = rd32(&pf->hw, pf->hw.aq.arq.len);
6598 oldval = val;
6599 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006600 if (hw->debug_mask & I40E_DEBUG_AQ)
6601 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006602 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
6603 }
6604 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006605 if (hw->debug_mask & I40E_DEBUG_AQ)
6606 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006607 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
Mitch Williams1d0a4ad2015-12-23 12:05:48 -08006608 pf->arq_overflows++;
Shannon Nelson86df2422014-05-20 08:01:35 +00006609 }
6610 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006611 if (hw->debug_mask & I40E_DEBUG_AQ)
6612 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006613 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
6614 }
6615 if (oldval != val)
6616 wr32(&pf->hw, pf->hw.aq.arq.len, val);
6617
6618 val = rd32(&pf->hw, pf->hw.aq.asq.len);
6619 oldval = val;
6620 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006621 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6622 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006623 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
6624 }
6625 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006626 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6627 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006628 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
6629 }
6630 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006631 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6632 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006633 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
6634 }
6635 if (oldval != val)
6636 wr32(&pf->hw, pf->hw.aq.asq.len, val);
6637
Mitch Williams1001dc32014-11-11 20:02:19 +00006638 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
6639 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006640 if (!event.msg_buf)
6641 return;
6642
6643 do {
6644 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00006645 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006646 break;
Mitch Williams56497972014-06-04 08:45:18 +00006647 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006648 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
6649 break;
6650 }
6651
6652 opcode = le16_to_cpu(event.desc.opcode);
6653 switch (opcode) {
6654
6655 case i40e_aqc_opc_get_link_status:
6656 i40e_handle_link_event(pf, &event);
6657 break;
6658 case i40e_aqc_opc_send_msg_to_pf:
6659 ret = i40e_vc_process_vf_msg(pf,
6660 le16_to_cpu(event.desc.retval),
6661 le32_to_cpu(event.desc.cookie_high),
6662 le32_to_cpu(event.desc.cookie_low),
6663 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00006664 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006665 break;
6666 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006667 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006668#ifdef CONFIG_I40E_DCB
6669 rtnl_lock();
6670 ret = i40e_handle_lldp_event(pf, &event);
6671 rtnl_unlock();
6672#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006673 break;
6674 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006675 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006676 i40e_handle_lan_overflow_event(pf, &event);
6677 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00006678 case i40e_aqc_opc_send_msg_to_peer:
6679 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
6680 break;
Shannon Nelson91a0f932015-03-19 14:32:01 -07006681 case i40e_aqc_opc_nvm_erase:
6682 case i40e_aqc_opc_nvm_update:
Michal Kosiarz00ada502015-11-19 11:34:20 -08006683 case i40e_aqc_opc_oem_post_update:
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08006684 i40e_debug(&pf->hw, I40E_DEBUG_NVM,
6685 "ARQ NVM operation 0x%04x completed\n",
6686 opcode);
Shannon Nelson91a0f932015-03-19 14:32:01 -07006687 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006688 default:
6689 dev_info(&pf->pdev->dev,
Shannon Nelson56e5ca62016-03-10 14:59:48 -08006690 "ARQ: Unknown event 0x%04x ignored\n",
Shannon Nelson0467bc92013-12-18 13:45:58 +00006691 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006692 break;
6693 }
Christopher N Bednarz1fca3262017-03-10 12:22:03 -08006694 } while (i++ < pf->adminq_work_limit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006695
Christopher N Bednarz1fca3262017-03-10 12:22:03 -08006696 if (i < pf->adminq_work_limit)
Jacob Keller0da36b92017-04-19 09:25:55 -04006697 clear_bit(__I40E_ADMINQ_EVENT_PENDING, pf->state);
Christopher N Bednarz1fca3262017-03-10 12:22:03 -08006698
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006699 /* re-enable Admin queue interrupt cause */
6700 val = rd32(hw, I40E_PFINT_ICR0_ENA);
6701 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
6702 wr32(hw, I40E_PFINT_ICR0_ENA, val);
6703 i40e_flush(hw);
6704
6705 kfree(event.msg_buf);
6706}
6707
6708/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006709 * i40e_verify_eeprom - make sure eeprom is good to use
6710 * @pf: board private structure
6711 **/
6712static void i40e_verify_eeprom(struct i40e_pf *pf)
6713{
6714 int err;
6715
6716 err = i40e_diag_eeprom_test(&pf->hw);
6717 if (err) {
6718 /* retry in case of garbage read */
6719 err = i40e_diag_eeprom_test(&pf->hw);
6720 if (err) {
6721 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
6722 err);
Jacob Keller0da36b92017-04-19 09:25:55 -04006723 set_bit(__I40E_BAD_EEPROM, pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006724 }
6725 }
6726
Jacob Keller0da36b92017-04-19 09:25:55 -04006727 if (!err && test_bit(__I40E_BAD_EEPROM, pf->state)) {
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006728 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
Jacob Keller0da36b92017-04-19 09:25:55 -04006729 clear_bit(__I40E_BAD_EEPROM, pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006730 }
6731}
6732
6733/**
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006734 * i40e_enable_pf_switch_lb
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006735 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006736 *
6737 * enable switch loop back or die - no point in a return value
6738 **/
6739static void i40e_enable_pf_switch_lb(struct i40e_pf *pf)
6740{
6741 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6742 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006743 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006744
6745 ctxt.seid = pf->main_vsi_seid;
6746 ctxt.pf_num = pf->hw.pf_id;
6747 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006748 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6749 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006750 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006751 "couldn't get PF vsi config, err %s aq_err %s\n",
6752 i40e_stat_str(&pf->hw, ret),
6753 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006754 return;
6755 }
6756 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6757 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6758 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6759
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006760 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6761 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006762 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006763 "update vsi switch failed, err %s aq_err %s\n",
6764 i40e_stat_str(&pf->hw, ret),
6765 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006766 }
6767}
6768
6769/**
6770 * i40e_disable_pf_switch_lb
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006771 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006772 *
6773 * disable switch loop back or die - no point in a return value
6774 **/
6775static void i40e_disable_pf_switch_lb(struct i40e_pf *pf)
6776{
6777 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6778 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006779 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006780
6781 ctxt.seid = pf->main_vsi_seid;
6782 ctxt.pf_num = pf->hw.pf_id;
6783 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006784 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6785 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006786 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006787 "couldn't get PF vsi config, err %s aq_err %s\n",
6788 i40e_stat_str(&pf->hw, ret),
6789 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006790 return;
6791 }
6792 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6793 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6794 ctxt.info.switch_id &= ~cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6795
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006796 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6797 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006798 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006799 "update vsi switch failed, err %s aq_err %s\n",
6800 i40e_stat_str(&pf->hw, ret),
6801 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006802 }
6803}
6804
6805/**
Neerav Parikh51616012015-02-06 08:52:14 +00006806 * i40e_config_bridge_mode - Configure the HW bridge mode
6807 * @veb: pointer to the bridge instance
6808 *
6809 * Configure the loop back mode for the LAN VSI that is downlink to the
6810 * specified HW bridge instance. It is expected this function is called
6811 * when a new HW bridge is instantiated.
6812 **/
6813static void i40e_config_bridge_mode(struct i40e_veb *veb)
6814{
6815 struct i40e_pf *pf = veb->pf;
6816
Shannon Nelson6dec1012015-09-28 14:12:30 -04006817 if (pf->hw.debug_mask & I40E_DEBUG_LAN)
6818 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
6819 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
Neerav Parikh51616012015-02-06 08:52:14 +00006820 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
6821 i40e_disable_pf_switch_lb(pf);
6822 else
6823 i40e_enable_pf_switch_lb(pf);
6824}
6825
6826/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006827 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
6828 * @veb: pointer to the VEB instance
6829 *
6830 * This is a recursive function that first builds the attached VSIs then
6831 * recurses in to build the next layer of VEB. We track the connections
6832 * through our own index numbers because the seid's from the HW could
6833 * change across the reset.
6834 **/
6835static int i40e_reconstitute_veb(struct i40e_veb *veb)
6836{
6837 struct i40e_vsi *ctl_vsi = NULL;
6838 struct i40e_pf *pf = veb->pf;
6839 int v, veb_idx;
6840 int ret;
6841
6842 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006843 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006844 if (pf->vsi[v] &&
6845 pf->vsi[v]->veb_idx == veb->idx &&
6846 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
6847 ctl_vsi = pf->vsi[v];
6848 break;
6849 }
6850 }
6851 if (!ctl_vsi) {
6852 dev_info(&pf->pdev->dev,
6853 "missing owner VSI for veb_idx %d\n", veb->idx);
6854 ret = -ENOENT;
6855 goto end_reconstitute;
6856 }
6857 if (ctl_vsi != pf->vsi[pf->lan_vsi])
6858 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
6859 ret = i40e_add_vsi(ctl_vsi);
6860 if (ret) {
6861 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006862 "rebuild of veb_idx %d owner VSI failed: %d\n",
6863 veb->idx, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006864 goto end_reconstitute;
6865 }
6866 i40e_vsi_reset_stats(ctl_vsi);
6867
6868 /* create the VEB in the switch and move the VSI onto the VEB */
6869 ret = i40e_add_veb(veb, ctl_vsi);
6870 if (ret)
6871 goto end_reconstitute;
6872
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07006873 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
6874 veb->bridge_mode = BRIDGE_MODE_VEB;
6875 else
6876 veb->bridge_mode = BRIDGE_MODE_VEPA;
Neerav Parikh51616012015-02-06 08:52:14 +00006877 i40e_config_bridge_mode(veb);
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00006878
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006879 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006880 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006881 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
6882 continue;
6883
6884 if (pf->vsi[v]->veb_idx == veb->idx) {
6885 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04006886
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006887 vsi->uplink_seid = veb->seid;
6888 ret = i40e_add_vsi(vsi);
6889 if (ret) {
6890 dev_info(&pf->pdev->dev,
6891 "rebuild of vsi_idx %d failed: %d\n",
6892 v, ret);
6893 goto end_reconstitute;
6894 }
6895 i40e_vsi_reset_stats(vsi);
6896 }
6897 }
6898
6899 /* create any VEBs attached to this VEB - RECURSION */
6900 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
6901 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
6902 pf->veb[veb_idx]->uplink_seid = veb->seid;
6903 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
6904 if (ret)
6905 break;
6906 }
6907 }
6908
6909end_reconstitute:
6910 return ret;
6911}
6912
6913/**
6914 * i40e_get_capabilities - get info about the HW
6915 * @pf: the PF struct
6916 **/
6917static int i40e_get_capabilities(struct i40e_pf *pf)
6918{
6919 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
6920 u16 data_size;
6921 int buf_len;
6922 int err;
6923
6924 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6925 do {
6926 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6927 if (!cap_buf)
6928 return -ENOMEM;
6929
6930 /* this loads the data into the hw struct for us */
6931 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6932 &data_size,
6933 i40e_aqc_opc_list_func_capabilities,
6934 NULL);
6935 /* data loaded, buffer no longer needed */
6936 kfree(cap_buf);
6937
6938 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6939 /* retry with a larger buffer */
6940 buf_len = data_size;
6941 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6942 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006943 "capability discovery failed, err %s aq_err %s\n",
6944 i40e_stat_str(&pf->hw, err),
6945 i40e_aq_str(&pf->hw,
6946 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006947 return -ENODEV;
6948 }
6949 } while (err);
6950
6951 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6952 dev_info(&pf->pdev->dev,
6953 "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",
6954 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6955 pf->hw.func_caps.num_msix_vectors,
6956 pf->hw.func_caps.num_msix_vectors_vf,
6957 pf->hw.func_caps.fd_filters_guaranteed,
6958 pf->hw.func_caps.fd_filters_best_effort,
6959 pf->hw.func_caps.num_tx_qp,
6960 pf->hw.func_caps.num_vsis);
6961
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006962#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6963 + pf->hw.func_caps.num_vfs)
6964 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6965 dev_info(&pf->pdev->dev,
6966 "got num_vsis %d, setting num_vsis to %d\n",
6967 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6968 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6969 }
6970
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006971 return 0;
6972}
6973
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006974static int i40e_vsi_clear(struct i40e_vsi *vsi);
6975
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006976/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006977 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006978 * @pf: board private structure
6979 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006980static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006981{
6982 struct i40e_vsi *vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006983
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006984 /* quick workaround for an NVM issue that leaves a critical register
6985 * uninitialized
6986 */
6987 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6988 static const u32 hkey[] = {
6989 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6990 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6991 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6992 0x95b3a76d};
Alexander Duyck4b816442016-10-11 15:26:53 -07006993 int i;
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006994
6995 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6996 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6997 }
6998
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006999 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007000 return;
7001
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007002 /* find existing VSI and see if it needs configuring */
Alexander Duyck4b816442016-10-11 15:26:53 -07007003 vsi = i40e_find_vsi_by_type(pf, I40E_VSI_FDIR);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007004
7005 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007006 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007007 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
7008 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007009 if (!vsi) {
7010 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00007011 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
7012 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007013 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007014 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00007015
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08007016 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007017}
7018
7019/**
7020 * i40e_fdir_teardown - release the Flow Director resources
7021 * @pf: board private structure
7022 **/
7023static void i40e_fdir_teardown(struct i40e_pf *pf)
7024{
Alexander Duyck4b816442016-10-11 15:26:53 -07007025 struct i40e_vsi *vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007026
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00007027 i40e_fdir_filter_exit(pf);
Alexander Duyck4b816442016-10-11 15:26:53 -07007028 vsi = i40e_find_vsi_by_type(pf, I40E_VSI_FDIR);
7029 if (vsi)
7030 i40e_vsi_release(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007031}
7032
7033/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007034 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007035 * @pf: board private structure
Maciej Sosin373149f2017-04-05 07:50:55 -04007036 * @lock_acquired: indicates whether or not the lock has been acquired
7037 * before this function was called.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007038 *
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007039 * Close up the VFs and other things in prep for PF Reset.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007040 **/
Maciej Sosin373149f2017-04-05 07:50:55 -04007041static void i40e_prep_for_reset(struct i40e_pf *pf, bool lock_acquired)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007042{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007043 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00007044 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007045 u32 v;
7046
Jacob Keller0da36b92017-04-19 09:25:55 -04007047 clear_bit(__I40E_RESET_INTR_RECEIVED, pf->state);
7048 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00007049 return;
Mitch Williamsd3ce57342016-03-10 14:59:46 -08007050 if (i40e_check_asq_alive(&pf->hw))
7051 i40e_vc_notify_reset(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007052
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00007053 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007054
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007055 /* quiesce the VSIs and their queues that are not already DOWN */
Maciej Sosin373149f2017-04-05 07:50:55 -04007056 /* pf_quiesce_all_vsi modifies netdev structures -rtnl_lock needed */
7057 if (!lock_acquired)
7058 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007059 i40e_pf_quiesce_all_vsi(pf);
Maciej Sosin373149f2017-04-05 07:50:55 -04007060 if (!lock_acquired)
7061 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007062
Mitch Williams505682c2014-05-20 08:01:37 +00007063 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007064 if (pf->vsi[v])
7065 pf->vsi[v]->seid = 0;
7066 }
7067
7068 i40e_shutdown_adminq(&pf->hw);
7069
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007070 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00007071 if (hw->hmc.hmc_obj) {
7072 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00007073 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00007074 dev_warn(&pf->pdev->dev,
7075 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007076 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007077}
7078
7079/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00007080 * i40e_send_version - update firmware with driver version
7081 * @pf: PF struct
7082 */
7083static void i40e_send_version(struct i40e_pf *pf)
7084{
7085 struct i40e_driver_version dv;
7086
7087 dv.major_version = DRV_VERSION_MAJOR;
7088 dv.minor_version = DRV_VERSION_MINOR;
7089 dv.build_version = DRV_VERSION_BUILD;
7090 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00007091 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00007092 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
7093}
7094
7095/**
Filip Sadowski5bbb2e22017-06-07 05:43:09 -04007096 * i40e_get_oem_version - get OEM specific version information
7097 * @hw: pointer to the hardware structure
7098 **/
7099static void i40e_get_oem_version(struct i40e_hw *hw)
7100{
7101 u16 block_offset = 0xffff;
7102 u16 block_length = 0;
7103 u16 capabilities = 0;
7104 u16 gen_snap = 0;
7105 u16 release = 0;
7106
7107#define I40E_SR_NVM_OEM_VERSION_PTR 0x1B
7108#define I40E_NVM_OEM_LENGTH_OFFSET 0x00
7109#define I40E_NVM_OEM_CAPABILITIES_OFFSET 0x01
7110#define I40E_NVM_OEM_GEN_OFFSET 0x02
7111#define I40E_NVM_OEM_RELEASE_OFFSET 0x03
7112#define I40E_NVM_OEM_CAPABILITIES_MASK 0x000F
7113#define I40E_NVM_OEM_LENGTH 3
7114
7115 /* Check if pointer to OEM version block is valid. */
7116 i40e_read_nvm_word(hw, I40E_SR_NVM_OEM_VERSION_PTR, &block_offset);
7117 if (block_offset == 0xffff)
7118 return;
7119
7120 /* Check if OEM version block has correct length. */
7121 i40e_read_nvm_word(hw, block_offset + I40E_NVM_OEM_LENGTH_OFFSET,
7122 &block_length);
7123 if (block_length < I40E_NVM_OEM_LENGTH)
7124 return;
7125
7126 /* Check if OEM version format is as expected. */
7127 i40e_read_nvm_word(hw, block_offset + I40E_NVM_OEM_CAPABILITIES_OFFSET,
7128 &capabilities);
7129 if ((capabilities & I40E_NVM_OEM_CAPABILITIES_MASK) != 0)
7130 return;
7131
7132 i40e_read_nvm_word(hw, block_offset + I40E_NVM_OEM_GEN_OFFSET,
7133 &gen_snap);
7134 i40e_read_nvm_word(hw, block_offset + I40E_NVM_OEM_RELEASE_OFFSET,
7135 &release);
7136 hw->nvm.oem_ver = (gen_snap << I40E_OEM_SNAP_SHIFT) | release;
7137 hw->nvm.eetrack = I40E_OEM_EETRACK_ID;
7138}
7139
7140/**
Maciej Sosin373149f2017-04-05 07:50:55 -04007141 * i40e_reset - wait for core reset to finish reset, reset pf if corer not seen
7142 * @pf: board private structure
7143 **/
7144static int i40e_reset(struct i40e_pf *pf)
7145{
7146 struct i40e_hw *hw = &pf->hw;
7147 i40e_status ret;
7148
7149 ret = i40e_pf_reset(hw);
7150 if (ret) {
7151 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Jacob Keller0da36b92017-04-19 09:25:55 -04007152 set_bit(__I40E_RESET_FAILED, pf->state);
7153 clear_bit(__I40E_RESET_RECOVERY_PENDING, pf->state);
Maciej Sosin373149f2017-04-05 07:50:55 -04007154 } else {
7155 pf->pfr_count++;
7156 }
7157 return ret;
7158}
7159
7160/**
7161 * i40e_rebuild - rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007162 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007163 * @reinit: if the Main VSI needs to re-initialized.
Maciej Sosin373149f2017-04-05 07:50:55 -04007164 * @lock_acquired: indicates whether or not the lock has been acquired
7165 * before this function was called.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007166 **/
Maciej Sosin373149f2017-04-05 07:50:55 -04007167static void i40e_rebuild(struct i40e_pf *pf, bool reinit, bool lock_acquired)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007168{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007169 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00007170 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007171 i40e_status ret;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04007172 u32 val;
Maciej Sosin373149f2017-04-05 07:50:55 -04007173 int v;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007174
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03007175 if (test_bit(__I40E_DOWN, pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00007176 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00007177 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007178
7179 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
7180 ret = i40e_init_adminq(&pf->hw);
7181 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007182 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, err %s aq_err %s\n",
7183 i40e_stat_str(&pf->hw, ret),
7184 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00007185 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007186 }
Filip Sadowski5bbb2e22017-06-07 05:43:09 -04007187 i40e_get_oem_version(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007188
Shannon Nelson4eb3f762014-03-06 08:59:58 +00007189 /* re-verify the eeprom if we just had an EMP reset */
Jacob Keller0da36b92017-04-19 09:25:55 -04007190 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, pf->state))
Shannon Nelson4eb3f762014-03-06 08:59:58 +00007191 i40e_verify_eeprom(pf);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00007192
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00007193 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007194 ret = i40e_get_capabilities(pf);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007195 if (ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007196 goto end_core_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007197
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007198 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
Alexander Duyckc76cb6e2017-02-21 15:55:48 -08007199 hw->func_caps.num_rx_qp, 0, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007200 if (ret) {
7201 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
7202 goto end_core_reset;
7203 }
7204 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
7205 if (ret) {
7206 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
7207 goto end_core_reset;
7208 }
7209
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08007210#ifdef CONFIG_I40E_DCB
7211 ret = i40e_init_pf_dcb(pf);
7212 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00007213 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
7214 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
7215 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08007216 }
7217#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007218 /* do basic switch setup */
Maciej Sosin373149f2017-04-05 07:50:55 -04007219 if (!lock_acquired)
7220 rtnl_lock();
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007221 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007222 if (ret)
Maciej Sosin373149f2017-04-05 07:50:55 -04007223 goto end_unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007224
Shannon Nelson2f0aff42016-01-04 10:33:08 -08007225 /* The driver only wants link up/down and module qualification
7226 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00007227 */
7228 ret = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -08007229 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -07007230 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -08007231 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00007232 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007233 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
7234 i40e_stat_str(&pf->hw, ret),
7235 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00007236
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00007237 /* make sure our flow control settings are restored */
7238 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
7239 if (ret)
Neerav Parikh8279e492015-09-03 17:18:50 -04007240 dev_dbg(&pf->pdev->dev, "setting flow control: ret = %s last_status = %s\n",
7241 i40e_stat_str(&pf->hw, ret),
7242 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00007243
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007244 /* Rebuild the VSIs and VEBs that existed before reset.
7245 * They are still in our local switch element arrays, so only
7246 * need to rebuild the switch model in the HW.
7247 *
7248 * If there were VEBs but the reconstitution failed, we'll try
7249 * try to recover minimal use by getting the basic PF VSI working.
7250 */
7251 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00007252 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007253 /* find the one VEB connected to the MAC, and find orphans */
7254 for (v = 0; v < I40E_MAX_VEB; v++) {
7255 if (!pf->veb[v])
7256 continue;
7257
7258 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
7259 pf->veb[v]->uplink_seid == 0) {
7260 ret = i40e_reconstitute_veb(pf->veb[v]);
7261
7262 if (!ret)
7263 continue;
7264
7265 /* If Main VEB failed, we're in deep doodoo,
7266 * so give up rebuilding the switch and set up
7267 * for minimal rebuild of PF VSI.
7268 * If orphan failed, we'll report the error
7269 * but try to keep going.
7270 */
7271 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
7272 dev_info(&pf->pdev->dev,
7273 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
7274 ret);
7275 pf->vsi[pf->lan_vsi]->uplink_seid
7276 = pf->mac_seid;
7277 break;
7278 } else if (pf->veb[v]->uplink_seid == 0) {
7279 dev_info(&pf->pdev->dev,
7280 "rebuild of orphan VEB failed: %d\n",
7281 ret);
7282 }
7283 }
7284 }
7285 }
7286
7287 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00007288 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007289 /* no VEB, so rebuild only the Main VSI */
7290 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
7291 if (ret) {
7292 dev_info(&pf->pdev->dev,
7293 "rebuild of Main VSI failed: %d\n", ret);
Maciej Sosin373149f2017-04-05 07:50:55 -04007294 goto end_unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007295 }
7296 }
7297
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04007298 /* Reconfigure hardware for allowing smaller MSS in the case
7299 * of TSO, so that we avoid the MDD being fired and causing
7300 * a reset in the case of small MSS+TSO.
7301 */
7302#define I40E_REG_MSS 0x000E64DC
7303#define I40E_REG_MSS_MIN_MASK 0x3FF0000
7304#define I40E_64BYTE_MSS 0x400000
7305 val = rd32(hw, I40E_REG_MSS);
7306 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
7307 val &= ~I40E_REG_MSS_MIN_MASK;
7308 val |= I40E_64BYTE_MSS;
7309 wr32(hw, I40E_REG_MSS, val);
7310 }
7311
Jacob Kellerd36e41d2017-06-23 04:24:46 -04007312 if (pf->hw_features & I40E_HW_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00007313 msleep(75);
7314 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
7315 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007316 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
7317 i40e_stat_str(&pf->hw, ret),
7318 i40e_aq_str(&pf->hw,
7319 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00007320 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007321 /* reinit the misc interrupt */
7322 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7323 ret = i40e_setup_misc_vector(pf);
7324
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04007325 /* Add a filter to drop all Flow control frames from any VSI from being
7326 * transmitted. By doing so we stop a malicious VF from sending out
7327 * PAUSE or PFC frames and potentially controlling traffic for other
7328 * PF/VF VSIs.
7329 * The FW can still send Flow control frames if enabled.
7330 */
7331 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
7332 pf->main_vsi_seid);
7333
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007334 /* restart the VSIs that were rebuilt and running before the reset */
7335 i40e_pf_unquiesce_all_vsi(pf);
7336
Jacob Keller024b05f2017-04-13 04:45:46 -04007337 /* Release the RTNL lock before we start resetting VFs */
7338 if (!lock_acquired)
7339 rtnl_unlock();
7340
Jacob Kellere4b433f2017-04-13 04:45:52 -04007341 i40e_reset_all_vfs(pf, true);
Mitch Williams69f64b22014-02-13 03:48:46 -08007342
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007343 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00007344 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007345
Jacob Keller024b05f2017-04-13 04:45:46 -04007346 /* We've already released the lock, so don't do it again */
7347 goto end_core_reset;
7348
Maciej Sosin373149f2017-04-05 07:50:55 -04007349end_unlock:
Jacob Keller024b05f2017-04-13 04:45:46 -04007350 if (!lock_acquired)
7351 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007352end_core_reset:
Jacob Keller0da36b92017-04-19 09:25:55 -04007353 clear_bit(__I40E_RESET_FAILED, pf->state);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00007354clear_recovery:
Jacob Keller0da36b92017-04-19 09:25:55 -04007355 clear_bit(__I40E_RESET_RECOVERY_PENDING, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007356}
7357
7358/**
Maciej Sosin373149f2017-04-05 07:50:55 -04007359 * i40e_reset_and_rebuild - reset and rebuild using a saved config
7360 * @pf: board private structure
7361 * @reinit: if the Main VSI needs to re-initialized.
7362 * @lock_acquired: indicates whether or not the lock has been acquired
7363 * before this function was called.
7364 **/
7365static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit,
7366 bool lock_acquired)
7367{
7368 int ret;
7369 /* Now we wait for GRST to settle out.
7370 * We don't have to delete the VEBs or VSIs from the hw switch
7371 * because the reset will make them disappear.
7372 */
7373 ret = i40e_reset(pf);
7374 if (!ret)
7375 i40e_rebuild(pf, reinit, lock_acquired);
7376}
7377
7378/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007379 * i40e_handle_reset_warning - prep for the PF to reset, reset and rebuild
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007380 * @pf: board private structure
7381 *
7382 * Close up the VFs and other things in prep for a Core Reset,
7383 * then get ready to rebuild the world.
Maciej Sosin373149f2017-04-05 07:50:55 -04007384 * @lock_acquired: indicates whether or not the lock has been acquired
7385 * before this function was called.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007386 **/
Maciej Sosin373149f2017-04-05 07:50:55 -04007387static void i40e_handle_reset_warning(struct i40e_pf *pf, bool lock_acquired)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007388{
Maciej Sosin373149f2017-04-05 07:50:55 -04007389 i40e_prep_for_reset(pf, lock_acquired);
7390 i40e_reset_and_rebuild(pf, false, lock_acquired);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007391}
7392
7393/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007394 * i40e_handle_mdd_event
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007395 * @pf: pointer to the PF structure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007396 *
7397 * Called from the MDD irq handler to identify possibly malicious vfs
7398 **/
7399static void i40e_handle_mdd_event(struct i40e_pf *pf)
7400{
7401 struct i40e_hw *hw = &pf->hw;
7402 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00007403 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007404 struct i40e_vf *vf;
7405 u32 reg;
7406 int i;
7407
Jacob Keller0da36b92017-04-19 09:25:55 -04007408 if (!test_bit(__I40E_MDD_EVENT_PENDING, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007409 return;
7410
7411 /* find what triggered the MDD event */
7412 reg = rd32(hw, I40E_GL_MDET_TX);
7413 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007414 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
7415 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00007416 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007417 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07007418 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007419 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00007420 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
7421 I40E_GL_MDET_TX_QUEUE_SHIFT) -
7422 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007423 if (netif_msg_tx_err(pf))
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007424 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d PF number 0x%02x VF number 0x%02x\n",
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007425 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007426 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
7427 mdd_detected = true;
7428 }
7429 reg = rd32(hw, I40E_GL_MDET_RX);
7430 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007431 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
7432 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07007433 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007434 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00007435 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
7436 I40E_GL_MDET_RX_QUEUE_SHIFT) -
7437 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007438 if (netif_msg_rx_err(pf))
7439 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
7440 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007441 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
7442 mdd_detected = true;
7443 }
7444
Neerav Parikhdf430b12014-06-04 01:23:15 +00007445 if (mdd_detected) {
7446 reg = rd32(hw, I40E_PF_MDET_TX);
7447 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
7448 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007449 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00007450 pf_mdd_detected = true;
7451 }
7452 reg = rd32(hw, I40E_PF_MDET_RX);
7453 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
7454 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007455 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00007456 pf_mdd_detected = true;
7457 }
7458 /* Queue belongs to the PF, initiate a reset */
7459 if (pf_mdd_detected) {
Jacob Keller0da36b92017-04-19 09:25:55 -04007460 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Neerav Parikhdf430b12014-06-04 01:23:15 +00007461 i40e_service_event_schedule(pf);
7462 }
7463 }
7464
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007465 /* see if one of the VFs needs its hand slapped */
7466 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
7467 vf = &(pf->vf[i]);
7468 reg = rd32(hw, I40E_VP_MDET_TX(i));
7469 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
7470 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
7471 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007472 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
7473 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007474 }
7475
7476 reg = rd32(hw, I40E_VP_MDET_RX(i));
7477 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
7478 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
7479 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007480 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
7481 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007482 }
7483
7484 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
7485 dev_info(&pf->pdev->dev,
7486 "Too many MDD events on VF %d, disabled\n", i);
7487 dev_info(&pf->pdev->dev,
7488 "Use PF Control I/F to re-enable the VF\n");
Jacob Keller6322e632017-04-13 04:45:54 -04007489 set_bit(I40E_VF_STATE_DISABLED, &vf->vf_states);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007490 }
7491 }
7492
7493 /* re-enable mdd interrupt cause */
Jacob Keller0da36b92017-04-19 09:25:55 -04007494 clear_bit(__I40E_MDD_EVENT_PENDING, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007495 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
7496 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
7497 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
7498 i40e_flush(hw);
7499}
7500
Jacob Kellerd8b2c702017-06-20 15:17:00 -07007501static const char *i40e_tunnel_name(struct i40e_udp_port_config *port)
7502{
7503 switch (port->type) {
7504 case UDP_TUNNEL_TYPE_VXLAN:
7505 return "vxlan";
7506 case UDP_TUNNEL_TYPE_GENEVE:
7507 return "geneve";
7508 default:
7509 return "unknown";
7510 }
7511}
7512
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007513/**
Alexander Duyck1f190d92017-04-19 09:25:51 -04007514 * i40e_sync_udp_filters - Trigger a sync event for existing UDP filters
7515 * @pf: board private structure
7516 **/
7517static void i40e_sync_udp_filters(struct i40e_pf *pf)
7518{
7519 int i;
7520
7521 /* loop through and set pending bit for all active UDP filters */
7522 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7523 if (pf->udp_ports[i].port)
7524 pf->pending_udp_bitmap |= BIT_ULL(i);
7525 }
7526
7527 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
7528}
7529
7530/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08007531 * i40e_sync_udp_filters_subtask - Sync the VSI filter list with HW
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007532 * @pf: board private structure
7533 **/
Singhai, Anjali6a899022015-12-14 12:21:18 -08007534static void i40e_sync_udp_filters_subtask(struct i40e_pf *pf)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007535{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007536 struct i40e_hw *hw = &pf->hw;
7537 i40e_status ret;
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08007538 u16 port;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007539 int i;
7540
Singhai, Anjali6a899022015-12-14 12:21:18 -08007541 if (!(pf->flags & I40E_FLAG_UDP_FILTER_SYNC))
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007542 return;
7543
Singhai, Anjali6a899022015-12-14 12:21:18 -08007544 pf->flags &= ~I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007545
7546 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Singhai, Anjali6a899022015-12-14 12:21:18 -08007547 if (pf->pending_udp_bitmap & BIT_ULL(i)) {
7548 pf->pending_udp_bitmap &= ~BIT_ULL(i);
Jacob Keller27826fd2017-04-19 09:25:50 -04007549 port = pf->udp_ports[i].port;
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007550 if (port)
Carolyn Wybornyb3f5c7b2016-08-24 11:33:51 -07007551 ret = i40e_aq_add_udp_tunnel(hw, port,
7552 pf->udp_ports[i].type,
7553 NULL, NULL);
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007554 else
7555 ret = i40e_aq_del_udp_tunnel(hw, i, NULL);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007556
7557 if (ret) {
Jacob Kellerd8b2c702017-06-20 15:17:00 -07007558 dev_info(&pf->pdev->dev,
7559 "%s %s port %d, index %d failed, err %s aq_err %s\n",
7560 i40e_tunnel_name(&pf->udp_ports[i]),
7561 port ? "add" : "delete",
7562 port, i,
7563 i40e_stat_str(&pf->hw, ret),
7564 i40e_aq_str(&pf->hw,
7565 pf->hw.aq.asq_last_status));
Jacob Keller27826fd2017-04-19 09:25:50 -04007566 pf->udp_ports[i].port = 0;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007567 }
7568 }
7569 }
7570}
7571
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007572/**
7573 * i40e_service_task - Run the driver's async subtasks
7574 * @work: pointer to work_struct containing our data
7575 **/
7576static void i40e_service_task(struct work_struct *work)
7577{
7578 struct i40e_pf *pf = container_of(work,
7579 struct i40e_pf,
7580 service_task);
7581 unsigned long start_time = jiffies;
7582
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007583 /* don't bother with service tasks if a reset is in progress */
Jacob Keller0da36b92017-04-19 09:25:55 -04007584 if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007585 return;
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007586
Jacob Keller0da36b92017-04-19 09:25:55 -04007587 if (test_and_set_bit(__I40E_SERVICE_SCHED, pf->state))
Mitch Williams91089032016-11-21 13:03:51 -08007588 return;
7589
Kiran Patilb03a8c12015-09-24 18:13:15 -04007590 i40e_detect_recover_hung(pf);
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08007591 i40e_sync_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007592 i40e_reset_subtask(pf);
7593 i40e_handle_mdd_event(pf);
7594 i40e_vc_process_vflr_event(pf);
7595 i40e_watchdog_subtask(pf);
7596 i40e_fdir_reinit_subtask(pf);
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08007597 if (pf->flags & I40E_FLAG_CLIENT_RESET) {
7598 /* Client subtask will reopen next time through. */
7599 i40e_notify_client_of_netdev_close(pf->vsi[pf->lan_vsi], true);
7600 pf->flags &= ~I40E_FLAG_CLIENT_RESET;
7601 } else {
7602 i40e_client_subtask(pf);
7603 if (pf->flags & I40E_FLAG_CLIENT_L2_CHANGE) {
7604 i40e_notify_client_of_l2_param_changes(
7605 pf->vsi[pf->lan_vsi]);
7606 pf->flags &= ~I40E_FLAG_CLIENT_L2_CHANGE;
7607 }
7608 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007609 i40e_sync_filters_subtask(pf);
Singhai, Anjali6a899022015-12-14 12:21:18 -08007610 i40e_sync_udp_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007611 i40e_clean_adminq_subtask(pf);
7612
Mitch Williams91089032016-11-21 13:03:51 -08007613 /* flush memory to make sure state is correct before next watchdog */
7614 smp_mb__before_atomic();
Jacob Keller0da36b92017-04-19 09:25:55 -04007615 clear_bit(__I40E_SERVICE_SCHED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007616
7617 /* If the tasks have taken longer than one timer cycle or there
7618 * is more work to be done, reschedule the service task now
7619 * rather than wait for the timer to tick again.
7620 */
7621 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
Jacob Keller0da36b92017-04-19 09:25:55 -04007622 test_bit(__I40E_ADMINQ_EVENT_PENDING, pf->state) ||
7623 test_bit(__I40E_MDD_EVENT_PENDING, pf->state) ||
7624 test_bit(__I40E_VFLR_EVENT_PENDING, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007625 i40e_service_event_schedule(pf);
7626}
7627
7628/**
7629 * i40e_service_timer - timer callback
7630 * @data: pointer to PF struct
7631 **/
7632static void i40e_service_timer(unsigned long data)
7633{
7634 struct i40e_pf *pf = (struct i40e_pf *)data;
7635
7636 mod_timer(&pf->service_timer,
7637 round_jiffies(jiffies + pf->service_timer_period));
7638 i40e_service_event_schedule(pf);
7639}
7640
7641/**
7642 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
7643 * @vsi: the VSI being configured
7644 **/
7645static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
7646{
7647 struct i40e_pf *pf = vsi->back;
7648
7649 switch (vsi->type) {
7650 case I40E_VSI_MAIN:
7651 vsi->alloc_queue_pairs = pf->num_lan_qps;
7652 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7653 I40E_REQ_DESCRIPTOR_MULTIPLE);
7654 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7655 vsi->num_q_vectors = pf->num_lan_msix;
7656 else
7657 vsi->num_q_vectors = 1;
7658
7659 break;
7660
7661 case I40E_VSI_FDIR:
7662 vsi->alloc_queue_pairs = 1;
7663 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
7664 I40E_REQ_DESCRIPTOR_MULTIPLE);
Tushar Davea70e4072016-05-16 12:40:53 -07007665 vsi->num_q_vectors = pf->num_fdsb_msix;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007666 break;
7667
7668 case I40E_VSI_VMDQ2:
7669 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
7670 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7671 I40E_REQ_DESCRIPTOR_MULTIPLE);
7672 vsi->num_q_vectors = pf->num_vmdq_msix;
7673 break;
7674
7675 case I40E_VSI_SRIOV:
7676 vsi->alloc_queue_pairs = pf->num_vf_qps;
7677 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7678 I40E_REQ_DESCRIPTOR_MULTIPLE);
7679 break;
7680
7681 default:
7682 WARN_ON(1);
7683 return -ENODATA;
7684 }
7685
7686 return 0;
7687}
7688
7689/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007690 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
Rami Rosen3d7d7a82017-09-16 05:49:48 +03007691 * @vsi: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007692 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007693 *
7694 * On error: returns error code (negative)
7695 * On success: returns 0
7696 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007697static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007698{
Björn Töpel74608d12017-05-24 07:55:35 +02007699 struct i40e_ring **next_rings;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007700 int size;
7701 int ret = 0;
7702
Björn Töpel74608d12017-05-24 07:55:35 +02007703 /* allocate memory for both Tx, XDP Tx and Rx ring pointers */
7704 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs *
7705 (i40e_enabled_xdp_vsi(vsi) ? 3 : 2);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007706 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
7707 if (!vsi->tx_rings)
7708 return -ENOMEM;
Björn Töpel74608d12017-05-24 07:55:35 +02007709 next_rings = vsi->tx_rings + vsi->alloc_queue_pairs;
7710 if (i40e_enabled_xdp_vsi(vsi)) {
7711 vsi->xdp_rings = next_rings;
7712 next_rings += vsi->alloc_queue_pairs;
7713 }
7714 vsi->rx_rings = next_rings;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007715
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007716 if (alloc_qvectors) {
7717 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00007718 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007719 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
7720 if (!vsi->q_vectors) {
7721 ret = -ENOMEM;
7722 goto err_vectors;
7723 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007724 }
7725 return ret;
7726
7727err_vectors:
7728 kfree(vsi->tx_rings);
7729 return ret;
7730}
7731
7732/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007733 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
7734 * @pf: board private structure
7735 * @type: type of VSI
7736 *
7737 * On error: returns error code (negative)
7738 * On success: returns vsi index in PF (positive)
7739 **/
7740static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
7741{
7742 int ret = -ENODEV;
7743 struct i40e_vsi *vsi;
7744 int vsi_idx;
7745 int i;
7746
7747 /* Need to protect the allocation of the VSIs at the PF level */
7748 mutex_lock(&pf->switch_mutex);
7749
7750 /* VSI list may be fragmented if VSI creation/destruction has
7751 * been happening. We can afford to do a quick scan to look
7752 * for any free VSIs in the list.
7753 *
7754 * find next empty vsi slot, looping back around if necessary
7755 */
7756 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00007757 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007758 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00007759 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007760 i = 0;
7761 while (i < pf->next_vsi && pf->vsi[i])
7762 i++;
7763 }
7764
Mitch Williams505682c2014-05-20 08:01:37 +00007765 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007766 vsi_idx = i; /* Found one! */
7767 } else {
7768 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00007769 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007770 }
7771 pf->next_vsi = ++i;
7772
7773 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
7774 if (!vsi) {
7775 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00007776 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007777 }
7778 vsi->type = type;
7779 vsi->back = pf;
Jacob Keller0da36b92017-04-19 09:25:55 -04007780 set_bit(__I40E_VSI_DOWN, vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007781 vsi->flags = 0;
7782 vsi->idx = vsi_idx;
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04007783 vsi->int_rate_limit = 0;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00007784 vsi->rss_table_size = (vsi->type == I40E_VSI_MAIN) ?
7785 pf->rss_table_size : 64;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007786 vsi->netdev_registered = false;
7787 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
Jacob Keller278e7d02016-10-05 09:30:37 -07007788 hash_init(vsi->mac_filter_hash);
Shannon Nelson63741842014-04-23 04:50:16 +00007789 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007790
Alexander Duyck9f65e152013-09-28 06:00:58 +00007791 ret = i40e_set_num_rings_in_vsi(vsi);
7792 if (ret)
7793 goto err_rings;
7794
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007795 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007796 if (ret)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007797 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00007798
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007799 /* Setup default MSIX irq handler for VSI */
7800 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
7801
Kiran Patil21659032015-09-30 14:09:03 -04007802 /* Initialize VSI lock */
Jacob Keller278e7d02016-10-05 09:30:37 -07007803 spin_lock_init(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007804 pf->vsi[vsi_idx] = vsi;
7805 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00007806 goto unlock_pf;
7807
Alexander Duyck9f65e152013-09-28 06:00:58 +00007808err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00007809 pf->next_vsi = i - 1;
7810 kfree(vsi);
7811unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007812 mutex_unlock(&pf->switch_mutex);
7813 return ret;
7814}
7815
7816/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007817 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
7818 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007819 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007820 *
7821 * On error: returns error code (negative)
7822 * On success: returns 0
7823 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007824static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007825{
7826 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007827 if (free_qvectors) {
7828 kfree(vsi->q_vectors);
7829 vsi->q_vectors = NULL;
7830 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007831 kfree(vsi->tx_rings);
7832 vsi->tx_rings = NULL;
7833 vsi->rx_rings = NULL;
Björn Töpel74608d12017-05-24 07:55:35 +02007834 vsi->xdp_rings = NULL;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007835}
7836
7837/**
Helin Zhang28c58692015-10-26 19:44:27 -04007838 * i40e_clear_rss_config_user - clear the user configured RSS hash keys
7839 * and lookup table
7840 * @vsi: Pointer to VSI structure
7841 */
7842static void i40e_clear_rss_config_user(struct i40e_vsi *vsi)
7843{
7844 if (!vsi)
7845 return;
7846
7847 kfree(vsi->rss_hkey_user);
7848 vsi->rss_hkey_user = NULL;
7849
7850 kfree(vsi->rss_lut_user);
7851 vsi->rss_lut_user = NULL;
7852}
7853
7854/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007855 * i40e_vsi_clear - Deallocate the VSI provided
7856 * @vsi: the VSI being un-configured
7857 **/
7858static int i40e_vsi_clear(struct i40e_vsi *vsi)
7859{
7860 struct i40e_pf *pf;
7861
7862 if (!vsi)
7863 return 0;
7864
7865 if (!vsi->back)
7866 goto free_vsi;
7867 pf = vsi->back;
7868
7869 mutex_lock(&pf->switch_mutex);
7870 if (!pf->vsi[vsi->idx]) {
7871 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
7872 vsi->idx, vsi->idx, vsi, vsi->type);
7873 goto unlock_vsi;
7874 }
7875
7876 if (pf->vsi[vsi->idx] != vsi) {
7877 dev_err(&pf->pdev->dev,
7878 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
7879 pf->vsi[vsi->idx]->idx,
7880 pf->vsi[vsi->idx],
7881 pf->vsi[vsi->idx]->type,
7882 vsi->idx, vsi, vsi->type);
7883 goto unlock_vsi;
7884 }
7885
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007886 /* updates the PF for this cleared vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007887 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7888 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
7889
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007890 i40e_vsi_free_arrays(vsi, true);
Helin Zhang28c58692015-10-26 19:44:27 -04007891 i40e_clear_rss_config_user(vsi);
Alexander Duyck493fb302013-09-28 07:01:44 +00007892
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007893 pf->vsi[vsi->idx] = NULL;
7894 if (vsi->idx < pf->next_vsi)
7895 pf->next_vsi = vsi->idx;
7896
7897unlock_vsi:
7898 mutex_unlock(&pf->switch_mutex);
7899free_vsi:
7900 kfree(vsi);
7901
7902 return 0;
7903}
7904
7905/**
Alexander Duyck9f65e152013-09-28 06:00:58 +00007906 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
7907 * @vsi: the VSI being cleaned
7908 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007909static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007910{
7911 int i;
7912
Greg Rose8e9dca52013-12-18 13:45:53 +00007913 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00007914 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00007915 kfree_rcu(vsi->tx_rings[i], rcu);
7916 vsi->tx_rings[i] = NULL;
7917 vsi->rx_rings[i] = NULL;
Björn Töpel74608d12017-05-24 07:55:35 +02007918 if (vsi->xdp_rings)
7919 vsi->xdp_rings[i] = NULL;
Mitch Williams00403f02013-09-28 07:13:13 +00007920 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007921 }
Alexander Duyck9f65e152013-09-28 06:00:58 +00007922}
7923
7924/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007925 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
7926 * @vsi: the VSI being configured
7927 **/
7928static int i40e_alloc_rings(struct i40e_vsi *vsi)
7929{
Björn Töpel74608d12017-05-24 07:55:35 +02007930 int i, qpv = i40e_enabled_xdp_vsi(vsi) ? 3 : 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007931 struct i40e_pf *pf = vsi->back;
Björn Töpel74608d12017-05-24 07:55:35 +02007932 struct i40e_ring *ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007933
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007934 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00007935 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007936 /* allocate space for both Tx and Rx in one shot */
Björn Töpel74608d12017-05-24 07:55:35 +02007937 ring = kcalloc(qpv, sizeof(struct i40e_ring), GFP_KERNEL);
7938 if (!ring)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007939 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007940
Björn Töpel74608d12017-05-24 07:55:35 +02007941 ring->queue_index = i;
7942 ring->reg_idx = vsi->base_queue + i;
7943 ring->ring_active = false;
7944 ring->vsi = vsi;
7945 ring->netdev = vsi->netdev;
7946 ring->dev = &pf->pdev->dev;
7947 ring->count = vsi->num_desc;
7948 ring->size = 0;
7949 ring->dcb_tc = 0;
Jacob Kellerd36e41d2017-06-23 04:24:46 -04007950 if (vsi->back->hw_features & I40E_HW_WB_ON_ITR_CAPABLE)
Björn Töpel74608d12017-05-24 07:55:35 +02007951 ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
7952 ring->tx_itr_setting = pf->tx_itr_default;
7953 vsi->tx_rings[i] = ring++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007954
Björn Töpel74608d12017-05-24 07:55:35 +02007955 if (!i40e_enabled_xdp_vsi(vsi))
7956 goto setup_rx;
7957
7958 ring->queue_index = vsi->alloc_queue_pairs + i;
7959 ring->reg_idx = vsi->base_queue + ring->queue_index;
7960 ring->ring_active = false;
7961 ring->vsi = vsi;
7962 ring->netdev = NULL;
7963 ring->dev = &pf->pdev->dev;
7964 ring->count = vsi->num_desc;
7965 ring->size = 0;
7966 ring->dcb_tc = 0;
Jacob Kellerd36e41d2017-06-23 04:24:46 -04007967 if (vsi->back->hw_features & I40E_HW_WB_ON_ITR_CAPABLE)
Björn Töpel74608d12017-05-24 07:55:35 +02007968 ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
7969 set_ring_xdp(ring);
7970 ring->tx_itr_setting = pf->tx_itr_default;
7971 vsi->xdp_rings[i] = ring++;
7972
7973setup_rx:
7974 ring->queue_index = i;
7975 ring->reg_idx = vsi->base_queue + i;
7976 ring->ring_active = false;
7977 ring->vsi = vsi;
7978 ring->netdev = vsi->netdev;
7979 ring->dev = &pf->pdev->dev;
7980 ring->count = vsi->num_desc;
7981 ring->size = 0;
7982 ring->dcb_tc = 0;
7983 ring->rx_itr_setting = pf->rx_itr_default;
7984 vsi->rx_rings[i] = ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007985 }
7986
7987 return 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007988
7989err_out:
7990 i40e_vsi_clear_rings(vsi);
7991 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007992}
7993
7994/**
7995 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
7996 * @pf: board private structure
7997 * @vectors: the number of MSI-X vectors to request
7998 *
7999 * Returns the number of vectors reserved, or error
8000 **/
8001static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
8002{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01008003 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
8004 I40E_MIN_MSIX, vectors);
8005 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008006 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01008007 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008008 vectors = 0;
8009 }
8010
8011 return vectors;
8012}
8013
8014/**
8015 * i40e_init_msix - Setup the MSIX capability
8016 * @pf: board private structure
8017 *
8018 * Work with the OS to set up the MSIX vectors needed.
8019 *
Shannon Nelson3b444392015-02-26 16:15:57 +00008020 * Returns the number of vectors reserved or negative on failure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008021 **/
8022static int i40e_init_msix(struct i40e_pf *pf)
8023{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008024 struct i40e_hw *hw = &pf->hw;
Jacob Kellerc0cf70a2017-01-24 10:24:01 -08008025 int cpus, extra_vectors;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008026 int vectors_left;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008027 int v_budget, i;
Shannon Nelson3b444392015-02-26 16:15:57 +00008028 int v_actual;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008029 int iwarp_requested = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008030
8031 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
8032 return -ENODEV;
8033
8034 /* The number of vectors we'll request will be comprised of:
8035 * - Add 1 for "other" cause for Admin Queue events, etc.
8036 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008037 * - Queues being used for RSS.
8038 * We don't need as many as max_rss_size vectors.
8039 * use rss_size instead in the calculation since that
8040 * is governed by number of cpus in the system.
8041 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008042 * - The number of VMDq pairs
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008043 * - The CPU count within the NUMA node if iWARP is enabled
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008044 * Once we count this up, try the request.
8045 *
8046 * If we can't get what we want, we'll simplify to nearly nothing
8047 * and try again. If that still fails, we punt.
8048 */
Shannon Nelson1e200e42015-02-27 09:15:24 +00008049 vectors_left = hw->func_caps.num_msix_vectors;
8050 v_budget = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008051
Shannon Nelson1e200e42015-02-27 09:15:24 +00008052 /* reserve one vector for miscellaneous handler */
8053 if (vectors_left) {
8054 v_budget++;
8055 vectors_left--;
8056 }
8057
Jacob Kellerc0cf70a2017-01-24 10:24:01 -08008058 /* reserve some vectors for the main PF traffic queues. Initially we
8059 * only reserve at most 50% of the available vectors, in the case that
8060 * the number of online CPUs is large. This ensures that we can enable
8061 * extra features as well. Once we've enabled the other features, we
8062 * will use any remaining vectors to reach as close as we can to the
8063 * number of online CPUs.
8064 */
8065 cpus = num_online_cpus();
8066 pf->num_lan_msix = min_t(int, cpus, vectors_left / 2);
Shannon Nelson1e200e42015-02-27 09:15:24 +00008067 vectors_left -= pf->num_lan_msix;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008068
8069 /* reserve one vector for sideband flow director */
8070 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8071 if (vectors_left) {
Tushar Davea70e4072016-05-16 12:40:53 -07008072 pf->num_fdsb_msix = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008073 v_budget++;
8074 vectors_left--;
8075 } else {
Tushar Davea70e4072016-05-16 12:40:53 -07008076 pf->num_fdsb_msix = 0;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008077 }
8078 }
John W Linville83840e42015-01-14 03:06:28 +00008079
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008080 /* can we reserve enough for iWARP? */
8081 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008082 iwarp_requested = pf->num_iwarp_msix;
8083
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008084 if (!vectors_left)
8085 pf->num_iwarp_msix = 0;
8086 else if (vectors_left < pf->num_iwarp_msix)
8087 pf->num_iwarp_msix = 1;
8088 v_budget += pf->num_iwarp_msix;
8089 vectors_left -= pf->num_iwarp_msix;
8090 }
8091
Shannon Nelson1e200e42015-02-27 09:15:24 +00008092 /* any vectors left over go for VMDq support */
8093 if (pf->flags & I40E_FLAG_VMDQ_ENABLED) {
8094 int vmdq_vecs_wanted = pf->num_vmdq_vsis * pf->num_vmdq_qps;
8095 int vmdq_vecs = min_t(int, vectors_left, vmdq_vecs_wanted);
8096
Stefan Assmann9ca57e92016-09-19 13:37:49 +02008097 if (!vectors_left) {
8098 pf->num_vmdq_msix = 0;
8099 pf->num_vmdq_qps = 0;
8100 } else {
8101 /* if we're short on vectors for what's desired, we limit
8102 * the queues per vmdq. If this is still more than are
8103 * available, the user will need to change the number of
8104 * queues/vectors used by the PF later with the ethtool
8105 * channels command
8106 */
8107 if (vmdq_vecs < vmdq_vecs_wanted)
8108 pf->num_vmdq_qps = 1;
8109 pf->num_vmdq_msix = pf->num_vmdq_qps;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008110
Stefan Assmann9ca57e92016-09-19 13:37:49 +02008111 v_budget += vmdq_vecs;
8112 vectors_left -= vmdq_vecs;
8113 }
Shannon Nelson1e200e42015-02-27 09:15:24 +00008114 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008115
Jacob Kellerc0cf70a2017-01-24 10:24:01 -08008116 /* On systems with a large number of SMP cores, we previously limited
8117 * the number of vectors for num_lan_msix to be at most 50% of the
8118 * available vectors, to allow for other features. Now, we add back
8119 * the remaining vectors. However, we ensure that the total
8120 * num_lan_msix will not exceed num_online_cpus(). To do this, we
8121 * calculate the number of vectors we can add without going over the
8122 * cap of CPUs. For systems with a small number of CPUs this will be
8123 * zero.
8124 */
8125 extra_vectors = min_t(int, cpus - pf->num_lan_msix, vectors_left);
8126 pf->num_lan_msix += extra_vectors;
8127 vectors_left -= extra_vectors;
8128
8129 WARN(vectors_left < 0,
8130 "Calculation of remaining vectors underflowed. This is an accounting bug when determining total MSI-X vectors.\n");
8131
8132 v_budget += pf->num_lan_msix;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008133 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
8134 GFP_KERNEL);
8135 if (!pf->msix_entries)
8136 return -ENOMEM;
8137
8138 for (i = 0; i < v_budget; i++)
8139 pf->msix_entries[i].entry = i;
Shannon Nelson3b444392015-02-26 16:15:57 +00008140 v_actual = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008141
Shannon Nelson3b444392015-02-26 16:15:57 +00008142 if (v_actual < I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008143 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
8144 kfree(pf->msix_entries);
8145 pf->msix_entries = NULL;
Guilherme G Piccoli4c95aa52016-09-22 10:03:58 -03008146 pci_disable_msix(pf->pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008147 return -ENODEV;
8148
Shannon Nelson3b444392015-02-26 16:15:57 +00008149 } else if (v_actual == I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008150 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008151 pf->num_vmdq_vsis = 0;
8152 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008153 pf->num_lan_qps = 1;
8154 pf->num_lan_msix = 1;
8155
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008156 } else if (!vectors_left) {
8157 /* If we have limited resources, we will start with no vectors
8158 * for the special features and then allocate vectors to some
8159 * of these features based on the policy and at the end disable
8160 * the features that did not get any vectors.
8161 */
Shannon Nelson3b444392015-02-26 16:15:57 +00008162 int vec;
8163
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008164 dev_info(&pf->pdev->dev,
8165 "MSI-X vector limit reached, attempting to redistribute vectors\n");
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008166 /* reserve the misc vector */
Shannon Nelson3b444392015-02-26 16:15:57 +00008167 vec = v_actual - 1;
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008168
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008169 /* Scale vector usage down */
8170 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008171 pf->num_vmdq_vsis = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008172 pf->num_vmdq_qps = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008173
8174 /* partition out the remaining vectors */
8175 switch (vec) {
8176 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008177 pf->num_lan_msix = 1;
8178 break;
8179 case 3:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008180 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
8181 pf->num_lan_msix = 1;
8182 pf->num_iwarp_msix = 1;
8183 } else {
8184 pf->num_lan_msix = 2;
8185 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008186 break;
8187 default:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008188 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
8189 pf->num_iwarp_msix = min_t(int, (vec / 3),
8190 iwarp_requested);
8191 pf->num_vmdq_vsis = min_t(int, (vec / 3),
8192 I40E_DEFAULT_NUM_VMDQ_VSI);
8193 } else {
8194 pf->num_vmdq_vsis = min_t(int, (vec / 2),
8195 I40E_DEFAULT_NUM_VMDQ_VSI);
8196 }
Stefan Assmannabd97a92016-09-19 13:37:51 +02008197 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8198 pf->num_fdsb_msix = 1;
8199 vec--;
8200 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008201 pf->num_lan_msix = min_t(int,
8202 (vec - (pf->num_iwarp_msix + pf->num_vmdq_vsis)),
8203 pf->num_lan_msix);
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008204 pf->num_lan_qps = pf->num_lan_msix;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008205 break;
8206 }
8207 }
8208
Stefan Assmannabd97a92016-09-19 13:37:51 +02008209 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
8210 (pf->num_fdsb_msix == 0)) {
8211 dev_info(&pf->pdev->dev, "Sideband Flowdir disabled, not enough MSI-X vectors\n");
8212 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8213 }
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008214 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
8215 (pf->num_vmdq_msix == 0)) {
8216 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
8217 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
8218 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008219
8220 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
8221 (pf->num_iwarp_msix == 0)) {
8222 dev_info(&pf->pdev->dev, "IWARP disabled, not enough MSI-X vectors\n");
8223 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
8224 }
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008225 i40e_debug(&pf->hw, I40E_DEBUG_INIT,
8226 "MSI-X vector distribution: PF %d, VMDq %d, FDSB %d, iWARP %d\n",
8227 pf->num_lan_msix,
8228 pf->num_vmdq_msix * pf->num_vmdq_vsis,
8229 pf->num_fdsb_msix,
8230 pf->num_iwarp_msix);
8231
Shannon Nelson3b444392015-02-26 16:15:57 +00008232 return v_actual;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008233}
8234
8235/**
Greg Rose90e04072014-03-06 08:59:57 +00008236 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00008237 * @vsi: the VSI being configured
8238 * @v_idx: index of the vector in the vsi struct
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008239 * @cpu: cpu to be used on affinity_mask
Alexander Duyck493fb302013-09-28 07:01:44 +00008240 *
8241 * We allocate one q_vector. If allocation fails we return -ENOMEM.
8242 **/
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008243static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx, int cpu)
Alexander Duyck493fb302013-09-28 07:01:44 +00008244{
8245 struct i40e_q_vector *q_vector;
8246
8247 /* allocate q_vector */
8248 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
8249 if (!q_vector)
8250 return -ENOMEM;
8251
8252 q_vector->vsi = vsi;
8253 q_vector->v_idx = v_idx;
Jacob Keller759dc4a2017-07-14 09:10:10 -04008254 cpumask_copy(&q_vector->affinity_mask, cpu_possible_mask);
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008255
Alexander Duyck493fb302013-09-28 07:01:44 +00008256 if (vsi->netdev)
8257 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00008258 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00008259
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00008260 q_vector->rx.latency_range = I40E_LOW_LATENCY;
8261 q_vector->tx.latency_range = I40E_LOW_LATENCY;
8262
Alexander Duyck493fb302013-09-28 07:01:44 +00008263 /* tie q_vector and vsi together */
8264 vsi->q_vectors[v_idx] = q_vector;
8265
8266 return 0;
8267}
8268
8269/**
Greg Rose90e04072014-03-06 08:59:57 +00008270 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008271 * @vsi: the VSI being configured
8272 *
8273 * We allocate one q_vector per queue interrupt. If allocation fails we
8274 * return -ENOMEM.
8275 **/
Greg Rose90e04072014-03-06 08:59:57 +00008276static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008277{
8278 struct i40e_pf *pf = vsi->back;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008279 int err, v_idx, num_q_vectors, current_cpu;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008280
8281 /* if not MSIX, give the one vector only to the LAN VSI */
8282 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
8283 num_q_vectors = vsi->num_q_vectors;
8284 else if (vsi == pf->vsi[pf->lan_vsi])
8285 num_q_vectors = 1;
8286 else
8287 return -EINVAL;
8288
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008289 current_cpu = cpumask_first(cpu_online_mask);
8290
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008291 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008292 err = i40e_vsi_alloc_q_vector(vsi, v_idx, current_cpu);
Alexander Duyck493fb302013-09-28 07:01:44 +00008293 if (err)
8294 goto err_out;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008295 current_cpu = cpumask_next(current_cpu, cpu_online_mask);
8296 if (unlikely(current_cpu >= nr_cpu_ids))
8297 current_cpu = cpumask_first(cpu_online_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008298 }
8299
8300 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00008301
8302err_out:
8303 while (v_idx--)
8304 i40e_free_q_vector(vsi, v_idx);
8305
8306 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008307}
8308
8309/**
8310 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
8311 * @pf: board private structure to initialize
8312 **/
Jesse Brandeburgc11472802015-04-07 19:45:39 -04008313static int i40e_init_interrupt_scheme(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008314{
Shannon Nelson3b444392015-02-26 16:15:57 +00008315 int vectors = 0;
8316 ssize_t size;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008317
8318 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Shannon Nelson3b444392015-02-26 16:15:57 +00008319 vectors = i40e_init_msix(pf);
8320 if (vectors < 0) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008321 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008322 I40E_FLAG_IWARP_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008323 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008324 I40E_FLAG_DCB_CAPABLE |
Dave Ertmana0362442016-08-29 17:38:26 -07008325 I40E_FLAG_DCB_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008326 I40E_FLAG_SRIOV_ENABLED |
8327 I40E_FLAG_FD_SB_ENABLED |
8328 I40E_FLAG_FD_ATR_ENABLED |
8329 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008330
8331 /* rework the queue expectations without MSIX */
8332 i40e_determine_queue_usage(pf);
8333 }
8334 }
8335
8336 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
8337 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08008338 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Shannon Nelson3b444392015-02-26 16:15:57 +00008339 vectors = pci_enable_msi(pf->pdev);
8340 if (vectors < 0) {
8341 dev_info(&pf->pdev->dev, "MSI init failed - %d\n",
8342 vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008343 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
8344 }
Shannon Nelson3b444392015-02-26 16:15:57 +00008345 vectors = 1; /* one MSI or Legacy vector */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008346 }
8347
Shannon Nelson958a3e32013-09-28 07:13:28 +00008348 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08008349 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00008350
Shannon Nelson3b444392015-02-26 16:15:57 +00008351 /* set up vector assignment tracking */
8352 size = sizeof(struct i40e_lump_tracking) + (sizeof(u16) * vectors);
8353 pf->irq_pile = kzalloc(size, GFP_KERNEL);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04008354 if (!pf->irq_pile) {
8355 dev_err(&pf->pdev->dev, "error allocating irq_pile memory\n");
8356 return -ENOMEM;
8357 }
Shannon Nelson3b444392015-02-26 16:15:57 +00008358 pf->irq_pile->num_entries = vectors;
8359 pf->irq_pile->search_hint = 0;
8360
Jesse Brandeburgc11472802015-04-07 19:45:39 -04008361 /* track first vector for misc interrupts, ignore return */
Shannon Nelson3b444392015-02-26 16:15:57 +00008362 (void)i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT - 1);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04008363
8364 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008365}
8366
Jacob Kellerb980c062017-07-14 09:27:06 -04008367#ifdef CONFIG_PM
8368/**
8369 * i40e_restore_interrupt_scheme - Restore the interrupt scheme
8370 * @pf: private board data structure
8371 *
8372 * Restore the interrupt scheme that was cleared when we suspended the
8373 * device. This should be called during resume to re-allocate the q_vectors
8374 * and reacquire IRQs.
8375 */
8376static int i40e_restore_interrupt_scheme(struct i40e_pf *pf)
8377{
8378 int err, i;
8379
8380 /* We cleared the MSI and MSI-X flags when disabling the old interrupt
8381 * scheme. We need to re-enabled them here in order to attempt to
8382 * re-acquire the MSI or MSI-X vectors
8383 */
8384 pf->flags |= (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
8385
8386 err = i40e_init_interrupt_scheme(pf);
8387 if (err)
8388 return err;
8389
8390 /* Now that we've re-acquired IRQs, we need to remap the vectors and
8391 * rings together again.
8392 */
8393 for (i = 0; i < pf->num_alloc_vsi; i++) {
8394 if (pf->vsi[i]) {
8395 err = i40e_vsi_alloc_q_vectors(pf->vsi[i]);
8396 if (err)
8397 goto err_unwind;
8398 i40e_vsi_map_rings_to_vectors(pf->vsi[i]);
8399 }
8400 }
8401
8402 err = i40e_setup_misc_vector(pf);
8403 if (err)
8404 goto err_unwind;
8405
8406 return 0;
8407
8408err_unwind:
8409 while (i--) {
8410 if (pf->vsi[i])
8411 i40e_vsi_free_q_vectors(pf->vsi[i]);
8412 }
8413
8414 return err;
8415}
8416#endif /* CONFIG_PM */
8417
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008418/**
8419 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
8420 * @pf: board private structure
8421 *
8422 * This sets up the handler for MSIX 0, which is used to manage the
8423 * non-queue interrupts, e.g. AdminQ and errors. This is not used
8424 * when in MSI or Legacy interrupt mode.
8425 **/
8426static int i40e_setup_misc_vector(struct i40e_pf *pf)
8427{
8428 struct i40e_hw *hw = &pf->hw;
8429 int err = 0;
8430
Jacob Kellerc17401a2017-07-14 09:27:02 -04008431 /* Only request the IRQ once, the first time through. */
8432 if (!test_and_set_bit(__I40E_MISC_IRQ_REQUESTED, pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008433 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00008434 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008435 if (err) {
Jacob Kellerc17401a2017-07-14 09:27:02 -04008436 clear_bit(__I40E_MISC_IRQ_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008437 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08008438 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00008439 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008440 return -EFAULT;
8441 }
8442 }
8443
Jacob Kellerab437b52014-12-14 01:55:08 +00008444 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008445
8446 /* associate no queues to the misc vector */
8447 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
8448 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
8449
8450 i40e_flush(hw);
8451
Jacob Kellerdbadbbe2017-09-07 08:05:49 -04008452 i40e_irq_dynamic_enable_icr0(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008453
8454 return err;
8455}
8456
8457/**
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008458 * i40e_config_rss_aq - Prepare for RSS using AQ commands
8459 * @vsi: vsi structure
8460 * @seed: RSS hash seed
8461 **/
Helin Zhange69ff812015-10-21 19:56:22 -04008462static int i40e_config_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
8463 u8 *lut, u16 lut_size)
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008464{
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008465 struct i40e_pf *pf = vsi->back;
8466 struct i40e_hw *hw = &pf->hw;
Jacob Keller776b2e12016-07-19 16:23:30 -07008467 int ret = 0;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008468
Jacob Keller776b2e12016-07-19 16:23:30 -07008469 if (seed) {
8470 struct i40e_aqc_get_set_rss_key_data *seed_dw =
8471 (struct i40e_aqc_get_set_rss_key_data *)seed;
8472 ret = i40e_aq_set_rss_key(hw, vsi->id, seed_dw);
8473 if (ret) {
8474 dev_info(&pf->pdev->dev,
8475 "Cannot set RSS key, err %s aq_err %s\n",
8476 i40e_stat_str(hw, ret),
8477 i40e_aq_str(hw, hw->aq.asq_last_status));
8478 return ret;
8479 }
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008480 }
Jacob Keller776b2e12016-07-19 16:23:30 -07008481 if (lut) {
8482 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008483
Jacob Keller776b2e12016-07-19 16:23:30 -07008484 ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
8485 if (ret) {
8486 dev_info(&pf->pdev->dev,
8487 "Cannot set RSS lut, err %s aq_err %s\n",
8488 i40e_stat_str(hw, ret),
8489 i40e_aq_str(hw, hw->aq.asq_last_status));
8490 return ret;
8491 }
8492 }
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008493 return ret;
8494}
8495
8496/**
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008497 * i40e_get_rss_aq - Get RSS keys and lut by using AQ commands
8498 * @vsi: Pointer to vsi structure
8499 * @seed: Buffter to store the hash keys
8500 * @lut: Buffer to store the lookup table entries
8501 * @lut_size: Size of buffer to store the lookup table entries
8502 *
8503 * Return 0 on success, negative on failure
8504 */
8505static int i40e_get_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
8506 u8 *lut, u16 lut_size)
8507{
8508 struct i40e_pf *pf = vsi->back;
8509 struct i40e_hw *hw = &pf->hw;
8510 int ret = 0;
8511
8512 if (seed) {
8513 ret = i40e_aq_get_rss_key(hw, vsi->id,
8514 (struct i40e_aqc_get_set_rss_key_data *)seed);
8515 if (ret) {
8516 dev_info(&pf->pdev->dev,
8517 "Cannot get RSS key, err %s aq_err %s\n",
8518 i40e_stat_str(&pf->hw, ret),
8519 i40e_aq_str(&pf->hw,
8520 pf->hw.aq.asq_last_status));
8521 return ret;
8522 }
8523 }
8524
8525 if (lut) {
8526 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
8527
8528 ret = i40e_aq_get_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
8529 if (ret) {
8530 dev_info(&pf->pdev->dev,
8531 "Cannot get RSS lut, err %s aq_err %s\n",
8532 i40e_stat_str(&pf->hw, ret),
8533 i40e_aq_str(&pf->hw,
8534 pf->hw.aq.asq_last_status));
8535 return ret;
8536 }
8537 }
8538
8539 return ret;
8540}
8541
8542/**
Jacob Keller0582b962016-07-19 16:23:29 -07008543 * i40e_vsi_config_rss - Prepare for VSI(VMDq) RSS if used
8544 * @vsi: VSI structure
8545 **/
8546static int i40e_vsi_config_rss(struct i40e_vsi *vsi)
8547{
8548 u8 seed[I40E_HKEY_ARRAY_SIZE];
8549 struct i40e_pf *pf = vsi->back;
8550 u8 *lut;
8551 int ret;
8552
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008553 if (!(pf->hw_features & I40E_HW_RSS_AQ_CAPABLE))
Jacob Keller0582b962016-07-19 16:23:29 -07008554 return 0;
8555
Jacob Keller552b9962016-07-19 16:23:31 -07008556 if (!vsi->rss_size)
8557 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8558 vsi->num_queue_pairs);
8559 if (!vsi->rss_size)
8560 return -EINVAL;
8561
Jacob Keller0582b962016-07-19 16:23:29 -07008562 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8563 if (!lut)
8564 return -ENOMEM;
Jacob Keller552b9962016-07-19 16:23:31 -07008565 /* Use the user configured hash keys and lookup table if there is one,
8566 * otherwise use default
8567 */
8568 if (vsi->rss_lut_user)
8569 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8570 else
8571 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
8572 if (vsi->rss_hkey_user)
8573 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8574 else
8575 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Jacob Keller0582b962016-07-19 16:23:29 -07008576 ret = i40e_config_rss_aq(vsi, seed, lut, vsi->rss_table_size);
8577 kfree(lut);
8578
8579 return ret;
8580}
8581
8582/**
Helin Zhang043dd652015-10-21 19:56:23 -04008583 * i40e_config_rss_reg - Configure RSS keys and lut by writing registers
Helin Zhange69ff812015-10-21 19:56:22 -04008584 * @vsi: Pointer to vsi structure
8585 * @seed: RSS hash seed
8586 * @lut: Lookup table
8587 * @lut_size: Lookup table size
8588 *
8589 * Returns 0 on success, negative on failure
8590 **/
8591static int i40e_config_rss_reg(struct i40e_vsi *vsi, const u8 *seed,
8592 const u8 *lut, u16 lut_size)
8593{
8594 struct i40e_pf *pf = vsi->back;
8595 struct i40e_hw *hw = &pf->hw;
Mitch Williamsc4e18682016-04-12 08:30:40 -07008596 u16 vf_id = vsi->vf_id;
Helin Zhange69ff812015-10-21 19:56:22 -04008597 u8 i;
8598
8599 /* Fill out hash function seed */
8600 if (seed) {
8601 u32 *seed_dw = (u32 *)seed;
8602
Mitch Williamsc4e18682016-04-12 08:30:40 -07008603 if (vsi->type == I40E_VSI_MAIN) {
8604 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Lihong Yang26f77e52017-01-30 12:29:33 -08008605 wr32(hw, I40E_PFQF_HKEY(i), seed_dw[i]);
Mitch Williamsc4e18682016-04-12 08:30:40 -07008606 } else if (vsi->type == I40E_VSI_SRIOV) {
8607 for (i = 0; i <= I40E_VFQF_HKEY1_MAX_INDEX; i++)
Lihong Yang26f77e52017-01-30 12:29:33 -08008608 wr32(hw, I40E_VFQF_HKEY1(i, vf_id), seed_dw[i]);
Mitch Williamsc4e18682016-04-12 08:30:40 -07008609 } else {
8610 dev_err(&pf->pdev->dev, "Cannot set RSS seed - invalid VSI type\n");
8611 }
Helin Zhange69ff812015-10-21 19:56:22 -04008612 }
8613
8614 if (lut) {
8615 u32 *lut_dw = (u32 *)lut;
8616
Mitch Williamsc4e18682016-04-12 08:30:40 -07008617 if (vsi->type == I40E_VSI_MAIN) {
8618 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8619 return -EINVAL;
8620 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8621 wr32(hw, I40E_PFQF_HLUT(i), lut_dw[i]);
8622 } else if (vsi->type == I40E_VSI_SRIOV) {
8623 if (lut_size != I40E_VF_HLUT_ARRAY_SIZE)
8624 return -EINVAL;
8625 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
Lihong Yang26f77e52017-01-30 12:29:33 -08008626 wr32(hw, I40E_VFQF_HLUT1(i, vf_id), lut_dw[i]);
Mitch Williamsc4e18682016-04-12 08:30:40 -07008627 } else {
8628 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
8629 }
Helin Zhange69ff812015-10-21 19:56:22 -04008630 }
8631 i40e_flush(hw);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008632
8633 return 0;
8634}
8635
8636/**
Helin Zhang043dd652015-10-21 19:56:23 -04008637 * i40e_get_rss_reg - Get the RSS keys and lut by reading registers
8638 * @vsi: Pointer to VSI structure
8639 * @seed: Buffer to store the keys
8640 * @lut: Buffer to store the lookup table entries
8641 * @lut_size: Size of buffer to store the lookup table entries
8642 *
8643 * Returns 0 on success, negative on failure
8644 */
8645static int i40e_get_rss_reg(struct i40e_vsi *vsi, u8 *seed,
8646 u8 *lut, u16 lut_size)
8647{
8648 struct i40e_pf *pf = vsi->back;
8649 struct i40e_hw *hw = &pf->hw;
8650 u16 i;
8651
8652 if (seed) {
8653 u32 *seed_dw = (u32 *)seed;
8654
8655 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008656 seed_dw[i] = i40e_read_rx_ctl(hw, I40E_PFQF_HKEY(i));
Helin Zhang043dd652015-10-21 19:56:23 -04008657 }
8658 if (lut) {
8659 u32 *lut_dw = (u32 *)lut;
8660
8661 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8662 return -EINVAL;
8663 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8664 lut_dw[i] = rd32(hw, I40E_PFQF_HLUT(i));
8665 }
8666
8667 return 0;
8668}
8669
8670/**
8671 * i40e_config_rss - Configure RSS keys and lut
8672 * @vsi: Pointer to VSI structure
8673 * @seed: RSS hash seed
8674 * @lut: Lookup table
8675 * @lut_size: Lookup table size
8676 *
8677 * Returns 0 on success, negative on failure
8678 */
8679int i40e_config_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8680{
8681 struct i40e_pf *pf = vsi->back;
8682
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008683 if (pf->hw_features & I40E_HW_RSS_AQ_CAPABLE)
Helin Zhang043dd652015-10-21 19:56:23 -04008684 return i40e_config_rss_aq(vsi, seed, lut, lut_size);
8685 else
8686 return i40e_config_rss_reg(vsi, seed, lut, lut_size);
8687}
8688
8689/**
8690 * i40e_get_rss - Get RSS keys and lut
8691 * @vsi: Pointer to VSI structure
8692 * @seed: Buffer to store the keys
8693 * @lut: Buffer to store the lookup table entries
8694 * lut_size: Size of buffer to store the lookup table entries
8695 *
8696 * Returns 0 on success, negative on failure
8697 */
8698int i40e_get_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8699{
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008700 struct i40e_pf *pf = vsi->back;
8701
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008702 if (pf->hw_features & I40E_HW_RSS_AQ_CAPABLE)
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008703 return i40e_get_rss_aq(vsi, seed, lut, lut_size);
8704 else
8705 return i40e_get_rss_reg(vsi, seed, lut, lut_size);
Helin Zhang043dd652015-10-21 19:56:23 -04008706}
8707
8708/**
Helin Zhange69ff812015-10-21 19:56:22 -04008709 * i40e_fill_rss_lut - Fill the RSS lookup table with default values
8710 * @pf: Pointer to board private structure
8711 * @lut: Lookup table
8712 * @rss_table_size: Lookup table size
8713 * @rss_size: Range of queue number for hashing
8714 */
Alan Bradyf1582352016-08-24 11:33:46 -07008715void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
8716 u16 rss_table_size, u16 rss_size)
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008717{
Helin Zhange69ff812015-10-21 19:56:22 -04008718 u16 i;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008719
Helin Zhange69ff812015-10-21 19:56:22 -04008720 for (i = 0; i < rss_table_size; i++)
8721 lut[i] = i % rss_size;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008722}
8723
8724/**
Helin Zhang043dd652015-10-21 19:56:23 -04008725 * i40e_pf_config_rss - Prepare for RSS if used
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008726 * @pf: board private structure
8727 **/
Helin Zhang043dd652015-10-21 19:56:23 -04008728static int i40e_pf_config_rss(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008729{
Anjali Singhai Jain66ddcff2015-02-24 06:58:50 +00008730 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008731 u8 seed[I40E_HKEY_ARRAY_SIZE];
Helin Zhange69ff812015-10-21 19:56:22 -04008732 u8 *lut;
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00008733 struct i40e_hw *hw = &pf->hw;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008734 u32 reg_val;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008735 u64 hena;
Helin Zhange69ff812015-10-21 19:56:22 -04008736 int ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008737
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008738 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008739 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
8740 ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008741 hena |= i40e_pf_get_default_rss_hena(pf);
8742
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008743 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena);
8744 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008745
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008746 /* Determine the RSS table size based on the hardware capabilities */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008747 reg_val = i40e_read_rx_ctl(hw, I40E_PFQF_CTL_0);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008748 reg_val = (pf->rss_table_size == 512) ?
8749 (reg_val | I40E_PFQF_CTL_0_HASHLUTSIZE_512) :
8750 (reg_val & ~I40E_PFQF_CTL_0_HASHLUTSIZE_512);
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008751 i40e_write_rx_ctl(hw, I40E_PFQF_CTL_0, reg_val);
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008752
Helin Zhang28c58692015-10-26 19:44:27 -04008753 /* Determine the RSS size of the VSI */
Harshitha Ramamurthyf25571b2017-02-21 15:55:40 -08008754 if (!vsi->rss_size) {
8755 u16 qcount;
8756
8757 qcount = vsi->num_queue_pairs / vsi->tc_config.numtc;
8758 vsi->rss_size = min_t(int, pf->alloc_rss_size, qcount);
8759 }
Mitch Williamsa4fa59c2016-09-12 14:18:43 -07008760 if (!vsi->rss_size)
8761 return -EINVAL;
Helin Zhang28c58692015-10-26 19:44:27 -04008762
Helin Zhange69ff812015-10-21 19:56:22 -04008763 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8764 if (!lut)
8765 return -ENOMEM;
8766
Helin Zhang28c58692015-10-26 19:44:27 -04008767 /* Use user configured lut if there is one, otherwise use default */
8768 if (vsi->rss_lut_user)
8769 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8770 else
8771 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008772
Helin Zhang28c58692015-10-26 19:44:27 -04008773 /* Use user configured hash key if there is one, otherwise
8774 * use default.
8775 */
8776 if (vsi->rss_hkey_user)
8777 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8778 else
8779 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhang043dd652015-10-21 19:56:23 -04008780 ret = i40e_config_rss(vsi, seed, lut, vsi->rss_table_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008781 kfree(lut);
8782
8783 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008784}
8785
8786/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008787 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
8788 * @pf: board private structure
8789 * @queue_count: the requested queue count for rss.
8790 *
8791 * returns 0 if rss is not enabled, if enabled returns the final rss queue
8792 * count which may be different from the requested queue count.
Maciej Sosin373149f2017-04-05 07:50:55 -04008793 * Note: expects to be called while under rtnl_lock()
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008794 **/
8795int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
8796{
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008797 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
8798 int new_rss_size;
8799
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008800 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
8801 return 0;
8802
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008803 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008804
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008805 if (queue_count != vsi->num_queue_pairs) {
Harshitha Ramamurthyf25571b2017-02-21 15:55:40 -08008806 u16 qcount;
8807
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008808 vsi->req_queue_pairs = queue_count;
Maciej Sosin373149f2017-04-05 07:50:55 -04008809 i40e_prep_for_reset(pf, true);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008810
Helin Zhangacd65442015-10-26 19:44:28 -04008811 pf->alloc_rss_size = new_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008812
Maciej Sosin373149f2017-04-05 07:50:55 -04008813 i40e_reset_and_rebuild(pf, true, true);
Helin Zhang28c58692015-10-26 19:44:27 -04008814
8815 /* Discard the user configured hash keys and lut, if less
8816 * queues are enabled.
8817 */
8818 if (queue_count < vsi->rss_size) {
8819 i40e_clear_rss_config_user(vsi);
8820 dev_dbg(&pf->pdev->dev,
8821 "discard user configured hash keys and lut\n");
8822 }
8823
8824 /* Reset vsi->rss_size, as number of enabled queues changed */
Harshitha Ramamurthyf25571b2017-02-21 15:55:40 -08008825 qcount = vsi->num_queue_pairs / vsi->tc_config.numtc;
8826 vsi->rss_size = min_t(int, pf->alloc_rss_size, qcount);
Helin Zhang28c58692015-10-26 19:44:27 -04008827
Helin Zhang043dd652015-10-21 19:56:23 -04008828 i40e_pf_config_rss(pf);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008829 }
Lihong Yang12815052016-09-27 11:28:48 -07008830 dev_info(&pf->pdev->dev, "User requested queue count/HW max RSS count: %d/%d\n",
8831 vsi->req_queue_pairs, pf->rss_size_max);
Helin Zhangacd65442015-10-26 19:44:28 -04008832 return pf->alloc_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008833}
8834
8835/**
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008836 * i40e_get_partition_bw_setting - Retrieve BW settings for this PF partition
Greg Rosef4492db2015-02-06 08:52:12 +00008837 * @pf: board private structure
8838 **/
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008839i40e_status i40e_get_partition_bw_setting(struct i40e_pf *pf)
Greg Rosef4492db2015-02-06 08:52:12 +00008840{
8841 i40e_status status;
8842 bool min_valid, max_valid;
8843 u32 max_bw, min_bw;
8844
8845 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
8846 &min_valid, &max_valid);
8847
8848 if (!status) {
8849 if (min_valid)
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008850 pf->min_bw = min_bw;
Greg Rosef4492db2015-02-06 08:52:12 +00008851 if (max_valid)
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008852 pf->max_bw = max_bw;
Greg Rosef4492db2015-02-06 08:52:12 +00008853 }
8854
8855 return status;
8856}
8857
8858/**
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008859 * i40e_set_partition_bw_setting - Set BW settings for this PF partition
Greg Rosef4492db2015-02-06 08:52:12 +00008860 * @pf: board private structure
8861 **/
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008862i40e_status i40e_set_partition_bw_setting(struct i40e_pf *pf)
Greg Rosef4492db2015-02-06 08:52:12 +00008863{
8864 struct i40e_aqc_configure_partition_bw_data bw_data;
8865 i40e_status status;
8866
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00008867 /* Set the valid bit for this PF */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008868 bw_data.pf_valid_bits = cpu_to_le16(BIT(pf->hw.pf_id));
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008869 bw_data.max_bw[pf->hw.pf_id] = pf->max_bw & I40E_ALT_BW_VALUE_MASK;
8870 bw_data.min_bw[pf->hw.pf_id] = pf->min_bw & I40E_ALT_BW_VALUE_MASK;
Greg Rosef4492db2015-02-06 08:52:12 +00008871
8872 /* Set the new bandwidths */
8873 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
8874
8875 return status;
8876}
8877
8878/**
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008879 * i40e_commit_partition_bw_setting - Commit BW settings for this PF partition
Greg Rosef4492db2015-02-06 08:52:12 +00008880 * @pf: board private structure
8881 **/
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008882i40e_status i40e_commit_partition_bw_setting(struct i40e_pf *pf)
Greg Rosef4492db2015-02-06 08:52:12 +00008883{
8884 /* Commit temporary BW setting to permanent NVM image */
8885 enum i40e_admin_queue_err last_aq_status;
8886 i40e_status ret;
8887 u16 nvm_word;
8888
8889 if (pf->hw.partition_id != 1) {
8890 dev_info(&pf->pdev->dev,
8891 "Commit BW only works on partition 1! This is partition %d",
8892 pf->hw.partition_id);
8893 ret = I40E_NOT_SUPPORTED;
8894 goto bw_commit_out;
8895 }
8896
8897 /* Acquire NVM for read access */
8898 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
8899 last_aq_status = pf->hw.aq.asq_last_status;
8900 if (ret) {
8901 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008902 "Cannot acquire NVM for read access, err %s aq_err %s\n",
8903 i40e_stat_str(&pf->hw, ret),
8904 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008905 goto bw_commit_out;
8906 }
8907
8908 /* Read word 0x10 of NVM - SW compatibility word 1 */
8909 ret = i40e_aq_read_nvm(&pf->hw,
8910 I40E_SR_NVM_CONTROL_WORD,
8911 0x10, sizeof(nvm_word), &nvm_word,
8912 false, NULL);
8913 /* Save off last admin queue command status before releasing
8914 * the NVM
8915 */
8916 last_aq_status = pf->hw.aq.asq_last_status;
8917 i40e_release_nvm(&pf->hw);
8918 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008919 dev_info(&pf->pdev->dev, "NVM read error, err %s aq_err %s\n",
8920 i40e_stat_str(&pf->hw, ret),
8921 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008922 goto bw_commit_out;
8923 }
8924
8925 /* Wait a bit for NVM release to complete */
8926 msleep(50);
8927
8928 /* Acquire NVM for write access */
8929 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
8930 last_aq_status = pf->hw.aq.asq_last_status;
8931 if (ret) {
8932 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008933 "Cannot acquire NVM for write access, err %s aq_err %s\n",
8934 i40e_stat_str(&pf->hw, ret),
8935 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008936 goto bw_commit_out;
8937 }
8938 /* Write it back out unchanged to initiate update NVM,
8939 * which will force a write of the shadow (alt) RAM to
8940 * the NVM - thus storing the bandwidth values permanently.
8941 */
8942 ret = i40e_aq_update_nvm(&pf->hw,
8943 I40E_SR_NVM_CONTROL_WORD,
8944 0x10, sizeof(nvm_word),
8945 &nvm_word, true, NULL);
8946 /* Save off last admin queue command status before releasing
8947 * the NVM
8948 */
8949 last_aq_status = pf->hw.aq.asq_last_status;
8950 i40e_release_nvm(&pf->hw);
8951 if (ret)
8952 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008953 "BW settings NOT SAVED, err %s aq_err %s\n",
8954 i40e_stat_str(&pf->hw, ret),
8955 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008956bw_commit_out:
8957
8958 return ret;
8959}
8960
8961/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008962 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
8963 * @pf: board private structure to initialize
8964 *
8965 * i40e_sw_init initializes the Adapter private data structure.
8966 * Fields are initialized based on PCI device information and
8967 * OS network device settings (MTU size).
8968 **/
8969static int i40e_sw_init(struct i40e_pf *pf)
8970{
8971 int err = 0;
8972 int size;
8973
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008974 /* Set default capability flags */
8975 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
8976 I40E_FLAG_MSI_ENABLED |
Mitch Williams2bc7ee82015-02-06 08:52:11 +00008977 I40E_FLAG_MSIX_ENABLED;
8978
Mitch Williamsca99eb92014-04-04 04:43:07 +00008979 /* Set default ITR */
Jacob Keller42702552017-09-07 08:05:48 -04008980 pf->rx_itr_default = I40E_ITR_RX_DEF;
8981 pf->tx_itr_default = I40E_ITR_TX_DEF;
Mitch Williamsca99eb92014-04-04 04:43:07 +00008982
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008983 /* Depending on PF configurations, it is possible that the RSS
8984 * maximum might end up larger than the available queues
8985 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008986 pf->rss_size_max = BIT(pf->hw.func_caps.rss_table_entry_width);
Helin Zhangacd65442015-10-26 19:44:28 -04008987 pf->alloc_rss_size = 1;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00008988 pf->rss_table_size = pf->hw.func_caps.rss_table_size;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008989 pf->rss_size_max = min_t(int, pf->rss_size_max,
8990 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008991 if (pf->hw.func_caps.rss) {
8992 pf->flags |= I40E_FLAG_RSS_ENABLED;
Helin Zhangacd65442015-10-26 19:44:28 -04008993 pf->alloc_rss_size = min_t(int, pf->rss_size_max,
8994 num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008995 }
8996
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008997 /* MFP mode enabled */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04008998 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.flex10_enable) {
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008999 pf->flags |= I40E_FLAG_MFP_ENABLED;
9000 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
Shannon Nelson4fc8c672017-06-07 05:43:08 -04009001 if (i40e_get_partition_bw_setting(pf)) {
Greg Rosef4492db2015-02-06 08:52:12 +00009002 dev_warn(&pf->pdev->dev,
Shannon Nelson4fc8c672017-06-07 05:43:08 -04009003 "Could not get partition bw settings\n");
9004 } else {
Greg Rosef4492db2015-02-06 08:52:12 +00009005 dev_info(&pf->pdev->dev,
Shannon Nelson4fc8c672017-06-07 05:43:08 -04009006 "Partition BW Min = %8.8x, Max = %8.8x\n",
9007 pf->min_bw, pf->max_bw);
9008
9009 /* nudge the Tx scheduler */
9010 i40e_set_partition_bw_setting(pf);
9011 }
Catherine Sullivan2050bc62013-12-18 13:46:03 +00009012 }
9013
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009014 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
9015 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
9016 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
9017 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Shannon Nelson6eae9c62015-09-03 17:18:55 -04009018 if (pf->flags & I40E_FLAG_MFP_ENABLED &&
9019 pf->hw.num_partitions > 1)
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009020 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00009021 "Flow Director Sideband mode Disabled in MFP mode\n");
Shannon Nelson6eae9c62015-09-03 17:18:55 -04009022 else
9023 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009024 pf->fdir_pf_filter_count =
9025 pf->hw.func_caps.fd_filters_guaranteed;
9026 pf->hw.fdir_shared_filter_count =
9027 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009028 }
9029
Anjali Singhai Jain5a433192017-06-23 04:24:45 -04009030 if (pf->hw.mac.type == I40E_MAC_X722) {
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009031 pf->hw_features |= (I40E_HW_RSS_AQ_CAPABLE |
9032 I40E_HW_128_QP_RSS_CAPABLE |
9033 I40E_HW_ATR_EVICT_CAPABLE |
9034 I40E_HW_WB_ON_ITR_CAPABLE |
9035 I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE |
9036 I40E_HW_NO_PCI_LINK_CHECK |
9037 I40E_HW_USE_SET_LLDP_MIB |
9038 I40E_HW_GENEVE_OFFLOAD_CAPABLE |
9039 I40E_HW_PTP_L4_CAPABLE |
9040 I40E_HW_WOL_MC_MAGIC_PKT_WAKE |
9041 I40E_HW_OUTER_UDP_CSUM_CAPABLE);
Anjali Singhai Jain10a955f2017-06-23 04:24:48 -04009042
9043#define I40E_FDEVICT_PCTYPE_DEFAULT 0xc03
9044 if (rd32(&pf->hw, I40E_GLQF_FDEVICTENA(1)) !=
9045 I40E_FDEVICT_PCTYPE_DEFAULT) {
9046 dev_warn(&pf->pdev->dev,
9047 "FD EVICT PCTYPES are not right, disable FD HW EVICT\n");
9048 pf->hw_features &= ~I40E_HW_ATR_EVICT_CAPABLE;
9049 }
Anjali Singhai Jain5a433192017-06-23 04:24:45 -04009050 } else if ((pf->hw.aq.api_maj_ver > 1) ||
9051 ((pf->hw.aq.api_maj_ver == 1) &&
9052 (pf->hw.aq.api_min_ver > 4))) {
9053 /* Supported in FW API version higher than 1.4 */
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009054 pf->hw_features |= I40E_HW_GENEVE_OFFLOAD_CAPABLE;
Anjali Singhai Jain5a433192017-06-23 04:24:45 -04009055 }
9056
9057 /* Enable HW ATR eviction if possible */
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009058 if (pf->hw_features & I40E_HW_ATR_EVICT_CAPABLE)
Anjali Singhai Jain5a433192017-06-23 04:24:45 -04009059 pf->flags |= I40E_FLAG_HW_ATR_EVICT_ENABLED;
9060
Bimmy Pujari6de432c2016-11-11 12:39:38 -08009061 if ((pf->hw.mac.type == I40E_MAC_XL710) &&
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08009062 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
Neerav Parikhf1bbad32016-01-13 16:51:39 -08009063 (pf->hw.aq.fw_maj_ver < 4))) {
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009064 pf->hw_features |= I40E_HW_RESTART_AUTONEG;
Neerav Parikhf1bbad32016-01-13 16:51:39 -08009065 /* No DCB support for FW < v4.33 */
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009066 pf->hw_features |= I40E_HW_NO_DCB_SUPPORT;
Neerav Parikhf1bbad32016-01-13 16:51:39 -08009067 }
9068
9069 /* Disable FW LLDP if FW < v4.3 */
Bimmy Pujari6de432c2016-11-11 12:39:38 -08009070 if ((pf->hw.mac.type == I40E_MAC_XL710) &&
Neerav Parikhf1bbad32016-01-13 16:51:39 -08009071 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
9072 (pf->hw.aq.fw_maj_ver < 4)))
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009073 pf->hw_features |= I40E_HW_STOP_FW_LLDP;
Neerav Parikhf1bbad32016-01-13 16:51:39 -08009074
9075 /* Use the FW Set LLDP MIB API if FW > v4.40 */
Bimmy Pujari6de432c2016-11-11 12:39:38 -08009076 if ((pf->hw.mac.type == I40E_MAC_XL710) &&
Neerav Parikhf1bbad32016-01-13 16:51:39 -08009077 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver >= 40)) ||
9078 (pf->hw.aq.fw_maj_ver >= 5)))
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009079 pf->hw_features |= I40E_HW_USE_SET_LLDP_MIB;
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08009080
Alan Bradyc3d26b72017-08-29 05:32:32 -04009081 /* Enable PTP L4 if FW > v6.0 */
9082 if (pf->hw.mac.type == I40E_MAC_XL710 &&
9083 pf->hw.aq.fw_maj_ver >= 6)
9084 pf->hw_features |= I40E_HW_PTP_L4_CAPABLE;
9085
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009086 if (pf->hw.func_caps.vmdq) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009087 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04009088 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
Jesse Brandeburge9e53662015-10-02 17:57:21 -07009089 pf->num_vmdq_qps = i40e_default_queues_per_vmdq(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009090 }
9091
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009092 if (pf->hw.func_caps.iwarp) {
9093 pf->flags |= I40E_FLAG_IWARP_ENABLED;
9094 /* IWARP needs one extra vector for CQP just like MISC.*/
9095 pf->num_iwarp_msix = (int)num_online_cpus() + 1;
9096 }
9097
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009098#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f132014-12-11 07:06:34 +00009099 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009100 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
9101 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
9102 pf->num_req_vfs = min_t(int,
9103 pf->hw.func_caps.num_vfs,
9104 I40E_MAX_VF_COUNT);
9105 }
9106#endif /* CONFIG_PCI_IOV */
9107 pf->eeprom_version = 0xDEAD;
9108 pf->lan_veb = I40E_NO_VEB;
9109 pf->lan_vsi = I40E_NO_VSI;
9110
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04009111 /* By default FW has this off for performance reasons */
9112 pf->flags &= ~I40E_FLAG_VEB_STATS_ENABLED;
9113
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009114 /* set up queue assignment tracking */
9115 size = sizeof(struct i40e_lump_tracking)
9116 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
9117 pf->qp_pile = kzalloc(size, GFP_KERNEL);
9118 if (!pf->qp_pile) {
9119 err = -ENOMEM;
9120 goto sw_init_done;
9121 }
9122 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
9123 pf->qp_pile->search_hint = 0;
9124
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00009125 pf->tx_timeout_recovery_level = 1;
9126
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009127 mutex_init(&pf->switch_mutex);
9128
9129sw_init_done:
9130 return err;
9131}
9132
9133/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009134 * i40e_set_ntuple - set the ntuple feature flag and take action
9135 * @pf: board private structure to initialize
9136 * @features: the feature set that the stack is suggesting
9137 *
9138 * returns a bool to indicate if reset needs to happen
9139 **/
9140bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
9141{
9142 bool need_reset = false;
9143
9144 /* Check if Flow Director n-tuple support was enabled or disabled. If
9145 * the state changed, we need to reset.
9146 */
9147 if (features & NETIF_F_NTUPLE) {
9148 /* Enable filters and mark for reset */
9149 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
9150 need_reset = true;
Tushar Davea70e4072016-05-16 12:40:53 -07009151 /* enable FD_SB only if there is MSI-X vector */
9152 if (pf->num_fdsb_msix > 0)
9153 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009154 } else {
9155 /* turn off filters, mark for reset and clear SW filter list */
9156 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9157 need_reset = true;
9158 i40e_fdir_filter_exit(pf);
9159 }
Jacob Keller47994c12017-04-19 09:25:57 -04009160 pf->flags &= ~(I40E_FLAG_FD_SB_ENABLED |
9161 I40E_FLAG_FD_SB_AUTO_DISABLED);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00009162 /* reset fd counters */
Jacob Keller097dbf52017-02-06 14:38:46 -08009163 pf->fd_add_err = 0;
9164 pf->fd_atr_cnt = 0;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00009165 /* if ATR was auto disabled it can be re-enabled. */
Jacob Keller47994c12017-04-19 09:25:57 -04009166 if (pf->flags & I40E_FLAG_FD_ATR_AUTO_DISABLED) {
9167 pf->flags &= ~I40E_FLAG_FD_ATR_AUTO_DISABLED;
9168 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
9169 (I40E_DEBUG_FD & pf->hw.debug_mask))
Jacob Keller234dc4e2016-09-06 18:05:09 -07009170 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
9171 }
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009172 }
9173 return need_reset;
9174}
9175
9176/**
Alan Bradyd8ec9862016-07-27 12:02:38 -07009177 * i40e_clear_rss_lut - clear the rx hash lookup table
9178 * @vsi: the VSI being configured
9179 **/
9180static void i40e_clear_rss_lut(struct i40e_vsi *vsi)
9181{
9182 struct i40e_pf *pf = vsi->back;
9183 struct i40e_hw *hw = &pf->hw;
9184 u16 vf_id = vsi->vf_id;
9185 u8 i;
9186
9187 if (vsi->type == I40E_VSI_MAIN) {
9188 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
9189 wr32(hw, I40E_PFQF_HLUT(i), 0);
9190 } else if (vsi->type == I40E_VSI_SRIOV) {
9191 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
9192 i40e_write_rx_ctl(hw, I40E_VFQF_HLUT1(i, vf_id), 0);
9193 } else {
9194 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
9195 }
9196}
9197
9198/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009199 * i40e_set_features - set the netdev feature flags
9200 * @netdev: ptr to the netdev being adjusted
9201 * @features: the feature set that the stack is suggesting
Maciej Sosin373149f2017-04-05 07:50:55 -04009202 * Note: expects to be called while under rtnl_lock()
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009203 **/
9204static int i40e_set_features(struct net_device *netdev,
9205 netdev_features_t features)
9206{
9207 struct i40e_netdev_priv *np = netdev_priv(netdev);
9208 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009209 struct i40e_pf *pf = vsi->back;
9210 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009211
Alan Bradyd8ec9862016-07-27 12:02:38 -07009212 if (features & NETIF_F_RXHASH && !(netdev->features & NETIF_F_RXHASH))
9213 i40e_pf_config_rss(pf);
9214 else if (!(features & NETIF_F_RXHASH) &&
9215 netdev->features & NETIF_F_RXHASH)
9216 i40e_clear_rss_lut(vsi);
9217
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009218 if (features & NETIF_F_HW_VLAN_CTAG_RX)
9219 i40e_vlan_stripping_enable(vsi);
9220 else
9221 i40e_vlan_stripping_disable(vsi);
9222
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009223 need_reset = i40e_set_ntuple(pf, features);
9224
9225 if (need_reset)
Maciej Sosin373149f2017-04-05 07:50:55 -04009226 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED), true);
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009227
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009228 return 0;
9229}
9230
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009231/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08009232 * i40e_get_udp_port_idx - Lookup a possibly offloaded for Rx UDP port
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009233 * @pf: board private structure
9234 * @port: The UDP port to look up
9235 *
9236 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
9237 **/
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009238static u8 i40e_get_udp_port_idx(struct i40e_pf *pf, u16 port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009239{
9240 u8 i;
9241
9242 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Jacob Keller27826fd2017-04-19 09:25:50 -04009243 if (pf->udp_ports[i].port == port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009244 return i;
9245 }
9246
9247 return i;
9248}
9249
9250/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009251 * i40e_udp_tunnel_add - Get notifications about UDP tunnel ports that come up
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009252 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009253 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009254 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009255static void i40e_udp_tunnel_add(struct net_device *netdev,
9256 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009257{
9258 struct i40e_netdev_priv *np = netdev_priv(netdev);
9259 struct i40e_vsi *vsi = np->vsi;
9260 struct i40e_pf *pf = vsi->back;
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009261 u16 port = ntohs(ti->port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009262 u8 next_idx;
9263 u8 idx;
9264
Singhai, Anjali6a899022015-12-14 12:21:18 -08009265 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009266
9267 /* Check if port already exists */
9268 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009269 netdev_info(netdev, "port %d already offloaded\n", port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009270 return;
9271 }
9272
9273 /* Now check if there is space to add the new port */
Singhai, Anjali6a899022015-12-14 12:21:18 -08009274 next_idx = i40e_get_udp_port_idx(pf, 0);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009275
9276 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009277 netdev_info(netdev, "maximum number of offloaded UDP ports reached, not adding port %d\n",
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009278 port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009279 return;
9280 }
9281
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009282 switch (ti->type) {
9283 case UDP_TUNNEL_TYPE_VXLAN:
9284 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_VXLAN;
9285 break;
9286 case UDP_TUNNEL_TYPE_GENEVE:
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009287 if (!(pf->hw_features & I40E_HW_GENEVE_OFFLOAD_CAPABLE))
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009288 return;
9289 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_NGE;
9290 break;
9291 default:
9292 return;
9293 }
9294
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009295 /* New port: add it and mark its index in the bitmap */
Jacob Keller27826fd2017-04-19 09:25:50 -04009296 pf->udp_ports[next_idx].port = port;
Singhai, Anjali6a899022015-12-14 12:21:18 -08009297 pf->pending_udp_bitmap |= BIT_ULL(next_idx);
9298 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009299}
9300
9301/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009302 * i40e_udp_tunnel_del - Get notifications about UDP tunnel ports that go away
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009303 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009304 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009305 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009306static void i40e_udp_tunnel_del(struct net_device *netdev,
9307 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009308{
9309 struct i40e_netdev_priv *np = netdev_priv(netdev);
9310 struct i40e_vsi *vsi = np->vsi;
9311 struct i40e_pf *pf = vsi->back;
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009312 u16 port = ntohs(ti->port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009313 u8 idx;
9314
Singhai, Anjali6a899022015-12-14 12:21:18 -08009315 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009316
9317 /* Check if port already exists */
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009318 if (idx >= I40E_MAX_PF_UDP_OFFLOAD_PORTS)
9319 goto not_found;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009320
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009321 switch (ti->type) {
9322 case UDP_TUNNEL_TYPE_VXLAN:
9323 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_VXLAN)
9324 goto not_found;
9325 break;
9326 case UDP_TUNNEL_TYPE_GENEVE:
9327 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_NGE)
9328 goto not_found;
9329 break;
9330 default:
9331 goto not_found;
Singhai, Anjali6a899022015-12-14 12:21:18 -08009332 }
9333
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009334 /* if port exists, set it to 0 (mark for deletion)
9335 * and make it pending
9336 */
Jacob Keller27826fd2017-04-19 09:25:50 -04009337 pf->udp_ports[idx].port = 0;
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009338 pf->pending_udp_bitmap |= BIT_ULL(idx);
Singhai, Anjali6a899022015-12-14 12:21:18 -08009339 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
9340
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009341 return;
9342not_found:
9343 netdev_warn(netdev, "UDP port %d was not found, not deleting\n",
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009344 port);
Singhai, Anjali6a899022015-12-14 12:21:18 -08009345}
9346
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009347static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01009348 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009349{
9350 struct i40e_netdev_priv *np = netdev_priv(netdev);
9351 struct i40e_pf *pf = np->vsi->back;
9352 struct i40e_hw *hw = &pf->hw;
9353
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009354 if (!(pf->hw_features & I40E_HW_PORT_ID_VALID))
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009355 return -EOPNOTSUPP;
9356
9357 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
9358 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
9359
9360 return 0;
9361}
9362
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08009363/**
9364 * i40e_ndo_fdb_add - add an entry to the hardware database
9365 * @ndm: the input from the stack
9366 * @tb: pointer to array of nladdr (unused)
9367 * @dev: the net device pointer
9368 * @addr: the MAC address entry being added
9369 * @flags: instructions from stack about fdb operation
9370 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00009371static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
9372 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01009373 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00009374 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00009375{
9376 struct i40e_netdev_priv *np = netdev_priv(dev);
9377 struct i40e_pf *pf = np->vsi->back;
9378 int err = 0;
9379
9380 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
9381 return -EOPNOTSUPP;
9382
Or Gerlitz65891fe2014-12-14 18:19:05 +02009383 if (vid) {
9384 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
9385 return -EINVAL;
9386 }
9387
Greg Rose4ba0dea2014-03-06 08:59:55 +00009388 /* Hardware does not support aging addresses so if a
9389 * ndm_state is given only allow permanent addresses
9390 */
9391 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
9392 netdev_info(dev, "FDB only supports static addresses\n");
9393 return -EINVAL;
9394 }
9395
9396 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
9397 err = dev_uc_add_excl(dev, addr);
9398 else if (is_multicast_ether_addr(addr))
9399 err = dev_mc_add_excl(dev, addr);
9400 else
9401 err = -EINVAL;
9402
9403 /* Only return duplicate errors if NLM_F_EXCL is set */
9404 if (err == -EEXIST && !(flags & NLM_F_EXCL))
9405 err = 0;
9406
9407 return err;
9408}
9409
Neerav Parikh51616012015-02-06 08:52:14 +00009410/**
9411 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
9412 * @dev: the netdev being configured
9413 * @nlh: RTNL message
9414 *
9415 * Inserts a new hardware bridge if not already created and
9416 * enables the bridging mode requested (VEB or VEPA). If the
9417 * hardware bridge has already been inserted and the request
9418 * is to change the mode then that requires a PF reset to
9419 * allow rebuild of the components with required hardware
9420 * bridge mode enabled.
Maciej Sosin373149f2017-04-05 07:50:55 -04009421 *
9422 * Note: expects to be called while under rtnl_lock()
Neerav Parikh51616012015-02-06 08:52:14 +00009423 **/
9424static int i40e_ndo_bridge_setlink(struct net_device *dev,
Carolyn Wyborny9df70b62015-04-27 14:57:11 -04009425 struct nlmsghdr *nlh,
9426 u16 flags)
Neerav Parikh51616012015-02-06 08:52:14 +00009427{
9428 struct i40e_netdev_priv *np = netdev_priv(dev);
9429 struct i40e_vsi *vsi = np->vsi;
9430 struct i40e_pf *pf = vsi->back;
9431 struct i40e_veb *veb = NULL;
9432 struct nlattr *attr, *br_spec;
9433 int i, rem;
9434
9435 /* Only for PF VSI for now */
9436 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
9437 return -EOPNOTSUPP;
9438
9439 /* Find the HW bridge for PF VSI */
9440 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9441 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9442 veb = pf->veb[i];
9443 }
9444
9445 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
9446
9447 nla_for_each_nested(attr, br_spec, rem) {
9448 __u16 mode;
9449
9450 if (nla_type(attr) != IFLA_BRIDGE_MODE)
9451 continue;
9452
9453 mode = nla_get_u16(attr);
9454 if ((mode != BRIDGE_MODE_VEPA) &&
9455 (mode != BRIDGE_MODE_VEB))
9456 return -EINVAL;
9457
9458 /* Insert a new HW bridge */
9459 if (!veb) {
9460 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
9461 vsi->tc_config.enabled_tc);
9462 if (veb) {
9463 veb->bridge_mode = mode;
9464 i40e_config_bridge_mode(veb);
9465 } else {
9466 /* No Bridge HW offload available */
9467 return -ENOENT;
9468 }
9469 break;
9470 } else if (mode != veb->bridge_mode) {
9471 /* Existing HW bridge but different mode needs reset */
9472 veb->bridge_mode = mode;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009473 /* TODO: If no VFs or VMDq VSIs, disallow VEB mode */
9474 if (mode == BRIDGE_MODE_VEB)
9475 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
9476 else
9477 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
Maciej Sosin373149f2017-04-05 07:50:55 -04009478 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED),
9479 true);
Neerav Parikh51616012015-02-06 08:52:14 +00009480 break;
9481 }
9482 }
9483
9484 return 0;
9485}
9486
9487/**
9488 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
9489 * @skb: skb buff
9490 * @pid: process id
9491 * @seq: RTNL message seq #
9492 * @dev: the netdev being configured
9493 * @filter_mask: unused
Jesse Brandeburgd4b2f9f2015-09-03 17:18:48 -04009494 * @nlflags: netlink flags passed in
Neerav Parikh51616012015-02-06 08:52:14 +00009495 *
9496 * Return the mode in which the hardware bridge is operating in
9497 * i.e VEB or VEPA.
9498 **/
Neerav Parikh51616012015-02-06 08:52:14 +00009499static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
9500 struct net_device *dev,
Carolyn Wyborny9f4ffc42015-08-31 19:54:42 -04009501 u32 __always_unused filter_mask,
9502 int nlflags)
Neerav Parikh51616012015-02-06 08:52:14 +00009503{
9504 struct i40e_netdev_priv *np = netdev_priv(dev);
9505 struct i40e_vsi *vsi = np->vsi;
9506 struct i40e_pf *pf = vsi->back;
9507 struct i40e_veb *veb = NULL;
9508 int i;
9509
9510 /* Only for PF VSI for now */
9511 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
9512 return -EOPNOTSUPP;
9513
9514 /* Find the HW bridge for the PF VSI */
9515 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9516 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9517 veb = pf->veb[i];
9518 }
9519
9520 if (!veb)
9521 return 0;
9522
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02009523 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
Huaibin Wang599b0762016-09-26 09:51:18 +02009524 0, 0, nlflags, filter_mask, NULL);
Neerav Parikh51616012015-02-06 08:52:14 +00009525}
Neerav Parikh51616012015-02-06 08:52:14 +00009526
Joe Stringerf44a75e2015-04-14 17:09:14 -07009527/**
9528 * i40e_features_check - Validate encapsulated packet conforms to limits
9529 * @skb: skb buff
Jean Sacren2bc11c62015-09-19 05:08:43 -06009530 * @dev: This physical port's netdev
Joe Stringerf44a75e2015-04-14 17:09:14 -07009531 * @features: Offload features that the stack believes apply
9532 **/
9533static netdev_features_t i40e_features_check(struct sk_buff *skb,
9534 struct net_device *dev,
9535 netdev_features_t features)
9536{
Alexander Duyckf114dca2016-10-25 16:08:46 -07009537 size_t len;
9538
9539 /* No point in doing any of this if neither checksum nor GSO are
9540 * being requested for this frame. We can rule out both by just
9541 * checking for CHECKSUM_PARTIAL
9542 */
9543 if (skb->ip_summed != CHECKSUM_PARTIAL)
9544 return features;
9545
9546 /* We cannot support GSO if the MSS is going to be less than
9547 * 64 bytes. If it is then we need to drop support for GSO.
9548 */
9549 if (skb_is_gso(skb) && (skb_shinfo(skb)->gso_size < 64))
9550 features &= ~NETIF_F_GSO_MASK;
9551
9552 /* MACLEN can support at most 63 words */
9553 len = skb_network_header(skb) - skb->data;
9554 if (len & ~(63 * 2))
9555 goto out_err;
9556
9557 /* IPLEN and EIPLEN can support at most 127 dwords */
9558 len = skb_transport_header(skb) - skb_network_header(skb);
9559 if (len & ~(127 * 4))
9560 goto out_err;
9561
9562 if (skb->encapsulation) {
9563 /* L4TUNLEN can support 127 words */
9564 len = skb_inner_network_header(skb) - skb_transport_header(skb);
9565 if (len & ~(127 * 2))
9566 goto out_err;
9567
9568 /* IPLEN can support at most 127 dwords */
9569 len = skb_inner_transport_header(skb) -
9570 skb_inner_network_header(skb);
9571 if (len & ~(127 * 4))
9572 goto out_err;
9573 }
9574
9575 /* No need to validate L4LEN as TCP is the only protocol with a
9576 * a flexible value and we support all possible values supported
9577 * by TCP, which is at most 15 dwords
9578 */
Joe Stringerf44a75e2015-04-14 17:09:14 -07009579
9580 return features;
Alexander Duyckf114dca2016-10-25 16:08:46 -07009581out_err:
9582 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Joe Stringerf44a75e2015-04-14 17:09:14 -07009583}
9584
Björn Töpel0c8493d2017-05-24 07:55:34 +02009585/**
9586 * i40e_xdp_setup - add/remove an XDP program
9587 * @vsi: VSI to changed
9588 * @prog: XDP program
9589 **/
9590static int i40e_xdp_setup(struct i40e_vsi *vsi,
9591 struct bpf_prog *prog)
9592{
9593 int frame_size = vsi->netdev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
9594 struct i40e_pf *pf = vsi->back;
9595 struct bpf_prog *old_prog;
9596 bool need_reset;
9597 int i;
9598
9599 /* Don't allow frames that span over multiple buffers */
9600 if (frame_size > vsi->rx_buf_len)
9601 return -EINVAL;
9602
9603 if (!i40e_enabled_xdp_vsi(vsi) && !prog)
9604 return 0;
9605
9606 /* When turning XDP on->off/off->on we reset and rebuild the rings. */
9607 need_reset = (i40e_enabled_xdp_vsi(vsi) != !!prog);
9608
9609 if (need_reset)
9610 i40e_prep_for_reset(pf, true);
9611
9612 old_prog = xchg(&vsi->xdp_prog, prog);
9613
9614 if (need_reset)
9615 i40e_reset_and_rebuild(pf, true, true);
9616
9617 for (i = 0; i < vsi->num_queue_pairs; i++)
9618 WRITE_ONCE(vsi->rx_rings[i]->xdp_prog, vsi->xdp_prog);
9619
9620 if (old_prog)
9621 bpf_prog_put(old_prog);
9622
9623 return 0;
9624}
9625
9626/**
9627 * i40e_xdp - implements ndo_xdp for i40e
9628 * @dev: netdevice
9629 * @xdp: XDP command
9630 **/
9631static int i40e_xdp(struct net_device *dev,
9632 struct netdev_xdp *xdp)
9633{
9634 struct i40e_netdev_priv *np = netdev_priv(dev);
9635 struct i40e_vsi *vsi = np->vsi;
9636
9637 if (vsi->type != I40E_VSI_MAIN)
9638 return -EINVAL;
9639
9640 switch (xdp->command) {
9641 case XDP_SETUP_PROG:
9642 return i40e_xdp_setup(vsi, xdp->prog);
9643 case XDP_QUERY_PROG:
9644 xdp->prog_attached = i40e_enabled_xdp_vsi(vsi);
Daniel Borkmanneb230392017-06-24 21:13:52 +02009645 xdp->prog_id = vsi->xdp_prog ? vsi->xdp_prog->aux->id : 0;
Björn Töpel0c8493d2017-05-24 07:55:34 +02009646 return 0;
9647 default:
9648 return -EINVAL;
9649 }
9650}
9651
Shannon Nelson37a29732015-02-27 09:15:19 +00009652static const struct net_device_ops i40e_netdev_ops = {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009653 .ndo_open = i40e_open,
9654 .ndo_stop = i40e_close,
9655 .ndo_start_xmit = i40e_lan_xmit_frame,
9656 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
9657 .ndo_set_rx_mode = i40e_set_rx_mode,
9658 .ndo_validate_addr = eth_validate_addr,
9659 .ndo_set_mac_address = i40e_set_mac,
9660 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009661 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009662 .ndo_tx_timeout = i40e_tx_timeout,
9663 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
9664 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
9665#ifdef CONFIG_NET_POLL_CONTROLLER
9666 .ndo_poll_controller = i40e_netpoll,
9667#endif
John Fastabende4c67342016-02-16 21:16:15 -08009668 .ndo_setup_tc = __i40e_setup_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009669 .ndo_set_features = i40e_set_features,
9670 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
9671 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04009672 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009673 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00009674 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00009675 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Anjali Singhai Jainc3bbbd22016-04-01 03:56:07 -07009676 .ndo_set_vf_trust = i40e_ndo_set_vf_trust,
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009677 .ndo_udp_tunnel_add = i40e_udp_tunnel_add,
9678 .ndo_udp_tunnel_del = i40e_udp_tunnel_del,
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009679 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00009680 .ndo_fdb_add = i40e_ndo_fdb_add,
Joe Stringerf44a75e2015-04-14 17:09:14 -07009681 .ndo_features_check = i40e_features_check,
Neerav Parikh51616012015-02-06 08:52:14 +00009682 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
9683 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
Björn Töpel0c8493d2017-05-24 07:55:34 +02009684 .ndo_xdp = i40e_xdp,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009685};
9686
9687/**
9688 * i40e_config_netdev - Setup the netdev flags
9689 * @vsi: the VSI being configured
9690 *
9691 * Returns 0 on success, negative value on failure
9692 **/
9693static int i40e_config_netdev(struct i40e_vsi *vsi)
9694{
9695 struct i40e_pf *pf = vsi->back;
9696 struct i40e_hw *hw = &pf->hw;
9697 struct i40e_netdev_priv *np;
9698 struct net_device *netdev;
Jacob Keller435c0842016-11-08 13:05:10 -08009699 u8 broadcast[ETH_ALEN];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009700 u8 mac_addr[ETH_ALEN];
9701 int etherdev_size;
Preethi Banalabacd75c2017-03-27 14:43:18 -07009702 netdev_features_t hw_enc_features;
9703 netdev_features_t hw_features;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009704
9705 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00009706 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009707 if (!netdev)
9708 return -ENOMEM;
9709
9710 vsi->netdev = netdev;
9711 np = netdev_priv(netdev);
9712 np->vsi = vsi;
9713
Preethi Banalabacd75c2017-03-27 14:43:18 -07009714 hw_enc_features = NETIF_F_SG |
9715 NETIF_F_IP_CSUM |
9716 NETIF_F_IPV6_CSUM |
9717 NETIF_F_HIGHDMA |
9718 NETIF_F_SOFT_FEATURES |
9719 NETIF_F_TSO |
9720 NETIF_F_TSO_ECN |
9721 NETIF_F_TSO6 |
9722 NETIF_F_GSO_GRE |
9723 NETIF_F_GSO_GRE_CSUM |
9724 NETIF_F_GSO_PARTIAL |
9725 NETIF_F_GSO_UDP_TUNNEL |
9726 NETIF_F_GSO_UDP_TUNNEL_CSUM |
9727 NETIF_F_SCTP_CRC |
9728 NETIF_F_RXHASH |
9729 NETIF_F_RXCSUM |
9730 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009731
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009732 if (!(pf->hw_features & I40E_HW_OUTER_UDP_CSUM_CAPABLE))
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009733 netdev->gso_partial_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
9734
9735 netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009736
Preethi Banalabacd75c2017-03-27 14:43:18 -07009737 netdev->hw_enc_features |= hw_enc_features;
9738
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009739 /* record features VLANs can make use of */
Preethi Banalabacd75c2017-03-27 14:43:18 -07009740 netdev->vlan_features |= hw_enc_features | NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009741
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009742 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009743 netdev->hw_features |= NETIF_F_NTUPLE;
Preethi Banalabacd75c2017-03-27 14:43:18 -07009744 hw_features = hw_enc_features |
9745 NETIF_F_HW_VLAN_CTAG_TX |
9746 NETIF_F_HW_VLAN_CTAG_RX;
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009747
Preethi Banalabacd75c2017-03-27 14:43:18 -07009748 netdev->hw_features |= hw_features;
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009749
Preethi Banalabacd75c2017-03-27 14:43:18 -07009750 netdev->features |= hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009751 netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009752
9753 if (vsi->type == I40E_VSI_MAIN) {
9754 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00009755 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Jacob Keller41c4c2b2017-04-05 07:50:57 -04009756 /* The following steps are necessary for two reasons. First,
9757 * some older NVM configurations load a default MAC-VLAN
9758 * filter that will accept any tagged packet, and we want to
9759 * replace this with a normal filter. Additionally, it is
9760 * possible our MAC address was provided by the platform using
9761 * Open Firmware or similar.
9762 *
9763 * Thus, we need to remove the default filter and install one
9764 * specific to the MAC address.
Jacob Keller1596b5d2016-11-08 13:05:15 -08009765 */
9766 i40e_rm_default_mac_filter(vsi, mac_addr);
Jacob Keller278e7d02016-10-05 09:30:37 -07009767 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller9569a9a2016-11-11 12:39:37 -08009768 i40e_add_mac_filter(vsi, mac_addr);
Jacob Keller278e7d02016-10-05 09:30:37 -07009769 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009770 } else {
Jacob Keller8c9eb352017-07-12 05:46:12 -04009771 /* Relate the VSI_VMDQ name to the VSI_MAIN name. Note that we
9772 * are still limited by IFNAMSIZ, but we're adding 'v%d\0' to
9773 * the end, which is 4 bytes long, so force truncation of the
9774 * original name by IFNAMSIZ - 4
9775 */
9776 snprintf(netdev->name, IFNAMSIZ, "%.*sv%%d",
9777 IFNAMSIZ - 4,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009778 pf->vsi[pf->lan_vsi]->netdev->name);
9779 random_ether_addr(mac_addr);
Kiran Patil21659032015-09-30 14:09:03 -04009780
Jacob Keller278e7d02016-10-05 09:30:37 -07009781 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller9569a9a2016-11-11 12:39:37 -08009782 i40e_add_mac_filter(vsi, mac_addr);
Jacob Keller278e7d02016-10-05 09:30:37 -07009783 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009784 }
Kiran Patil21659032015-09-30 14:09:03 -04009785
Jacob Keller435c0842016-11-08 13:05:10 -08009786 /* Add the broadcast filter so that we initially will receive
9787 * broadcast packets. Note that when a new VLAN is first added the
9788 * driver will convert all filters marked I40E_VLAN_ANY into VLAN
9789 * specific filters as part of transitioning into "vlan" operation.
9790 * When more VLANs are added, the driver will copy each existing MAC
9791 * filter and add it for the new VLAN.
9792 *
9793 * Broadcast filters are handled specially by
9794 * i40e_sync_filters_subtask, as the driver must to set the broadcast
9795 * promiscuous bit instead of adding this directly as a MAC/VLAN
9796 * filter. The subtask will update the correct broadcast promiscuous
9797 * bits as VLANs become active or inactive.
9798 */
9799 eth_broadcast_addr(broadcast);
9800 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller9569a9a2016-11-11 12:39:37 -08009801 i40e_add_mac_filter(vsi, broadcast);
Jacob Keller435c0842016-11-08 13:05:10 -08009802 spin_unlock_bh(&vsi->mac_filter_hash_lock);
9803
Greg Rose9a173902014-05-22 06:32:02 +00009804 ether_addr_copy(netdev->dev_addr, mac_addr);
9805 ether_addr_copy(netdev->perm_addr, mac_addr);
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009806
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009807 netdev->priv_flags |= IFF_UNICAST_FLT;
9808 netdev->priv_flags |= IFF_SUPP_NOFCS;
9809 /* Setup netdev TC information */
9810 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
9811
9812 netdev->netdev_ops = &i40e_netdev_ops;
9813 netdev->watchdog_timeo = 5 * HZ;
9814 i40e_set_ethtool_ops(netdev);
9815
Jarod Wilson91c527a2016-10-17 15:54:05 -04009816 /* MTU range: 68 - 9706 */
9817 netdev->min_mtu = ETH_MIN_MTU;
Mitch Williams1e3a5fd2017-06-23 04:24:43 -04009818 netdev->max_mtu = I40E_MAX_RXBUFFER - I40E_PACKET_HDR_PAD;
Jarod Wilson91c527a2016-10-17 15:54:05 -04009819
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009820 return 0;
9821}
9822
9823/**
9824 * i40e_vsi_delete - Delete a VSI from the switch
9825 * @vsi: the VSI being removed
9826 *
9827 * Returns 0 on success, negative value on failure
9828 **/
9829static void i40e_vsi_delete(struct i40e_vsi *vsi)
9830{
9831 /* remove default VSI is not allowed */
9832 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
9833 return;
9834
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009835 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009836}
9837
9838/**
Neerav Parikh51616012015-02-06 08:52:14 +00009839 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
9840 * @vsi: the VSI being queried
9841 *
9842 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
9843 **/
9844int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
9845{
9846 struct i40e_veb *veb;
9847 struct i40e_pf *pf = vsi->back;
9848
9849 /* Uplink is not a bridge so default to VEB */
9850 if (vsi->veb_idx == I40E_NO_VEB)
9851 return 1;
9852
9853 veb = pf->veb[vsi->veb_idx];
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009854 if (!veb) {
9855 dev_info(&pf->pdev->dev,
9856 "There is no veb associated with the bridge\n");
9857 return -ENOENT;
9858 }
Neerav Parikh51616012015-02-06 08:52:14 +00009859
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009860 /* Uplink is a bridge in VEPA mode */
9861 if (veb->bridge_mode & BRIDGE_MODE_VEPA) {
9862 return 0;
9863 } else {
9864 /* Uplink is a bridge in VEB mode */
9865 return 1;
9866 }
9867
9868 /* VEPA is now default bridge, so return 0 */
9869 return 0;
Neerav Parikh51616012015-02-06 08:52:14 +00009870}
9871
9872/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009873 * i40e_add_vsi - Add a VSI to the switch
9874 * @vsi: the VSI being configured
9875 *
9876 * This initializes a VSI context depending on the VSI type to be added and
9877 * passes it down to the add_vsi aq command.
9878 **/
9879static int i40e_add_vsi(struct i40e_vsi *vsi)
9880{
9881 int ret = -ENODEV;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009882 struct i40e_pf *pf = vsi->back;
9883 struct i40e_hw *hw = &pf->hw;
9884 struct i40e_vsi_context ctxt;
Jacob Keller278e7d02016-10-05 09:30:37 -07009885 struct i40e_mac_filter *f;
9886 struct hlist_node *h;
9887 int bkt;
Kiran Patil21659032015-09-30 14:09:03 -04009888
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009889 u8 enabled_tc = 0x1; /* TC0 enabled */
9890 int f_count = 0;
9891
9892 memset(&ctxt, 0, sizeof(ctxt));
9893 switch (vsi->type) {
9894 case I40E_VSI_MAIN:
9895 /* The PF's main VSI is already setup as part of the
9896 * device initialization, so we'll not bother with
9897 * the add_vsi call, but we will retrieve the current
9898 * VSI context.
9899 */
9900 ctxt.seid = pf->main_vsi_seid;
9901 ctxt.pf_num = pf->hw.pf_id;
9902 ctxt.vf_num = 0;
9903 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
9904 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
9905 if (ret) {
9906 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009907 "couldn't get PF vsi config, err %s aq_err %s\n",
9908 i40e_stat_str(&pf->hw, ret),
9909 i40e_aq_str(&pf->hw,
9910 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009911 return -ENOENT;
9912 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009913 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009914 vsi->info.valid_sections = 0;
9915
9916 vsi->seid = ctxt.seid;
9917 vsi->id = ctxt.vsi_number;
9918
9919 enabled_tc = i40e_pf_get_tc_map(pf);
9920
Mitch Williams64615b52017-08-29 05:32:30 -04009921 /* Source pruning is enabled by default, so the flag is
9922 * negative logic - if it's set, we need to fiddle with
9923 * the VSI to disable source pruning.
9924 */
9925 if (pf->flags & I40E_FLAG_SOURCE_PRUNING_DISABLED) {
9926 memset(&ctxt, 0, sizeof(ctxt));
9927 ctxt.seid = pf->main_vsi_seid;
9928 ctxt.pf_num = pf->hw.pf_id;
9929 ctxt.vf_num = 0;
9930 ctxt.info.valid_sections |=
9931 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9932 ctxt.info.switch_id =
9933 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_LOCAL_LB);
9934 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
9935 if (ret) {
9936 dev_info(&pf->pdev->dev,
9937 "update vsi failed, err %s aq_err %s\n",
9938 i40e_stat_str(&pf->hw, ret),
9939 i40e_aq_str(&pf->hw,
9940 pf->hw.aq.asq_last_status));
9941 ret = -ENOENT;
9942 goto err;
9943 }
9944 }
9945
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009946 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009947 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
9948 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009949 memset(&ctxt, 0, sizeof(ctxt));
9950 ctxt.seid = pf->main_vsi_seid;
9951 ctxt.pf_num = pf->hw.pf_id;
9952 ctxt.vf_num = 0;
9953 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
9954 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
9955 if (ret) {
9956 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009957 "update vsi failed, err %s aq_err %s\n",
9958 i40e_stat_str(&pf->hw, ret),
9959 i40e_aq_str(&pf->hw,
9960 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009961 ret = -ENOENT;
9962 goto err;
9963 }
9964 /* update the local VSI info queue map */
9965 i40e_vsi_update_queue_map(vsi, &ctxt);
9966 vsi->info.valid_sections = 0;
9967 } else {
9968 /* Default/Main VSI is only enabled for TC0
9969 * reconfigure it to enable all TCs that are
9970 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009971 * For MFP case the iSCSI PF would use this
9972 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009973 */
9974 ret = i40e_vsi_config_tc(vsi, enabled_tc);
9975 if (ret) {
Carolyn Wyborny19279232017-07-14 09:10:07 -04009976 /* Single TC condition is not fatal,
9977 * message and continue
9978 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009979 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009980 "failed to configure TCs for main VSI tc_map 0x%08x, err %s aq_err %s\n",
9981 enabled_tc,
9982 i40e_stat_str(&pf->hw, ret),
9983 i40e_aq_str(&pf->hw,
9984 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009985 }
9986 }
9987 break;
9988
9989 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009990 ctxt.pf_num = hw->pf_id;
9991 ctxt.vf_num = 0;
9992 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009993 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009994 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009995 if ((pf->flags & I40E_FLAG_VEB_MODE_ENABLED) &&
9996 (i40e_is_vsi_uplink_mode_veb(vsi))) {
Neerav Parikh51616012015-02-06 08:52:14 +00009997 ctxt.info.valid_sections |=
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009998 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
Neerav Parikh51616012015-02-06 08:52:14 +00009999 ctxt.info.switch_id =
Anjali Singhai Jainfc608612015-05-08 15:35:57 -070010000 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Neerav Parikh51616012015-02-06 08:52:14 +000010001 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010002 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010003 break;
10004
10005 case I40E_VSI_VMDQ2:
10006 ctxt.pf_num = hw->pf_id;
10007 ctxt.vf_num = 0;
10008 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +000010009 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010010 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
10011
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010012 /* This VSI is connected to VEB so the switch_id
10013 * should be set to zero by default.
10014 */
Neerav Parikh51616012015-02-06 08:52:14 +000010015 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
10016 ctxt.info.valid_sections |=
10017 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
10018 ctxt.info.switch_id =
10019 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
10020 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010021
10022 /* Setup the VSI tx/rx queue map for TC0 only for now */
10023 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
10024 break;
10025
10026 case I40E_VSI_SRIOV:
10027 ctxt.pf_num = hw->pf_id;
10028 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
10029 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +000010030 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010031 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
10032
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010033 /* This VSI is connected to VEB so the switch_id
10034 * should be set to zero by default.
10035 */
Neerav Parikh51616012015-02-06 08:52:14 +000010036 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
10037 ctxt.info.valid_sections |=
10038 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
10039 ctxt.info.switch_id =
10040 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
10041 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010042
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060010043 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
10044 ctxt.info.valid_sections |=
10045 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
10046 ctxt.info.queueing_opt_flags |=
Ashish Shah4b28cdb2016-05-03 15:13:17 -070010047 (I40E_AQ_VSI_QUE_OPT_TCP_ENA |
10048 I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060010049 }
10050
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010051 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
10052 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +000010053 if (pf->vf[vsi->vf_id].spoofchk) {
10054 ctxt.info.valid_sections |=
10055 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
10056 ctxt.info.sec_flags |=
10057 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
10058 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
10059 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010060 /* Setup the VSI tx/rx queue map for TC0 only for now */
10061 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
10062 break;
10063
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060010064 case I40E_VSI_IWARP:
10065 /* send down message to iWARP */
10066 break;
10067
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010068 default:
10069 return -ENODEV;
10070 }
10071
10072 if (vsi->type != I40E_VSI_MAIN) {
10073 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
10074 if (ret) {
10075 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010076 "add vsi failed, err %s aq_err %s\n",
10077 i40e_stat_str(&pf->hw, ret),
10078 i40e_aq_str(&pf->hw,
10079 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010080 ret = -ENOENT;
10081 goto err;
10082 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -070010083 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010084 vsi->info.valid_sections = 0;
10085 vsi->seid = ctxt.seid;
10086 vsi->id = ctxt.vsi_number;
10087 }
10088
Mitch Williamsc3c7ea22016-06-20 09:10:38 -070010089 vsi->active_filters = 0;
Jacob Keller0da36b92017-04-19 09:25:55 -040010090 clear_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state);
Jacob Keller278e7d02016-10-05 09:30:37 -070010091 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010092 /* If macvlan filters already exist, force them to get loaded */
Jacob Keller278e7d02016-10-05 09:30:37 -070010093 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -070010094 f->state = I40E_FILTER_NEW;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010095 f_count++;
10096 }
Jacob Keller278e7d02016-10-05 09:30:37 -070010097 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -040010098
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010099 if (f_count) {
10100 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
10101 pf->flags |= I40E_FLAG_FILTER_SYNC;
10102 }
10103
10104 /* Update VSI BW information */
10105 ret = i40e_vsi_get_bw_info(vsi);
10106 if (ret) {
10107 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010108 "couldn't get vsi bw info, err %s aq_err %s\n",
10109 i40e_stat_str(&pf->hw, ret),
10110 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010111 /* VSI is already added so not tearing that up */
10112 ret = 0;
10113 }
10114
10115err:
10116 return ret;
10117}
10118
10119/**
10120 * i40e_vsi_release - Delete a VSI and free its resources
10121 * @vsi: the VSI being removed
10122 *
10123 * Returns 0 on success or < 0 on error
10124 **/
10125int i40e_vsi_release(struct i40e_vsi *vsi)
10126{
Jacob Keller278e7d02016-10-05 09:30:37 -070010127 struct i40e_mac_filter *f;
10128 struct hlist_node *h;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010129 struct i40e_veb *veb = NULL;
10130 struct i40e_pf *pf;
10131 u16 uplink_seid;
Jacob Keller278e7d02016-10-05 09:30:37 -070010132 int i, n, bkt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010133
10134 pf = vsi->back;
10135
10136 /* release of a VEB-owner or last VSI is not allowed */
10137 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
10138 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
10139 vsi->seid, vsi->uplink_seid);
10140 return -ENODEV;
10141 }
10142 if (vsi == pf->vsi[pf->lan_vsi] &&
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030010143 !test_bit(__I40E_DOWN, pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010144 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
10145 return -ENODEV;
10146 }
10147
10148 uplink_seid = vsi->uplink_seid;
10149 if (vsi->type != I40E_VSI_SRIOV) {
10150 if (vsi->netdev_registered) {
10151 vsi->netdev_registered = false;
10152 if (vsi->netdev) {
10153 /* results in a call to i40e_close() */
10154 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010155 }
10156 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +000010157 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010158 }
10159 i40e_vsi_disable_irq(vsi);
10160 }
10161
Jacob Keller278e7d02016-10-05 09:30:37 -070010162 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller6622f5c2016-10-05 09:30:32 -070010163
10164 /* clear the sync flag on all filters */
10165 if (vsi->netdev) {
10166 __dev_uc_unsync(vsi->netdev, NULL);
10167 __dev_mc_unsync(vsi->netdev, NULL);
10168 }
10169
10170 /* make sure any remaining filters are marked for deletion */
Jacob Keller278e7d02016-10-05 09:30:37 -070010171 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist)
Jacob Keller290d2552016-10-05 09:30:36 -070010172 __i40e_del_filter(vsi, f);
Jacob Keller6622f5c2016-10-05 09:30:32 -070010173
Jacob Keller278e7d02016-10-05 09:30:37 -070010174 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -040010175
Jesse Brandeburg17652c62015-11-05 17:01:02 -080010176 i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010177
10178 i40e_vsi_delete(vsi);
10179 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +000010180 if (vsi->netdev) {
10181 free_netdev(vsi->netdev);
10182 vsi->netdev = NULL;
10183 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010184 i40e_vsi_clear_rings(vsi);
10185 i40e_vsi_clear(vsi);
10186
10187 /* If this was the last thing on the VEB, except for the
10188 * controlling VSI, remove the VEB, which puts the controlling
10189 * VSI onto the next level down in the switch.
10190 *
10191 * Well, okay, there's one more exception here: don't remove
10192 * the orphan VEBs yet. We'll wait for an explicit remove request
10193 * from up the network stack.
10194 */
Mitch Williams505682c2014-05-20 08:01:37 +000010195 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010196 if (pf->vsi[i] &&
10197 pf->vsi[i]->uplink_seid == uplink_seid &&
10198 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
10199 n++; /* count the VSIs */
10200 }
10201 }
10202 for (i = 0; i < I40E_MAX_VEB; i++) {
10203 if (!pf->veb[i])
10204 continue;
10205 if (pf->veb[i]->uplink_seid == uplink_seid)
10206 n++; /* count the VEBs */
10207 if (pf->veb[i]->seid == uplink_seid)
10208 veb = pf->veb[i];
10209 }
10210 if (n == 0 && veb && veb->uplink_seid != 0)
10211 i40e_veb_release(veb);
10212
10213 return 0;
10214}
10215
10216/**
10217 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
10218 * @vsi: ptr to the VSI
10219 *
10220 * This should only be called after i40e_vsi_mem_alloc() which allocates the
10221 * corresponding SW VSI structure and initializes num_queue_pairs for the
10222 * newly allocated VSI.
10223 *
10224 * Returns 0 on success or negative on failure
10225 **/
10226static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
10227{
10228 int ret = -ENOENT;
10229 struct i40e_pf *pf = vsi->back;
10230
Alexander Duyck493fb302013-09-28 07:01:44 +000010231 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010232 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
10233 vsi->seid);
10234 return -EEXIST;
10235 }
10236
10237 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +000010238 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010239 vsi->seid, vsi->base_vector);
10240 return -EEXIST;
10241 }
10242
Greg Rose90e04072014-03-06 08:59:57 +000010243 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010244 if (ret) {
10245 dev_info(&pf->pdev->dev,
10246 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
10247 vsi->num_q_vectors, vsi->seid, ret);
10248 vsi->num_q_vectors = 0;
10249 goto vector_setup_out;
10250 }
10251
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -040010252 /* In Legacy mode, we do not have to get any other vector since we
10253 * piggyback on the misc/ICR0 for queue interrupts.
10254 */
10255 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
10256 return ret;
Shannon Nelson958a3e32013-09-28 07:13:28 +000010257 if (vsi->num_q_vectors)
10258 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
10259 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010260 if (vsi->base_vector < 0) {
10261 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +000010262 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
10263 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010264 i40e_vsi_free_q_vectors(vsi);
10265 ret = -ENOENT;
10266 goto vector_setup_out;
10267 }
10268
10269vector_setup_out:
10270 return ret;
10271}
10272
10273/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010274 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
10275 * @vsi: pointer to the vsi.
10276 *
10277 * This re-allocates a vsi's queue resources.
10278 *
10279 * Returns pointer to the successfully allocated and configured VSI sw struct
10280 * on success, otherwise returns NULL on failure.
10281 **/
10282static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
10283{
Björn Töpel74608d12017-05-24 07:55:35 +020010284 u16 alloc_queue_pairs;
John Underwoodf5340392016-02-18 09:19:24 -080010285 struct i40e_pf *pf;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010286 u8 enabled_tc;
10287 int ret;
10288
John Underwoodf5340392016-02-18 09:19:24 -080010289 if (!vsi)
10290 return NULL;
10291
10292 pf = vsi->back;
10293
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010294 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
10295 i40e_vsi_clear_rings(vsi);
10296
10297 i40e_vsi_free_arrays(vsi, false);
10298 i40e_set_num_rings_in_vsi(vsi);
10299 ret = i40e_vsi_alloc_arrays(vsi, false);
10300 if (ret)
10301 goto err_vsi;
10302
Björn Töpel74608d12017-05-24 07:55:35 +020010303 alloc_queue_pairs = vsi->alloc_queue_pairs *
10304 (i40e_enabled_xdp_vsi(vsi) ? 2 : 1);
10305
10306 ret = i40e_get_lump(pf, pf->qp_pile, alloc_queue_pairs, vsi->idx);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010307 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +000010308 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010309 "failed to get tracking for %d queues for VSI %d err %d\n",
Björn Töpel74608d12017-05-24 07:55:35 +020010310 alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010311 goto err_vsi;
10312 }
10313 vsi->base_queue = ret;
10314
10315 /* Update the FW view of the VSI. Force a reset of TC and queue
10316 * layout configurations.
10317 */
10318 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
10319 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
10320 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
10321 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
Jacob Keller1596b5d2016-11-08 13:05:15 -080010322 if (vsi->type == I40E_VSI_MAIN)
10323 i40e_rm_default_mac_filter(vsi, pf->hw.mac.perm_addr);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010324
10325 /* assign it some queues */
10326 ret = i40e_alloc_rings(vsi);
10327 if (ret)
10328 goto err_rings;
10329
10330 /* map all of the rings to the q_vectors */
10331 i40e_vsi_map_rings_to_vectors(vsi);
10332 return vsi;
10333
10334err_rings:
10335 i40e_vsi_free_q_vectors(vsi);
10336 if (vsi->netdev_registered) {
10337 vsi->netdev_registered = false;
10338 unregister_netdev(vsi->netdev);
10339 free_netdev(vsi->netdev);
10340 vsi->netdev = NULL;
10341 }
10342 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
10343err_vsi:
10344 i40e_vsi_clear(vsi);
10345 return NULL;
10346}
10347
10348/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010349 * i40e_vsi_setup - Set up a VSI by a given type
10350 * @pf: board private structure
10351 * @type: VSI type
10352 * @uplink_seid: the switch element to link to
10353 * @param1: usage depends upon VSI type. For VF types, indicates VF id
10354 *
10355 * This allocates the sw VSI structure and its queue resources, then add a VSI
10356 * to the identified VEB.
10357 *
10358 * Returns pointer to the successfully allocated and configure VSI sw struct on
10359 * success, otherwise returns NULL on failure.
10360 **/
10361struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
10362 u16 uplink_seid, u32 param1)
10363{
10364 struct i40e_vsi *vsi = NULL;
10365 struct i40e_veb *veb = NULL;
Björn Töpel74608d12017-05-24 07:55:35 +020010366 u16 alloc_queue_pairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010367 int ret, i;
10368 int v_idx;
10369
10370 /* The requested uplink_seid must be either
10371 * - the PF's port seid
10372 * no VEB is needed because this is the PF
10373 * or this is a Flow Director special case VSI
10374 * - seid of an existing VEB
10375 * - seid of a VSI that owns an existing VEB
10376 * - seid of a VSI that doesn't own a VEB
10377 * a new VEB is created and the VSI becomes the owner
10378 * - seid of the PF VSI, which is what creates the first VEB
10379 * this is a special case of the previous
10380 *
10381 * Find which uplink_seid we were given and create a new VEB if needed
10382 */
10383 for (i = 0; i < I40E_MAX_VEB; i++) {
10384 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
10385 veb = pf->veb[i];
10386 break;
10387 }
10388 }
10389
10390 if (!veb && uplink_seid != pf->mac_seid) {
10391
Mitch Williams505682c2014-05-20 08:01:37 +000010392 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010393 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
10394 vsi = pf->vsi[i];
10395 break;
10396 }
10397 }
10398 if (!vsi) {
10399 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
10400 uplink_seid);
10401 return NULL;
10402 }
10403
10404 if (vsi->uplink_seid == pf->mac_seid)
10405 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
10406 vsi->tc_config.enabled_tc);
10407 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
10408 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
10409 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +000010410 if (veb) {
10411 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
10412 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040010413 "New VSI creation error, uplink seid of LAN VSI expected.\n");
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +000010414 return NULL;
10415 }
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040010416 /* We come up by default in VEPA mode if SRIOV is not
10417 * already enabled, in which case we can't force VEPA
10418 * mode.
10419 */
10420 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
10421 veb->bridge_mode = BRIDGE_MODE_VEPA;
10422 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
10423 }
Neerav Parikh51616012015-02-06 08:52:14 +000010424 i40e_config_bridge_mode(veb);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +000010425 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010426 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
10427 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
10428 veb = pf->veb[i];
10429 }
10430 if (!veb) {
10431 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
10432 return NULL;
10433 }
10434
10435 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
10436 uplink_seid = veb->seid;
10437 }
10438
10439 /* get vsi sw struct */
10440 v_idx = i40e_vsi_mem_alloc(pf, type);
10441 if (v_idx < 0)
10442 goto err_alloc;
10443 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010444 if (!vsi)
10445 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010446 vsi->type = type;
10447 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
10448
10449 if (type == I40E_VSI_MAIN)
10450 pf->lan_vsi = v_idx;
10451 else if (type == I40E_VSI_SRIOV)
10452 vsi->vf_id = param1;
10453 /* assign it some queues */
Björn Töpel74608d12017-05-24 07:55:35 +020010454 alloc_queue_pairs = vsi->alloc_queue_pairs *
10455 (i40e_enabled_xdp_vsi(vsi) ? 2 : 1);
10456
10457 ret = i40e_get_lump(pf, pf->qp_pile, alloc_queue_pairs, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010458 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +000010459 dev_info(&pf->pdev->dev,
10460 "failed to get tracking for %d queues for VSI %d err=%d\n",
Björn Töpel74608d12017-05-24 07:55:35 +020010461 alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010462 goto err_vsi;
10463 }
10464 vsi->base_queue = ret;
10465
10466 /* get a VSI from the hardware */
10467 vsi->uplink_seid = uplink_seid;
10468 ret = i40e_add_vsi(vsi);
10469 if (ret)
10470 goto err_vsi;
10471
10472 switch (vsi->type) {
10473 /* setup the netdev if needed */
10474 case I40E_VSI_MAIN:
10475 case I40E_VSI_VMDQ2:
10476 ret = i40e_config_netdev(vsi);
10477 if (ret)
10478 goto err_netdev;
10479 ret = register_netdev(vsi->netdev);
10480 if (ret)
10481 goto err_netdev;
10482 vsi->netdev_registered = true;
10483 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010484#ifdef CONFIG_I40E_DCB
10485 /* Setup DCB netlink interface */
10486 i40e_dcbnl_setup(vsi);
10487#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010488 /* fall through */
10489
10490 case I40E_VSI_FDIR:
10491 /* set up vectors and rings if needed */
10492 ret = i40e_vsi_setup_vectors(vsi);
10493 if (ret)
10494 goto err_msix;
10495
10496 ret = i40e_alloc_rings(vsi);
10497 if (ret)
10498 goto err_rings;
10499
10500 /* map all of the rings to the q_vectors */
10501 i40e_vsi_map_rings_to_vectors(vsi);
10502
10503 i40e_vsi_reset_stats(vsi);
10504 break;
10505
10506 default:
10507 /* no netdev or rings for the other VSI types */
10508 break;
10509 }
10510
Jacob Kellerd36e41d2017-06-23 04:24:46 -040010511 if ((pf->hw_features & I40E_HW_RSS_AQ_CAPABLE) &&
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -040010512 (vsi->type == I40E_VSI_VMDQ2)) {
10513 ret = i40e_vsi_config_rss(vsi);
10514 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010515 return vsi;
10516
10517err_rings:
10518 i40e_vsi_free_q_vectors(vsi);
10519err_msix:
10520 if (vsi->netdev_registered) {
10521 vsi->netdev_registered = false;
10522 unregister_netdev(vsi->netdev);
10523 free_netdev(vsi->netdev);
10524 vsi->netdev = NULL;
10525 }
10526err_netdev:
10527 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
10528err_vsi:
10529 i40e_vsi_clear(vsi);
10530err_alloc:
10531 return NULL;
10532}
10533
10534/**
10535 * i40e_veb_get_bw_info - Query VEB BW information
10536 * @veb: the veb to query
10537 *
10538 * Query the Tx scheduler BW configuration data for given VEB
10539 **/
10540static int i40e_veb_get_bw_info(struct i40e_veb *veb)
10541{
10542 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
10543 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
10544 struct i40e_pf *pf = veb->pf;
10545 struct i40e_hw *hw = &pf->hw;
10546 u32 tc_bw_max;
10547 int ret = 0;
10548 int i;
10549
10550 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
10551 &bw_data, NULL);
10552 if (ret) {
10553 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010554 "query veb bw config failed, err %s aq_err %s\n",
10555 i40e_stat_str(&pf->hw, ret),
10556 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010557 goto out;
10558 }
10559
10560 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
10561 &ets_data, NULL);
10562 if (ret) {
10563 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010564 "query veb bw ets config failed, err %s aq_err %s\n",
10565 i40e_stat_str(&pf->hw, ret),
10566 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010567 goto out;
10568 }
10569
10570 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
10571 veb->bw_max_quanta = ets_data.tc_bw_max;
10572 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +000010573 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010574 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
10575 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
10576 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
10577 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
10578 veb->bw_tc_limit_credits[i] =
10579 le16_to_cpu(bw_data.tc_bw_limits[i]);
10580 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
10581 }
10582
10583out:
10584 return ret;
10585}
10586
10587/**
10588 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
10589 * @pf: board private structure
10590 *
10591 * On error: returns error code (negative)
10592 * On success: returns vsi index in PF (positive)
10593 **/
10594static int i40e_veb_mem_alloc(struct i40e_pf *pf)
10595{
10596 int ret = -ENOENT;
10597 struct i40e_veb *veb;
10598 int i;
10599
10600 /* Need to protect the allocation of switch elements at the PF level */
10601 mutex_lock(&pf->switch_mutex);
10602
10603 /* VEB list may be fragmented if VEB creation/destruction has
10604 * been happening. We can afford to do a quick scan to look
10605 * for any free slots in the list.
10606 *
10607 * find next empty veb slot, looping back around if necessary
10608 */
10609 i = 0;
10610 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
10611 i++;
10612 if (i >= I40E_MAX_VEB) {
10613 ret = -ENOMEM;
10614 goto err_alloc_veb; /* out of VEB slots! */
10615 }
10616
10617 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
10618 if (!veb) {
10619 ret = -ENOMEM;
10620 goto err_alloc_veb;
10621 }
10622 veb->pf = pf;
10623 veb->idx = i;
10624 veb->enabled_tc = 1;
10625
10626 pf->veb[i] = veb;
10627 ret = i;
10628err_alloc_veb:
10629 mutex_unlock(&pf->switch_mutex);
10630 return ret;
10631}
10632
10633/**
10634 * i40e_switch_branch_release - Delete a branch of the switch tree
10635 * @branch: where to start deleting
10636 *
10637 * This uses recursion to find the tips of the branch to be
10638 * removed, deleting until we get back to and can delete this VEB.
10639 **/
10640static void i40e_switch_branch_release(struct i40e_veb *branch)
10641{
10642 struct i40e_pf *pf = branch->pf;
10643 u16 branch_seid = branch->seid;
10644 u16 veb_idx = branch->idx;
10645 int i;
10646
10647 /* release any VEBs on this VEB - RECURSION */
10648 for (i = 0; i < I40E_MAX_VEB; i++) {
10649 if (!pf->veb[i])
10650 continue;
10651 if (pf->veb[i]->uplink_seid == branch->seid)
10652 i40e_switch_branch_release(pf->veb[i]);
10653 }
10654
10655 /* Release the VSIs on this VEB, but not the owner VSI.
10656 *
10657 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
10658 * the VEB itself, so don't use (*branch) after this loop.
10659 */
Mitch Williams505682c2014-05-20 08:01:37 +000010660 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010661 if (!pf->vsi[i])
10662 continue;
10663 if (pf->vsi[i]->uplink_seid == branch_seid &&
10664 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
10665 i40e_vsi_release(pf->vsi[i]);
10666 }
10667 }
10668
10669 /* There's one corner case where the VEB might not have been
10670 * removed, so double check it here and remove it if needed.
10671 * This case happens if the veb was created from the debugfs
10672 * commands and no VSIs were added to it.
10673 */
10674 if (pf->veb[veb_idx])
10675 i40e_veb_release(pf->veb[veb_idx]);
10676}
10677
10678/**
10679 * i40e_veb_clear - remove veb struct
10680 * @veb: the veb to remove
10681 **/
10682static void i40e_veb_clear(struct i40e_veb *veb)
10683{
10684 if (!veb)
10685 return;
10686
10687 if (veb->pf) {
10688 struct i40e_pf *pf = veb->pf;
10689
10690 mutex_lock(&pf->switch_mutex);
10691 if (pf->veb[veb->idx] == veb)
10692 pf->veb[veb->idx] = NULL;
10693 mutex_unlock(&pf->switch_mutex);
10694 }
10695
10696 kfree(veb);
10697}
10698
10699/**
10700 * i40e_veb_release - Delete a VEB and free its resources
10701 * @veb: the VEB being removed
10702 **/
10703void i40e_veb_release(struct i40e_veb *veb)
10704{
10705 struct i40e_vsi *vsi = NULL;
10706 struct i40e_pf *pf;
10707 int i, n = 0;
10708
10709 pf = veb->pf;
10710
10711 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +000010712 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010713 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
10714 n++;
10715 vsi = pf->vsi[i];
10716 }
10717 }
10718 if (n != 1) {
10719 dev_info(&pf->pdev->dev,
10720 "can't remove VEB %d with %d VSIs left\n",
10721 veb->seid, n);
10722 return;
10723 }
10724
10725 /* move the remaining VSI to uplink veb */
10726 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
10727 if (veb->uplink_seid) {
10728 vsi->uplink_seid = veb->uplink_seid;
10729 if (veb->uplink_seid == pf->mac_seid)
10730 vsi->veb_idx = I40E_NO_VEB;
10731 else
10732 vsi->veb_idx = veb->veb_idx;
10733 } else {
10734 /* floating VEB */
10735 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
10736 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
10737 }
10738
10739 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
10740 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010741}
10742
10743/**
10744 * i40e_add_veb - create the VEB in the switch
10745 * @veb: the VEB to be instantiated
10746 * @vsi: the controlling VSI
10747 **/
10748static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
10749{
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010750 struct i40e_pf *pf = veb->pf;
Shannon Nelson66fc3602016-01-13 16:51:42 -080010751 bool enable_stats = !!(pf->flags & I40E_FLAG_VEB_STATS_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010752 int ret;
10753
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010754 ret = i40e_aq_add_veb(&pf->hw, veb->uplink_seid, vsi->seid,
Mitch Williams5bc16032016-05-16 10:26:43 -070010755 veb->enabled_tc, false,
Shannon Nelson66fc3602016-01-13 16:51:42 -080010756 &veb->seid, enable_stats, NULL);
Mitch Williams5bc16032016-05-16 10:26:43 -070010757
10758 /* get a VEB from the hardware */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010759 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010760 dev_info(&pf->pdev->dev,
10761 "couldn't add VEB, err %s aq_err %s\n",
10762 i40e_stat_str(&pf->hw, ret),
10763 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010764 return -EPERM;
10765 }
10766
10767 /* get statistics counter */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010768 ret = i40e_aq_get_veb_parameters(&pf->hw, veb->seid, NULL, NULL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010769 &veb->stats_idx, NULL, NULL, NULL);
10770 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010771 dev_info(&pf->pdev->dev,
10772 "couldn't get VEB statistics idx, err %s aq_err %s\n",
10773 i40e_stat_str(&pf->hw, ret),
10774 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010775 return -EPERM;
10776 }
10777 ret = i40e_veb_get_bw_info(veb);
10778 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010779 dev_info(&pf->pdev->dev,
10780 "couldn't get VEB bw info, err %s aq_err %s\n",
10781 i40e_stat_str(&pf->hw, ret),
10782 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
10783 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010784 return -ENOENT;
10785 }
10786
10787 vsi->uplink_seid = veb->seid;
10788 vsi->veb_idx = veb->idx;
10789 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
10790
10791 return 0;
10792}
10793
10794/**
10795 * i40e_veb_setup - Set up a VEB
10796 * @pf: board private structure
10797 * @flags: VEB setup flags
10798 * @uplink_seid: the switch element to link to
10799 * @vsi_seid: the initial VSI seid
10800 * @enabled_tc: Enabled TC bit-map
10801 *
10802 * This allocates the sw VEB structure and links it into the switch
10803 * It is possible and legal for this to be a duplicate of an already
10804 * existing VEB. It is also possible for both uplink and vsi seids
10805 * to be zero, in order to create a floating VEB.
10806 *
10807 * Returns pointer to the successfully allocated VEB sw struct on
10808 * success, otherwise returns NULL on failure.
10809 **/
10810struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
10811 u16 uplink_seid, u16 vsi_seid,
10812 u8 enabled_tc)
10813{
10814 struct i40e_veb *veb, *uplink_veb = NULL;
10815 int vsi_idx, veb_idx;
10816 int ret;
10817
10818 /* if one seid is 0, the other must be 0 to create a floating relay */
10819 if ((uplink_seid == 0 || vsi_seid == 0) &&
10820 (uplink_seid + vsi_seid != 0)) {
10821 dev_info(&pf->pdev->dev,
10822 "one, not both seid's are 0: uplink=%d vsi=%d\n",
10823 uplink_seid, vsi_seid);
10824 return NULL;
10825 }
10826
10827 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +000010828 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010829 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
10830 break;
Mitch Williams505682c2014-05-20 08:01:37 +000010831 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010832 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
10833 vsi_seid);
10834 return NULL;
10835 }
10836
10837 if (uplink_seid && uplink_seid != pf->mac_seid) {
10838 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
10839 if (pf->veb[veb_idx] &&
10840 pf->veb[veb_idx]->seid == uplink_seid) {
10841 uplink_veb = pf->veb[veb_idx];
10842 break;
10843 }
10844 }
10845 if (!uplink_veb) {
10846 dev_info(&pf->pdev->dev,
10847 "uplink seid %d not found\n", uplink_seid);
10848 return NULL;
10849 }
10850 }
10851
10852 /* get veb sw struct */
10853 veb_idx = i40e_veb_mem_alloc(pf);
10854 if (veb_idx < 0)
10855 goto err_alloc;
10856 veb = pf->veb[veb_idx];
10857 veb->flags = flags;
10858 veb->uplink_seid = uplink_seid;
10859 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
10860 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
10861
10862 /* create the VEB in the switch */
10863 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
10864 if (ret)
10865 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +000010866 if (vsi_idx == pf->lan_vsi)
10867 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010868
10869 return veb;
10870
10871err_veb:
10872 i40e_veb_clear(veb);
10873err_alloc:
10874 return NULL;
10875}
10876
10877/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000010878 * i40e_setup_pf_switch_element - set PF vars based on switch type
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010879 * @pf: board private structure
10880 * @ele: element we are building info from
10881 * @num_reported: total number of elements
10882 * @printconfig: should we print the contents
10883 *
10884 * helper function to assist in extracting a few useful SEID values.
10885 **/
10886static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
10887 struct i40e_aqc_switch_config_element_resp *ele,
10888 u16 num_reported, bool printconfig)
10889{
10890 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
10891 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
10892 u8 element_type = ele->element_type;
10893 u16 seid = le16_to_cpu(ele->seid);
10894
10895 if (printconfig)
10896 dev_info(&pf->pdev->dev,
10897 "type=%d seid=%d uplink=%d downlink=%d\n",
10898 element_type, seid, uplink_seid, downlink_seid);
10899
10900 switch (element_type) {
10901 case I40E_SWITCH_ELEMENT_TYPE_MAC:
10902 pf->mac_seid = seid;
10903 break;
10904 case I40E_SWITCH_ELEMENT_TYPE_VEB:
10905 /* Main VEB? */
10906 if (uplink_seid != pf->mac_seid)
10907 break;
10908 if (pf->lan_veb == I40E_NO_VEB) {
10909 int v;
10910
10911 /* find existing or else empty VEB */
10912 for (v = 0; v < I40E_MAX_VEB; v++) {
10913 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
10914 pf->lan_veb = v;
10915 break;
10916 }
10917 }
10918 if (pf->lan_veb == I40E_NO_VEB) {
10919 v = i40e_veb_mem_alloc(pf);
10920 if (v < 0)
10921 break;
10922 pf->lan_veb = v;
10923 }
10924 }
10925
10926 pf->veb[pf->lan_veb]->seid = seid;
10927 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
10928 pf->veb[pf->lan_veb]->pf = pf;
10929 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
10930 break;
10931 case I40E_SWITCH_ELEMENT_TYPE_VSI:
10932 if (num_reported != 1)
10933 break;
10934 /* This is immediately after a reset so we can assume this is
10935 * the PF's VSI
10936 */
10937 pf->mac_seid = uplink_seid;
10938 pf->pf_seid = downlink_seid;
10939 pf->main_vsi_seid = seid;
10940 if (printconfig)
10941 dev_info(&pf->pdev->dev,
10942 "pf_seid=%d main_vsi_seid=%d\n",
10943 pf->pf_seid, pf->main_vsi_seid);
10944 break;
10945 case I40E_SWITCH_ELEMENT_TYPE_PF:
10946 case I40E_SWITCH_ELEMENT_TYPE_VF:
10947 case I40E_SWITCH_ELEMENT_TYPE_EMP:
10948 case I40E_SWITCH_ELEMENT_TYPE_BMC:
10949 case I40E_SWITCH_ELEMENT_TYPE_PE:
10950 case I40E_SWITCH_ELEMENT_TYPE_PA:
10951 /* ignore these for now */
10952 break;
10953 default:
10954 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
10955 element_type, seid);
10956 break;
10957 }
10958}
10959
10960/**
10961 * i40e_fetch_switch_configuration - Get switch config from firmware
10962 * @pf: board private structure
10963 * @printconfig: should we print the contents
10964 *
10965 * Get the current switch configuration from the device and
10966 * extract a few useful SEID values.
10967 **/
10968int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
10969{
10970 struct i40e_aqc_get_switch_config_resp *sw_config;
10971 u16 next_seid = 0;
10972 int ret = 0;
10973 u8 *aq_buf;
10974 int i;
10975
10976 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
10977 if (!aq_buf)
10978 return -ENOMEM;
10979
10980 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
10981 do {
10982 u16 num_reported, num_total;
10983
10984 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
10985 I40E_AQ_LARGE_BUF,
10986 &next_seid, NULL);
10987 if (ret) {
10988 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010989 "get switch config failed err %s aq_err %s\n",
10990 i40e_stat_str(&pf->hw, ret),
10991 i40e_aq_str(&pf->hw,
10992 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010993 kfree(aq_buf);
10994 return -ENOENT;
10995 }
10996
10997 num_reported = le16_to_cpu(sw_config->header.num_reported);
10998 num_total = le16_to_cpu(sw_config->header.num_total);
10999
11000 if (printconfig)
11001 dev_info(&pf->pdev->dev,
11002 "header: %d reported %d total\n",
11003 num_reported, num_total);
11004
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011005 for (i = 0; i < num_reported; i++) {
11006 struct i40e_aqc_switch_config_element_resp *ele =
11007 &sw_config->element[i];
11008
11009 i40e_setup_pf_switch_element(pf, ele, num_reported,
11010 printconfig);
11011 }
11012 } while (next_seid != 0);
11013
11014 kfree(aq_buf);
11015 return ret;
11016}
11017
11018/**
11019 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
11020 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000011021 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011022 *
11023 * Returns 0 on success, negative value on failure
11024 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000011025static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011026{
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070011027 u16 flags = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011028 int ret;
11029
11030 /* find out what's out there already */
11031 ret = i40e_fetch_switch_configuration(pf, false);
11032 if (ret) {
11033 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040011034 "couldn't fetch switch config, err %s aq_err %s\n",
11035 i40e_stat_str(&pf->hw, ret),
11036 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011037 return ret;
11038 }
11039 i40e_pf_reset_stats(pf);
11040
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070011041 /* set the switch config bit for the whole device to
11042 * support limited promisc or true promisc
11043 * when user requests promisc. The default is limited
11044 * promisc.
11045 */
11046
11047 if ((pf->hw.pf_id == 0) &&
11048 !(pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT))
11049 flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
11050
11051 if (pf->hw.pf_id == 0) {
11052 u16 valid_flags;
11053
11054 valid_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
11055 ret = i40e_aq_set_switch_config(&pf->hw, flags, valid_flags,
11056 NULL);
11057 if (ret && pf->hw.aq.asq_last_status != I40E_AQ_RC_ESRCH) {
11058 dev_info(&pf->pdev->dev,
11059 "couldn't set switch config bits, err %s aq_err %s\n",
11060 i40e_stat_str(&pf->hw, ret),
11061 i40e_aq_str(&pf->hw,
11062 pf->hw.aq.asq_last_status));
11063 /* not a fatal problem, just keep going */
11064 }
11065 }
11066
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011067 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000011068 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011069 struct i40e_vsi *vsi = NULL;
11070 u16 uplink_seid;
11071
11072 /* Set up the PF VSI associated with the PF's main VSI
11073 * that is already in the HW switch
11074 */
11075 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
11076 uplink_seid = pf->veb[pf->lan_veb]->seid;
11077 else
11078 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000011079 if (pf->lan_vsi == I40E_NO_VSI)
11080 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
11081 else if (reinit)
11082 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011083 if (!vsi) {
11084 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
11085 i40e_fdir_teardown(pf);
11086 return -EAGAIN;
11087 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011088 } else {
11089 /* force a reset of TC and queue layout configurations */
11090 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -040011091
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011092 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
11093 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
11094 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
11095 }
11096 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
11097
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011098 i40e_fdir_sb_setup(pf);
11099
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011100 /* Setup static PF queue filter control settings */
11101 ret = i40e_setup_pf_filter_control(pf);
11102 if (ret) {
11103 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
11104 ret);
11105 /* Failure here should not stop continuing other steps */
11106 }
11107
11108 /* enable RSS in the HW, even for only one queue, as the stack can use
11109 * the hash
11110 */
11111 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
Helin Zhang043dd652015-10-21 19:56:23 -040011112 i40e_pf_config_rss(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011113
11114 /* fill in link information and enable LSE reporting */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011115 i40e_link_event(pf);
11116
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000011117 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011118 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
11119 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000011120
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000011121 i40e_ptp_init(pf);
11122
Alexander Duyck1f190d92017-04-19 09:25:51 -040011123 /* repopulate tunnel port filters */
11124 i40e_sync_udp_filters(pf);
11125
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011126 return ret;
11127}
11128
11129/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011130 * i40e_determine_queue_usage - Work out queue distribution
11131 * @pf: board private structure
11132 **/
11133static void i40e_determine_queue_usage(struct i40e_pf *pf)
11134{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011135 int queues_left;
Shannon Nelsone50d5752017-07-24 18:17:42 -070011136 int q_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011137
11138 pf->num_lan_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011139
11140 /* Find the max queues to be put into basic use. We'll always be
11141 * using TC0, whether or not DCB is running, and TC0 will get the
11142 * big RSS set.
11143 */
11144 queues_left = pf->hw.func_caps.num_tx_qp;
11145
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011146 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +000011147 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011148 /* one qp for PF, no queues for anything else */
11149 queues_left = 0;
Helin Zhangacd65442015-10-26 19:44:28 -040011150 pf->alloc_rss_size = pf->num_lan_qps = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011151
11152 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080011153 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011154 I40E_FLAG_IWARP_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080011155 I40E_FLAG_FD_SB_ENABLED |
11156 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000011157 I40E_FLAG_DCB_CAPABLE |
Dave Ertmana0362442016-08-29 17:38:26 -070011158 I40E_FLAG_DCB_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080011159 I40E_FLAG_SRIOV_ENABLED |
11160 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +000011161 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
11162 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +000011163 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000011164 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +000011165 /* one qp for PF */
Helin Zhangacd65442015-10-26 19:44:28 -040011166 pf->alloc_rss_size = pf->num_lan_qps = 1;
Frank Zhang9aa7e932014-05-20 08:01:42 +000011167 queues_left -= pf->num_lan_qps;
11168
11169 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011170 I40E_FLAG_IWARP_ENABLED |
Frank Zhang9aa7e932014-05-20 08:01:42 +000011171 I40E_FLAG_FD_SB_ENABLED |
11172 I40E_FLAG_FD_ATR_ENABLED |
11173 I40E_FLAG_DCB_ENABLED |
11174 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011175 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011176 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +000011177 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011178 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Dave Ertmana0362442016-08-29 17:38:26 -070011179 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE |
11180 I40E_FLAG_DCB_ENABLED);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011181 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
11182 }
Shannon Nelsone50d5752017-07-24 18:17:42 -070011183
11184 /* limit lan qps to the smaller of qps, cpus or msix */
11185 q_max = max_t(int, pf->rss_size_max, num_online_cpus());
11186 q_max = min_t(int, q_max, pf->hw.func_caps.num_tx_qp);
11187 q_max = min_t(int, q_max, pf->hw.func_caps.num_msix_vectors);
11188 pf->num_lan_qps = q_max;
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +000011189
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011190 queues_left -= pf->num_lan_qps;
11191 }
11192
11193 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
11194 if (queues_left > 1) {
11195 queues_left -= 1; /* save 1 queue for FD */
11196 } else {
11197 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
11198 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
11199 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011200 }
11201
11202 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
11203 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011204 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
11205 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011206 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
11207 }
11208
11209 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
11210 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
11211 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
11212 (queues_left / pf->num_vmdq_qps));
11213 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
11214 }
11215
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +000011216 pf->queues_left = queues_left;
Neerav Parikh8279e492015-09-03 17:18:50 -040011217 dev_dbg(&pf->pdev->dev,
11218 "qs_avail=%d FD SB=%d lan_qs=%d lan_tc0=%d vf=%d*%d vmdq=%d*%d, remaining=%d\n",
11219 pf->hw.func_caps.num_tx_qp,
11220 !!(pf->flags & I40E_FLAG_FD_SB_ENABLED),
Helin Zhangacd65442015-10-26 19:44:28 -040011221 pf->num_lan_qps, pf->alloc_rss_size, pf->num_req_vfs,
11222 pf->num_vf_qps, pf->num_vmdq_vsis, pf->num_vmdq_qps,
11223 queues_left);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011224}
11225
11226/**
11227 * i40e_setup_pf_filter_control - Setup PF static filter control
11228 * @pf: PF to be setup
11229 *
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000011230 * i40e_setup_pf_filter_control sets up a PF's initial filter control
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011231 * settings. If PE/FCoE are enabled then it will also set the per PF
11232 * based filter sizes required for them. It also enables Flow director,
11233 * ethertype and macvlan type filter settings for the pf.
11234 *
11235 * Returns 0 on success, negative on failure
11236 **/
11237static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
11238{
11239 struct i40e_filter_control_settings *settings = &pf->filter_settings;
11240
11241 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
11242
11243 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080011244 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011245 settings->enable_fdir = true;
11246
11247 /* Ethtype and MACVLAN filters enabled for PF */
11248 settings->enable_ethtype = true;
11249 settings->enable_macvlan = true;
11250
11251 if (i40e_set_filter_control(&pf->hw, settings))
11252 return -ENOENT;
11253
11254 return 0;
11255}
11256
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011257#define INFO_STRING_LEN 255
Shannon Nelson7fd89542015-10-21 19:47:04 -040011258#define REMAIN(__x) (INFO_STRING_LEN - (__x))
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011259static void i40e_print_features(struct i40e_pf *pf)
11260{
11261 struct i40e_hw *hw = &pf->hw;
Joe Perches3b195842015-12-03 04:20:57 -080011262 char *buf;
11263 int i;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011264
Joe Perches3b195842015-12-03 04:20:57 -080011265 buf = kmalloc(INFO_STRING_LEN, GFP_KERNEL);
11266 if (!buf)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011267 return;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011268
Joe Perches3b195842015-12-03 04:20:57 -080011269 i = snprintf(buf, INFO_STRING_LEN, "Features: PF-id[%d]", hw->pf_id);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011270#ifdef CONFIG_PCI_IOV
Joe Perches3b195842015-12-03 04:20:57 -080011271 i += snprintf(&buf[i], REMAIN(i), " VFs: %d", pf->num_req_vfs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011272#endif
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070011273 i += snprintf(&buf[i], REMAIN(i), " VSIs: %d QP: %d",
Shannon Nelson7fd89542015-10-21 19:47:04 -040011274 pf->hw.func_caps.num_vsis,
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070011275 pf->vsi[pf->lan_vsi]->num_queue_pairs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011276 if (pf->flags & I40E_FLAG_RSS_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080011277 i += snprintf(&buf[i], REMAIN(i), " RSS");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011278 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080011279 i += snprintf(&buf[i], REMAIN(i), " FD_ATR");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000011280 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
Joe Perches3b195842015-12-03 04:20:57 -080011281 i += snprintf(&buf[i], REMAIN(i), " FD_SB");
11282 i += snprintf(&buf[i], REMAIN(i), " NTUPLE");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000011283 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +000011284 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Joe Perches3b195842015-12-03 04:20:57 -080011285 i += snprintf(&buf[i], REMAIN(i), " DCB");
Joe Perches3b195842015-12-03 04:20:57 -080011286 i += snprintf(&buf[i], REMAIN(i), " VxLAN");
Singhai, Anjali6a899022015-12-14 12:21:18 -080011287 i += snprintf(&buf[i], REMAIN(i), " Geneve");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011288 if (pf->flags & I40E_FLAG_PTP)
Joe Perches3b195842015-12-03 04:20:57 -080011289 i += snprintf(&buf[i], REMAIN(i), " PTP");
Shannon Nelson6dec1012015-09-28 14:12:30 -040011290 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080011291 i += snprintf(&buf[i], REMAIN(i), " VEB");
Shannon Nelson6dec1012015-09-28 14:12:30 -040011292 else
Joe Perches3b195842015-12-03 04:20:57 -080011293 i += snprintf(&buf[i], REMAIN(i), " VEPA");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011294
Joe Perches3b195842015-12-03 04:20:57 -080011295 dev_info(&pf->pdev->dev, "%s\n", buf);
11296 kfree(buf);
Shannon Nelson7fd89542015-10-21 19:47:04 -040011297 WARN_ON(i > INFO_STRING_LEN);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011298}
11299
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011300/**
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011301 * i40e_get_platform_mac_addr - get platform-specific MAC address
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011302 * @pdev: PCI device information struct
11303 * @pf: board private structure
11304 *
Jacob Keller41c4c2b2017-04-05 07:50:57 -040011305 * Look up the MAC address for the device. First we'll try
11306 * eth_platform_get_mac_address, which will check Open Firmware, or arch
11307 * specific fallback. Otherwise, we'll default to the stored value in
11308 * firmware.
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011309 **/
11310static void i40e_get_platform_mac_addr(struct pci_dev *pdev, struct i40e_pf *pf)
11311{
Jacob Keller41c4c2b2017-04-05 07:50:57 -040011312 if (eth_platform_get_mac_address(&pdev->dev, pf->hw.mac.addr))
11313 i40e_get_mac_addr(&pf->hw, pf->hw.mac.addr);
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011314}
11315
11316/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011317 * i40e_probe - Device initialization routine
11318 * @pdev: PCI device information struct
11319 * @ent: entry in i40e_pci_tbl
11320 *
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000011321 * i40e_probe initializes a PF identified by a pci_dev structure.
11322 * The OS initialization, configuring of the PF private structure,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011323 * and a hardware reset occur.
11324 *
11325 * Returns 0 on success, negative on failure
11326 **/
11327static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
11328{
Catherine Sullivane8278452015-02-06 08:52:08 +000011329 struct i40e_aq_get_phy_abilities_resp abilities;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011330 struct i40e_pf *pf;
11331 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000011332 static u16 pfs_found;
Shannon Nelson1d5109d2015-08-26 15:14:08 -040011333 u16 wol_nvm_bits;
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011334 u16 link_status;
Jean Sacren6f66a482015-09-19 05:08:45 -060011335 int err;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040011336 u32 val;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000011337 u32 i;
Helin Zhang58fc3262015-10-01 14:37:38 -040011338 u8 set_fc_aq_fail;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011339
11340 err = pci_enable_device_mem(pdev);
11341 if (err)
11342 return err;
11343
11344 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +000011345 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +000011346 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +000011347 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
11348 if (err) {
11349 dev_err(&pdev->dev,
11350 "DMA configuration failed: 0x%x\n", err);
11351 goto err_dma;
11352 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011353 }
11354
11355 /* set up pci connections */
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011356 err = pci_request_mem_regions(pdev, i40e_driver_name);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011357 if (err) {
11358 dev_info(&pdev->dev,
11359 "pci_request_selected_regions failed %d\n", err);
11360 goto err_pci_reg;
11361 }
11362
11363 pci_enable_pcie_error_reporting(pdev);
11364 pci_set_master(pdev);
11365
11366 /* Now that we have a PCI connection, we need to do the
11367 * low level device setup. This is primarily setting up
11368 * the Admin Queue structures and then querying for the
11369 * device's current profile information.
11370 */
11371 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
11372 if (!pf) {
11373 err = -ENOMEM;
11374 goto err_pf_alloc;
11375 }
11376 pf->next_vsi = 0;
11377 pf->pdev = pdev;
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030011378 set_bit(__I40E_DOWN, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011379
11380 hw = &pf->hw;
11381 hw->back = pf;
Anjali Singhai232f4702015-02-26 16:15:39 +000011382
Shannon Nelson2ac8b672015-07-23 16:54:37 -040011383 pf->ioremap_len = min_t(int, pci_resource_len(pdev, 0),
11384 I40E_MAX_CSR_SPACE);
Anjali Singhai232f4702015-02-26 16:15:39 +000011385
Shannon Nelson2ac8b672015-07-23 16:54:37 -040011386 hw->hw_addr = ioremap(pci_resource_start(pdev, 0), pf->ioremap_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011387 if (!hw->hw_addr) {
11388 err = -EIO;
11389 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
11390 (unsigned int)pci_resource_start(pdev, 0),
Shannon Nelson2ac8b672015-07-23 16:54:37 -040011391 pf->ioremap_len, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011392 goto err_ioremap;
11393 }
11394 hw->vendor_id = pdev->vendor;
11395 hw->device_id = pdev->device;
11396 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
11397 hw->subsystem_vendor_id = pdev->subsystem_vendor;
11398 hw->subsystem_device_id = pdev->subsystem_device;
11399 hw->bus.device = PCI_SLOT(pdev->devfn);
11400 hw->bus.func = PCI_FUNC(pdev->devfn);
Sudheer Mogilappagarib3f028f2017-02-09 23:58:22 -080011401 hw->bus.bus_id = pdev->bus->number;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000011402 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011403
Scott Petersonab243ec2017-08-22 06:57:54 -040011404 /* Select something other than the 802.1ad ethertype for the
11405 * switch to use internally and drop on ingress.
11406 */
11407 hw->switch_tag = 0xffff;
11408 hw->first_tag = ETH_P_8021AD;
11409 hw->second_tag = ETH_P_8021Q;
11410
Jacob Keller0e588de2017-02-06 14:38:50 -080011411 INIT_LIST_HEAD(&pf->l3_flex_pit_list);
11412 INIT_LIST_HEAD(&pf->l4_flex_pit_list);
11413
Shannon Nelsonde03d2b2016-03-10 14:59:44 -080011414 /* set up the locks for the AQ, do this only once in probe
11415 * and destroy them only once in remove
11416 */
11417 mutex_init(&hw->aq.asq_mutex);
11418 mutex_init(&hw->aq.arq_mutex);
11419
Alexander Duyck5d4ca232016-09-30 08:21:46 -040011420 pf->msg_enable = netif_msg_init(debug,
11421 NETIF_MSG_DRV |
11422 NETIF_MSG_PROBE |
11423 NETIF_MSG_LINK);
11424 if (debug < -1)
11425 pf->hw.debug_mask = debug;
Shannon Nelson5b5faa42014-10-17 03:14:51 +000011426
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +000011427 /* do a special CORER for clearing PXE mode once at init */
11428 if (hw->revision_id == 0 &&
11429 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
11430 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
11431 i40e_flush(hw);
11432 msleep(200);
11433 pf->corer_count++;
11434
11435 i40e_clear_pxe_mode(hw);
11436 }
11437
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011438 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +000011439 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011440 err = i40e_pf_reset(hw);
11441 if (err) {
11442 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
11443 goto err_pf_reset;
11444 }
11445 pf->pfr_count++;
11446
11447 hw->aq.num_arq_entries = I40E_AQ_LEN;
11448 hw->aq.num_asq_entries = I40E_AQ_LEN;
11449 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
11450 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
11451 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000011452
Carolyn Wybornyb294ac72014-12-11 07:06:39 +000011453 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000011454 "%s-%s:misc",
11455 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011456
11457 err = i40e_init_shared_code(hw);
11458 if (err) {
Anjali Singhai Jainb2a75c52015-04-27 14:57:20 -040011459 dev_warn(&pdev->dev, "unidentified MAC or BLANK NVM: %d\n",
11460 err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011461 goto err_pf_reset;
11462 }
11463
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000011464 /* set up a default setting for link flow control */
11465 pf->hw.fc.requested_mode = I40E_FC_NONE;
11466
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011467 err = i40e_init_adminq(hw);
Carolyn Wyborny2b2426a762015-10-26 19:44:35 -040011468 if (err) {
11469 if (err == I40E_ERR_FIRMWARE_API_VERSION)
11470 dev_info(&pdev->dev,
11471 "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");
11472 else
11473 dev_info(&pdev->dev,
11474 "The driver for the device stopped because the device firmware failed to init. Try updating your NVM image.\n");
11475
11476 goto err_pf_reset;
11477 }
Filip Sadowski5bbb2e22017-06-07 05:43:09 -040011478 i40e_get_oem_version(hw);
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040011479
Shannon Nelson6dec1012015-09-28 14:12:30 -040011480 /* provide nvm, fw, api versions */
11481 dev_info(&pdev->dev, "fw %d.%d.%05d api %d.%d nvm %s\n",
11482 hw->aq.fw_maj_ver, hw->aq.fw_min_ver, hw->aq.fw_build,
11483 hw->aq.api_maj_ver, hw->aq.api_min_ver,
11484 i40e_nvm_version_str(hw));
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040011485
Catherine Sullivan7aa67612014-07-09 07:46:17 +000011486 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
Mitch Williams22b965512017-07-14 09:27:09 -040011487 hw->aq.api_min_ver > I40E_FW_MINOR_VERSION(hw))
Shannon Nelson278b6f62014-06-04 01:41:03 +000011488 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000011489 "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");
Mariusz Stachurae04ea002017-07-14 09:10:19 -040011490 else if (hw->aq.api_maj_ver == 1 && hw->aq.api_min_ver < 4)
Shannon Nelson278b6f62014-06-04 01:41:03 +000011491 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000011492 "The driver for the device detected an older version of the NVM image than expected. Please update the NVM image.\n");
Shannon Nelson278b6f62014-06-04 01:41:03 +000011493
Shannon Nelson4eb3f762014-03-06 08:59:58 +000011494 i40e_verify_eeprom(pf);
11495
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +000011496 /* Rev 0 hardware was never productized */
11497 if (hw->revision_id < 1)
11498 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");
11499
Shannon Nelson6ff4ef82013-12-21 05:44:49 +000011500 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011501 err = i40e_get_capabilities(pf);
11502 if (err)
11503 goto err_adminq_setup;
11504
11505 err = i40e_sw_init(pf);
11506 if (err) {
11507 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
11508 goto err_sw_init;
11509 }
11510
11511 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
Alexander Duyckc76cb6e2017-02-21 15:55:48 -080011512 hw->func_caps.num_rx_qp, 0, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011513 if (err) {
11514 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
11515 goto err_init_lan_hmc;
11516 }
11517
11518 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
11519 if (err) {
11520 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
11521 err = -ENOENT;
11522 goto err_configure_lan_hmc;
11523 }
11524
Neerav Parikhb686ece2014-12-14 01:55:11 +000011525 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
11526 * Ignore error return codes because if it was already disabled via
11527 * hardware settings this will fail
11528 */
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011529 if (pf->hw_features & I40E_HW_STOP_FW_LLDP) {
Neerav Parikhb686ece2014-12-14 01:55:11 +000011530 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
11531 i40e_aq_stop_lldp(hw, true, NULL);
11532 }
11533
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011534 /* allow a platform config to override the HW addr */
11535 i40e_get_platform_mac_addr(pdev, pf);
Jacob Keller41c4c2b2017-04-05 07:50:57 -040011536
Jesse Brandeburgf62b5062013-11-28 06:39:27 +000011537 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011538 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
11539 err = -EIO;
11540 goto err_mac_addr;
11541 }
11542 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +000011543 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +000011544 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
11545 if (is_valid_ether_addr(hw->mac.port_addr))
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011546 pf->hw_features |= I40E_HW_PORT_ID_VALID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011547
11548 pci_set_drvdata(pdev, pf);
11549 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080011550#ifdef CONFIG_I40E_DCB
11551 err = i40e_init_pf_dcb(pf);
11552 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +000011553 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
David Ertmanc17ef432016-09-30 01:36:21 -070011554 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE | I40E_FLAG_DCB_ENABLED);
Neerav Parikh014269f2014-04-01 07:11:48 +000011555 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080011556 }
11557#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011558
11559 /* set up periodic task facility */
11560 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
11561 pf->service_timer_period = HZ;
11562
11563 INIT_WORK(&pf->service_task, i40e_service_task);
Jacob Keller0da36b92017-04-19 09:25:55 -040011564 clear_bit(__I40E_SERVICE_SCHED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011565
Shannon Nelson1d5109d2015-08-26 15:14:08 -040011566 /* NVM bit on means WoL disabled for the port */
11567 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -080011568 if (BIT (hw->port) & wol_nvm_bits || hw->partition_id != 1)
Shannon Nelson1d5109d2015-08-26 15:14:08 -040011569 pf->wol_en = false;
11570 else
11571 pf->wol_en = true;
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011572 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
11573
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011574 /* set up the main switch operations */
11575 i40e_determine_queue_usage(pf);
Jesse Brandeburgc11472802015-04-07 19:45:39 -040011576 err = i40e_init_interrupt_scheme(pf);
11577 if (err)
11578 goto err_switch_setup;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011579
Mitch Williams505682c2014-05-20 08:01:37 +000011580 /* The number of VSIs reported by the FW is the minimum guaranteed
11581 * to us; HW supports far more and we share the remaining pool with
11582 * the other PFs. We allocate space for more than the guarantee with
11583 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011584 */
Mitch Williams505682c2014-05-20 08:01:37 +000011585 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
11586 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
11587 else
11588 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
11589
11590 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
Jesse Brandeburgd17038d2015-12-23 12:05:55 -080011591 pf->vsi = kcalloc(pf->num_alloc_vsi, sizeof(struct i40e_vsi *),
11592 GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +000011593 if (!pf->vsi) {
11594 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011595 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +000011596 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011597
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040011598#ifdef CONFIG_PCI_IOV
11599 /* prep for VF support */
11600 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
11601 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
Jacob Keller0da36b92017-04-19 09:25:55 -040011602 !test_bit(__I40E_BAD_EEPROM, pf->state)) {
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040011603 if (pci_num_vf(pdev))
11604 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
11605 }
11606#endif
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000011607 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011608 if (err) {
11609 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
11610 goto err_vsis;
11611 }
Helin Zhang58fc3262015-10-01 14:37:38 -040011612
11613 /* Make sure flow control is set according to current settings */
11614 err = i40e_set_fc(hw, &set_fc_aq_fail, true);
11615 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_GET)
11616 dev_dbg(&pf->pdev->dev,
11617 "Set fc with err %s aq_err %s on get_phy_cap\n",
11618 i40e_stat_str(hw, err),
11619 i40e_aq_str(hw, hw->aq.asq_last_status));
11620 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_SET)
11621 dev_dbg(&pf->pdev->dev,
11622 "Set fc with err %s aq_err %s on set_phy_config\n",
11623 i40e_stat_str(hw, err),
11624 i40e_aq_str(hw, hw->aq.asq_last_status));
11625 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_UPDATE)
11626 dev_dbg(&pf->pdev->dev,
11627 "Set fc with err %s aq_err %s on get_link_info\n",
11628 i40e_stat_str(hw, err),
11629 i40e_aq_str(hw, hw->aq.asq_last_status));
11630
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000011631 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +000011632 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000011633 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
11634 i40e_vsi_open(pf->vsi[i]);
11635 break;
11636 }
11637 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011638
Shannon Nelson2f0aff42016-01-04 10:33:08 -080011639 /* The driver only wants link up/down and module qualification
11640 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000011641 */
11642 err = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -080011643 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -070011644 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -080011645 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000011646 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040011647 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
11648 i40e_stat_str(&pf->hw, err),
11649 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000011650
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040011651 /* Reconfigure hardware for allowing smaller MSS in the case
11652 * of TSO, so that we avoid the MDD being fired and causing
11653 * a reset in the case of small MSS+TSO.
11654 */
11655 val = rd32(hw, I40E_REG_MSS);
11656 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
11657 val &= ~I40E_REG_MSS_MIN_MASK;
11658 val |= I40E_64BYTE_MSS;
11659 wr32(hw, I40E_REG_MSS, val);
11660 }
11661
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011662 if (pf->hw_features & I40E_HW_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +000011663 msleep(75);
11664 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
11665 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040011666 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
11667 i40e_stat_str(&pf->hw, err),
11668 i40e_aq_str(&pf->hw,
11669 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +000011670 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011671 /* The main driver is (mostly) up and happy. We need to set this state
11672 * before setting up the misc vector or we get a race and the vector
11673 * ends up disabled forever.
11674 */
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030011675 clear_bit(__I40E_DOWN, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011676
11677 /* In case of MSIX we are going to setup the misc vector right here
11678 * to handle admin queue events etc. In case of legacy and MSI
11679 * the misc functionality and queue processing is combined in
11680 * the same vector and that gets setup at open.
11681 */
11682 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
11683 err = i40e_setup_misc_vector(pf);
11684 if (err) {
11685 dev_info(&pdev->dev,
11686 "setup of misc vector failed: %d\n", err);
11687 goto err_vsis;
11688 }
11689 }
11690
Greg Rosedf805f62014-04-04 04:43:16 +000011691#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011692 /* prep for VF support */
11693 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +000011694 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
Jacob Keller0da36b92017-04-19 09:25:55 -040011695 !test_bit(__I40E_BAD_EEPROM, pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011696 /* disable link interrupts for VFs */
11697 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
11698 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
11699 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
11700 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -080011701
11702 if (pci_num_vf(pdev)) {
11703 dev_info(&pdev->dev,
11704 "Active VFs found, allocating resources.\n");
11705 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
11706 if (err)
11707 dev_info(&pdev->dev,
11708 "Error %d allocating resources for existing VFs\n",
11709 err);
11710 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011711 }
Greg Rosedf805f62014-04-04 04:43:16 +000011712#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011713
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011714 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11715 pf->iwarp_base_vector = i40e_get_lump(pf, pf->irq_pile,
11716 pf->num_iwarp_msix,
11717 I40E_IWARP_IRQ_PILE_ID);
11718 if (pf->iwarp_base_vector < 0) {
11719 dev_info(&pdev->dev,
11720 "failed to get tracking for %d vectors for IWARP err=%d\n",
11721 pf->num_iwarp_msix, pf->iwarp_base_vector);
11722 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
11723 }
11724 }
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000011725
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011726 i40e_dbg_pf_init(pf);
11727
11728 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +000011729 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011730
11731 /* since everything's happy, start the service_task timer */
11732 mod_timer(&pf->service_timer,
11733 round_jiffies(jiffies + pf->service_timer_period));
11734
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011735 /* add this PF to client device list and launch a client service task */
Mitch Williams004eb612017-04-04 12:40:16 -070011736 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11737 err = i40e_lan_add_device(pf);
11738 if (err)
11739 dev_info(&pdev->dev, "Failed to add PF to client API service list: %d\n",
11740 err);
11741 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011742
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011743#define PCI_SPEED_SIZE 8
11744#define PCI_WIDTH_SIZE 8
11745 /* Devices on the IOSF bus do not have this information
11746 * and will report PCI Gen 1 x 1 by default so don't bother
11747 * checking them.
11748 */
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011749 if (!(pf->hw_features & I40E_HW_NO_PCI_LINK_CHECK)) {
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011750 char speed[PCI_SPEED_SIZE] = "Unknown";
11751 char width[PCI_WIDTH_SIZE] = "Unknown";
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011752
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011753 /* Get the negotiated link width and speed from PCI config
11754 * space
11755 */
11756 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA,
11757 &link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011758
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011759 i40e_set_pci_config_data(hw, link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011760
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011761 switch (hw->bus.speed) {
11762 case i40e_bus_speed_8000:
11763 strncpy(speed, "8.0", PCI_SPEED_SIZE); break;
11764 case i40e_bus_speed_5000:
11765 strncpy(speed, "5.0", PCI_SPEED_SIZE); break;
11766 case i40e_bus_speed_2500:
11767 strncpy(speed, "2.5", PCI_SPEED_SIZE); break;
11768 default:
11769 break;
11770 }
11771 switch (hw->bus.width) {
11772 case i40e_bus_width_pcie_x8:
11773 strncpy(width, "8", PCI_WIDTH_SIZE); break;
11774 case i40e_bus_width_pcie_x4:
11775 strncpy(width, "4", PCI_WIDTH_SIZE); break;
11776 case i40e_bus_width_pcie_x2:
11777 strncpy(width, "2", PCI_WIDTH_SIZE); break;
11778 case i40e_bus_width_pcie_x1:
11779 strncpy(width, "1", PCI_WIDTH_SIZE); break;
11780 default:
11781 break;
11782 }
11783
11784 dev_info(&pdev->dev, "PCI-Express: Speed %sGT/s Width x%s\n",
11785 speed, width);
11786
11787 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
11788 hw->bus.speed < i40e_bus_speed_8000) {
11789 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
11790 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
11791 }
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011792 }
11793
Catherine Sullivane8278452015-02-06 08:52:08 +000011794 /* get the requested speeds from the fw */
11795 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
11796 if (err)
Neerav Parikh8279e492015-09-03 17:18:50 -040011797 dev_dbg(&pf->pdev->dev, "get requested speeds ret = %s last_status = %s\n",
11798 i40e_stat_str(&pf->hw, err),
11799 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Catherine Sullivane8278452015-02-06 08:52:08 +000011800 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
11801
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -040011802 /* get the supported phy types from the fw */
11803 err = i40e_aq_get_phy_capabilities(hw, false, true, &abilities, NULL);
11804 if (err)
11805 dev_dbg(&pf->pdev->dev, "get supported phy types ret = %s last_status = %s\n",
11806 i40e_stat_str(&pf->hw, err),
11807 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -040011808
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -040011809 /* Add a filter to drop all Flow control frames from any VSI from being
11810 * transmitted. By doing so we stop a malicious VF from sending out
11811 * PAUSE or PFC frames and potentially controlling traffic for other
11812 * PF/VF VSIs.
11813 * The FW can still send Flow control frames if enabled.
11814 */
11815 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
11816 pf->main_vsi_seid);
11817
Carolyn Wyborny31b606d2016-02-17 16:12:12 -080011818 if ((pf->hw.device_id == I40E_DEV_ID_10G_BASE_T) ||
Henry Tieman4f9b4302016-11-08 13:05:18 -080011819 (pf->hw.device_id == I40E_DEV_ID_10G_BASE_T4))
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011820 pf->hw_features |= I40E_HW_PHY_CONTROLS_LEDS;
Harshitha Ramamurthy4ad9f4f2016-11-08 13:05:09 -080011821 if (pf->hw.device_id == I40E_DEV_ID_SFP_I_X722)
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011822 pf->hw_features |= I40E_HW_HAVE_CRT_RETIMER;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011823 /* print a string summarizing features */
11824 i40e_print_features(pf);
11825
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011826 return 0;
11827
11828 /* Unwind what we've done if something failed in the setup */
11829err_vsis:
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030011830 set_bit(__I40E_DOWN, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011831 i40e_clear_interrupt_scheme(pf);
11832 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +000011833err_switch_setup:
11834 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011835 del_timer_sync(&pf->service_timer);
11836err_mac_addr:
11837err_configure_lan_hmc:
11838 (void)i40e_shutdown_lan_hmc(hw);
11839err_init_lan_hmc:
11840 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011841err_sw_init:
11842err_adminq_setup:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011843err_pf_reset:
11844 iounmap(hw->hw_addr);
11845err_ioremap:
11846 kfree(pf);
11847err_pf_alloc:
11848 pci_disable_pcie_error_reporting(pdev);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011849 pci_release_mem_regions(pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011850err_pci_reg:
11851err_dma:
11852 pci_disable_device(pdev);
11853 return err;
11854}
11855
11856/**
11857 * i40e_remove - Device removal routine
11858 * @pdev: PCI device information struct
11859 *
11860 * i40e_remove is called by the PCI subsystem to alert the driver
11861 * that is should release a PCI device. This could be caused by a
11862 * Hot-Plug event, or because the driver is going to be removed from
11863 * memory.
11864 **/
11865static void i40e_remove(struct pci_dev *pdev)
11866{
11867 struct i40e_pf *pf = pci_get_drvdata(pdev);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011868 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011869 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011870 int i;
11871
11872 i40e_dbg_pf_exit(pf);
11873
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000011874 i40e_ptp_stop(pf);
11875
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011876 /* Disable RSS in hw */
Shannon Nelson272cdaf22016-02-17 16:12:21 -080011877 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), 0);
11878 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), 0);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011879
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011880 /* no more scheduling of any task */
Jacob Keller0da36b92017-04-19 09:25:55 -040011881 set_bit(__I40E_SUSPENDED, pf->state);
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030011882 set_bit(__I40E_DOWN, pf->state);
Shannon Nelsonc99abb42016-03-10 14:59:45 -080011883 if (pf->service_timer.data)
11884 del_timer_sync(&pf->service_timer);
11885 if (pf->service_task.func)
11886 cancel_work_sync(&pf->service_task);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011887
Mitch Williams921c4672017-03-30 00:46:08 -070011888 /* Client close must be called explicitly here because the timer
11889 * has been stopped.
11890 */
11891 i40e_notify_client_of_netdev_close(pf->vsi[pf->lan_vsi], false);
11892
Mitch Williamseb2d80b2014-02-13 03:48:48 -080011893 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
11894 i40e_free_vfs(pf);
11895 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
11896 }
11897
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011898 i40e_fdir_teardown(pf);
11899
11900 /* If there is a switch structure or any orphans, remove them.
11901 * This will leave only the PF's VSI remaining.
11902 */
11903 for (i = 0; i < I40E_MAX_VEB; i++) {
11904 if (!pf->veb[i])
11905 continue;
11906
11907 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
11908 pf->veb[i]->uplink_seid == 0)
11909 i40e_switch_branch_release(pf->veb[i]);
11910 }
11911
11912 /* Now we can shutdown the PF's VSI, just before we kill
11913 * adminq and hmc.
11914 */
11915 if (pf->vsi[pf->lan_vsi])
11916 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
11917
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011918 /* remove attached clients */
Mitch Williams004eb612017-04-04 12:40:16 -070011919 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11920 ret_code = i40e_lan_del_device(pf);
11921 if (ret_code)
11922 dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
11923 ret_code);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011924 }
11925
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011926 /* shutdown and destroy the HMC */
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011927 if (hw->hmc.hmc_obj) {
11928 ret_code = i40e_shutdown_lan_hmc(hw);
Shannon Nelson60442de2014-04-23 04:50:13 +000011929 if (ret_code)
11930 dev_warn(&pdev->dev,
11931 "Failed to destroy the HMC resources: %d\n",
11932 ret_code);
11933 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011934
11935 /* shutdown the adminq */
Henry Tiemanac9c5c62016-09-06 18:05:11 -070011936 i40e_shutdown_adminq(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011937
Jesse Brandeburg8ddb3322015-11-18 15:47:06 -080011938 /* destroy the locks only once, here */
11939 mutex_destroy(&hw->aq.arq_mutex);
11940 mutex_destroy(&hw->aq.asq_mutex);
11941
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011942 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
11943 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +000011944 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011945 if (pf->vsi[i]) {
11946 i40e_vsi_clear_rings(pf->vsi[i]);
11947 i40e_vsi_clear(pf->vsi[i]);
11948 pf->vsi[i] = NULL;
11949 }
11950 }
11951
11952 for (i = 0; i < I40E_MAX_VEB; i++) {
11953 kfree(pf->veb[i]);
11954 pf->veb[i] = NULL;
11955 }
11956
11957 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011958 kfree(pf->vsi);
11959
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011960 iounmap(hw->hw_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011961 kfree(pf);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011962 pci_release_mem_regions(pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011963
11964 pci_disable_pcie_error_reporting(pdev);
11965 pci_disable_device(pdev);
11966}
11967
11968/**
11969 * i40e_pci_error_detected - warning that something funky happened in PCI land
11970 * @pdev: PCI device information struct
11971 *
11972 * Called to warn that something happened and the error handling steps
11973 * are in progress. Allows the driver to quiesce things, be ready for
11974 * remediation.
11975 **/
11976static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
11977 enum pci_channel_state error)
11978{
11979 struct i40e_pf *pf = pci_get_drvdata(pdev);
11980
11981 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
11982
Guilherme G Piccoliedfc23ee2016-10-03 00:31:12 -070011983 if (!pf) {
11984 dev_info(&pdev->dev,
11985 "Cannot recover - error happened during device probe\n");
11986 return PCI_ERS_RESULT_DISCONNECT;
11987 }
11988
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011989 /* shutdown all operations */
Jacob Kellerdfc4ff62017-06-07 05:43:13 -040011990 if (!test_bit(__I40E_SUSPENDED, pf->state))
11991 i40e_prep_for_reset(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011992
11993 /* Request a slot reset */
11994 return PCI_ERS_RESULT_NEED_RESET;
11995}
11996
11997/**
11998 * i40e_pci_error_slot_reset - a PCI slot reset just happened
11999 * @pdev: PCI device information struct
12000 *
12001 * Called to find if the driver can work with the device now that
12002 * the pci slot has been reset. If a basic connection seems good
12003 * (registers are readable and have sane content) then return a
12004 * happy little PCI_ERS_RESULT_xxx.
12005 **/
12006static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
12007{
12008 struct i40e_pf *pf = pci_get_drvdata(pdev);
12009 pci_ers_result_t result;
12010 int err;
12011 u32 reg;
12012
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040012013 dev_dbg(&pdev->dev, "%s\n", __func__);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012014 if (pci_enable_device_mem(pdev)) {
12015 dev_info(&pdev->dev,
12016 "Cannot re-enable PCI device after reset.\n");
12017 result = PCI_ERS_RESULT_DISCONNECT;
12018 } else {
12019 pci_set_master(pdev);
12020 pci_restore_state(pdev);
12021 pci_save_state(pdev);
12022 pci_wake_from_d3(pdev, false);
12023
12024 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
12025 if (reg == 0)
12026 result = PCI_ERS_RESULT_RECOVERED;
12027 else
12028 result = PCI_ERS_RESULT_DISCONNECT;
12029 }
12030
12031 err = pci_cleanup_aer_uncorrect_error_status(pdev);
12032 if (err) {
12033 dev_info(&pdev->dev,
12034 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
12035 err);
12036 /* non-fatal, continue */
12037 }
12038
12039 return result;
12040}
12041
12042/**
Alan Brady19b79602017-08-29 05:32:39 -040012043 * i40e_pci_error_reset_prepare - prepare device driver for pci reset
12044 * @pdev: PCI device information struct
12045 */
12046static void i40e_pci_error_reset_prepare(struct pci_dev *pdev)
12047{
12048 struct i40e_pf *pf = pci_get_drvdata(pdev);
12049
12050 i40e_prep_for_reset(pf, false);
12051}
12052
12053/**
12054 * i40e_pci_error_reset_done - pci reset done, device driver reset can begin
12055 * @pdev: PCI device information struct
12056 */
12057static void i40e_pci_error_reset_done(struct pci_dev *pdev)
12058{
12059 struct i40e_pf *pf = pci_get_drvdata(pdev);
12060
12061 i40e_reset_and_rebuild(pf, false, false);
12062}
12063
12064/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012065 * i40e_pci_error_resume - restart operations after PCI error recovery
12066 * @pdev: PCI device information struct
12067 *
12068 * Called to allow the driver to bring things back up after PCI error
12069 * and/or reset recovery has finished.
12070 **/
12071static void i40e_pci_error_resume(struct pci_dev *pdev)
12072{
12073 struct i40e_pf *pf = pci_get_drvdata(pdev);
12074
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040012075 dev_dbg(&pdev->dev, "%s\n", __func__);
Jacob Keller0da36b92017-04-19 09:25:55 -040012076 if (test_bit(__I40E_SUSPENDED, pf->state))
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012077 return;
12078
Jacob Kellerdfc4ff62017-06-07 05:43:13 -040012079 i40e_handle_reset_warning(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012080}
12081
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012082/**
Joshua Hay1d680052016-12-12 15:44:08 -080012083 * i40e_enable_mc_magic_wake - enable multicast magic packet wake up
12084 * using the mac_address_write admin q function
12085 * @pf: pointer to i40e_pf struct
12086 **/
12087static void i40e_enable_mc_magic_wake(struct i40e_pf *pf)
12088{
12089 struct i40e_hw *hw = &pf->hw;
12090 i40e_status ret;
12091 u8 mac_addr[6];
12092 u16 flags = 0;
12093
12094 /* Get current MAC address in case it's an LAA */
12095 if (pf->vsi[pf->lan_vsi] && pf->vsi[pf->lan_vsi]->netdev) {
12096 ether_addr_copy(mac_addr,
12097 pf->vsi[pf->lan_vsi]->netdev->dev_addr);
12098 } else {
12099 dev_err(&pf->pdev->dev,
12100 "Failed to retrieve MAC address; using default\n");
12101 ether_addr_copy(mac_addr, hw->mac.addr);
12102 }
12103
12104 /* The FW expects the mac address write cmd to first be called with
12105 * one of these flags before calling it again with the multicast
12106 * enable flags.
12107 */
12108 flags = I40E_AQC_WRITE_TYPE_LAA_WOL;
12109
12110 if (hw->func_caps.flex10_enable && hw->partition_id != 1)
12111 flags = I40E_AQC_WRITE_TYPE_LAA_ONLY;
12112
12113 ret = i40e_aq_mac_address_write(hw, flags, mac_addr, NULL);
12114 if (ret) {
12115 dev_err(&pf->pdev->dev,
12116 "Failed to update MAC address registers; cannot enable Multicast Magic packet wake up");
12117 return;
12118 }
12119
12120 flags = I40E_AQC_MC_MAG_EN
12121 | I40E_AQC_WOL_PRESERVE_ON_PFR
12122 | I40E_AQC_WRITE_TYPE_UPDATE_MC_MAG;
12123 ret = i40e_aq_mac_address_write(hw, flags, mac_addr, NULL);
12124 if (ret)
12125 dev_err(&pf->pdev->dev,
12126 "Failed to enable Multicast Magic Packet wake up\n");
12127}
12128
12129/**
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012130 * i40e_shutdown - PCI callback for shutting down
12131 * @pdev: PCI device information struct
12132 **/
12133static void i40e_shutdown(struct pci_dev *pdev)
12134{
12135 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012136 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012137
Jacob Keller0da36b92017-04-19 09:25:55 -040012138 set_bit(__I40E_SUSPENDED, pf->state);
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030012139 set_bit(__I40E_DOWN, pf->state);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012140 rtnl_lock();
Maciej Sosin373149f2017-04-05 07:50:55 -040012141 i40e_prep_for_reset(pf, true);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012142 rtnl_unlock();
12143
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012144 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
12145 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
12146
Catherine Sullivan02b42492015-07-10 19:35:59 -040012147 del_timer_sync(&pf->service_timer);
12148 cancel_work_sync(&pf->service_task);
12149 i40e_fdir_teardown(pf);
12150
Mitch Williams921c4672017-03-30 00:46:08 -070012151 /* Client close must be called explicitly here because the timer
12152 * has been stopped.
12153 */
12154 i40e_notify_client_of_netdev_close(pf->vsi[pf->lan_vsi], false);
12155
Jacob Kellerd36e41d2017-06-23 04:24:46 -040012156 if (pf->wol_en && (pf->hw_features & I40E_HW_WOL_MC_MAGIC_PKT_WAKE))
Joshua Hay1d680052016-12-12 15:44:08 -080012157 i40e_enable_mc_magic_wake(pf);
12158
Jacob Kellerdfc4ff62017-06-07 05:43:13 -040012159 i40e_prep_for_reset(pf, false);
Catherine Sullivan02b42492015-07-10 19:35:59 -040012160
12161 wr32(hw, I40E_PFPM_APM,
12162 (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
12163 wr32(hw, I40E_PFPM_WUFC,
12164 (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
12165
Shannon Nelsone1477582015-02-21 06:44:33 +000012166 i40e_clear_interrupt_scheme(pf);
12167
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012168 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012169 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012170 pci_set_power_state(pdev, PCI_D3hot);
12171 }
12172}
12173
12174#ifdef CONFIG_PM
12175/**
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012176 * i40e_suspend - PM callback for moving to D3
12177 * @dev: generic device information structure
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012178 **/
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012179static int i40e_suspend(struct device *dev)
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012180{
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012181 struct pci_dev *pdev = to_pci_dev(dev);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012182 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012183 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012184
Jacob Keller401586c2017-07-14 09:27:04 -040012185 /* If we're already suspended, then there is nothing to do */
12186 if (test_and_set_bit(__I40E_SUSPENDED, pf->state))
12187 return 0;
12188
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030012189 set_bit(__I40E_DOWN, pf->state);
Mitch Williams3932dbf2015-03-31 00:45:04 -070012190
Jacob Keller5c499222017-07-14 09:27:05 -040012191 /* Ensure service task will not be running */
12192 del_timer_sync(&pf->service_timer);
12193 cancel_work_sync(&pf->service_task);
12194
Jacob Kellerd36e41d2017-06-23 04:24:46 -040012195 if (pf->wol_en && (pf->hw_features & I40E_HW_WOL_MC_MAGIC_PKT_WAKE))
Joshua Hay1d680052016-12-12 15:44:08 -080012196 i40e_enable_mc_magic_wake(pf);
12197
Jacob Kellerdfc4ff62017-06-07 05:43:13 -040012198 i40e_prep_for_reset(pf, false);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012199
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012200 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
12201 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
12202
Jacob Kellerb980c062017-07-14 09:27:06 -040012203 /* Clear the interrupt scheme and release our IRQs so that the system
12204 * can safely hibernate even when there are a large number of CPUs.
12205 * Otherwise hibernation might fail when mapping all the vectors back
12206 * to CPU0.
12207 */
12208 i40e_clear_interrupt_scheme(pf);
Jacob Kellerc17401a2017-07-14 09:27:02 -040012209
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012210 return 0;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012211}
12212
12213/**
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012214 * i40e_resume - PM callback for waking up from D3
12215 * @dev: generic device information structure
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012216 **/
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012217static int i40e_resume(struct device *dev)
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012218{
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012219 struct pci_dev *pdev = to_pci_dev(dev);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012220 struct i40e_pf *pf = pci_get_drvdata(pdev);
Jacob Kellerb980c062017-07-14 09:27:06 -040012221 int err;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012222
Jacob Keller401586c2017-07-14 09:27:04 -040012223 /* If we're not suspended, then there is nothing to do */
12224 if (!test_bit(__I40E_SUSPENDED, pf->state))
12225 return 0;
12226
Jacob Kellerb980c062017-07-14 09:27:06 -040012227 /* We cleared the interrupt scheme when we suspended, so we need to
12228 * restore it now to resume device functionality.
12229 */
12230 err = i40e_restore_interrupt_scheme(pf);
12231 if (err) {
12232 dev_err(&pdev->dev, "Cannot restore interrupt scheme: %d\n",
12233 err);
12234 }
12235
Jacob Keller401586c2017-07-14 09:27:04 -040012236 clear_bit(__I40E_DOWN, pf->state);
12237 i40e_reset_and_rebuild(pf, false, false);
12238
12239 /* Clear suspended state last after everything is recovered */
12240 clear_bit(__I40E_SUSPENDED, pf->state);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012241
Jacob Keller5c499222017-07-14 09:27:05 -040012242 /* Restart the service task */
12243 mod_timer(&pf->service_timer,
12244 round_jiffies(jiffies + pf->service_timer_period));
12245
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012246 return 0;
12247}
12248
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012249#endif /* CONFIG_PM */
12250
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012251static const struct pci_error_handlers i40e_err_handler = {
12252 .error_detected = i40e_pci_error_detected,
12253 .slot_reset = i40e_pci_error_slot_reset,
Alan Brady19b79602017-08-29 05:32:39 -040012254 .reset_prepare = i40e_pci_error_reset_prepare,
12255 .reset_done = i40e_pci_error_reset_done,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012256 .resume = i40e_pci_error_resume,
12257};
12258
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012259static SIMPLE_DEV_PM_OPS(i40e_pm_ops, i40e_suspend, i40e_resume);
12260
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012261static struct pci_driver i40e_driver = {
12262 .name = i40e_driver_name,
12263 .id_table = i40e_pci_tbl,
12264 .probe = i40e_probe,
12265 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012266#ifdef CONFIG_PM
Jacob Keller0e5d3da2017-07-14 09:27:03 -040012267 .driver = {
12268 .pm = &i40e_pm_ops,
12269 },
12270#endif /* CONFIG_PM */
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012271 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012272 .err_handler = &i40e_err_handler,
12273 .sriov_configure = i40e_pci_sriov_configure,
12274};
12275
12276/**
12277 * i40e_init_module - Driver registration routine
12278 *
12279 * i40e_init_module is the first routine called when the driver is
12280 * loaded. All it does is register with the PCI subsystem.
12281 **/
12282static int __init i40e_init_module(void)
12283{
12284 pr_info("%s: %s - version %s\n", i40e_driver_name,
12285 i40e_driver_string, i40e_driver_version_str);
12286 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
Greg Rose96664482015-02-06 08:52:13 +000012287
Jacob Keller4d5957c2017-06-20 15:16:54 -070012288 /* There is no need to throttle the number of active tasks because
12289 * each device limits its own task using a state bit for scheduling
12290 * the service task, and the device tasks do not interfere with each
12291 * other, so we don't set a max task limit. We must set WQ_MEM_RECLAIM
12292 * since we need to be able to guarantee forward progress even under
12293 * memory pressure.
Jesse Brandeburg2803b162015-12-22 14:25:08 -080012294 */
Jacob Keller4d5957c2017-06-20 15:16:54 -070012295 i40e_wq = alloc_workqueue("%s", WQ_MEM_RECLAIM, 0, i40e_driver_name);
Jesse Brandeburg2803b162015-12-22 14:25:08 -080012296 if (!i40e_wq) {
12297 pr_err("%s: Failed to create workqueue\n", i40e_driver_name);
12298 return -ENOMEM;
12299 }
12300
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012301 i40e_dbg_init();
12302 return pci_register_driver(&i40e_driver);
12303}
12304module_init(i40e_init_module);
12305
12306/**
12307 * i40e_exit_module - Driver exit cleanup routine
12308 *
12309 * i40e_exit_module is called just before the driver is removed
12310 * from memory.
12311 **/
12312static void __exit i40e_exit_module(void)
12313{
12314 pci_unregister_driver(&i40e_driver);
Jesse Brandeburg2803b162015-12-22 14:25:08 -080012315 destroy_workqueue(i40e_wq);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012316 i40e_dbg_exit();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012317}
12318module_exit(i40e_exit_module);