]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/ethernet/intel/i40e/i40e_main.c
i40e: Fix configure TCs after initial DCB disable
[mirror_ubuntu-artful-kernel.git] / drivers / net / ethernet / intel / i40e / i40e_main.c
CommitLineData
41c445ff
JB
1/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
2818ccd9 4 * Copyright(c) 2013 - 2016 Intel Corporation.
41c445ff
JB
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
dc641b73
GR
15 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
41c445ff
JB
17 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
b499ffb0
SV
27#include <linux/etherdevice.h>
28#include <linux/of_net.h>
29#include <linux/pci.h>
30
41c445ff
JB
31/* Local includes */
32#include "i40e.h"
4eb3f768 33#include "i40e_diag.h"
06a5f7f1 34#include <net/udp_tunnel.h>
41c445ff
JB
35
36const char i40e_driver_name[] = "i40e";
37static const char i40e_driver_string[] =
38 "Intel(R) Ethernet Connection XL710 Network Driver";
39
40#define DRV_KERN "-k"
41
e8e724db 42#define DRV_VERSION_MAJOR 1
07061958 43#define DRV_VERSION_MINOR 6
fa90efa5 44#define DRV_VERSION_BUILD 16
41c445ff
JB
45#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
46 __stringify(DRV_VERSION_MINOR) "." \
47 __stringify(DRV_VERSION_BUILD) DRV_KERN
48const char i40e_driver_version_str[] = DRV_VERSION;
8fb905b3 49static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
41c445ff
JB
50
51/* a bit of forward declarations */
52static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
53static void i40e_handle_reset_warning(struct i40e_pf *pf);
54static int i40e_add_vsi(struct i40e_vsi *vsi);
55static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
bc7d338f 56static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
41c445ff
JB
57static int i40e_setup_misc_vector(struct i40e_pf *pf);
58static void i40e_determine_queue_usage(struct i40e_pf *pf);
59static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
cbf61325 60static void i40e_fdir_sb_setup(struct i40e_pf *pf);
4e3b35b0 61static int i40e_veb_get_bw_info(struct i40e_veb *veb);
41c445ff
JB
62
63/* i40e_pci_tbl - PCI Device ID Table
64 *
65 * Last entry must be all 0s
66 *
67 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
68 * Class, Class Mask, private data (not used) }
69 */
9baa3c34 70static const struct pci_device_id i40e_pci_tbl[] = {
ab60085e 71 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
ab60085e 72 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
ab60085e
SN
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
74 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
ab60085e
SN
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
77 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
5960d33f 78 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
bc5166b9 79 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T4), 0},
ae24b409 80 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
35dae51d
ASJ
81 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_X722), 0},
82 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_X722), 0},
87e6c1d7
ASJ
83 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_X722), 0},
84 {PCI_VDEVICE(INTEL, I40E_DEV_ID_1G_BASE_T_X722), 0},
85 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T_X722), 0},
d6bf58c2 86 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_I_X722), 0},
48a3b512
SN
87 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
88 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2_A), 0},
41c445ff
JB
89 /* required last entry */
90 {0, }
91};
92MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
93
94#define I40E_MAX_VF_COUNT 128
95static int debug = -1;
96module_param(debug, int, 0);
97MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
98
99MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
100MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
101MODULE_LICENSE("GPL");
102MODULE_VERSION(DRV_VERSION);
103
2803b16c
JB
104static struct workqueue_struct *i40e_wq;
105
41c445ff
JB
106/**
107 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
108 * @hw: pointer to the HW structure
109 * @mem: ptr to mem struct to fill out
110 * @size: size of memory requested
111 * @alignment: what to align the allocation to
112 **/
113int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
114 u64 size, u32 alignment)
115{
116 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
117
118 mem->size = ALIGN(size, alignment);
119 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
120 &mem->pa, GFP_KERNEL);
93bc73b8
JB
121 if (!mem->va)
122 return -ENOMEM;
41c445ff 123
93bc73b8 124 return 0;
41c445ff
JB
125}
126
127/**
128 * i40e_free_dma_mem_d - OS specific memory free for shared code
129 * @hw: pointer to the HW structure
130 * @mem: ptr to mem struct to free
131 **/
132int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
133{
134 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
135
136 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
137 mem->va = NULL;
138 mem->pa = 0;
139 mem->size = 0;
140
141 return 0;
142}
143
144/**
145 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
146 * @hw: pointer to the HW structure
147 * @mem: ptr to mem struct to fill out
148 * @size: size of memory requested
149 **/
150int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
151 u32 size)
152{
153 mem->size = size;
154 mem->va = kzalloc(size, GFP_KERNEL);
155
93bc73b8
JB
156 if (!mem->va)
157 return -ENOMEM;
41c445ff 158
93bc73b8 159 return 0;
41c445ff
JB
160}
161
162/**
163 * i40e_free_virt_mem_d - OS specific memory free for shared code
164 * @hw: pointer to the HW structure
165 * @mem: ptr to mem struct to free
166 **/
167int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
168{
169 /* it's ok to kfree a NULL pointer */
170 kfree(mem->va);
171 mem->va = NULL;
172 mem->size = 0;
173
174 return 0;
175}
176
177/**
178 * i40e_get_lump - find a lump of free generic resource
179 * @pf: board private structure
180 * @pile: the pile of resource to search
181 * @needed: the number of items needed
182 * @id: an owner id to stick on the items assigned
183 *
184 * Returns the base item index of the lump, or negative for error
185 *
186 * The search_hint trick and lack of advanced fit-finding only work
187 * because we're highly likely to have all the same size lump requests.
188 * Linear search time and any fragmentation should be minimal.
189 **/
190static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
191 u16 needed, u16 id)
192{
193 int ret = -ENOMEM;
ddf434ac 194 int i, j;
41c445ff
JB
195
196 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
197 dev_info(&pf->pdev->dev,
198 "param err: pile=%p needed=%d id=0x%04x\n",
199 pile, needed, id);
200 return -EINVAL;
201 }
202
203 /* start the linear search with an imperfect hint */
204 i = pile->search_hint;
ddf434ac 205 while (i < pile->num_entries) {
41c445ff
JB
206 /* skip already allocated entries */
207 if (pile->list[i] & I40E_PILE_VALID_BIT) {
208 i++;
209 continue;
210 }
211
212 /* do we have enough in this lump? */
213 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
214 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
215 break;
216 }
217
218 if (j == needed) {
219 /* there was enough, so assign it to the requestor */
220 for (j = 0; j < needed; j++)
221 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
222 ret = i;
223 pile->search_hint = i + j;
ddf434ac 224 break;
41c445ff 225 }
6995b36c
JB
226
227 /* not enough, so skip over it and continue looking */
228 i += j;
41c445ff
JB
229 }
230
231 return ret;
232}
233
234/**
235 * i40e_put_lump - return a lump of generic resource
236 * @pile: the pile of resource to search
237 * @index: the base item index
238 * @id: the owner id of the items assigned
239 *
240 * Returns the count of items in the lump
241 **/
242static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
243{
244 int valid_id = (id | I40E_PILE_VALID_BIT);
245 int count = 0;
246 int i;
247
248 if (!pile || index >= pile->num_entries)
249 return -EINVAL;
250
251 for (i = index;
252 i < pile->num_entries && pile->list[i] == valid_id;
253 i++) {
254 pile->list[i] = 0;
255 count++;
256 }
257
258 if (count && index < pile->search_hint)
259 pile->search_hint = index;
260
261 return count;
262}
263
fdf0e0bf
ASJ
264/**
265 * i40e_find_vsi_from_id - searches for the vsi with the given id
266 * @pf - the pf structure to search for the vsi
267 * @id - id of the vsi it is searching for
268 **/
269struct i40e_vsi *i40e_find_vsi_from_id(struct i40e_pf *pf, u16 id)
270{
271 int i;
272
273 for (i = 0; i < pf->num_alloc_vsi; i++)
274 if (pf->vsi[i] && (pf->vsi[i]->id == id))
275 return pf->vsi[i];
276
277 return NULL;
278}
279
41c445ff
JB
280/**
281 * i40e_service_event_schedule - Schedule the service task to wake up
282 * @pf: board private structure
283 *
284 * If not already scheduled, this puts the task into the work queue
285 **/
e3219ce6 286void i40e_service_event_schedule(struct i40e_pf *pf)
41c445ff
JB
287{
288 if (!test_bit(__I40E_DOWN, &pf->state) &&
289 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
290 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
2803b16c 291 queue_work(i40e_wq, &pf->service_task);
41c445ff
JB
292}
293
294/**
295 * i40e_tx_timeout - Respond to a Tx Hang
296 * @netdev: network interface device structure
297 *
298 * If any port has noticed a Tx timeout, it is likely that the whole
299 * device is munged, not just the one netdev port, so go for the full
300 * reset.
301 **/
38e00438
VD
302#ifdef I40E_FCOE
303void i40e_tx_timeout(struct net_device *netdev)
304#else
41c445ff 305static void i40e_tx_timeout(struct net_device *netdev)
38e00438 306#endif
41c445ff
JB
307{
308 struct i40e_netdev_priv *np = netdev_priv(netdev);
309 struct i40e_vsi *vsi = np->vsi;
310 struct i40e_pf *pf = vsi->back;
b03a8c1f
KP
311 struct i40e_ring *tx_ring = NULL;
312 unsigned int i, hung_queue = 0;
313 u32 head, val;
41c445ff
JB
314
315 pf->tx_timeout_count++;
316
b03a8c1f
KP
317 /* find the stopped queue the same way the stack does */
318 for (i = 0; i < netdev->num_tx_queues; i++) {
319 struct netdev_queue *q;
320 unsigned long trans_start;
321
322 q = netdev_get_tx_queue(netdev, i);
9b36627a 323 trans_start = q->trans_start;
b03a8c1f
KP
324 if (netif_xmit_stopped(q) &&
325 time_after(jiffies,
326 (trans_start + netdev->watchdog_timeo))) {
327 hung_queue = i;
328 break;
329 }
330 }
331
332 if (i == netdev->num_tx_queues) {
333 netdev_info(netdev, "tx_timeout: no netdev hung queue found\n");
334 } else {
335 /* now that we have an index, find the tx_ring struct */
336 for (i = 0; i < vsi->num_queue_pairs; i++) {
337 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
338 if (hung_queue ==
339 vsi->tx_rings[i]->queue_index) {
340 tx_ring = vsi->tx_rings[i];
341 break;
342 }
343 }
344 }
345 }
346
41c445ff 347 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
b03a8c1f
KP
348 pf->tx_timeout_recovery_level = 1; /* reset after some time */
349 else if (time_before(jiffies,
350 (pf->tx_timeout_last_recovery + netdev->watchdog_timeo)))
351 return; /* don't do any new action before the next timeout */
352
353 if (tx_ring) {
354 head = i40e_get_head(tx_ring);
355 /* Read interrupt register */
356 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
357 val = rd32(&pf->hw,
358 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
359 tx_ring->vsi->base_vector - 1));
360 else
361 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
362
363 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",
364 vsi->seid, hung_queue, tx_ring->next_to_clean,
365 head, tx_ring->next_to_use,
366 readl(tx_ring->tail), val);
367 }
368
41c445ff 369 pf->tx_timeout_last_recovery = jiffies;
b03a8c1f
KP
370 netdev_info(netdev, "tx_timeout recovery level %d, hung_queue %d\n",
371 pf->tx_timeout_recovery_level, hung_queue);
41c445ff
JB
372
373 switch (pf->tx_timeout_recovery_level) {
41c445ff
JB
374 case 1:
375 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
376 break;
377 case 2:
378 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
379 break;
380 case 3:
381 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
382 break;
383 default:
384 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
41c445ff
JB
385 break;
386 }
b03a8c1f 387
41c445ff
JB
388 i40e_service_event_schedule(pf);
389 pf->tx_timeout_recovery_level++;
390}
391
41c445ff
JB
392/**
393 * i40e_get_vsi_stats_struct - Get System Network Statistics
394 * @vsi: the VSI we care about
395 *
396 * Returns the address of the device statistics structure.
397 * The statistics are actually updated from the service task.
398 **/
399struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
400{
401 return &vsi->net_stats;
402}
403
404/**
405 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
406 * @netdev: network interface device structure
407 *
408 * Returns the address of the device statistics structure.
409 * The statistics are actually updated from the service task.
410 **/
38e00438
VD
411#ifdef I40E_FCOE
412struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
413 struct net_device *netdev,
414 struct rtnl_link_stats64 *stats)
415#else
41c445ff
JB
416static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
417 struct net_device *netdev,
980e9b11 418 struct rtnl_link_stats64 *stats)
38e00438 419#endif
41c445ff
JB
420{
421 struct i40e_netdev_priv *np = netdev_priv(netdev);
e7046ee1 422 struct i40e_ring *tx_ring, *rx_ring;
41c445ff 423 struct i40e_vsi *vsi = np->vsi;
980e9b11
AD
424 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
425 int i;
426
bc7d338f
ASJ
427 if (test_bit(__I40E_DOWN, &vsi->state))
428 return stats;
429
3c325ced
JB
430 if (!vsi->tx_rings)
431 return stats;
432
980e9b11
AD
433 rcu_read_lock();
434 for (i = 0; i < vsi->num_queue_pairs; i++) {
980e9b11
AD
435 u64 bytes, packets;
436 unsigned int start;
437
438 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
439 if (!tx_ring)
440 continue;
441
442 do {
57a7744e 443 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
980e9b11
AD
444 packets = tx_ring->stats.packets;
445 bytes = tx_ring->stats.bytes;
57a7744e 446 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
980e9b11
AD
447
448 stats->tx_packets += packets;
449 stats->tx_bytes += bytes;
450 rx_ring = &tx_ring[1];
451
452 do {
57a7744e 453 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
980e9b11
AD
454 packets = rx_ring->stats.packets;
455 bytes = rx_ring->stats.bytes;
57a7744e 456 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
41c445ff 457
980e9b11
AD
458 stats->rx_packets += packets;
459 stats->rx_bytes += bytes;
460 }
461 rcu_read_unlock();
462
a5282f44 463 /* following stats updated by i40e_watchdog_subtask() */
980e9b11
AD
464 stats->multicast = vsi_stats->multicast;
465 stats->tx_errors = vsi_stats->tx_errors;
466 stats->tx_dropped = vsi_stats->tx_dropped;
467 stats->rx_errors = vsi_stats->rx_errors;
d8201e20 468 stats->rx_dropped = vsi_stats->rx_dropped;
980e9b11
AD
469 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
470 stats->rx_length_errors = vsi_stats->rx_length_errors;
41c445ff 471
980e9b11 472 return stats;
41c445ff
JB
473}
474
475/**
476 * i40e_vsi_reset_stats - Resets all stats of the given vsi
477 * @vsi: the VSI to have its stats reset
478 **/
479void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
480{
481 struct rtnl_link_stats64 *ns;
482 int i;
483
484 if (!vsi)
485 return;
486
487 ns = i40e_get_vsi_stats_struct(vsi);
488 memset(ns, 0, sizeof(*ns));
489 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
490 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
491 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
8e9dca53 492 if (vsi->rx_rings && vsi->rx_rings[0]) {
41c445ff 493 for (i = 0; i < vsi->num_queue_pairs; i++) {
6995b36c 494 memset(&vsi->rx_rings[i]->stats, 0,
9f65e15b 495 sizeof(vsi->rx_rings[i]->stats));
6995b36c 496 memset(&vsi->rx_rings[i]->rx_stats, 0,
9f65e15b 497 sizeof(vsi->rx_rings[i]->rx_stats));
6995b36c 498 memset(&vsi->tx_rings[i]->stats, 0,
9f65e15b
AD
499 sizeof(vsi->tx_rings[i]->stats));
500 memset(&vsi->tx_rings[i]->tx_stats, 0,
501 sizeof(vsi->tx_rings[i]->tx_stats));
41c445ff 502 }
8e9dca53 503 }
41c445ff
JB
504 vsi->stat_offsets_loaded = false;
505}
506
507/**
b40c82e6 508 * i40e_pf_reset_stats - Reset all of the stats for the given PF
41c445ff
JB
509 * @pf: the PF to be reset
510 **/
511void i40e_pf_reset_stats(struct i40e_pf *pf)
512{
e91fdf76
SN
513 int i;
514
41c445ff
JB
515 memset(&pf->stats, 0, sizeof(pf->stats));
516 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
517 pf->stat_offsets_loaded = false;
e91fdf76
SN
518
519 for (i = 0; i < I40E_MAX_VEB; i++) {
520 if (pf->veb[i]) {
521 memset(&pf->veb[i]->stats, 0,
522 sizeof(pf->veb[i]->stats));
523 memset(&pf->veb[i]->stats_offsets, 0,
524 sizeof(pf->veb[i]->stats_offsets));
525 pf->veb[i]->stat_offsets_loaded = false;
526 }
527 }
42bce04e 528 pf->hw_csum_rx_error = 0;
41c445ff
JB
529}
530
531/**
532 * i40e_stat_update48 - read and update a 48 bit stat from the chip
533 * @hw: ptr to the hardware info
534 * @hireg: the high 32 bit reg to read
535 * @loreg: the low 32 bit reg to read
536 * @offset_loaded: has the initial offset been loaded yet
537 * @offset: ptr to current offset value
538 * @stat: ptr to the stat
539 *
540 * Since the device stats are not reset at PFReset, they likely will not
541 * be zeroed when the driver starts. We'll save the first values read
542 * and use them as offsets to be subtracted from the raw values in order
543 * to report stats that count from zero. In the process, we also manage
544 * the potential roll-over.
545 **/
546static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
547 bool offset_loaded, u64 *offset, u64 *stat)
548{
549 u64 new_data;
550
ab60085e 551 if (hw->device_id == I40E_DEV_ID_QEMU) {
41c445ff
JB
552 new_data = rd32(hw, loreg);
553 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
554 } else {
555 new_data = rd64(hw, loreg);
556 }
557 if (!offset_loaded)
558 *offset = new_data;
559 if (likely(new_data >= *offset))
560 *stat = new_data - *offset;
561 else
41a1d04b 562 *stat = (new_data + BIT_ULL(48)) - *offset;
41c445ff
JB
563 *stat &= 0xFFFFFFFFFFFFULL;
564}
565
566/**
567 * i40e_stat_update32 - read and update a 32 bit stat from the chip
568 * @hw: ptr to the hardware info
569 * @reg: the hw reg to read
570 * @offset_loaded: has the initial offset been loaded yet
571 * @offset: ptr to current offset value
572 * @stat: ptr to the stat
573 **/
574static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
575 bool offset_loaded, u64 *offset, u64 *stat)
576{
577 u32 new_data;
578
579 new_data = rd32(hw, reg);
580 if (!offset_loaded)
581 *offset = new_data;
582 if (likely(new_data >= *offset))
583 *stat = (u32)(new_data - *offset);
584 else
41a1d04b 585 *stat = (u32)((new_data + BIT_ULL(32)) - *offset);
41c445ff
JB
586}
587
588/**
589 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
590 * @vsi: the VSI to be updated
591 **/
592void i40e_update_eth_stats(struct i40e_vsi *vsi)
593{
594 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
595 struct i40e_pf *pf = vsi->back;
596 struct i40e_hw *hw = &pf->hw;
597 struct i40e_eth_stats *oes;
598 struct i40e_eth_stats *es; /* device's eth stats */
599
600 es = &vsi->eth_stats;
601 oes = &vsi->eth_stats_offsets;
602
603 /* Gather up the stats that the hw collects */
604 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
605 vsi->stat_offsets_loaded,
606 &oes->tx_errors, &es->tx_errors);
607 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
608 vsi->stat_offsets_loaded,
609 &oes->rx_discards, &es->rx_discards);
41a9e55c
SN
610 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
611 vsi->stat_offsets_loaded,
612 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
613 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
614 vsi->stat_offsets_loaded,
615 &oes->tx_errors, &es->tx_errors);
41c445ff
JB
616
617 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
618 I40E_GLV_GORCL(stat_idx),
619 vsi->stat_offsets_loaded,
620 &oes->rx_bytes, &es->rx_bytes);
621 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
622 I40E_GLV_UPRCL(stat_idx),
623 vsi->stat_offsets_loaded,
624 &oes->rx_unicast, &es->rx_unicast);
625 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
626 I40E_GLV_MPRCL(stat_idx),
627 vsi->stat_offsets_loaded,
628 &oes->rx_multicast, &es->rx_multicast);
629 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
630 I40E_GLV_BPRCL(stat_idx),
631 vsi->stat_offsets_loaded,
632 &oes->rx_broadcast, &es->rx_broadcast);
633
634 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
635 I40E_GLV_GOTCL(stat_idx),
636 vsi->stat_offsets_loaded,
637 &oes->tx_bytes, &es->tx_bytes);
638 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
639 I40E_GLV_UPTCL(stat_idx),
640 vsi->stat_offsets_loaded,
641 &oes->tx_unicast, &es->tx_unicast);
642 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
643 I40E_GLV_MPTCL(stat_idx),
644 vsi->stat_offsets_loaded,
645 &oes->tx_multicast, &es->tx_multicast);
646 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
647 I40E_GLV_BPTCL(stat_idx),
648 vsi->stat_offsets_loaded,
649 &oes->tx_broadcast, &es->tx_broadcast);
650 vsi->stat_offsets_loaded = true;
651}
652
653/**
654 * i40e_update_veb_stats - Update Switch component statistics
655 * @veb: the VEB being updated
656 **/
657static void i40e_update_veb_stats(struct i40e_veb *veb)
658{
659 struct i40e_pf *pf = veb->pf;
660 struct i40e_hw *hw = &pf->hw;
661 struct i40e_eth_stats *oes;
662 struct i40e_eth_stats *es; /* device's eth stats */
fe860afb
NP
663 struct i40e_veb_tc_stats *veb_oes;
664 struct i40e_veb_tc_stats *veb_es;
665 int i, idx = 0;
41c445ff
JB
666
667 idx = veb->stats_idx;
668 es = &veb->stats;
669 oes = &veb->stats_offsets;
fe860afb
NP
670 veb_es = &veb->tc_stats;
671 veb_oes = &veb->tc_stats_offsets;
41c445ff
JB
672
673 /* Gather up the stats that the hw collects */
674 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
675 veb->stat_offsets_loaded,
676 &oes->tx_discards, &es->tx_discards);
7134f9ce
JB
677 if (hw->revision_id > 0)
678 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
679 veb->stat_offsets_loaded,
680 &oes->rx_unknown_protocol,
681 &es->rx_unknown_protocol);
41c445ff
JB
682 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
683 veb->stat_offsets_loaded,
684 &oes->rx_bytes, &es->rx_bytes);
685 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
686 veb->stat_offsets_loaded,
687 &oes->rx_unicast, &es->rx_unicast);
688 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
689 veb->stat_offsets_loaded,
690 &oes->rx_multicast, &es->rx_multicast);
691 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
692 veb->stat_offsets_loaded,
693 &oes->rx_broadcast, &es->rx_broadcast);
694
695 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
696 veb->stat_offsets_loaded,
697 &oes->tx_bytes, &es->tx_bytes);
698 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
699 veb->stat_offsets_loaded,
700 &oes->tx_unicast, &es->tx_unicast);
701 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
702 veb->stat_offsets_loaded,
703 &oes->tx_multicast, &es->tx_multicast);
704 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
705 veb->stat_offsets_loaded,
706 &oes->tx_broadcast, &es->tx_broadcast);
fe860afb
NP
707 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
708 i40e_stat_update48(hw, I40E_GLVEBTC_RPCH(i, idx),
709 I40E_GLVEBTC_RPCL(i, idx),
710 veb->stat_offsets_loaded,
711 &veb_oes->tc_rx_packets[i],
712 &veb_es->tc_rx_packets[i]);
713 i40e_stat_update48(hw, I40E_GLVEBTC_RBCH(i, idx),
714 I40E_GLVEBTC_RBCL(i, idx),
715 veb->stat_offsets_loaded,
716 &veb_oes->tc_rx_bytes[i],
717 &veb_es->tc_rx_bytes[i]);
718 i40e_stat_update48(hw, I40E_GLVEBTC_TPCH(i, idx),
719 I40E_GLVEBTC_TPCL(i, idx),
720 veb->stat_offsets_loaded,
721 &veb_oes->tc_tx_packets[i],
722 &veb_es->tc_tx_packets[i]);
723 i40e_stat_update48(hw, I40E_GLVEBTC_TBCH(i, idx),
724 I40E_GLVEBTC_TBCL(i, idx),
725 veb->stat_offsets_loaded,
726 &veb_oes->tc_tx_bytes[i],
727 &veb_es->tc_tx_bytes[i]);
728 }
41c445ff
JB
729 veb->stat_offsets_loaded = true;
730}
731
38e00438
VD
732#ifdef I40E_FCOE
733/**
734 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
735 * @vsi: the VSI that is capable of doing FCoE
736 **/
737static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
738{
739 struct i40e_pf *pf = vsi->back;
740 struct i40e_hw *hw = &pf->hw;
741 struct i40e_fcoe_stats *ofs;
742 struct i40e_fcoe_stats *fs; /* device's eth stats */
743 int idx;
744
745 if (vsi->type != I40E_VSI_FCOE)
746 return;
747
4147e2c5 748 idx = hw->pf_id + I40E_FCOE_PF_STAT_OFFSET;
38e00438
VD
749 fs = &vsi->fcoe_stats;
750 ofs = &vsi->fcoe_stats_offsets;
751
752 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
753 vsi->fcoe_stat_offsets_loaded,
754 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
755 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
756 vsi->fcoe_stat_offsets_loaded,
757 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
758 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
759 vsi->fcoe_stat_offsets_loaded,
760 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
761 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
762 vsi->fcoe_stat_offsets_loaded,
763 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
764 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
765 vsi->fcoe_stat_offsets_loaded,
766 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
767 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
768 vsi->fcoe_stat_offsets_loaded,
769 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
770 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
771 vsi->fcoe_stat_offsets_loaded,
772 &ofs->fcoe_last_error, &fs->fcoe_last_error);
773 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
774 vsi->fcoe_stat_offsets_loaded,
775 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
776
777 vsi->fcoe_stat_offsets_loaded = true;
778}
779
780#endif
41c445ff 781/**
7812fddc 782 * i40e_update_vsi_stats - Update the vsi statistics counters.
41c445ff
JB
783 * @vsi: the VSI to be updated
784 *
785 * There are a few instances where we store the same stat in a
786 * couple of different structs. This is partly because we have
787 * the netdev stats that need to be filled out, which is slightly
788 * different from the "eth_stats" defined by the chip and used in
7812fddc 789 * VF communications. We sort it out here.
41c445ff 790 **/
7812fddc 791static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
41c445ff
JB
792{
793 struct i40e_pf *pf = vsi->back;
41c445ff
JB
794 struct rtnl_link_stats64 *ons;
795 struct rtnl_link_stats64 *ns; /* netdev stats */
796 struct i40e_eth_stats *oes;
797 struct i40e_eth_stats *es; /* device's eth stats */
798 u32 tx_restart, tx_busy;
dd353109 799 u64 tx_lost_interrupt;
bf00b376 800 struct i40e_ring *p;
41c445ff 801 u32 rx_page, rx_buf;
bf00b376
AA
802 u64 bytes, packets;
803 unsigned int start;
2fc3d715 804 u64 tx_linearize;
164c9f54 805 u64 tx_force_wb;
41c445ff
JB
806 u64 rx_p, rx_b;
807 u64 tx_p, tx_b;
41c445ff
JB
808 u16 q;
809
810 if (test_bit(__I40E_DOWN, &vsi->state) ||
811 test_bit(__I40E_CONFIG_BUSY, &pf->state))
812 return;
813
814 ns = i40e_get_vsi_stats_struct(vsi);
815 ons = &vsi->net_stats_offsets;
816 es = &vsi->eth_stats;
817 oes = &vsi->eth_stats_offsets;
818
819 /* Gather up the netdev and vsi stats that the driver collects
820 * on the fly during packet processing
821 */
822 rx_b = rx_p = 0;
823 tx_b = tx_p = 0;
164c9f54 824 tx_restart = tx_busy = tx_linearize = tx_force_wb = 0;
dd353109 825 tx_lost_interrupt = 0;
41c445ff
JB
826 rx_page = 0;
827 rx_buf = 0;
980e9b11 828 rcu_read_lock();
41c445ff 829 for (q = 0; q < vsi->num_queue_pairs; q++) {
980e9b11
AD
830 /* locate Tx ring */
831 p = ACCESS_ONCE(vsi->tx_rings[q]);
832
833 do {
57a7744e 834 start = u64_stats_fetch_begin_irq(&p->syncp);
980e9b11
AD
835 packets = p->stats.packets;
836 bytes = p->stats.bytes;
57a7744e 837 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
980e9b11
AD
838 tx_b += bytes;
839 tx_p += packets;
840 tx_restart += p->tx_stats.restart_queue;
841 tx_busy += p->tx_stats.tx_busy;
2fc3d715 842 tx_linearize += p->tx_stats.tx_linearize;
164c9f54 843 tx_force_wb += p->tx_stats.tx_force_wb;
dd353109 844 tx_lost_interrupt += p->tx_stats.tx_lost_interrupt;
41c445ff 845
980e9b11
AD
846 /* Rx queue is part of the same block as Tx queue */
847 p = &p[1];
848 do {
57a7744e 849 start = u64_stats_fetch_begin_irq(&p->syncp);
980e9b11
AD
850 packets = p->stats.packets;
851 bytes = p->stats.bytes;
57a7744e 852 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
980e9b11
AD
853 rx_b += bytes;
854 rx_p += packets;
420136cc
MW
855 rx_buf += p->rx_stats.alloc_buff_failed;
856 rx_page += p->rx_stats.alloc_page_failed;
41c445ff 857 }
980e9b11 858 rcu_read_unlock();
41c445ff
JB
859 vsi->tx_restart = tx_restart;
860 vsi->tx_busy = tx_busy;
2fc3d715 861 vsi->tx_linearize = tx_linearize;
164c9f54 862 vsi->tx_force_wb = tx_force_wb;
dd353109 863 vsi->tx_lost_interrupt = tx_lost_interrupt;
41c445ff
JB
864 vsi->rx_page_failed = rx_page;
865 vsi->rx_buf_failed = rx_buf;
866
867 ns->rx_packets = rx_p;
868 ns->rx_bytes = rx_b;
869 ns->tx_packets = tx_p;
870 ns->tx_bytes = tx_b;
871
41c445ff 872 /* update netdev stats from eth stats */
7812fddc 873 i40e_update_eth_stats(vsi);
41c445ff
JB
874 ons->tx_errors = oes->tx_errors;
875 ns->tx_errors = es->tx_errors;
876 ons->multicast = oes->rx_multicast;
877 ns->multicast = es->rx_multicast;
41a9e55c
SN
878 ons->rx_dropped = oes->rx_discards;
879 ns->rx_dropped = es->rx_discards;
41c445ff
JB
880 ons->tx_dropped = oes->tx_discards;
881 ns->tx_dropped = es->tx_discards;
882
7812fddc 883 /* pull in a couple PF stats if this is the main vsi */
41c445ff 884 if (vsi == pf->vsi[pf->lan_vsi]) {
7812fddc
SN
885 ns->rx_crc_errors = pf->stats.crc_errors;
886 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
887 ns->rx_length_errors = pf->stats.rx_length_errors;
888 }
889}
41c445ff 890
7812fddc 891/**
b40c82e6 892 * i40e_update_pf_stats - Update the PF statistics counters.
7812fddc
SN
893 * @pf: the PF to be updated
894 **/
895static void i40e_update_pf_stats(struct i40e_pf *pf)
896{
897 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
898 struct i40e_hw_port_stats *nsd = &pf->stats;
899 struct i40e_hw *hw = &pf->hw;
900 u32 val;
901 int i;
41c445ff 902
7812fddc
SN
903 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
904 I40E_GLPRT_GORCL(hw->port),
905 pf->stat_offsets_loaded,
906 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
907 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
908 I40E_GLPRT_GOTCL(hw->port),
909 pf->stat_offsets_loaded,
910 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
911 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
912 pf->stat_offsets_loaded,
913 &osd->eth.rx_discards,
914 &nsd->eth.rx_discards);
532d283d
SN
915 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
916 I40E_GLPRT_UPRCL(hw->port),
917 pf->stat_offsets_loaded,
918 &osd->eth.rx_unicast,
919 &nsd->eth.rx_unicast);
7812fddc
SN
920 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
921 I40E_GLPRT_MPRCL(hw->port),
922 pf->stat_offsets_loaded,
923 &osd->eth.rx_multicast,
924 &nsd->eth.rx_multicast);
532d283d
SN
925 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
926 I40E_GLPRT_BPRCL(hw->port),
927 pf->stat_offsets_loaded,
928 &osd->eth.rx_broadcast,
929 &nsd->eth.rx_broadcast);
930 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
931 I40E_GLPRT_UPTCL(hw->port),
932 pf->stat_offsets_loaded,
933 &osd->eth.tx_unicast,
934 &nsd->eth.tx_unicast);
935 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
936 I40E_GLPRT_MPTCL(hw->port),
937 pf->stat_offsets_loaded,
938 &osd->eth.tx_multicast,
939 &nsd->eth.tx_multicast);
940 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
941 I40E_GLPRT_BPTCL(hw->port),
942 pf->stat_offsets_loaded,
943 &osd->eth.tx_broadcast,
944 &nsd->eth.tx_broadcast);
41c445ff 945
7812fddc
SN
946 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
947 pf->stat_offsets_loaded,
948 &osd->tx_dropped_link_down,
949 &nsd->tx_dropped_link_down);
41c445ff 950
7812fddc
SN
951 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
952 pf->stat_offsets_loaded,
953 &osd->crc_errors, &nsd->crc_errors);
41c445ff 954
7812fddc
SN
955 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
956 pf->stat_offsets_loaded,
957 &osd->illegal_bytes, &nsd->illegal_bytes);
41c445ff 958
7812fddc
SN
959 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
960 pf->stat_offsets_loaded,
961 &osd->mac_local_faults,
962 &nsd->mac_local_faults);
963 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
964 pf->stat_offsets_loaded,
965 &osd->mac_remote_faults,
966 &nsd->mac_remote_faults);
41c445ff 967
7812fddc
SN
968 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
969 pf->stat_offsets_loaded,
970 &osd->rx_length_errors,
971 &nsd->rx_length_errors);
41c445ff 972
7812fddc
SN
973 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
974 pf->stat_offsets_loaded,
975 &osd->link_xon_rx, &nsd->link_xon_rx);
976 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
977 pf->stat_offsets_loaded,
978 &osd->link_xon_tx, &nsd->link_xon_tx);
95db239f
NP
979 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
980 pf->stat_offsets_loaded,
981 &osd->link_xoff_rx, &nsd->link_xoff_rx);
7812fddc
SN
982 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
983 pf->stat_offsets_loaded,
984 &osd->link_xoff_tx, &nsd->link_xoff_tx);
41c445ff 985
7812fddc 986 for (i = 0; i < 8; i++) {
95db239f
NP
987 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
988 pf->stat_offsets_loaded,
989 &osd->priority_xoff_rx[i],
990 &nsd->priority_xoff_rx[i]);
7812fddc 991 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
41c445ff 992 pf->stat_offsets_loaded,
7812fddc
SN
993 &osd->priority_xon_rx[i],
994 &nsd->priority_xon_rx[i]);
995 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
41c445ff 996 pf->stat_offsets_loaded,
7812fddc
SN
997 &osd->priority_xon_tx[i],
998 &nsd->priority_xon_tx[i]);
999 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
41c445ff 1000 pf->stat_offsets_loaded,
7812fddc
SN
1001 &osd->priority_xoff_tx[i],
1002 &nsd->priority_xoff_tx[i]);
1003 i40e_stat_update32(hw,
1004 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
bee5af7e 1005 pf->stat_offsets_loaded,
7812fddc
SN
1006 &osd->priority_xon_2_xoff[i],
1007 &nsd->priority_xon_2_xoff[i]);
41c445ff
JB
1008 }
1009
7812fddc
SN
1010 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1011 I40E_GLPRT_PRC64L(hw->port),
1012 pf->stat_offsets_loaded,
1013 &osd->rx_size_64, &nsd->rx_size_64);
1014 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1015 I40E_GLPRT_PRC127L(hw->port),
1016 pf->stat_offsets_loaded,
1017 &osd->rx_size_127, &nsd->rx_size_127);
1018 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1019 I40E_GLPRT_PRC255L(hw->port),
1020 pf->stat_offsets_loaded,
1021 &osd->rx_size_255, &nsd->rx_size_255);
1022 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1023 I40E_GLPRT_PRC511L(hw->port),
1024 pf->stat_offsets_loaded,
1025 &osd->rx_size_511, &nsd->rx_size_511);
1026 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1027 I40E_GLPRT_PRC1023L(hw->port),
1028 pf->stat_offsets_loaded,
1029 &osd->rx_size_1023, &nsd->rx_size_1023);
1030 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1031 I40E_GLPRT_PRC1522L(hw->port),
1032 pf->stat_offsets_loaded,
1033 &osd->rx_size_1522, &nsd->rx_size_1522);
1034 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1035 I40E_GLPRT_PRC9522L(hw->port),
1036 pf->stat_offsets_loaded,
1037 &osd->rx_size_big, &nsd->rx_size_big);
1038
1039 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1040 I40E_GLPRT_PTC64L(hw->port),
1041 pf->stat_offsets_loaded,
1042 &osd->tx_size_64, &nsd->tx_size_64);
1043 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1044 I40E_GLPRT_PTC127L(hw->port),
1045 pf->stat_offsets_loaded,
1046 &osd->tx_size_127, &nsd->tx_size_127);
1047 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1048 I40E_GLPRT_PTC255L(hw->port),
1049 pf->stat_offsets_loaded,
1050 &osd->tx_size_255, &nsd->tx_size_255);
1051 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1052 I40E_GLPRT_PTC511L(hw->port),
1053 pf->stat_offsets_loaded,
1054 &osd->tx_size_511, &nsd->tx_size_511);
1055 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1056 I40E_GLPRT_PTC1023L(hw->port),
1057 pf->stat_offsets_loaded,
1058 &osd->tx_size_1023, &nsd->tx_size_1023);
1059 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1060 I40E_GLPRT_PTC1522L(hw->port),
1061 pf->stat_offsets_loaded,
1062 &osd->tx_size_1522, &nsd->tx_size_1522);
1063 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1064 I40E_GLPRT_PTC9522L(hw->port),
1065 pf->stat_offsets_loaded,
1066 &osd->tx_size_big, &nsd->tx_size_big);
1067
1068 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1069 pf->stat_offsets_loaded,
1070 &osd->rx_undersize, &nsd->rx_undersize);
1071 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1072 pf->stat_offsets_loaded,
1073 &osd->rx_fragments, &nsd->rx_fragments);
1074 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1075 pf->stat_offsets_loaded,
1076 &osd->rx_oversize, &nsd->rx_oversize);
1077 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1078 pf->stat_offsets_loaded,
1079 &osd->rx_jabber, &nsd->rx_jabber);
1080
433c47de 1081 /* FDIR stats */
0bf4b1b0
ASJ
1082 i40e_stat_update32(hw,
1083 I40E_GLQF_PCNT(I40E_FD_ATR_STAT_IDX(pf->hw.pf_id)),
433c47de
ASJ
1084 pf->stat_offsets_loaded,
1085 &osd->fd_atr_match, &nsd->fd_atr_match);
0bf4b1b0
ASJ
1086 i40e_stat_update32(hw,
1087 I40E_GLQF_PCNT(I40E_FD_SB_STAT_IDX(pf->hw.pf_id)),
433c47de
ASJ
1088 pf->stat_offsets_loaded,
1089 &osd->fd_sb_match, &nsd->fd_sb_match);
60ccd45c
ASJ
1090 i40e_stat_update32(hw,
1091 I40E_GLQF_PCNT(I40E_FD_ATR_TUNNEL_STAT_IDX(pf->hw.pf_id)),
1092 pf->stat_offsets_loaded,
1093 &osd->fd_atr_tunnel_match, &nsd->fd_atr_tunnel_match);
433c47de 1094
7812fddc
SN
1095 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1096 nsd->tx_lpi_status =
1097 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1098 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1099 nsd->rx_lpi_status =
1100 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1101 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1102 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1103 pf->stat_offsets_loaded,
1104 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1105 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1106 pf->stat_offsets_loaded,
1107 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1108
d0389e51
ASJ
1109 if (pf->flags & I40E_FLAG_FD_SB_ENABLED &&
1110 !(pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED))
1111 nsd->fd_sb_status = true;
1112 else
1113 nsd->fd_sb_status = false;
1114
1115 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED &&
1116 !(pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
1117 nsd->fd_atr_status = true;
1118 else
1119 nsd->fd_atr_status = false;
1120
41c445ff
JB
1121 pf->stat_offsets_loaded = true;
1122}
1123
7812fddc
SN
1124/**
1125 * i40e_update_stats - Update the various statistics counters.
1126 * @vsi: the VSI to be updated
1127 *
1128 * Update the various stats for this VSI and its related entities.
1129 **/
1130void i40e_update_stats(struct i40e_vsi *vsi)
1131{
1132 struct i40e_pf *pf = vsi->back;
1133
1134 if (vsi == pf->vsi[pf->lan_vsi])
1135 i40e_update_pf_stats(pf);
1136
1137 i40e_update_vsi_stats(vsi);
38e00438
VD
1138#ifdef I40E_FCOE
1139 i40e_update_fcoe_stats(vsi);
1140#endif
7812fddc
SN
1141}
1142
41c445ff
JB
1143/**
1144 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1145 * @vsi: the VSI to be searched
1146 * @macaddr: the MAC address
1147 * @vlan: the vlan
b40c82e6 1148 * @is_vf: make sure its a VF filter, else doesn't matter
41c445ff
JB
1149 * @is_netdev: make sure its a netdev filter, else doesn't matter
1150 *
1151 * Returns ptr to the filter object or NULL
1152 **/
1153static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1154 u8 *macaddr, s16 vlan,
1155 bool is_vf, bool is_netdev)
1156{
1157 struct i40e_mac_filter *f;
1158
1159 if (!vsi || !macaddr)
1160 return NULL;
1161
1162 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1163 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1164 (vlan == f->vlan) &&
1165 (!is_vf || f->is_vf) &&
1166 (!is_netdev || f->is_netdev))
1167 return f;
1168 }
1169 return NULL;
1170}
1171
1172/**
1173 * i40e_find_mac - Find a mac addr in the macvlan filters list
1174 * @vsi: the VSI to be searched
1175 * @macaddr: the MAC address we are searching for
b40c82e6 1176 * @is_vf: make sure its a VF filter, else doesn't matter
41c445ff
JB
1177 * @is_netdev: make sure its a netdev filter, else doesn't matter
1178 *
1179 * Returns the first filter with the provided MAC address or NULL if
1180 * MAC address was not found
1181 **/
1182struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1183 bool is_vf, bool is_netdev)
1184{
1185 struct i40e_mac_filter *f;
1186
1187 if (!vsi || !macaddr)
1188 return NULL;
1189
1190 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1191 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1192 (!is_vf || f->is_vf) &&
1193 (!is_netdev || f->is_netdev))
1194 return f;
1195 }
1196 return NULL;
1197}
1198
1199/**
1200 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1201 * @vsi: the VSI to be searched
1202 *
1203 * Returns true if VSI is in vlan mode or false otherwise
1204 **/
1205bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1206{
1207 struct i40e_mac_filter *f;
1208
1209 /* Only -1 for all the filters denotes not in vlan mode
1210 * so we have to go through all the list in order to make sure
1211 */
1212 list_for_each_entry(f, &vsi->mac_filter_list, list) {
d9b68f8a 1213 if (f->vlan >= 0 || vsi->info.pvid)
41c445ff
JB
1214 return true;
1215 }
1216
1217 return false;
1218}
1219
1220/**
1221 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1222 * @vsi: the VSI to be searched
1223 * @macaddr: the mac address to be filtered
b40c82e6 1224 * @is_vf: true if it is a VF
41c445ff
JB
1225 * @is_netdev: true if it is a netdev
1226 *
1227 * Goes through all the macvlan filters and adds a
1228 * macvlan filter for each unique vlan that already exists
1229 *
1230 * Returns first filter found on success, else NULL
1231 **/
1232struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1233 bool is_vf, bool is_netdev)
1234{
1235 struct i40e_mac_filter *f;
1236
1237 list_for_each_entry(f, &vsi->mac_filter_list, list) {
ecbb44e8
MW
1238 if (vsi->info.pvid)
1239 f->vlan = le16_to_cpu(vsi->info.pvid);
41c445ff
JB
1240 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1241 is_vf, is_netdev)) {
1242 if (!i40e_add_filter(vsi, macaddr, f->vlan,
8fb905b3 1243 is_vf, is_netdev))
41c445ff
JB
1244 return NULL;
1245 }
1246 }
1247
1248 return list_first_entry_or_null(&vsi->mac_filter_list,
1249 struct i40e_mac_filter, list);
1250}
1251
b36e9ab5
MW
1252/**
1253 * i40e_del_mac_all_vlan - Remove a MAC filter from all VLANS
1254 * @vsi: the VSI to be searched
1255 * @macaddr: the mac address to be removed
1256 * @is_vf: true if it is a VF
1257 * @is_netdev: true if it is a netdev
1258 *
1259 * Removes a given MAC address from a VSI, regardless of VLAN
1260 *
1261 * Returns 0 for success, or error
1262 **/
1263int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1264 bool is_vf, bool is_netdev)
1265{
1266 struct i40e_mac_filter *f = NULL;
1267 int changed = 0;
1268
1269 WARN(!spin_is_locked(&vsi->mac_filter_list_lock),
1270 "Missing mac_filter_list_lock\n");
1271 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1272 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1273 (is_vf == f->is_vf) &&
1274 (is_netdev == f->is_netdev)) {
1275 f->counter--;
b36e9ab5 1276 changed = 1;
c3c7ea27
MW
1277 if (f->counter == 0)
1278 f->state = I40E_FILTER_REMOVE;
b36e9ab5
MW
1279 }
1280 }
1281 if (changed) {
1282 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1283 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1284 return 0;
1285 }
1286 return -ENOENT;
1287}
1288
8c27d42e
GR
1289/**
1290 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1291 * @vsi: the PF Main VSI - inappropriate for any other VSI
1292 * @macaddr: the MAC address
30650cc5 1293 *
c3c7ea27
MW
1294 * Remove whatever filter the firmware set up so the driver can manage
1295 * its own filtering intelligently.
8c27d42e 1296 **/
c3c7ea27 1297static void i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
8c27d42e
GR
1298{
1299 struct i40e_aqc_remove_macvlan_element_data element;
1300 struct i40e_pf *pf = vsi->back;
8c27d42e
GR
1301
1302 /* Only appropriate for the PF main VSI */
1303 if (vsi->type != I40E_VSI_MAIN)
c3c7ea27 1304 return;
8c27d42e 1305
30650cc5 1306 memset(&element, 0, sizeof(element));
8c27d42e
GR
1307 ether_addr_copy(element.mac_addr, macaddr);
1308 element.vlan_tag = 0;
c3c7ea27
MW
1309 /* Ignore error returns, some firmware does it this way... */
1310 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1311 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
30650cc5 1312
c3c7ea27
MW
1313 memset(&element, 0, sizeof(element));
1314 ether_addr_copy(element.mac_addr, macaddr);
1315 element.vlan_tag = 0;
1316 /* ...and some firmware does it this way. */
1317 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
a6cb9146 1318 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
c3c7ea27 1319 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
8c27d42e
GR
1320}
1321
41c445ff
JB
1322/**
1323 * i40e_add_filter - Add a mac/vlan filter to the VSI
1324 * @vsi: the VSI to be searched
1325 * @macaddr: the MAC address
1326 * @vlan: the vlan
b40c82e6 1327 * @is_vf: make sure its a VF filter, else doesn't matter
41c445ff
JB
1328 * @is_netdev: make sure its a netdev filter, else doesn't matter
1329 *
1330 * Returns ptr to the filter object or NULL when no memory available.
21659035
KP
1331 *
1332 * NOTE: This function is expected to be called with mac_filter_list_lock
1333 * being held.
41c445ff
JB
1334 **/
1335struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1336 u8 *macaddr, s16 vlan,
1337 bool is_vf, bool is_netdev)
1338{
1339 struct i40e_mac_filter *f;
c3c7ea27 1340 int changed = false;
41c445ff
JB
1341
1342 if (!vsi || !macaddr)
1343 return NULL;
1344
f6bd0962
KP
1345 /* Do not allow broadcast filter to be added since broadcast filter
1346 * is added as part of add VSI for any newly created VSI except
1347 * FDIR VSI
1348 */
1349 if (is_broadcast_ether_addr(macaddr))
1350 return NULL;
1351
41c445ff
JB
1352 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1353 if (!f) {
1354 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1355 if (!f)
1356 goto add_filter_out;
1357
9a173901 1358 ether_addr_copy(f->macaddr, macaddr);
41c445ff 1359 f->vlan = vlan;
c3c7ea27
MW
1360 /* If we're in overflow promisc mode, set the state directly
1361 * to failed, so we don't bother to try sending the filter
1362 * to the hardware.
1363 */
1364 if (test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state))
1365 f->state = I40E_FILTER_FAILED;
1366 else
1367 f->state = I40E_FILTER_NEW;
1368 changed = true;
41c445ff 1369 INIT_LIST_HEAD(&f->list);
04d5a21d 1370 list_add_tail(&f->list, &vsi->mac_filter_list);
41c445ff
JB
1371 }
1372
1373 /* increment counter and add a new flag if needed */
1374 if (is_vf) {
1375 if (!f->is_vf) {
1376 f->is_vf = true;
1377 f->counter++;
1378 }
1379 } else if (is_netdev) {
1380 if (!f->is_netdev) {
1381 f->is_netdev = true;
1382 f->counter++;
1383 }
1384 } else {
1385 f->counter++;
1386 }
1387
c3c7ea27 1388 if (changed) {
41c445ff
JB
1389 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1390 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1391 }
1392
1393add_filter_out:
1394 return f;
1395}
1396
1397/**
1398 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1399 * @vsi: the VSI to be searched
1400 * @macaddr: the MAC address
1401 * @vlan: the vlan
b40c82e6 1402 * @is_vf: make sure it's a VF filter, else doesn't matter
41c445ff 1403 * @is_netdev: make sure it's a netdev filter, else doesn't matter
21659035
KP
1404 *
1405 * NOTE: This function is expected to be called with mac_filter_list_lock
1406 * being held.
c3c7ea27
MW
1407 * ANOTHER NOTE: This function MUST be called from within the context of
1408 * the "safe" variants of any list iterators, e.g. list_for_each_entry_safe()
1409 * instead of list_for_each_entry().
41c445ff
JB
1410 **/
1411void i40e_del_filter(struct i40e_vsi *vsi,
1412 u8 *macaddr, s16 vlan,
1413 bool is_vf, bool is_netdev)
1414{
1415 struct i40e_mac_filter *f;
1416
1417 if (!vsi || !macaddr)
1418 return;
1419
1420 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1421 if (!f || f->counter == 0)
1422 return;
1423
1424 if (is_vf) {
1425 if (f->is_vf) {
1426 f->is_vf = false;
1427 f->counter--;
1428 }
1429 } else if (is_netdev) {
1430 if (f->is_netdev) {
1431 f->is_netdev = false;
1432 f->counter--;
1433 }
1434 } else {
b40c82e6 1435 /* make sure we don't remove a filter in use by VF or netdev */
41c445ff 1436 int min_f = 0;
6995b36c 1437
41c445ff
JB
1438 min_f += (f->is_vf ? 1 : 0);
1439 min_f += (f->is_netdev ? 1 : 0);
1440
1441 if (f->counter > min_f)
1442 f->counter--;
1443 }
1444
1445 /* counter == 0 tells sync_filters_subtask to
1446 * remove the filter from the firmware's list
1447 */
1448 if (f->counter == 0) {
c3c7ea27
MW
1449 if ((f->state == I40E_FILTER_FAILED) ||
1450 (f->state == I40E_FILTER_NEW)) {
1451 /* this one never got added by the FW. Just remove it,
1452 * no need to sync anything.
1453 */
1454 list_del(&f->list);
1455 kfree(f);
1456 } else {
1457 f->state = I40E_FILTER_REMOVE;
1458 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1459 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1460 }
41c445ff
JB
1461 }
1462}
1463
1464/**
1465 * i40e_set_mac - NDO callback to set mac address
1466 * @netdev: network interface device structure
1467 * @p: pointer to an address structure
1468 *
1469 * Returns 0 on success, negative on failure
1470 **/
38e00438
VD
1471#ifdef I40E_FCOE
1472int i40e_set_mac(struct net_device *netdev, void *p)
1473#else
41c445ff 1474static int i40e_set_mac(struct net_device *netdev, void *p)
38e00438 1475#endif
41c445ff
JB
1476{
1477 struct i40e_netdev_priv *np = netdev_priv(netdev);
1478 struct i40e_vsi *vsi = np->vsi;
30650cc5
SN
1479 struct i40e_pf *pf = vsi->back;
1480 struct i40e_hw *hw = &pf->hw;
41c445ff 1481 struct sockaddr *addr = p;
41c445ff
JB
1482
1483 if (!is_valid_ether_addr(addr->sa_data))
1484 return -EADDRNOTAVAIL;
1485
30650cc5
SN
1486 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1487 netdev_info(netdev, "already using mac address %pM\n",
1488 addr->sa_data);
1489 return 0;
1490 }
41c445ff 1491
80f6428f
ASJ
1492 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1493 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1494 return -EADDRNOTAVAIL;
1495
30650cc5
SN
1496 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1497 netdev_info(netdev, "returning to hw mac address %pM\n",
1498 hw->mac.addr);
1499 else
1500 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1501
c3c7ea27
MW
1502 spin_lock_bh(&vsi->mac_filter_list_lock);
1503 i40e_del_mac_all_vlan(vsi, netdev->dev_addr, false, true);
1504 i40e_put_mac_in_vlan(vsi, addr->sa_data, false, true);
1505 spin_unlock_bh(&vsi->mac_filter_list_lock);
1506 ether_addr_copy(netdev->dev_addr, addr->sa_data);
41c445ff
JB
1507 if (vsi->type == I40E_VSI_MAIN) {
1508 i40e_status ret;
6995b36c 1509
41c445ff 1510 ret = i40e_aq_mac_address_write(&vsi->back->hw,
cc41222c 1511 I40E_AQC_WRITE_TYPE_LAA_WOL,
41c445ff 1512 addr->sa_data, NULL);
c3c7ea27
MW
1513 if (ret)
1514 netdev_info(netdev, "Ignoring error from firmware on LAA update, status %s, AQ ret %s\n",
1515 i40e_stat_str(hw, ret),
1516 i40e_aq_str(hw, hw->aq.asq_last_status));
30650cc5
SN
1517 }
1518
c53934c6
JB
1519 /* schedule our worker thread which will take care of
1520 * applying the new filter changes
1521 */
1522 i40e_service_event_schedule(vsi->back);
1523 return 0;
41c445ff
JB
1524}
1525
1526/**
1527 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1528 * @vsi: the VSI being setup
1529 * @ctxt: VSI context structure
1530 * @enabled_tc: Enabled TCs bitmap
1531 * @is_add: True if called before Add VSI
1532 *
1533 * Setup VSI queue mapping for enabled traffic classes.
1534 **/
38e00438
VD
1535#ifdef I40E_FCOE
1536void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1537 struct i40e_vsi_context *ctxt,
1538 u8 enabled_tc,
1539 bool is_add)
1540#else
41c445ff
JB
1541static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1542 struct i40e_vsi_context *ctxt,
1543 u8 enabled_tc,
1544 bool is_add)
38e00438 1545#endif
41c445ff
JB
1546{
1547 struct i40e_pf *pf = vsi->back;
1548 u16 sections = 0;
1549 u8 netdev_tc = 0;
1550 u16 numtc = 0;
1551 u16 qcount;
1552 u8 offset;
1553 u16 qmap;
1554 int i;
4e3b35b0 1555 u16 num_tc_qps = 0;
41c445ff
JB
1556
1557 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1558 offset = 0;
1559
1560 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1561 /* Find numtc from enabled TC bitmap */
1562 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
75f5cea9 1563 if (enabled_tc & BIT(i)) /* TC is enabled */
41c445ff
JB
1564 numtc++;
1565 }
1566 if (!numtc) {
1567 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1568 numtc = 1;
1569 }
1570 } else {
1571 /* At least TC0 is enabled in case of non-DCB case */
1572 numtc = 1;
1573 }
1574
1575 vsi->tc_config.numtc = numtc;
1576 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
4e3b35b0 1577 /* Number of queues per enabled TC */
7d64402f
CS
1578 qcount = vsi->alloc_queue_pairs;
1579
7f9ff476 1580 num_tc_qps = qcount / numtc;
e25d00b8 1581 num_tc_qps = min_t(int, num_tc_qps, i40e_pf_get_max_q_per_tc(pf));
41c445ff
JB
1582
1583 /* Setup queue offset/count for all TCs for given VSI */
1584 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1585 /* See if the given TC is enabled for the given VSI */
75f5cea9 1586 if (vsi->tc_config.enabled_tc & BIT(i)) {
41a1d04b 1587 /* TC is enabled */
41c445ff
JB
1588 int pow, num_qps;
1589
41c445ff
JB
1590 switch (vsi->type) {
1591 case I40E_VSI_MAIN:
acd65448
HZ
1592 qcount = min_t(int, pf->alloc_rss_size,
1593 num_tc_qps);
41c445ff 1594 break;
38e00438
VD
1595#ifdef I40E_FCOE
1596 case I40E_VSI_FCOE:
1597 qcount = num_tc_qps;
1598 break;
1599#endif
41c445ff
JB
1600 case I40E_VSI_FDIR:
1601 case I40E_VSI_SRIOV:
1602 case I40E_VSI_VMDQ2:
1603 default:
4e3b35b0 1604 qcount = num_tc_qps;
41c445ff
JB
1605 WARN_ON(i != 0);
1606 break;
1607 }
4e3b35b0
NP
1608 vsi->tc_config.tc_info[i].qoffset = offset;
1609 vsi->tc_config.tc_info[i].qcount = qcount;
41c445ff 1610
1e200e4a 1611 /* find the next higher power-of-2 of num queue pairs */
4e3b35b0 1612 num_qps = qcount;
41c445ff 1613 pow = 0;
41a1d04b 1614 while (num_qps && (BIT_ULL(pow) < qcount)) {
41c445ff
JB
1615 pow++;
1616 num_qps >>= 1;
1617 }
1618
1619 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1620 qmap =
1621 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1622 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1623
4e3b35b0 1624 offset += qcount;
41c445ff
JB
1625 } else {
1626 /* TC is not enabled so set the offset to
1627 * default queue and allocate one queue
1628 * for the given TC.
1629 */
1630 vsi->tc_config.tc_info[i].qoffset = 0;
1631 vsi->tc_config.tc_info[i].qcount = 1;
1632 vsi->tc_config.tc_info[i].netdev_tc = 0;
1633
1634 qmap = 0;
1635 }
1636 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1637 }
1638
1639 /* Set actual Tx/Rx queue pairs */
1640 vsi->num_queue_pairs = offset;
9a3bd2f1
ASJ
1641 if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) {
1642 if (vsi->req_queue_pairs > 0)
1643 vsi->num_queue_pairs = vsi->req_queue_pairs;
26cdc443 1644 else if (pf->flags & I40E_FLAG_MSIX_ENABLED)
9a3bd2f1
ASJ
1645 vsi->num_queue_pairs = pf->num_lan_msix;
1646 }
41c445ff
JB
1647
1648 /* Scheduler section valid can only be set for ADD VSI */
1649 if (is_add) {
1650 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1651
1652 ctxt->info.up_enable_bits = enabled_tc;
1653 }
1654 if (vsi->type == I40E_VSI_SRIOV) {
1655 ctxt->info.mapping_flags |=
1656 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1657 for (i = 0; i < vsi->num_queue_pairs; i++)
1658 ctxt->info.queue_mapping[i] =
1659 cpu_to_le16(vsi->base_queue + i);
1660 } else {
1661 ctxt->info.mapping_flags |=
1662 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1663 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1664 }
1665 ctxt->info.valid_sections |= cpu_to_le16(sections);
1666}
1667
1668/**
1669 * i40e_set_rx_mode - NDO callback to set the netdev filters
1670 * @netdev: network interface device structure
1671 **/
38e00438
VD
1672#ifdef I40E_FCOE
1673void i40e_set_rx_mode(struct net_device *netdev)
1674#else
41c445ff 1675static void i40e_set_rx_mode(struct net_device *netdev)
38e00438 1676#endif
41c445ff
JB
1677{
1678 struct i40e_netdev_priv *np = netdev_priv(netdev);
1679 struct i40e_mac_filter *f, *ftmp;
1680 struct i40e_vsi *vsi = np->vsi;
1681 struct netdev_hw_addr *uca;
1682 struct netdev_hw_addr *mca;
1683 struct netdev_hw_addr *ha;
1684
21659035
KP
1685 spin_lock_bh(&vsi->mac_filter_list_lock);
1686
41c445ff
JB
1687 /* add addr if not already in the filter list */
1688 netdev_for_each_uc_addr(uca, netdev) {
1689 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1690 if (i40e_is_vsi_in_vlan(vsi))
1691 i40e_put_mac_in_vlan(vsi, uca->addr,
1692 false, true);
1693 else
1694 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1695 false, true);
1696 }
1697 }
1698
1699 netdev_for_each_mc_addr(mca, netdev) {
1700 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1701 if (i40e_is_vsi_in_vlan(vsi))
1702 i40e_put_mac_in_vlan(vsi, mca->addr,
1703 false, true);
1704 else
1705 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1706 false, true);
1707 }
1708 }
1709
1710 /* remove filter if not in netdev list */
1711 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
41c445ff
JB
1712
1713 if (!f->is_netdev)
1714 continue;
1715
2f41f335
SN
1716 netdev_for_each_mc_addr(mca, netdev)
1717 if (ether_addr_equal(mca->addr, f->macaddr))
1718 goto bottom_of_search_loop;
41c445ff 1719
2f41f335
SN
1720 netdev_for_each_uc_addr(uca, netdev)
1721 if (ether_addr_equal(uca->addr, f->macaddr))
1722 goto bottom_of_search_loop;
1723
1724 for_each_dev_addr(netdev, ha)
1725 if (ether_addr_equal(ha->addr, f->macaddr))
1726 goto bottom_of_search_loop;
1727
1728 /* f->macaddr wasn't found in uc, mc, or ha list so delete it */
1729 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1730
1731bottom_of_search_loop:
1732 continue;
41c445ff 1733 }
21659035 1734 spin_unlock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
1735
1736 /* check for other flag changes */
1737 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1738 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1739 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1740 }
c53934c6
JB
1741
1742 /* schedule our worker thread which will take care of
1743 * applying the new filter changes
1744 */
1745 i40e_service_event_schedule(vsi->back);
41c445ff
JB
1746}
1747
21659035
KP
1748/**
1749 * i40e_undo_del_filter_entries - Undo the changes made to MAC filter entries
1750 * @vsi: pointer to vsi struct
1751 * @from: Pointer to list which contains MAC filter entries - changes to
1752 * those entries needs to be undone.
1753 *
1754 * MAC filter entries from list were slated to be removed from device.
1755 **/
1756static void i40e_undo_del_filter_entries(struct i40e_vsi *vsi,
1757 struct list_head *from)
1758{
1759 struct i40e_mac_filter *f, *ftmp;
1760
1761 list_for_each_entry_safe(f, ftmp, from, list) {
21659035
KP
1762 /* Move the element back into MAC filter list*/
1763 list_move_tail(&f->list, &vsi->mac_filter_list);
1764 }
1765}
1766
1767/**
c3c7ea27
MW
1768 * i40e_update_filter_state - Update filter state based on return data
1769 * from firmware
1770 * @count: Number of filters added
1771 * @add_list: return data from fw
1772 * @head: pointer to first filter in current batch
1773 * @aq_err: status from fw
21659035 1774 *
c3c7ea27
MW
1775 * MAC filter entries from list were slated to be added to device. Returns
1776 * number of successful filters. Note that 0 does NOT mean success!
21659035 1777 **/
c3c7ea27
MW
1778static int
1779i40e_update_filter_state(int count,
1780 struct i40e_aqc_add_macvlan_element_data *add_list,
1781 struct i40e_mac_filter *add_head, int aq_err)
21659035 1782{
c3c7ea27
MW
1783 int retval = 0;
1784 int i;
21659035 1785
21659035 1786
c3c7ea27
MW
1787 if (!aq_err) {
1788 retval = count;
1789 /* Everything's good, mark all filters active. */
1790 for (i = 0; i < count ; i++) {
1791 add_head->state = I40E_FILTER_ACTIVE;
1792 add_head = list_next_entry(add_head, list);
1793 }
1794 } else if (aq_err == I40E_AQ_RC_ENOSPC) {
1795 /* Device ran out of filter space. Check the return value
1796 * for each filter to see which ones are active.
1797 */
1798 for (i = 0; i < count ; i++) {
1799 if (add_list[i].match_method ==
1800 I40E_AQC_MM_ERR_NO_RES) {
1801 add_head->state = I40E_FILTER_FAILED;
1802 } else {
1803 add_head->state = I40E_FILTER_ACTIVE;
1804 retval++;
1805 }
1806 add_head = list_next_entry(add_head, list);
1807 }
1808 } else {
1809 /* Some other horrible thing happened, fail all filters */
1810 retval = 0;
1811 for (i = 0; i < count ; i++) {
1812 add_head->state = I40E_FILTER_FAILED;
1813 add_head = list_next_entry(add_head, list);
1814 }
21659035 1815 }
c3c7ea27 1816 return retval;
21659035
KP
1817}
1818
41c445ff
JB
1819/**
1820 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1821 * @vsi: ptr to the VSI
1822 *
1823 * Push any outstanding VSI filter changes through the AdminQ.
1824 *
1825 * Returns 0 or error value
1826 **/
17652c63 1827int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
41c445ff 1828{
c3c7ea27
MW
1829 struct i40e_mac_filter *f, *ftmp, *add_head = NULL;
1830 struct list_head tmp_add_list, tmp_del_list;
3e25a8f3 1831 struct i40e_hw *hw = &vsi->back->hw;
c3c7ea27 1832 bool promisc_changed = false;
2d1de828 1833 char vsi_name[16] = "PF";
41c445ff
JB
1834 int filter_list_len = 0;
1835 u32 changed_flags = 0;
ea02e90b 1836 i40e_status aq_ret = 0;
ea02e90b 1837 int retval = 0;
41c445ff
JB
1838 struct i40e_pf *pf;
1839 int num_add = 0;
1840 int num_del = 0;
f1c7e72e 1841 int aq_err = 0;
41c445ff 1842 u16 cmd_flags;
c3c7ea27
MW
1843 int list_size;
1844 int fcnt;
41c445ff
JB
1845
1846 /* empty array typed pointers, kcalloc later */
1847 struct i40e_aqc_add_macvlan_element_data *add_list;
1848 struct i40e_aqc_remove_macvlan_element_data *del_list;
1849
1850 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1851 usleep_range(1000, 2000);
1852 pf = vsi->back;
1853
1854 if (vsi->netdev) {
1855 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1856 vsi->current_netdev_flags = vsi->netdev->flags;
1857 }
1858
21659035 1859 INIT_LIST_HEAD(&tmp_add_list);
c3c7ea27 1860 INIT_LIST_HEAD(&tmp_del_list);
21659035 1861
2d1de828
SN
1862 if (vsi->type == I40E_VSI_SRIOV)
1863 snprintf(vsi_name, sizeof(vsi_name) - 1, "VF %d", vsi->vf_id);
1864 else if (vsi->type != I40E_VSI_MAIN)
1865 snprintf(vsi_name, sizeof(vsi_name) - 1, "vsi %d", vsi->seid);
1866
41c445ff
JB
1867 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1868 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1869
21659035 1870 spin_lock_bh(&vsi->mac_filter_list_lock);
c3c7ea27 1871 /* Create a list of filters to delete. */
41c445ff 1872 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
c3c7ea27
MW
1873 if (f->state == I40E_FILTER_REMOVE) {
1874 WARN_ON(f->counter != 0);
1875 /* Move the element into temporary del_list */
1876 list_move_tail(&f->list, &tmp_del_list);
1877 vsi->active_filters--;
1878 }
1879 if (f->state == I40E_FILTER_NEW) {
1880 WARN_ON(f->counter == 0);
1881 /* Move the element into temporary add_list */
1882 list_move_tail(&f->list, &tmp_add_list);
21659035 1883 }
21659035
KP
1884 }
1885 spin_unlock_bh(&vsi->mac_filter_list_lock);
21659035
KP
1886 }
1887
1888 /* Now process 'del_list' outside the lock */
1889 if (!list_empty(&tmp_del_list)) {
3e25a8f3 1890 filter_list_len = hw->aq.asq_buf_size /
21659035 1891 sizeof(struct i40e_aqc_remove_macvlan_element_data);
c3c7ea27 1892 list_size = filter_list_len *
f1199998 1893 sizeof(struct i40e_aqc_remove_macvlan_element_data);
c3c7ea27 1894 del_list = kzalloc(list_size, GFP_ATOMIC);
21659035 1895 if (!del_list) {
21659035
KP
1896 /* Undo VSI's MAC filter entry element updates */
1897 spin_lock_bh(&vsi->mac_filter_list_lock);
1898 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
21659035 1899 spin_unlock_bh(&vsi->mac_filter_list_lock);
ea02e90b
MW
1900 retval = -ENOMEM;
1901 goto out;
21659035
KP
1902 }
1903
1904 list_for_each_entry_safe(f, ftmp, &tmp_del_list, list) {
41c445ff
JB
1905 cmd_flags = 0;
1906
1907 /* add to delete list */
9a173901 1908 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
c3c7ea27
MW
1909 if (f->vlan == I40E_VLAN_ANY) {
1910 del_list[num_del].vlan_tag = 0;
a6cb9146 1911 cmd_flags |= I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
c3c7ea27
MW
1912 } else {
1913 del_list[num_del].vlan_tag =
1914 cpu_to_le16((u16)(f->vlan));
1915 }
41c445ff 1916
41c445ff
JB
1917 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1918 del_list[num_del].flags = cmd_flags;
1919 num_del++;
1920
41c445ff
JB
1921 /* flush a full buffer */
1922 if (num_del == filter_list_len) {
c3c7ea27
MW
1923 aq_ret = i40e_aq_remove_macvlan(hw, vsi->seid,
1924 del_list,
1925 num_del, NULL);
3e25a8f3 1926 aq_err = hw->aq.asq_last_status;
41c445ff 1927 num_del = 0;
c3c7ea27 1928 memset(del_list, 0, list_size);
41c445ff 1929
c3c7ea27
MW
1930 /* Explicitly ignore and do not report when
1931 * firmware returns ENOENT.
1932 */
1933 if (aq_ret && !(aq_err == I40E_AQ_RC_ENOENT)) {
ea02e90b 1934 retval = -EIO;
c3c7ea27
MW
1935 dev_info(&pf->pdev->dev,
1936 "ignoring delete macvlan error on %s, err %s, aq_err %s\n",
2d1de828 1937 vsi_name,
3e25a8f3
MW
1938 i40e_stat_str(hw, aq_ret),
1939 i40e_aq_str(hw, aq_err));
ea02e90b 1940 }
41c445ff 1941 }
21659035
KP
1942 /* Release memory for MAC filter entries which were
1943 * synced up with HW.
1944 */
1945 list_del(&f->list);
1946 kfree(f);
41c445ff 1947 }
21659035 1948
41c445ff 1949 if (num_del) {
3e25a8f3
MW
1950 aq_ret = i40e_aq_remove_macvlan(hw, vsi->seid, del_list,
1951 num_del, NULL);
1952 aq_err = hw->aq.asq_last_status;
41c445ff
JB
1953 num_del = 0;
1954
c3c7ea27
MW
1955 /* Explicitly ignore and do not report when firmware
1956 * returns ENOENT.
1957 */
1958 if (aq_ret && !(aq_err == I40E_AQ_RC_ENOENT)) {
1959 retval = -EIO;
41c445ff 1960 dev_info(&pf->pdev->dev,
2d1de828
SN
1961 "ignoring delete macvlan error on %s, err %s aq_err %s\n",
1962 vsi_name,
3e25a8f3
MW
1963 i40e_stat_str(hw, aq_ret),
1964 i40e_aq_str(hw, aq_err));
c3c7ea27 1965 }
41c445ff
JB
1966 }
1967
1968 kfree(del_list);
1969 del_list = NULL;
21659035
KP
1970 }
1971
1972 if (!list_empty(&tmp_add_list)) {
c3c7ea27 1973 /* Do all the adds now. */
3e25a8f3 1974 filter_list_len = hw->aq.asq_buf_size /
f1199998 1975 sizeof(struct i40e_aqc_add_macvlan_element_data);
c3c7ea27
MW
1976 list_size = filter_list_len *
1977 sizeof(struct i40e_aqc_add_macvlan_element_data);
1978 add_list = kzalloc(list_size, GFP_ATOMIC);
21659035 1979 if (!add_list) {
ea02e90b
MW
1980 retval = -ENOMEM;
1981 goto out;
21659035 1982 }
c3c7ea27
MW
1983 num_add = 0;
1984 list_for_each_entry(f, &tmp_add_list, list) {
1985 if (test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1986 &vsi->state)) {
1987 f->state = I40E_FILTER_FAILED;
1988 continue;
1989 }
41c445ff 1990 /* add to add array */
c3c7ea27
MW
1991 if (num_add == 0)
1992 add_head = f;
1993 cmd_flags = 0;
9a173901 1994 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
c3c7ea27
MW
1995 if (f->vlan == I40E_VLAN_ANY) {
1996 add_list[num_add].vlan_tag = 0;
1997 cmd_flags |= I40E_AQC_MACVLAN_ADD_IGNORE_VLAN;
1998 } else {
1999 add_list[num_add].vlan_tag =
2000 cpu_to_le16((u16)(f->vlan));
2001 }
41c445ff 2002 add_list[num_add].queue_number = 0;
41c445ff 2003 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
41c445ff
JB
2004 add_list[num_add].flags = cpu_to_le16(cmd_flags);
2005 num_add++;
2006
2007 /* flush a full buffer */
2008 if (num_add == filter_list_len) {
3e25a8f3 2009 aq_ret = i40e_aq_add_macvlan(hw, vsi->seid,
ea02e90b
MW
2010 add_list, num_add,
2011 NULL);
3e25a8f3 2012 aq_err = hw->aq.asq_last_status;
c3c7ea27
MW
2013 fcnt = i40e_update_filter_state(num_add,
2014 add_list,
2015 add_head,
2016 aq_ret);
2017 vsi->active_filters += fcnt;
2018
2019 if (fcnt != num_add) {
2020 promisc_changed = true;
2021 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2022 &vsi->state);
2023 vsi->promisc_threshold =
2024 (vsi->active_filters * 3) / 4;
2025 dev_warn(&pf->pdev->dev,
2026 "Error %s adding RX filters on %s, promiscuous mode forced on\n",
2027 i40e_aq_str(hw, aq_err),
2028 vsi_name);
2029 }
2030 memset(add_list, 0, list_size);
41c445ff 2031 num_add = 0;
41c445ff
JB
2032 }
2033 }
2034 if (num_add) {
3e25a8f3 2035 aq_ret = i40e_aq_add_macvlan(hw, vsi->seid,
ea02e90b 2036 add_list, num_add, NULL);
3e25a8f3 2037 aq_err = hw->aq.asq_last_status;
c3c7ea27
MW
2038 fcnt = i40e_update_filter_state(num_add, add_list,
2039 add_head, aq_ret);
2040 vsi->active_filters += fcnt;
2041 if (fcnt != num_add) {
2042 promisc_changed = true;
2043 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2044 &vsi->state);
2045 vsi->promisc_threshold =
2046 (vsi->active_filters * 3) / 4;
2047 dev_warn(&pf->pdev->dev,
2048 "Error %s adding RX filters on %s, promiscuous mode forced on\n",
2049 i40e_aq_str(hw, aq_err), vsi_name);
2050 }
41c445ff 2051 }
c3c7ea27
MW
2052 /* Now move all of the filters from the temp add list back to
2053 * the VSI's list.
2054 */
2055 spin_lock_bh(&vsi->mac_filter_list_lock);
2056 list_for_each_entry_safe(f, ftmp, &tmp_add_list, list) {
2057 list_move_tail(&f->list, &vsi->mac_filter_list);
2058 }
2059 spin_unlock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
2060 kfree(add_list);
2061 add_list = NULL;
c3c7ea27 2062 }
41c445ff 2063
c3c7ea27
MW
2064 /* Check to see if we can drop out of overflow promiscuous mode. */
2065 if (test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state) &&
2066 (vsi->active_filters < vsi->promisc_threshold)) {
2067 int failed_count = 0;
2068 /* See if we have any failed filters. We can't drop out of
2069 * promiscuous until these have all been deleted.
2070 */
2071 spin_lock_bh(&vsi->mac_filter_list_lock);
2072 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2073 if (f->state == I40E_FILTER_FAILED)
2074 failed_count++;
2075 }
2076 spin_unlock_bh(&vsi->mac_filter_list_lock);
2077 if (!failed_count) {
41c445ff 2078 dev_info(&pf->pdev->dev,
c3c7ea27
MW
2079 "filter logjam cleared on %s, leaving overflow promiscuous mode\n",
2080 vsi_name);
2081 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
2082 promisc_changed = true;
2083 vsi->promisc_threshold = 0;
41c445ff
JB
2084 }
2085 }
2086
a856b5cb
ASJ
2087 /* if the VF is not trusted do not do promisc */
2088 if ((vsi->type == I40E_VSI_SRIOV) && !pf->vf[vsi->vf_id].trusted) {
2089 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
2090 goto out;
2091 }
2092
41c445ff
JB
2093 /* check for changes in promiscuous modes */
2094 if (changed_flags & IFF_ALLMULTI) {
2095 bool cur_multipromisc;
6995b36c 2096
41c445ff 2097 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
ea02e90b
MW
2098 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
2099 vsi->seid,
2100 cur_multipromisc,
2101 NULL);
2102 if (aq_ret) {
2103 retval = i40e_aq_rc_to_posix(aq_ret,
3e25a8f3 2104 hw->aq.asq_last_status);
41c445ff 2105 dev_info(&pf->pdev->dev,
2d1de828
SN
2106 "set multi promisc failed on %s, err %s aq_err %s\n",
2107 vsi_name,
3e25a8f3
MW
2108 i40e_stat_str(hw, aq_ret),
2109 i40e_aq_str(hw, hw->aq.asq_last_status));
ea02e90b 2110 }
41c445ff 2111 }
c3c7ea27
MW
2112 if ((changed_flags & IFF_PROMISC) ||
2113 (promisc_changed &&
2114 test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state))) {
41c445ff 2115 bool cur_promisc;
6995b36c 2116
41c445ff
JB
2117 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
2118 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2119 &vsi->state));
6784ed5a
ASJ
2120 if ((vsi->type == I40E_VSI_MAIN) &&
2121 (pf->lan_veb != I40E_NO_VEB) &&
2122 !(pf->flags & I40E_FLAG_MFP_ENABLED)) {
92faef85
ASJ
2123 /* set defport ON for Main VSI instead of true promisc
2124 * this way we will get all unicast/multicast and VLAN
2125 * promisc behavior but will not get VF or VMDq traffic
2126 * replicated on the Main VSI.
2127 */
2128 if (pf->cur_promisc != cur_promisc) {
2129 pf->cur_promisc = cur_promisc;
5bc16031
MW
2130 if (cur_promisc)
2131 aq_ret =
2132 i40e_aq_set_default_vsi(hw,
2133 vsi->seid,
2134 NULL);
2135 else
2136 aq_ret =
2137 i40e_aq_clear_default_vsi(hw,
2138 vsi->seid,
2139 NULL);
2140 if (aq_ret) {
2141 retval = i40e_aq_rc_to_posix(aq_ret,
2142 hw->aq.asq_last_status);
2143 dev_info(&pf->pdev->dev,
2d1de828
SN
2144 "Set default VSI failed on %s, err %s, aq_err %s\n",
2145 vsi_name,
5bc16031
MW
2146 i40e_stat_str(hw, aq_ret),
2147 i40e_aq_str(hw,
2148 hw->aq.asq_last_status));
2149 }
92faef85
ASJ
2150 }
2151 } else {
ea02e90b 2152 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(
3e25a8f3 2153 hw,
f1c7e72e 2154 vsi->seid,
b5569892
ASJ
2155 cur_promisc, NULL,
2156 true);
ea02e90b
MW
2157 if (aq_ret) {
2158 retval =
2159 i40e_aq_rc_to_posix(aq_ret,
3e25a8f3 2160 hw->aq.asq_last_status);
92faef85 2161 dev_info(&pf->pdev->dev,
2d1de828
SN
2162 "set unicast promisc failed on %s, err %s, aq_err %s\n",
2163 vsi_name,
3e25a8f3
MW
2164 i40e_stat_str(hw, aq_ret),
2165 i40e_aq_str(hw,
2166 hw->aq.asq_last_status));
ea02e90b
MW
2167 }
2168 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(
3e25a8f3 2169 hw,
92faef85
ASJ
2170 vsi->seid,
2171 cur_promisc, NULL);
ea02e90b
MW
2172 if (aq_ret) {
2173 retval =
2174 i40e_aq_rc_to_posix(aq_ret,
3e25a8f3 2175 hw->aq.asq_last_status);
92faef85 2176 dev_info(&pf->pdev->dev,
2d1de828
SN
2177 "set multicast promisc failed on %s, err %s, aq_err %s\n",
2178 vsi_name,
3e25a8f3
MW
2179 i40e_stat_str(hw, aq_ret),
2180 i40e_aq_str(hw,
2181 hw->aq.asq_last_status));
ea02e90b 2182 }
92faef85 2183 }
ea02e90b
MW
2184 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
2185 vsi->seid,
2186 cur_promisc, NULL);
2187 if (aq_ret) {
2188 retval = i40e_aq_rc_to_posix(aq_ret,
2189 pf->hw.aq.asq_last_status);
1a10370a 2190 dev_info(&pf->pdev->dev,
f1c7e72e 2191 "set brdcast promisc failed, err %s, aq_err %s\n",
3e25a8f3
MW
2192 i40e_stat_str(hw, aq_ret),
2193 i40e_aq_str(hw,
2194 hw->aq.asq_last_status));
ea02e90b 2195 }
41c445ff 2196 }
ea02e90b 2197out:
2818ccd9
JB
2198 /* if something went wrong then set the changed flag so we try again */
2199 if (retval)
2200 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
2201
41c445ff 2202 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
ea02e90b 2203 return retval;
41c445ff
JB
2204}
2205
2206/**
2207 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
2208 * @pf: board private structure
2209 **/
2210static void i40e_sync_filters_subtask(struct i40e_pf *pf)
2211{
2212 int v;
2213
2214 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
2215 return;
2216 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
2217
505682cd 2218 for (v = 0; v < pf->num_alloc_vsi; v++) {
41c445ff 2219 if (pf->vsi[v] &&
17652c63
JB
2220 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) {
2221 int ret = i40e_sync_vsi_filters(pf->vsi[v]);
2222
2223 if (ret) {
2224 /* come back and try again later */
2225 pf->flags |= I40E_FLAG_FILTER_SYNC;
2226 break;
2227 }
2228 }
41c445ff
JB
2229 }
2230}
2231
2232/**
2233 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
2234 * @netdev: network interface device structure
2235 * @new_mtu: new value for maximum frame size
2236 *
2237 * Returns 0 on success, negative on failure
2238 **/
2239static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
2240{
2241 struct i40e_netdev_priv *np = netdev_priv(netdev);
61a46a4c 2242 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
41c445ff
JB
2243 struct i40e_vsi *vsi = np->vsi;
2244
2245 /* MTU < 68 is an error and causes problems on some kernels */
2246 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
2247 return -EINVAL;
2248
2249 netdev_info(netdev, "changing MTU from %d to %d\n",
2250 netdev->mtu, new_mtu);
2251 netdev->mtu = new_mtu;
2252 if (netif_running(netdev))
2253 i40e_vsi_reinit_locked(vsi);
e3219ce6 2254 i40e_notify_client_of_l2_param_changes(vsi);
41c445ff
JB
2255 return 0;
2256}
2257
beb0dff1
JK
2258/**
2259 * i40e_ioctl - Access the hwtstamp interface
2260 * @netdev: network interface device structure
2261 * @ifr: interface request data
2262 * @cmd: ioctl command
2263 **/
2264int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2265{
2266 struct i40e_netdev_priv *np = netdev_priv(netdev);
2267 struct i40e_pf *pf = np->vsi->back;
2268
2269 switch (cmd) {
2270 case SIOCGHWTSTAMP:
2271 return i40e_ptp_get_ts_config(pf, ifr);
2272 case SIOCSHWTSTAMP:
2273 return i40e_ptp_set_ts_config(pf, ifr);
2274 default:
2275 return -EOPNOTSUPP;
2276 }
2277}
2278
41c445ff
JB
2279/**
2280 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
2281 * @vsi: the vsi being adjusted
2282 **/
2283void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
2284{
2285 struct i40e_vsi_context ctxt;
2286 i40e_status ret;
2287
2288 if ((vsi->info.valid_sections &
2289 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2290 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
2291 return; /* already enabled */
2292
2293 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2294 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2295 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
2296
2297 ctxt.seid = vsi->seid;
1a2f6248 2298 ctxt.info = vsi->info;
41c445ff
JB
2299 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2300 if (ret) {
2301 dev_info(&vsi->back->pdev->dev,
f1c7e72e
SN
2302 "update vlan stripping failed, err %s aq_err %s\n",
2303 i40e_stat_str(&vsi->back->hw, ret),
2304 i40e_aq_str(&vsi->back->hw,
2305 vsi->back->hw.aq.asq_last_status));
41c445ff
JB
2306 }
2307}
2308
2309/**
2310 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
2311 * @vsi: the vsi being adjusted
2312 **/
2313void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
2314{
2315 struct i40e_vsi_context ctxt;
2316 i40e_status ret;
2317
2318 if ((vsi->info.valid_sections &
2319 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2320 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
2321 I40E_AQ_VSI_PVLAN_EMOD_MASK))
2322 return; /* already disabled */
2323
2324 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2325 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2326 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
2327
2328 ctxt.seid = vsi->seid;
1a2f6248 2329 ctxt.info = vsi->info;
41c445ff
JB
2330 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2331 if (ret) {
2332 dev_info(&vsi->back->pdev->dev,
f1c7e72e
SN
2333 "update vlan stripping failed, err %s aq_err %s\n",
2334 i40e_stat_str(&vsi->back->hw, ret),
2335 i40e_aq_str(&vsi->back->hw,
2336 vsi->back->hw.aq.asq_last_status));
41c445ff
JB
2337 }
2338}
2339
2340/**
2341 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2342 * @netdev: network interface to be adjusted
2343 * @features: netdev features to test if VLAN offload is enabled or not
2344 **/
2345static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2346{
2347 struct i40e_netdev_priv *np = netdev_priv(netdev);
2348 struct i40e_vsi *vsi = np->vsi;
2349
2350 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2351 i40e_vlan_stripping_enable(vsi);
2352 else
2353 i40e_vlan_stripping_disable(vsi);
2354}
2355
2356/**
2357 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2358 * @vsi: the vsi being configured
2359 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2360 **/
2361int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2362{
c3c7ea27 2363 struct i40e_mac_filter *f, *ftmp, *add_f;
41c445ff 2364 bool is_netdev, is_vf;
41c445ff
JB
2365
2366 is_vf = (vsi->type == I40E_VSI_SRIOV);
2367 is_netdev = !!(vsi->netdev);
2368
21659035
KP
2369 /* Locked once because all functions invoked below iterates list*/
2370 spin_lock_bh(&vsi->mac_filter_list_lock);
2371
41c445ff
JB
2372 if (is_netdev) {
2373 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2374 is_vf, is_netdev);
2375 if (!add_f) {
2376 dev_info(&vsi->back->pdev->dev,
2377 "Could not add vlan filter %d for %pM\n",
2378 vid, vsi->netdev->dev_addr);
21659035 2379 spin_unlock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
2380 return -ENOMEM;
2381 }
2382 }
2383
c3c7ea27 2384 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
41c445ff
JB
2385 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2386 if (!add_f) {
2387 dev_info(&vsi->back->pdev->dev,
2388 "Could not add vlan filter %d for %pM\n",
2389 vid, f->macaddr);
21659035 2390 spin_unlock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
2391 return -ENOMEM;
2392 }
2393 }
2394
41c445ff
JB
2395 /* Now if we add a vlan tag, make sure to check if it is the first
2396 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2397 * with 0, so we now accept untagged and specified tagged traffic
c3c7ea27 2398 * (and not all tags along with untagged)
41c445ff
JB
2399 */
2400 if (vid > 0) {
2401 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2402 I40E_VLAN_ANY,
2403 is_vf, is_netdev)) {
2404 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2405 I40E_VLAN_ANY, is_vf, is_netdev);
2406 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2407 is_vf, is_netdev);
2408 if (!add_f) {
2409 dev_info(&vsi->back->pdev->dev,
2410 "Could not add filter 0 for %pM\n",
2411 vsi->netdev->dev_addr);
21659035 2412 spin_unlock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
2413 return -ENOMEM;
2414 }
2415 }
8d82a7c5 2416 }
41c445ff 2417
8d82a7c5
GR
2418 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2419 if (vid > 0 && !vsi->info.pvid) {
c3c7ea27 2420 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
21659035
KP
2421 if (!i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2422 is_vf, is_netdev))
2423 continue;
2424 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2425 is_vf, is_netdev);
2426 add_f = i40e_add_filter(vsi, f->macaddr,
2427 0, is_vf, is_netdev);
2428 if (!add_f) {
2429 dev_info(&vsi->back->pdev->dev,
2430 "Could not add filter 0 for %pM\n",
2431 f->macaddr);
2432 spin_unlock_bh(&vsi->mac_filter_list_lock);
2433 return -ENOMEM;
41c445ff
JB
2434 }
2435 }
41c445ff
JB
2436 }
2437
21659035
KP
2438 spin_unlock_bh(&vsi->mac_filter_list_lock);
2439
0e4425ed
JB
2440 /* schedule our worker thread which will take care of
2441 * applying the new filter changes
2442 */
2443 i40e_service_event_schedule(vsi->back);
2444 return 0;
41c445ff
JB
2445}
2446
2447/**
2448 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2449 * @vsi: the vsi being configured
2450 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
078b5876
JB
2451 *
2452 * Return: 0 on success or negative otherwise
41c445ff
JB
2453 **/
2454int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2455{
2456 struct net_device *netdev = vsi->netdev;
c3c7ea27 2457 struct i40e_mac_filter *f, *ftmp, *add_f;
41c445ff
JB
2458 bool is_vf, is_netdev;
2459 int filter_count = 0;
41c445ff
JB
2460
2461 is_vf = (vsi->type == I40E_VSI_SRIOV);
2462 is_netdev = !!(netdev);
2463
21659035
KP
2464 /* Locked once because all functions invoked below iterates list */
2465 spin_lock_bh(&vsi->mac_filter_list_lock);
2466
41c445ff
JB
2467 if (is_netdev)
2468 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2469
c3c7ea27 2470 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
41c445ff
JB
2471 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2472
41c445ff
JB
2473 /* go through all the filters for this VSI and if there is only
2474 * vid == 0 it means there are no other filters, so vid 0 must
2475 * be replaced with -1. This signifies that we should from now
2476 * on accept any traffic (with any tag present, or untagged)
2477 */
2478 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2479 if (is_netdev) {
2480 if (f->vlan &&
2481 ether_addr_equal(netdev->dev_addr, f->macaddr))
2482 filter_count++;
2483 }
2484
2485 if (f->vlan)
2486 filter_count++;
2487 }
2488
2489 if (!filter_count && is_netdev) {
2490 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2491 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2492 is_vf, is_netdev);
2493 if (!f) {
2494 dev_info(&vsi->back->pdev->dev,
2495 "Could not add filter %d for %pM\n",
2496 I40E_VLAN_ANY, netdev->dev_addr);
21659035 2497 spin_unlock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
2498 return -ENOMEM;
2499 }
2500 }
2501
2502 if (!filter_count) {
c3c7ea27 2503 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
41c445ff
JB
2504 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2505 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
21659035 2506 is_vf, is_netdev);
41c445ff
JB
2507 if (!add_f) {
2508 dev_info(&vsi->back->pdev->dev,
2509 "Could not add filter %d for %pM\n",
2510 I40E_VLAN_ANY, f->macaddr);
21659035 2511 spin_unlock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
2512 return -ENOMEM;
2513 }
2514 }
2515 }
2516
21659035
KP
2517 spin_unlock_bh(&vsi->mac_filter_list_lock);
2518
0e4425ed
JB
2519 /* schedule our worker thread which will take care of
2520 * applying the new filter changes
2521 */
2522 i40e_service_event_schedule(vsi->back);
2523 return 0;
41c445ff
JB
2524}
2525
2526/**
2527 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2528 * @netdev: network interface to be adjusted
2529 * @vid: vlan id to be added
078b5876
JB
2530 *
2531 * net_device_ops implementation for adding vlan ids
41c445ff 2532 **/
38e00438
VD
2533#ifdef I40E_FCOE
2534int i40e_vlan_rx_add_vid(struct net_device *netdev,
2535 __always_unused __be16 proto, u16 vid)
2536#else
41c445ff
JB
2537static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2538 __always_unused __be16 proto, u16 vid)
38e00438 2539#endif
41c445ff
JB
2540{
2541 struct i40e_netdev_priv *np = netdev_priv(netdev);
2542 struct i40e_vsi *vsi = np->vsi;
078b5876 2543 int ret = 0;
41c445ff
JB
2544
2545 if (vid > 4095)
078b5876
JB
2546 return -EINVAL;
2547
6982d429
ASJ
2548 /* If the network stack called us with vid = 0 then
2549 * it is asking to receive priority tagged packets with
2550 * vlan id 0. Our HW receives them by default when configured
2551 * to receive untagged packets so there is no need to add an
2552 * extra filter for vlan 0 tagged packets.
41c445ff 2553 */
6982d429
ASJ
2554 if (vid)
2555 ret = i40e_vsi_add_vlan(vsi, vid);
41c445ff 2556
078b5876
JB
2557 if (!ret && (vid < VLAN_N_VID))
2558 set_bit(vid, vsi->active_vlans);
41c445ff 2559
078b5876 2560 return ret;
41c445ff
JB
2561}
2562
2563/**
2564 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2565 * @netdev: network interface to be adjusted
2566 * @vid: vlan id to be removed
078b5876 2567 *
fdfd943e 2568 * net_device_ops implementation for removing vlan ids
41c445ff 2569 **/
38e00438
VD
2570#ifdef I40E_FCOE
2571int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2572 __always_unused __be16 proto, u16 vid)
2573#else
41c445ff
JB
2574static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2575 __always_unused __be16 proto, u16 vid)
38e00438 2576#endif
41c445ff
JB
2577{
2578 struct i40e_netdev_priv *np = netdev_priv(netdev);
2579 struct i40e_vsi *vsi = np->vsi;
2580
41c445ff
JB
2581 /* return code is ignored as there is nothing a user
2582 * can do about failure to remove and a log message was
078b5876 2583 * already printed from the other function
41c445ff
JB
2584 */
2585 i40e_vsi_kill_vlan(vsi, vid);
2586
2587 clear_bit(vid, vsi->active_vlans);
078b5876 2588
41c445ff
JB
2589 return 0;
2590}
2591
b1b15df5
TD
2592/**
2593 * i40e_macaddr_init - explicitly write the mac address filters
2594 *
2595 * @vsi: pointer to the vsi
2596 * @macaddr: the MAC address
2597 *
2598 * This is needed when the macaddr has been obtained by other
2599 * means than the default, e.g., from Open Firmware or IDPROM.
2600 * Returns 0 on success, negative on failure
2601 **/
2602static int i40e_macaddr_init(struct i40e_vsi *vsi, u8 *macaddr)
2603{
2604 int ret;
2605 struct i40e_aqc_add_macvlan_element_data element;
2606
2607 ret = i40e_aq_mac_address_write(&vsi->back->hw,
2608 I40E_AQC_WRITE_TYPE_LAA_WOL,
2609 macaddr, NULL);
2610 if (ret) {
2611 dev_info(&vsi->back->pdev->dev,
2612 "Addr change for VSI failed: %d\n", ret);
2613 return -EADDRNOTAVAIL;
2614 }
2615
2616 memset(&element, 0, sizeof(element));
2617 ether_addr_copy(element.mac_addr, macaddr);
2618 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
2619 ret = i40e_aq_add_macvlan(&vsi->back->hw, vsi->seid, &element, 1, NULL);
2620 if (ret) {
2621 dev_info(&vsi->back->pdev->dev,
2622 "add filter failed err %s aq_err %s\n",
2623 i40e_stat_str(&vsi->back->hw, ret),
2624 i40e_aq_str(&vsi->back->hw,
2625 vsi->back->hw.aq.asq_last_status));
2626 }
2627 return ret;
2628}
2629
41c445ff
JB
2630/**
2631 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2632 * @vsi: the vsi being brought back up
2633 **/
2634static void i40e_restore_vlan(struct i40e_vsi *vsi)
2635{
2636 u16 vid;
2637
2638 if (!vsi->netdev)
2639 return;
2640
2641 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2642
2643 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2644 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2645 vid);
2646}
2647
2648/**
2649 * i40e_vsi_add_pvid - Add pvid for the VSI
2650 * @vsi: the vsi being adjusted
2651 * @vid: the vlan id to set as a PVID
2652 **/
dcae29be 2653int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
41c445ff
JB
2654{
2655 struct i40e_vsi_context ctxt;
f1c7e72e 2656 i40e_status ret;
41c445ff
JB
2657
2658 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2659 vsi->info.pvid = cpu_to_le16(vid);
6c12fcbf
GR
2660 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2661 I40E_AQ_VSI_PVLAN_INSERT_PVID |
b774c7dd 2662 I40E_AQ_VSI_PVLAN_EMOD_STR;
41c445ff
JB
2663
2664 ctxt.seid = vsi->seid;
1a2f6248 2665 ctxt.info = vsi->info;
f1c7e72e
SN
2666 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2667 if (ret) {
41c445ff 2668 dev_info(&vsi->back->pdev->dev,
f1c7e72e
SN
2669 "add pvid failed, err %s aq_err %s\n",
2670 i40e_stat_str(&vsi->back->hw, ret),
2671 i40e_aq_str(&vsi->back->hw,
2672 vsi->back->hw.aq.asq_last_status));
dcae29be 2673 return -ENOENT;
41c445ff
JB
2674 }
2675
dcae29be 2676 return 0;
41c445ff
JB
2677}
2678
2679/**
2680 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2681 * @vsi: the vsi being adjusted
2682 *
2683 * Just use the vlan_rx_register() service to put it back to normal
2684 **/
2685void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2686{
6c12fcbf
GR
2687 i40e_vlan_stripping_disable(vsi);
2688
41c445ff 2689 vsi->info.pvid = 0;
41c445ff
JB
2690}
2691
2692/**
2693 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2694 * @vsi: ptr to the VSI
2695 *
2696 * If this function returns with an error, then it's possible one or
2697 * more of the rings is populated (while the rest are not). It is the
2698 * callers duty to clean those orphaned rings.
2699 *
2700 * Return 0 on success, negative on failure
2701 **/
2702static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2703{
2704 int i, err = 0;
2705
2706 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
9f65e15b 2707 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
41c445ff
JB
2708
2709 return err;
2710}
2711
2712/**
2713 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2714 * @vsi: ptr to the VSI
2715 *
2716 * Free VSI's transmit software resources
2717 **/
2718static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2719{
2720 int i;
2721
8e9dca53
GR
2722 if (!vsi->tx_rings)
2723 return;
2724
41c445ff 2725 for (i = 0; i < vsi->num_queue_pairs; i++)
8e9dca53 2726 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
9f65e15b 2727 i40e_free_tx_resources(vsi->tx_rings[i]);
41c445ff
JB
2728}
2729
2730/**
2731 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2732 * @vsi: ptr to the VSI
2733 *
2734 * If this function returns with an error, then it's possible one or
2735 * more of the rings is populated (while the rest are not). It is the
2736 * callers duty to clean those orphaned rings.
2737 *
2738 * Return 0 on success, negative on failure
2739 **/
2740static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2741{
2742 int i, err = 0;
2743
2744 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
9f65e15b 2745 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
38e00438
VD
2746#ifdef I40E_FCOE
2747 i40e_fcoe_setup_ddp_resources(vsi);
2748#endif
41c445ff
JB
2749 return err;
2750}
2751
2752/**
2753 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2754 * @vsi: ptr to the VSI
2755 *
2756 * Free all receive software resources
2757 **/
2758static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2759{
2760 int i;
2761
8e9dca53
GR
2762 if (!vsi->rx_rings)
2763 return;
2764
41c445ff 2765 for (i = 0; i < vsi->num_queue_pairs; i++)
8e9dca53 2766 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
9f65e15b 2767 i40e_free_rx_resources(vsi->rx_rings[i]);
38e00438
VD
2768#ifdef I40E_FCOE
2769 i40e_fcoe_free_ddp_resources(vsi);
2770#endif
41c445ff
JB
2771}
2772
3ffa037d
NP
2773/**
2774 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2775 * @ring: The Tx ring to configure
2776 *
2777 * This enables/disables XPS for a given Tx descriptor ring
2778 * based on the TCs enabled for the VSI that ring belongs to.
2779 **/
2780static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2781{
2782 struct i40e_vsi *vsi = ring->vsi;
2783 cpumask_var_t mask;
2784
9a660eea
JB
2785 if (!ring->q_vector || !ring->netdev)
2786 return;
2787
2788 /* Single TC mode enable XPS */
2789 if (vsi->tc_config.numtc <= 1) {
2790 if (!test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
3ffa037d
NP
2791 netif_set_xps_queue(ring->netdev,
2792 &ring->q_vector->affinity_mask,
2793 ring->queue_index);
9a660eea
JB
2794 } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) {
2795 /* Disable XPS to allow selection based on TC */
2796 bitmap_zero(cpumask_bits(mask), nr_cpumask_bits);
2797 netif_set_xps_queue(ring->netdev, mask, ring->queue_index);
2798 free_cpumask_var(mask);
3ffa037d 2799 }
0e4425ed
JB
2800
2801 /* schedule our worker thread which will take care of
2802 * applying the new filter changes
2803 */
2804 i40e_service_event_schedule(vsi->back);
3ffa037d
NP
2805}
2806
41c445ff
JB
2807/**
2808 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2809 * @ring: The Tx ring to configure
2810 *
2811 * Configure the Tx descriptor ring in the HMC context.
2812 **/
2813static int i40e_configure_tx_ring(struct i40e_ring *ring)
2814{
2815 struct i40e_vsi *vsi = ring->vsi;
2816 u16 pf_q = vsi->base_queue + ring->queue_index;
2817 struct i40e_hw *hw = &vsi->back->hw;
2818 struct i40e_hmc_obj_txq tx_ctx;
2819 i40e_status err = 0;
2820 u32 qtx_ctl = 0;
2821
2822 /* some ATR related tx ring init */
60ea5f83 2823 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
41c445ff
JB
2824 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2825 ring->atr_count = 0;
2826 } else {
2827 ring->atr_sample_rate = 0;
2828 }
2829
3ffa037d
NP
2830 /* configure XPS */
2831 i40e_config_xps_tx_ring(ring);
41c445ff
JB
2832
2833 /* clear the context structure first */
2834 memset(&tx_ctx, 0, sizeof(tx_ctx));
2835
2836 tx_ctx.new_context = 1;
2837 tx_ctx.base = (ring->dma / 128);
2838 tx_ctx.qlen = ring->count;
60ea5f83
JB
2839 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2840 I40E_FLAG_FD_ATR_ENABLED));
38e00438
VD
2841#ifdef I40E_FCOE
2842 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2843#endif
beb0dff1 2844 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
1943d8ba
JB
2845 /* FDIR VSI tx ring can still use RS bit and writebacks */
2846 if (vsi->type != I40E_VSI_FDIR)
2847 tx_ctx.head_wb_ena = 1;
2848 tx_ctx.head_wb_addr = ring->dma +
2849 (ring->count * sizeof(struct i40e_tx_desc));
41c445ff
JB
2850
2851 /* As part of VSI creation/update, FW allocates certain
2852 * Tx arbitration queue sets for each TC enabled for
2853 * the VSI. The FW returns the handles to these queue
2854 * sets as part of the response buffer to Add VSI,
2855 * Update VSI, etc. AQ commands. It is expected that
2856 * these queue set handles be associated with the Tx
2857 * queues by the driver as part of the TX queue context
2858 * initialization. This has to be done regardless of
2859 * DCB as by default everything is mapped to TC0.
2860 */
2861 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2862 tx_ctx.rdylist_act = 0;
2863
2864 /* clear the context in the HMC */
2865 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2866 if (err) {
2867 dev_info(&vsi->back->pdev->dev,
2868 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2869 ring->queue_index, pf_q, err);
2870 return -ENOMEM;
2871 }
2872
2873 /* set the context in the HMC */
2874 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2875 if (err) {
2876 dev_info(&vsi->back->pdev->dev,
2877 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2878 ring->queue_index, pf_q, err);
2879 return -ENOMEM;
2880 }
2881
2882 /* Now associate this queue with this PCI function */
7a28d885 2883 if (vsi->type == I40E_VSI_VMDQ2) {
9d8bf547 2884 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
7a28d885
MW
2885 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2886 I40E_QTX_CTL_VFVM_INDX_MASK;
2887 } else {
9d8bf547 2888 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
7a28d885
MW
2889 }
2890
13fd9774
SN
2891 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2892 I40E_QTX_CTL_PF_INDX_MASK);
41c445ff
JB
2893 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2894 i40e_flush(hw);
2895
41c445ff
JB
2896 /* cache tail off for easier writes later */
2897 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2898
2899 return 0;
2900}
2901
2902/**
2903 * i40e_configure_rx_ring - Configure a receive ring context
2904 * @ring: The Rx ring to configure
2905 *
2906 * Configure the Rx descriptor ring in the HMC context.
2907 **/
2908static int i40e_configure_rx_ring(struct i40e_ring *ring)
2909{
2910 struct i40e_vsi *vsi = ring->vsi;
2911 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2912 u16 pf_q = vsi->base_queue + ring->queue_index;
2913 struct i40e_hw *hw = &vsi->back->hw;
2914 struct i40e_hmc_obj_rxq rx_ctx;
2915 i40e_status err = 0;
2916
2917 ring->state = 0;
2918
2919 /* clear the context structure first */
2920 memset(&rx_ctx, 0, sizeof(rx_ctx));
2921
2922 ring->rx_buf_len = vsi->rx_buf_len;
41c445ff
JB
2923
2924 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
41c445ff
JB
2925
2926 rx_ctx.base = (ring->dma / 128);
2927 rx_ctx.qlen = ring->count;
2928
bec60fc4
JB
2929 /* use 32 byte descriptors */
2930 rx_ctx.dsize = 1;
41c445ff 2931
bec60fc4
JB
2932 /* descriptor type is always zero
2933 * rx_ctx.dtype = 0;
2934 */
b32bfa17 2935 rx_ctx.hsplit_0 = 0;
41c445ff 2936
b32bfa17 2937 rx_ctx.rxmax = min_t(u16, vsi->max_frame, chain_len * ring->rx_buf_len);
7134f9ce
JB
2938 if (hw->revision_id == 0)
2939 rx_ctx.lrxqthresh = 0;
2940 else
2941 rx_ctx.lrxqthresh = 2;
41c445ff
JB
2942 rx_ctx.crcstrip = 1;
2943 rx_ctx.l2tsel = 1;
c4bbac39
JB
2944 /* this controls whether VLAN is stripped from inner headers */
2945 rx_ctx.showiv = 0;
38e00438
VD
2946#ifdef I40E_FCOE
2947 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2948#endif
acb3676b
CS
2949 /* set the prefena field to 1 because the manual says to */
2950 rx_ctx.prefena = 1;
41c445ff
JB
2951
2952 /* clear the context in the HMC */
2953 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2954 if (err) {
2955 dev_info(&vsi->back->pdev->dev,
2956 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2957 ring->queue_index, pf_q, err);
2958 return -ENOMEM;
2959 }
2960
2961 /* set the context in the HMC */
2962 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2963 if (err) {
2964 dev_info(&vsi->back->pdev->dev,
2965 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2966 ring->queue_index, pf_q, err);
2967 return -ENOMEM;
2968 }
2969
2970 /* cache tail for quicker writes, and clear the reg before use */
2971 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2972 writel(0, ring->tail);
2973
1a557afc 2974 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
41c445ff
JB
2975
2976 return 0;
2977}
2978
2979/**
2980 * i40e_vsi_configure_tx - Configure the VSI for Tx
2981 * @vsi: VSI structure describing this set of rings and resources
2982 *
2983 * Configure the Tx VSI for operation.
2984 **/
2985static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2986{
2987 int err = 0;
2988 u16 i;
2989
9f65e15b
AD
2990 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2991 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
41c445ff
JB
2992
2993 return err;
2994}
2995
2996/**
2997 * i40e_vsi_configure_rx - Configure the VSI for Rx
2998 * @vsi: the VSI being configured
2999 *
3000 * Configure the Rx VSI for operation.
3001 **/
3002static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
3003{
3004 int err = 0;
3005 u16 i;
3006
3007 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
3008 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
3009 + ETH_FCS_LEN + VLAN_HLEN;
3010 else
3011 vsi->max_frame = I40E_RXBUFFER_2048;
3012
1a557afc 3013 vsi->rx_buf_len = I40E_RXBUFFER_2048;
41c445ff 3014
38e00438
VD
3015#ifdef I40E_FCOE
3016 /* setup rx buffer for FCoE */
3017 if ((vsi->type == I40E_VSI_FCOE) &&
3018 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
38e00438
VD
3019 vsi->rx_buf_len = I40E_RXBUFFER_3072;
3020 vsi->max_frame = I40E_RXBUFFER_3072;
38e00438
VD
3021 }
3022
3023#endif /* I40E_FCOE */
41c445ff 3024 /* round up for the chip's needs */
41c445ff 3025 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
41a1d04b 3026 BIT_ULL(I40E_RXQ_CTX_DBUFF_SHIFT));
41c445ff
JB
3027
3028 /* set up individual rings */
3029 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
9f65e15b 3030 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
41c445ff
JB
3031
3032 return err;
3033}
3034
3035/**
3036 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
3037 * @vsi: ptr to the VSI
3038 **/
3039static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
3040{
e7046ee1 3041 struct i40e_ring *tx_ring, *rx_ring;
41c445ff
JB
3042 u16 qoffset, qcount;
3043 int i, n;
3044
cd238a3e
PN
3045 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
3046 /* Reset the TC information */
3047 for (i = 0; i < vsi->num_queue_pairs; i++) {
3048 rx_ring = vsi->rx_rings[i];
3049 tx_ring = vsi->tx_rings[i];
3050 rx_ring->dcb_tc = 0;
3051 tx_ring->dcb_tc = 0;
3052 }
3053 }
41c445ff
JB
3054
3055 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
41a1d04b 3056 if (!(vsi->tc_config.enabled_tc & BIT_ULL(n)))
41c445ff
JB
3057 continue;
3058
3059 qoffset = vsi->tc_config.tc_info[n].qoffset;
3060 qcount = vsi->tc_config.tc_info[n].qcount;
3061 for (i = qoffset; i < (qoffset + qcount); i++) {
e7046ee1
AA
3062 rx_ring = vsi->rx_rings[i];
3063 tx_ring = vsi->tx_rings[i];
41c445ff
JB
3064 rx_ring->dcb_tc = n;
3065 tx_ring->dcb_tc = n;
3066 }
3067 }
3068}
3069
3070/**
3071 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
3072 * @vsi: ptr to the VSI
3073 **/
3074static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
3075{
b1b15df5
TD
3076 struct i40e_pf *pf = vsi->back;
3077 int err;
3078
41c445ff
JB
3079 if (vsi->netdev)
3080 i40e_set_rx_mode(vsi->netdev);
b1b15df5
TD
3081
3082 if (!!(pf->flags & I40E_FLAG_PF_MAC)) {
3083 err = i40e_macaddr_init(vsi, pf->hw.mac.addr);
3084 if (err) {
3085 dev_warn(&pf->pdev->dev,
3086 "could not set up macaddr; err %d\n", err);
3087 }
3088 }
41c445ff
JB
3089}
3090
17a73f6b
JG
3091/**
3092 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
3093 * @vsi: Pointer to the targeted VSI
3094 *
3095 * This function replays the hlist on the hw where all the SB Flow Director
3096 * filters were saved.
3097 **/
3098static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
3099{
3100 struct i40e_fdir_filter *filter;
3101 struct i40e_pf *pf = vsi->back;
3102 struct hlist_node *node;
3103
55a5e60b
ASJ
3104 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
3105 return;
3106
17a73f6b
JG
3107 hlist_for_each_entry_safe(filter, node,
3108 &pf->fdir_filter_list, fdir_node) {
3109 i40e_add_del_fdir(vsi, filter, true);
3110 }
3111}
3112
41c445ff
JB
3113/**
3114 * i40e_vsi_configure - Set up the VSI for action
3115 * @vsi: the VSI being configured
3116 **/
3117static int i40e_vsi_configure(struct i40e_vsi *vsi)
3118{
3119 int err;
3120
3121 i40e_set_vsi_rx_mode(vsi);
3122 i40e_restore_vlan(vsi);
3123 i40e_vsi_config_dcb_rings(vsi);
3124 err = i40e_vsi_configure_tx(vsi);
3125 if (!err)
3126 err = i40e_vsi_configure_rx(vsi);
3127
3128 return err;
3129}
3130
3131/**
3132 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
3133 * @vsi: the VSI being configured
3134 **/
3135static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
3136{
3137 struct i40e_pf *pf = vsi->back;
41c445ff
JB
3138 struct i40e_hw *hw = &pf->hw;
3139 u16 vector;
3140 int i, q;
41c445ff
JB
3141 u32 qp;
3142
3143 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
3144 * and PFINT_LNKLSTn registers, e.g.:
3145 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
3146 */
3147 qp = vsi->base_queue;
3148 vector = vsi->base_vector;
493fb300 3149 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
ac26fc13
JB
3150 struct i40e_q_vector *q_vector = vsi->q_vectors[i];
3151
ee2319cf 3152 q_vector->itr_countdown = ITR_COUNTDOWN_START;
a75e8005 3153 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[i]->rx_itr_setting);
41c445ff
JB
3154 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3155 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
3156 q_vector->rx.itr);
a75e8005 3157 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[i]->tx_itr_setting);
41c445ff
JB
3158 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3159 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
3160 q_vector->tx.itr);
ac26fc13
JB
3161 wr32(hw, I40E_PFINT_RATEN(vector - 1),
3162 INTRL_USEC_TO_REG(vsi->int_rate_limit));
41c445ff
JB
3163
3164 /* Linked list for the queuepairs assigned to this vector */
3165 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
3166 for (q = 0; q < q_vector->num_ringpairs; q++) {
ac26fc13
JB
3167 u32 val;
3168
41c445ff
JB
3169 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3170 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3171 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
3172 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
3173 (I40E_QUEUE_TYPE_TX
3174 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
3175
3176 wr32(hw, I40E_QINT_RQCTL(qp), val);
3177
3178 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3179 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3180 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3181 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
3182 (I40E_QUEUE_TYPE_RX
3183 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3184
3185 /* Terminate the linked list */
3186 if (q == (q_vector->num_ringpairs - 1))
3187 val |= (I40E_QUEUE_END_OF_LIST
3188 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3189
3190 wr32(hw, I40E_QINT_TQCTL(qp), val);
3191 qp++;
3192 }
3193 }
3194
3195 i40e_flush(hw);
3196}
3197
3198/**
3199 * i40e_enable_misc_int_causes - enable the non-queue interrupts
3200 * @hw: ptr to the hardware info
3201 **/
ab437b5a 3202static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
41c445ff 3203{
ab437b5a 3204 struct i40e_hw *hw = &pf->hw;
41c445ff
JB
3205 u32 val;
3206
3207 /* clear things first */
3208 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
3209 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
3210
3211 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
3212 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
3213 I40E_PFINT_ICR0_ENA_GRST_MASK |
3214 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
3215 I40E_PFINT_ICR0_ENA_GPIO_MASK |
41c445ff
JB
3216 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
3217 I40E_PFINT_ICR0_ENA_VFLR_MASK |
3218 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3219
0d8e1439
ASJ
3220 if (pf->flags & I40E_FLAG_IWARP_ENABLED)
3221 val |= I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3222
ab437b5a
JK
3223 if (pf->flags & I40E_FLAG_PTP)
3224 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
3225
41c445ff
JB
3226 wr32(hw, I40E_PFINT_ICR0_ENA, val);
3227
3228 /* SW_ITR_IDX = 0, but don't change INTENA */
84ed40e7
ASJ
3229 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
3230 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
41c445ff
JB
3231
3232 /* OTHER_ITR_IDX = 0 */
3233 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
3234}
3235
3236/**
3237 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
3238 * @vsi: the VSI being configured
3239 **/
3240static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
3241{
493fb300 3242 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
41c445ff
JB
3243 struct i40e_pf *pf = vsi->back;
3244 struct i40e_hw *hw = &pf->hw;
3245 u32 val;
3246
3247 /* set the ITR configuration */
ee2319cf 3248 q_vector->itr_countdown = ITR_COUNTDOWN_START;
a75e8005 3249 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[0]->rx_itr_setting);
41c445ff
JB
3250 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3251 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
a75e8005 3252 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[0]->tx_itr_setting);
41c445ff
JB
3253 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3254 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
3255
ab437b5a 3256 i40e_enable_misc_int_causes(pf);
41c445ff
JB
3257
3258 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
3259 wr32(hw, I40E_PFINT_LNKLST0, 0);
3260
f29eaa3d 3261 /* Associate the queue pair to the vector and enable the queue int */
41c445ff
JB
3262 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3263 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3264 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3265
3266 wr32(hw, I40E_QINT_RQCTL(0), val);
3267
3268 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3269 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3270 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3271
3272 wr32(hw, I40E_QINT_TQCTL(0), val);
3273 i40e_flush(hw);
3274}
3275
2ef28cfb
MW
3276/**
3277 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
3278 * @pf: board private structure
3279 **/
3280void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
3281{
3282 struct i40e_hw *hw = &pf->hw;
3283
3284 wr32(hw, I40E_PFINT_DYN_CTL0,
3285 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
3286 i40e_flush(hw);
3287}
3288
41c445ff
JB
3289/**
3290 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
3291 * @pf: board private structure
40d72a50 3292 * @clearpba: true when all pending interrupt events should be cleared
41c445ff 3293 **/
40d72a50 3294void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf, bool clearpba)
41c445ff
JB
3295{
3296 struct i40e_hw *hw = &pf->hw;
3297 u32 val;
3298
3299 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
40d72a50 3300 (clearpba ? I40E_PFINT_DYN_CTL0_CLEARPBA_MASK : 0) |
41c445ff
JB
3301 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
3302
3303 wr32(hw, I40E_PFINT_DYN_CTL0, val);
3304 i40e_flush(hw);
3305}
3306
41c445ff
JB
3307/**
3308 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
3309 * @irq: interrupt number
3310 * @data: pointer to a q_vector
3311 **/
3312static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
3313{
3314 struct i40e_q_vector *q_vector = data;
3315
cd0b6fa6 3316 if (!q_vector->tx.ring && !q_vector->rx.ring)
41c445ff
JB
3317 return IRQ_HANDLED;
3318
5d3465a1 3319 napi_schedule_irqoff(&q_vector->napi);
41c445ff
JB
3320
3321 return IRQ_HANDLED;
3322}
3323
41c445ff
JB
3324/**
3325 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
3326 * @vsi: the VSI being configured
3327 * @basename: name for the vector
3328 *
3329 * Allocates MSI-X vectors and requests interrupts from the kernel.
3330 **/
3331static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
3332{
3333 int q_vectors = vsi->num_q_vectors;
3334 struct i40e_pf *pf = vsi->back;
3335 int base = vsi->base_vector;
3336 int rx_int_idx = 0;
3337 int tx_int_idx = 0;
3338 int vector, err;
3339
3340 for (vector = 0; vector < q_vectors; vector++) {
493fb300 3341 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
41c445ff 3342
cd0b6fa6 3343 if (q_vector->tx.ring && q_vector->rx.ring) {
41c445ff
JB
3344 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3345 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3346 tx_int_idx++;
cd0b6fa6 3347 } else if (q_vector->rx.ring) {
41c445ff
JB
3348 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3349 "%s-%s-%d", basename, "rx", rx_int_idx++);
cd0b6fa6 3350 } else if (q_vector->tx.ring) {
41c445ff
JB
3351 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3352 "%s-%s-%d", basename, "tx", tx_int_idx++);
3353 } else {
3354 /* skip this unused q_vector */
3355 continue;
3356 }
3357 err = request_irq(pf->msix_entries[base + vector].vector,
3358 vsi->irq_handler,
3359 0,
3360 q_vector->name,
3361 q_vector);
3362 if (err) {
3363 dev_info(&pf->pdev->dev,
fb43201f 3364 "MSIX request_irq failed, error: %d\n", err);
41c445ff
JB
3365 goto free_queue_irqs;
3366 }
3367 /* assign the mask for this irq */
3368 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3369 &q_vector->affinity_mask);
3370 }
3371
63741846 3372 vsi->irqs_ready = true;
41c445ff
JB
3373 return 0;
3374
3375free_queue_irqs:
3376 while (vector) {
3377 vector--;
3378 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3379 NULL);
3380 free_irq(pf->msix_entries[base + vector].vector,
3381 &(vsi->q_vectors[vector]));
3382 }
3383 return err;
3384}
3385
3386/**
3387 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3388 * @vsi: the VSI being un-configured
3389 **/
3390static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3391{
3392 struct i40e_pf *pf = vsi->back;
3393 struct i40e_hw *hw = &pf->hw;
3394 int base = vsi->base_vector;
3395 int i;
3396
3397 for (i = 0; i < vsi->num_queue_pairs; i++) {
9f65e15b
AD
3398 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3399 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
41c445ff
JB
3400 }
3401
3402 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3403 for (i = vsi->base_vector;
3404 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3405 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3406
3407 i40e_flush(hw);
3408 for (i = 0; i < vsi->num_q_vectors; i++)
3409 synchronize_irq(pf->msix_entries[i + base].vector);
3410 } else {
3411 /* Legacy and MSI mode - this stops all interrupt handling */
3412 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3413 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3414 i40e_flush(hw);
3415 synchronize_irq(pf->pdev->irq);
3416 }
3417}
3418
3419/**
3420 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3421 * @vsi: the VSI being configured
3422 **/
3423static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3424{
3425 struct i40e_pf *pf = vsi->back;
3426 int i;
3427
3428 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
7845548d 3429 for (i = 0; i < vsi->num_q_vectors; i++)
41c445ff
JB
3430 i40e_irq_dynamic_enable(vsi, i);
3431 } else {
40d72a50 3432 i40e_irq_dynamic_enable_icr0(pf, true);
41c445ff
JB
3433 }
3434
1022cb6c 3435 i40e_flush(&pf->hw);
41c445ff
JB
3436 return 0;
3437}
3438
3439/**
3440 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3441 * @pf: board private structure
3442 **/
3443static void i40e_stop_misc_vector(struct i40e_pf *pf)
3444{
3445 /* Disable ICR 0 */
3446 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3447 i40e_flush(&pf->hw);
3448}
3449
3450/**
3451 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3452 * @irq: interrupt number
3453 * @data: pointer to a q_vector
3454 *
3455 * This is the handler used for all MSI/Legacy interrupts, and deals
3456 * with both queue and non-queue interrupts. This is also used in
3457 * MSIX mode to handle the non-queue interrupts.
3458 **/
3459static irqreturn_t i40e_intr(int irq, void *data)
3460{
3461 struct i40e_pf *pf = (struct i40e_pf *)data;
3462 struct i40e_hw *hw = &pf->hw;
5e823066 3463 irqreturn_t ret = IRQ_NONE;
41c445ff
JB
3464 u32 icr0, icr0_remaining;
3465 u32 val, ena_mask;
3466
3467 icr0 = rd32(hw, I40E_PFINT_ICR0);
5e823066 3468 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
41c445ff 3469
116a57d4
SN
3470 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3471 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
5e823066 3472 goto enable_intr;
41c445ff 3473
cd92e72f
SN
3474 /* if interrupt but no bits showing, must be SWINT */
3475 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3476 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3477 pf->sw_int_count++;
3478
0d8e1439
ASJ
3479 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
3480 (ena_mask & I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK)) {
3481 ena_mask &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3482 icr0 &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3483 dev_info(&pf->pdev->dev, "cleared PE_CRITERR\n");
3484 }
3485
41c445ff
JB
3486 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3487 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
5d3465a1
AD
3488 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
3489 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
41c445ff 3490
a16ae2d5
ASJ
3491 /* We do not have a way to disarm Queue causes while leaving
3492 * interrupt enabled for all other causes, ideally
3493 * interrupt should be disabled while we are in NAPI but
3494 * this is not a performance path and napi_schedule()
3495 * can deal with rescheduling.
3496 */
41c445ff 3497 if (!test_bit(__I40E_DOWN, &pf->state))
5d3465a1 3498 napi_schedule_irqoff(&q_vector->napi);
41c445ff
JB
3499 }
3500
3501 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3502 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3503 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
6e93d0c9 3504 i40e_debug(&pf->hw, I40E_DEBUG_NVM, "AdminQ event\n");
41c445ff
JB
3505 }
3506
3507 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3508 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3509 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3510 }
3511
3512 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3513 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3514 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3515 }
3516
3517 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3518 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3519 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3520 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3521 val = rd32(hw, I40E_GLGEN_RSTAT);
3522 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3523 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
4eb3f768 3524 if (val == I40E_RESET_CORER) {
41c445ff 3525 pf->corer_count++;
4eb3f768 3526 } else if (val == I40E_RESET_GLOBR) {
41c445ff 3527 pf->globr_count++;
4eb3f768 3528 } else if (val == I40E_RESET_EMPR) {
41c445ff 3529 pf->empr_count++;
9df42d1a 3530 set_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state);
4eb3f768 3531 }
41c445ff
JB
3532 }
3533
9c010ee0
ASJ
3534 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3535 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3536 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
25fc0e65
ASJ
3537 dev_info(&pf->pdev->dev, "HMC error info 0x%x, HMC error data 0x%x\n",
3538 rd32(hw, I40E_PFHMC_ERRORINFO),
3539 rd32(hw, I40E_PFHMC_ERRORDATA));
9c010ee0
ASJ
3540 }
3541
beb0dff1
JK
3542 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3543 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3544
3545 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
cafa1fca 3546 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
beb0dff1 3547 i40e_ptp_tx_hwtstamp(pf);
beb0dff1 3548 }
beb0dff1
JK
3549 }
3550
41c445ff
JB
3551 /* If a critical error is pending we have no choice but to reset the
3552 * device.
3553 * Report and mask out any remaining unexpected interrupts.
3554 */
3555 icr0_remaining = icr0 & ena_mask;
3556 if (icr0_remaining) {
3557 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3558 icr0_remaining);
9c010ee0 3559 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
41c445ff 3560 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
c0c28975 3561 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
9c010ee0
ASJ
3562 dev_info(&pf->pdev->dev, "device will be reset\n");
3563 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3564 i40e_service_event_schedule(pf);
41c445ff
JB
3565 }
3566 ena_mask &= ~icr0_remaining;
3567 }
5e823066 3568 ret = IRQ_HANDLED;
41c445ff 3569
5e823066 3570enable_intr:
41c445ff
JB
3571 /* re-enable interrupt causes */
3572 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
41c445ff
JB
3573 if (!test_bit(__I40E_DOWN, &pf->state)) {
3574 i40e_service_event_schedule(pf);
40d72a50 3575 i40e_irq_dynamic_enable_icr0(pf, false);
41c445ff
JB
3576 }
3577
5e823066 3578 return ret;
41c445ff
JB
3579}
3580
cbf61325
ASJ
3581/**
3582 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3583 * @tx_ring: tx ring to clean
3584 * @budget: how many cleans we're allowed
3585 *
3586 * Returns true if there's any budget left (e.g. the clean is finished)
3587 **/
3588static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3589{
3590 struct i40e_vsi *vsi = tx_ring->vsi;
3591 u16 i = tx_ring->next_to_clean;
3592 struct i40e_tx_buffer *tx_buf;
3593 struct i40e_tx_desc *tx_desc;
3594
3595 tx_buf = &tx_ring->tx_bi[i];
3596 tx_desc = I40E_TX_DESC(tx_ring, i);
3597 i -= tx_ring->count;
3598
3599 do {
3600 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3601
3602 /* if next_to_watch is not set then there is no work pending */
3603 if (!eop_desc)
3604 break;
3605
3606 /* prevent any other reads prior to eop_desc */
3607 read_barrier_depends();
3608
3609 /* if the descriptor isn't done, no work yet to do */
3610 if (!(eop_desc->cmd_type_offset_bsz &
3611 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3612 break;
3613
3614 /* clear next_to_watch to prevent false hangs */
3615 tx_buf->next_to_watch = NULL;
3616
49d7d933
ASJ
3617 tx_desc->buffer_addr = 0;
3618 tx_desc->cmd_type_offset_bsz = 0;
3619 /* move past filter desc */
3620 tx_buf++;
3621 tx_desc++;
3622 i++;
3623 if (unlikely(!i)) {
3624 i -= tx_ring->count;
3625 tx_buf = tx_ring->tx_bi;
3626 tx_desc = I40E_TX_DESC(tx_ring, 0);
3627 }
cbf61325
ASJ
3628 /* unmap skb header data */
3629 dma_unmap_single(tx_ring->dev,
3630 dma_unmap_addr(tx_buf, dma),
3631 dma_unmap_len(tx_buf, len),
3632 DMA_TO_DEVICE);
49d7d933
ASJ
3633 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3634 kfree(tx_buf->raw_buf);
cbf61325 3635
49d7d933
ASJ
3636 tx_buf->raw_buf = NULL;
3637 tx_buf->tx_flags = 0;
3638 tx_buf->next_to_watch = NULL;
cbf61325 3639 dma_unmap_len_set(tx_buf, len, 0);
49d7d933
ASJ
3640 tx_desc->buffer_addr = 0;
3641 tx_desc->cmd_type_offset_bsz = 0;
cbf61325 3642
49d7d933 3643 /* move us past the eop_desc for start of next FD desc */
cbf61325
ASJ
3644 tx_buf++;
3645 tx_desc++;
3646 i++;
3647 if (unlikely(!i)) {
3648 i -= tx_ring->count;
3649 tx_buf = tx_ring->tx_bi;
3650 tx_desc = I40E_TX_DESC(tx_ring, 0);
3651 }
3652
3653 /* update budget accounting */
3654 budget--;
3655 } while (likely(budget));
3656
3657 i += tx_ring->count;
3658 tx_ring->next_to_clean = i;
3659
6995b36c 3660 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED)
7845548d 3661 i40e_irq_dynamic_enable(vsi, tx_ring->q_vector->v_idx);
6995b36c 3662
cbf61325
ASJ
3663 return budget > 0;
3664}
3665
3666/**
3667 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3668 * @irq: interrupt number
3669 * @data: pointer to a q_vector
3670 **/
3671static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3672{
3673 struct i40e_q_vector *q_vector = data;
3674 struct i40e_vsi *vsi;
3675
3676 if (!q_vector->tx.ring)
3677 return IRQ_HANDLED;
3678
3679 vsi = q_vector->tx.ring->vsi;
3680 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3681
3682 return IRQ_HANDLED;
3683}
3684
41c445ff 3685/**
cd0b6fa6 3686 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
41c445ff
JB
3687 * @vsi: the VSI being configured
3688 * @v_idx: vector index
cd0b6fa6 3689 * @qp_idx: queue pair index
41c445ff 3690 **/
26cdc443 3691static void i40e_map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
41c445ff 3692{
493fb300 3693 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
9f65e15b
AD
3694 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3695 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
41c445ff
JB
3696
3697 tx_ring->q_vector = q_vector;
cd0b6fa6
AD
3698 tx_ring->next = q_vector->tx.ring;
3699 q_vector->tx.ring = tx_ring;
41c445ff 3700 q_vector->tx.count++;
cd0b6fa6
AD
3701
3702 rx_ring->q_vector = q_vector;
3703 rx_ring->next = q_vector->rx.ring;
3704 q_vector->rx.ring = rx_ring;
3705 q_vector->rx.count++;
41c445ff
JB
3706}
3707
3708/**
3709 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3710 * @vsi: the VSI being configured
3711 *
3712 * This function maps descriptor rings to the queue-specific vectors
3713 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3714 * one vector per queue pair, but on a constrained vector budget, we
3715 * group the queue pairs as "efficiently" as possible.
3716 **/
3717static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3718{
3719 int qp_remaining = vsi->num_queue_pairs;
3720 int q_vectors = vsi->num_q_vectors;
cd0b6fa6 3721 int num_ringpairs;
41c445ff
JB
3722 int v_start = 0;
3723 int qp_idx = 0;
3724
3725 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3726 * group them so there are multiple queues per vector.
70114ec4
ASJ
3727 * It is also important to go through all the vectors available to be
3728 * sure that if we don't use all the vectors, that the remaining vectors
3729 * are cleared. This is especially important when decreasing the
3730 * number of queues in use.
41c445ff 3731 */
70114ec4 3732 for (; v_start < q_vectors; v_start++) {
cd0b6fa6
AD
3733 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3734
3735 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3736
3737 q_vector->num_ringpairs = num_ringpairs;
3738
3739 q_vector->rx.count = 0;
3740 q_vector->tx.count = 0;
3741 q_vector->rx.ring = NULL;
3742 q_vector->tx.ring = NULL;
3743
3744 while (num_ringpairs--) {
26cdc443 3745 i40e_map_vector_to_qp(vsi, v_start, qp_idx);
cd0b6fa6
AD
3746 qp_idx++;
3747 qp_remaining--;
41c445ff
JB
3748 }
3749 }
3750}
3751
3752/**
3753 * i40e_vsi_request_irq - Request IRQ from the OS
3754 * @vsi: the VSI being configured
3755 * @basename: name for the vector
3756 **/
3757static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3758{
3759 struct i40e_pf *pf = vsi->back;
3760 int err;
3761
3762 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3763 err = i40e_vsi_request_irq_msix(vsi, basename);
3764 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3765 err = request_irq(pf->pdev->irq, i40e_intr, 0,
b294ac70 3766 pf->int_name, pf);
41c445ff
JB
3767 else
3768 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
b294ac70 3769 pf->int_name, pf);
41c445ff
JB
3770
3771 if (err)
3772 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3773
3774 return err;
3775}
3776
3777#ifdef CONFIG_NET_POLL_CONTROLLER
3778/**
d89d967f 3779 * i40e_netpoll - A Polling 'interrupt' handler
41c445ff
JB
3780 * @netdev: network interface device structure
3781 *
3782 * This is used by netconsole to send skbs without having to re-enable
3783 * interrupts. It's not called while the normal interrupt routine is executing.
3784 **/
38e00438
VD
3785#ifdef I40E_FCOE
3786void i40e_netpoll(struct net_device *netdev)
3787#else
41c445ff 3788static void i40e_netpoll(struct net_device *netdev)
38e00438 3789#endif
41c445ff
JB
3790{
3791 struct i40e_netdev_priv *np = netdev_priv(netdev);
3792 struct i40e_vsi *vsi = np->vsi;
3793 struct i40e_pf *pf = vsi->back;
3794 int i;
3795
3796 /* if interface is down do nothing */
3797 if (test_bit(__I40E_DOWN, &vsi->state))
3798 return;
3799
41c445ff
JB
3800 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3801 for (i = 0; i < vsi->num_q_vectors; i++)
493fb300 3802 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
41c445ff
JB
3803 } else {
3804 i40e_intr(pf->pdev->irq, netdev);
3805 }
41c445ff
JB
3806}
3807#endif
3808
23527308
NP
3809/**
3810 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3811 * @pf: the PF being configured
3812 * @pf_q: the PF queue
3813 * @enable: enable or disable state of the queue
3814 *
3815 * This routine will wait for the given Tx queue of the PF to reach the
3816 * enabled or disabled state.
3817 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3818 * multiple retries; else will return 0 in case of success.
3819 **/
3820static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3821{
3822 int i;
3823 u32 tx_reg;
3824
3825 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3826 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3827 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3828 break;
3829
f98a2006 3830 usleep_range(10, 20);
23527308
NP
3831 }
3832 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3833 return -ETIMEDOUT;
3834
3835 return 0;
3836}
3837
41c445ff
JB
3838/**
3839 * i40e_vsi_control_tx - Start or stop a VSI's rings
3840 * @vsi: the VSI being configured
3841 * @enable: start or stop the rings
3842 **/
3843static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3844{
3845 struct i40e_pf *pf = vsi->back;
3846 struct i40e_hw *hw = &pf->hw;
23527308 3847 int i, j, pf_q, ret = 0;
41c445ff
JB
3848 u32 tx_reg;
3849
3850 pf_q = vsi->base_queue;
3851 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
351499ab
MJ
3852
3853 /* warn the TX unit of coming changes */
3854 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3855 if (!enable)
f98a2006 3856 usleep_range(10, 20);
351499ab 3857
6c5ef620 3858 for (j = 0; j < 50; j++) {
41c445ff 3859 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
6c5ef620
MW
3860 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3861 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3862 break;
3863 usleep_range(1000, 2000);
3864 }
fda972f6 3865 /* Skip if the queue is already in the requested state */
7c122007 3866 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
fda972f6 3867 continue;
41c445ff
JB
3868
3869 /* turn on/off the queue */
c5c9eb9e
SN
3870 if (enable) {
3871 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
6c5ef620 3872 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
c5c9eb9e 3873 } else {
41c445ff 3874 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
c5c9eb9e 3875 }
41c445ff
JB
3876
3877 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
69129dc3
NP
3878 /* No waiting for the Tx queue to disable */
3879 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3880 continue;
41c445ff
JB
3881
3882 /* wait for the change to finish */
23527308
NP
3883 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3884 if (ret) {
3885 dev_info(&pf->pdev->dev,
fb43201f
SN
3886 "VSI seid %d Tx ring %d %sable timeout\n",
3887 vsi->seid, pf_q, (enable ? "en" : "dis"));
23527308 3888 break;
41c445ff
JB
3889 }
3890 }
3891
7134f9ce
JB
3892 if (hw->revision_id == 0)
3893 mdelay(50);
23527308
NP
3894 return ret;
3895}
3896
3897/**
3898 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3899 * @pf: the PF being configured
3900 * @pf_q: the PF queue
3901 * @enable: enable or disable state of the queue
3902 *
3903 * This routine will wait for the given Rx queue of the PF to reach the
3904 * enabled or disabled state.
3905 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3906 * multiple retries; else will return 0 in case of success.
3907 **/
3908static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3909{
3910 int i;
3911 u32 rx_reg;
3912
3913 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3914 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3915 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3916 break;
3917
f98a2006 3918 usleep_range(10, 20);
23527308
NP
3919 }
3920 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3921 return -ETIMEDOUT;
7134f9ce 3922
41c445ff
JB
3923 return 0;
3924}
3925
3926/**
3927 * i40e_vsi_control_rx - Start or stop a VSI's rings
3928 * @vsi: the VSI being configured
3929 * @enable: start or stop the rings
3930 **/
3931static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3932{
3933 struct i40e_pf *pf = vsi->back;
3934 struct i40e_hw *hw = &pf->hw;
23527308 3935 int i, j, pf_q, ret = 0;
41c445ff
JB
3936 u32 rx_reg;
3937
3938 pf_q = vsi->base_queue;
3939 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
6c5ef620 3940 for (j = 0; j < 50; j++) {
41c445ff 3941 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
6c5ef620
MW
3942 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3943 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3944 break;
3945 usleep_range(1000, 2000);
3946 }
41c445ff 3947
7c122007
CS
3948 /* Skip if the queue is already in the requested state */
3949 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3950 continue;
41c445ff
JB
3951
3952 /* turn on/off the queue */
3953 if (enable)
6c5ef620 3954 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
41c445ff 3955 else
6c5ef620 3956 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
41c445ff 3957 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3fe06f41
NP
3958 /* No waiting for the Tx queue to disable */
3959 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3960 continue;
41c445ff
JB
3961
3962 /* wait for the change to finish */
23527308
NP
3963 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3964 if (ret) {
3965 dev_info(&pf->pdev->dev,
fb43201f
SN
3966 "VSI seid %d Rx ring %d %sable timeout\n",
3967 vsi->seid, pf_q, (enable ? "en" : "dis"));
23527308 3968 break;
41c445ff
JB
3969 }
3970 }
3971
23527308 3972 return ret;
41c445ff
JB
3973}
3974
3975/**
3976 * i40e_vsi_control_rings - Start or stop a VSI's rings
3977 * @vsi: the VSI being configured
3978 * @enable: start or stop the rings
3979 **/
fc18eaa0 3980int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
41c445ff 3981{
3b867b28 3982 int ret = 0;
41c445ff
JB
3983
3984 /* do rx first for enable and last for disable */
3985 if (request) {
3986 ret = i40e_vsi_control_rx(vsi, request);
3987 if (ret)
3988 return ret;
3989 ret = i40e_vsi_control_tx(vsi, request);
3990 } else {
3b867b28
ASJ
3991 /* Ignore return value, we need to shutdown whatever we can */
3992 i40e_vsi_control_tx(vsi, request);
3993 i40e_vsi_control_rx(vsi, request);
41c445ff
JB
3994 }
3995
3996 return ret;
3997}
3998
3999/**
4000 * i40e_vsi_free_irq - Free the irq association with the OS
4001 * @vsi: the VSI being configured
4002 **/
4003static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
4004{
4005 struct i40e_pf *pf = vsi->back;
4006 struct i40e_hw *hw = &pf->hw;
4007 int base = vsi->base_vector;
4008 u32 val, qp;
4009 int i;
4010
4011 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4012 if (!vsi->q_vectors)
4013 return;
4014
63741846
SN
4015 if (!vsi->irqs_ready)
4016 return;
4017
4018 vsi->irqs_ready = false;
41c445ff
JB
4019 for (i = 0; i < vsi->num_q_vectors; i++) {
4020 u16 vector = i + base;
4021
4022 /* free only the irqs that were actually requested */
78681b1f
SN
4023 if (!vsi->q_vectors[i] ||
4024 !vsi->q_vectors[i]->num_ringpairs)
41c445ff
JB
4025 continue;
4026
4027 /* clear the affinity_mask in the IRQ descriptor */
4028 irq_set_affinity_hint(pf->msix_entries[vector].vector,
4029 NULL);
b33d3b73 4030 synchronize_irq(pf->msix_entries[vector].vector);
41c445ff 4031 free_irq(pf->msix_entries[vector].vector,
493fb300 4032 vsi->q_vectors[i]);
41c445ff
JB
4033
4034 /* Tear down the interrupt queue link list
4035 *
4036 * We know that they come in pairs and always
4037 * the Rx first, then the Tx. To clear the
4038 * link list, stick the EOL value into the
4039 * next_q field of the registers.
4040 */
4041 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
4042 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4043 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4044 val |= I40E_QUEUE_END_OF_LIST
4045 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4046 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
4047
4048 while (qp != I40E_QUEUE_END_OF_LIST) {
4049 u32 next;
4050
4051 val = rd32(hw, I40E_QINT_RQCTL(qp));
4052
4053 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4054 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4055 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4056 I40E_QINT_RQCTL_INTEVENT_MASK);
4057
4058 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4059 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4060
4061 wr32(hw, I40E_QINT_RQCTL(qp), val);
4062
4063 val = rd32(hw, I40E_QINT_TQCTL(qp));
4064
4065 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
4066 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
4067
4068 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4069 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4070 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4071 I40E_QINT_TQCTL_INTEVENT_MASK);
4072
4073 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4074 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4075
4076 wr32(hw, I40E_QINT_TQCTL(qp), val);
4077 qp = next;
4078 }
4079 }
4080 } else {
4081 free_irq(pf->pdev->irq, pf);
4082
4083 val = rd32(hw, I40E_PFINT_LNKLST0);
4084 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4085 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4086 val |= I40E_QUEUE_END_OF_LIST
4087 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
4088 wr32(hw, I40E_PFINT_LNKLST0, val);
4089
4090 val = rd32(hw, I40E_QINT_RQCTL(qp));
4091 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4092 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4093 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4094 I40E_QINT_RQCTL_INTEVENT_MASK);
4095
4096 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4097 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4098
4099 wr32(hw, I40E_QINT_RQCTL(qp), val);
4100
4101 val = rd32(hw, I40E_QINT_TQCTL(qp));
4102
4103 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4104 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4105 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4106 I40E_QINT_TQCTL_INTEVENT_MASK);
4107
4108 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4109 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4110
4111 wr32(hw, I40E_QINT_TQCTL(qp), val);
4112 }
4113}
4114
493fb300
AD
4115/**
4116 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
4117 * @vsi: the VSI being configured
4118 * @v_idx: Index of vector to be freed
4119 *
4120 * This function frees the memory allocated to the q_vector. In addition if
4121 * NAPI is enabled it will delete any references to the NAPI struct prior
4122 * to freeing the q_vector.
4123 **/
4124static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
4125{
4126 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
cd0b6fa6 4127 struct i40e_ring *ring;
493fb300
AD
4128
4129 if (!q_vector)
4130 return;
4131
4132 /* disassociate q_vector from rings */
cd0b6fa6
AD
4133 i40e_for_each_ring(ring, q_vector->tx)
4134 ring->q_vector = NULL;
4135
4136 i40e_for_each_ring(ring, q_vector->rx)
4137 ring->q_vector = NULL;
493fb300
AD
4138
4139 /* only VSI w/ an associated netdev is set up w/ NAPI */
4140 if (vsi->netdev)
4141 netif_napi_del(&q_vector->napi);
4142
4143 vsi->q_vectors[v_idx] = NULL;
4144
4145 kfree_rcu(q_vector, rcu);
4146}
4147
41c445ff
JB
4148/**
4149 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
4150 * @vsi: the VSI being un-configured
4151 *
4152 * This frees the memory allocated to the q_vectors and
4153 * deletes references to the NAPI struct.
4154 **/
4155static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
4156{
4157 int v_idx;
4158
493fb300
AD
4159 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
4160 i40e_free_q_vector(vsi, v_idx);
41c445ff
JB
4161}
4162
4163/**
4164 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
4165 * @pf: board private structure
4166 **/
4167static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
4168{
4169 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
4170 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4171 pci_disable_msix(pf->pdev);
4172 kfree(pf->msix_entries);
4173 pf->msix_entries = NULL;
3b444399
SN
4174 kfree(pf->irq_pile);
4175 pf->irq_pile = NULL;
41c445ff
JB
4176 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
4177 pci_disable_msi(pf->pdev);
4178 }
4179 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
4180}
4181
4182/**
4183 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
4184 * @pf: board private structure
4185 *
4186 * We go through and clear interrupt specific resources and reset the structure
4187 * to pre-load conditions
4188 **/
4189static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
4190{
4191 int i;
4192
e147758d 4193 i40e_stop_misc_vector(pf);
69278398 4194 if (pf->flags & I40E_FLAG_MSIX_ENABLED && pf->msix_entries) {
e147758d
SN
4195 synchronize_irq(pf->msix_entries[0].vector);
4196 free_irq(pf->msix_entries[0].vector, pf);
4197 }
4198
e3219ce6
ASJ
4199 i40e_put_lump(pf->irq_pile, pf->iwarp_base_vector,
4200 I40E_IWARP_IRQ_PILE_ID);
4201
41c445ff 4202 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
505682cd 4203 for (i = 0; i < pf->num_alloc_vsi; i++)
41c445ff
JB
4204 if (pf->vsi[i])
4205 i40e_vsi_free_q_vectors(pf->vsi[i]);
4206 i40e_reset_interrupt_capability(pf);
4207}
4208
4209/**
4210 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
4211 * @vsi: the VSI being configured
4212 **/
4213static void i40e_napi_enable_all(struct i40e_vsi *vsi)
4214{
4215 int q_idx;
4216
4217 if (!vsi->netdev)
4218 return;
4219
4220 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
493fb300 4221 napi_enable(&vsi->q_vectors[q_idx]->napi);
41c445ff
JB
4222}
4223
4224/**
4225 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
4226 * @vsi: the VSI being configured
4227 **/
4228static void i40e_napi_disable_all(struct i40e_vsi *vsi)
4229{
4230 int q_idx;
4231
4232 if (!vsi->netdev)
4233 return;
4234
4235 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
493fb300 4236 napi_disable(&vsi->q_vectors[q_idx]->napi);
41c445ff
JB
4237}
4238
90ef8d47
SN
4239/**
4240 * i40e_vsi_close - Shut down a VSI
4241 * @vsi: the vsi to be quelled
4242 **/
4243static void i40e_vsi_close(struct i40e_vsi *vsi)
4244{
e3219ce6
ASJ
4245 bool reset = false;
4246
90ef8d47
SN
4247 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
4248 i40e_down(vsi);
4249 i40e_vsi_free_irq(vsi);
4250 i40e_vsi_free_tx_resources(vsi);
4251 i40e_vsi_free_rx_resources(vsi);
92faef85 4252 vsi->current_netdev_flags = 0;
e3219ce6
ASJ
4253 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4254 reset = true;
4255 i40e_notify_client_of_netdev_close(vsi, reset);
90ef8d47
SN
4256}
4257
41c445ff
JB
4258/**
4259 * i40e_quiesce_vsi - Pause a given VSI
4260 * @vsi: the VSI being paused
4261 **/
4262static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
4263{
4264 if (test_bit(__I40E_DOWN, &vsi->state))
4265 return;
4266
d341b7a5
NP
4267 /* No need to disable FCoE VSI when Tx suspended */
4268 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
4269 vsi->type == I40E_VSI_FCOE) {
4270 dev_dbg(&vsi->back->pdev->dev,
fb43201f 4271 "VSI seid %d skipping FCoE VSI disable\n", vsi->seid);
d341b7a5
NP
4272 return;
4273 }
4274
41c445ff 4275 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
6995b36c 4276 if (vsi->netdev && netif_running(vsi->netdev))
41c445ff 4277 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
6995b36c 4278 else
90ef8d47 4279 i40e_vsi_close(vsi);
41c445ff
JB
4280}
4281
4282/**
4283 * i40e_unquiesce_vsi - Resume a given VSI
4284 * @vsi: the VSI being resumed
4285 **/
4286static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
4287{
4288 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
4289 return;
4290
4291 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
4292 if (vsi->netdev && netif_running(vsi->netdev))
4293 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
4294 else
8276f757 4295 i40e_vsi_open(vsi); /* this clears the DOWN bit */
41c445ff
JB
4296}
4297
4298/**
4299 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
4300 * @pf: the PF
4301 **/
4302static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
4303{
4304 int v;
4305
505682cd 4306 for (v = 0; v < pf->num_alloc_vsi; v++) {
41c445ff
JB
4307 if (pf->vsi[v])
4308 i40e_quiesce_vsi(pf->vsi[v]);
4309 }
4310}
4311
4312/**
4313 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
4314 * @pf: the PF
4315 **/
4316static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
4317{
4318 int v;
4319
505682cd 4320 for (v = 0; v < pf->num_alloc_vsi; v++) {
41c445ff
JB
4321 if (pf->vsi[v])
4322 i40e_unquiesce_vsi(pf->vsi[v]);
4323 }
4324}
4325
69129dc3
NP
4326#ifdef CONFIG_I40E_DCB
4327/**
3fe06f41 4328 * i40e_vsi_wait_queues_disabled - Wait for VSI's queues to be disabled
69129dc3
NP
4329 * @vsi: the VSI being configured
4330 *
3fe06f41 4331 * This function waits for the given VSI's queues to be disabled.
69129dc3 4332 **/
3fe06f41 4333static int i40e_vsi_wait_queues_disabled(struct i40e_vsi *vsi)
69129dc3
NP
4334{
4335 struct i40e_pf *pf = vsi->back;
4336 int i, pf_q, ret;
4337
4338 pf_q = vsi->base_queue;
4339 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4340 /* Check and wait for the disable status of the queue */
4341 ret = i40e_pf_txq_wait(pf, pf_q, false);
4342 if (ret) {
4343 dev_info(&pf->pdev->dev,
fb43201f
SN
4344 "VSI seid %d Tx ring %d disable timeout\n",
4345 vsi->seid, pf_q);
69129dc3
NP
4346 return ret;
4347 }
4348 }
4349
3fe06f41
NP
4350 pf_q = vsi->base_queue;
4351 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4352 /* Check and wait for the disable status of the queue */
4353 ret = i40e_pf_rxq_wait(pf, pf_q, false);
4354 if (ret) {
4355 dev_info(&pf->pdev->dev,
4356 "VSI seid %d Rx ring %d disable timeout\n",
4357 vsi->seid, pf_q);
4358 return ret;
4359 }
4360 }
4361
69129dc3
NP
4362 return 0;
4363}
4364
4365/**
3fe06f41 4366 * i40e_pf_wait_queues_disabled - Wait for all queues of PF VSIs to be disabled
69129dc3
NP
4367 * @pf: the PF
4368 *
3fe06f41 4369 * This function waits for the queues to be in disabled state for all the
69129dc3
NP
4370 * VSIs that are managed by this PF.
4371 **/
3fe06f41 4372static int i40e_pf_wait_queues_disabled(struct i40e_pf *pf)
69129dc3
NP
4373{
4374 int v, ret = 0;
4375
4376 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
d341b7a5
NP
4377 /* No need to wait for FCoE VSI queues */
4378 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
3fe06f41 4379 ret = i40e_vsi_wait_queues_disabled(pf->vsi[v]);
69129dc3
NP
4380 if (ret)
4381 break;
4382 }
4383 }
4384
4385 return ret;
4386}
4387
4388#endif
b03a8c1f
KP
4389
4390/**
4391 * i40e_detect_recover_hung_queue - Function to detect and recover hung_queue
4392 * @q_idx: TX queue number
4393 * @vsi: Pointer to VSI struct
4394 *
4395 * This function checks specified queue for given VSI. Detects hung condition.
4396 * Sets hung bit since it is two step process. Before next run of service task
4397 * if napi_poll runs, it reset 'hung' bit for respective q_vector. If not,
4398 * hung condition remain unchanged and during subsequent run, this function
4399 * issues SW interrupt to recover from hung condition.
4400 **/
4401static void i40e_detect_recover_hung_queue(int q_idx, struct i40e_vsi *vsi)
4402{
4403 struct i40e_ring *tx_ring = NULL;
4404 struct i40e_pf *pf;
dd353109 4405 u32 head, val, tx_pending_hw;
b03a8c1f
KP
4406 int i;
4407
4408 pf = vsi->back;
4409
4410 /* now that we have an index, find the tx_ring struct */
4411 for (i = 0; i < vsi->num_queue_pairs; i++) {
4412 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
4413 if (q_idx == vsi->tx_rings[i]->queue_index) {
4414 tx_ring = vsi->tx_rings[i];
4415 break;
4416 }
4417 }
4418 }
4419
4420 if (!tx_ring)
4421 return;
4422
4423 /* Read interrupt register */
4424 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4425 val = rd32(&pf->hw,
4426 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
4427 tx_ring->vsi->base_vector - 1));
4428 else
4429 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
4430
4431 head = i40e_get_head(tx_ring);
4432
dd353109 4433 tx_pending_hw = i40e_get_tx_pending(tx_ring, false);
b03a8c1f 4434
9c6c1259
KP
4435 /* HW is done executing descriptors, updated HEAD write back,
4436 * but SW hasn't processed those descriptors. If interrupt is
4437 * not generated from this point ON, it could result into
4438 * dev_watchdog detecting timeout on those netdev_queue,
4439 * hence proactively trigger SW interrupt.
b03a8c1f 4440 */
dd353109 4441 if (tx_pending_hw && (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK))) {
9c6c1259
KP
4442 /* NAPI Poll didn't run and clear since it was set */
4443 if (test_and_clear_bit(I40E_Q_VECTOR_HUNG_DETECT,
4444 &tx_ring->q_vector->hung_detected)) {
dd353109
ASJ
4445 netdev_info(vsi->netdev, "VSI_seid %d, Hung TX queue %d, tx_pending_hw: %d, NTC:0x%x, HWB: 0x%x, NTU: 0x%x, TAIL: 0x%x\n",
4446 vsi->seid, q_idx, tx_pending_hw,
9c6c1259
KP
4447 tx_ring->next_to_clean, head,
4448 tx_ring->next_to_use,
4449 readl(tx_ring->tail));
4450 netdev_info(vsi->netdev, "VSI_seid %d, Issuing force_wb for TX queue %d, Interrupt Reg: 0x%x\n",
4451 vsi->seid, q_idx, val);
4452 i40e_force_wb(vsi, tx_ring->q_vector);
4453 } else {
4454 /* First Chance - detected possible hung */
4455 set_bit(I40E_Q_VECTOR_HUNG_DETECT,
4456 &tx_ring->q_vector->hung_detected);
4457 }
4458 }
dd353109
ASJ
4459
4460 /* This is the case where we have interrupts missing,
4461 * so the tx_pending in HW will most likely be 0, but we
4462 * will have tx_pending in SW since the WB happened but the
4463 * interrupt got lost.
4464 */
4465 if ((!tx_pending_hw) && i40e_get_tx_pending(tx_ring, true) &&
4466 (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK))) {
4467 if (napi_reschedule(&tx_ring->q_vector->napi))
4468 tx_ring->tx_stats.tx_lost_interrupt++;
4469 }
b03a8c1f
KP
4470}
4471
4472/**
4473 * i40e_detect_recover_hung - Function to detect and recover hung_queues
4474 * @pf: pointer to PF struct
4475 *
4476 * LAN VSI has netdev and netdev has TX queues. This function is to check
4477 * each of those TX queues if they are hung, trigger recovery by issuing
4478 * SW interrupt.
4479 **/
4480static void i40e_detect_recover_hung(struct i40e_pf *pf)
4481{
4482 struct net_device *netdev;
4483 struct i40e_vsi *vsi;
4484 int i;
4485
4486 /* Only for LAN VSI */
4487 vsi = pf->vsi[pf->lan_vsi];
4488
4489 if (!vsi)
4490 return;
4491
4492 /* Make sure, VSI state is not DOWN/RECOVERY_PENDING */
4493 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
4494 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4495 return;
4496
4497 /* Make sure type is MAIN VSI */
4498 if (vsi->type != I40E_VSI_MAIN)
4499 return;
4500
4501 netdev = vsi->netdev;
4502 if (!netdev)
4503 return;
4504
4505 /* Bail out if netif_carrier is not OK */
4506 if (!netif_carrier_ok(netdev))
4507 return;
4508
4509 /* Go thru' TX queues for netdev */
4510 for (i = 0; i < netdev->num_tx_queues; i++) {
4511 struct netdev_queue *q;
4512
4513 q = netdev_get_tx_queue(netdev, i);
4514 if (q)
4515 i40e_detect_recover_hung_queue(i, vsi);
4516 }
4517}
4518
63d7e5a4
NP
4519/**
4520 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
b40c82e6 4521 * @pf: pointer to PF
63d7e5a4
NP
4522 *
4523 * Get TC map for ISCSI PF type that will include iSCSI TC
4524 * and LAN TC.
4525 **/
4526static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4527{
4528 struct i40e_dcb_app_priority_table app;
4529 struct i40e_hw *hw = &pf->hw;
4530 u8 enabled_tc = 1; /* TC0 is always enabled */
4531 u8 tc, i;
4532 /* Get the iSCSI APP TLV */
4533 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4534
4535 for (i = 0; i < dcbcfg->numapps; i++) {
4536 app = dcbcfg->app[i];
4537 if (app.selector == I40E_APP_SEL_TCPIP &&
4538 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4539 tc = dcbcfg->etscfg.prioritytable[app.priority];
75f5cea9 4540 enabled_tc |= BIT(tc);
63d7e5a4
NP
4541 break;
4542 }
4543 }
4544
4545 return enabled_tc;
4546}
4547
41c445ff
JB
4548/**
4549 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4550 * @dcbcfg: the corresponding DCBx configuration structure
4551 *
4552 * Return the number of TCs from given DCBx configuration
4553 **/
4554static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4555{
fbfe12c6 4556 int i, tc_unused = 0;
078b5876 4557 u8 num_tc = 0;
fbfe12c6 4558 u8 ret = 0;
41c445ff
JB
4559
4560 /* Scan the ETS Config Priority Table to find
4561 * traffic class enabled for a given priority
fbfe12c6 4562 * and create a bitmask of enabled TCs
41c445ff 4563 */
fbfe12c6
DE
4564 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++)
4565 num_tc |= BIT(dcbcfg->etscfg.prioritytable[i]);
41c445ff 4566
fbfe12c6
DE
4567 /* Now scan the bitmask to check for
4568 * contiguous TCs starting with TC0
41c445ff 4569 */
fbfe12c6
DE
4570 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4571 if (num_tc & BIT(i)) {
4572 if (!tc_unused) {
4573 ret++;
4574 } else {
4575 pr_err("Non-contiguous TC - Disabling DCB\n");
4576 return 1;
4577 }
4578 } else {
4579 tc_unused = 1;
4580 }
4581 }
4582
4583 /* There is always at least TC0 */
4584 if (!ret)
4585 ret = 1;
4586
4587 return ret;
41c445ff
JB
4588}
4589
4590/**
4591 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4592 * @dcbcfg: the corresponding DCBx configuration structure
4593 *
4594 * Query the current DCB configuration and return the number of
4595 * traffic classes enabled from the given DCBX config
4596 **/
4597static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4598{
4599 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4600 u8 enabled_tc = 1;
4601 u8 i;
4602
4603 for (i = 0; i < num_tc; i++)
41a1d04b 4604 enabled_tc |= BIT(i);
41c445ff
JB
4605
4606 return enabled_tc;
4607}
4608
4609/**
4610 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4611 * @pf: PF being queried
4612 *
4613 * Return number of traffic classes enabled for the given PF
4614 **/
4615static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4616{
4617 struct i40e_hw *hw = &pf->hw;
52a08caa 4618 u8 i, enabled_tc = 1;
41c445ff
JB
4619 u8 num_tc = 0;
4620 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4621
4622 /* If DCB is not enabled then always in single TC */
4623 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4624 return 1;
4625
63d7e5a4
NP
4626 /* SFP mode will be enabled for all TCs on port */
4627 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4628 return i40e_dcb_get_num_tc(dcbcfg);
4629
41c445ff 4630 /* MFP mode return count of enabled TCs for this PF */
63d7e5a4
NP
4631 if (pf->hw.func_caps.iscsi)
4632 enabled_tc = i40e_get_iscsi_tc_map(pf);
4633 else
fc51de96 4634 return 1; /* Only TC0 */
41c445ff 4635
63d7e5a4 4636 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
75f5cea9 4637 if (enabled_tc & BIT(i))
63d7e5a4
NP
4638 num_tc++;
4639 }
4640 return num_tc;
41c445ff
JB
4641}
4642
41c445ff
JB
4643/**
4644 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4645 * @pf: PF being queried
4646 *
4647 * Return a bitmap for enabled traffic classes for this PF.
4648 **/
4649static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4650{
4651 /* If DCB is not enabled for this PF then just return default TC */
4652 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
ea6acb7e 4653 return I40E_DEFAULT_TRAFFIC_CLASS;
41c445ff 4654
41c445ff 4655 /* SFP mode we want PF to be enabled for all TCs */
63d7e5a4
NP
4656 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4657 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4658
fc51de96 4659 /* MFP enabled and iSCSI PF type */
63d7e5a4
NP
4660 if (pf->hw.func_caps.iscsi)
4661 return i40e_get_iscsi_tc_map(pf);
4662 else
ea6acb7e 4663 return I40E_DEFAULT_TRAFFIC_CLASS;
41c445ff
JB
4664}
4665
4666/**
4667 * i40e_vsi_get_bw_info - Query VSI BW Information
4668 * @vsi: the VSI being queried
4669 *
4670 * Returns 0 on success, negative value on failure
4671 **/
4672static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4673{
4674 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4675 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4676 struct i40e_pf *pf = vsi->back;
4677 struct i40e_hw *hw = &pf->hw;
f1c7e72e 4678 i40e_status ret;
41c445ff 4679 u32 tc_bw_max;
41c445ff
JB
4680 int i;
4681
4682 /* Get the VSI level BW configuration */
f1c7e72e
SN
4683 ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4684 if (ret) {
41c445ff 4685 dev_info(&pf->pdev->dev,
f1c7e72e
SN
4686 "couldn't get PF vsi bw config, err %s aq_err %s\n",
4687 i40e_stat_str(&pf->hw, ret),
4688 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
dcae29be 4689 return -EINVAL;
41c445ff
JB
4690 }
4691
4692 /* Get the VSI level BW configuration per TC */
f1c7e72e
SN
4693 ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
4694 NULL);
4695 if (ret) {
41c445ff 4696 dev_info(&pf->pdev->dev,
f1c7e72e
SN
4697 "couldn't get PF vsi ets bw config, err %s aq_err %s\n",
4698 i40e_stat_str(&pf->hw, ret),
4699 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
dcae29be 4700 return -EINVAL;
41c445ff
JB
4701 }
4702
4703 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4704 dev_info(&pf->pdev->dev,
4705 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4706 bw_config.tc_valid_bits,
4707 bw_ets_config.tc_valid_bits);
4708 /* Still continuing */
4709 }
4710
4711 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4712 vsi->bw_max_quanta = bw_config.max_bw;
4713 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4714 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4715 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4716 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4717 vsi->bw_ets_limit_credits[i] =
4718 le16_to_cpu(bw_ets_config.credits[i]);
4719 /* 3 bits out of 4 for each TC */
4720 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4721 }
078b5876 4722
dcae29be 4723 return 0;
41c445ff
JB
4724}
4725
4726/**
4727 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4728 * @vsi: the VSI being configured
4729 * @enabled_tc: TC bitmap
4730 * @bw_credits: BW shared credits per TC
4731 *
4732 * Returns 0 on success, negative value on failure
4733 **/
dcae29be 4734static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
41c445ff
JB
4735 u8 *bw_share)
4736{
4737 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
f1c7e72e 4738 i40e_status ret;
dcae29be 4739 int i;
41c445ff
JB
4740
4741 bw_data.tc_valid_bits = enabled_tc;
4742 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4743 bw_data.tc_bw_credits[i] = bw_share[i];
4744
f1c7e72e
SN
4745 ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4746 NULL);
4747 if (ret) {
41c445ff 4748 dev_info(&vsi->back->pdev->dev,
69bfb110
JB
4749 "AQ command Config VSI BW allocation per TC failed = %d\n",
4750 vsi->back->hw.aq.asq_last_status);
dcae29be 4751 return -EINVAL;
41c445ff
JB
4752 }
4753
4754 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4755 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4756
dcae29be 4757 return 0;
41c445ff
JB
4758}
4759
4760/**
4761 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4762 * @vsi: the VSI being configured
4763 * @enabled_tc: TC map to be enabled
4764 *
4765 **/
4766static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4767{
4768 struct net_device *netdev = vsi->netdev;
4769 struct i40e_pf *pf = vsi->back;
4770 struct i40e_hw *hw = &pf->hw;
4771 u8 netdev_tc = 0;
4772 int i;
4773 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4774
4775 if (!netdev)
4776 return;
4777
4778 if (!enabled_tc) {
4779 netdev_reset_tc(netdev);
4780 return;
4781 }
4782
4783 /* Set up actual enabled TCs on the VSI */
4784 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4785 return;
4786
4787 /* set per TC queues for the VSI */
4788 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4789 /* Only set TC queues for enabled tcs
4790 *
4791 * e.g. For a VSI that has TC0 and TC3 enabled the
4792 * enabled_tc bitmap would be 0x00001001; the driver
4793 * will set the numtc for netdev as 2 that will be
4794 * referenced by the netdev layer as TC 0 and 1.
4795 */
75f5cea9 4796 if (vsi->tc_config.enabled_tc & BIT(i))
41c445ff
JB
4797 netdev_set_tc_queue(netdev,
4798 vsi->tc_config.tc_info[i].netdev_tc,
4799 vsi->tc_config.tc_info[i].qcount,
4800 vsi->tc_config.tc_info[i].qoffset);
4801 }
4802
4803 /* Assign UP2TC map for the VSI */
4804 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4805 /* Get the actual TC# for the UP */
4806 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4807 /* Get the mapped netdev TC# for the UP */
4808 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4809 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4810 }
4811}
4812
4813/**
4814 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4815 * @vsi: the VSI being configured
4816 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4817 **/
4818static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4819 struct i40e_vsi_context *ctxt)
4820{
4821 /* copy just the sections touched not the entire info
4822 * since not all sections are valid as returned by
4823 * update vsi params
4824 */
4825 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4826 memcpy(&vsi->info.queue_mapping,
4827 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4828 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4829 sizeof(vsi->info.tc_mapping));
4830}
4831
4832/**
4833 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4834 * @vsi: VSI to be configured
4835 * @enabled_tc: TC bitmap
4836 *
4837 * This configures a particular VSI for TCs that are mapped to the
4838 * given TC bitmap. It uses default bandwidth share for TCs across
4839 * VSIs to configure TC for a particular VSI.
4840 *
4841 * NOTE:
4842 * It is expected that the VSI queues have been quisced before calling
4843 * this function.
4844 **/
4845static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4846{
4847 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4848 struct i40e_vsi_context ctxt;
4849 int ret = 0;
4850 int i;
4851
4852 /* Check if enabled_tc is same as existing or new TCs */
4853 if (vsi->tc_config.enabled_tc == enabled_tc)
4854 return ret;
4855
4856 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4857 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
75f5cea9 4858 if (enabled_tc & BIT(i))
41c445ff
JB
4859 bw_share[i] = 1;
4860 }
4861
4862 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4863 if (ret) {
4864 dev_info(&vsi->back->pdev->dev,
4865 "Failed configuring TC map %d for VSI %d\n",
4866 enabled_tc, vsi->seid);
4867 goto out;
4868 }
4869
4870 /* Update Queue Pairs Mapping for currently enabled UPs */
4871 ctxt.seid = vsi->seid;
4872 ctxt.pf_num = vsi->back->hw.pf_id;
4873 ctxt.vf_num = 0;
4874 ctxt.uplink_seid = vsi->uplink_seid;
1a2f6248 4875 ctxt.info = vsi->info;
41c445ff
JB
4876 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4877
e3219ce6
ASJ
4878 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
4879 ctxt.info.valid_sections |=
4880 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
4881 ctxt.info.queueing_opt_flags |= I40E_AQ_VSI_QUE_OPT_TCP_ENA;
4882 }
4883
41c445ff
JB
4884 /* Update the VSI after updating the VSI queue-mapping information */
4885 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4886 if (ret) {
4887 dev_info(&vsi->back->pdev->dev,
f1c7e72e
SN
4888 "Update vsi tc config failed, err %s aq_err %s\n",
4889 i40e_stat_str(&vsi->back->hw, ret),
4890 i40e_aq_str(&vsi->back->hw,
4891 vsi->back->hw.aq.asq_last_status));
41c445ff
JB
4892 goto out;
4893 }
4894 /* update the local VSI info with updated queue map */
4895 i40e_vsi_update_queue_map(vsi, &ctxt);
4896 vsi->info.valid_sections = 0;
4897
4898 /* Update current VSI BW information */
4899 ret = i40e_vsi_get_bw_info(vsi);
4900 if (ret) {
4901 dev_info(&vsi->back->pdev->dev,
f1c7e72e
SN
4902 "Failed updating vsi bw info, err %s aq_err %s\n",
4903 i40e_stat_str(&vsi->back->hw, ret),
4904 i40e_aq_str(&vsi->back->hw,
4905 vsi->back->hw.aq.asq_last_status));
41c445ff
JB
4906 goto out;
4907 }
4908
4909 /* Update the netdev TC setup */
4910 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4911out:
4912 return ret;
4913}
4914
4e3b35b0
NP
4915/**
4916 * i40e_veb_config_tc - Configure TCs for given VEB
4917 * @veb: given VEB
4918 * @enabled_tc: TC bitmap
4919 *
4920 * Configures given TC bitmap for VEB (switching) element
4921 **/
4922int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4923{
4924 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4925 struct i40e_pf *pf = veb->pf;
4926 int ret = 0;
4927 int i;
4928
4929 /* No TCs or already enabled TCs just return */
4930 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4931 return ret;
4932
4933 bw_data.tc_valid_bits = enabled_tc;
4934 /* bw_data.absolute_credits is not set (relative) */
4935
4936 /* Enable ETS TCs with equal BW Share for now */
4937 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
75f5cea9 4938 if (enabled_tc & BIT(i))
4e3b35b0
NP
4939 bw_data.tc_bw_share_credits[i] = 1;
4940 }
4941
4942 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4943 &bw_data, NULL);
4944 if (ret) {
4945 dev_info(&pf->pdev->dev,
f1c7e72e
SN
4946 "VEB bw config failed, 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));
4e3b35b0
NP
4949 goto out;
4950 }
4951
4952 /* Update the BW information */
4953 ret = i40e_veb_get_bw_info(veb);
4954 if (ret) {
4955 dev_info(&pf->pdev->dev,
f1c7e72e
SN
4956 "Failed getting veb bw config, err %s aq_err %s\n",
4957 i40e_stat_str(&pf->hw, ret),
4958 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
4e3b35b0
NP
4959 }
4960
4961out:
4962 return ret;
4963}
4964
4965#ifdef CONFIG_I40E_DCB
4966/**
4967 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4968 * @pf: PF struct
4969 *
4970 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4971 * the caller would've quiesce all the VSIs before calling
4972 * this function
4973 **/
4974static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4975{
4976 u8 tc_map = 0;
4977 int ret;
4978 u8 v;
4979
4980 /* Enable the TCs available on PF to all VEBs */
4981 tc_map = i40e_pf_get_tc_map(pf);
4982 for (v = 0; v < I40E_MAX_VEB; v++) {
4983 if (!pf->veb[v])
4984 continue;
4985 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4986 if (ret) {
4987 dev_info(&pf->pdev->dev,
4988 "Failed configuring TC for VEB seid=%d\n",
4989 pf->veb[v]->seid);
4990 /* Will try to configure as many components */
4991 }
4992 }
4993
4994 /* Update each VSI */
505682cd 4995 for (v = 0; v < pf->num_alloc_vsi; v++) {
4e3b35b0
NP
4996 if (!pf->vsi[v])
4997 continue;
4998
4999 /* - Enable all TCs for the LAN VSI
38e00438
VD
5000#ifdef I40E_FCOE
5001 * - For FCoE VSI only enable the TC configured
5002 * as per the APP TLV
5003#endif
4e3b35b0
NP
5004 * - For all others keep them at TC0 for now
5005 */
5006 if (v == pf->lan_vsi)
5007 tc_map = i40e_pf_get_tc_map(pf);
5008 else
ea6acb7e 5009 tc_map = I40E_DEFAULT_TRAFFIC_CLASS;
38e00438
VD
5010#ifdef I40E_FCOE
5011 if (pf->vsi[v]->type == I40E_VSI_FCOE)
5012 tc_map = i40e_get_fcoe_tc_map(pf);
5013#endif /* #ifdef I40E_FCOE */
4e3b35b0
NP
5014
5015 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
5016 if (ret) {
5017 dev_info(&pf->pdev->dev,
5018 "Failed configuring TC for VSI seid=%d\n",
5019 pf->vsi[v]->seid);
5020 /* Will try to configure as many components */
5021 } else {
0672a091
NP
5022 /* Re-configure VSI vectors based on updated TC map */
5023 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
4e3b35b0
NP
5024 if (pf->vsi[v]->netdev)
5025 i40e_dcbnl_set_all(pf->vsi[v]);
5026 }
5027 }
5028}
5029
2fd75f31
NP
5030/**
5031 * i40e_resume_port_tx - Resume port Tx
5032 * @pf: PF struct
5033 *
5034 * Resume a port's Tx and issue a PF reset in case of failure to
5035 * resume.
5036 **/
5037static int i40e_resume_port_tx(struct i40e_pf *pf)
5038{
5039 struct i40e_hw *hw = &pf->hw;
5040 int ret;
5041
5042 ret = i40e_aq_resume_port_tx(hw, NULL);
5043 if (ret) {
5044 dev_info(&pf->pdev->dev,
f1c7e72e
SN
5045 "Resume Port Tx failed, err %s aq_err %s\n",
5046 i40e_stat_str(&pf->hw, ret),
5047 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
2fd75f31
NP
5048 /* Schedule PF reset to recover */
5049 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5050 i40e_service_event_schedule(pf);
5051 }
5052
5053 return ret;
5054}
5055
4e3b35b0
NP
5056/**
5057 * i40e_init_pf_dcb - Initialize DCB configuration
5058 * @pf: PF being configured
5059 *
5060 * Query the current DCB configuration and cache it
5061 * in the hardware structure
5062 **/
5063static int i40e_init_pf_dcb(struct i40e_pf *pf)
5064{
5065 struct i40e_hw *hw = &pf->hw;
5066 int err = 0;
5067
025b4a54 5068 /* Do not enable DCB for SW1 and SW2 images even if the FW is capable */
f1bbad33 5069 if (pf->flags & I40E_FLAG_NO_DCB_SUPPORT)
025b4a54
ASJ
5070 goto out;
5071
4e3b35b0
NP
5072 /* Get the initial DCB configuration */
5073 err = i40e_init_dcb(hw);
5074 if (!err) {
5075 /* Device/Function is not DCBX capable */
5076 if ((!hw->func_caps.dcb) ||
5077 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
5078 dev_info(&pf->pdev->dev,
5079 "DCBX offload is not supported or is disabled for this PF.\n");
5080
5081 if (pf->flags & I40E_FLAG_MFP_ENABLED)
5082 goto out;
5083
5084 } else {
5085 /* When status is not DISABLED then DCBX in FW */
5086 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
5087 DCB_CAP_DCBX_VER_IEEE;
4d9b6043
NP
5088
5089 pf->flags |= I40E_FLAG_DCB_CAPABLE;
a036244c
DE
5090 /* Enable DCB tagging only when more than one TC
5091 * or explicitly disable if only one TC
5092 */
4d9b6043
NP
5093 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
5094 pf->flags |= I40E_FLAG_DCB_ENABLED;
a036244c
DE
5095 else
5096 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
9fa61dd2
NP
5097 dev_dbg(&pf->pdev->dev,
5098 "DCBX offload is supported for this PF.\n");
4e3b35b0 5099 }
014269ff 5100 } else {
aebfc816 5101 dev_info(&pf->pdev->dev,
f1c7e72e
SN
5102 "Query for DCB configuration failed, err %s aq_err %s\n",
5103 i40e_stat_str(&pf->hw, err),
5104 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
4e3b35b0
NP
5105 }
5106
5107out:
5108 return err;
5109}
5110#endif /* CONFIG_I40E_DCB */
cf05ed08
JB
5111#define SPEED_SIZE 14
5112#define FC_SIZE 8
5113/**
5114 * i40e_print_link_message - print link up or down
5115 * @vsi: the VSI for which link needs a message
5116 */
c156f856 5117void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
cf05ed08 5118{
a9165490
SN
5119 char *speed = "Unknown";
5120 char *fc = "Unknown";
cf05ed08 5121
c156f856
MJ
5122 if (vsi->current_isup == isup)
5123 return;
5124 vsi->current_isup = isup;
cf05ed08
JB
5125 if (!isup) {
5126 netdev_info(vsi->netdev, "NIC Link is Down\n");
5127 return;
5128 }
5129
148c2d80
GR
5130 /* Warn user if link speed on NPAR enabled partition is not at
5131 * least 10GB
5132 */
5133 if (vsi->back->hw.func_caps.npar_enable &&
5134 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
5135 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
5136 netdev_warn(vsi->netdev,
5137 "The partition detected link speed that is less than 10Gbps\n");
5138
cf05ed08
JB
5139 switch (vsi->back->hw.phy.link_info.link_speed) {
5140 case I40E_LINK_SPEED_40GB:
a9165490 5141 speed = "40 G";
cf05ed08 5142 break;
ae24b409 5143 case I40E_LINK_SPEED_20GB:
a9165490 5144 speed = "20 G";
ae24b409 5145 break;
cf05ed08 5146 case I40E_LINK_SPEED_10GB:
a9165490 5147 speed = "10 G";
cf05ed08
JB
5148 break;
5149 case I40E_LINK_SPEED_1GB:
a9165490 5150 speed = "1000 M";
cf05ed08 5151 break;
5960d33f 5152 case I40E_LINK_SPEED_100MB:
a9165490 5153 speed = "100 M";
5960d33f 5154 break;
cf05ed08
JB
5155 default:
5156 break;
5157 }
5158
5159 switch (vsi->back->hw.fc.current_mode) {
5160 case I40E_FC_FULL:
a9165490 5161 fc = "RX/TX";
cf05ed08
JB
5162 break;
5163 case I40E_FC_TX_PAUSE:
a9165490 5164 fc = "TX";
cf05ed08
JB
5165 break;
5166 case I40E_FC_RX_PAUSE:
a9165490 5167 fc = "RX";
cf05ed08
JB
5168 break;
5169 default:
a9165490 5170 fc = "None";
cf05ed08
JB
5171 break;
5172 }
5173
a9165490 5174 netdev_info(vsi->netdev, "NIC Link is Up %sbps Full Duplex, Flow Control: %s\n",
cf05ed08
JB
5175 speed, fc);
5176}
4e3b35b0 5177
41c445ff
JB
5178/**
5179 * i40e_up_complete - Finish the last steps of bringing up a connection
5180 * @vsi: the VSI being configured
5181 **/
5182static int i40e_up_complete(struct i40e_vsi *vsi)
5183{
5184 struct i40e_pf *pf = vsi->back;
5185 int err;
5186
5187 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5188 i40e_vsi_configure_msix(vsi);
5189 else
5190 i40e_configure_msi_and_legacy(vsi);
5191
5192 /* start rings */
5193 err = i40e_vsi_control_rings(vsi, true);
5194 if (err)
5195 return err;
5196
5197 clear_bit(__I40E_DOWN, &vsi->state);
5198 i40e_napi_enable_all(vsi);
5199 i40e_vsi_enable_irq(vsi);
5200
5201 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
5202 (vsi->netdev)) {
cf05ed08 5203 i40e_print_link_message(vsi, true);
41c445ff
JB
5204 netif_tx_start_all_queues(vsi->netdev);
5205 netif_carrier_on(vsi->netdev);
6d779b41 5206 } else if (vsi->netdev) {
cf05ed08 5207 i40e_print_link_message(vsi, false);
7b592f61
CW
5208 /* need to check for qualified module here*/
5209 if ((pf->hw.phy.link_info.link_info &
5210 I40E_AQ_MEDIA_AVAILABLE) &&
5211 (!(pf->hw.phy.link_info.an_info &
5212 I40E_AQ_QUALIFIED_MODULE)))
5213 netdev_err(vsi->netdev,
5214 "the driver failed to link because an unqualified module was detected.");
41c445ff 5215 }
ca64fa4e
ASJ
5216
5217 /* replay FDIR SB filters */
1e1be8f6
ASJ
5218 if (vsi->type == I40E_VSI_FDIR) {
5219 /* reset fd counters */
5220 pf->fd_add_err = pf->fd_atr_cnt = 0;
5221 if (pf->fd_tcp_rule > 0) {
234dc4e6 5222 pf->auto_disable_flags |= I40E_FLAG_FD_ATR_ENABLED;
2e4875e3
ASJ
5223 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5224 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
1e1be8f6
ASJ
5225 pf->fd_tcp_rule = 0;
5226 }
ca64fa4e 5227 i40e_fdir_filter_restore(vsi);
1e1be8f6 5228 }
e3219ce6
ASJ
5229
5230 /* On the next run of the service_task, notify any clients of the new
5231 * opened netdev
5232 */
5233 pf->flags |= I40E_FLAG_SERVICE_CLIENT_REQUESTED;
41c445ff
JB
5234 i40e_service_event_schedule(pf);
5235
5236 return 0;
5237}
5238
5239/**
5240 * i40e_vsi_reinit_locked - Reset the VSI
5241 * @vsi: the VSI being configured
5242 *
5243 * Rebuild the ring structs after some configuration
5244 * has changed, e.g. MTU size.
5245 **/
5246static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
5247{
5248 struct i40e_pf *pf = vsi->back;
5249
5250 WARN_ON(in_interrupt());
5251 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
5252 usleep_range(1000, 2000);
5253 i40e_down(vsi);
5254
41c445ff
JB
5255 i40e_up(vsi);
5256 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
5257}
5258
5259/**
5260 * i40e_up - Bring the connection back up after being down
5261 * @vsi: the VSI being configured
5262 **/
5263int i40e_up(struct i40e_vsi *vsi)
5264{
5265 int err;
5266
5267 err = i40e_vsi_configure(vsi);
5268 if (!err)
5269 err = i40e_up_complete(vsi);
5270
5271 return err;
5272}
5273
5274/**
5275 * i40e_down - Shutdown the connection processing
5276 * @vsi: the VSI being stopped
5277 **/
5278void i40e_down(struct i40e_vsi *vsi)
5279{
5280 int i;
5281
5282 /* It is assumed that the caller of this function
5283 * sets the vsi->state __I40E_DOWN bit.
5284 */
5285 if (vsi->netdev) {
5286 netif_carrier_off(vsi->netdev);
5287 netif_tx_disable(vsi->netdev);
5288 }
5289 i40e_vsi_disable_irq(vsi);
5290 i40e_vsi_control_rings(vsi, false);
5291 i40e_napi_disable_all(vsi);
5292
5293 for (i = 0; i < vsi->num_queue_pairs; i++) {
9f65e15b
AD
5294 i40e_clean_tx_ring(vsi->tx_rings[i]);
5295 i40e_clean_rx_ring(vsi->rx_rings[i]);
41c445ff 5296 }
f980d445
CS
5297
5298 i40e_notify_client_of_netdev_close(vsi, false);
5299
41c445ff
JB
5300}
5301
5302/**
5303 * i40e_setup_tc - configure multiple traffic classes
5304 * @netdev: net device to configure
5305 * @tc: number of traffic classes to enable
5306 **/
5307static int i40e_setup_tc(struct net_device *netdev, u8 tc)
5308{
5309 struct i40e_netdev_priv *np = netdev_priv(netdev);
5310 struct i40e_vsi *vsi = np->vsi;
5311 struct i40e_pf *pf = vsi->back;
5312 u8 enabled_tc = 0;
5313 int ret = -EINVAL;
5314 int i;
5315
5316 /* Check if DCB enabled to continue */
5317 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
5318 netdev_info(netdev, "DCB is not enabled for adapter\n");
5319 goto exit;
5320 }
5321
5322 /* Check if MFP enabled */
5323 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
5324 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
5325 goto exit;
5326 }
5327
5328 /* Check whether tc count is within enabled limit */
5329 if (tc > i40e_pf_get_num_tc(pf)) {
5330 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
5331 goto exit;
5332 }
5333
5334 /* Generate TC map for number of tc requested */
5335 for (i = 0; i < tc; i++)
75f5cea9 5336 enabled_tc |= BIT(i);
41c445ff
JB
5337
5338 /* Requesting same TC configuration as already enabled */
5339 if (enabled_tc == vsi->tc_config.enabled_tc)
5340 return 0;
5341
5342 /* Quiesce VSI queues */
5343 i40e_quiesce_vsi(vsi);
5344
5345 /* Configure VSI for enabled TCs */
5346 ret = i40e_vsi_config_tc(vsi, enabled_tc);
5347 if (ret) {
5348 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
5349 vsi->seid);
5350 goto exit;
5351 }
5352
5353 /* Unquiesce VSI */
5354 i40e_unquiesce_vsi(vsi);
5355
5356exit:
5357 return ret;
5358}
5359
e4c6734e 5360#ifdef I40E_FCOE
16e5cc64
JF
5361int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto,
5362 struct tc_to_netdev *tc)
e4c6734e 5363#else
16e5cc64
JF
5364static int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto,
5365 struct tc_to_netdev *tc)
e4c6734e
JF
5366#endif
5367{
16e5cc64 5368 if (handle != TC_H_ROOT || tc->type != TC_SETUP_MQPRIO)
e4c6734e 5369 return -EINVAL;
16e5cc64 5370 return i40e_setup_tc(netdev, tc->tc);
e4c6734e
JF
5371}
5372
41c445ff
JB
5373/**
5374 * i40e_open - Called when a network interface is made active
5375 * @netdev: network interface device structure
5376 *
5377 * The open entry point is called when a network interface is made
5378 * active by the system (IFF_UP). At this point all resources needed
5379 * for transmit and receive operations are allocated, the interrupt
5380 * handler is registered with the OS, the netdev watchdog subtask is
5381 * enabled, and the stack is notified that the interface is ready.
5382 *
5383 * Returns 0 on success, negative value on failure
5384 **/
38e00438 5385int i40e_open(struct net_device *netdev)
41c445ff
JB
5386{
5387 struct i40e_netdev_priv *np = netdev_priv(netdev);
5388 struct i40e_vsi *vsi = np->vsi;
5389 struct i40e_pf *pf = vsi->back;
41c445ff
JB
5390 int err;
5391
4eb3f768
SN
5392 /* disallow open during test or if eeprom is broken */
5393 if (test_bit(__I40E_TESTING, &pf->state) ||
5394 test_bit(__I40E_BAD_EEPROM, &pf->state))
41c445ff
JB
5395 return -EBUSY;
5396
5397 netif_carrier_off(netdev);
5398
6c167f58
EK
5399 err = i40e_vsi_open(vsi);
5400 if (err)
5401 return err;
5402
059dab69
JB
5403 /* configure global TSO hardware offload settings */
5404 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
5405 TCP_FLAG_FIN) >> 16);
5406 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
5407 TCP_FLAG_FIN |
5408 TCP_FLAG_CWR) >> 16);
5409 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
5410
06a5f7f1 5411 udp_tunnel_get_rx_info(netdev);
e3219ce6 5412
6c167f58
EK
5413 return 0;
5414}
5415
5416/**
5417 * i40e_vsi_open -
5418 * @vsi: the VSI to open
5419 *
5420 * Finish initialization of the VSI.
5421 *
5422 * Returns 0 on success, negative value on failure
5423 **/
5424int i40e_vsi_open(struct i40e_vsi *vsi)
5425{
5426 struct i40e_pf *pf = vsi->back;
b294ac70 5427 char int_name[I40E_INT_NAME_STR_LEN];
6c167f58
EK
5428 int err;
5429
41c445ff
JB
5430 /* allocate descriptors */
5431 err = i40e_vsi_setup_tx_resources(vsi);
5432 if (err)
5433 goto err_setup_tx;
5434 err = i40e_vsi_setup_rx_resources(vsi);
5435 if (err)
5436 goto err_setup_rx;
5437
5438 err = i40e_vsi_configure(vsi);
5439 if (err)
5440 goto err_setup_rx;
5441
c22e3c6c
SN
5442 if (vsi->netdev) {
5443 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
5444 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
5445 err = i40e_vsi_request_irq(vsi, int_name);
5446 if (err)
5447 goto err_setup_rx;
41c445ff 5448
c22e3c6c
SN
5449 /* Notify the stack of the actual queue counts. */
5450 err = netif_set_real_num_tx_queues(vsi->netdev,
5451 vsi->num_queue_pairs);
5452 if (err)
5453 goto err_set_queues;
25946ddb 5454
c22e3c6c
SN
5455 err = netif_set_real_num_rx_queues(vsi->netdev,
5456 vsi->num_queue_pairs);
5457 if (err)
5458 goto err_set_queues;
8a9eb7d3
SN
5459
5460 } else if (vsi->type == I40E_VSI_FDIR) {
e240f674 5461 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
b2008cbf
CW
5462 dev_driver_string(&pf->pdev->dev),
5463 dev_name(&pf->pdev->dev));
8a9eb7d3 5464 err = i40e_vsi_request_irq(vsi, int_name);
b2008cbf 5465
c22e3c6c 5466 } else {
ce9ccb17 5467 err = -EINVAL;
6c167f58
EK
5468 goto err_setup_rx;
5469 }
25946ddb 5470
41c445ff
JB
5471 err = i40e_up_complete(vsi);
5472 if (err)
5473 goto err_up_complete;
5474
41c445ff
JB
5475 return 0;
5476
5477err_up_complete:
5478 i40e_down(vsi);
25946ddb 5479err_set_queues:
41c445ff
JB
5480 i40e_vsi_free_irq(vsi);
5481err_setup_rx:
5482 i40e_vsi_free_rx_resources(vsi);
5483err_setup_tx:
5484 i40e_vsi_free_tx_resources(vsi);
5485 if (vsi == pf->vsi[pf->lan_vsi])
41a1d04b 5486 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
41c445ff
JB
5487
5488 return err;
5489}
5490
17a73f6b
JG
5491/**
5492 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
b40c82e6 5493 * @pf: Pointer to PF
17a73f6b
JG
5494 *
5495 * This function destroys the hlist where all the Flow Director
5496 * filters were saved.
5497 **/
5498static void i40e_fdir_filter_exit(struct i40e_pf *pf)
5499{
5500 struct i40e_fdir_filter *filter;
5501 struct hlist_node *node2;
5502
5503 hlist_for_each_entry_safe(filter, node2,
5504 &pf->fdir_filter_list, fdir_node) {
5505 hlist_del(&filter->fdir_node);
5506 kfree(filter);
5507 }
5508 pf->fdir_pf_active_filters = 0;
5509}
5510
41c445ff
JB
5511/**
5512 * i40e_close - Disables a network interface
5513 * @netdev: network interface device structure
5514 *
5515 * The close entry point is called when an interface is de-activated
5516 * by the OS. The hardware is still under the driver's control, but
5517 * this netdev interface is disabled.
5518 *
5519 * Returns 0, this is not allowed to fail
5520 **/
38e00438 5521int i40e_close(struct net_device *netdev)
41c445ff
JB
5522{
5523 struct i40e_netdev_priv *np = netdev_priv(netdev);
5524 struct i40e_vsi *vsi = np->vsi;
5525
90ef8d47 5526 i40e_vsi_close(vsi);
41c445ff
JB
5527
5528 return 0;
5529}
5530
5531/**
5532 * i40e_do_reset - Start a PF or Core Reset sequence
5533 * @pf: board private structure
5534 * @reset_flags: which reset is requested
5535 *
5536 * The essential difference in resets is that the PF Reset
5537 * doesn't clear the packet buffers, doesn't reset the PE
5538 * firmware, and doesn't bother the other PFs on the chip.
5539 **/
5540void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5541{
5542 u32 val;
5543
5544 WARN_ON(in_interrupt());
5545
263fc48f 5546
41c445ff 5547 /* do the biggest reset indicated */
41a1d04b 5548 if (reset_flags & BIT_ULL(__I40E_GLOBAL_RESET_REQUESTED)) {
41c445ff
JB
5549
5550 /* Request a Global Reset
5551 *
5552 * This will start the chip's countdown to the actual full
5553 * chip reset event, and a warning interrupt to be sent
5554 * to all PFs, including the requestor. Our handler
5555 * for the warning interrupt will deal with the shutdown
5556 * and recovery of the switch setup.
5557 */
69bfb110 5558 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
41c445ff
JB
5559 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5560 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5561 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5562
41a1d04b 5563 } else if (reset_flags & BIT_ULL(__I40E_CORE_RESET_REQUESTED)) {
41c445ff
JB
5564
5565 /* Request a Core Reset
5566 *
5567 * Same as Global Reset, except does *not* include the MAC/PHY
5568 */
69bfb110 5569 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
41c445ff
JB
5570 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5571 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5572 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5573 i40e_flush(&pf->hw);
5574
41a1d04b 5575 } else if (reset_flags & BIT_ULL(__I40E_PF_RESET_REQUESTED)) {
41c445ff
JB
5576
5577 /* Request a PF Reset
5578 *
5579 * Resets only the PF-specific registers
5580 *
5581 * This goes directly to the tear-down and rebuild of
5582 * the switch, since we need to do all the recovery as
5583 * for the Core Reset.
5584 */
69bfb110 5585 dev_dbg(&pf->pdev->dev, "PFR requested\n");
41c445ff
JB
5586 i40e_handle_reset_warning(pf);
5587
41a1d04b 5588 } else if (reset_flags & BIT_ULL(__I40E_REINIT_REQUESTED)) {
41c445ff
JB
5589 int v;
5590
5591 /* Find the VSI(s) that requested a re-init */
5592 dev_info(&pf->pdev->dev,
5593 "VSI reinit requested\n");
505682cd 5594 for (v = 0; v < pf->num_alloc_vsi; v++) {
41c445ff 5595 struct i40e_vsi *vsi = pf->vsi[v];
6995b36c 5596
41c445ff
JB
5597 if (vsi != NULL &&
5598 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5599 i40e_vsi_reinit_locked(pf->vsi[v]);
5600 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5601 }
5602 }
41a1d04b 5603 } else if (reset_flags & BIT_ULL(__I40E_DOWN_REQUESTED)) {
b5d06f05
NP
5604 int v;
5605
5606 /* Find the VSI(s) that needs to be brought down */
5607 dev_info(&pf->pdev->dev, "VSI down requested\n");
5608 for (v = 0; v < pf->num_alloc_vsi; v++) {
5609 struct i40e_vsi *vsi = pf->vsi[v];
6995b36c 5610
b5d06f05
NP
5611 if (vsi != NULL &&
5612 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5613 set_bit(__I40E_DOWN, &vsi->state);
5614 i40e_down(vsi);
5615 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5616 }
5617 }
41c445ff
JB
5618 } else {
5619 dev_info(&pf->pdev->dev,
5620 "bad reset request 0x%08x\n", reset_flags);
41c445ff
JB
5621 }
5622}
5623
4e3b35b0
NP
5624#ifdef CONFIG_I40E_DCB
5625/**
5626 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5627 * @pf: board private structure
5628 * @old_cfg: current DCB config
5629 * @new_cfg: new DCB config
5630 **/
5631bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5632 struct i40e_dcbx_config *old_cfg,
5633 struct i40e_dcbx_config *new_cfg)
5634{
5635 bool need_reconfig = false;
5636
5637 /* Check if ETS configuration has changed */
5638 if (memcmp(&new_cfg->etscfg,
5639 &old_cfg->etscfg,
5640 sizeof(new_cfg->etscfg))) {
5641 /* If Priority Table has changed reconfig is needed */
5642 if (memcmp(&new_cfg->etscfg.prioritytable,
5643 &old_cfg->etscfg.prioritytable,
5644 sizeof(new_cfg->etscfg.prioritytable))) {
5645 need_reconfig = true;
69bfb110 5646 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
4e3b35b0
NP
5647 }
5648
5649 if (memcmp(&new_cfg->etscfg.tcbwtable,
5650 &old_cfg->etscfg.tcbwtable,
5651 sizeof(new_cfg->etscfg.tcbwtable)))
69bfb110 5652 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
4e3b35b0
NP
5653
5654 if (memcmp(&new_cfg->etscfg.tsatable,
5655 &old_cfg->etscfg.tsatable,
5656 sizeof(new_cfg->etscfg.tsatable)))
69bfb110 5657 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
4e3b35b0
NP
5658 }
5659
5660 /* Check if PFC configuration has changed */
5661 if (memcmp(&new_cfg->pfc,
5662 &old_cfg->pfc,
5663 sizeof(new_cfg->pfc))) {
5664 need_reconfig = true;
69bfb110 5665 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
4e3b35b0
NP
5666 }
5667
5668 /* Check if APP Table has changed */
5669 if (memcmp(&new_cfg->app,
5670 &old_cfg->app,
3d9667a9 5671 sizeof(new_cfg->app))) {
4e3b35b0 5672 need_reconfig = true;
69bfb110 5673 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
3d9667a9 5674 }
4e3b35b0 5675
fb43201f 5676 dev_dbg(&pf->pdev->dev, "dcb need_reconfig=%d\n", need_reconfig);
4e3b35b0
NP
5677 return need_reconfig;
5678}
5679
5680/**
5681 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5682 * @pf: board private structure
5683 * @e: event info posted on ARQ
5684 **/
5685static int i40e_handle_lldp_event(struct i40e_pf *pf,
5686 struct i40e_arq_event_info *e)
5687{
5688 struct i40e_aqc_lldp_get_mib *mib =
5689 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5690 struct i40e_hw *hw = &pf->hw;
4e3b35b0
NP
5691 struct i40e_dcbx_config tmp_dcbx_cfg;
5692 bool need_reconfig = false;
5693 int ret = 0;
5694 u8 type;
5695
4d9b6043 5696 /* Not DCB capable or capability disabled */
ea6acb7e 5697 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
4d9b6043
NP
5698 return ret;
5699
4e3b35b0
NP
5700 /* Ignore if event is not for Nearest Bridge */
5701 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5702 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
fb43201f 5703 dev_dbg(&pf->pdev->dev, "LLDP event mib bridge type 0x%x\n", type);
4e3b35b0
NP
5704 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5705 return ret;
5706
5707 /* Check MIB Type and return if event for Remote MIB update */
5708 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
9fa61dd2 5709 dev_dbg(&pf->pdev->dev,
fb43201f 5710 "LLDP event mib type %s\n", type ? "remote" : "local");
4e3b35b0
NP
5711 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5712 /* Update the remote cached instance and return */
5713 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5714 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5715 &hw->remote_dcbx_config);
5716 goto exit;
5717 }
5718
9fa61dd2 5719 /* Store the old configuration */
1a2f6248 5720 tmp_dcbx_cfg = hw->local_dcbx_config;
9fa61dd2 5721
750fcbcf
NP
5722 /* Reset the old DCBx configuration data */
5723 memset(&hw->local_dcbx_config, 0, sizeof(hw->local_dcbx_config));
9fa61dd2
NP
5724 /* Get updated DCBX data from firmware */
5725 ret = i40e_get_dcb_config(&pf->hw);
4e3b35b0 5726 if (ret) {
f1c7e72e
SN
5727 dev_info(&pf->pdev->dev,
5728 "Failed querying DCB configuration data from firmware, err %s aq_err %s\n",
5729 i40e_stat_str(&pf->hw, ret),
5730 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
4e3b35b0
NP
5731 goto exit;
5732 }
5733
5734 /* No change detected in DCBX configs */
750fcbcf
NP
5735 if (!memcmp(&tmp_dcbx_cfg, &hw->local_dcbx_config,
5736 sizeof(tmp_dcbx_cfg))) {
69bfb110 5737 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
4e3b35b0
NP
5738 goto exit;
5739 }
5740
750fcbcf
NP
5741 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg,
5742 &hw->local_dcbx_config);
4e3b35b0 5743
750fcbcf 5744 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg, &hw->local_dcbx_config);
4e3b35b0
NP
5745
5746 if (!need_reconfig)
5747 goto exit;
5748
4d9b6043 5749 /* Enable DCB tagging only when more than one TC */
750fcbcf 5750 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
4d9b6043
NP
5751 pf->flags |= I40E_FLAG_DCB_ENABLED;
5752 else
5753 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5754
69129dc3 5755 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
4e3b35b0
NP
5756 /* Reconfiguration needed quiesce all VSIs */
5757 i40e_pf_quiesce_all_vsi(pf);
5758
5759 /* Changes in configuration update VEB/VSI */
5760 i40e_dcb_reconfigure(pf);
5761
2fd75f31
NP
5762 ret = i40e_resume_port_tx(pf);
5763
69129dc3 5764 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
2fd75f31 5765 /* In case of error no point in resuming VSIs */
69129dc3
NP
5766 if (ret)
5767 goto exit;
5768
3fe06f41
NP
5769 /* Wait for the PF's queues to be disabled */
5770 ret = i40e_pf_wait_queues_disabled(pf);
11e47708
PN
5771 if (ret) {
5772 /* Schedule PF reset to recover */
5773 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5774 i40e_service_event_schedule(pf);
5775 } else {
2fd75f31 5776 i40e_pf_unquiesce_all_vsi(pf);
85a1aab7
NP
5777 /* Notify the client for the DCB changes */
5778 i40e_notify_client_of_l2_param_changes(pf->vsi[pf->lan_vsi]);
11e47708
PN
5779 }
5780
4e3b35b0
NP
5781exit:
5782 return ret;
5783}
5784#endif /* CONFIG_I40E_DCB */
5785
23326186
ASJ
5786/**
5787 * i40e_do_reset_safe - Protected reset path for userland calls.
5788 * @pf: board private structure
5789 * @reset_flags: which reset is requested
5790 *
5791 **/
5792void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5793{
5794 rtnl_lock();
5795 i40e_do_reset(pf, reset_flags);
5796 rtnl_unlock();
5797}
5798
41c445ff
JB
5799/**
5800 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5801 * @pf: board private structure
5802 * @e: event info posted on ARQ
5803 *
5804 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5805 * and VF queues
5806 **/
5807static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5808 struct i40e_arq_event_info *e)
5809{
5810 struct i40e_aqc_lan_overflow *data =
5811 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5812 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5813 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5814 struct i40e_hw *hw = &pf->hw;
5815 struct i40e_vf *vf;
5816 u16 vf_id;
5817
69bfb110
JB
5818 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5819 queue, qtx_ctl);
41c445ff
JB
5820
5821 /* Queue belongs to VF, find the VF and issue VF reset */
5822 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5823 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5824 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5825 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5826 vf_id -= hw->func_caps.vf_base_id;
5827 vf = &pf->vf[vf_id];
5828 i40e_vc_notify_vf_reset(vf);
5829 /* Allow VF to process pending reset notification */
5830 msleep(20);
5831 i40e_reset_vf(vf, false);
5832 }
5833}
5834
5835/**
5836 * i40e_service_event_complete - Finish up the service event
5837 * @pf: board private structure
5838 **/
5839static void i40e_service_event_complete(struct i40e_pf *pf)
5840{
b875f99b 5841 WARN_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
41c445ff
JB
5842
5843 /* flush memory to make sure state is correct before next watchog */
4e857c58 5844 smp_mb__before_atomic();
41c445ff
JB
5845 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5846}
5847
55a5e60b 5848/**
12957388
ASJ
5849 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5850 * @pf: board private structure
5851 **/
04294e38 5852u32 i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
12957388 5853{
04294e38 5854 u32 val, fcnt_prog;
12957388
ASJ
5855
5856 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5857 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5858 return fcnt_prog;
5859}
5860
5861/**
04294e38 5862 * i40e_get_current_fd_count - Get total FD filters programmed for this PF
55a5e60b
ASJ
5863 * @pf: board private structure
5864 **/
04294e38 5865u32 i40e_get_current_fd_count(struct i40e_pf *pf)
55a5e60b 5866{
04294e38
ASJ
5867 u32 val, fcnt_prog;
5868
55a5e60b
ASJ
5869 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5870 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5871 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5872 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5873 return fcnt_prog;
5874}
1e1be8f6 5875
04294e38
ASJ
5876/**
5877 * i40e_get_global_fd_count - Get total FD filters programmed on device
5878 * @pf: board private structure
5879 **/
5880u32 i40e_get_global_fd_count(struct i40e_pf *pf)
5881{
5882 u32 val, fcnt_prog;
5883
5884 val = rd32(&pf->hw, I40E_GLQF_FDCNT_0);
5885 fcnt_prog = (val & I40E_GLQF_FDCNT_0_GUARANT_CNT_MASK) +
5886 ((val & I40E_GLQF_FDCNT_0_BESTCNT_MASK) >>
5887 I40E_GLQF_FDCNT_0_BESTCNT_SHIFT);
5888 return fcnt_prog;
5889}
5890
55a5e60b
ASJ
5891/**
5892 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5893 * @pf: board private structure
5894 **/
5895void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5896{
3487b6c3 5897 struct i40e_fdir_filter *filter;
55a5e60b 5898 u32 fcnt_prog, fcnt_avail;
3487b6c3 5899 struct hlist_node *node;
55a5e60b 5900
1e1be8f6
ASJ
5901 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5902 return;
5903
55a5e60b
ASJ
5904 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5905 * to re-enable
5906 */
04294e38 5907 fcnt_prog = i40e_get_global_fd_count(pf);
12957388 5908 fcnt_avail = pf->fdir_pf_filter_count;
1e1be8f6
ASJ
5909 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5910 (pf->fd_add_err == 0) ||
5911 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
55a5e60b
ASJ
5912 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5913 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5914 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
2e4875e3
ASJ
5915 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5916 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
55a5e60b
ASJ
5917 }
5918 }
a3417d28
JK
5919
5920 /* Wait for some more space to be available to turn on ATR. We also
5921 * must check that no existing ntuple rules for TCP are in effect
5922 */
55a5e60b
ASJ
5923 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5924 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
a3417d28
JK
5925 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED) &&
5926 (pf->fd_tcp_rule == 0)) {
55a5e60b 5927 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
2e4875e3 5928 if (I40E_DEBUG_FD & pf->hw.debug_mask)
a3417d28 5929 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table and there are no conflicting ntuple rules\n");
55a5e60b
ASJ
5930 }
5931 }
3487b6c3
CW
5932
5933 /* if hw had a problem adding a filter, delete it */
5934 if (pf->fd_inv > 0) {
5935 hlist_for_each_entry_safe(filter, node,
5936 &pf->fdir_filter_list, fdir_node) {
5937 if (filter->fd_id == pf->fd_inv) {
5938 hlist_del(&filter->fdir_node);
5939 kfree(filter);
5940 pf->fdir_pf_active_filters--;
5941 }
5942 }
5943 }
55a5e60b
ASJ
5944}
5945
1e1be8f6 5946#define I40E_MIN_FD_FLUSH_INTERVAL 10
04294e38 5947#define I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE 30
1e1be8f6
ASJ
5948/**
5949 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5950 * @pf: board private structure
5951 **/
5952static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5953{
04294e38 5954 unsigned long min_flush_time;
1e1be8f6 5955 int flush_wait_retry = 50;
04294e38
ASJ
5956 bool disable_atr = false;
5957 int fd_room;
1e1be8f6
ASJ
5958 int reg;
5959
a5fdaf34
JB
5960 if (!time_after(jiffies, pf->fd_flush_timestamp +
5961 (I40E_MIN_FD_FLUSH_INTERVAL * HZ)))
5962 return;
04294e38 5963
a5fdaf34
JB
5964 /* If the flush is happening too quick and we have mostly SB rules we
5965 * should not re-enable ATR for some time.
5966 */
5967 min_flush_time = pf->fd_flush_timestamp +
5968 (I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE * HZ);
5969 fd_room = pf->fdir_pf_filter_count - pf->fdir_pf_active_filters;
5970
5971 if (!(time_after(jiffies, min_flush_time)) &&
5972 (fd_room < I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) {
5973 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5974 dev_info(&pf->pdev->dev, "ATR disabled, not enough FD filter space.\n");
5975 disable_atr = true;
5976 }
5977
5978 pf->fd_flush_timestamp = jiffies;
234dc4e6 5979 pf->auto_disable_flags |= I40E_FLAG_FD_ATR_ENABLED;
a5fdaf34
JB
5980 /* flush all filters */
5981 wr32(&pf->hw, I40E_PFQF_CTL_1,
5982 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5983 i40e_flush(&pf->hw);
5984 pf->fd_flush_cnt++;
5985 pf->fd_add_err = 0;
5986 do {
5987 /* Check FD flush status every 5-6msec */
5988 usleep_range(5000, 6000);
5989 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5990 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5991 break;
5992 } while (flush_wait_retry--);
5993 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5994 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5995 } else {
5996 /* replay sideband filters */
5997 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5998 if (!disable_atr)
234dc4e6 5999 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
a5fdaf34
JB
6000 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
6001 if (I40E_DEBUG_FD & pf->hw.debug_mask)
6002 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
1e1be8f6
ASJ
6003 }
6004}
6005
6006/**
6007 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
6008 * @pf: board private structure
6009 **/
04294e38 6010u32 i40e_get_current_atr_cnt(struct i40e_pf *pf)
1e1be8f6
ASJ
6011{
6012 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
6013}
6014
6015/* We can see up to 256 filter programming desc in transit if the filters are
6016 * being applied really fast; before we see the first
6017 * filter miss error on Rx queue 0. Accumulating enough error messages before
6018 * reacting will make sure we don't cause flush too often.
6019 */
6020#define I40E_MAX_FD_PROGRAM_ERROR 256
6021
41c445ff
JB
6022/**
6023 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
6024 * @pf: board private structure
6025 **/
6026static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
6027{
41c445ff 6028
41c445ff
JB
6029 /* if interface is down do nothing */
6030 if (test_bit(__I40E_DOWN, &pf->state))
6031 return;
1e1be8f6 6032
04294e38 6033 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
1e1be8f6
ASJ
6034 i40e_fdir_flush_and_replay(pf);
6035
55a5e60b
ASJ
6036 i40e_fdir_check_and_reenable(pf);
6037
41c445ff
JB
6038}
6039
6040/**
6041 * i40e_vsi_link_event - notify VSI of a link event
6042 * @vsi: vsi to be notified
6043 * @link_up: link up or down
6044 **/
6045static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
6046{
32b5b811 6047 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
41c445ff
JB
6048 return;
6049
6050 switch (vsi->type) {
6051 case I40E_VSI_MAIN:
38e00438
VD
6052#ifdef I40E_FCOE
6053 case I40E_VSI_FCOE:
6054#endif
41c445ff
JB
6055 if (!vsi->netdev || !vsi->netdev_registered)
6056 break;
6057
6058 if (link_up) {
6059 netif_carrier_on(vsi->netdev);
6060 netif_tx_wake_all_queues(vsi->netdev);
6061 } else {
6062 netif_carrier_off(vsi->netdev);
6063 netif_tx_stop_all_queues(vsi->netdev);
6064 }
6065 break;
6066
6067 case I40E_VSI_SRIOV:
41c445ff
JB
6068 case I40E_VSI_VMDQ2:
6069 case I40E_VSI_CTRL:
e3219ce6 6070 case I40E_VSI_IWARP:
41c445ff
JB
6071 case I40E_VSI_MIRROR:
6072 default:
6073 /* there is no notification for other VSIs */
6074 break;
6075 }
6076}
6077
6078/**
6079 * i40e_veb_link_event - notify elements on the veb of a link event
6080 * @veb: veb to be notified
6081 * @link_up: link up or down
6082 **/
6083static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
6084{
6085 struct i40e_pf *pf;
6086 int i;
6087
6088 if (!veb || !veb->pf)
6089 return;
6090 pf = veb->pf;
6091
6092 /* depth first... */
6093 for (i = 0; i < I40E_MAX_VEB; i++)
6094 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
6095 i40e_veb_link_event(pf->veb[i], link_up);
6096
6097 /* ... now the local VSIs */
505682cd 6098 for (i = 0; i < pf->num_alloc_vsi; i++)
41c445ff
JB
6099 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
6100 i40e_vsi_link_event(pf->vsi[i], link_up);
6101}
6102
6103/**
6104 * i40e_link_event - Update netif_carrier status
6105 * @pf: board private structure
6106 **/
6107static void i40e_link_event(struct i40e_pf *pf)
6108{
320684cd 6109 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
fef59ddf 6110 u8 new_link_speed, old_link_speed;
a72a5abc
JB
6111 i40e_status status;
6112 bool new_link, old_link;
41c445ff 6113
1f9610e4
CS
6114 /* save off old link status information */
6115 pf->hw.phy.link_info_old = pf->hw.phy.link_info;
6116
1e701e09
JB
6117 /* set this to force the get_link_status call to refresh state */
6118 pf->hw.phy.get_link_info = true;
6119
41c445ff 6120 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
a72a5abc
JB
6121
6122 status = i40e_get_link_status(&pf->hw, &new_link);
6123 if (status) {
6124 dev_dbg(&pf->pdev->dev, "couldn't get link state, status: %d\n",
6125 status);
6126 return;
6127 }
6128
fef59ddf
CS
6129 old_link_speed = pf->hw.phy.link_info_old.link_speed;
6130 new_link_speed = pf->hw.phy.link_info.link_speed;
41c445ff 6131
1e701e09 6132 if (new_link == old_link &&
fef59ddf 6133 new_link_speed == old_link_speed &&
320684cd
MW
6134 (test_bit(__I40E_DOWN, &vsi->state) ||
6135 new_link == netif_carrier_ok(vsi->netdev)))
41c445ff 6136 return;
320684cd
MW
6137
6138 if (!test_bit(__I40E_DOWN, &vsi->state))
6139 i40e_print_link_message(vsi, new_link);
41c445ff
JB
6140
6141 /* Notify the base of the switch tree connected to
6142 * the link. Floating VEBs are not notified.
6143 */
6144 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
6145 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
6146 else
320684cd 6147 i40e_vsi_link_event(vsi, new_link);
41c445ff
JB
6148
6149 if (pf->vf)
6150 i40e_vc_notify_link_state(pf);
beb0dff1
JK
6151
6152 if (pf->flags & I40E_FLAG_PTP)
6153 i40e_ptp_set_increment(pf);
41c445ff
JB
6154}
6155
41c445ff 6156/**
21536717 6157 * i40e_watchdog_subtask - periodic checks not using event driven response
41c445ff
JB
6158 * @pf: board private structure
6159 **/
6160static void i40e_watchdog_subtask(struct i40e_pf *pf)
6161{
6162 int i;
6163
6164 /* if interface is down do nothing */
6165 if (test_bit(__I40E_DOWN, &pf->state) ||
6166 test_bit(__I40E_CONFIG_BUSY, &pf->state))
6167 return;
6168
21536717
SN
6169 /* make sure we don't do these things too often */
6170 if (time_before(jiffies, (pf->service_timer_previous +
6171 pf->service_timer_period)))
6172 return;
6173 pf->service_timer_previous = jiffies;
6174
9ac77266
SN
6175 if (pf->flags & I40E_FLAG_LINK_POLLING_ENABLED)
6176 i40e_link_event(pf);
21536717 6177
41c445ff
JB
6178 /* Update the stats for active netdevs so the network stack
6179 * can look at updated numbers whenever it cares to
6180 */
505682cd 6181 for (i = 0; i < pf->num_alloc_vsi; i++)
41c445ff
JB
6182 if (pf->vsi[i] && pf->vsi[i]->netdev)
6183 i40e_update_stats(pf->vsi[i]);
6184
d1a8d275
ASJ
6185 if (pf->flags & I40E_FLAG_VEB_STATS_ENABLED) {
6186 /* Update the stats for the active switching components */
6187 for (i = 0; i < I40E_MAX_VEB; i++)
6188 if (pf->veb[i])
6189 i40e_update_veb_stats(pf->veb[i]);
6190 }
beb0dff1
JK
6191
6192 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
41c445ff
JB
6193}
6194
6195/**
6196 * i40e_reset_subtask - Set up for resetting the device and driver
6197 * @pf: board private structure
6198 **/
6199static void i40e_reset_subtask(struct i40e_pf *pf)
6200{
6201 u32 reset_flags = 0;
6202
23326186 6203 rtnl_lock();
41c445ff 6204 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
75f5cea9 6205 reset_flags |= BIT(__I40E_REINIT_REQUESTED);
41c445ff
JB
6206 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
6207 }
6208 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
75f5cea9 6209 reset_flags |= BIT(__I40E_PF_RESET_REQUESTED);
41c445ff
JB
6210 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6211 }
6212 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
75f5cea9 6213 reset_flags |= BIT(__I40E_CORE_RESET_REQUESTED);
41c445ff
JB
6214 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
6215 }
6216 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
75f5cea9 6217 reset_flags |= BIT(__I40E_GLOBAL_RESET_REQUESTED);
41c445ff
JB
6218 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
6219 }
b5d06f05 6220 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
75f5cea9 6221 reset_flags |= BIT(__I40E_DOWN_REQUESTED);
b5d06f05
NP
6222 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
6223 }
41c445ff
JB
6224
6225 /* If there's a recovery already waiting, it takes
6226 * precedence before starting a new reset sequence.
6227 */
6228 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
6229 i40e_handle_reset_warning(pf);
23326186 6230 goto unlock;
41c445ff
JB
6231 }
6232
6233 /* If we're already down or resetting, just bail */
6234 if (reset_flags &&
6235 !test_bit(__I40E_DOWN, &pf->state) &&
6236 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
6237 i40e_do_reset(pf, reset_flags);
23326186
ASJ
6238
6239unlock:
6240 rtnl_unlock();
41c445ff
JB
6241}
6242
6243/**
6244 * i40e_handle_link_event - Handle link event
6245 * @pf: board private structure
6246 * @e: event info posted on ARQ
6247 **/
6248static void i40e_handle_link_event(struct i40e_pf *pf,
6249 struct i40e_arq_event_info *e)
6250{
41c445ff
JB
6251 struct i40e_aqc_get_link_status *status =
6252 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
41c445ff 6253
1e701e09
JB
6254 /* Do a new status request to re-enable LSE reporting
6255 * and load new status information into the hw struct
6256 * This completely ignores any state information
6257 * in the ARQ event info, instead choosing to always
6258 * issue the AQ update link status command.
6259 */
6260 i40e_link_event(pf);
6261
7b592f61
CW
6262 /* check for unqualified module, if link is down */
6263 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
6264 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
6265 (!(status->link_info & I40E_AQ_LINK_UP)))
6266 dev_err(&pf->pdev->dev,
6267 "The driver failed to link because an unqualified module was detected.\n");
41c445ff
JB
6268}
6269
6270/**
6271 * i40e_clean_adminq_subtask - Clean the AdminQ rings
6272 * @pf: board private structure
6273 **/
6274static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
6275{
6276 struct i40e_arq_event_info event;
6277 struct i40e_hw *hw = &pf->hw;
6278 u16 pending, i = 0;
6279 i40e_status ret;
6280 u16 opcode;
86df242b 6281 u32 oldval;
41c445ff
JB
6282 u32 val;
6283
a316f651
ASJ
6284 /* Do not run clean AQ when PF reset fails */
6285 if (test_bit(__I40E_RESET_FAILED, &pf->state))
6286 return;
6287
86df242b
SN
6288 /* check for error indications */
6289 val = rd32(&pf->hw, pf->hw.aq.arq.len);
6290 oldval = val;
6291 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
75eb73c1
MW
6292 if (hw->debug_mask & I40E_DEBUG_AQ)
6293 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
86df242b
SN
6294 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
6295 }
6296 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
75eb73c1
MW
6297 if (hw->debug_mask & I40E_DEBUG_AQ)
6298 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
86df242b 6299 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
1d0a4ada 6300 pf->arq_overflows++;
86df242b
SN
6301 }
6302 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
75eb73c1
MW
6303 if (hw->debug_mask & I40E_DEBUG_AQ)
6304 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
86df242b
SN
6305 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
6306 }
6307 if (oldval != val)
6308 wr32(&pf->hw, pf->hw.aq.arq.len, val);
6309
6310 val = rd32(&pf->hw, pf->hw.aq.asq.len);
6311 oldval = val;
6312 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
75eb73c1
MW
6313 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6314 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
86df242b
SN
6315 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
6316 }
6317 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
75eb73c1
MW
6318 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6319 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
86df242b
SN
6320 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
6321 }
6322 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
75eb73c1
MW
6323 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6324 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
86df242b
SN
6325 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
6326 }
6327 if (oldval != val)
6328 wr32(&pf->hw, pf->hw.aq.asq.len, val);
6329
1001dc37
MW
6330 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
6331 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
41c445ff
JB
6332 if (!event.msg_buf)
6333 return;
6334
6335 do {
6336 ret = i40e_clean_arq_element(hw, &event, &pending);
56497978 6337 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
41c445ff 6338 break;
56497978 6339 else if (ret) {
41c445ff
JB
6340 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
6341 break;
6342 }
6343
6344 opcode = le16_to_cpu(event.desc.opcode);
6345 switch (opcode) {
6346
6347 case i40e_aqc_opc_get_link_status:
6348 i40e_handle_link_event(pf, &event);
6349 break;
6350 case i40e_aqc_opc_send_msg_to_pf:
6351 ret = i40e_vc_process_vf_msg(pf,
6352 le16_to_cpu(event.desc.retval),
6353 le32_to_cpu(event.desc.cookie_high),
6354 le32_to_cpu(event.desc.cookie_low),
6355 event.msg_buf,
1001dc37 6356 event.msg_len);
41c445ff
JB
6357 break;
6358 case i40e_aqc_opc_lldp_update_mib:
69bfb110 6359 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
4e3b35b0
NP
6360#ifdef CONFIG_I40E_DCB
6361 rtnl_lock();
6362 ret = i40e_handle_lldp_event(pf, &event);
6363 rtnl_unlock();
6364#endif /* CONFIG_I40E_DCB */
41c445ff
JB
6365 break;
6366 case i40e_aqc_opc_event_lan_overflow:
69bfb110 6367 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
41c445ff
JB
6368 i40e_handle_lan_overflow_event(pf, &event);
6369 break;
0467bc91
SN
6370 case i40e_aqc_opc_send_msg_to_peer:
6371 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
6372 break;
91a0f930
SN
6373 case i40e_aqc_opc_nvm_erase:
6374 case i40e_aqc_opc_nvm_update:
00ada50d 6375 case i40e_aqc_opc_oem_post_update:
6e93d0c9
SN
6376 i40e_debug(&pf->hw, I40E_DEBUG_NVM,
6377 "ARQ NVM operation 0x%04x completed\n",
6378 opcode);
91a0f930 6379 break;
41c445ff
JB
6380 default:
6381 dev_info(&pf->pdev->dev,
56e5ca68 6382 "ARQ: Unknown event 0x%04x ignored\n",
0467bc91 6383 opcode);
41c445ff
JB
6384 break;
6385 }
6386 } while (pending && (i++ < pf->adminq_work_limit));
6387
6388 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
6389 /* re-enable Admin queue interrupt cause */
6390 val = rd32(hw, I40E_PFINT_ICR0_ENA);
6391 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
6392 wr32(hw, I40E_PFINT_ICR0_ENA, val);
6393 i40e_flush(hw);
6394
6395 kfree(event.msg_buf);
6396}
6397
4eb3f768
SN
6398/**
6399 * i40e_verify_eeprom - make sure eeprom is good to use
6400 * @pf: board private structure
6401 **/
6402static void i40e_verify_eeprom(struct i40e_pf *pf)
6403{
6404 int err;
6405
6406 err = i40e_diag_eeprom_test(&pf->hw);
6407 if (err) {
6408 /* retry in case of garbage read */
6409 err = i40e_diag_eeprom_test(&pf->hw);
6410 if (err) {
6411 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
6412 err);
6413 set_bit(__I40E_BAD_EEPROM, &pf->state);
6414 }
6415 }
6416
6417 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
6418 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
6419 clear_bit(__I40E_BAD_EEPROM, &pf->state);
6420 }
6421}
6422
386a0afa
AA
6423/**
6424 * i40e_enable_pf_switch_lb
b40c82e6 6425 * @pf: pointer to the PF structure
386a0afa
AA
6426 *
6427 * enable switch loop back or die - no point in a return value
6428 **/
6429static void i40e_enable_pf_switch_lb(struct i40e_pf *pf)
6430{
6431 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6432 struct i40e_vsi_context ctxt;
f1c7e72e 6433 int ret;
386a0afa
AA
6434
6435 ctxt.seid = pf->main_vsi_seid;
6436 ctxt.pf_num = pf->hw.pf_id;
6437 ctxt.vf_num = 0;
f1c7e72e
SN
6438 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6439 if (ret) {
386a0afa 6440 dev_info(&pf->pdev->dev,
f1c7e72e
SN
6441 "couldn't get PF vsi config, err %s aq_err %s\n",
6442 i40e_stat_str(&pf->hw, ret),
6443 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
386a0afa
AA
6444 return;
6445 }
6446 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6447 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6448 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6449
f1c7e72e
SN
6450 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6451 if (ret) {
386a0afa 6452 dev_info(&pf->pdev->dev,
f1c7e72e
SN
6453 "update vsi switch failed, err %s aq_err %s\n",
6454 i40e_stat_str(&pf->hw, ret),
6455 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
386a0afa
AA
6456 }
6457}
6458
6459/**
6460 * i40e_disable_pf_switch_lb
b40c82e6 6461 * @pf: pointer to the PF structure
386a0afa
AA
6462 *
6463 * disable switch loop back or die - no point in a return value
6464 **/
6465static void i40e_disable_pf_switch_lb(struct i40e_pf *pf)
6466{
6467 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6468 struct i40e_vsi_context ctxt;
f1c7e72e 6469 int ret;
386a0afa
AA
6470
6471 ctxt.seid = pf->main_vsi_seid;
6472 ctxt.pf_num = pf->hw.pf_id;
6473 ctxt.vf_num = 0;
f1c7e72e
SN
6474 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6475 if (ret) {
386a0afa 6476 dev_info(&pf->pdev->dev,
f1c7e72e
SN
6477 "couldn't get PF vsi config, err %s aq_err %s\n",
6478 i40e_stat_str(&pf->hw, ret),
6479 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
386a0afa
AA
6480 return;
6481 }
6482 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6483 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6484 ctxt.info.switch_id &= ~cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6485
f1c7e72e
SN
6486 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6487 if (ret) {
386a0afa 6488 dev_info(&pf->pdev->dev,
f1c7e72e
SN
6489 "update vsi switch failed, err %s aq_err %s\n",
6490 i40e_stat_str(&pf->hw, ret),
6491 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
386a0afa
AA
6492 }
6493}
6494
51616018
NP
6495/**
6496 * i40e_config_bridge_mode - Configure the HW bridge mode
6497 * @veb: pointer to the bridge instance
6498 *
6499 * Configure the loop back mode for the LAN VSI that is downlink to the
6500 * specified HW bridge instance. It is expected this function is called
6501 * when a new HW bridge is instantiated.
6502 **/
6503static void i40e_config_bridge_mode(struct i40e_veb *veb)
6504{
6505 struct i40e_pf *pf = veb->pf;
6506
6dec1017
SN
6507 if (pf->hw.debug_mask & I40E_DEBUG_LAN)
6508 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
6509 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
51616018
NP
6510 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
6511 i40e_disable_pf_switch_lb(pf);
6512 else
6513 i40e_enable_pf_switch_lb(pf);
6514}
6515
41c445ff
JB
6516/**
6517 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
6518 * @veb: pointer to the VEB instance
6519 *
6520 * This is a recursive function that first builds the attached VSIs then
6521 * recurses in to build the next layer of VEB. We track the connections
6522 * through our own index numbers because the seid's from the HW could
6523 * change across the reset.
6524 **/
6525static int i40e_reconstitute_veb(struct i40e_veb *veb)
6526{
6527 struct i40e_vsi *ctl_vsi = NULL;
6528 struct i40e_pf *pf = veb->pf;
6529 int v, veb_idx;
6530 int ret;
6531
6532 /* build VSI that owns this VEB, temporarily attached to base VEB */
505682cd 6533 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
41c445ff
JB
6534 if (pf->vsi[v] &&
6535 pf->vsi[v]->veb_idx == veb->idx &&
6536 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
6537 ctl_vsi = pf->vsi[v];
6538 break;
6539 }
6540 }
6541 if (!ctl_vsi) {
6542 dev_info(&pf->pdev->dev,
6543 "missing owner VSI for veb_idx %d\n", veb->idx);
6544 ret = -ENOENT;
6545 goto end_reconstitute;
6546 }
6547 if (ctl_vsi != pf->vsi[pf->lan_vsi])
6548 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
6549 ret = i40e_add_vsi(ctl_vsi);
6550 if (ret) {
6551 dev_info(&pf->pdev->dev,
f1c7e72e
SN
6552 "rebuild of veb_idx %d owner VSI failed: %d\n",
6553 veb->idx, ret);
41c445ff
JB
6554 goto end_reconstitute;
6555 }
6556 i40e_vsi_reset_stats(ctl_vsi);
6557
6558 /* create the VEB in the switch and move the VSI onto the VEB */
6559 ret = i40e_add_veb(veb, ctl_vsi);
6560 if (ret)
6561 goto end_reconstitute;
6562
fc60861e
ASJ
6563 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
6564 veb->bridge_mode = BRIDGE_MODE_VEB;
6565 else
6566 veb->bridge_mode = BRIDGE_MODE_VEPA;
51616018 6567 i40e_config_bridge_mode(veb);
b64ba084 6568
41c445ff 6569 /* create the remaining VSIs attached to this VEB */
505682cd 6570 for (v = 0; v < pf->num_alloc_vsi; v++) {
41c445ff
JB
6571 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
6572 continue;
6573
6574 if (pf->vsi[v]->veb_idx == veb->idx) {
6575 struct i40e_vsi *vsi = pf->vsi[v];
6995b36c 6576
41c445ff
JB
6577 vsi->uplink_seid = veb->seid;
6578 ret = i40e_add_vsi(vsi);
6579 if (ret) {
6580 dev_info(&pf->pdev->dev,
6581 "rebuild of vsi_idx %d failed: %d\n",
6582 v, ret);
6583 goto end_reconstitute;
6584 }
6585 i40e_vsi_reset_stats(vsi);
6586 }
6587 }
6588
6589 /* create any VEBs attached to this VEB - RECURSION */
6590 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
6591 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
6592 pf->veb[veb_idx]->uplink_seid = veb->seid;
6593 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
6594 if (ret)
6595 break;
6596 }
6597 }
6598
6599end_reconstitute:
6600 return ret;
6601}
6602
6603/**
6604 * i40e_get_capabilities - get info about the HW
6605 * @pf: the PF struct
6606 **/
6607static int i40e_get_capabilities(struct i40e_pf *pf)
6608{
6609 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
6610 u16 data_size;
6611 int buf_len;
6612 int err;
6613
6614 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6615 do {
6616 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6617 if (!cap_buf)
6618 return -ENOMEM;
6619
6620 /* this loads the data into the hw struct for us */
6621 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6622 &data_size,
6623 i40e_aqc_opc_list_func_capabilities,
6624 NULL);
6625 /* data loaded, buffer no longer needed */
6626 kfree(cap_buf);
6627
6628 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6629 /* retry with a larger buffer */
6630 buf_len = data_size;
6631 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6632 dev_info(&pf->pdev->dev,
f1c7e72e
SN
6633 "capability discovery failed, err %s aq_err %s\n",
6634 i40e_stat_str(&pf->hw, err),
6635 i40e_aq_str(&pf->hw,
6636 pf->hw.aq.asq_last_status));
41c445ff
JB
6637 return -ENODEV;
6638 }
6639 } while (err);
6640
6641 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6642 dev_info(&pf->pdev->dev,
6643 "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",
6644 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6645 pf->hw.func_caps.num_msix_vectors,
6646 pf->hw.func_caps.num_msix_vectors_vf,
6647 pf->hw.func_caps.fd_filters_guaranteed,
6648 pf->hw.func_caps.fd_filters_best_effort,
6649 pf->hw.func_caps.num_tx_qp,
6650 pf->hw.func_caps.num_vsis);
6651
7134f9ce
JB
6652#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6653 + pf->hw.func_caps.num_vfs)
6654 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6655 dev_info(&pf->pdev->dev,
6656 "got num_vsis %d, setting num_vsis to %d\n",
6657 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6658 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6659 }
6660
41c445ff
JB
6661 return 0;
6662}
6663
cbf61325
ASJ
6664static int i40e_vsi_clear(struct i40e_vsi *vsi);
6665
41c445ff 6666/**
cbf61325 6667 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
41c445ff
JB
6668 * @pf: board private structure
6669 **/
cbf61325 6670static void i40e_fdir_sb_setup(struct i40e_pf *pf)
41c445ff
JB
6671{
6672 struct i40e_vsi *vsi;
8a9eb7d3 6673 int i;
41c445ff 6674
407e063c
JB
6675 /* quick workaround for an NVM issue that leaves a critical register
6676 * uninitialized
6677 */
6678 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6679 static const u32 hkey[] = {
6680 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6681 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6682 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6683 0x95b3a76d};
6684
6685 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6686 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6687 }
6688
cbf61325 6689 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
41c445ff
JB
6690 return;
6691
cbf61325 6692 /* find existing VSI and see if it needs configuring */
41c445ff 6693 vsi = NULL;
505682cd 6694 for (i = 0; i < pf->num_alloc_vsi; i++) {
cbf61325 6695 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
41c445ff 6696 vsi = pf->vsi[i];
cbf61325
ASJ
6697 break;
6698 }
6699 }
6700
6701 /* create a new VSI if none exists */
41c445ff 6702 if (!vsi) {
cbf61325
ASJ
6703 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6704 pf->vsi[pf->lan_vsi]->seid, 0);
41c445ff
JB
6705 if (!vsi) {
6706 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
8a9eb7d3
SN
6707 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6708 return;
41c445ff 6709 }
cbf61325 6710 }
41c445ff 6711
8a9eb7d3 6712 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
41c445ff
JB
6713}
6714
6715/**
6716 * i40e_fdir_teardown - release the Flow Director resources
6717 * @pf: board private structure
6718 **/
6719static void i40e_fdir_teardown(struct i40e_pf *pf)
6720{
6721 int i;
6722
17a73f6b 6723 i40e_fdir_filter_exit(pf);
505682cd 6724 for (i = 0; i < pf->num_alloc_vsi; i++) {
41c445ff
JB
6725 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6726 i40e_vsi_release(pf->vsi[i]);
6727 break;
6728 }
6729 }
6730}
6731
6732/**
f650a38b 6733 * i40e_prep_for_reset - prep for the core to reset
41c445ff
JB
6734 * @pf: board private structure
6735 *
b40c82e6 6736 * Close up the VFs and other things in prep for PF Reset.
f650a38b 6737 **/
23cfbe07 6738static void i40e_prep_for_reset(struct i40e_pf *pf)
41c445ff 6739{
41c445ff 6740 struct i40e_hw *hw = &pf->hw;
60442dea 6741 i40e_status ret = 0;
41c445ff
JB
6742 u32 v;
6743
6744 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6745 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
23cfbe07 6746 return;
d3ce5734
MW
6747 if (i40e_check_asq_alive(&pf->hw))
6748 i40e_vc_notify_reset(pf);
41c445ff 6749
69bfb110 6750 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
41c445ff 6751
41c445ff
JB
6752 /* quiesce the VSIs and their queues that are not already DOWN */
6753 i40e_pf_quiesce_all_vsi(pf);
6754
505682cd 6755 for (v = 0; v < pf->num_alloc_vsi; v++) {
41c445ff
JB
6756 if (pf->vsi[v])
6757 pf->vsi[v]->seid = 0;
6758 }
6759
6760 i40e_shutdown_adminq(&pf->hw);
6761
f650a38b 6762 /* call shutdown HMC */
60442dea
SN
6763 if (hw->hmc.hmc_obj) {
6764 ret = i40e_shutdown_lan_hmc(hw);
23cfbe07 6765 if (ret)
60442dea
SN
6766 dev_warn(&pf->pdev->dev,
6767 "shutdown_lan_hmc failed: %d\n", ret);
f650a38b 6768 }
f650a38b
ASJ
6769}
6770
44033fac
JB
6771/**
6772 * i40e_send_version - update firmware with driver version
6773 * @pf: PF struct
6774 */
6775static void i40e_send_version(struct i40e_pf *pf)
6776{
6777 struct i40e_driver_version dv;
6778
6779 dv.major_version = DRV_VERSION_MAJOR;
6780 dv.minor_version = DRV_VERSION_MINOR;
6781 dv.build_version = DRV_VERSION_BUILD;
6782 dv.subbuild_version = 0;
35a7d804 6783 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
44033fac
JB
6784 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6785}
6786
f650a38b 6787/**
4dda12e6 6788 * i40e_reset_and_rebuild - reset and rebuild using a saved config
f650a38b 6789 * @pf: board private structure
bc7d338f 6790 * @reinit: if the Main VSI needs to re-initialized.
f650a38b 6791 **/
bc7d338f 6792static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
f650a38b 6793{
f650a38b 6794 struct i40e_hw *hw = &pf->hw;
cafa2ee6 6795 u8 set_fc_aq_fail = 0;
f650a38b 6796 i40e_status ret;
4f2f017c 6797 u32 val;
f650a38b
ASJ
6798 u32 v;
6799
41c445ff
JB
6800 /* Now we wait for GRST to settle out.
6801 * We don't have to delete the VEBs or VSIs from the hw switch
6802 * because the reset will make them disappear.
6803 */
6804 ret = i40e_pf_reset(hw);
b5565400 6805 if (ret) {
41c445ff 6806 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
a316f651
ASJ
6807 set_bit(__I40E_RESET_FAILED, &pf->state);
6808 goto clear_recovery;
b5565400 6809 }
41c445ff
JB
6810 pf->pfr_count++;
6811
6812 if (test_bit(__I40E_DOWN, &pf->state))
a316f651 6813 goto clear_recovery;
69bfb110 6814 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
41c445ff
JB
6815
6816 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6817 ret = i40e_init_adminq(&pf->hw);
6818 if (ret) {
f1c7e72e
SN
6819 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, err %s aq_err %s\n",
6820 i40e_stat_str(&pf->hw, ret),
6821 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
a316f651 6822 goto clear_recovery;
41c445ff
JB
6823 }
6824
4eb3f768 6825 /* re-verify the eeprom if we just had an EMP reset */
9df42d1a 6826 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state))
4eb3f768 6827 i40e_verify_eeprom(pf);
4eb3f768 6828
e78ac4bf 6829 i40e_clear_pxe_mode(hw);
41c445ff 6830 ret = i40e_get_capabilities(pf);
f1c7e72e 6831 if (ret)
41c445ff 6832 goto end_core_reset;
41c445ff 6833
41c445ff
JB
6834 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6835 hw->func_caps.num_rx_qp,
6836 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6837 if (ret) {
6838 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6839 goto end_core_reset;
6840 }
6841 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6842 if (ret) {
6843 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6844 goto end_core_reset;
6845 }
6846
4e3b35b0
NP
6847#ifdef CONFIG_I40E_DCB
6848 ret = i40e_init_pf_dcb(pf);
6849 if (ret) {
aebfc816
SN
6850 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6851 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6852 /* Continue without DCB enabled */
4e3b35b0
NP
6853 }
6854#endif /* CONFIG_I40E_DCB */
38e00438 6855#ifdef I40E_FCOE
21364bcf 6856 i40e_init_pf_fcoe(pf);
4e3b35b0 6857
38e00438 6858#endif
41c445ff 6859 /* do basic switch setup */
bc7d338f 6860 ret = i40e_setup_pf_switch(pf, reinit);
41c445ff
JB
6861 if (ret)
6862 goto end_core_reset;
6863
2f0aff41
SN
6864 /* The driver only wants link up/down and module qualification
6865 * reports from firmware. Note the negative logic.
7e2453fe
JB
6866 */
6867 ret = i40e_aq_set_phy_int_mask(&pf->hw,
2f0aff41 6868 ~(I40E_AQ_EVENT_LINK_UPDOWN |
867a79e3 6869 I40E_AQ_EVENT_MEDIA_NA |
2f0aff41 6870 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
7e2453fe 6871 if (ret)
f1c7e72e
SN
6872 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
6873 i40e_stat_str(&pf->hw, ret),
6874 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
7e2453fe 6875
cafa2ee6
ASJ
6876 /* make sure our flow control settings are restored */
6877 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6878 if (ret)
8279e495
NP
6879 dev_dbg(&pf->pdev->dev, "setting flow control: ret = %s last_status = %s\n",
6880 i40e_stat_str(&pf->hw, ret),
6881 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
cafa2ee6 6882
41c445ff
JB
6883 /* Rebuild the VSIs and VEBs that existed before reset.
6884 * They are still in our local switch element arrays, so only
6885 * need to rebuild the switch model in the HW.
6886 *
6887 * If there were VEBs but the reconstitution failed, we'll try
6888 * try to recover minimal use by getting the basic PF VSI working.
6889 */
6890 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
69bfb110 6891 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
41c445ff
JB
6892 /* find the one VEB connected to the MAC, and find orphans */
6893 for (v = 0; v < I40E_MAX_VEB; v++) {
6894 if (!pf->veb[v])
6895 continue;
6896
6897 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6898 pf->veb[v]->uplink_seid == 0) {
6899 ret = i40e_reconstitute_veb(pf->veb[v]);
6900
6901 if (!ret)
6902 continue;
6903
6904 /* If Main VEB failed, we're in deep doodoo,
6905 * so give up rebuilding the switch and set up
6906 * for minimal rebuild of PF VSI.
6907 * If orphan failed, we'll report the error
6908 * but try to keep going.
6909 */
6910 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6911 dev_info(&pf->pdev->dev,
6912 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6913 ret);
6914 pf->vsi[pf->lan_vsi]->uplink_seid
6915 = pf->mac_seid;
6916 break;
6917 } else if (pf->veb[v]->uplink_seid == 0) {
6918 dev_info(&pf->pdev->dev,
6919 "rebuild of orphan VEB failed: %d\n",
6920 ret);
6921 }
6922 }
6923 }
6924 }
6925
6926 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
cde4cbc7 6927 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
41c445ff
JB
6928 /* no VEB, so rebuild only the Main VSI */
6929 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6930 if (ret) {
6931 dev_info(&pf->pdev->dev,
6932 "rebuild of Main VSI failed: %d\n", ret);
6933 goto end_core_reset;
6934 }
6935 }
6936
4f2f017c
ASJ
6937 /* Reconfigure hardware for allowing smaller MSS in the case
6938 * of TSO, so that we avoid the MDD being fired and causing
6939 * a reset in the case of small MSS+TSO.
6940 */
6941#define I40E_REG_MSS 0x000E64DC
6942#define I40E_REG_MSS_MIN_MASK 0x3FF0000
6943#define I40E_64BYTE_MSS 0x400000
6944 val = rd32(hw, I40E_REG_MSS);
6945 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
6946 val &= ~I40E_REG_MSS_MIN_MASK;
6947 val |= I40E_64BYTE_MSS;
6948 wr32(hw, I40E_REG_MSS, val);
6949 }
6950
8eed76fa 6951 if (pf->flags & I40E_FLAG_RESTART_AUTONEG) {
025b4a54
ASJ
6952 msleep(75);
6953 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6954 if (ret)
f1c7e72e
SN
6955 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
6956 i40e_stat_str(&pf->hw, ret),
6957 i40e_aq_str(&pf->hw,
6958 pf->hw.aq.asq_last_status));
cafa2ee6 6959 }
41c445ff
JB
6960 /* reinit the misc interrupt */
6961 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6962 ret = i40e_setup_misc_vector(pf);
6963
e7358f54
ASJ
6964 /* Add a filter to drop all Flow control frames from any VSI from being
6965 * transmitted. By doing so we stop a malicious VF from sending out
6966 * PAUSE or PFC frames and potentially controlling traffic for other
6967 * PF/VF VSIs.
6968 * The FW can still send Flow control frames if enabled.
6969 */
6970 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
6971 pf->main_vsi_seid);
6972
41c445ff
JB
6973 /* restart the VSIs that were rebuilt and running before the reset */
6974 i40e_pf_unquiesce_all_vsi(pf);
6975
69f64b2b
MW
6976 if (pf->num_alloc_vfs) {
6977 for (v = 0; v < pf->num_alloc_vfs; v++)
6978 i40e_reset_vf(&pf->vf[v], true);
6979 }
6980
41c445ff 6981 /* tell the firmware that we're starting */
44033fac 6982 i40e_send_version(pf);
41c445ff
JB
6983
6984end_core_reset:
a316f651
ASJ
6985 clear_bit(__I40E_RESET_FAILED, &pf->state);
6986clear_recovery:
41c445ff
JB
6987 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6988}
6989
f650a38b 6990/**
b40c82e6 6991 * i40e_handle_reset_warning - prep for the PF to reset, reset and rebuild
f650a38b
ASJ
6992 * @pf: board private structure
6993 *
6994 * Close up the VFs and other things in prep for a Core Reset,
6995 * then get ready to rebuild the world.
6996 **/
6997static void i40e_handle_reset_warning(struct i40e_pf *pf)
6998{
23cfbe07
SN
6999 i40e_prep_for_reset(pf);
7000 i40e_reset_and_rebuild(pf, false);
f650a38b
ASJ
7001}
7002
41c445ff
JB
7003/**
7004 * i40e_handle_mdd_event
b40c82e6 7005 * @pf: pointer to the PF structure
41c445ff
JB
7006 *
7007 * Called from the MDD irq handler to identify possibly malicious vfs
7008 **/
7009static void i40e_handle_mdd_event(struct i40e_pf *pf)
7010{
7011 struct i40e_hw *hw = &pf->hw;
7012 bool mdd_detected = false;
df430b12 7013 bool pf_mdd_detected = false;
41c445ff
JB
7014 struct i40e_vf *vf;
7015 u32 reg;
7016 int i;
7017
7018 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
7019 return;
7020
7021 /* find what triggered the MDD event */
7022 reg = rd32(hw, I40E_GL_MDET_TX);
7023 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
4c33f83a
ASJ
7024 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
7025 I40E_GL_MDET_TX_PF_NUM_SHIFT;
2089ad03 7026 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
4c33f83a 7027 I40E_GL_MDET_TX_VF_NUM_SHIFT;
013f6579 7028 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
4c33f83a 7029 I40E_GL_MDET_TX_EVENT_SHIFT;
2089ad03
MW
7030 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
7031 I40E_GL_MDET_TX_QUEUE_SHIFT) -
7032 pf->hw.func_caps.base_queue;
faf32978 7033 if (netif_msg_tx_err(pf))
b40c82e6 7034 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d PF number 0x%02x VF number 0x%02x\n",
faf32978 7035 event, queue, pf_num, vf_num);
41c445ff
JB
7036 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
7037 mdd_detected = true;
7038 }
7039 reg = rd32(hw, I40E_GL_MDET_RX);
7040 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
4c33f83a
ASJ
7041 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
7042 I40E_GL_MDET_RX_FUNCTION_SHIFT;
013f6579 7043 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
4c33f83a 7044 I40E_GL_MDET_RX_EVENT_SHIFT;
2089ad03
MW
7045 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
7046 I40E_GL_MDET_RX_QUEUE_SHIFT) -
7047 pf->hw.func_caps.base_queue;
faf32978
JB
7048 if (netif_msg_rx_err(pf))
7049 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
7050 event, queue, func);
41c445ff
JB
7051 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
7052 mdd_detected = true;
7053 }
7054
df430b12
NP
7055 if (mdd_detected) {
7056 reg = rd32(hw, I40E_PF_MDET_TX);
7057 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
7058 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
faf32978 7059 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
df430b12
NP
7060 pf_mdd_detected = true;
7061 }
7062 reg = rd32(hw, I40E_PF_MDET_RX);
7063 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
7064 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
faf32978 7065 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
df430b12
NP
7066 pf_mdd_detected = true;
7067 }
7068 /* Queue belongs to the PF, initiate a reset */
7069 if (pf_mdd_detected) {
7070 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
7071 i40e_service_event_schedule(pf);
7072 }
7073 }
7074
41c445ff
JB
7075 /* see if one of the VFs needs its hand slapped */
7076 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
7077 vf = &(pf->vf[i]);
7078 reg = rd32(hw, I40E_VP_MDET_TX(i));
7079 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
7080 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
7081 vf->num_mdd_events++;
faf32978
JB
7082 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
7083 i);
41c445ff
JB
7084 }
7085
7086 reg = rd32(hw, I40E_VP_MDET_RX(i));
7087 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
7088 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
7089 vf->num_mdd_events++;
faf32978
JB
7090 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
7091 i);
41c445ff
JB
7092 }
7093
7094 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
7095 dev_info(&pf->pdev->dev,
7096 "Too many MDD events on VF %d, disabled\n", i);
7097 dev_info(&pf->pdev->dev,
7098 "Use PF Control I/F to re-enable the VF\n");
7099 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
7100 }
7101 }
7102
7103 /* re-enable mdd interrupt cause */
7104 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
7105 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
7106 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
7107 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
7108 i40e_flush(hw);
7109}
7110
a1c9a9d9 7111/**
6a899024 7112 * i40e_sync_udp_filters_subtask - Sync the VSI filter list with HW
a1c9a9d9
JK
7113 * @pf: board private structure
7114 **/
6a899024 7115static void i40e_sync_udp_filters_subtask(struct i40e_pf *pf)
a1c9a9d9 7116{
a1c9a9d9
JK
7117 struct i40e_hw *hw = &pf->hw;
7118 i40e_status ret;
a1c9a9d9
JK
7119 __be16 port;
7120 int i;
7121
6a899024 7122 if (!(pf->flags & I40E_FLAG_UDP_FILTER_SYNC))
a1c9a9d9
JK
7123 return;
7124
6a899024 7125 pf->flags &= ~I40E_FLAG_UDP_FILTER_SYNC;
a1c9a9d9
JK
7126
7127 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6a899024
SA
7128 if (pf->pending_udp_bitmap & BIT_ULL(i)) {
7129 pf->pending_udp_bitmap &= ~BIT_ULL(i);
7130 port = pf->udp_ports[i].index;
c22c06c8 7131 if (port)
b3f5c7bc
CW
7132 ret = i40e_aq_add_udp_tunnel(hw, port,
7133 pf->udp_ports[i].type,
7134 NULL, NULL);
c22c06c8
SN
7135 else
7136 ret = i40e_aq_del_udp_tunnel(hw, i, NULL);
a1c9a9d9
JK
7137
7138 if (ret) {
730a8f87
CW
7139 dev_dbg(&pf->pdev->dev,
7140 "%s %s port %d, index %d failed, err %s aq_err %s\n",
7141 pf->udp_ports[i].type ? "vxlan" : "geneve",
7142 port ? "add" : "delete",
7143 ntohs(port), i,
7144 i40e_stat_str(&pf->hw, ret),
7145 i40e_aq_str(&pf->hw,
f1c7e72e 7146 pf->hw.aq.asq_last_status));
6a899024 7147 pf->udp_ports[i].index = 0;
a1c9a9d9
JK
7148 }
7149 }
7150 }
7151}
7152
41c445ff
JB
7153/**
7154 * i40e_service_task - Run the driver's async subtasks
7155 * @work: pointer to work_struct containing our data
7156 **/
7157static void i40e_service_task(struct work_struct *work)
7158{
7159 struct i40e_pf *pf = container_of(work,
7160 struct i40e_pf,
7161 service_task);
7162 unsigned long start_time = jiffies;
7163
e57a2fea
SN
7164 /* don't bother with service tasks if a reset is in progress */
7165 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7166 i40e_service_event_complete(pf);
7167 return;
7168 }
7169
b03a8c1f 7170 i40e_detect_recover_hung(pf);
2818ccd9 7171 i40e_sync_filters_subtask(pf);
41c445ff
JB
7172 i40e_reset_subtask(pf);
7173 i40e_handle_mdd_event(pf);
7174 i40e_vc_process_vflr_event(pf);
7175 i40e_watchdog_subtask(pf);
7176 i40e_fdir_reinit_subtask(pf);
e3219ce6 7177 i40e_client_subtask(pf);
41c445ff 7178 i40e_sync_filters_subtask(pf);
6a899024 7179 i40e_sync_udp_filters_subtask(pf);
41c445ff
JB
7180 i40e_clean_adminq_subtask(pf);
7181
7182 i40e_service_event_complete(pf);
7183
7184 /* If the tasks have taken longer than one timer cycle or there
7185 * is more work to be done, reschedule the service task now
7186 * rather than wait for the timer to tick again.
7187 */
7188 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
7189 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
7190 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
7191 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
7192 i40e_service_event_schedule(pf);
7193}
7194
7195/**
7196 * i40e_service_timer - timer callback
7197 * @data: pointer to PF struct
7198 **/
7199static void i40e_service_timer(unsigned long data)
7200{
7201 struct i40e_pf *pf = (struct i40e_pf *)data;
7202
7203 mod_timer(&pf->service_timer,
7204 round_jiffies(jiffies + pf->service_timer_period));
7205 i40e_service_event_schedule(pf);
7206}
7207
7208/**
7209 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
7210 * @vsi: the VSI being configured
7211 **/
7212static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
7213{
7214 struct i40e_pf *pf = vsi->back;
7215
7216 switch (vsi->type) {
7217 case I40E_VSI_MAIN:
7218 vsi->alloc_queue_pairs = pf->num_lan_qps;
7219 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7220 I40E_REQ_DESCRIPTOR_MULTIPLE);
7221 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7222 vsi->num_q_vectors = pf->num_lan_msix;
7223 else
7224 vsi->num_q_vectors = 1;
7225
7226 break;
7227
7228 case I40E_VSI_FDIR:
7229 vsi->alloc_queue_pairs = 1;
7230 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
7231 I40E_REQ_DESCRIPTOR_MULTIPLE);
a70e407f 7232 vsi->num_q_vectors = pf->num_fdsb_msix;
41c445ff
JB
7233 break;
7234
7235 case I40E_VSI_VMDQ2:
7236 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
7237 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7238 I40E_REQ_DESCRIPTOR_MULTIPLE);
7239 vsi->num_q_vectors = pf->num_vmdq_msix;
7240 break;
7241
7242 case I40E_VSI_SRIOV:
7243 vsi->alloc_queue_pairs = pf->num_vf_qps;
7244 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7245 I40E_REQ_DESCRIPTOR_MULTIPLE);
7246 break;
7247
38e00438
VD
7248#ifdef I40E_FCOE
7249 case I40E_VSI_FCOE:
7250 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
7251 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7252 I40E_REQ_DESCRIPTOR_MULTIPLE);
7253 vsi->num_q_vectors = pf->num_fcoe_msix;
7254 break;
7255
7256#endif /* I40E_FCOE */
41c445ff
JB
7257 default:
7258 WARN_ON(1);
7259 return -ENODATA;
7260 }
7261
7262 return 0;
7263}
7264
f650a38b
ASJ
7265/**
7266 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
7267 * @type: VSI pointer
bc7d338f 7268 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
f650a38b
ASJ
7269 *
7270 * On error: returns error code (negative)
7271 * On success: returns 0
7272 **/
bc7d338f 7273static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
f650a38b
ASJ
7274{
7275 int size;
7276 int ret = 0;
7277
ac6c5e3d 7278 /* allocate memory for both Tx and Rx ring pointers */
f650a38b
ASJ
7279 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
7280 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
7281 if (!vsi->tx_rings)
7282 return -ENOMEM;
f650a38b
ASJ
7283 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
7284
bc7d338f
ASJ
7285 if (alloc_qvectors) {
7286 /* allocate memory for q_vector pointers */
f57e4fbd 7287 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
bc7d338f
ASJ
7288 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
7289 if (!vsi->q_vectors) {
7290 ret = -ENOMEM;
7291 goto err_vectors;
7292 }
f650a38b
ASJ
7293 }
7294 return ret;
7295
7296err_vectors:
7297 kfree(vsi->tx_rings);
7298 return ret;
7299}
7300
41c445ff
JB
7301/**
7302 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
7303 * @pf: board private structure
7304 * @type: type of VSI
7305 *
7306 * On error: returns error code (negative)
7307 * On success: returns vsi index in PF (positive)
7308 **/
7309static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
7310{
7311 int ret = -ENODEV;
7312 struct i40e_vsi *vsi;
7313 int vsi_idx;
7314 int i;
7315
7316 /* Need to protect the allocation of the VSIs at the PF level */
7317 mutex_lock(&pf->switch_mutex);
7318
7319 /* VSI list may be fragmented if VSI creation/destruction has
7320 * been happening. We can afford to do a quick scan to look
7321 * for any free VSIs in the list.
7322 *
7323 * find next empty vsi slot, looping back around if necessary
7324 */
7325 i = pf->next_vsi;
505682cd 7326 while (i < pf->num_alloc_vsi && pf->vsi[i])
41c445ff 7327 i++;
505682cd 7328 if (i >= pf->num_alloc_vsi) {
41c445ff
JB
7329 i = 0;
7330 while (i < pf->next_vsi && pf->vsi[i])
7331 i++;
7332 }
7333
505682cd 7334 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
41c445ff
JB
7335 vsi_idx = i; /* Found one! */
7336 } else {
7337 ret = -ENODEV;
493fb300 7338 goto unlock_pf; /* out of VSI slots! */
41c445ff
JB
7339 }
7340 pf->next_vsi = ++i;
7341
7342 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
7343 if (!vsi) {
7344 ret = -ENOMEM;
493fb300 7345 goto unlock_pf;
41c445ff
JB
7346 }
7347 vsi->type = type;
7348 vsi->back = pf;
7349 set_bit(__I40E_DOWN, &vsi->state);
7350 vsi->flags = 0;
7351 vsi->idx = vsi_idx;
ac26fc13 7352 vsi->int_rate_limit = 0;
5db4cb59
ASJ
7353 vsi->rss_table_size = (vsi->type == I40E_VSI_MAIN) ?
7354 pf->rss_table_size : 64;
41c445ff
JB
7355 vsi->netdev_registered = false;
7356 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
7357 INIT_LIST_HEAD(&vsi->mac_filter_list);
63741846 7358 vsi->irqs_ready = false;
41c445ff 7359
9f65e15b
AD
7360 ret = i40e_set_num_rings_in_vsi(vsi);
7361 if (ret)
7362 goto err_rings;
7363
bc7d338f 7364 ret = i40e_vsi_alloc_arrays(vsi, true);
f650a38b 7365 if (ret)
9f65e15b 7366 goto err_rings;
493fb300 7367
41c445ff
JB
7368 /* Setup default MSIX irq handler for VSI */
7369 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
7370
21659035
KP
7371 /* Initialize VSI lock */
7372 spin_lock_init(&vsi->mac_filter_list_lock);
41c445ff
JB
7373 pf->vsi[vsi_idx] = vsi;
7374 ret = vsi_idx;
493fb300
AD
7375 goto unlock_pf;
7376
9f65e15b 7377err_rings:
493fb300
AD
7378 pf->next_vsi = i - 1;
7379 kfree(vsi);
7380unlock_pf:
41c445ff
JB
7381 mutex_unlock(&pf->switch_mutex);
7382 return ret;
7383}
7384
f650a38b
ASJ
7385/**
7386 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
7387 * @type: VSI pointer
bc7d338f 7388 * @free_qvectors: a bool to specify if q_vectors need to be freed.
f650a38b
ASJ
7389 *
7390 * On error: returns error code (negative)
7391 * On success: returns 0
7392 **/
bc7d338f 7393static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
f650a38b
ASJ
7394{
7395 /* free the ring and vector containers */
bc7d338f
ASJ
7396 if (free_qvectors) {
7397 kfree(vsi->q_vectors);
7398 vsi->q_vectors = NULL;
7399 }
f650a38b
ASJ
7400 kfree(vsi->tx_rings);
7401 vsi->tx_rings = NULL;
7402 vsi->rx_rings = NULL;
7403}
7404
28c5869f
HZ
7405/**
7406 * i40e_clear_rss_config_user - clear the user configured RSS hash keys
7407 * and lookup table
7408 * @vsi: Pointer to VSI structure
7409 */
7410static void i40e_clear_rss_config_user(struct i40e_vsi *vsi)
7411{
7412 if (!vsi)
7413 return;
7414
7415 kfree(vsi->rss_hkey_user);
7416 vsi->rss_hkey_user = NULL;
7417
7418 kfree(vsi->rss_lut_user);
7419 vsi->rss_lut_user = NULL;
7420}
7421
41c445ff
JB
7422/**
7423 * i40e_vsi_clear - Deallocate the VSI provided
7424 * @vsi: the VSI being un-configured
7425 **/
7426static int i40e_vsi_clear(struct i40e_vsi *vsi)
7427{
7428 struct i40e_pf *pf;
7429
7430 if (!vsi)
7431 return 0;
7432
7433 if (!vsi->back)
7434 goto free_vsi;
7435 pf = vsi->back;
7436
7437 mutex_lock(&pf->switch_mutex);
7438 if (!pf->vsi[vsi->idx]) {
7439 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
7440 vsi->idx, vsi->idx, vsi, vsi->type);
7441 goto unlock_vsi;
7442 }
7443
7444 if (pf->vsi[vsi->idx] != vsi) {
7445 dev_err(&pf->pdev->dev,
7446 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
7447 pf->vsi[vsi->idx]->idx,
7448 pf->vsi[vsi->idx],
7449 pf->vsi[vsi->idx]->type,
7450 vsi->idx, vsi, vsi->type);
7451 goto unlock_vsi;
7452 }
7453
b40c82e6 7454 /* updates the PF for this cleared vsi */
41c445ff
JB
7455 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7456 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
7457
bc7d338f 7458 i40e_vsi_free_arrays(vsi, true);
28c5869f 7459 i40e_clear_rss_config_user(vsi);
493fb300 7460
41c445ff
JB
7461 pf->vsi[vsi->idx] = NULL;
7462 if (vsi->idx < pf->next_vsi)
7463 pf->next_vsi = vsi->idx;
7464
7465unlock_vsi:
7466 mutex_unlock(&pf->switch_mutex);
7467free_vsi:
7468 kfree(vsi);
7469
7470 return 0;
7471}
7472
9f65e15b
AD
7473/**
7474 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
7475 * @vsi: the VSI being cleaned
7476 **/
be1d5eea 7477static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
9f65e15b
AD
7478{
7479 int i;
7480
8e9dca53 7481 if (vsi->tx_rings && vsi->tx_rings[0]) {
d7397644 7482 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
00403f04
MW
7483 kfree_rcu(vsi->tx_rings[i], rcu);
7484 vsi->tx_rings[i] = NULL;
7485 vsi->rx_rings[i] = NULL;
7486 }
be1d5eea 7487 }
9f65e15b
AD
7488}
7489
41c445ff
JB
7490/**
7491 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
7492 * @vsi: the VSI being configured
7493 **/
7494static int i40e_alloc_rings(struct i40e_vsi *vsi)
7495{
e7046ee1 7496 struct i40e_ring *tx_ring, *rx_ring;
41c445ff 7497 struct i40e_pf *pf = vsi->back;
41c445ff
JB
7498 int i;
7499
41c445ff 7500 /* Set basic values in the rings to be used later during open() */
d7397644 7501 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
ac6c5e3d 7502 /* allocate space for both Tx and Rx in one shot */
9f65e15b
AD
7503 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
7504 if (!tx_ring)
7505 goto err_out;
41c445ff
JB
7506
7507 tx_ring->queue_index = i;
7508 tx_ring->reg_idx = vsi->base_queue + i;
7509 tx_ring->ring_active = false;
7510 tx_ring->vsi = vsi;
7511 tx_ring->netdev = vsi->netdev;
7512 tx_ring->dev = &pf->pdev->dev;
7513 tx_ring->count = vsi->num_desc;
7514 tx_ring->size = 0;
7515 tx_ring->dcb_tc = 0;
8e0764b4
ASJ
7516 if (vsi->back->flags & I40E_FLAG_WB_ON_ITR_CAPABLE)
7517 tx_ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
a75e8005 7518 tx_ring->tx_itr_setting = pf->tx_itr_default;
9f65e15b 7519 vsi->tx_rings[i] = tx_ring;
41c445ff 7520
9f65e15b 7521 rx_ring = &tx_ring[1];
41c445ff
JB
7522 rx_ring->queue_index = i;
7523 rx_ring->reg_idx = vsi->base_queue + i;
7524 rx_ring->ring_active = false;
7525 rx_ring->vsi = vsi;
7526 rx_ring->netdev = vsi->netdev;
7527 rx_ring->dev = &pf->pdev->dev;
7528 rx_ring->count = vsi->num_desc;
7529 rx_ring->size = 0;
7530 rx_ring->dcb_tc = 0;
a75e8005 7531 rx_ring->rx_itr_setting = pf->rx_itr_default;
9f65e15b 7532 vsi->rx_rings[i] = rx_ring;
41c445ff
JB
7533 }
7534
7535 return 0;
9f65e15b
AD
7536
7537err_out:
7538 i40e_vsi_clear_rings(vsi);
7539 return -ENOMEM;
41c445ff
JB
7540}
7541
7542/**
7543 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
7544 * @pf: board private structure
7545 * @vectors: the number of MSI-X vectors to request
7546 *
7547 * Returns the number of vectors reserved, or error
7548 **/
7549static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
7550{
7b37f376
AG
7551 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
7552 I40E_MIN_MSIX, vectors);
7553 if (vectors < 0) {
41c445ff 7554 dev_info(&pf->pdev->dev,
7b37f376 7555 "MSI-X vector reservation failed: %d\n", vectors);
41c445ff
JB
7556 vectors = 0;
7557 }
7558
7559 return vectors;
7560}
7561
7562/**
7563 * i40e_init_msix - Setup the MSIX capability
7564 * @pf: board private structure
7565 *
7566 * Work with the OS to set up the MSIX vectors needed.
7567 *
3b444399 7568 * Returns the number of vectors reserved or negative on failure
41c445ff
JB
7569 **/
7570static int i40e_init_msix(struct i40e_pf *pf)
7571{
41c445ff 7572 struct i40e_hw *hw = &pf->hw;
1e200e4a 7573 int vectors_left;
41c445ff 7574 int v_budget, i;
3b444399 7575 int v_actual;
e3219ce6 7576 int iwarp_requested = 0;
41c445ff
JB
7577
7578 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
7579 return -ENODEV;
7580
7581 /* The number of vectors we'll request will be comprised of:
7582 * - Add 1 for "other" cause for Admin Queue events, etc.
7583 * - The number of LAN queue pairs
f8ff1464
ASJ
7584 * - Queues being used for RSS.
7585 * We don't need as many as max_rss_size vectors.
7586 * use rss_size instead in the calculation since that
7587 * is governed by number of cpus in the system.
7588 * - assumes symmetric Tx/Rx pairing
41c445ff 7589 * - The number of VMDq pairs
e3219ce6 7590 * - The CPU count within the NUMA node if iWARP is enabled
38e00438
VD
7591#ifdef I40E_FCOE
7592 * - The number of FCOE qps.
7593#endif
41c445ff
JB
7594 * Once we count this up, try the request.
7595 *
7596 * If we can't get what we want, we'll simplify to nearly nothing
7597 * and try again. If that still fails, we punt.
7598 */
1e200e4a
SN
7599 vectors_left = hw->func_caps.num_msix_vectors;
7600 v_budget = 0;
7601
7602 /* reserve one vector for miscellaneous handler */
7603 if (vectors_left) {
7604 v_budget++;
7605 vectors_left--;
7606 }
7607
7608 /* reserve vectors for the main PF traffic queues */
7609 pf->num_lan_msix = min_t(int, num_online_cpus(), vectors_left);
7610 vectors_left -= pf->num_lan_msix;
7611 v_budget += pf->num_lan_msix;
7612
7613 /* reserve one vector for sideband flow director */
7614 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7615 if (vectors_left) {
a70e407f 7616 pf->num_fdsb_msix = 1;
1e200e4a
SN
7617 v_budget++;
7618 vectors_left--;
7619 } else {
a70e407f 7620 pf->num_fdsb_msix = 0;
1e200e4a
SN
7621 }
7622 }
83840e4b 7623
38e00438 7624#ifdef I40E_FCOE
1e200e4a 7625 /* can we reserve enough for FCoE? */
38e00438 7626 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
1e200e4a
SN
7627 if (!vectors_left)
7628 pf->num_fcoe_msix = 0;
7629 else if (vectors_left >= pf->num_fcoe_qps)
7630 pf->num_fcoe_msix = pf->num_fcoe_qps;
7631 else
7632 pf->num_fcoe_msix = 1;
38e00438 7633 v_budget += pf->num_fcoe_msix;
1e200e4a 7634 vectors_left -= pf->num_fcoe_msix;
38e00438 7635 }
1e200e4a 7636
38e00438 7637#endif
e3219ce6
ASJ
7638 /* can we reserve enough for iWARP? */
7639 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
4ce20abc
SA
7640 iwarp_requested = pf->num_iwarp_msix;
7641
e3219ce6
ASJ
7642 if (!vectors_left)
7643 pf->num_iwarp_msix = 0;
7644 else if (vectors_left < pf->num_iwarp_msix)
7645 pf->num_iwarp_msix = 1;
7646 v_budget += pf->num_iwarp_msix;
7647 vectors_left -= pf->num_iwarp_msix;
7648 }
7649
1e200e4a
SN
7650 /* any vectors left over go for VMDq support */
7651 if (pf->flags & I40E_FLAG_VMDQ_ENABLED) {
7652 int vmdq_vecs_wanted = pf->num_vmdq_vsis * pf->num_vmdq_qps;
7653 int vmdq_vecs = min_t(int, vectors_left, vmdq_vecs_wanted);
7654
9ca57e97
SA
7655 if (!vectors_left) {
7656 pf->num_vmdq_msix = 0;
7657 pf->num_vmdq_qps = 0;
7658 } else {
7659 /* if we're short on vectors for what's desired, we limit
7660 * the queues per vmdq. If this is still more than are
7661 * available, the user will need to change the number of
7662 * queues/vectors used by the PF later with the ethtool
7663 * channels command
7664 */
7665 if (vmdq_vecs < vmdq_vecs_wanted)
7666 pf->num_vmdq_qps = 1;
7667 pf->num_vmdq_msix = pf->num_vmdq_qps;
1e200e4a 7668
9ca57e97
SA
7669 v_budget += vmdq_vecs;
7670 vectors_left -= vmdq_vecs;
7671 }
1e200e4a 7672 }
41c445ff
JB
7673
7674 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
7675 GFP_KERNEL);
7676 if (!pf->msix_entries)
7677 return -ENOMEM;
7678
7679 for (i = 0; i < v_budget; i++)
7680 pf->msix_entries[i].entry = i;
3b444399 7681 v_actual = i40e_reserve_msix_vectors(pf, v_budget);
a34977ba 7682
3b444399 7683 if (v_actual < I40E_MIN_MSIX) {
41c445ff
JB
7684 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
7685 kfree(pf->msix_entries);
7686 pf->msix_entries = NULL;
7687 return -ENODEV;
7688
3b444399 7689 } else if (v_actual == I40E_MIN_MSIX) {
41c445ff 7690 /* Adjust for minimal MSIX use */
41c445ff
JB
7691 pf->num_vmdq_vsis = 0;
7692 pf->num_vmdq_qps = 0;
41c445ff
JB
7693 pf->num_lan_qps = 1;
7694 pf->num_lan_msix = 1;
7695
4ce20abc
SA
7696 } else if (!vectors_left) {
7697 /* If we have limited resources, we will start with no vectors
7698 * for the special features and then allocate vectors to some
7699 * of these features based on the policy and at the end disable
7700 * the features that did not get any vectors.
7701 */
3b444399
SN
7702 int vec;
7703
4ce20abc
SA
7704 dev_info(&pf->pdev->dev,
7705 "MSI-X vector limit reached, attempting to redistribute vectors\n");
a34977ba 7706 /* reserve the misc vector */
3b444399 7707 vec = v_actual - 1;
a34977ba 7708
41c445ff
JB
7709 /* Scale vector usage down */
7710 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
a34977ba 7711 pf->num_vmdq_vsis = 1;
1e200e4a 7712 pf->num_vmdq_qps = 1;
4ce20abc
SA
7713#ifdef I40E_FCOE
7714 pf->num_fcoe_qps = 0;
7715 pf->num_fcoe_msix = 0;
7716#endif
41c445ff
JB
7717
7718 /* partition out the remaining vectors */
7719 switch (vec) {
7720 case 2:
41c445ff
JB
7721 pf->num_lan_msix = 1;
7722 break;
7723 case 3:
e3219ce6
ASJ
7724 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7725 pf->num_lan_msix = 1;
7726 pf->num_iwarp_msix = 1;
7727 } else {
7728 pf->num_lan_msix = 2;
7729 }
38e00438
VD
7730#ifdef I40E_FCOE
7731 /* give one vector to FCoE */
7732 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7733 pf->num_lan_msix = 1;
7734 pf->num_fcoe_msix = 1;
7735 }
38e00438 7736#endif
41c445ff
JB
7737 break;
7738 default:
e3219ce6
ASJ
7739 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7740 pf->num_iwarp_msix = min_t(int, (vec / 3),
7741 iwarp_requested);
7742 pf->num_vmdq_vsis = min_t(int, (vec / 3),
7743 I40E_DEFAULT_NUM_VMDQ_VSI);
7744 } else {
7745 pf->num_vmdq_vsis = min_t(int, (vec / 2),
7746 I40E_DEFAULT_NUM_VMDQ_VSI);
7747 }
abd97a94
SA
7748 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7749 pf->num_fdsb_msix = 1;
7750 vec--;
7751 }
e3219ce6
ASJ
7752 pf->num_lan_msix = min_t(int,
7753 (vec - (pf->num_iwarp_msix + pf->num_vmdq_vsis)),
7754 pf->num_lan_msix);
4ce20abc 7755 pf->num_lan_qps = pf->num_lan_msix;
38e00438
VD
7756#ifdef I40E_FCOE
7757 /* give one vector to FCoE */
7758 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7759 pf->num_fcoe_msix = 1;
7760 vec--;
7761 }
7762#endif
41c445ff
JB
7763 break;
7764 }
7765 }
7766
abd97a94
SA
7767 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
7768 (pf->num_fdsb_msix == 0)) {
7769 dev_info(&pf->pdev->dev, "Sideband Flowdir disabled, not enough MSI-X vectors\n");
7770 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
7771 }
a34977ba
ASJ
7772 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7773 (pf->num_vmdq_msix == 0)) {
7774 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7775 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7776 }
e3219ce6
ASJ
7777
7778 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
7779 (pf->num_iwarp_msix == 0)) {
7780 dev_info(&pf->pdev->dev, "IWARP disabled, not enough MSI-X vectors\n");
7781 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
7782 }
38e00438
VD
7783#ifdef I40E_FCOE
7784
7785 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7786 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7787 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7788 }
7789#endif
4ce20abc
SA
7790 i40e_debug(&pf->hw, I40E_DEBUG_INIT,
7791 "MSI-X vector distribution: PF %d, VMDq %d, FDSB %d, iWARP %d\n",
7792 pf->num_lan_msix,
7793 pf->num_vmdq_msix * pf->num_vmdq_vsis,
7794 pf->num_fdsb_msix,
7795 pf->num_iwarp_msix);
7796
3b444399 7797 return v_actual;
41c445ff
JB
7798}
7799
493fb300 7800/**
90e04070 7801 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
493fb300
AD
7802 * @vsi: the VSI being configured
7803 * @v_idx: index of the vector in the vsi struct
7f6c5539 7804 * @cpu: cpu to be used on affinity_mask
493fb300
AD
7805 *
7806 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7807 **/
7f6c5539 7808static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx, int cpu)
493fb300
AD
7809{
7810 struct i40e_q_vector *q_vector;
7811
7812 /* allocate q_vector */
7813 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7814 if (!q_vector)
7815 return -ENOMEM;
7816
7817 q_vector->vsi = vsi;
7818 q_vector->v_idx = v_idx;
7f6c5539
GP
7819 cpumask_set_cpu(cpu, &q_vector->affinity_mask);
7820
493fb300
AD
7821 if (vsi->netdev)
7822 netif_napi_add(vsi->netdev, &q_vector->napi,
eefeacee 7823 i40e_napi_poll, NAPI_POLL_WEIGHT);
493fb300 7824
cd0b6fa6
AD
7825 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7826 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7827
493fb300
AD
7828 /* tie q_vector and vsi together */
7829 vsi->q_vectors[v_idx] = q_vector;
7830
7831 return 0;
7832}
7833
41c445ff 7834/**
90e04070 7835 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
41c445ff
JB
7836 * @vsi: the VSI being configured
7837 *
7838 * We allocate one q_vector per queue interrupt. If allocation fails we
7839 * return -ENOMEM.
7840 **/
90e04070 7841static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
41c445ff
JB
7842{
7843 struct i40e_pf *pf = vsi->back;
7f6c5539 7844 int err, v_idx, num_q_vectors, current_cpu;
41c445ff
JB
7845
7846 /* if not MSIX, give the one vector only to the LAN VSI */
7847 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7848 num_q_vectors = vsi->num_q_vectors;
7849 else if (vsi == pf->vsi[pf->lan_vsi])
7850 num_q_vectors = 1;
7851 else
7852 return -EINVAL;
7853
7f6c5539
GP
7854 current_cpu = cpumask_first(cpu_online_mask);
7855
41c445ff 7856 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
7f6c5539 7857 err = i40e_vsi_alloc_q_vector(vsi, v_idx, current_cpu);
493fb300
AD
7858 if (err)
7859 goto err_out;
7f6c5539
GP
7860 current_cpu = cpumask_next(current_cpu, cpu_online_mask);
7861 if (unlikely(current_cpu >= nr_cpu_ids))
7862 current_cpu = cpumask_first(cpu_online_mask);
41c445ff
JB
7863 }
7864
7865 return 0;
493fb300
AD
7866
7867err_out:
7868 while (v_idx--)
7869 i40e_free_q_vector(vsi, v_idx);
7870
7871 return err;
41c445ff
JB
7872}
7873
7874/**
7875 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7876 * @pf: board private structure to initialize
7877 **/
c1147280 7878static int i40e_init_interrupt_scheme(struct i40e_pf *pf)
41c445ff 7879{
3b444399
SN
7880 int vectors = 0;
7881 ssize_t size;
41c445ff
JB
7882
7883 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3b444399
SN
7884 vectors = i40e_init_msix(pf);
7885 if (vectors < 0) {
60ea5f83 7886 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
e3219ce6 7887 I40E_FLAG_IWARP_ENABLED |
38e00438
VD
7888#ifdef I40E_FCOE
7889 I40E_FLAG_FCOE_ENABLED |
7890#endif
60ea5f83 7891 I40E_FLAG_RSS_ENABLED |
4d9b6043 7892 I40E_FLAG_DCB_CAPABLE |
a036244c 7893 I40E_FLAG_DCB_ENABLED |
60ea5f83
JB
7894 I40E_FLAG_SRIOV_ENABLED |
7895 I40E_FLAG_FD_SB_ENABLED |
7896 I40E_FLAG_FD_ATR_ENABLED |
7897 I40E_FLAG_VMDQ_ENABLED);
41c445ff
JB
7898
7899 /* rework the queue expectations without MSIX */
7900 i40e_determine_queue_usage(pf);
7901 }
7902 }
7903
7904 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7905 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
77fa28be 7906 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
3b444399
SN
7907 vectors = pci_enable_msi(pf->pdev);
7908 if (vectors < 0) {
7909 dev_info(&pf->pdev->dev, "MSI init failed - %d\n",
7910 vectors);
41c445ff
JB
7911 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7912 }
3b444399 7913 vectors = 1; /* one MSI or Legacy vector */
41c445ff
JB
7914 }
7915
958a3e3b 7916 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
77fa28be 7917 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
958a3e3b 7918
3b444399
SN
7919 /* set up vector assignment tracking */
7920 size = sizeof(struct i40e_lump_tracking) + (sizeof(u16) * vectors);
7921 pf->irq_pile = kzalloc(size, GFP_KERNEL);
c1147280
JB
7922 if (!pf->irq_pile) {
7923 dev_err(&pf->pdev->dev, "error allocating irq_pile memory\n");
7924 return -ENOMEM;
7925 }
3b444399
SN
7926 pf->irq_pile->num_entries = vectors;
7927 pf->irq_pile->search_hint = 0;
7928
c1147280 7929 /* track first vector for misc interrupts, ignore return */
3b444399 7930 (void)i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT - 1);
c1147280
JB
7931
7932 return 0;
41c445ff
JB
7933}
7934
7935/**
7936 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7937 * @pf: board private structure
7938 *
7939 * This sets up the handler for MSIX 0, which is used to manage the
7940 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7941 * when in MSI or Legacy interrupt mode.
7942 **/
7943static int i40e_setup_misc_vector(struct i40e_pf *pf)
7944{
7945 struct i40e_hw *hw = &pf->hw;
7946 int err = 0;
7947
7948 /* Only request the irq if this is the first time through, and
7949 * not when we're rebuilding after a Reset
7950 */
7951 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7952 err = request_irq(pf->msix_entries[0].vector,
b294ac70 7953 i40e_intr, 0, pf->int_name, pf);
41c445ff
JB
7954 if (err) {
7955 dev_info(&pf->pdev->dev,
77fa28be 7956 "request_irq for %s failed: %d\n",
b294ac70 7957 pf->int_name, err);
41c445ff
JB
7958 return -EFAULT;
7959 }
7960 }
7961
ab437b5a 7962 i40e_enable_misc_int_causes(pf);
41c445ff
JB
7963
7964 /* associate no queues to the misc vector */
7965 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7966 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7967
7968 i40e_flush(hw);
7969
40d72a50 7970 i40e_irq_dynamic_enable_icr0(pf, true);
41c445ff
JB
7971
7972 return err;
7973}
7974
7975/**
e25d00b8
ASJ
7976 * i40e_config_rss_aq - Prepare for RSS using AQ commands
7977 * @vsi: vsi structure
7978 * @seed: RSS hash seed
7979 **/
e69ff813
HZ
7980static int i40e_config_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
7981 u8 *lut, u16 lut_size)
e25d00b8 7982{
e25d00b8
ASJ
7983 struct i40e_pf *pf = vsi->back;
7984 struct i40e_hw *hw = &pf->hw;
776b2e15 7985 int ret = 0;
e25d00b8 7986
776b2e15
JK
7987 if (seed) {
7988 struct i40e_aqc_get_set_rss_key_data *seed_dw =
7989 (struct i40e_aqc_get_set_rss_key_data *)seed;
7990 ret = i40e_aq_set_rss_key(hw, vsi->id, seed_dw);
7991 if (ret) {
7992 dev_info(&pf->pdev->dev,
7993 "Cannot set RSS key, err %s aq_err %s\n",
7994 i40e_stat_str(hw, ret),
7995 i40e_aq_str(hw, hw->aq.asq_last_status));
7996 return ret;
7997 }
e25d00b8 7998 }
776b2e15
JK
7999 if (lut) {
8000 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
e25d00b8 8001
776b2e15
JK
8002 ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
8003 if (ret) {
8004 dev_info(&pf->pdev->dev,
8005 "Cannot set RSS lut, err %s aq_err %s\n",
8006 i40e_stat_str(hw, ret),
8007 i40e_aq_str(hw, hw->aq.asq_last_status));
8008 return ret;
8009 }
8010 }
e25d00b8
ASJ
8011 return ret;
8012}
8013
95a73780
ASJ
8014/**
8015 * i40e_get_rss_aq - Get RSS keys and lut by using AQ commands
8016 * @vsi: Pointer to vsi structure
8017 * @seed: Buffter to store the hash keys
8018 * @lut: Buffer to store the lookup table entries
8019 * @lut_size: Size of buffer to store the lookup table entries
8020 *
8021 * Return 0 on success, negative on failure
8022 */
8023static int i40e_get_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
8024 u8 *lut, u16 lut_size)
8025{
8026 struct i40e_pf *pf = vsi->back;
8027 struct i40e_hw *hw = &pf->hw;
8028 int ret = 0;
8029
8030 if (seed) {
8031 ret = i40e_aq_get_rss_key(hw, vsi->id,
8032 (struct i40e_aqc_get_set_rss_key_data *)seed);
8033 if (ret) {
8034 dev_info(&pf->pdev->dev,
8035 "Cannot get RSS key, err %s aq_err %s\n",
8036 i40e_stat_str(&pf->hw, ret),
8037 i40e_aq_str(&pf->hw,
8038 pf->hw.aq.asq_last_status));
8039 return ret;
8040 }
8041 }
8042
8043 if (lut) {
8044 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
8045
8046 ret = i40e_aq_get_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
8047 if (ret) {
8048 dev_info(&pf->pdev->dev,
8049 "Cannot get RSS lut, err %s aq_err %s\n",
8050 i40e_stat_str(&pf->hw, ret),
8051 i40e_aq_str(&pf->hw,
8052 pf->hw.aq.asq_last_status));
8053 return ret;
8054 }
8055 }
8056
8057 return ret;
8058}
8059
0582b964
JK
8060/**
8061 * i40e_vsi_config_rss - Prepare for VSI(VMDq) RSS if used
8062 * @vsi: VSI structure
8063 **/
8064static int i40e_vsi_config_rss(struct i40e_vsi *vsi)
8065{
8066 u8 seed[I40E_HKEY_ARRAY_SIZE];
8067 struct i40e_pf *pf = vsi->back;
8068 u8 *lut;
8069 int ret;
8070
8071 if (!(pf->flags & I40E_FLAG_RSS_AQ_CAPABLE))
8072 return 0;
8073
552b9962
JK
8074 if (!vsi->rss_size)
8075 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8076 vsi->num_queue_pairs);
8077 if (!vsi->rss_size)
8078 return -EINVAL;
8079
0582b964
JK
8080 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8081 if (!lut)
8082 return -ENOMEM;
552b9962
JK
8083 /* Use the user configured hash keys and lookup table if there is one,
8084 * otherwise use default
8085 */
8086 if (vsi->rss_lut_user)
8087 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8088 else
8089 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
8090 if (vsi->rss_hkey_user)
8091 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8092 else
8093 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
0582b964
JK
8094 ret = i40e_config_rss_aq(vsi, seed, lut, vsi->rss_table_size);
8095 kfree(lut);
8096
8097 return ret;
8098}
8099
e25d00b8 8100/**
043dd650 8101 * i40e_config_rss_reg - Configure RSS keys and lut by writing registers
e69ff813 8102 * @vsi: Pointer to vsi structure
e25d00b8 8103 * @seed: RSS hash seed
e69ff813
HZ
8104 * @lut: Lookup table
8105 * @lut_size: Lookup table size
8106 *
8107 * Returns 0 on success, negative on failure
41c445ff 8108 **/
e69ff813
HZ
8109static int i40e_config_rss_reg(struct i40e_vsi *vsi, const u8 *seed,
8110 const u8 *lut, u16 lut_size)
41c445ff 8111{
e69ff813 8112 struct i40e_pf *pf = vsi->back;
4617e8c0 8113 struct i40e_hw *hw = &pf->hw;
c4e1868c 8114 u16 vf_id = vsi->vf_id;
e69ff813 8115 u8 i;
41c445ff 8116
e25d00b8 8117 /* Fill out hash function seed */
e69ff813
HZ
8118 if (seed) {
8119 u32 *seed_dw = (u32 *)seed;
8120
c4e1868c
MW
8121 if (vsi->type == I40E_VSI_MAIN) {
8122 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
8123 i40e_write_rx_ctl(hw, I40E_PFQF_HKEY(i),
8124 seed_dw[i]);
8125 } else if (vsi->type == I40E_VSI_SRIOV) {
8126 for (i = 0; i <= I40E_VFQF_HKEY1_MAX_INDEX; i++)
8127 i40e_write_rx_ctl(hw,
8128 I40E_VFQF_HKEY1(i, vf_id),
8129 seed_dw[i]);
8130 } else {
8131 dev_err(&pf->pdev->dev, "Cannot set RSS seed - invalid VSI type\n");
8132 }
e69ff813
HZ
8133 }
8134
8135 if (lut) {
8136 u32 *lut_dw = (u32 *)lut;
8137
c4e1868c
MW
8138 if (vsi->type == I40E_VSI_MAIN) {
8139 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8140 return -EINVAL;
8141 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8142 wr32(hw, I40E_PFQF_HLUT(i), lut_dw[i]);
8143 } else if (vsi->type == I40E_VSI_SRIOV) {
8144 if (lut_size != I40E_VF_HLUT_ARRAY_SIZE)
8145 return -EINVAL;
8146 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
8147 i40e_write_rx_ctl(hw,
8148 I40E_VFQF_HLUT1(i, vf_id),
8149 lut_dw[i]);
8150 } else {
8151 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
8152 }
e25d00b8
ASJ
8153 }
8154 i40e_flush(hw);
8155
8156 return 0;
8157}
8158
043dd650
HZ
8159/**
8160 * i40e_get_rss_reg - Get the RSS keys and lut by reading registers
8161 * @vsi: Pointer to VSI structure
8162 * @seed: Buffer to store the keys
8163 * @lut: Buffer to store the lookup table entries
8164 * @lut_size: Size of buffer to store the lookup table entries
8165 *
8166 * Returns 0 on success, negative on failure
8167 */
8168static int i40e_get_rss_reg(struct i40e_vsi *vsi, u8 *seed,
8169 u8 *lut, u16 lut_size)
8170{
8171 struct i40e_pf *pf = vsi->back;
8172 struct i40e_hw *hw = &pf->hw;
8173 u16 i;
8174
8175 if (seed) {
8176 u32 *seed_dw = (u32 *)seed;
8177
8178 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
272cdaf2 8179 seed_dw[i] = i40e_read_rx_ctl(hw, I40E_PFQF_HKEY(i));
043dd650
HZ
8180 }
8181 if (lut) {
8182 u32 *lut_dw = (u32 *)lut;
8183
8184 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8185 return -EINVAL;
8186 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8187 lut_dw[i] = rd32(hw, I40E_PFQF_HLUT(i));
8188 }
8189
8190 return 0;
8191}
8192
8193/**
8194 * i40e_config_rss - Configure RSS keys and lut
8195 * @vsi: Pointer to VSI structure
8196 * @seed: RSS hash seed
8197 * @lut: Lookup table
8198 * @lut_size: Lookup table size
8199 *
8200 * Returns 0 on success, negative on failure
8201 */
8202int i40e_config_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8203{
8204 struct i40e_pf *pf = vsi->back;
8205
8206 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
8207 return i40e_config_rss_aq(vsi, seed, lut, lut_size);
8208 else
8209 return i40e_config_rss_reg(vsi, seed, lut, lut_size);
8210}
8211
8212/**
8213 * i40e_get_rss - Get RSS keys and lut
8214 * @vsi: Pointer to VSI structure
8215 * @seed: Buffer to store the keys
8216 * @lut: Buffer to store the lookup table entries
8217 * lut_size: Size of buffer to store the lookup table entries
8218 *
8219 * Returns 0 on success, negative on failure
8220 */
8221int i40e_get_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8222{
95a73780
ASJ
8223 struct i40e_pf *pf = vsi->back;
8224
8225 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
8226 return i40e_get_rss_aq(vsi, seed, lut, lut_size);
8227 else
8228 return i40e_get_rss_reg(vsi, seed, lut, lut_size);
043dd650
HZ
8229}
8230
e69ff813
HZ
8231/**
8232 * i40e_fill_rss_lut - Fill the RSS lookup table with default values
8233 * @pf: Pointer to board private structure
8234 * @lut: Lookup table
8235 * @rss_table_size: Lookup table size
8236 * @rss_size: Range of queue number for hashing
8237 */
f1582351
AB
8238void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
8239 u16 rss_table_size, u16 rss_size)
e69ff813
HZ
8240{
8241 u16 i;
8242
8243 for (i = 0; i < rss_table_size; i++)
8244 lut[i] = i % rss_size;
8245}
8246
e25d00b8 8247/**
043dd650 8248 * i40e_pf_config_rss - Prepare for RSS if used
e25d00b8
ASJ
8249 * @pf: board private structure
8250 **/
043dd650 8251static int i40e_pf_config_rss(struct i40e_pf *pf)
e25d00b8
ASJ
8252{
8253 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
8254 u8 seed[I40E_HKEY_ARRAY_SIZE];
e69ff813 8255 u8 *lut;
e25d00b8
ASJ
8256 struct i40e_hw *hw = &pf->hw;
8257 u32 reg_val;
8258 u64 hena;
e69ff813 8259 int ret;
e25d00b8 8260
41c445ff 8261 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
272cdaf2
SN
8262 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
8263 ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
e25d00b8
ASJ
8264 hena |= i40e_pf_get_default_rss_hena(pf);
8265
272cdaf2
SN
8266 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena);
8267 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
41c445ff 8268
e25d00b8 8269 /* Determine the RSS table size based on the hardware capabilities */
272cdaf2 8270 reg_val = i40e_read_rx_ctl(hw, I40E_PFQF_CTL_0);
e25d00b8
ASJ
8271 reg_val = (pf->rss_table_size == 512) ?
8272 (reg_val | I40E_PFQF_CTL_0_HASHLUTSIZE_512) :
8273 (reg_val & ~I40E_PFQF_CTL_0_HASHLUTSIZE_512);
272cdaf2 8274 i40e_write_rx_ctl(hw, I40E_PFQF_CTL_0, reg_val);
e157ea30 8275
28c5869f
HZ
8276 /* Determine the RSS size of the VSI */
8277 if (!vsi->rss_size)
acd65448
HZ
8278 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8279 vsi->num_queue_pairs);
a4fa59cc
MW
8280 if (!vsi->rss_size)
8281 return -EINVAL;
28c5869f 8282
e69ff813
HZ
8283 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8284 if (!lut)
8285 return -ENOMEM;
8286
28c5869f
HZ
8287 /* Use user configured lut if there is one, otherwise use default */
8288 if (vsi->rss_lut_user)
8289 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8290 else
8291 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
e69ff813 8292
28c5869f
HZ
8293 /* Use user configured hash key if there is one, otherwise
8294 * use default.
8295 */
8296 if (vsi->rss_hkey_user)
8297 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8298 else
8299 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
043dd650 8300 ret = i40e_config_rss(vsi, seed, lut, vsi->rss_table_size);
e69ff813
HZ
8301 kfree(lut);
8302
8303 return ret;
41c445ff
JB
8304}
8305
f8ff1464
ASJ
8306/**
8307 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
8308 * @pf: board private structure
8309 * @queue_count: the requested queue count for rss.
8310 *
8311 * returns 0 if rss is not enabled, if enabled returns the final rss queue
8312 * count which may be different from the requested queue count.
8313 **/
8314int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
8315{
9a3bd2f1
ASJ
8316 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
8317 int new_rss_size;
8318
f8ff1464
ASJ
8319 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
8320 return 0;
8321
9a3bd2f1 8322 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
f8ff1464 8323
9a3bd2f1
ASJ
8324 if (queue_count != vsi->num_queue_pairs) {
8325 vsi->req_queue_pairs = queue_count;
f8ff1464
ASJ
8326 i40e_prep_for_reset(pf);
8327
acd65448 8328 pf->alloc_rss_size = new_rss_size;
f8ff1464
ASJ
8329
8330 i40e_reset_and_rebuild(pf, true);
28c5869f
HZ
8331
8332 /* Discard the user configured hash keys and lut, if less
8333 * queues are enabled.
8334 */
8335 if (queue_count < vsi->rss_size) {
8336 i40e_clear_rss_config_user(vsi);
8337 dev_dbg(&pf->pdev->dev,
8338 "discard user configured hash keys and lut\n");
8339 }
8340
8341 /* Reset vsi->rss_size, as number of enabled queues changed */
acd65448
HZ
8342 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8343 vsi->num_queue_pairs);
28c5869f 8344
043dd650 8345 i40e_pf_config_rss(pf);
f8ff1464 8346 }
e36b0b11
HZ
8347 dev_info(&pf->pdev->dev, "RSS count/HW max RSS count: %d/%d\n",
8348 pf->alloc_rss_size, pf->rss_size_max);
acd65448 8349 return pf->alloc_rss_size;
f8ff1464
ASJ
8350}
8351
f4492db1
GR
8352/**
8353 * i40e_get_npar_bw_setting - Retrieve BW settings for this PF partition
8354 * @pf: board private structure
8355 **/
8356i40e_status i40e_get_npar_bw_setting(struct i40e_pf *pf)
8357{
8358 i40e_status status;
8359 bool min_valid, max_valid;
8360 u32 max_bw, min_bw;
8361
8362 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
8363 &min_valid, &max_valid);
8364
8365 if (!status) {
8366 if (min_valid)
8367 pf->npar_min_bw = min_bw;
8368 if (max_valid)
8369 pf->npar_max_bw = max_bw;
8370 }
8371
8372 return status;
8373}
8374
8375/**
8376 * i40e_set_npar_bw_setting - Set BW settings for this PF partition
8377 * @pf: board private structure
8378 **/
8379i40e_status i40e_set_npar_bw_setting(struct i40e_pf *pf)
8380{
8381 struct i40e_aqc_configure_partition_bw_data bw_data;
8382 i40e_status status;
8383
b40c82e6 8384 /* Set the valid bit for this PF */
41a1d04b 8385 bw_data.pf_valid_bits = cpu_to_le16(BIT(pf->hw.pf_id));
f4492db1
GR
8386 bw_data.max_bw[pf->hw.pf_id] = pf->npar_max_bw & I40E_ALT_BW_VALUE_MASK;
8387 bw_data.min_bw[pf->hw.pf_id] = pf->npar_min_bw & I40E_ALT_BW_VALUE_MASK;
8388
8389 /* Set the new bandwidths */
8390 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
8391
8392 return status;
8393}
8394
8395/**
8396 * i40e_commit_npar_bw_setting - Commit BW settings for this PF partition
8397 * @pf: board private structure
8398 **/
8399i40e_status i40e_commit_npar_bw_setting(struct i40e_pf *pf)
8400{
8401 /* Commit temporary BW setting to permanent NVM image */
8402 enum i40e_admin_queue_err last_aq_status;
8403 i40e_status ret;
8404 u16 nvm_word;
8405
8406 if (pf->hw.partition_id != 1) {
8407 dev_info(&pf->pdev->dev,
8408 "Commit BW only works on partition 1! This is partition %d",
8409 pf->hw.partition_id);
8410 ret = I40E_NOT_SUPPORTED;
8411 goto bw_commit_out;
8412 }
8413
8414 /* Acquire NVM for read access */
8415 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
8416 last_aq_status = pf->hw.aq.asq_last_status;
8417 if (ret) {
8418 dev_info(&pf->pdev->dev,
f1c7e72e
SN
8419 "Cannot acquire NVM for read access, err %s aq_err %s\n",
8420 i40e_stat_str(&pf->hw, ret),
8421 i40e_aq_str(&pf->hw, last_aq_status));
f4492db1
GR
8422 goto bw_commit_out;
8423 }
8424
8425 /* Read word 0x10 of NVM - SW compatibility word 1 */
8426 ret = i40e_aq_read_nvm(&pf->hw,
8427 I40E_SR_NVM_CONTROL_WORD,
8428 0x10, sizeof(nvm_word), &nvm_word,
8429 false, NULL);
8430 /* Save off last admin queue command status before releasing
8431 * the NVM
8432 */
8433 last_aq_status = pf->hw.aq.asq_last_status;
8434 i40e_release_nvm(&pf->hw);
8435 if (ret) {
f1c7e72e
SN
8436 dev_info(&pf->pdev->dev, "NVM read error, err %s aq_err %s\n",
8437 i40e_stat_str(&pf->hw, ret),
8438 i40e_aq_str(&pf->hw, last_aq_status));
f4492db1
GR
8439 goto bw_commit_out;
8440 }
8441
8442 /* Wait a bit for NVM release to complete */
8443 msleep(50);
8444
8445 /* Acquire NVM for write access */
8446 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
8447 last_aq_status = pf->hw.aq.asq_last_status;
8448 if (ret) {
8449 dev_info(&pf->pdev->dev,
f1c7e72e
SN
8450 "Cannot acquire NVM for write access, err %s aq_err %s\n",
8451 i40e_stat_str(&pf->hw, ret),
8452 i40e_aq_str(&pf->hw, last_aq_status));
f4492db1
GR
8453 goto bw_commit_out;
8454 }
8455 /* Write it back out unchanged to initiate update NVM,
8456 * which will force a write of the shadow (alt) RAM to
8457 * the NVM - thus storing the bandwidth values permanently.
8458 */
8459 ret = i40e_aq_update_nvm(&pf->hw,
8460 I40E_SR_NVM_CONTROL_WORD,
8461 0x10, sizeof(nvm_word),
8462 &nvm_word, true, NULL);
8463 /* Save off last admin queue command status before releasing
8464 * the NVM
8465 */
8466 last_aq_status = pf->hw.aq.asq_last_status;
8467 i40e_release_nvm(&pf->hw);
8468 if (ret)
8469 dev_info(&pf->pdev->dev,
f1c7e72e
SN
8470 "BW settings NOT SAVED, err %s aq_err %s\n",
8471 i40e_stat_str(&pf->hw, ret),
8472 i40e_aq_str(&pf->hw, last_aq_status));
f4492db1
GR
8473bw_commit_out:
8474
8475 return ret;
8476}
8477
41c445ff
JB
8478/**
8479 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
8480 * @pf: board private structure to initialize
8481 *
8482 * i40e_sw_init initializes the Adapter private data structure.
8483 * Fields are initialized based on PCI device information and
8484 * OS network device settings (MTU size).
8485 **/
8486static int i40e_sw_init(struct i40e_pf *pf)
8487{
8488 int err = 0;
8489 int size;
8490
8491 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
8492 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
8493 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
8494 if (I40E_DEBUG_USER & debug)
8495 pf->hw.debug_mask = debug;
8496 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
8497 I40E_DEFAULT_MSG_ENABLE);
8498 }
8499
8500 /* Set default capability flags */
8501 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
8502 I40E_FLAG_MSI_ENABLED |
2bc7ee8a
MW
8503 I40E_FLAG_MSIX_ENABLED;
8504
ca99eb99
MW
8505 /* Set default ITR */
8506 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
8507 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
8508
7134f9ce
JB
8509 /* Depending on PF configurations, it is possible that the RSS
8510 * maximum might end up larger than the available queues
8511 */
41a1d04b 8512 pf->rss_size_max = BIT(pf->hw.func_caps.rss_table_entry_width);
acd65448 8513 pf->alloc_rss_size = 1;
5db4cb59 8514 pf->rss_table_size = pf->hw.func_caps.rss_table_size;
7134f9ce
JB
8515 pf->rss_size_max = min_t(int, pf->rss_size_max,
8516 pf->hw.func_caps.num_tx_qp);
41c445ff
JB
8517 if (pf->hw.func_caps.rss) {
8518 pf->flags |= I40E_FLAG_RSS_ENABLED;
acd65448
HZ
8519 pf->alloc_rss_size = min_t(int, pf->rss_size_max,
8520 num_online_cpus());
41c445ff
JB
8521 }
8522
2050bc65 8523 /* MFP mode enabled */
c78b953e 8524 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.flex10_enable) {
2050bc65
CS
8525 pf->flags |= I40E_FLAG_MFP_ENABLED;
8526 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
f4492db1
GR
8527 if (i40e_get_npar_bw_setting(pf))
8528 dev_warn(&pf->pdev->dev,
8529 "Could not get NPAR bw settings\n");
8530 else
8531 dev_info(&pf->pdev->dev,
8532 "Min BW = %8.8x, Max BW = %8.8x\n",
8533 pf->npar_min_bw, pf->npar_max_bw);
2050bc65
CS
8534 }
8535
cbf61325
ASJ
8536 /* FW/NVM is not yet fixed in this regard */
8537 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
8538 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
8539 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
8540 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
6eae9c6a
SN
8541 if (pf->flags & I40E_FLAG_MFP_ENABLED &&
8542 pf->hw.num_partitions > 1)
cbf61325 8543 dev_info(&pf->pdev->dev,
0b67584f 8544 "Flow Director Sideband mode Disabled in MFP mode\n");
6eae9c6a
SN
8545 else
8546 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
cbf61325
ASJ
8547 pf->fdir_pf_filter_count =
8548 pf->hw.func_caps.fd_filters_guaranteed;
8549 pf->hw.fdir_shared_filter_count =
8550 pf->hw.func_caps.fd_filters_best_effort;
41c445ff
JB
8551 }
8552
f1bbad33 8553 if (i40e_is_mac_710(&pf->hw) &&
8eed76fa 8554 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
f1bbad33 8555 (pf->hw.aq.fw_maj_ver < 4))) {
8eed76fa 8556 pf->flags |= I40E_FLAG_RESTART_AUTONEG;
f1bbad33
NP
8557 /* No DCB support for FW < v4.33 */
8558 pf->flags |= I40E_FLAG_NO_DCB_SUPPORT;
8559 }
8560
8561 /* Disable FW LLDP if FW < v4.3 */
8562 if (i40e_is_mac_710(&pf->hw) &&
8563 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
8564 (pf->hw.aq.fw_maj_ver < 4)))
8565 pf->flags |= I40E_FLAG_STOP_FW_LLDP;
8566
8567 /* Use the FW Set LLDP MIB API if FW > v4.40 */
8568 if (i40e_is_mac_710(&pf->hw) &&
8569 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver >= 40)) ||
8570 (pf->hw.aq.fw_maj_ver >= 5)))
8571 pf->flags |= I40E_FLAG_USE_SET_LLDP_MIB;
8eed76fa 8572
41c445ff 8573 if (pf->hw.func_caps.vmdq) {
41c445ff 8574 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
e25d00b8 8575 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
e9e53662 8576 pf->num_vmdq_qps = i40e_default_queues_per_vmdq(pf);
41c445ff
JB
8577 }
8578
e3219ce6
ASJ
8579 if (pf->hw.func_caps.iwarp) {
8580 pf->flags |= I40E_FLAG_IWARP_ENABLED;
8581 /* IWARP needs one extra vector for CQP just like MISC.*/
8582 pf->num_iwarp_msix = (int)num_online_cpus() + 1;
8583 }
8584
38e00438 8585#ifdef I40E_FCOE
21364bcf 8586 i40e_init_pf_fcoe(pf);
38e00438
VD
8587
8588#endif /* I40E_FCOE */
41c445ff 8589#ifdef CONFIG_PCI_IOV
ba252f13 8590 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
41c445ff
JB
8591 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
8592 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
8593 pf->num_req_vfs = min_t(int,
8594 pf->hw.func_caps.num_vfs,
8595 I40E_MAX_VF_COUNT);
8596 }
8597#endif /* CONFIG_PCI_IOV */
d502ce01
ASJ
8598 if (pf->hw.mac.type == I40E_MAC_X722) {
8599 pf->flags |= I40E_FLAG_RSS_AQ_CAPABLE |
8600 I40E_FLAG_128_QP_RSS_CAPABLE |
8601 I40E_FLAG_HW_ATR_EVICT_CAPABLE |
8602 I40E_FLAG_OUTER_UDP_CSUM_CAPABLE |
8603 I40E_FLAG_WB_ON_ITR_CAPABLE |
6a899024 8604 I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE |
8e2cc0e6 8605 I40E_FLAG_NO_PCI_LINK_CHECK |
f1bbad33 8606 I40E_FLAG_USE_SET_LLDP_MIB |
6a899024 8607 I40E_FLAG_GENEVE_OFFLOAD_CAPABLE;
a340c789
AS
8608 } else if ((pf->hw.aq.api_maj_ver > 1) ||
8609 ((pf->hw.aq.api_maj_ver == 1) &&
8610 (pf->hw.aq.api_min_ver > 4))) {
8611 /* Supported in FW API version higher than 1.4 */
8612 pf->flags |= I40E_FLAG_GENEVE_OFFLOAD_CAPABLE;
72b74869
ASJ
8613 pf->auto_disable_flags = I40E_FLAG_HW_ATR_EVICT_CAPABLE;
8614 } else {
8615 pf->auto_disable_flags = I40E_FLAG_HW_ATR_EVICT_CAPABLE;
d502ce01 8616 }
a340c789 8617
41c445ff
JB
8618 pf->eeprom_version = 0xDEAD;
8619 pf->lan_veb = I40E_NO_VEB;
8620 pf->lan_vsi = I40E_NO_VSI;
8621
d1a8d275
ASJ
8622 /* By default FW has this off for performance reasons */
8623 pf->flags &= ~I40E_FLAG_VEB_STATS_ENABLED;
8624
41c445ff
JB
8625 /* set up queue assignment tracking */
8626 size = sizeof(struct i40e_lump_tracking)
8627 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
8628 pf->qp_pile = kzalloc(size, GFP_KERNEL);
8629 if (!pf->qp_pile) {
8630 err = -ENOMEM;
8631 goto sw_init_done;
8632 }
8633 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
8634 pf->qp_pile->search_hint = 0;
8635
327fe04b
ASJ
8636 pf->tx_timeout_recovery_level = 1;
8637
41c445ff
JB
8638 mutex_init(&pf->switch_mutex);
8639
c668a12c
GR
8640 /* If NPAR is enabled nudge the Tx scheduler */
8641 if (pf->hw.func_caps.npar_enable && (!i40e_get_npar_bw_setting(pf)))
8642 i40e_set_npar_bw_setting(pf);
8643
41c445ff
JB
8644sw_init_done:
8645 return err;
8646}
8647
7c3c288b
ASJ
8648/**
8649 * i40e_set_ntuple - set the ntuple feature flag and take action
8650 * @pf: board private structure to initialize
8651 * @features: the feature set that the stack is suggesting
8652 *
8653 * returns a bool to indicate if reset needs to happen
8654 **/
8655bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
8656{
8657 bool need_reset = false;
8658
8659 /* Check if Flow Director n-tuple support was enabled or disabled. If
8660 * the state changed, we need to reset.
8661 */
8662 if (features & NETIF_F_NTUPLE) {
8663 /* Enable filters and mark for reset */
8664 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
8665 need_reset = true;
a70e407f
TD
8666 /* enable FD_SB only if there is MSI-X vector */
8667 if (pf->num_fdsb_msix > 0)
8668 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
7c3c288b
ASJ
8669 } else {
8670 /* turn off filters, mark for reset and clear SW filter list */
8671 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8672 need_reset = true;
8673 i40e_fdir_filter_exit(pf);
8674 }
8675 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8a4f34fb 8676 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
1e1be8f6
ASJ
8677 /* reset fd counters */
8678 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
8679 pf->fdir_pf_active_filters = 0;
8a4f34fb
ASJ
8680 /* if ATR was auto disabled it can be re-enabled. */
8681 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
234dc4e6 8682 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
8a4f34fb 8683 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
234dc4e6
JK
8684 if (I40E_DEBUG_FD & pf->hw.debug_mask)
8685 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
8686 }
7c3c288b
ASJ
8687 }
8688 return need_reset;
8689}
8690
d8ec9864
AB
8691/**
8692 * i40e_clear_rss_lut - clear the rx hash lookup table
8693 * @vsi: the VSI being configured
8694 **/
8695static void i40e_clear_rss_lut(struct i40e_vsi *vsi)
8696{
8697 struct i40e_pf *pf = vsi->back;
8698 struct i40e_hw *hw = &pf->hw;
8699 u16 vf_id = vsi->vf_id;
8700 u8 i;
8701
8702 if (vsi->type == I40E_VSI_MAIN) {
8703 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8704 wr32(hw, I40E_PFQF_HLUT(i), 0);
8705 } else if (vsi->type == I40E_VSI_SRIOV) {
8706 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
8707 i40e_write_rx_ctl(hw, I40E_VFQF_HLUT1(i, vf_id), 0);
8708 } else {
8709 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
8710 }
8711}
8712
41c445ff
JB
8713/**
8714 * i40e_set_features - set the netdev feature flags
8715 * @netdev: ptr to the netdev being adjusted
8716 * @features: the feature set that the stack is suggesting
8717 **/
8718static int i40e_set_features(struct net_device *netdev,
8719 netdev_features_t features)
8720{
8721 struct i40e_netdev_priv *np = netdev_priv(netdev);
8722 struct i40e_vsi *vsi = np->vsi;
7c3c288b
ASJ
8723 struct i40e_pf *pf = vsi->back;
8724 bool need_reset;
41c445ff 8725
d8ec9864
AB
8726 if (features & NETIF_F_RXHASH && !(netdev->features & NETIF_F_RXHASH))
8727 i40e_pf_config_rss(pf);
8728 else if (!(features & NETIF_F_RXHASH) &&
8729 netdev->features & NETIF_F_RXHASH)
8730 i40e_clear_rss_lut(vsi);
8731
41c445ff
JB
8732 if (features & NETIF_F_HW_VLAN_CTAG_RX)
8733 i40e_vlan_stripping_enable(vsi);
8734 else
8735 i40e_vlan_stripping_disable(vsi);
8736
7c3c288b
ASJ
8737 need_reset = i40e_set_ntuple(pf, features);
8738
8739 if (need_reset)
41a1d04b 8740 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
7c3c288b 8741
41c445ff
JB
8742 return 0;
8743}
8744
a1c9a9d9 8745/**
6a899024 8746 * i40e_get_udp_port_idx - Lookup a possibly offloaded for Rx UDP port
a1c9a9d9
JK
8747 * @pf: board private structure
8748 * @port: The UDP port to look up
8749 *
8750 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
8751 **/
6a899024 8752static u8 i40e_get_udp_port_idx(struct i40e_pf *pf, __be16 port)
a1c9a9d9
JK
8753{
8754 u8 i;
8755
8756 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
6a899024 8757 if (pf->udp_ports[i].index == port)
a1c9a9d9
JK
8758 return i;
8759 }
8760
8761 return i;
8762}
8763
8764/**
06a5f7f1 8765 * i40e_udp_tunnel_add - Get notifications about UDP tunnel ports that come up
a1c9a9d9 8766 * @netdev: This physical port's netdev
06a5f7f1 8767 * @ti: Tunnel endpoint information
a1c9a9d9 8768 **/
06a5f7f1
AD
8769static void i40e_udp_tunnel_add(struct net_device *netdev,
8770 struct udp_tunnel_info *ti)
a1c9a9d9
JK
8771{
8772 struct i40e_netdev_priv *np = netdev_priv(netdev);
8773 struct i40e_vsi *vsi = np->vsi;
8774 struct i40e_pf *pf = vsi->back;
06a5f7f1 8775 __be16 port = ti->port;
a1c9a9d9
JK
8776 u8 next_idx;
8777 u8 idx;
8778
6a899024 8779 idx = i40e_get_udp_port_idx(pf, port);
a1c9a9d9
JK
8780
8781 /* Check if port already exists */
8782 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
06a5f7f1 8783 netdev_info(netdev, "port %d already offloaded\n",
c22c06c8 8784 ntohs(port));
a1c9a9d9
JK
8785 return;
8786 }
8787
8788 /* Now check if there is space to add the new port */
6a899024 8789 next_idx = i40e_get_udp_port_idx(pf, 0);
a1c9a9d9
JK
8790
8791 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
06a5f7f1 8792 netdev_info(netdev, "maximum number of offloaded UDP ports reached, not adding port %d\n",
6a899024
SA
8793 ntohs(port));
8794 return;
8795 }
8796
06a5f7f1
AD
8797 switch (ti->type) {
8798 case UDP_TUNNEL_TYPE_VXLAN:
8799 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_VXLAN;
8800 break;
8801 case UDP_TUNNEL_TYPE_GENEVE:
8802 if (!(pf->flags & I40E_FLAG_GENEVE_OFFLOAD_CAPABLE))
8803 return;
8804 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_NGE;
8805 break;
8806 default:
6a899024
SA
8807 return;
8808 }
8809
8810 /* New port: add it and mark its index in the bitmap */
8811 pf->udp_ports[next_idx].index = port;
6a899024
SA
8812 pf->pending_udp_bitmap |= BIT_ULL(next_idx);
8813 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
a1c9a9d9
JK
8814}
8815
6a899024 8816/**
06a5f7f1 8817 * i40e_udp_tunnel_del - Get notifications about UDP tunnel ports that go away
6a899024 8818 * @netdev: This physical port's netdev
06a5f7f1 8819 * @ti: Tunnel endpoint information
6a899024 8820 **/
06a5f7f1
AD
8821static void i40e_udp_tunnel_del(struct net_device *netdev,
8822 struct udp_tunnel_info *ti)
6a899024 8823{
6a899024
SA
8824 struct i40e_netdev_priv *np = netdev_priv(netdev);
8825 struct i40e_vsi *vsi = np->vsi;
8826 struct i40e_pf *pf = vsi->back;
06a5f7f1 8827 __be16 port = ti->port;
6a899024
SA
8828 u8 idx;
8829
6a899024
SA
8830 idx = i40e_get_udp_port_idx(pf, port);
8831
8832 /* Check if port already exists */
06a5f7f1
AD
8833 if (idx >= I40E_MAX_PF_UDP_OFFLOAD_PORTS)
8834 goto not_found;
6a899024 8835
06a5f7f1
AD
8836 switch (ti->type) {
8837 case UDP_TUNNEL_TYPE_VXLAN:
8838 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_VXLAN)
8839 goto not_found;
8840 break;
8841 case UDP_TUNNEL_TYPE_GENEVE:
8842 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_NGE)
8843 goto not_found;
8844 break;
8845 default:
8846 goto not_found;
6a899024 8847 }
06a5f7f1
AD
8848
8849 /* if port exists, set it to 0 (mark for deletion)
8850 * and make it pending
8851 */
8852 pf->udp_ports[idx].index = 0;
8853 pf->pending_udp_bitmap |= BIT_ULL(idx);
8854 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
8855
8856 return;
8857not_found:
8858 netdev_warn(netdev, "UDP port %d was not found, not deleting\n",
8859 ntohs(port));
6a899024
SA
8860}
8861
1f224ad2 8862static int i40e_get_phys_port_id(struct net_device *netdev,
02637fce 8863 struct netdev_phys_item_id *ppid)
1f224ad2
NP
8864{
8865 struct i40e_netdev_priv *np = netdev_priv(netdev);
8866 struct i40e_pf *pf = np->vsi->back;
8867 struct i40e_hw *hw = &pf->hw;
8868
8869 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
8870 return -EOPNOTSUPP;
8871
8872 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
8873 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
8874
8875 return 0;
8876}
8877
2f90ade6
JB
8878/**
8879 * i40e_ndo_fdb_add - add an entry to the hardware database
8880 * @ndm: the input from the stack
8881 * @tb: pointer to array of nladdr (unused)
8882 * @dev: the net device pointer
8883 * @addr: the MAC address entry being added
8884 * @flags: instructions from stack about fdb operation
8885 */
4ba0dea5
GR
8886static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
8887 struct net_device *dev,
f6f6424b 8888 const unsigned char *addr, u16 vid,
4ba0dea5 8889 u16 flags)
4ba0dea5
GR
8890{
8891 struct i40e_netdev_priv *np = netdev_priv(dev);
8892 struct i40e_pf *pf = np->vsi->back;
8893 int err = 0;
8894
8895 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
8896 return -EOPNOTSUPP;
8897
65891fea
OG
8898 if (vid) {
8899 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
8900 return -EINVAL;
8901 }
8902
4ba0dea5
GR
8903 /* Hardware does not support aging addresses so if a
8904 * ndm_state is given only allow permanent addresses
8905 */
8906 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
8907 netdev_info(dev, "FDB only supports static addresses\n");
8908 return -EINVAL;
8909 }
8910
8911 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
8912 err = dev_uc_add_excl(dev, addr);
8913 else if (is_multicast_ether_addr(addr))
8914 err = dev_mc_add_excl(dev, addr);
8915 else
8916 err = -EINVAL;
8917
8918 /* Only return duplicate errors if NLM_F_EXCL is set */
8919 if (err == -EEXIST && !(flags & NLM_F_EXCL))
8920 err = 0;
8921
8922 return err;
8923}
8924
51616018
NP
8925/**
8926 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
8927 * @dev: the netdev being configured
8928 * @nlh: RTNL message
8929 *
8930 * Inserts a new hardware bridge if not already created and
8931 * enables the bridging mode requested (VEB or VEPA). If the
8932 * hardware bridge has already been inserted and the request
8933 * is to change the mode then that requires a PF reset to
8934 * allow rebuild of the components with required hardware
8935 * bridge mode enabled.
8936 **/
8937static int i40e_ndo_bridge_setlink(struct net_device *dev,
9df70b66
CW
8938 struct nlmsghdr *nlh,
8939 u16 flags)
51616018
NP
8940{
8941 struct i40e_netdev_priv *np = netdev_priv(dev);
8942 struct i40e_vsi *vsi = np->vsi;
8943 struct i40e_pf *pf = vsi->back;
8944 struct i40e_veb *veb = NULL;
8945 struct nlattr *attr, *br_spec;
8946 int i, rem;
8947
8948 /* Only for PF VSI for now */
8949 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8950 return -EOPNOTSUPP;
8951
8952 /* Find the HW bridge for PF VSI */
8953 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8954 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8955 veb = pf->veb[i];
8956 }
8957
8958 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
8959
8960 nla_for_each_nested(attr, br_spec, rem) {
8961 __u16 mode;
8962
8963 if (nla_type(attr) != IFLA_BRIDGE_MODE)
8964 continue;
8965
8966 mode = nla_get_u16(attr);
8967 if ((mode != BRIDGE_MODE_VEPA) &&
8968 (mode != BRIDGE_MODE_VEB))
8969 return -EINVAL;
8970
8971 /* Insert a new HW bridge */
8972 if (!veb) {
8973 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8974 vsi->tc_config.enabled_tc);
8975 if (veb) {
8976 veb->bridge_mode = mode;
8977 i40e_config_bridge_mode(veb);
8978 } else {
8979 /* No Bridge HW offload available */
8980 return -ENOENT;
8981 }
8982 break;
8983 } else if (mode != veb->bridge_mode) {
8984 /* Existing HW bridge but different mode needs reset */
8985 veb->bridge_mode = mode;
fc60861e
ASJ
8986 /* TODO: If no VFs or VMDq VSIs, disallow VEB mode */
8987 if (mode == BRIDGE_MODE_VEB)
8988 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
8989 else
8990 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
8991 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
51616018
NP
8992 break;
8993 }
8994 }
8995
8996 return 0;
8997}
8998
8999/**
9000 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
9001 * @skb: skb buff
9002 * @pid: process id
9003 * @seq: RTNL message seq #
9004 * @dev: the netdev being configured
9005 * @filter_mask: unused
d4b2f9fe 9006 * @nlflags: netlink flags passed in
51616018
NP
9007 *
9008 * Return the mode in which the hardware bridge is operating in
9009 * i.e VEB or VEPA.
9010 **/
51616018
NP
9011static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
9012 struct net_device *dev,
9f4ffc44
CW
9013 u32 __always_unused filter_mask,
9014 int nlflags)
51616018
NP
9015{
9016 struct i40e_netdev_priv *np = netdev_priv(dev);
9017 struct i40e_vsi *vsi = np->vsi;
9018 struct i40e_pf *pf = vsi->back;
9019 struct i40e_veb *veb = NULL;
9020 int i;
9021
9022 /* Only for PF VSI for now */
9023 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
9024 return -EOPNOTSUPP;
9025
9026 /* Find the HW bridge for the PF VSI */
9027 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9028 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9029 veb = pf->veb[i];
9030 }
9031
9032 if (!veb)
9033 return 0;
9034
46c264da 9035 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
7d4f8d87 9036 nlflags, 0, 0, filter_mask, NULL);
51616018 9037}
51616018 9038
6a899024
SA
9039/* Hardware supports L4 tunnel length of 128B (=2^7) which includes
9040 * inner mac plus all inner ethertypes.
9041 */
9042#define I40E_MAX_TUNNEL_HDR_LEN 128
f44a75e2
JS
9043/**
9044 * i40e_features_check - Validate encapsulated packet conforms to limits
9045 * @skb: skb buff
2bc11c63 9046 * @dev: This physical port's netdev
f44a75e2
JS
9047 * @features: Offload features that the stack believes apply
9048 **/
9049static netdev_features_t i40e_features_check(struct sk_buff *skb,
9050 struct net_device *dev,
9051 netdev_features_t features)
9052{
9053 if (skb->encapsulation &&
6a899024 9054 ((skb_inner_network_header(skb) - skb_transport_header(skb)) >
f44a75e2 9055 I40E_MAX_TUNNEL_HDR_LEN))
a188222b 9056 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
f44a75e2
JS
9057
9058 return features;
9059}
9060
37a2973a 9061static const struct net_device_ops i40e_netdev_ops = {
41c445ff
JB
9062 .ndo_open = i40e_open,
9063 .ndo_stop = i40e_close,
9064 .ndo_start_xmit = i40e_lan_xmit_frame,
9065 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
9066 .ndo_set_rx_mode = i40e_set_rx_mode,
9067 .ndo_validate_addr = eth_validate_addr,
9068 .ndo_set_mac_address = i40e_set_mac,
9069 .ndo_change_mtu = i40e_change_mtu,
beb0dff1 9070 .ndo_do_ioctl = i40e_ioctl,
41c445ff
JB
9071 .ndo_tx_timeout = i40e_tx_timeout,
9072 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
9073 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
9074#ifdef CONFIG_NET_POLL_CONTROLLER
9075 .ndo_poll_controller = i40e_netpoll,
9076#endif
e4c6734e 9077 .ndo_setup_tc = __i40e_setup_tc,
38e00438
VD
9078#ifdef I40E_FCOE
9079 .ndo_fcoe_enable = i40e_fcoe_enable,
9080 .ndo_fcoe_disable = i40e_fcoe_disable,
9081#endif
41c445ff
JB
9082 .ndo_set_features = i40e_set_features,
9083 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
9084 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
ed616689 9085 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
41c445ff 9086 .ndo_get_vf_config = i40e_ndo_get_vf_config,
588aefa0 9087 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
e6d9004d 9088 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
c3bbbd20 9089 .ndo_set_vf_trust = i40e_ndo_set_vf_trust,
06a5f7f1
AD
9090 .ndo_udp_tunnel_add = i40e_udp_tunnel_add,
9091 .ndo_udp_tunnel_del = i40e_udp_tunnel_del,
1f224ad2 9092 .ndo_get_phys_port_id = i40e_get_phys_port_id,
4ba0dea5 9093 .ndo_fdb_add = i40e_ndo_fdb_add,
f44a75e2 9094 .ndo_features_check = i40e_features_check,
51616018
NP
9095 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
9096 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
41c445ff
JB
9097};
9098
9099/**
9100 * i40e_config_netdev - Setup the netdev flags
9101 * @vsi: the VSI being configured
9102 *
9103 * Returns 0 on success, negative value on failure
9104 **/
9105static int i40e_config_netdev(struct i40e_vsi *vsi)
9106{
9107 struct i40e_pf *pf = vsi->back;
9108 struct i40e_hw *hw = &pf->hw;
9109 struct i40e_netdev_priv *np;
9110 struct net_device *netdev;
9111 u8 mac_addr[ETH_ALEN];
9112 int etherdev_size;
9113
9114 etherdev_size = sizeof(struct i40e_netdev_priv);
f8ff1464 9115 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
41c445ff
JB
9116 if (!netdev)
9117 return -ENOMEM;
9118
9119 vsi->netdev = netdev;
9120 np = netdev_priv(netdev);
9121 np->vsi = vsi;
9122
b0fe3306
AD
9123 netdev->hw_enc_features |= NETIF_F_SG |
9124 NETIF_F_IP_CSUM |
9125 NETIF_F_IPV6_CSUM |
9126 NETIF_F_HIGHDMA |
9127 NETIF_F_SOFT_FEATURES |
9128 NETIF_F_TSO |
9129 NETIF_F_TSO_ECN |
9130 NETIF_F_TSO6 |
9131 NETIF_F_GSO_GRE |
1c7b4a23 9132 NETIF_F_GSO_GRE_CSUM |
7e13318d 9133 NETIF_F_GSO_IPXIP4 |
bf2d1df3 9134 NETIF_F_GSO_IPXIP6 |
b0fe3306
AD
9135 NETIF_F_GSO_UDP_TUNNEL |
9136 NETIF_F_GSO_UDP_TUNNEL_CSUM |
1c7b4a23 9137 NETIF_F_GSO_PARTIAL |
b0fe3306
AD
9138 NETIF_F_SCTP_CRC |
9139 NETIF_F_RXHASH |
9140 NETIF_F_RXCSUM |
5afdaaa0 9141 0;
41c445ff 9142
b0fe3306 9143 if (!(pf->flags & I40E_FLAG_OUTER_UDP_CSUM_CAPABLE))
1c7b4a23
AD
9144 netdev->gso_partial_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
9145
9146 netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
b0fe3306
AD
9147
9148 /* record features VLANs can make use of */
1c7b4a23
AD
9149 netdev->vlan_features |= netdev->hw_enc_features |
9150 NETIF_F_TSO_MANGLEID;
41c445ff 9151
2e86a0b6 9152 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
b0fe3306
AD
9153 netdev->hw_features |= NETIF_F_NTUPLE;
9154
9155 netdev->hw_features |= netdev->hw_enc_features |
9156 NETIF_F_HW_VLAN_CTAG_TX |
9157 NETIF_F_HW_VLAN_CTAG_RX;
2e86a0b6 9158
b0fe3306 9159 netdev->features |= netdev->hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
1c7b4a23 9160 netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
41c445ff
JB
9161
9162 if (vsi->type == I40E_VSI_MAIN) {
9163 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
9a173901 9164 ether_addr_copy(mac_addr, hw->mac.perm_addr);
30650cc5
SN
9165 /* The following steps are necessary to prevent reception
9166 * of tagged packets - some older NVM configurations load a
9167 * default a MAC-VLAN filter that accepts any tagged packet
9168 * which must be replaced by a normal filter.
8c27d42e 9169 */
c3c7ea27
MW
9170 i40e_rm_default_mac_filter(vsi, mac_addr);
9171 spin_lock_bh(&vsi->mac_filter_list_lock);
9172 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, true);
9173 spin_unlock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
9174 } else {
9175 /* relate the VSI_VMDQ name to the VSI_MAIN name */
9176 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
9177 pf->vsi[pf->lan_vsi]->netdev->name);
9178 random_ether_addr(mac_addr);
21659035
KP
9179
9180 spin_lock_bh(&vsi->mac_filter_list_lock);
41c445ff 9181 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
21659035 9182 spin_unlock_bh(&vsi->mac_filter_list_lock);
41c445ff 9183 }
21659035 9184
9a173901
GR
9185 ether_addr_copy(netdev->dev_addr, mac_addr);
9186 ether_addr_copy(netdev->perm_addr, mac_addr);
b0fe3306 9187
41c445ff
JB
9188 netdev->priv_flags |= IFF_UNICAST_FLT;
9189 netdev->priv_flags |= IFF_SUPP_NOFCS;
9190 /* Setup netdev TC information */
9191 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
9192
9193 netdev->netdev_ops = &i40e_netdev_ops;
9194 netdev->watchdog_timeo = 5 * HZ;
9195 i40e_set_ethtool_ops(netdev);
38e00438
VD
9196#ifdef I40E_FCOE
9197 i40e_fcoe_config_netdev(netdev, vsi);
9198#endif
41c445ff
JB
9199
9200 return 0;
9201}
9202
9203/**
9204 * i40e_vsi_delete - Delete a VSI from the switch
9205 * @vsi: the VSI being removed
9206 *
9207 * Returns 0 on success, negative value on failure
9208 **/
9209static void i40e_vsi_delete(struct i40e_vsi *vsi)
9210{
9211 /* remove default VSI is not allowed */
9212 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
9213 return;
9214
41c445ff 9215 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
41c445ff
JB
9216}
9217
51616018
NP
9218/**
9219 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
9220 * @vsi: the VSI being queried
9221 *
9222 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
9223 **/
9224int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
9225{
9226 struct i40e_veb *veb;
9227 struct i40e_pf *pf = vsi->back;
9228
9229 /* Uplink is not a bridge so default to VEB */
9230 if (vsi->veb_idx == I40E_NO_VEB)
9231 return 1;
9232
9233 veb = pf->veb[vsi->veb_idx];
09603eaa
AA
9234 if (!veb) {
9235 dev_info(&pf->pdev->dev,
9236 "There is no veb associated with the bridge\n");
9237 return -ENOENT;
9238 }
9239
51616018 9240 /* Uplink is a bridge in VEPA mode */
09603eaa 9241 if (veb->bridge_mode & BRIDGE_MODE_VEPA) {
51616018 9242 return 0;
09603eaa
AA
9243 } else {
9244 /* Uplink is a bridge in VEB mode */
9245 return 1;
9246 }
51616018 9247
09603eaa
AA
9248 /* VEPA is now default bridge, so return 0 */
9249 return 0;
51616018
NP
9250}
9251
41c445ff
JB
9252/**
9253 * i40e_add_vsi - Add a VSI to the switch
9254 * @vsi: the VSI being configured
9255 *
9256 * This initializes a VSI context depending on the VSI type to be added and
9257 * passes it down to the add_vsi aq command.
9258 **/
9259static int i40e_add_vsi(struct i40e_vsi *vsi)
9260{
9261 int ret = -ENODEV;
f6bd0962 9262 i40e_status aq_ret = 0;
41c445ff
JB
9263 struct i40e_pf *pf = vsi->back;
9264 struct i40e_hw *hw = &pf->hw;
9265 struct i40e_vsi_context ctxt;
21659035
KP
9266 struct i40e_mac_filter *f, *ftmp;
9267
41c445ff
JB
9268 u8 enabled_tc = 0x1; /* TC0 enabled */
9269 int f_count = 0;
9270
9271 memset(&ctxt, 0, sizeof(ctxt));
9272 switch (vsi->type) {
9273 case I40E_VSI_MAIN:
9274 /* The PF's main VSI is already setup as part of the
9275 * device initialization, so we'll not bother with
9276 * the add_vsi call, but we will retrieve the current
9277 * VSI context.
9278 */
9279 ctxt.seid = pf->main_vsi_seid;
9280 ctxt.pf_num = pf->hw.pf_id;
9281 ctxt.vf_num = 0;
9282 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
9283 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
9284 if (ret) {
9285 dev_info(&pf->pdev->dev,
f1c7e72e
SN
9286 "couldn't get PF vsi config, err %s aq_err %s\n",
9287 i40e_stat_str(&pf->hw, ret),
9288 i40e_aq_str(&pf->hw,
9289 pf->hw.aq.asq_last_status));
41c445ff
JB
9290 return -ENOENT;
9291 }
1a2f6248 9292 vsi->info = ctxt.info;
41c445ff
JB
9293 vsi->info.valid_sections = 0;
9294
9295 vsi->seid = ctxt.seid;
9296 vsi->id = ctxt.vsi_number;
9297
9298 enabled_tc = i40e_pf_get_tc_map(pf);
9299
9300 /* MFP mode setup queue map and update VSI */
63d7e5a4
NP
9301 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
9302 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
41c445ff
JB
9303 memset(&ctxt, 0, sizeof(ctxt));
9304 ctxt.seid = pf->main_vsi_seid;
9305 ctxt.pf_num = pf->hw.pf_id;
9306 ctxt.vf_num = 0;
9307 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
9308 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
9309 if (ret) {
9310 dev_info(&pf->pdev->dev,
f1c7e72e
SN
9311 "update vsi failed, err %s aq_err %s\n",
9312 i40e_stat_str(&pf->hw, ret),
9313 i40e_aq_str(&pf->hw,
9314 pf->hw.aq.asq_last_status));
41c445ff
JB
9315 ret = -ENOENT;
9316 goto err;
9317 }
9318 /* update the local VSI info queue map */
9319 i40e_vsi_update_queue_map(vsi, &ctxt);
9320 vsi->info.valid_sections = 0;
9321 } else {
9322 /* Default/Main VSI is only enabled for TC0
9323 * reconfigure it to enable all TCs that are
9324 * available on the port in SFP mode.
63d7e5a4
NP
9325 * For MFP case the iSCSI PF would use this
9326 * flow to enable LAN+iSCSI TC.
41c445ff
JB
9327 */
9328 ret = i40e_vsi_config_tc(vsi, enabled_tc);
9329 if (ret) {
9330 dev_info(&pf->pdev->dev,
f1c7e72e
SN
9331 "failed to configure TCs for main VSI tc_map 0x%08x, err %s aq_err %s\n",
9332 enabled_tc,
9333 i40e_stat_str(&pf->hw, ret),
9334 i40e_aq_str(&pf->hw,
9335 pf->hw.aq.asq_last_status));
41c445ff
JB
9336 ret = -ENOENT;
9337 }
9338 }
9339 break;
9340
9341 case I40E_VSI_FDIR:
cbf61325
ASJ
9342 ctxt.pf_num = hw->pf_id;
9343 ctxt.vf_num = 0;
9344 ctxt.uplink_seid = vsi->uplink_seid;
2b18e591 9345 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
cbf61325 9346 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
fc60861e
ASJ
9347 if ((pf->flags & I40E_FLAG_VEB_MODE_ENABLED) &&
9348 (i40e_is_vsi_uplink_mode_veb(vsi))) {
51616018 9349 ctxt.info.valid_sections |=
fc60861e 9350 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
51616018 9351 ctxt.info.switch_id =
fc60861e 9352 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
51616018 9353 }
41c445ff 9354 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
41c445ff
JB
9355 break;
9356
9357 case I40E_VSI_VMDQ2:
9358 ctxt.pf_num = hw->pf_id;
9359 ctxt.vf_num = 0;
9360 ctxt.uplink_seid = vsi->uplink_seid;
2b18e591 9361 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
41c445ff
JB
9362 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
9363
41c445ff
JB
9364 /* This VSI is connected to VEB so the switch_id
9365 * should be set to zero by default.
9366 */
51616018
NP
9367 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9368 ctxt.info.valid_sections |=
9369 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9370 ctxt.info.switch_id =
9371 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9372 }
41c445ff
JB
9373
9374 /* Setup the VSI tx/rx queue map for TC0 only for now */
9375 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9376 break;
9377
9378 case I40E_VSI_SRIOV:
9379 ctxt.pf_num = hw->pf_id;
9380 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
9381 ctxt.uplink_seid = vsi->uplink_seid;
2b18e591 9382 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
41c445ff
JB
9383 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
9384
41c445ff
JB
9385 /* This VSI is connected to VEB so the switch_id
9386 * should be set to zero by default.
9387 */
51616018
NP
9388 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9389 ctxt.info.valid_sections |=
9390 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9391 ctxt.info.switch_id =
9392 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9393 }
41c445ff 9394
e3219ce6
ASJ
9395 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
9396 ctxt.info.valid_sections |=
9397 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
9398 ctxt.info.queueing_opt_flags |=
4b28cdba
AS
9399 (I40E_AQ_VSI_QUE_OPT_TCP_ENA |
9400 I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI);
e3219ce6
ASJ
9401 }
9402
41c445ff
JB
9403 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
9404 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
c674d125
MW
9405 if (pf->vf[vsi->vf_id].spoofchk) {
9406 ctxt.info.valid_sections |=
9407 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
9408 ctxt.info.sec_flags |=
9409 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
9410 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
9411 }
41c445ff
JB
9412 /* Setup the VSI tx/rx queue map for TC0 only for now */
9413 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9414 break;
9415
38e00438
VD
9416#ifdef I40E_FCOE
9417 case I40E_VSI_FCOE:
9418 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
9419 if (ret) {
9420 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
9421 return ret;
9422 }
9423 break;
9424
9425#endif /* I40E_FCOE */
e3219ce6
ASJ
9426 case I40E_VSI_IWARP:
9427 /* send down message to iWARP */
9428 break;
9429
41c445ff
JB
9430 default:
9431 return -ENODEV;
9432 }
9433
9434 if (vsi->type != I40E_VSI_MAIN) {
9435 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
9436 if (ret) {
9437 dev_info(&vsi->back->pdev->dev,
f1c7e72e
SN
9438 "add vsi failed, err %s aq_err %s\n",
9439 i40e_stat_str(&pf->hw, ret),
9440 i40e_aq_str(&pf->hw,
9441 pf->hw.aq.asq_last_status));
41c445ff
JB
9442 ret = -ENOENT;
9443 goto err;
9444 }
1a2f6248 9445 vsi->info = ctxt.info;
41c445ff
JB
9446 vsi->info.valid_sections = 0;
9447 vsi->seid = ctxt.seid;
9448 vsi->id = ctxt.vsi_number;
9449 }
f6bd0962
KP
9450 /* Except FDIR VSI, for all othet VSI set the broadcast filter */
9451 if (vsi->type != I40E_VSI_FDIR) {
9452 aq_ret = i40e_aq_set_vsi_broadcast(hw, vsi->seid, true, NULL);
9453 if (aq_ret) {
9454 ret = i40e_aq_rc_to_posix(aq_ret,
9455 hw->aq.asq_last_status);
9456 dev_info(&pf->pdev->dev,
9457 "set brdcast promisc failed, err %s, aq_err %s\n",
9458 i40e_stat_str(hw, aq_ret),
9459 i40e_aq_str(hw, hw->aq.asq_last_status));
9460 }
9461 }
41c445ff 9462
c3c7ea27
MW
9463 vsi->active_filters = 0;
9464 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
21659035 9465 spin_lock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
9466 /* If macvlan filters already exist, force them to get loaded */
9467 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
c3c7ea27 9468 f->state = I40E_FILTER_NEW;
41c445ff 9469 f_count++;
21659035
KP
9470 }
9471 spin_unlock_bh(&vsi->mac_filter_list_lock);
30650cc5 9472
41c445ff
JB
9473 if (f_count) {
9474 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
9475 pf->flags |= I40E_FLAG_FILTER_SYNC;
9476 }
9477
9478 /* Update VSI BW information */
9479 ret = i40e_vsi_get_bw_info(vsi);
9480 if (ret) {
9481 dev_info(&pf->pdev->dev,
f1c7e72e
SN
9482 "couldn't get vsi bw info, err %s aq_err %s\n",
9483 i40e_stat_str(&pf->hw, ret),
9484 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
41c445ff
JB
9485 /* VSI is already added so not tearing that up */
9486 ret = 0;
9487 }
9488
9489err:
9490 return ret;
9491}
9492
9493/**
9494 * i40e_vsi_release - Delete a VSI and free its resources
9495 * @vsi: the VSI being removed
9496 *
9497 * Returns 0 on success or < 0 on error
9498 **/
9499int i40e_vsi_release(struct i40e_vsi *vsi)
9500{
9501 struct i40e_mac_filter *f, *ftmp;
9502 struct i40e_veb *veb = NULL;
9503 struct i40e_pf *pf;
9504 u16 uplink_seid;
9505 int i, n;
9506
9507 pf = vsi->back;
9508
9509 /* release of a VEB-owner or last VSI is not allowed */
9510 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
9511 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
9512 vsi->seid, vsi->uplink_seid);
9513 return -ENODEV;
9514 }
9515 if (vsi == pf->vsi[pf->lan_vsi] &&
9516 !test_bit(__I40E_DOWN, &pf->state)) {
9517 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
9518 return -ENODEV;
9519 }
9520
9521 uplink_seid = vsi->uplink_seid;
9522 if (vsi->type != I40E_VSI_SRIOV) {
9523 if (vsi->netdev_registered) {
9524 vsi->netdev_registered = false;
9525 if (vsi->netdev) {
9526 /* results in a call to i40e_close() */
9527 unregister_netdev(vsi->netdev);
41c445ff
JB
9528 }
9529 } else {
90ef8d47 9530 i40e_vsi_close(vsi);
41c445ff
JB
9531 }
9532 i40e_vsi_disable_irq(vsi);
9533 }
9534
21659035 9535 spin_lock_bh(&vsi->mac_filter_list_lock);
41c445ff
JB
9536 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
9537 i40e_del_filter(vsi, f->macaddr, f->vlan,
9538 f->is_vf, f->is_netdev);
21659035
KP
9539 spin_unlock_bh(&vsi->mac_filter_list_lock);
9540
17652c63 9541 i40e_sync_vsi_filters(vsi);
41c445ff
JB
9542
9543 i40e_vsi_delete(vsi);
9544 i40e_vsi_free_q_vectors(vsi);
a4866597
SN
9545 if (vsi->netdev) {
9546 free_netdev(vsi->netdev);
9547 vsi->netdev = NULL;
9548 }
41c445ff
JB
9549 i40e_vsi_clear_rings(vsi);
9550 i40e_vsi_clear(vsi);
9551
9552 /* If this was the last thing on the VEB, except for the
9553 * controlling VSI, remove the VEB, which puts the controlling
9554 * VSI onto the next level down in the switch.
9555 *
9556 * Well, okay, there's one more exception here: don't remove
9557 * the orphan VEBs yet. We'll wait for an explicit remove request
9558 * from up the network stack.
9559 */
505682cd 9560 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
41c445ff
JB
9561 if (pf->vsi[i] &&
9562 pf->vsi[i]->uplink_seid == uplink_seid &&
9563 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9564 n++; /* count the VSIs */
9565 }
9566 }
9567 for (i = 0; i < I40E_MAX_VEB; i++) {
9568 if (!pf->veb[i])
9569 continue;
9570 if (pf->veb[i]->uplink_seid == uplink_seid)
9571 n++; /* count the VEBs */
9572 if (pf->veb[i]->seid == uplink_seid)
9573 veb = pf->veb[i];
9574 }
9575 if (n == 0 && veb && veb->uplink_seid != 0)
9576 i40e_veb_release(veb);
9577
9578 return 0;
9579}
9580
9581/**
9582 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
9583 * @vsi: ptr to the VSI
9584 *
9585 * This should only be called after i40e_vsi_mem_alloc() which allocates the
9586 * corresponding SW VSI structure and initializes num_queue_pairs for the
9587 * newly allocated VSI.
9588 *
9589 * Returns 0 on success or negative on failure
9590 **/
9591static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
9592{
9593 int ret = -ENOENT;
9594 struct i40e_pf *pf = vsi->back;
9595
493fb300 9596 if (vsi->q_vectors[0]) {
41c445ff
JB
9597 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
9598 vsi->seid);
9599 return -EEXIST;
9600 }
9601
9602 if (vsi->base_vector) {
f29eaa3d 9603 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
41c445ff
JB
9604 vsi->seid, vsi->base_vector);
9605 return -EEXIST;
9606 }
9607
90e04070 9608 ret = i40e_vsi_alloc_q_vectors(vsi);
41c445ff
JB
9609 if (ret) {
9610 dev_info(&pf->pdev->dev,
9611 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
9612 vsi->num_q_vectors, vsi->seid, ret);
9613 vsi->num_q_vectors = 0;
9614 goto vector_setup_out;
9615 }
9616
26cdc443
ASJ
9617 /* In Legacy mode, we do not have to get any other vector since we
9618 * piggyback on the misc/ICR0 for queue interrupts.
9619 */
9620 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
9621 return ret;
958a3e3b
SN
9622 if (vsi->num_q_vectors)
9623 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
9624 vsi->num_q_vectors, vsi->idx);
41c445ff
JB
9625 if (vsi->base_vector < 0) {
9626 dev_info(&pf->pdev->dev,
049a2be8
SN
9627 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
9628 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
41c445ff
JB
9629 i40e_vsi_free_q_vectors(vsi);
9630 ret = -ENOENT;
9631 goto vector_setup_out;
9632 }
9633
9634vector_setup_out:
9635 return ret;
9636}
9637
bc7d338f
ASJ
9638/**
9639 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
9640 * @vsi: pointer to the vsi.
9641 *
9642 * This re-allocates a vsi's queue resources.
9643 *
9644 * Returns pointer to the successfully allocated and configured VSI sw struct
9645 * on success, otherwise returns NULL on failure.
9646 **/
9647static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
9648{
f534039d 9649 struct i40e_pf *pf;
bc7d338f
ASJ
9650 u8 enabled_tc;
9651 int ret;
9652
f534039d
JU
9653 if (!vsi)
9654 return NULL;
9655
9656 pf = vsi->back;
9657
bc7d338f
ASJ
9658 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
9659 i40e_vsi_clear_rings(vsi);
9660
9661 i40e_vsi_free_arrays(vsi, false);
9662 i40e_set_num_rings_in_vsi(vsi);
9663 ret = i40e_vsi_alloc_arrays(vsi, false);
9664 if (ret)
9665 goto err_vsi;
9666
9667 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
9668 if (ret < 0) {
049a2be8 9669 dev_info(&pf->pdev->dev,
f1c7e72e 9670 "failed to get tracking for %d queues for VSI %d err %d\n",
049a2be8 9671 vsi->alloc_queue_pairs, vsi->seid, ret);
bc7d338f
ASJ
9672 goto err_vsi;
9673 }
9674 vsi->base_queue = ret;
9675
9676 /* Update the FW view of the VSI. Force a reset of TC and queue
9677 * layout configurations.
9678 */
9679 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
9680 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
9681 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
9682 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
c3c7ea27
MW
9683 if (vsi->type == I40E_VSI_MAIN)
9684 i40e_rm_default_mac_filter(vsi, pf->hw.mac.perm_addr);
bc7d338f
ASJ
9685
9686 /* assign it some queues */
9687 ret = i40e_alloc_rings(vsi);
9688 if (ret)
9689 goto err_rings;
9690
9691 /* map all of the rings to the q_vectors */
9692 i40e_vsi_map_rings_to_vectors(vsi);
9693 return vsi;
9694
9695err_rings:
9696 i40e_vsi_free_q_vectors(vsi);
9697 if (vsi->netdev_registered) {
9698 vsi->netdev_registered = false;
9699 unregister_netdev(vsi->netdev);
9700 free_netdev(vsi->netdev);
9701 vsi->netdev = NULL;
9702 }
9703 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9704err_vsi:
9705 i40e_vsi_clear(vsi);
9706 return NULL;
9707}
9708
41c445ff
JB
9709/**
9710 * i40e_vsi_setup - Set up a VSI by a given type
9711 * @pf: board private structure
9712 * @type: VSI type
9713 * @uplink_seid: the switch element to link to
9714 * @param1: usage depends upon VSI type. For VF types, indicates VF id
9715 *
9716 * This allocates the sw VSI structure and its queue resources, then add a VSI
9717 * to the identified VEB.
9718 *
9719 * Returns pointer to the successfully allocated and configure VSI sw struct on
9720 * success, otherwise returns NULL on failure.
9721 **/
9722struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
9723 u16 uplink_seid, u32 param1)
9724{
9725 struct i40e_vsi *vsi = NULL;
9726 struct i40e_veb *veb = NULL;
9727 int ret, i;
9728 int v_idx;
9729
9730 /* The requested uplink_seid must be either
9731 * - the PF's port seid
9732 * no VEB is needed because this is the PF
9733 * or this is a Flow Director special case VSI
9734 * - seid of an existing VEB
9735 * - seid of a VSI that owns an existing VEB
9736 * - seid of a VSI that doesn't own a VEB
9737 * a new VEB is created and the VSI becomes the owner
9738 * - seid of the PF VSI, which is what creates the first VEB
9739 * this is a special case of the previous
9740 *
9741 * Find which uplink_seid we were given and create a new VEB if needed
9742 */
9743 for (i = 0; i < I40E_MAX_VEB; i++) {
9744 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
9745 veb = pf->veb[i];
9746 break;
9747 }
9748 }
9749
9750 if (!veb && uplink_seid != pf->mac_seid) {
9751
505682cd 9752 for (i = 0; i < pf->num_alloc_vsi; i++) {
41c445ff
JB
9753 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
9754 vsi = pf->vsi[i];
9755 break;
9756 }
9757 }
9758 if (!vsi) {
9759 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
9760 uplink_seid);
9761 return NULL;
9762 }
9763
9764 if (vsi->uplink_seid == pf->mac_seid)
9765 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
9766 vsi->tc_config.enabled_tc);
9767 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
9768 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
9769 vsi->tc_config.enabled_tc);
79c21a82
ASJ
9770 if (veb) {
9771 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
9772 dev_info(&vsi->back->pdev->dev,
fb43201f 9773 "New VSI creation error, uplink seid of LAN VSI expected.\n");
79c21a82
ASJ
9774 return NULL;
9775 }
fa11cb3d
ASJ
9776 /* We come up by default in VEPA mode if SRIOV is not
9777 * already enabled, in which case we can't force VEPA
9778 * mode.
9779 */
9780 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
9781 veb->bridge_mode = BRIDGE_MODE_VEPA;
9782 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
9783 }
51616018 9784 i40e_config_bridge_mode(veb);
79c21a82 9785 }
41c445ff
JB
9786 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9787 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9788 veb = pf->veb[i];
9789 }
9790 if (!veb) {
9791 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
9792 return NULL;
9793 }
9794
9795 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
9796 uplink_seid = veb->seid;
9797 }
9798
9799 /* get vsi sw struct */
9800 v_idx = i40e_vsi_mem_alloc(pf, type);
9801 if (v_idx < 0)
9802 goto err_alloc;
9803 vsi = pf->vsi[v_idx];
cbf61325
ASJ
9804 if (!vsi)
9805 goto err_alloc;
41c445ff
JB
9806 vsi->type = type;
9807 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
9808
9809 if (type == I40E_VSI_MAIN)
9810 pf->lan_vsi = v_idx;
9811 else if (type == I40E_VSI_SRIOV)
9812 vsi->vf_id = param1;
9813 /* assign it some queues */
cbf61325
ASJ
9814 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
9815 vsi->idx);
41c445ff 9816 if (ret < 0) {
049a2be8
SN
9817 dev_info(&pf->pdev->dev,
9818 "failed to get tracking for %d queues for VSI %d err=%d\n",
9819 vsi->alloc_queue_pairs, vsi->seid, ret);
41c445ff
JB
9820 goto err_vsi;
9821 }
9822 vsi->base_queue = ret;
9823
9824 /* get a VSI from the hardware */
9825 vsi->uplink_seid = uplink_seid;
9826 ret = i40e_add_vsi(vsi);
9827 if (ret)
9828 goto err_vsi;
9829
9830 switch (vsi->type) {
9831 /* setup the netdev if needed */
9832 case I40E_VSI_MAIN:
b499ffb0
SV
9833 /* Apply relevant filters if a platform-specific mac
9834 * address was selected.
9835 */
9836 if (!!(pf->flags & I40E_FLAG_PF_MAC)) {
9837 ret = i40e_macaddr_init(vsi, pf->hw.mac.addr);
9838 if (ret) {
9839 dev_warn(&pf->pdev->dev,
9840 "could not set up macaddr; err %d\n",
9841 ret);
9842 }
9843 }
41c445ff 9844 case I40E_VSI_VMDQ2:
38e00438 9845 case I40E_VSI_FCOE:
41c445ff
JB
9846 ret = i40e_config_netdev(vsi);
9847 if (ret)
9848 goto err_netdev;
9849 ret = register_netdev(vsi->netdev);
9850 if (ret)
9851 goto err_netdev;
9852 vsi->netdev_registered = true;
9853 netif_carrier_off(vsi->netdev);
4e3b35b0
NP
9854#ifdef CONFIG_I40E_DCB
9855 /* Setup DCB netlink interface */
9856 i40e_dcbnl_setup(vsi);
9857#endif /* CONFIG_I40E_DCB */
41c445ff
JB
9858 /* fall through */
9859
9860 case I40E_VSI_FDIR:
9861 /* set up vectors and rings if needed */
9862 ret = i40e_vsi_setup_vectors(vsi);
9863 if (ret)
9864 goto err_msix;
9865
9866 ret = i40e_alloc_rings(vsi);
9867 if (ret)
9868 goto err_rings;
9869
9870 /* map all of the rings to the q_vectors */
9871 i40e_vsi_map_rings_to_vectors(vsi);
9872
9873 i40e_vsi_reset_stats(vsi);
9874 break;
9875
9876 default:
9877 /* no netdev or rings for the other VSI types */
9878 break;
9879 }
9880
e25d00b8
ASJ
9881 if ((pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) &&
9882 (vsi->type == I40E_VSI_VMDQ2)) {
9883 ret = i40e_vsi_config_rss(vsi);
9884 }
41c445ff
JB
9885 return vsi;
9886
9887err_rings:
9888 i40e_vsi_free_q_vectors(vsi);
9889err_msix:
9890 if (vsi->netdev_registered) {
9891 vsi->netdev_registered = false;
9892 unregister_netdev(vsi->netdev);
9893 free_netdev(vsi->netdev);
9894 vsi->netdev = NULL;
9895 }
9896err_netdev:
9897 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9898err_vsi:
9899 i40e_vsi_clear(vsi);
9900err_alloc:
9901 return NULL;
9902}
9903
9904/**
9905 * i40e_veb_get_bw_info - Query VEB BW information
9906 * @veb: the veb to query
9907 *
9908 * Query the Tx scheduler BW configuration data for given VEB
9909 **/
9910static int i40e_veb_get_bw_info(struct i40e_veb *veb)
9911{
9912 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
9913 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
9914 struct i40e_pf *pf = veb->pf;
9915 struct i40e_hw *hw = &pf->hw;
9916 u32 tc_bw_max;
9917 int ret = 0;
9918 int i;
9919
9920 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
9921 &bw_data, NULL);
9922 if (ret) {
9923 dev_info(&pf->pdev->dev,
f1c7e72e
SN
9924 "query veb bw config failed, err %s aq_err %s\n",
9925 i40e_stat_str(&pf->hw, ret),
9926 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
41c445ff
JB
9927 goto out;
9928 }
9929
9930 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
9931 &ets_data, NULL);
9932 if (ret) {
9933 dev_info(&pf->pdev->dev,
f1c7e72e
SN
9934 "query veb bw ets config failed, err %s aq_err %s\n",
9935 i40e_stat_str(&pf->hw, ret),
9936 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
41c445ff
JB
9937 goto out;
9938 }
9939
9940 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
9941 veb->bw_max_quanta = ets_data.tc_bw_max;
9942 veb->is_abs_credits = bw_data.absolute_credits_enable;
23cd1f09 9943 veb->enabled_tc = ets_data.tc_valid_bits;
41c445ff
JB
9944 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
9945 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
9946 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
9947 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
9948 veb->bw_tc_limit_credits[i] =
9949 le16_to_cpu(bw_data.tc_bw_limits[i]);
9950 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
9951 }
9952
9953out:
9954 return ret;
9955}
9956
9957/**
9958 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
9959 * @pf: board private structure
9960 *
9961 * On error: returns error code (negative)
9962 * On success: returns vsi index in PF (positive)
9963 **/
9964static int i40e_veb_mem_alloc(struct i40e_pf *pf)
9965{
9966 int ret = -ENOENT;
9967 struct i40e_veb *veb;
9968 int i;
9969
9970 /* Need to protect the allocation of switch elements at the PF level */
9971 mutex_lock(&pf->switch_mutex);
9972
9973 /* VEB list may be fragmented if VEB creation/destruction has
9974 * been happening. We can afford to do a quick scan to look
9975 * for any free slots in the list.
9976 *
9977 * find next empty veb slot, looping back around if necessary
9978 */
9979 i = 0;
9980 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
9981 i++;
9982 if (i >= I40E_MAX_VEB) {
9983 ret = -ENOMEM;
9984 goto err_alloc_veb; /* out of VEB slots! */
9985 }
9986
9987 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
9988 if (!veb) {
9989 ret = -ENOMEM;
9990 goto err_alloc_veb;
9991 }
9992 veb->pf = pf;
9993 veb->idx = i;
9994 veb->enabled_tc = 1;
9995
9996 pf->veb[i] = veb;
9997 ret = i;
9998err_alloc_veb:
9999 mutex_unlock(&pf->switch_mutex);
10000 return ret;
10001}
10002
10003/**
10004 * i40e_switch_branch_release - Delete a branch of the switch tree
10005 * @branch: where to start deleting
10006 *
10007 * This uses recursion to find the tips of the branch to be
10008 * removed, deleting until we get back to and can delete this VEB.
10009 **/
10010static void i40e_switch_branch_release(struct i40e_veb *branch)
10011{
10012 struct i40e_pf *pf = branch->pf;
10013 u16 branch_seid = branch->seid;
10014 u16 veb_idx = branch->idx;
10015 int i;
10016
10017 /* release any VEBs on this VEB - RECURSION */
10018 for (i = 0; i < I40E_MAX_VEB; i++) {
10019 if (!pf->veb[i])
10020 continue;
10021 if (pf->veb[i]->uplink_seid == branch->seid)
10022 i40e_switch_branch_release(pf->veb[i]);
10023 }
10024
10025 /* Release the VSIs on this VEB, but not the owner VSI.
10026 *
10027 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
10028 * the VEB itself, so don't use (*branch) after this loop.
10029 */
505682cd 10030 for (i = 0; i < pf->num_alloc_vsi; i++) {
41c445ff
JB
10031 if (!pf->vsi[i])
10032 continue;
10033 if (pf->vsi[i]->uplink_seid == branch_seid &&
10034 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
10035 i40e_vsi_release(pf->vsi[i]);
10036 }
10037 }
10038
10039 /* There's one corner case where the VEB might not have been
10040 * removed, so double check it here and remove it if needed.
10041 * This case happens if the veb was created from the debugfs
10042 * commands and no VSIs were added to it.
10043 */
10044 if (pf->veb[veb_idx])
10045 i40e_veb_release(pf->veb[veb_idx]);
10046}
10047
10048/**
10049 * i40e_veb_clear - remove veb struct
10050 * @veb: the veb to remove
10051 **/
10052static void i40e_veb_clear(struct i40e_veb *veb)
10053{
10054 if (!veb)
10055 return;
10056
10057 if (veb->pf) {
10058 struct i40e_pf *pf = veb->pf;
10059
10060 mutex_lock(&pf->switch_mutex);
10061 if (pf->veb[veb->idx] == veb)
10062 pf->veb[veb->idx] = NULL;
10063 mutex_unlock(&pf->switch_mutex);
10064 }
10065
10066 kfree(veb);
10067}
10068
10069/**
10070 * i40e_veb_release - Delete a VEB and free its resources
10071 * @veb: the VEB being removed
10072 **/
10073void i40e_veb_release(struct i40e_veb *veb)
10074{
10075 struct i40e_vsi *vsi = NULL;
10076 struct i40e_pf *pf;
10077 int i, n = 0;
10078
10079 pf = veb->pf;
10080
10081 /* find the remaining VSI and check for extras */
505682cd 10082 for (i = 0; i < pf->num_alloc_vsi; i++) {
41c445ff
JB
10083 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
10084 n++;
10085 vsi = pf->vsi[i];
10086 }
10087 }
10088 if (n != 1) {
10089 dev_info(&pf->pdev->dev,
10090 "can't remove VEB %d with %d VSIs left\n",
10091 veb->seid, n);
10092 return;
10093 }
10094
10095 /* move the remaining VSI to uplink veb */
10096 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
10097 if (veb->uplink_seid) {
10098 vsi->uplink_seid = veb->uplink_seid;
10099 if (veb->uplink_seid == pf->mac_seid)
10100 vsi->veb_idx = I40E_NO_VEB;
10101 else
10102 vsi->veb_idx = veb->veb_idx;
10103 } else {
10104 /* floating VEB */
10105 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
10106 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
10107 }
10108
10109 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
10110 i40e_veb_clear(veb);
41c445ff
JB
10111}
10112
10113/**
10114 * i40e_add_veb - create the VEB in the switch
10115 * @veb: the VEB to be instantiated
10116 * @vsi: the controlling VSI
10117 **/
10118static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
10119{
f1c7e72e 10120 struct i40e_pf *pf = veb->pf;
66fc360a 10121 bool enable_stats = !!(pf->flags & I40E_FLAG_VEB_STATS_ENABLED);
41c445ff
JB
10122 int ret;
10123
f1c7e72e 10124 ret = i40e_aq_add_veb(&pf->hw, veb->uplink_seid, vsi->seid,
5bc16031 10125 veb->enabled_tc, false,
66fc360a 10126 &veb->seid, enable_stats, NULL);
5bc16031
MW
10127
10128 /* get a VEB from the hardware */
41c445ff 10129 if (ret) {
f1c7e72e
SN
10130 dev_info(&pf->pdev->dev,
10131 "couldn't add VEB, err %s aq_err %s\n",
10132 i40e_stat_str(&pf->hw, ret),
10133 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
41c445ff
JB
10134 return -EPERM;
10135 }
10136
10137 /* get statistics counter */
f1c7e72e 10138 ret = i40e_aq_get_veb_parameters(&pf->hw, veb->seid, NULL, NULL,
41c445ff
JB
10139 &veb->stats_idx, NULL, NULL, NULL);
10140 if (ret) {
f1c7e72e
SN
10141 dev_info(&pf->pdev->dev,
10142 "couldn't get VEB statistics idx, err %s aq_err %s\n",
10143 i40e_stat_str(&pf->hw, ret),
10144 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
41c445ff
JB
10145 return -EPERM;
10146 }
10147 ret = i40e_veb_get_bw_info(veb);
10148 if (ret) {
f1c7e72e
SN
10149 dev_info(&pf->pdev->dev,
10150 "couldn't get VEB bw info, err %s aq_err %s\n",
10151 i40e_stat_str(&pf->hw, ret),
10152 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
10153 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
41c445ff
JB
10154 return -ENOENT;
10155 }
10156
10157 vsi->uplink_seid = veb->seid;
10158 vsi->veb_idx = veb->idx;
10159 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
10160
10161 return 0;
10162}
10163
10164/**
10165 * i40e_veb_setup - Set up a VEB
10166 * @pf: board private structure
10167 * @flags: VEB setup flags
10168 * @uplink_seid: the switch element to link to
10169 * @vsi_seid: the initial VSI seid
10170 * @enabled_tc: Enabled TC bit-map
10171 *
10172 * This allocates the sw VEB structure and links it into the switch
10173 * It is possible and legal for this to be a duplicate of an already
10174 * existing VEB. It is also possible for both uplink and vsi seids
10175 * to be zero, in order to create a floating VEB.
10176 *
10177 * Returns pointer to the successfully allocated VEB sw struct on
10178 * success, otherwise returns NULL on failure.
10179 **/
10180struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
10181 u16 uplink_seid, u16 vsi_seid,
10182 u8 enabled_tc)
10183{
10184 struct i40e_veb *veb, *uplink_veb = NULL;
10185 int vsi_idx, veb_idx;
10186 int ret;
10187
10188 /* if one seid is 0, the other must be 0 to create a floating relay */
10189 if ((uplink_seid == 0 || vsi_seid == 0) &&
10190 (uplink_seid + vsi_seid != 0)) {
10191 dev_info(&pf->pdev->dev,
10192 "one, not both seid's are 0: uplink=%d vsi=%d\n",
10193 uplink_seid, vsi_seid);
10194 return NULL;
10195 }
10196
10197 /* make sure there is such a vsi and uplink */
505682cd 10198 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
41c445ff
JB
10199 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
10200 break;
505682cd 10201 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
41c445ff
JB
10202 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
10203 vsi_seid);
10204 return NULL;
10205 }
10206
10207 if (uplink_seid && uplink_seid != pf->mac_seid) {
10208 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
10209 if (pf->veb[veb_idx] &&
10210 pf->veb[veb_idx]->seid == uplink_seid) {
10211 uplink_veb = pf->veb[veb_idx];
10212 break;
10213 }
10214 }
10215 if (!uplink_veb) {
10216 dev_info(&pf->pdev->dev,
10217 "uplink seid %d not found\n", uplink_seid);
10218 return NULL;
10219 }
10220 }
10221
10222 /* get veb sw struct */
10223 veb_idx = i40e_veb_mem_alloc(pf);
10224 if (veb_idx < 0)
10225 goto err_alloc;
10226 veb = pf->veb[veb_idx];
10227 veb->flags = flags;
10228 veb->uplink_seid = uplink_seid;
10229 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
10230 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
10231
10232 /* create the VEB in the switch */
10233 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
10234 if (ret)
10235 goto err_veb;
1bb8b935
SN
10236 if (vsi_idx == pf->lan_vsi)
10237 pf->lan_veb = veb->idx;
41c445ff
JB
10238
10239 return veb;
10240
10241err_veb:
10242 i40e_veb_clear(veb);
10243err_alloc:
10244 return NULL;
10245}
10246
10247/**
b40c82e6 10248 * i40e_setup_pf_switch_element - set PF vars based on switch type
41c445ff
JB
10249 * @pf: board private structure
10250 * @ele: element we are building info from
10251 * @num_reported: total number of elements
10252 * @printconfig: should we print the contents
10253 *
10254 * helper function to assist in extracting a few useful SEID values.
10255 **/
10256static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
10257 struct i40e_aqc_switch_config_element_resp *ele,
10258 u16 num_reported, bool printconfig)
10259{
10260 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
10261 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
10262 u8 element_type = ele->element_type;
10263 u16 seid = le16_to_cpu(ele->seid);
10264
10265 if (printconfig)
10266 dev_info(&pf->pdev->dev,
10267 "type=%d seid=%d uplink=%d downlink=%d\n",
10268 element_type, seid, uplink_seid, downlink_seid);
10269
10270 switch (element_type) {
10271 case I40E_SWITCH_ELEMENT_TYPE_MAC:
10272 pf->mac_seid = seid;
10273 break;
10274 case I40E_SWITCH_ELEMENT_TYPE_VEB:
10275 /* Main VEB? */
10276 if (uplink_seid != pf->mac_seid)
10277 break;
10278 if (pf->lan_veb == I40E_NO_VEB) {
10279 int v;
10280
10281 /* find existing or else empty VEB */
10282 for (v = 0; v < I40E_MAX_VEB; v++) {
10283 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
10284 pf->lan_veb = v;
10285 break;
10286 }
10287 }
10288 if (pf->lan_veb == I40E_NO_VEB) {
10289 v = i40e_veb_mem_alloc(pf);
10290 if (v < 0)
10291 break;
10292 pf->lan_veb = v;
10293 }
10294 }
10295
10296 pf->veb[pf->lan_veb]->seid = seid;
10297 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
10298 pf->veb[pf->lan_veb]->pf = pf;
10299 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
10300 break;
10301 case I40E_SWITCH_ELEMENT_TYPE_VSI:
10302 if (num_reported != 1)
10303 break;
10304 /* This is immediately after a reset so we can assume this is
10305 * the PF's VSI
10306 */
10307 pf->mac_seid = uplink_seid;
10308 pf->pf_seid = downlink_seid;
10309 pf->main_vsi_seid = seid;
10310 if (printconfig)
10311 dev_info(&pf->pdev->dev,
10312 "pf_seid=%d main_vsi_seid=%d\n",
10313 pf->pf_seid, pf->main_vsi_seid);
10314 break;
10315 case I40E_SWITCH_ELEMENT_TYPE_PF:
10316 case I40E_SWITCH_ELEMENT_TYPE_VF:
10317 case I40E_SWITCH_ELEMENT_TYPE_EMP:
10318 case I40E_SWITCH_ELEMENT_TYPE_BMC:
10319 case I40E_SWITCH_ELEMENT_TYPE_PE:
10320 case I40E_SWITCH_ELEMENT_TYPE_PA:
10321 /* ignore these for now */
10322 break;
10323 default:
10324 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
10325 element_type, seid);
10326 break;
10327 }
10328}
10329
10330/**
10331 * i40e_fetch_switch_configuration - Get switch config from firmware
10332 * @pf: board private structure
10333 * @printconfig: should we print the contents
10334 *
10335 * Get the current switch configuration from the device and
10336 * extract a few useful SEID values.
10337 **/
10338int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
10339{
10340 struct i40e_aqc_get_switch_config_resp *sw_config;
10341 u16 next_seid = 0;
10342 int ret = 0;
10343 u8 *aq_buf;
10344 int i;
10345
10346 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
10347 if (!aq_buf)
10348 return -ENOMEM;
10349
10350 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
10351 do {
10352 u16 num_reported, num_total;
10353
10354 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
10355 I40E_AQ_LARGE_BUF,
10356 &next_seid, NULL);
10357 if (ret) {
10358 dev_info(&pf->pdev->dev,
f1c7e72e
SN
10359 "get switch config failed err %s aq_err %s\n",
10360 i40e_stat_str(&pf->hw, ret),
10361 i40e_aq_str(&pf->hw,
10362 pf->hw.aq.asq_last_status));
41c445ff
JB
10363 kfree(aq_buf);
10364 return -ENOENT;
10365 }
10366
10367 num_reported = le16_to_cpu(sw_config->header.num_reported);
10368 num_total = le16_to_cpu(sw_config->header.num_total);
10369
10370 if (printconfig)
10371 dev_info(&pf->pdev->dev,
10372 "header: %d reported %d total\n",
10373 num_reported, num_total);
10374
41c445ff
JB
10375 for (i = 0; i < num_reported; i++) {
10376 struct i40e_aqc_switch_config_element_resp *ele =
10377 &sw_config->element[i];
10378
10379 i40e_setup_pf_switch_element(pf, ele, num_reported,
10380 printconfig);
10381 }
10382 } while (next_seid != 0);
10383
10384 kfree(aq_buf);
10385 return ret;
10386}
10387
10388/**
10389 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
10390 * @pf: board private structure
bc7d338f 10391 * @reinit: if the Main VSI needs to re-initialized.
41c445ff
JB
10392 *
10393 * Returns 0 on success, negative value on failure
10394 **/
bc7d338f 10395static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
41c445ff 10396{
b5569892 10397 u16 flags = 0;
41c445ff
JB
10398 int ret;
10399
10400 /* find out what's out there already */
10401 ret = i40e_fetch_switch_configuration(pf, false);
10402 if (ret) {
10403 dev_info(&pf->pdev->dev,
f1c7e72e
SN
10404 "couldn't fetch switch config, err %s aq_err %s\n",
10405 i40e_stat_str(&pf->hw, ret),
10406 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
41c445ff
JB
10407 return ret;
10408 }
10409 i40e_pf_reset_stats(pf);
10410
b5569892
ASJ
10411 /* set the switch config bit for the whole device to
10412 * support limited promisc or true promisc
10413 * when user requests promisc. The default is limited
10414 * promisc.
10415 */
10416
10417 if ((pf->hw.pf_id == 0) &&
10418 !(pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT))
10419 flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10420
10421 if (pf->hw.pf_id == 0) {
10422 u16 valid_flags;
10423
10424 valid_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10425 ret = i40e_aq_set_switch_config(&pf->hw, flags, valid_flags,
10426 NULL);
10427 if (ret && pf->hw.aq.asq_last_status != I40E_AQ_RC_ESRCH) {
10428 dev_info(&pf->pdev->dev,
10429 "couldn't set switch config bits, err %s aq_err %s\n",
10430 i40e_stat_str(&pf->hw, ret),
10431 i40e_aq_str(&pf->hw,
10432 pf->hw.aq.asq_last_status));
10433 /* not a fatal problem, just keep going */
10434 }
10435 }
10436
41c445ff 10437 /* first time setup */
bc7d338f 10438 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
41c445ff
JB
10439 struct i40e_vsi *vsi = NULL;
10440 u16 uplink_seid;
10441
10442 /* Set up the PF VSI associated with the PF's main VSI
10443 * that is already in the HW switch
10444 */
10445 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
10446 uplink_seid = pf->veb[pf->lan_veb]->seid;
10447 else
10448 uplink_seid = pf->mac_seid;
bc7d338f
ASJ
10449 if (pf->lan_vsi == I40E_NO_VSI)
10450 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
10451 else if (reinit)
10452 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
41c445ff
JB
10453 if (!vsi) {
10454 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
10455 i40e_fdir_teardown(pf);
10456 return -EAGAIN;
10457 }
41c445ff
JB
10458 } else {
10459 /* force a reset of TC and queue layout configurations */
10460 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
6995b36c 10461
41c445ff
JB
10462 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
10463 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
10464 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
10465 }
10466 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
10467
cbf61325
ASJ
10468 i40e_fdir_sb_setup(pf);
10469
41c445ff
JB
10470 /* Setup static PF queue filter control settings */
10471 ret = i40e_setup_pf_filter_control(pf);
10472 if (ret) {
10473 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
10474 ret);
10475 /* Failure here should not stop continuing other steps */
10476 }
10477
10478 /* enable RSS in the HW, even for only one queue, as the stack can use
10479 * the hash
10480 */
10481 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
043dd650 10482 i40e_pf_config_rss(pf);
41c445ff
JB
10483
10484 /* fill in link information and enable LSE reporting */
0a862b43 10485 i40e_update_link_info(&pf->hw);
a34a6711
MW
10486 i40e_link_event(pf);
10487
d52c20b7 10488 /* Initialize user-specific link properties */
41c445ff
JB
10489 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
10490 I40E_AQ_AN_COMPLETED) ? true : false);
d52c20b7 10491
beb0dff1
JK
10492 i40e_ptp_init(pf);
10493
41c445ff
JB
10494 return ret;
10495}
10496
41c445ff
JB
10497/**
10498 * i40e_determine_queue_usage - Work out queue distribution
10499 * @pf: board private structure
10500 **/
10501static void i40e_determine_queue_usage(struct i40e_pf *pf)
10502{
41c445ff
JB
10503 int queues_left;
10504
10505 pf->num_lan_qps = 0;
38e00438
VD
10506#ifdef I40E_FCOE
10507 pf->num_fcoe_qps = 0;
10508#endif
41c445ff
JB
10509
10510 /* Find the max queues to be put into basic use. We'll always be
10511 * using TC0, whether or not DCB is running, and TC0 will get the
10512 * big RSS set.
10513 */
10514 queues_left = pf->hw.func_caps.num_tx_qp;
10515
cbf61325 10516 if ((queues_left == 1) ||
9aa7e935 10517 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
41c445ff
JB
10518 /* one qp for PF, no queues for anything else */
10519 queues_left = 0;
acd65448 10520 pf->alloc_rss_size = pf->num_lan_qps = 1;
41c445ff
JB
10521
10522 /* make sure all the fancies are disabled */
60ea5f83 10523 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
e3219ce6 10524 I40E_FLAG_IWARP_ENABLED |
38e00438
VD
10525#ifdef I40E_FCOE
10526 I40E_FLAG_FCOE_ENABLED |
10527#endif
60ea5f83
JB
10528 I40E_FLAG_FD_SB_ENABLED |
10529 I40E_FLAG_FD_ATR_ENABLED |
4d9b6043 10530 I40E_FLAG_DCB_CAPABLE |
a036244c 10531 I40E_FLAG_DCB_ENABLED |
60ea5f83
JB
10532 I40E_FLAG_SRIOV_ENABLED |
10533 I40E_FLAG_VMDQ_ENABLED);
9aa7e935
FZ
10534 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
10535 I40E_FLAG_FD_SB_ENABLED |
bbe7d0e0 10536 I40E_FLAG_FD_ATR_ENABLED |
4d9b6043 10537 I40E_FLAG_DCB_CAPABLE))) {
9aa7e935 10538 /* one qp for PF */
acd65448 10539 pf->alloc_rss_size = pf->num_lan_qps = 1;
9aa7e935
FZ
10540 queues_left -= pf->num_lan_qps;
10541
10542 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
e3219ce6 10543 I40E_FLAG_IWARP_ENABLED |
38e00438
VD
10544#ifdef I40E_FCOE
10545 I40E_FLAG_FCOE_ENABLED |
10546#endif
9aa7e935
FZ
10547 I40E_FLAG_FD_SB_ENABLED |
10548 I40E_FLAG_FD_ATR_ENABLED |
10549 I40E_FLAG_DCB_ENABLED |
10550 I40E_FLAG_VMDQ_ENABLED);
41c445ff 10551 } else {
cbf61325 10552 /* Not enough queues for all TCs */
4d9b6043 10553 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
cbf61325 10554 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
a036244c
DE
10555 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE |
10556 I40E_FLAG_DCB_ENABLED);
cbf61325
ASJ
10557 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
10558 }
9a3bd2f1
ASJ
10559 pf->num_lan_qps = max_t(int, pf->rss_size_max,
10560 num_online_cpus());
10561 pf->num_lan_qps = min_t(int, pf->num_lan_qps,
10562 pf->hw.func_caps.num_tx_qp);
10563
cbf61325
ASJ
10564 queues_left -= pf->num_lan_qps;
10565 }
10566
38e00438
VD
10567#ifdef I40E_FCOE
10568 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
10569 if (I40E_DEFAULT_FCOE <= queues_left) {
10570 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
10571 } else if (I40E_MINIMUM_FCOE <= queues_left) {
10572 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
10573 } else {
10574 pf->num_fcoe_qps = 0;
10575 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
10576 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
10577 }
10578
10579 queues_left -= pf->num_fcoe_qps;
10580 }
10581
10582#endif
cbf61325
ASJ
10583 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
10584 if (queues_left > 1) {
10585 queues_left -= 1; /* save 1 queue for FD */
10586 } else {
10587 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
10588 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
10589 }
41c445ff
JB
10590 }
10591
10592 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10593 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
cbf61325
ASJ
10594 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
10595 (queues_left / pf->num_vf_qps));
41c445ff
JB
10596 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
10597 }
10598
10599 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
10600 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
10601 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
10602 (queues_left / pf->num_vmdq_qps));
10603 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
10604 }
10605
f8ff1464 10606 pf->queues_left = queues_left;
8279e495
NP
10607 dev_dbg(&pf->pdev->dev,
10608 "qs_avail=%d FD SB=%d lan_qs=%d lan_tc0=%d vf=%d*%d vmdq=%d*%d, remaining=%d\n",
10609 pf->hw.func_caps.num_tx_qp,
10610 !!(pf->flags & I40E_FLAG_FD_SB_ENABLED),
acd65448
HZ
10611 pf->num_lan_qps, pf->alloc_rss_size, pf->num_req_vfs,
10612 pf->num_vf_qps, pf->num_vmdq_vsis, pf->num_vmdq_qps,
10613 queues_left);
38e00438 10614#ifdef I40E_FCOE
8279e495 10615 dev_dbg(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
38e00438 10616#endif
41c445ff
JB
10617}
10618
10619/**
10620 * i40e_setup_pf_filter_control - Setup PF static filter control
10621 * @pf: PF to be setup
10622 *
b40c82e6 10623 * i40e_setup_pf_filter_control sets up a PF's initial filter control
41c445ff
JB
10624 * settings. If PE/FCoE are enabled then it will also set the per PF
10625 * based filter sizes required for them. It also enables Flow director,
10626 * ethertype and macvlan type filter settings for the pf.
10627 *
10628 * Returns 0 on success, negative on failure
10629 **/
10630static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
10631{
10632 struct i40e_filter_control_settings *settings = &pf->filter_settings;
10633
10634 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
10635
10636 /* Flow Director is enabled */
60ea5f83 10637 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
41c445ff
JB
10638 settings->enable_fdir = true;
10639
10640 /* Ethtype and MACVLAN filters enabled for PF */
10641 settings->enable_ethtype = true;
10642 settings->enable_macvlan = true;
10643
10644 if (i40e_set_filter_control(&pf->hw, settings))
10645 return -ENOENT;
10646
10647 return 0;
10648}
10649
0c22b3dd 10650#define INFO_STRING_LEN 255
7fd89545 10651#define REMAIN(__x) (INFO_STRING_LEN - (__x))
0c22b3dd
JB
10652static void i40e_print_features(struct i40e_pf *pf)
10653{
10654 struct i40e_hw *hw = &pf->hw;
3b195843
JP
10655 char *buf;
10656 int i;
0c22b3dd 10657
3b195843
JP
10658 buf = kmalloc(INFO_STRING_LEN, GFP_KERNEL);
10659 if (!buf)
0c22b3dd 10660 return;
0c22b3dd 10661
3b195843 10662 i = snprintf(buf, INFO_STRING_LEN, "Features: PF-id[%d]", hw->pf_id);
0c22b3dd 10663#ifdef CONFIG_PCI_IOV
3b195843 10664 i += snprintf(&buf[i], REMAIN(i), " VFs: %d", pf->num_req_vfs);
0c22b3dd 10665#endif
1a557afc 10666 i += snprintf(&buf[i], REMAIN(i), " VSIs: %d QP: %d",
7fd89545 10667 pf->hw.func_caps.num_vsis,
1a557afc 10668 pf->vsi[pf->lan_vsi]->num_queue_pairs);
0c22b3dd 10669 if (pf->flags & I40E_FLAG_RSS_ENABLED)
3b195843 10670 i += snprintf(&buf[i], REMAIN(i), " RSS");
0c22b3dd 10671 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
3b195843 10672 i += snprintf(&buf[i], REMAIN(i), " FD_ATR");
c6423ff1 10673 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
3b195843
JP
10674 i += snprintf(&buf[i], REMAIN(i), " FD_SB");
10675 i += snprintf(&buf[i], REMAIN(i), " NTUPLE");
c6423ff1 10676 }
4d9b6043 10677 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
3b195843 10678 i += snprintf(&buf[i], REMAIN(i), " DCB");
3b195843 10679 i += snprintf(&buf[i], REMAIN(i), " VxLAN");
6a899024 10680 i += snprintf(&buf[i], REMAIN(i), " Geneve");
0c22b3dd 10681 if (pf->flags & I40E_FLAG_PTP)
3b195843 10682 i += snprintf(&buf[i], REMAIN(i), " PTP");
38e00438
VD
10683#ifdef I40E_FCOE
10684 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
3b195843 10685 i += snprintf(&buf[i], REMAIN(i), " FCOE");
38e00438 10686#endif
6dec1017 10687 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
3b195843 10688 i += snprintf(&buf[i], REMAIN(i), " VEB");
6dec1017 10689 else
3b195843 10690 i += snprintf(&buf[i], REMAIN(i), " VEPA");
0c22b3dd 10691
3b195843
JP
10692 dev_info(&pf->pdev->dev, "%s\n", buf);
10693 kfree(buf);
7fd89545 10694 WARN_ON(i > INFO_STRING_LEN);
0c22b3dd
JB
10695}
10696
b499ffb0
SV
10697/**
10698 * i40e_get_platform_mac_addr - get platform-specific MAC address
10699 *
10700 * @pdev: PCI device information struct
10701 * @pf: board private structure
10702 *
10703 * Look up the MAC address in Open Firmware on systems that support it,
10704 * and use IDPROM on SPARC if no OF address is found. On return, the
10705 * I40E_FLAG_PF_MAC will be wset in pf->flags if a platform-specific value
10706 * has been selected.
10707 **/
10708static void i40e_get_platform_mac_addr(struct pci_dev *pdev, struct i40e_pf *pf)
10709{
b499ffb0 10710 pf->flags &= ~I40E_FLAG_PF_MAC;
ba94272d 10711 if (!eth_platform_get_mac_address(&pdev->dev, pf->hw.mac.addr))
b499ffb0 10712 pf->flags |= I40E_FLAG_PF_MAC;
b499ffb0
SV
10713}
10714
41c445ff
JB
10715/**
10716 * i40e_probe - Device initialization routine
10717 * @pdev: PCI device information struct
10718 * @ent: entry in i40e_pci_tbl
10719 *
b40c82e6
JK
10720 * i40e_probe initializes a PF identified by a pci_dev structure.
10721 * The OS initialization, configuring of the PF private structure,
41c445ff
JB
10722 * and a hardware reset occur.
10723 *
10724 * Returns 0 on success, negative on failure
10725 **/
10726static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
10727{
e827845c 10728 struct i40e_aq_get_phy_abilities_resp abilities;
41c445ff
JB
10729 struct i40e_pf *pf;
10730 struct i40e_hw *hw;
93cd765b 10731 static u16 pfs_found;
1d5109d1 10732 u16 wol_nvm_bits;
d4dfb81a 10733 u16 link_status;
6f66a484 10734 int err;
4f2f017c 10735 u32 val;
8a9eb7d3 10736 u32 i;
58fc3267 10737 u8 set_fc_aq_fail;
41c445ff
JB
10738
10739 err = pci_enable_device_mem(pdev);
10740 if (err)
10741 return err;
10742
10743 /* set up for high or low dma */
6494294f 10744 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
6494294f 10745 if (err) {
e3e3bfdd
JS
10746 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
10747 if (err) {
10748 dev_err(&pdev->dev,
10749 "DMA configuration failed: 0x%x\n", err);
10750 goto err_dma;
10751 }
41c445ff
JB
10752 }
10753
10754 /* set up pci connections */
56d766d6 10755 err = pci_request_mem_regions(pdev, i40e_driver_name);
41c445ff
JB
10756 if (err) {
10757 dev_info(&pdev->dev,
10758 "pci_request_selected_regions failed %d\n", err);
10759 goto err_pci_reg;
10760 }
10761
10762 pci_enable_pcie_error_reporting(pdev);
10763 pci_set_master(pdev);
10764
10765 /* Now that we have a PCI connection, we need to do the
10766 * low level device setup. This is primarily setting up
10767 * the Admin Queue structures and then querying for the
10768 * device's current profile information.
10769 */
10770 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
10771 if (!pf) {
10772 err = -ENOMEM;
10773 goto err_pf_alloc;
10774 }
10775 pf->next_vsi = 0;
10776 pf->pdev = pdev;
10777 set_bit(__I40E_DOWN, &pf->state);
10778
10779 hw = &pf->hw;
10780 hw->back = pf;
232f4706 10781
2ac8b675
SN
10782 pf->ioremap_len = min_t(int, pci_resource_len(pdev, 0),
10783 I40E_MAX_CSR_SPACE);
232f4706 10784
2ac8b675 10785 hw->hw_addr = ioremap(pci_resource_start(pdev, 0), pf->ioremap_len);
41c445ff
JB
10786 if (!hw->hw_addr) {
10787 err = -EIO;
10788 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
10789 (unsigned int)pci_resource_start(pdev, 0),
2ac8b675 10790 pf->ioremap_len, err);
41c445ff
JB
10791 goto err_ioremap;
10792 }
10793 hw->vendor_id = pdev->vendor;
10794 hw->device_id = pdev->device;
10795 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
10796 hw->subsystem_vendor_id = pdev->subsystem_vendor;
10797 hw->subsystem_device_id = pdev->subsystem_device;
10798 hw->bus.device = PCI_SLOT(pdev->devfn);
10799 hw->bus.func = PCI_FUNC(pdev->devfn);
93cd765b 10800 pf->instance = pfs_found;
41c445ff 10801
de03d2b0
SN
10802 /* set up the locks for the AQ, do this only once in probe
10803 * and destroy them only once in remove
10804 */
10805 mutex_init(&hw->aq.asq_mutex);
10806 mutex_init(&hw->aq.arq_mutex);
10807
5b5faa43
SN
10808 if (debug != -1) {
10809 pf->msg_enable = pf->hw.debug_mask;
10810 pf->msg_enable = debug;
10811 }
10812
7134f9ce
JB
10813 /* do a special CORER for clearing PXE mode once at init */
10814 if (hw->revision_id == 0 &&
10815 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
10816 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
10817 i40e_flush(hw);
10818 msleep(200);
10819 pf->corer_count++;
10820
10821 i40e_clear_pxe_mode(hw);
10822 }
10823
41c445ff 10824 /* Reset here to make sure all is clean and to define PF 'n' */
838d41d9 10825 i40e_clear_hw(hw);
41c445ff
JB
10826 err = i40e_pf_reset(hw);
10827 if (err) {
10828 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
10829 goto err_pf_reset;
10830 }
10831 pf->pfr_count++;
10832
10833 hw->aq.num_arq_entries = I40E_AQ_LEN;
10834 hw->aq.num_asq_entries = I40E_AQ_LEN;
10835 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10836 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10837 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
b2008cbf 10838
b294ac70 10839 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
b2008cbf
CW
10840 "%s-%s:misc",
10841 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
41c445ff
JB
10842
10843 err = i40e_init_shared_code(hw);
10844 if (err) {
b2a75c58
ASJ
10845 dev_warn(&pdev->dev, "unidentified MAC or BLANK NVM: %d\n",
10846 err);
41c445ff
JB
10847 goto err_pf_reset;
10848 }
10849
d52c20b7
JB
10850 /* set up a default setting for link flow control */
10851 pf->hw.fc.requested_mode = I40E_FC_NONE;
10852
41c445ff 10853 err = i40e_init_adminq(hw);
2b2426a7
CW
10854 if (err) {
10855 if (err == I40E_ERR_FIRMWARE_API_VERSION)
10856 dev_info(&pdev->dev,
10857 "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");
10858 else
10859 dev_info(&pdev->dev,
10860 "The driver for the device stopped because the device firmware failed to init. Try updating your NVM image.\n");
10861
10862 goto err_pf_reset;
10863 }
f0b44440 10864
6dec1017
SN
10865 /* provide nvm, fw, api versions */
10866 dev_info(&pdev->dev, "fw %d.%d.%05d api %d.%d nvm %s\n",
10867 hw->aq.fw_maj_ver, hw->aq.fw_min_ver, hw->aq.fw_build,
10868 hw->aq.api_maj_ver, hw->aq.api_min_ver,
10869 i40e_nvm_version_str(hw));
f0b44440 10870
7aa67613
CS
10871 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
10872 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
278b6f62 10873 dev_info(&pdev->dev,
7aa67613
CS
10874 "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");
10875 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
10876 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
278b6f62 10877 dev_info(&pdev->dev,
7aa67613 10878 "The driver for the device detected an older version of the NVM image than expected. Please update the NVM image.\n");
278b6f62 10879
4eb3f768
SN
10880 i40e_verify_eeprom(pf);
10881
2c5fe33b
JB
10882 /* Rev 0 hardware was never productized */
10883 if (hw->revision_id < 1)
10884 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");
10885
6ff4ef86 10886 i40e_clear_pxe_mode(hw);
41c445ff
JB
10887 err = i40e_get_capabilities(pf);
10888 if (err)
10889 goto err_adminq_setup;
10890
10891 err = i40e_sw_init(pf);
10892 if (err) {
10893 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
10894 goto err_sw_init;
10895 }
10896
10897 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
10898 hw->func_caps.num_rx_qp,
10899 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
10900 if (err) {
10901 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
10902 goto err_init_lan_hmc;
10903 }
10904
10905 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
10906 if (err) {
10907 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
10908 err = -ENOENT;
10909 goto err_configure_lan_hmc;
10910 }
10911
b686ece5
NP
10912 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
10913 * Ignore error return codes because if it was already disabled via
10914 * hardware settings this will fail
10915 */
f1bbad33 10916 if (pf->flags & I40E_FLAG_STOP_FW_LLDP) {
b686ece5
NP
10917 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
10918 i40e_aq_stop_lldp(hw, true, NULL);
10919 }
10920
41c445ff 10921 i40e_get_mac_addr(hw, hw->mac.addr);
b499ffb0
SV
10922 /* allow a platform config to override the HW addr */
10923 i40e_get_platform_mac_addr(pdev, pf);
f62b5060 10924 if (!is_valid_ether_addr(hw->mac.addr)) {
41c445ff
JB
10925 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
10926 err = -EIO;
10927 goto err_mac_addr;
10928 }
10929 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
9a173901 10930 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
1f224ad2
NP
10931 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
10932 if (is_valid_ether_addr(hw->mac.port_addr))
10933 pf->flags |= I40E_FLAG_PORT_ID_VALID;
38e00438
VD
10934#ifdef I40E_FCOE
10935 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
10936 if (err)
10937 dev_info(&pdev->dev,
10938 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
10939 if (!is_valid_ether_addr(hw->mac.san_addr)) {
10940 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
10941 hw->mac.san_addr);
10942 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
10943 }
10944 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
10945#endif /* I40E_FCOE */
41c445ff
JB
10946
10947 pci_set_drvdata(pdev, pf);
10948 pci_save_state(pdev);
4e3b35b0
NP
10949#ifdef CONFIG_I40E_DCB
10950 err = i40e_init_pf_dcb(pf);
10951 if (err) {
aebfc816 10952 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
a036244c 10953 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE & I40E_FLAG_DCB_ENABLED);
014269ff 10954 /* Continue without DCB enabled */
4e3b35b0
NP
10955 }
10956#endif /* CONFIG_I40E_DCB */
41c445ff
JB
10957
10958 /* set up periodic task facility */
10959 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
10960 pf->service_timer_period = HZ;
10961
10962 INIT_WORK(&pf->service_task, i40e_service_task);
10963 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
10964 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
41c445ff 10965
1d5109d1
SN
10966 /* NVM bit on means WoL disabled for the port */
10967 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
75f5cea9 10968 if (BIT (hw->port) & wol_nvm_bits || hw->partition_id != 1)
1d5109d1
SN
10969 pf->wol_en = false;
10970 else
10971 pf->wol_en = true;
8e2773ae
SN
10972 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
10973
41c445ff
JB
10974 /* set up the main switch operations */
10975 i40e_determine_queue_usage(pf);
c1147280
JB
10976 err = i40e_init_interrupt_scheme(pf);
10977 if (err)
10978 goto err_switch_setup;
41c445ff 10979
505682cd
MW
10980 /* The number of VSIs reported by the FW is the minimum guaranteed
10981 * to us; HW supports far more and we share the remaining pool with
10982 * the other PFs. We allocate space for more than the guarantee with
10983 * the understanding that we might not get them all later.
41c445ff 10984 */
505682cd
MW
10985 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
10986 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
10987 else
10988 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
10989
10990 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
d17038d6
JB
10991 pf->vsi = kcalloc(pf->num_alloc_vsi, sizeof(struct i40e_vsi *),
10992 GFP_KERNEL);
ed87ac09
WY
10993 if (!pf->vsi) {
10994 err = -ENOMEM;
41c445ff 10995 goto err_switch_setup;
ed87ac09 10996 }
41c445ff 10997
fa11cb3d
ASJ
10998#ifdef CONFIG_PCI_IOV
10999 /* prep for VF support */
11000 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
11001 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
11002 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
11003 if (pci_num_vf(pdev))
11004 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
11005 }
11006#endif
bc7d338f 11007 err = i40e_setup_pf_switch(pf, false);
41c445ff
JB
11008 if (err) {
11009 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
11010 goto err_vsis;
11011 }
58fc3267
HZ
11012
11013 /* Make sure flow control is set according to current settings */
11014 err = i40e_set_fc(hw, &set_fc_aq_fail, true);
11015 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_GET)
11016 dev_dbg(&pf->pdev->dev,
11017 "Set fc with err %s aq_err %s on get_phy_cap\n",
11018 i40e_stat_str(hw, err),
11019 i40e_aq_str(hw, hw->aq.asq_last_status));
11020 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_SET)
11021 dev_dbg(&pf->pdev->dev,
11022 "Set fc with err %s aq_err %s on set_phy_config\n",
11023 i40e_stat_str(hw, err),
11024 i40e_aq_str(hw, hw->aq.asq_last_status));
11025 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_UPDATE)
11026 dev_dbg(&pf->pdev->dev,
11027 "Set fc with err %s aq_err %s on get_link_info\n",
11028 i40e_stat_str(hw, err),
11029 i40e_aq_str(hw, hw->aq.asq_last_status));
11030
8a9eb7d3 11031 /* if FDIR VSI was set up, start it now */
505682cd 11032 for (i = 0; i < pf->num_alloc_vsi; i++) {
8a9eb7d3
SN
11033 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
11034 i40e_vsi_open(pf->vsi[i]);
11035 break;
11036 }
11037 }
41c445ff 11038
2f0aff41
SN
11039 /* The driver only wants link up/down and module qualification
11040 * reports from firmware. Note the negative logic.
7e2453fe
JB
11041 */
11042 err = i40e_aq_set_phy_int_mask(&pf->hw,
2f0aff41 11043 ~(I40E_AQ_EVENT_LINK_UPDOWN |
867a79e3 11044 I40E_AQ_EVENT_MEDIA_NA |
2f0aff41 11045 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
7e2453fe 11046 if (err)
f1c7e72e
SN
11047 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
11048 i40e_stat_str(&pf->hw, err),
11049 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
7e2453fe 11050
4f2f017c
ASJ
11051 /* Reconfigure hardware for allowing smaller MSS in the case
11052 * of TSO, so that we avoid the MDD being fired and causing
11053 * a reset in the case of small MSS+TSO.
11054 */
11055 val = rd32(hw, I40E_REG_MSS);
11056 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
11057 val &= ~I40E_REG_MSS_MIN_MASK;
11058 val |= I40E_64BYTE_MSS;
11059 wr32(hw, I40E_REG_MSS, val);
11060 }
11061
8eed76fa 11062 if (pf->flags & I40E_FLAG_RESTART_AUTONEG) {
025b4a54
ASJ
11063 msleep(75);
11064 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
11065 if (err)
f1c7e72e
SN
11066 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
11067 i40e_stat_str(&pf->hw, err),
11068 i40e_aq_str(&pf->hw,
11069 pf->hw.aq.asq_last_status));
cafa2ee6 11070 }
41c445ff
JB
11071 /* The main driver is (mostly) up and happy. We need to set this state
11072 * before setting up the misc vector or we get a race and the vector
11073 * ends up disabled forever.
11074 */
11075 clear_bit(__I40E_DOWN, &pf->state);
11076
11077 /* In case of MSIX we are going to setup the misc vector right here
11078 * to handle admin queue events etc. In case of legacy and MSI
11079 * the misc functionality and queue processing is combined in
11080 * the same vector and that gets setup at open.
11081 */
11082 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
11083 err = i40e_setup_misc_vector(pf);
11084 if (err) {
11085 dev_info(&pdev->dev,
11086 "setup of misc vector failed: %d\n", err);
11087 goto err_vsis;
11088 }
11089 }
11090
df805f62 11091#ifdef CONFIG_PCI_IOV
41c445ff
JB
11092 /* prep for VF support */
11093 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
4eb3f768
SN
11094 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
11095 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
41c445ff
JB
11096 /* disable link interrupts for VFs */
11097 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
11098 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
11099 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
11100 i40e_flush(hw);
4aeec010
MW
11101
11102 if (pci_num_vf(pdev)) {
11103 dev_info(&pdev->dev,
11104 "Active VFs found, allocating resources.\n");
11105 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
11106 if (err)
11107 dev_info(&pdev->dev,
11108 "Error %d allocating resources for existing VFs\n",
11109 err);
11110 }
41c445ff 11111 }
df805f62 11112#endif /* CONFIG_PCI_IOV */
41c445ff 11113
e3219ce6
ASJ
11114 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11115 pf->iwarp_base_vector = i40e_get_lump(pf, pf->irq_pile,
11116 pf->num_iwarp_msix,
11117 I40E_IWARP_IRQ_PILE_ID);
11118 if (pf->iwarp_base_vector < 0) {
11119 dev_info(&pdev->dev,
11120 "failed to get tracking for %d vectors for IWARP err=%d\n",
11121 pf->num_iwarp_msix, pf->iwarp_base_vector);
11122 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
11123 }
11124 }
93cd765b 11125
41c445ff
JB
11126 i40e_dbg_pf_init(pf);
11127
11128 /* tell the firmware that we're starting */
44033fac 11129 i40e_send_version(pf);
41c445ff
JB
11130
11131 /* since everything's happy, start the service_task timer */
11132 mod_timer(&pf->service_timer,
11133 round_jiffies(jiffies + pf->service_timer_period));
11134
e3219ce6
ASJ
11135 /* add this PF to client device list and launch a client service task */
11136 err = i40e_lan_add_device(pf);
11137 if (err)
11138 dev_info(&pdev->dev, "Failed to add PF to client API service list: %d\n",
11139 err);
11140
38e00438
VD
11141#ifdef I40E_FCOE
11142 /* create FCoE interface */
11143 i40e_fcoe_vsi_setup(pf);
11144
11145#endif
3fced535
ASJ
11146#define PCI_SPEED_SIZE 8
11147#define PCI_WIDTH_SIZE 8
11148 /* Devices on the IOSF bus do not have this information
11149 * and will report PCI Gen 1 x 1 by default so don't bother
11150 * checking them.
11151 */
11152 if (!(pf->flags & I40E_FLAG_NO_PCI_LINK_CHECK)) {
11153 char speed[PCI_SPEED_SIZE] = "Unknown";
11154 char width[PCI_WIDTH_SIZE] = "Unknown";
11155
11156 /* Get the negotiated link width and speed from PCI config
11157 * space
11158 */
11159 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA,
11160 &link_status);
11161
11162 i40e_set_pci_config_data(hw, link_status);
11163
11164 switch (hw->bus.speed) {
11165 case i40e_bus_speed_8000:
11166 strncpy(speed, "8.0", PCI_SPEED_SIZE); break;
11167 case i40e_bus_speed_5000:
11168 strncpy(speed, "5.0", PCI_SPEED_SIZE); break;
11169 case i40e_bus_speed_2500:
11170 strncpy(speed, "2.5", PCI_SPEED_SIZE); break;
11171 default:
11172 break;
11173 }
11174 switch (hw->bus.width) {
11175 case i40e_bus_width_pcie_x8:
11176 strncpy(width, "8", PCI_WIDTH_SIZE); break;
11177 case i40e_bus_width_pcie_x4:
11178 strncpy(width, "4", PCI_WIDTH_SIZE); break;
11179 case i40e_bus_width_pcie_x2:
11180 strncpy(width, "2", PCI_WIDTH_SIZE); break;
11181 case i40e_bus_width_pcie_x1:
11182 strncpy(width, "1", PCI_WIDTH_SIZE); break;
11183 default:
11184 break;
11185 }
11186
11187 dev_info(&pdev->dev, "PCI-Express: Speed %sGT/s Width x%s\n",
11188 speed, width);
11189
11190 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
11191 hw->bus.speed < i40e_bus_speed_8000) {
11192 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
11193 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
11194 }
d4dfb81a
CS
11195 }
11196
e827845c
CS
11197 /* get the requested speeds from the fw */
11198 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
11199 if (err)
8279e495
NP
11200 dev_dbg(&pf->pdev->dev, "get requested speeds ret = %s last_status = %s\n",
11201 i40e_stat_str(&pf->hw, err),
11202 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
e827845c
CS
11203 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
11204
fc72dbce
CS
11205 /* get the supported phy types from the fw */
11206 err = i40e_aq_get_phy_capabilities(hw, false, true, &abilities, NULL);
11207 if (err)
11208 dev_dbg(&pf->pdev->dev, "get supported phy types ret = %s last_status = %s\n",
11209 i40e_stat_str(&pf->hw, err),
11210 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
11211 pf->hw.phy.phy_types = le32_to_cpu(abilities.phy_type);
11212
e7358f54
ASJ
11213 /* Add a filter to drop all Flow control frames from any VSI from being
11214 * transmitted. By doing so we stop a malicious VF from sending out
11215 * PAUSE or PFC frames and potentially controlling traffic for other
11216 * PF/VF VSIs.
11217 * The FW can still send Flow control frames if enabled.
11218 */
11219 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
11220 pf->main_vsi_seid);
11221
31b606d0
CW
11222 if ((pf->hw.device_id == I40E_DEV_ID_10G_BASE_T) ||
11223 (pf->hw.device_id == I40E_DEV_ID_10G_BASE_T4))
11224 pf->flags |= I40E_FLAG_HAVE_10GBASET_PHY;
11225
0c22b3dd
JB
11226 /* print a string summarizing features */
11227 i40e_print_features(pf);
11228
41c445ff
JB
11229 return 0;
11230
11231 /* Unwind what we've done if something failed in the setup */
11232err_vsis:
11233 set_bit(__I40E_DOWN, &pf->state);
41c445ff
JB
11234 i40e_clear_interrupt_scheme(pf);
11235 kfree(pf->vsi);
04b03013
SN
11236err_switch_setup:
11237 i40e_reset_interrupt_capability(pf);
41c445ff
JB
11238 del_timer_sync(&pf->service_timer);
11239err_mac_addr:
11240err_configure_lan_hmc:
11241 (void)i40e_shutdown_lan_hmc(hw);
11242err_init_lan_hmc:
11243 kfree(pf->qp_pile);
41c445ff
JB
11244err_sw_init:
11245err_adminq_setup:
41c445ff
JB
11246err_pf_reset:
11247 iounmap(hw->hw_addr);
11248err_ioremap:
11249 kfree(pf);
11250err_pf_alloc:
11251 pci_disable_pcie_error_reporting(pdev);
56d766d6 11252 pci_release_mem_regions(pdev);
41c445ff
JB
11253err_pci_reg:
11254err_dma:
11255 pci_disable_device(pdev);
11256 return err;
11257}
11258
11259/**
11260 * i40e_remove - Device removal routine
11261 * @pdev: PCI device information struct
11262 *
11263 * i40e_remove is called by the PCI subsystem to alert the driver
11264 * that is should release a PCI device. This could be caused by a
11265 * Hot-Plug event, or because the driver is going to be removed from
11266 * memory.
11267 **/
11268static void i40e_remove(struct pci_dev *pdev)
11269{
11270 struct i40e_pf *pf = pci_get_drvdata(pdev);
bcab2db9 11271 struct i40e_hw *hw = &pf->hw;
41c445ff 11272 i40e_status ret_code;
41c445ff
JB
11273 int i;
11274
11275 i40e_dbg_pf_exit(pf);
11276
beb0dff1
JK
11277 i40e_ptp_stop(pf);
11278
bcab2db9 11279 /* Disable RSS in hw */
272cdaf2
SN
11280 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), 0);
11281 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), 0);
bcab2db9 11282
41c445ff 11283 /* no more scheduling of any task */
a4618ec8 11284 set_bit(__I40E_SUSPENDED, &pf->state);
41c445ff 11285 set_bit(__I40E_DOWN, &pf->state);
c99abb4c
SN
11286 if (pf->service_timer.data)
11287 del_timer_sync(&pf->service_timer);
11288 if (pf->service_task.func)
11289 cancel_work_sync(&pf->service_task);
41c445ff 11290
eb2d80bc
MW
11291 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
11292 i40e_free_vfs(pf);
11293 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
11294 }
11295
41c445ff
JB
11296 i40e_fdir_teardown(pf);
11297
11298 /* If there is a switch structure or any orphans, remove them.
11299 * This will leave only the PF's VSI remaining.
11300 */
11301 for (i = 0; i < I40E_MAX_VEB; i++) {
11302 if (!pf->veb[i])
11303 continue;
11304
11305 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
11306 pf->veb[i]->uplink_seid == 0)
11307 i40e_switch_branch_release(pf->veb[i]);
11308 }
11309
11310 /* Now we can shutdown the PF's VSI, just before we kill
11311 * adminq and hmc.
11312 */
11313 if (pf->vsi[pf->lan_vsi])
11314 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
11315
e3219ce6
ASJ
11316 /* remove attached clients */
11317 ret_code = i40e_lan_del_device(pf);
11318 if (ret_code) {
11319 dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
11320 ret_code);
11321 }
11322
41c445ff 11323 /* shutdown and destroy the HMC */
f734dfff
JB
11324 if (hw->hmc.hmc_obj) {
11325 ret_code = i40e_shutdown_lan_hmc(hw);
60442dea
SN
11326 if (ret_code)
11327 dev_warn(&pdev->dev,
11328 "Failed to destroy the HMC resources: %d\n",
11329 ret_code);
11330 }
41c445ff
JB
11331
11332 /* shutdown the adminq */
ac9c5c6d 11333 i40e_shutdown_adminq(hw);
41c445ff 11334
8ddb3326
JB
11335 /* destroy the locks only once, here */
11336 mutex_destroy(&hw->aq.arq_mutex);
11337 mutex_destroy(&hw->aq.asq_mutex);
11338
41c445ff
JB
11339 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
11340 i40e_clear_interrupt_scheme(pf);
505682cd 11341 for (i = 0; i < pf->num_alloc_vsi; i++) {
41c445ff
JB
11342 if (pf->vsi[i]) {
11343 i40e_vsi_clear_rings(pf->vsi[i]);
11344 i40e_vsi_clear(pf->vsi[i]);
11345 pf->vsi[i] = NULL;
11346 }
11347 }
11348
11349 for (i = 0; i < I40E_MAX_VEB; i++) {
11350 kfree(pf->veb[i]);
11351 pf->veb[i] = NULL;
11352 }
11353
11354 kfree(pf->qp_pile);
41c445ff
JB
11355 kfree(pf->vsi);
11356
f734dfff 11357 iounmap(hw->hw_addr);
41c445ff 11358 kfree(pf);
56d766d6 11359 pci_release_mem_regions(pdev);
41c445ff
JB
11360
11361 pci_disable_pcie_error_reporting(pdev);
11362 pci_disable_device(pdev);
11363}
11364
11365/**
11366 * i40e_pci_error_detected - warning that something funky happened in PCI land
11367 * @pdev: PCI device information struct
11368 *
11369 * Called to warn that something happened and the error handling steps
11370 * are in progress. Allows the driver to quiesce things, be ready for
11371 * remediation.
11372 **/
11373static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
11374 enum pci_channel_state error)
11375{
11376 struct i40e_pf *pf = pci_get_drvdata(pdev);
11377
11378 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
11379
edfc23ee
GP
11380 if (!pf) {
11381 dev_info(&pdev->dev,
11382 "Cannot recover - error happened during device probe\n");
11383 return PCI_ERS_RESULT_DISCONNECT;
11384 }
11385
41c445ff 11386 /* shutdown all operations */
9007bccd
SN
11387 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
11388 rtnl_lock();
11389 i40e_prep_for_reset(pf);
11390 rtnl_unlock();
11391 }
41c445ff
JB
11392
11393 /* Request a slot reset */
11394 return PCI_ERS_RESULT_NEED_RESET;
11395}
11396
11397/**
11398 * i40e_pci_error_slot_reset - a PCI slot reset just happened
11399 * @pdev: PCI device information struct
11400 *
11401 * Called to find if the driver can work with the device now that
11402 * the pci slot has been reset. If a basic connection seems good
11403 * (registers are readable and have sane content) then return a
11404 * happy little PCI_ERS_RESULT_xxx.
11405 **/
11406static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
11407{
11408 struct i40e_pf *pf = pci_get_drvdata(pdev);
11409 pci_ers_result_t result;
11410 int err;
11411 u32 reg;
11412
fb43201f 11413 dev_dbg(&pdev->dev, "%s\n", __func__);
41c445ff
JB
11414 if (pci_enable_device_mem(pdev)) {
11415 dev_info(&pdev->dev,
11416 "Cannot re-enable PCI device after reset.\n");
11417 result = PCI_ERS_RESULT_DISCONNECT;
11418 } else {
11419 pci_set_master(pdev);
11420 pci_restore_state(pdev);
11421 pci_save_state(pdev);
11422 pci_wake_from_d3(pdev, false);
11423
11424 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
11425 if (reg == 0)
11426 result = PCI_ERS_RESULT_RECOVERED;
11427 else
11428 result = PCI_ERS_RESULT_DISCONNECT;
11429 }
11430
11431 err = pci_cleanup_aer_uncorrect_error_status(pdev);
11432 if (err) {
11433 dev_info(&pdev->dev,
11434 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
11435 err);
11436 /* non-fatal, continue */
11437 }
11438
11439 return result;
11440}
11441
11442/**
11443 * i40e_pci_error_resume - restart operations after PCI error recovery
11444 * @pdev: PCI device information struct
11445 *
11446 * Called to allow the driver to bring things back up after PCI error
11447 * and/or reset recovery has finished.
11448 **/
11449static void i40e_pci_error_resume(struct pci_dev *pdev)
11450{
11451 struct i40e_pf *pf = pci_get_drvdata(pdev);
11452
fb43201f 11453 dev_dbg(&pdev->dev, "%s\n", __func__);
9007bccd
SN
11454 if (test_bit(__I40E_SUSPENDED, &pf->state))
11455 return;
11456
11457 rtnl_lock();
41c445ff 11458 i40e_handle_reset_warning(pf);
4c4935a9 11459 rtnl_unlock();
9007bccd
SN
11460}
11461
11462/**
11463 * i40e_shutdown - PCI callback for shutting down
11464 * @pdev: PCI device information struct
11465 **/
11466static void i40e_shutdown(struct pci_dev *pdev)
11467{
11468 struct i40e_pf *pf = pci_get_drvdata(pdev);
8e2773ae 11469 struct i40e_hw *hw = &pf->hw;
9007bccd
SN
11470
11471 set_bit(__I40E_SUSPENDED, &pf->state);
11472 set_bit(__I40E_DOWN, &pf->state);
11473 rtnl_lock();
11474 i40e_prep_for_reset(pf);
11475 rtnl_unlock();
11476
8e2773ae
SN
11477 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11478 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11479
02b42498
CS
11480 del_timer_sync(&pf->service_timer);
11481 cancel_work_sync(&pf->service_task);
11482 i40e_fdir_teardown(pf);
11483
11484 rtnl_lock();
11485 i40e_prep_for_reset(pf);
11486 rtnl_unlock();
11487
11488 wr32(hw, I40E_PFPM_APM,
11489 (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11490 wr32(hw, I40E_PFPM_WUFC,
11491 (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11492
e147758d
SN
11493 i40e_clear_interrupt_scheme(pf);
11494
9007bccd 11495 if (system_state == SYSTEM_POWER_OFF) {
8e2773ae 11496 pci_wake_from_d3(pdev, pf->wol_en);
9007bccd
SN
11497 pci_set_power_state(pdev, PCI_D3hot);
11498 }
11499}
11500
11501#ifdef CONFIG_PM
11502/**
11503 * i40e_suspend - PCI callback for moving to D3
11504 * @pdev: PCI device information struct
11505 **/
11506static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
11507{
11508 struct i40e_pf *pf = pci_get_drvdata(pdev);
8e2773ae 11509 struct i40e_hw *hw = &pf->hw;
059ff69b 11510 int retval = 0;
9007bccd
SN
11511
11512 set_bit(__I40E_SUSPENDED, &pf->state);
11513 set_bit(__I40E_DOWN, &pf->state);
3932dbfe 11514
9007bccd
SN
11515 rtnl_lock();
11516 i40e_prep_for_reset(pf);
11517 rtnl_unlock();
11518
8e2773ae
SN
11519 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11520 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11521
b33d3b73
GR
11522 i40e_stop_misc_vector(pf);
11523
059ff69b
GR
11524 retval = pci_save_state(pdev);
11525 if (retval)
11526 return retval;
11527
8e2773ae 11528 pci_wake_from_d3(pdev, pf->wol_en);
9007bccd
SN
11529 pci_set_power_state(pdev, PCI_D3hot);
11530
059ff69b 11531 return retval;
41c445ff
JB
11532}
11533
9007bccd
SN
11534/**
11535 * i40e_resume - PCI callback for waking up from D3
11536 * @pdev: PCI device information struct
11537 **/
11538static int i40e_resume(struct pci_dev *pdev)
11539{
11540 struct i40e_pf *pf = pci_get_drvdata(pdev);
11541 u32 err;
11542
11543 pci_set_power_state(pdev, PCI_D0);
11544 pci_restore_state(pdev);
11545 /* pci_restore_state() clears dev->state_saves, so
11546 * call pci_save_state() again to restore it.
11547 */
11548 pci_save_state(pdev);
11549
11550 err = pci_enable_device_mem(pdev);
11551 if (err) {
fb43201f 11552 dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n");
9007bccd
SN
11553 return err;
11554 }
11555 pci_set_master(pdev);
11556
11557 /* no wakeup events while running */
11558 pci_wake_from_d3(pdev, false);
11559
11560 /* handling the reset will rebuild the device state */
11561 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
11562 clear_bit(__I40E_DOWN, &pf->state);
11563 rtnl_lock();
11564 i40e_reset_and_rebuild(pf, false);
11565 rtnl_unlock();
11566 }
11567
11568 return 0;
11569}
11570
11571#endif
41c445ff
JB
11572static const struct pci_error_handlers i40e_err_handler = {
11573 .error_detected = i40e_pci_error_detected,
11574 .slot_reset = i40e_pci_error_slot_reset,
11575 .resume = i40e_pci_error_resume,
11576};
11577
11578static struct pci_driver i40e_driver = {
11579 .name = i40e_driver_name,
11580 .id_table = i40e_pci_tbl,
11581 .probe = i40e_probe,
11582 .remove = i40e_remove,
9007bccd
SN
11583#ifdef CONFIG_PM
11584 .suspend = i40e_suspend,
11585 .resume = i40e_resume,
11586#endif
11587 .shutdown = i40e_shutdown,
41c445ff
JB
11588 .err_handler = &i40e_err_handler,
11589 .sriov_configure = i40e_pci_sriov_configure,
11590};
11591
11592/**
11593 * i40e_init_module - Driver registration routine
11594 *
11595 * i40e_init_module is the first routine called when the driver is
11596 * loaded. All it does is register with the PCI subsystem.
11597 **/
11598static int __init i40e_init_module(void)
11599{
11600 pr_info("%s: %s - version %s\n", i40e_driver_name,
11601 i40e_driver_string, i40e_driver_version_str);
11602 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
96664483 11603
2803b16c
JB
11604 /* we will see if single thread per module is enough for now,
11605 * it can't be any worse than using the system workqueue which
11606 * was already single threaded
11607 */
6992a6c9
JK
11608 i40e_wq = alloc_workqueue("%s", WQ_UNBOUND | WQ_MEM_RECLAIM, 1,
11609 i40e_driver_name);
2803b16c
JB
11610 if (!i40e_wq) {
11611 pr_err("%s: Failed to create workqueue\n", i40e_driver_name);
11612 return -ENOMEM;
11613 }
11614
41c445ff
JB
11615 i40e_dbg_init();
11616 return pci_register_driver(&i40e_driver);
11617}
11618module_init(i40e_init_module);
11619
11620/**
11621 * i40e_exit_module - Driver exit cleanup routine
11622 *
11623 * i40e_exit_module is called just before the driver is removed
11624 * from memory.
11625 **/
11626static void __exit i40e_exit_module(void)
11627{
11628 pci_unregister_driver(&i40e_driver);
2803b16c 11629 destroy_workqueue(i40e_wq);
41c445ff
JB
11630 i40e_dbg_exit();
11631}
11632module_exit(i40e_exit_module);