blob: a887087d08cd8c4764e918a72518d9d7893840c8 [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Shannon Nelson4fc8c672017-06-07 05:43:08 -04004 * Copyright(c) 2013 - 2017 Intel Corporation.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Greg Rosedc641b72013-12-18 13:45:51 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000017 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050027#include <linux/etherdevice.h>
28#include <linux/of_net.h>
29#include <linux/pci.h>
Björn Töpel0c8493d2017-05-24 07:55:34 +020030#include <linux/bpf.h>
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050031
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000032/* Local includes */
33#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000034#include "i40e_diag.h"
Alexander Duyck06a5f7f2016-06-16 12:22:06 -070035#include <net/udp_tunnel.h>
Scott Petersoned0980c2017-04-13 04:45:44 -040036/* All i40e tracepoints are defined by the include below, which
37 * must be included exactly once across the whole kernel with
38 * CREATE_TRACE_POINTS defined
39 */
40#define CREATE_TRACE_POINTS
41#include "i40e_trace.h"
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000042
43const char i40e_driver_name[] = "i40e";
44static const char i40e_driver_string[] =
45 "Intel(R) Ethernet Connection XL710 Network Driver";
46
47#define DRV_KERN "-k"
48
Bimmy Pujari15990832017-01-30 12:29:37 -080049#define DRV_VERSION_MAJOR 2
50#define DRV_VERSION_MINOR 1
Jacob Keller2318b402017-04-19 09:25:53 -040051#define DRV_VERSION_BUILD 14
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000052#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
53 __stringify(DRV_VERSION_MINOR) "." \
54 __stringify(DRV_VERSION_BUILD) DRV_KERN
55const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080056static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000057
58/* a bit of forward declarations */
59static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
Maciej Sosin373149f2017-04-05 07:50:55 -040060static void i40e_handle_reset_warning(struct i40e_pf *pf, bool lock_acquired);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000061static int i40e_add_vsi(struct i40e_vsi *vsi);
62static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000063static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000064static int i40e_setup_misc_vector(struct i40e_pf *pf);
65static void i40e_determine_queue_usage(struct i40e_pf *pf);
66static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Maciej Sosin373149f2017-04-05 07:50:55 -040067static void i40e_prep_for_reset(struct i40e_pf *pf, bool lock_acquired);
68static int i40e_reset(struct i40e_pf *pf);
69static void i40e_rebuild(struct i40e_pf *pf, bool reinit, bool lock_acquired);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080070static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080071static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000072
73/* i40e_pci_tbl - PCI Device ID Table
74 *
75 * Last entry must be all 0s
76 *
77 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
78 * Class, Class Mask, private data (not used) }
79 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020080static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080081 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080082 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080083 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
84 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080085 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
86 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
87 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Mitch Williams5960d332014-09-13 07:40:47 +000088 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
Shannon Nelsonbc5166b92015-08-26 15:14:10 -040089 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T4), 0},
Anjali Singhai Jain35dae512015-12-22 14:25:03 -080090 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_X722), 0},
91 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_X722), 0},
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -040092 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_X722), 0},
93 {PCI_VDEVICE(INTEL, I40E_DEV_ID_1G_BASE_T_X722), 0},
94 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T_X722), 0},
Catherine Sullivand6bf58c2016-03-18 12:18:08 -070095 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_I_X722), 0},
Shannon Nelson48a3b512015-07-23 16:54:39 -040096 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
97 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2_A), 0},
Carolyn Wyborny31232372016-11-21 13:03:48 -080098 {PCI_VDEVICE(INTEL, I40E_DEV_ID_25G_B), 0},
99 {PCI_VDEVICE(INTEL, I40E_DEV_ID_25G_SFP28), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000100 /* required last entry */
101 {0, }
102};
103MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
104
105#define I40E_MAX_VF_COUNT 128
106static int debug = -1;
Alexander Duyck5d4ca232016-09-30 08:21:46 -0400107module_param(debug, uint, 0);
108MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all), Debug mask (0x8XXXXXXX)");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000109
110MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
111MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
112MODULE_LICENSE("GPL");
113MODULE_VERSION(DRV_VERSION);
114
Jesse Brandeburg2803b162015-12-22 14:25:08 -0800115static struct workqueue_struct *i40e_wq;
116
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000117/**
118 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
119 * @hw: pointer to the HW structure
120 * @mem: ptr to mem struct to fill out
121 * @size: size of memory requested
122 * @alignment: what to align the allocation to
123 **/
124int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
125 u64 size, u32 alignment)
126{
127 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
128
129 mem->size = ALIGN(size, alignment);
130 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
131 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000132 if (!mem->va)
133 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000134
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000135 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000136}
137
138/**
139 * i40e_free_dma_mem_d - OS specific memory free for shared code
140 * @hw: pointer to the HW structure
141 * @mem: ptr to mem struct to free
142 **/
143int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
144{
145 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
146
147 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
148 mem->va = NULL;
149 mem->pa = 0;
150 mem->size = 0;
151
152 return 0;
153}
154
155/**
156 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
157 * @hw: pointer to the HW structure
158 * @mem: ptr to mem struct to fill out
159 * @size: size of memory requested
160 **/
161int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
162 u32 size)
163{
164 mem->size = size;
165 mem->va = kzalloc(size, GFP_KERNEL);
166
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000167 if (!mem->va)
168 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000169
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000170 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000171}
172
173/**
174 * i40e_free_virt_mem_d - OS specific memory free for shared code
175 * @hw: pointer to the HW structure
176 * @mem: ptr to mem struct to free
177 **/
178int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
179{
180 /* it's ok to kfree a NULL pointer */
181 kfree(mem->va);
182 mem->va = NULL;
183 mem->size = 0;
184
185 return 0;
186}
187
188/**
189 * i40e_get_lump - find a lump of free generic resource
190 * @pf: board private structure
191 * @pile: the pile of resource to search
192 * @needed: the number of items needed
193 * @id: an owner id to stick on the items assigned
194 *
195 * Returns the base item index of the lump, or negative for error
196 *
197 * The search_hint trick and lack of advanced fit-finding only work
198 * because we're highly likely to have all the same size lump requests.
199 * Linear search time and any fragmentation should be minimal.
200 **/
201static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
202 u16 needed, u16 id)
203{
204 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000205 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000206
207 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
208 dev_info(&pf->pdev->dev,
209 "param err: pile=%p needed=%d id=0x%04x\n",
210 pile, needed, id);
211 return -EINVAL;
212 }
213
214 /* start the linear search with an imperfect hint */
215 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000216 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000217 /* skip already allocated entries */
218 if (pile->list[i] & I40E_PILE_VALID_BIT) {
219 i++;
220 continue;
221 }
222
223 /* do we have enough in this lump? */
224 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
225 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
226 break;
227 }
228
229 if (j == needed) {
230 /* there was enough, so assign it to the requestor */
231 for (j = 0; j < needed; j++)
232 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
233 ret = i;
234 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000235 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000236 }
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400237
238 /* not enough, so skip over it and continue looking */
239 i += j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000240 }
241
242 return ret;
243}
244
245/**
246 * i40e_put_lump - return a lump of generic resource
247 * @pile: the pile of resource to search
248 * @index: the base item index
249 * @id: the owner id of the items assigned
250 *
251 * Returns the count of items in the lump
252 **/
253static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
254{
255 int valid_id = (id | I40E_PILE_VALID_BIT);
256 int count = 0;
257 int i;
258
259 if (!pile || index >= pile->num_entries)
260 return -EINVAL;
261
262 for (i = index;
263 i < pile->num_entries && pile->list[i] == valid_id;
264 i++) {
265 pile->list[i] = 0;
266 count++;
267 }
268
269 if (count && index < pile->search_hint)
270 pile->search_hint = index;
271
272 return count;
273}
274
275/**
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700276 * i40e_find_vsi_from_id - searches for the vsi with the given id
277 * @pf - the pf structure to search for the vsi
278 * @id - id of the vsi it is searching for
279 **/
280struct i40e_vsi *i40e_find_vsi_from_id(struct i40e_pf *pf, u16 id)
281{
282 int i;
283
284 for (i = 0; i < pf->num_alloc_vsi; i++)
285 if (pf->vsi[i] && (pf->vsi[i]->id == id))
286 return pf->vsi[i];
287
288 return NULL;
289}
290
291/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000292 * i40e_service_event_schedule - Schedule the service task to wake up
293 * @pf: board private structure
294 *
295 * If not already scheduled, this puts the task into the work queue
296 **/
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600297void i40e_service_event_schedule(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000298{
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -0300299 if (!test_bit(__I40E_DOWN, pf->state) &&
Jacob Keller0da36b92017-04-19 09:25:55 -0400300 !test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
Jesse Brandeburg2803b162015-12-22 14:25:08 -0800301 queue_work(i40e_wq, &pf->service_task);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000302}
303
304/**
305 * i40e_tx_timeout - Respond to a Tx Hang
306 * @netdev: network interface device structure
307 *
308 * If any port has noticed a Tx timeout, it is likely that the whole
309 * device is munged, not just the one netdev port, so go for the full
310 * reset.
311 **/
312static void i40e_tx_timeout(struct net_device *netdev)
313{
314 struct i40e_netdev_priv *np = netdev_priv(netdev);
315 struct i40e_vsi *vsi = np->vsi;
316 struct i40e_pf *pf = vsi->back;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400317 struct i40e_ring *tx_ring = NULL;
318 unsigned int i, hung_queue = 0;
319 u32 head, val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000320
321 pf->tx_timeout_count++;
322
Kiran Patilb03a8c12015-09-24 18:13:15 -0400323 /* find the stopped queue the same way the stack does */
324 for (i = 0; i < netdev->num_tx_queues; i++) {
325 struct netdev_queue *q;
326 unsigned long trans_start;
327
328 q = netdev_get_tx_queue(netdev, i);
Florian Westphal9b366272016-05-03 16:33:14 +0200329 trans_start = q->trans_start;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400330 if (netif_xmit_stopped(q) &&
331 time_after(jiffies,
332 (trans_start + netdev->watchdog_timeo))) {
333 hung_queue = i;
334 break;
335 }
336 }
337
338 if (i == netdev->num_tx_queues) {
339 netdev_info(netdev, "tx_timeout: no netdev hung queue found\n");
340 } else {
341 /* now that we have an index, find the tx_ring struct */
342 for (i = 0; i < vsi->num_queue_pairs; i++) {
343 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
344 if (hung_queue ==
345 vsi->tx_rings[i]->queue_index) {
346 tx_ring = vsi->tx_rings[i];
347 break;
348 }
349 }
350 }
351 }
352
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000353 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Kiran Patilb03a8c12015-09-24 18:13:15 -0400354 pf->tx_timeout_recovery_level = 1; /* reset after some time */
355 else if (time_before(jiffies,
356 (pf->tx_timeout_last_recovery + netdev->watchdog_timeo)))
357 return; /* don't do any new action before the next timeout */
358
359 if (tx_ring) {
360 head = i40e_get_head(tx_ring);
361 /* Read interrupt register */
362 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
363 val = rd32(&pf->hw,
364 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
365 tx_ring->vsi->base_vector - 1));
366 else
367 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
368
369 netdev_info(netdev, "tx_timeout: VSI_seid: %d, Q %d, NTC: 0x%x, HWB: 0x%x, NTU: 0x%x, TAIL: 0x%x, INT: 0x%x\n",
370 vsi->seid, hung_queue, tx_ring->next_to_clean,
371 head, tx_ring->next_to_use,
372 readl(tx_ring->tail), val);
373 }
374
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000375 pf->tx_timeout_last_recovery = jiffies;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400376 netdev_info(netdev, "tx_timeout recovery level %d, hung_queue %d\n",
377 pf->tx_timeout_recovery_level, hung_queue);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000378
379 switch (pf->tx_timeout_recovery_level) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000380 case 1:
Jacob Keller0da36b92017-04-19 09:25:55 -0400381 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000382 break;
383 case 2:
Jacob Keller0da36b92017-04-19 09:25:55 -0400384 set_bit(__I40E_CORE_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000385 break;
386 case 3:
Jacob Keller0da36b92017-04-19 09:25:55 -0400387 set_bit(__I40E_GLOBAL_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000388 break;
389 default:
390 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000391 break;
392 }
Kiran Patilb03a8c12015-09-24 18:13:15 -0400393
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000394 i40e_service_event_schedule(pf);
395 pf->tx_timeout_recovery_level++;
396}
397
398/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000399 * i40e_get_vsi_stats_struct - Get System Network Statistics
400 * @vsi: the VSI we care about
401 *
402 * Returns the address of the device statistics structure.
403 * The statistics are actually updated from the service task.
404 **/
405struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
406{
407 return &vsi->net_stats;
408}
409
410/**
Björn Töpel74608d12017-05-24 07:55:35 +0200411 * i40e_get_netdev_stats_struct_tx - populate stats from a Tx ring
412 * @ring: Tx ring to get statistics from
413 * @stats: statistics entry to be updated
414 **/
415static void i40e_get_netdev_stats_struct_tx(struct i40e_ring *ring,
416 struct rtnl_link_stats64 *stats)
417{
418 u64 bytes, packets;
419 unsigned int start;
420
421 do {
422 start = u64_stats_fetch_begin_irq(&ring->syncp);
423 packets = ring->stats.packets;
424 bytes = ring->stats.bytes;
425 } while (u64_stats_fetch_retry_irq(&ring->syncp, start));
426
427 stats->tx_packets += packets;
428 stats->tx_bytes += bytes;
429}
430
431/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000432 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
433 * @netdev: network interface device structure
434 *
435 * Returns the address of the device statistics structure.
436 * The statistics are actually updated from the service task.
437 **/
Alexander Duyck9eed69a2017-02-21 15:55:47 -0800438static void i40e_get_netdev_stats_struct(struct net_device *netdev,
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800439 struct rtnl_link_stats64 *stats)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000440{
441 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000442 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000443 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000444 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
445 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000446
Jacob Keller0da36b92017-04-19 09:25:55 -0400447 if (test_bit(__I40E_VSI_DOWN, vsi->state))
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800448 return;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000449
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800450 if (!vsi->tx_rings)
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800451 return;
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800452
Alexander Duyck980e9b12013-09-28 06:01:03 +0000453 rcu_read_lock();
454 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000455 u64 bytes, packets;
456 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000457
Alexander Duyck980e9b12013-09-28 06:01:03 +0000458 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
459 if (!tx_ring)
460 continue;
Björn Töpel74608d12017-05-24 07:55:35 +0200461 i40e_get_netdev_stats_struct_tx(tx_ring, stats);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000462
Alexander Duyck980e9b12013-09-28 06:01:03 +0000463 rx_ring = &tx_ring[1];
464
465 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700466 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000467 packets = rx_ring->stats.packets;
468 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700469 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000470
471 stats->rx_packets += packets;
472 stats->rx_bytes += bytes;
Björn Töpel74608d12017-05-24 07:55:35 +0200473
474 if (i40e_enabled_xdp_vsi(vsi))
475 i40e_get_netdev_stats_struct_tx(&rx_ring[1], stats);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000476 }
477 rcu_read_unlock();
478
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000479 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000480 stats->multicast = vsi_stats->multicast;
481 stats->tx_errors = vsi_stats->tx_errors;
482 stats->tx_dropped = vsi_stats->tx_dropped;
483 stats->rx_errors = vsi_stats->rx_errors;
Jesse Brandeburgd8201e22015-07-23 16:54:35 -0400484 stats->rx_dropped = vsi_stats->rx_dropped;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000485 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
486 stats->rx_length_errors = vsi_stats->rx_length_errors;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000487}
488
489/**
490 * i40e_vsi_reset_stats - Resets all stats of the given vsi
491 * @vsi: the VSI to have its stats reset
492 **/
493void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
494{
495 struct rtnl_link_stats64 *ns;
496 int i;
497
498 if (!vsi)
499 return;
500
501 ns = i40e_get_vsi_stats_struct(vsi);
502 memset(ns, 0, sizeof(*ns));
503 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
504 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
505 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000506 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000507 for (i = 0; i < vsi->num_queue_pairs; i++) {
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400508 memset(&vsi->rx_rings[i]->stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000509 sizeof(vsi->rx_rings[i]->stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400510 memset(&vsi->rx_rings[i]->rx_stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000511 sizeof(vsi->rx_rings[i]->rx_stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400512 memset(&vsi->tx_rings[i]->stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000513 sizeof(vsi->tx_rings[i]->stats));
514 memset(&vsi->tx_rings[i]->tx_stats, 0,
515 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000516 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000517 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000518 vsi->stat_offsets_loaded = false;
519}
520
521/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +0000522 * i40e_pf_reset_stats - Reset all of the stats for the given PF
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000523 * @pf: the PF to be reset
524 **/
525void i40e_pf_reset_stats(struct i40e_pf *pf)
526{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000527 int i;
528
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000529 memset(&pf->stats, 0, sizeof(pf->stats));
530 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
531 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000532
533 for (i = 0; i < I40E_MAX_VEB; i++) {
534 if (pf->veb[i]) {
535 memset(&pf->veb[i]->stats, 0,
536 sizeof(pf->veb[i]->stats));
537 memset(&pf->veb[i]->stats_offsets, 0,
538 sizeof(pf->veb[i]->stats_offsets));
539 pf->veb[i]->stat_offsets_loaded = false;
540 }
541 }
Catherine Sullivan42bce042016-07-27 12:02:32 -0700542 pf->hw_csum_rx_error = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000543}
544
545/**
546 * i40e_stat_update48 - read and update a 48 bit stat from the chip
547 * @hw: ptr to the hardware info
548 * @hireg: the high 32 bit reg to read
549 * @loreg: the low 32 bit reg to read
550 * @offset_loaded: has the initial offset been loaded yet
551 * @offset: ptr to current offset value
552 * @stat: ptr to the stat
553 *
554 * Since the device stats are not reset at PFReset, they likely will not
555 * be zeroed when the driver starts. We'll save the first values read
556 * and use them as offsets to be subtracted from the raw values in order
557 * to report stats that count from zero. In the process, we also manage
558 * the potential roll-over.
559 **/
560static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
561 bool offset_loaded, u64 *offset, u64 *stat)
562{
563 u64 new_data;
564
Shannon Nelsonab600852014-01-17 15:36:39 -0800565 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000566 new_data = rd32(hw, loreg);
567 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
568 } else {
569 new_data = rd64(hw, loreg);
570 }
571 if (!offset_loaded)
572 *offset = new_data;
573 if (likely(new_data >= *offset))
574 *stat = new_data - *offset;
575 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400576 *stat = (new_data + BIT_ULL(48)) - *offset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000577 *stat &= 0xFFFFFFFFFFFFULL;
578}
579
580/**
581 * i40e_stat_update32 - read and update a 32 bit stat from the chip
582 * @hw: ptr to the hardware info
583 * @reg: the hw reg to read
584 * @offset_loaded: has the initial offset been loaded yet
585 * @offset: ptr to current offset value
586 * @stat: ptr to the stat
587 **/
588static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
589 bool offset_loaded, u64 *offset, u64 *stat)
590{
591 u32 new_data;
592
593 new_data = rd32(hw, reg);
594 if (!offset_loaded)
595 *offset = new_data;
596 if (likely(new_data >= *offset))
597 *stat = (u32)(new_data - *offset);
598 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400599 *stat = (u32)((new_data + BIT_ULL(32)) - *offset);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000600}
601
602/**
603 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
604 * @vsi: the VSI to be updated
605 **/
606void i40e_update_eth_stats(struct i40e_vsi *vsi)
607{
608 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
609 struct i40e_pf *pf = vsi->back;
610 struct i40e_hw *hw = &pf->hw;
611 struct i40e_eth_stats *oes;
612 struct i40e_eth_stats *es; /* device's eth stats */
613
614 es = &vsi->eth_stats;
615 oes = &vsi->eth_stats_offsets;
616
617 /* Gather up the stats that the hw collects */
618 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
619 vsi->stat_offsets_loaded,
620 &oes->tx_errors, &es->tx_errors);
621 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
622 vsi->stat_offsets_loaded,
623 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000624 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
625 vsi->stat_offsets_loaded,
626 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
627 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
628 vsi->stat_offsets_loaded,
629 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000630
631 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
632 I40E_GLV_GORCL(stat_idx),
633 vsi->stat_offsets_loaded,
634 &oes->rx_bytes, &es->rx_bytes);
635 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
636 I40E_GLV_UPRCL(stat_idx),
637 vsi->stat_offsets_loaded,
638 &oes->rx_unicast, &es->rx_unicast);
639 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
640 I40E_GLV_MPRCL(stat_idx),
641 vsi->stat_offsets_loaded,
642 &oes->rx_multicast, &es->rx_multicast);
643 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
644 I40E_GLV_BPRCL(stat_idx),
645 vsi->stat_offsets_loaded,
646 &oes->rx_broadcast, &es->rx_broadcast);
647
648 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
649 I40E_GLV_GOTCL(stat_idx),
650 vsi->stat_offsets_loaded,
651 &oes->tx_bytes, &es->tx_bytes);
652 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
653 I40E_GLV_UPTCL(stat_idx),
654 vsi->stat_offsets_loaded,
655 &oes->tx_unicast, &es->tx_unicast);
656 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
657 I40E_GLV_MPTCL(stat_idx),
658 vsi->stat_offsets_loaded,
659 &oes->tx_multicast, &es->tx_multicast);
660 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
661 I40E_GLV_BPTCL(stat_idx),
662 vsi->stat_offsets_loaded,
663 &oes->tx_broadcast, &es->tx_broadcast);
664 vsi->stat_offsets_loaded = true;
665}
666
667/**
668 * i40e_update_veb_stats - Update Switch component statistics
669 * @veb: the VEB being updated
670 **/
671static void i40e_update_veb_stats(struct i40e_veb *veb)
672{
673 struct i40e_pf *pf = veb->pf;
674 struct i40e_hw *hw = &pf->hw;
675 struct i40e_eth_stats *oes;
676 struct i40e_eth_stats *es; /* device's eth stats */
Neerav Parikhfe860af2015-07-10 19:36:02 -0400677 struct i40e_veb_tc_stats *veb_oes;
678 struct i40e_veb_tc_stats *veb_es;
679 int i, idx = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000680
681 idx = veb->stats_idx;
682 es = &veb->stats;
683 oes = &veb->stats_offsets;
Neerav Parikhfe860af2015-07-10 19:36:02 -0400684 veb_es = &veb->tc_stats;
685 veb_oes = &veb->tc_stats_offsets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000686
687 /* Gather up the stats that the hw collects */
688 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
689 veb->stat_offsets_loaded,
690 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000691 if (hw->revision_id > 0)
692 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
693 veb->stat_offsets_loaded,
694 &oes->rx_unknown_protocol,
695 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000696 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
697 veb->stat_offsets_loaded,
698 &oes->rx_bytes, &es->rx_bytes);
699 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
700 veb->stat_offsets_loaded,
701 &oes->rx_unicast, &es->rx_unicast);
702 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
703 veb->stat_offsets_loaded,
704 &oes->rx_multicast, &es->rx_multicast);
705 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
706 veb->stat_offsets_loaded,
707 &oes->rx_broadcast, &es->rx_broadcast);
708
709 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
710 veb->stat_offsets_loaded,
711 &oes->tx_bytes, &es->tx_bytes);
712 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
713 veb->stat_offsets_loaded,
714 &oes->tx_unicast, &es->tx_unicast);
715 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
716 veb->stat_offsets_loaded,
717 &oes->tx_multicast, &es->tx_multicast);
718 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
719 veb->stat_offsets_loaded,
720 &oes->tx_broadcast, &es->tx_broadcast);
Neerav Parikhfe860af2015-07-10 19:36:02 -0400721 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
722 i40e_stat_update48(hw, I40E_GLVEBTC_RPCH(i, idx),
723 I40E_GLVEBTC_RPCL(i, idx),
724 veb->stat_offsets_loaded,
725 &veb_oes->tc_rx_packets[i],
726 &veb_es->tc_rx_packets[i]);
727 i40e_stat_update48(hw, I40E_GLVEBTC_RBCH(i, idx),
728 I40E_GLVEBTC_RBCL(i, idx),
729 veb->stat_offsets_loaded,
730 &veb_oes->tc_rx_bytes[i],
731 &veb_es->tc_rx_bytes[i]);
732 i40e_stat_update48(hw, I40E_GLVEBTC_TPCH(i, idx),
733 I40E_GLVEBTC_TPCL(i, idx),
734 veb->stat_offsets_loaded,
735 &veb_oes->tc_tx_packets[i],
736 &veb_es->tc_tx_packets[i]);
737 i40e_stat_update48(hw, I40E_GLVEBTC_TBCH(i, idx),
738 I40E_GLVEBTC_TBCL(i, idx),
739 veb->stat_offsets_loaded,
740 &veb_oes->tc_tx_bytes[i],
741 &veb_es->tc_tx_bytes[i]);
742 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000743 veb->stat_offsets_loaded = true;
744}
745
746/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000747 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000748 * @vsi: the VSI to be updated
749 *
750 * There are a few instances where we store the same stat in a
751 * couple of different structs. This is partly because we have
752 * the netdev stats that need to be filled out, which is slightly
753 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000754 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000755 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000756static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000757{
758 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000759 struct rtnl_link_stats64 *ons;
760 struct rtnl_link_stats64 *ns; /* netdev stats */
761 struct i40e_eth_stats *oes;
762 struct i40e_eth_stats *es; /* device's eth stats */
763 u32 tx_restart, tx_busy;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000764 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000765 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000766 u64 bytes, packets;
767 unsigned int start;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400768 u64 tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400769 u64 tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000770 u64 rx_p, rx_b;
771 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000772 u16 q;
773
Jacob Keller0da36b92017-04-19 09:25:55 -0400774 if (test_bit(__I40E_VSI_DOWN, vsi->state) ||
775 test_bit(__I40E_CONFIG_BUSY, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000776 return;
777
778 ns = i40e_get_vsi_stats_struct(vsi);
779 ons = &vsi->net_stats_offsets;
780 es = &vsi->eth_stats;
781 oes = &vsi->eth_stats_offsets;
782
783 /* Gather up the netdev and vsi stats that the driver collects
784 * on the fly during packet processing
785 */
786 rx_b = rx_p = 0;
787 tx_b = tx_p = 0;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400788 tx_restart = tx_busy = tx_linearize = tx_force_wb = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000789 rx_page = 0;
790 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000791 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000792 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000793 /* locate Tx ring */
794 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000795
Alexander Duyck980e9b12013-09-28 06:01:03 +0000796 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700797 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000798 packets = p->stats.packets;
799 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700800 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000801 tx_b += bytes;
802 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000803 tx_restart += p->tx_stats.restart_queue;
804 tx_busy += p->tx_stats.tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400805 tx_linearize += p->tx_stats.tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400806 tx_force_wb += p->tx_stats.tx_force_wb;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000807
808 /* Rx queue is part of the same block as Tx queue */
809 p = &p[1];
810 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700811 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000812 packets = p->stats.packets;
813 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700814 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000815 rx_b += bytes;
816 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000817 rx_buf += p->rx_stats.alloc_buff_failed;
818 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000819 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000820 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000821 vsi->tx_restart = tx_restart;
822 vsi->tx_busy = tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400823 vsi->tx_linearize = tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400824 vsi->tx_force_wb = tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000825 vsi->rx_page_failed = rx_page;
826 vsi->rx_buf_failed = rx_buf;
827
828 ns->rx_packets = rx_p;
829 ns->rx_bytes = rx_b;
830 ns->tx_packets = tx_p;
831 ns->tx_bytes = tx_b;
832
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000833 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000834 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000835 ons->tx_errors = oes->tx_errors;
836 ns->tx_errors = es->tx_errors;
837 ons->multicast = oes->rx_multicast;
838 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000839 ons->rx_dropped = oes->rx_discards;
840 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000841 ons->tx_dropped = oes->tx_discards;
842 ns->tx_dropped = es->tx_discards;
843
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000844 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000845 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000846 ns->rx_crc_errors = pf->stats.crc_errors;
847 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
848 ns->rx_length_errors = pf->stats.rx_length_errors;
849 }
850}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000851
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000852/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +0000853 * i40e_update_pf_stats - Update the PF statistics counters.
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000854 * @pf: the PF to be updated
855 **/
856static void i40e_update_pf_stats(struct i40e_pf *pf)
857{
858 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
859 struct i40e_hw_port_stats *nsd = &pf->stats;
860 struct i40e_hw *hw = &pf->hw;
861 u32 val;
862 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000863
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000864 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
865 I40E_GLPRT_GORCL(hw->port),
866 pf->stat_offsets_loaded,
867 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
868 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
869 I40E_GLPRT_GOTCL(hw->port),
870 pf->stat_offsets_loaded,
871 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
872 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
873 pf->stat_offsets_loaded,
874 &osd->eth.rx_discards,
875 &nsd->eth.rx_discards);
Shannon Nelson532d2832014-04-23 04:50:09 +0000876 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
877 I40E_GLPRT_UPRCL(hw->port),
878 pf->stat_offsets_loaded,
879 &osd->eth.rx_unicast,
880 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000881 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
882 I40E_GLPRT_MPRCL(hw->port),
883 pf->stat_offsets_loaded,
884 &osd->eth.rx_multicast,
885 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000886 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
887 I40E_GLPRT_BPRCL(hw->port),
888 pf->stat_offsets_loaded,
889 &osd->eth.rx_broadcast,
890 &nsd->eth.rx_broadcast);
891 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
892 I40E_GLPRT_UPTCL(hw->port),
893 pf->stat_offsets_loaded,
894 &osd->eth.tx_unicast,
895 &nsd->eth.tx_unicast);
896 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
897 I40E_GLPRT_MPTCL(hw->port),
898 pf->stat_offsets_loaded,
899 &osd->eth.tx_multicast,
900 &nsd->eth.tx_multicast);
901 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
902 I40E_GLPRT_BPTCL(hw->port),
903 pf->stat_offsets_loaded,
904 &osd->eth.tx_broadcast,
905 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000906
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000907 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
908 pf->stat_offsets_loaded,
909 &osd->tx_dropped_link_down,
910 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000911
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000912 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
913 pf->stat_offsets_loaded,
914 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000915
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000916 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
917 pf->stat_offsets_loaded,
918 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000919
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000920 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
921 pf->stat_offsets_loaded,
922 &osd->mac_local_faults,
923 &nsd->mac_local_faults);
924 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
925 pf->stat_offsets_loaded,
926 &osd->mac_remote_faults,
927 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000928
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000929 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
930 pf->stat_offsets_loaded,
931 &osd->rx_length_errors,
932 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000933
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000934 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
935 pf->stat_offsets_loaded,
936 &osd->link_xon_rx, &nsd->link_xon_rx);
937 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
938 pf->stat_offsets_loaded,
939 &osd->link_xon_tx, &nsd->link_xon_tx);
Neerav Parikh95db2392015-11-06 15:26:09 -0800940 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
941 pf->stat_offsets_loaded,
942 &osd->link_xoff_rx, &nsd->link_xoff_rx);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000943 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
944 pf->stat_offsets_loaded,
945 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000946
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000947 for (i = 0; i < 8; i++) {
Neerav Parikh95db2392015-11-06 15:26:09 -0800948 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
949 pf->stat_offsets_loaded,
950 &osd->priority_xoff_rx[i],
951 &nsd->priority_xoff_rx[i]);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000952 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000953 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000954 &osd->priority_xon_rx[i],
955 &nsd->priority_xon_rx[i]);
956 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000957 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000958 &osd->priority_xon_tx[i],
959 &nsd->priority_xon_tx[i]);
960 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000961 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000962 &osd->priority_xoff_tx[i],
963 &nsd->priority_xoff_tx[i]);
964 i40e_stat_update32(hw,
965 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000966 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000967 &osd->priority_xon_2_xoff[i],
968 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000969 }
970
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000971 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
972 I40E_GLPRT_PRC64L(hw->port),
973 pf->stat_offsets_loaded,
974 &osd->rx_size_64, &nsd->rx_size_64);
975 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
976 I40E_GLPRT_PRC127L(hw->port),
977 pf->stat_offsets_loaded,
978 &osd->rx_size_127, &nsd->rx_size_127);
979 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
980 I40E_GLPRT_PRC255L(hw->port),
981 pf->stat_offsets_loaded,
982 &osd->rx_size_255, &nsd->rx_size_255);
983 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
984 I40E_GLPRT_PRC511L(hw->port),
985 pf->stat_offsets_loaded,
986 &osd->rx_size_511, &nsd->rx_size_511);
987 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
988 I40E_GLPRT_PRC1023L(hw->port),
989 pf->stat_offsets_loaded,
990 &osd->rx_size_1023, &nsd->rx_size_1023);
991 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
992 I40E_GLPRT_PRC1522L(hw->port),
993 pf->stat_offsets_loaded,
994 &osd->rx_size_1522, &nsd->rx_size_1522);
995 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
996 I40E_GLPRT_PRC9522L(hw->port),
997 pf->stat_offsets_loaded,
998 &osd->rx_size_big, &nsd->rx_size_big);
999
1000 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1001 I40E_GLPRT_PTC64L(hw->port),
1002 pf->stat_offsets_loaded,
1003 &osd->tx_size_64, &nsd->tx_size_64);
1004 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1005 I40E_GLPRT_PTC127L(hw->port),
1006 pf->stat_offsets_loaded,
1007 &osd->tx_size_127, &nsd->tx_size_127);
1008 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1009 I40E_GLPRT_PTC255L(hw->port),
1010 pf->stat_offsets_loaded,
1011 &osd->tx_size_255, &nsd->tx_size_255);
1012 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1013 I40E_GLPRT_PTC511L(hw->port),
1014 pf->stat_offsets_loaded,
1015 &osd->tx_size_511, &nsd->tx_size_511);
1016 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1017 I40E_GLPRT_PTC1023L(hw->port),
1018 pf->stat_offsets_loaded,
1019 &osd->tx_size_1023, &nsd->tx_size_1023);
1020 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1021 I40E_GLPRT_PTC1522L(hw->port),
1022 pf->stat_offsets_loaded,
1023 &osd->tx_size_1522, &nsd->tx_size_1522);
1024 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1025 I40E_GLPRT_PTC9522L(hw->port),
1026 pf->stat_offsets_loaded,
1027 &osd->tx_size_big, &nsd->tx_size_big);
1028
1029 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1030 pf->stat_offsets_loaded,
1031 &osd->rx_undersize, &nsd->rx_undersize);
1032 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1033 pf->stat_offsets_loaded,
1034 &osd->rx_fragments, &nsd->rx_fragments);
1035 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1036 pf->stat_offsets_loaded,
1037 &osd->rx_oversize, &nsd->rx_oversize);
1038 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1039 pf->stat_offsets_loaded,
1040 &osd->rx_jabber, &nsd->rx_jabber);
1041
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001042 /* FDIR stats */
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001043 i40e_stat_update32(hw,
1044 I40E_GLQF_PCNT(I40E_FD_ATR_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001045 pf->stat_offsets_loaded,
1046 &osd->fd_atr_match, &nsd->fd_atr_match);
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001047 i40e_stat_update32(hw,
1048 I40E_GLQF_PCNT(I40E_FD_SB_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001049 pf->stat_offsets_loaded,
1050 &osd->fd_sb_match, &nsd->fd_sb_match);
Anjali Singhai Jain60ccd452015-04-16 20:06:01 -04001051 i40e_stat_update32(hw,
1052 I40E_GLQF_PCNT(I40E_FD_ATR_TUNNEL_STAT_IDX(pf->hw.pf_id)),
1053 pf->stat_offsets_loaded,
1054 &osd->fd_atr_tunnel_match, &nsd->fd_atr_tunnel_match);
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001055
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001056 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1057 nsd->tx_lpi_status =
1058 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1059 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1060 nsd->rx_lpi_status =
1061 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1062 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1063 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1064 pf->stat_offsets_loaded,
1065 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1066 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1067 pf->stat_offsets_loaded,
1068 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1069
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001070 if (pf->flags & I40E_FLAG_FD_SB_ENABLED &&
Jacob Keller47994c12017-04-19 09:25:57 -04001071 !(pf->flags & I40E_FLAG_FD_SB_AUTO_DISABLED))
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001072 nsd->fd_sb_status = true;
1073 else
1074 nsd->fd_sb_status = false;
1075
1076 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED &&
Jacob Keller47994c12017-04-19 09:25:57 -04001077 !(pf->flags & I40E_FLAG_FD_ATR_AUTO_DISABLED))
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001078 nsd->fd_atr_status = true;
1079 else
1080 nsd->fd_atr_status = false;
1081
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001082 pf->stat_offsets_loaded = true;
1083}
1084
1085/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001086 * i40e_update_stats - Update the various statistics counters.
1087 * @vsi: the VSI to be updated
1088 *
1089 * Update the various stats for this VSI and its related entities.
1090 **/
1091void i40e_update_stats(struct i40e_vsi *vsi)
1092{
1093 struct i40e_pf *pf = vsi->back;
1094
1095 if (vsi == pf->vsi[pf->lan_vsi])
1096 i40e_update_pf_stats(pf);
1097
1098 i40e_update_vsi_stats(vsi);
1099}
1100
1101/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001102 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1103 * @vsi: the VSI to be searched
1104 * @macaddr: the MAC address
1105 * @vlan: the vlan
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001106 *
1107 * Returns ptr to the filter object or NULL
1108 **/
1109static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
Jacob Keller6622f5c2016-10-05 09:30:32 -07001110 const u8 *macaddr, s16 vlan)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001111{
1112 struct i40e_mac_filter *f;
Jacob Keller278e7d02016-10-05 09:30:37 -07001113 u64 key;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001114
1115 if (!vsi || !macaddr)
1116 return NULL;
1117
Jacob Keller278e7d02016-10-05 09:30:37 -07001118 key = i40e_addr_to_hkey(macaddr);
1119 hash_for_each_possible(vsi->mac_filter_hash, f, hlist, key) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001120 if ((ether_addr_equal(macaddr, f->macaddr)) &&
Jacob Keller1bc87e82016-10-05 09:30:31 -07001121 (vlan == f->vlan))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001122 return f;
1123 }
1124 return NULL;
1125}
1126
1127/**
1128 * i40e_find_mac - Find a mac addr in the macvlan filters list
1129 * @vsi: the VSI to be searched
1130 * @macaddr: the MAC address we are searching for
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001131 *
1132 * Returns the first filter with the provided MAC address or NULL if
1133 * MAC address was not found
1134 **/
Jacob Keller6622f5c2016-10-05 09:30:32 -07001135struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, const u8 *macaddr)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001136{
1137 struct i40e_mac_filter *f;
Jacob Keller278e7d02016-10-05 09:30:37 -07001138 u64 key;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001139
1140 if (!vsi || !macaddr)
1141 return NULL;
1142
Jacob Keller278e7d02016-10-05 09:30:37 -07001143 key = i40e_addr_to_hkey(macaddr);
1144 hash_for_each_possible(vsi->mac_filter_hash, f, hlist, key) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07001145 if ((ether_addr_equal(macaddr, f->macaddr)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001146 return f;
1147 }
1148 return NULL;
1149}
1150
1151/**
1152 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1153 * @vsi: the VSI to be searched
1154 *
1155 * Returns true if VSI is in vlan mode or false otherwise
1156 **/
1157bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1158{
Jacob Kellercbebb852016-10-05 09:30:40 -07001159 /* If we have a PVID, always operate in VLAN mode */
1160 if (vsi->info.pvid)
1161 return true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001162
Jacob Kellercbebb852016-10-05 09:30:40 -07001163 /* We need to operate in VLAN mode whenever we have any filters with
1164 * a VLAN other than I40E_VLAN_ALL. We could check the table each
1165 * time, incurring search cost repeatedly. However, we can notice two
1166 * things:
1167 *
1168 * 1) the only place where we can gain a VLAN filter is in
1169 * i40e_add_filter.
1170 *
1171 * 2) the only place where filters are actually removed is in
Jacob Keller0b7c8b52016-10-25 16:08:52 -07001172 * i40e_sync_filters_subtask.
Jacob Kellercbebb852016-10-05 09:30:40 -07001173 *
1174 * Thus, we can simply use a boolean value, has_vlan_filters which we
1175 * will set to true when we add a VLAN filter in i40e_add_filter. Then
1176 * we have to perform the full search after deleting filters in
Jacob Keller0b7c8b52016-10-25 16:08:52 -07001177 * i40e_sync_filters_subtask, but we already have to search
Jacob Kellercbebb852016-10-05 09:30:40 -07001178 * filters here and can perform the check at the same time. This
1179 * results in avoiding embedding a loop for VLAN mode inside another
1180 * loop over all the filters, and should maintain correctness as noted
1181 * above.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001182 */
Jacob Kellercbebb852016-10-05 09:30:40 -07001183 return vsi->has_vlan_filter;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001184}
1185
1186/**
Jacob Keller489a3262016-11-11 12:39:31 -08001187 * i40e_correct_mac_vlan_filters - Correct non-VLAN filters if necessary
1188 * @vsi: the VSI to configure
1189 * @tmp_add_list: list of filters ready to be added
1190 * @tmp_del_list: list of filters ready to be deleted
1191 * @vlan_filters: the number of active VLAN filters
1192 *
1193 * Update VLAN=0 and VLAN=-1 (I40E_VLAN_ANY) filters properly so that they
1194 * behave as expected. If we have any active VLAN filters remaining or about
1195 * to be added then we need to update non-VLAN filters to be marked as VLAN=0
1196 * so that they only match against untagged traffic. If we no longer have any
1197 * active VLAN filters, we need to make all non-VLAN filters marked as VLAN=-1
1198 * so that they match against both tagged and untagged traffic. In this way,
1199 * we ensure that we correctly receive the desired traffic. This ensures that
1200 * when we have an active VLAN we will receive only untagged traffic and
1201 * traffic matching active VLANs. If we have no active VLANs then we will
1202 * operate in non-VLAN mode and receive all traffic, tagged or untagged.
1203 *
1204 * Finally, in a similar fashion, this function also corrects filters when
1205 * there is an active PVID assigned to this VSI.
1206 *
1207 * In case of memory allocation failure return -ENOMEM. Otherwise, return 0.
1208 *
1209 * This function is only expected to be called from within
1210 * i40e_sync_vsi_filters.
1211 *
1212 * NOTE: This function expects to be called while under the
1213 * mac_filter_hash_lock
1214 */
1215static int i40e_correct_mac_vlan_filters(struct i40e_vsi *vsi,
1216 struct hlist_head *tmp_add_list,
1217 struct hlist_head *tmp_del_list,
1218 int vlan_filters)
1219{
Jacob Keller5cb25902016-12-12 15:44:15 -08001220 s16 pvid = le16_to_cpu(vsi->info.pvid);
Jacob Keller489a3262016-11-11 12:39:31 -08001221 struct i40e_mac_filter *f, *add_head;
Jacob Keller671889e2016-12-02 12:33:00 -08001222 struct i40e_new_mac_filter *new;
Jacob Keller489a3262016-11-11 12:39:31 -08001223 struct hlist_node *h;
1224 int bkt, new_vlan;
1225
1226 /* To determine if a particular filter needs to be replaced we
1227 * have the three following conditions:
1228 *
1229 * a) if we have a PVID assigned, then all filters which are
1230 * not marked as VLAN=PVID must be replaced with filters that
1231 * are.
1232 * b) otherwise, if we have any active VLANS, all filters
1233 * which are marked as VLAN=-1 must be replaced with
1234 * filters marked as VLAN=0
1235 * c) finally, if we do not have any active VLANS, all filters
1236 * which are marked as VLAN=0 must be replaced with filters
1237 * marked as VLAN=-1
1238 */
1239
1240 /* Update the filters about to be added in place */
Jacob Keller671889e2016-12-02 12:33:00 -08001241 hlist_for_each_entry(new, tmp_add_list, hlist) {
Jacob Keller5cb25902016-12-12 15:44:15 -08001242 if (pvid && new->f->vlan != pvid)
1243 new->f->vlan = pvid;
Jacob Keller671889e2016-12-02 12:33:00 -08001244 else if (vlan_filters && new->f->vlan == I40E_VLAN_ANY)
1245 new->f->vlan = 0;
1246 else if (!vlan_filters && new->f->vlan == 0)
1247 new->f->vlan = I40E_VLAN_ANY;
Jacob Keller489a3262016-11-11 12:39:31 -08001248 }
1249
1250 /* Update the remaining active filters */
1251 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
1252 /* Combine the checks for whether a filter needs to be changed
1253 * and then determine the new VLAN inside the if block, in
1254 * order to avoid duplicating code for adding the new filter
1255 * then deleting the old filter.
1256 */
Jacob Keller5cb25902016-12-12 15:44:15 -08001257 if ((pvid && f->vlan != pvid) ||
Jacob Keller489a3262016-11-11 12:39:31 -08001258 (vlan_filters && f->vlan == I40E_VLAN_ANY) ||
1259 (!vlan_filters && f->vlan == 0)) {
1260 /* Determine the new vlan we will be adding */
Jacob Keller5cb25902016-12-12 15:44:15 -08001261 if (pvid)
1262 new_vlan = pvid;
Jacob Keller489a3262016-11-11 12:39:31 -08001263 else if (vlan_filters)
1264 new_vlan = 0;
1265 else
1266 new_vlan = I40E_VLAN_ANY;
1267
1268 /* Create the new filter */
1269 add_head = i40e_add_filter(vsi, f->macaddr, new_vlan);
1270 if (!add_head)
1271 return -ENOMEM;
1272
Jacob Keller671889e2016-12-02 12:33:00 -08001273 /* Create a temporary i40e_new_mac_filter */
1274 new = kzalloc(sizeof(*new), GFP_ATOMIC);
1275 if (!new)
1276 return -ENOMEM;
1277
1278 new->f = add_head;
1279 new->state = add_head->state;
1280
1281 /* Add the new filter to the tmp list */
1282 hlist_add_head(&new->hlist, tmp_add_list);
Jacob Keller489a3262016-11-11 12:39:31 -08001283
1284 /* Put the original filter into the delete list */
1285 f->state = I40E_FILTER_REMOVE;
1286 hash_del(&f->hlist);
1287 hlist_add_head(&f->hlist, tmp_del_list);
1288 }
1289 }
1290
1291 vsi->has_vlan_filter = !!vlan_filters;
1292
1293 return 0;
1294}
1295
1296/**
Jacob Keller1596b5d2016-11-08 13:05:15 -08001297 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1298 * @vsi: the PF Main VSI - inappropriate for any other VSI
1299 * @macaddr: the MAC address
1300 *
1301 * Remove whatever filter the firmware set up so the driver can manage
1302 * its own filtering intelligently.
1303 **/
1304static void i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
1305{
1306 struct i40e_aqc_remove_macvlan_element_data element;
1307 struct i40e_pf *pf = vsi->back;
1308
1309 /* Only appropriate for the PF main VSI */
1310 if (vsi->type != I40E_VSI_MAIN)
1311 return;
1312
1313 memset(&element, 0, sizeof(element));
1314 ether_addr_copy(element.mac_addr, macaddr);
1315 element.vlan_tag = 0;
1316 /* Ignore error returns, some firmware does it this way... */
1317 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1318 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1319
1320 memset(&element, 0, sizeof(element));
1321 ether_addr_copy(element.mac_addr, macaddr);
1322 element.vlan_tag = 0;
1323 /* ...and some firmware does it this way. */
1324 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1325 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
1326 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1327}
1328
1329/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001330 * i40e_add_filter - Add a mac/vlan filter to the VSI
1331 * @vsi: the VSI to be searched
1332 * @macaddr: the MAC address
1333 * @vlan: the vlan
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001334 *
1335 * Returns ptr to the filter object or NULL when no memory available.
Kiran Patil21659032015-09-30 14:09:03 -04001336 *
Jacob Keller278e7d02016-10-05 09:30:37 -07001337 * NOTE: This function is expected to be called with mac_filter_hash_lock
Kiran Patil21659032015-09-30 14:09:03 -04001338 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001339 **/
1340struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
Jacob Keller6622f5c2016-10-05 09:30:32 -07001341 const u8 *macaddr, s16 vlan)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001342{
1343 struct i40e_mac_filter *f;
Jacob Keller278e7d02016-10-05 09:30:37 -07001344 u64 key;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001345
1346 if (!vsi || !macaddr)
1347 return NULL;
1348
Jacob Keller1bc87e82016-10-05 09:30:31 -07001349 f = i40e_find_filter(vsi, macaddr, vlan);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001350 if (!f) {
1351 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1352 if (!f)
Jacob Keller1bc87e82016-10-05 09:30:31 -07001353 return NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001354
Jacob Kellercbebb852016-10-05 09:30:40 -07001355 /* Update the boolean indicating if we need to function in
1356 * VLAN mode.
1357 */
1358 if (vlan >= 0)
1359 vsi->has_vlan_filter = true;
1360
Greg Rose9a173902014-05-22 06:32:02 +00001361 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001362 f->vlan = vlan;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001363 /* If we're in overflow promisc mode, set the state directly
1364 * to failed, so we don't bother to try sending the filter
1365 * to the hardware.
1366 */
Jacob Keller0da36b92017-04-19 09:25:55 -04001367 if (test_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state))
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001368 f->state = I40E_FILTER_FAILED;
1369 else
1370 f->state = I40E_FILTER_NEW;
Jacob Keller278e7d02016-10-05 09:30:37 -07001371 INIT_HLIST_NODE(&f->hlist);
1372
1373 key = i40e_addr_to_hkey(macaddr);
1374 hash_add(vsi->mac_filter_hash, &f->hlist, key);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001375
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001376 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1377 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1378 }
1379
Jacob Keller1bc87e82016-10-05 09:30:31 -07001380 /* If we're asked to add a filter that has been marked for removal, it
1381 * is safe to simply restore it to active state. __i40e_del_filter
1382 * will have simply deleted any filters which were previously marked
1383 * NEW or FAILED, so if it is currently marked REMOVE it must have
1384 * previously been ACTIVE. Since we haven't yet run the sync filters
1385 * task, just restore this filter to the ACTIVE state so that the
1386 * sync task leaves it in place
1387 */
1388 if (f->state == I40E_FILTER_REMOVE)
1389 f->state = I40E_FILTER_ACTIVE;
1390
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001391 return f;
1392}
1393
1394/**
Jacob Keller290d2552016-10-05 09:30:36 -07001395 * __i40e_del_filter - Remove a specific filter from the VSI
1396 * @vsi: VSI to remove from
1397 * @f: the filter to remove from the list
1398 *
1399 * This function should be called instead of i40e_del_filter only if you know
1400 * the exact filter you will remove already, such as via i40e_find_filter or
1401 * i40e_find_mac.
Kiran Patil21659032015-09-30 14:09:03 -04001402 *
Jacob Keller278e7d02016-10-05 09:30:37 -07001403 * NOTE: This function is expected to be called with mac_filter_hash_lock
Kiran Patil21659032015-09-30 14:09:03 -04001404 * being held.
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001405 * ANOTHER NOTE: This function MUST be called from within the context of
1406 * the "safe" variants of any list iterators, e.g. list_for_each_entry_safe()
1407 * instead of list_for_each_entry().
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001408 **/
Jacob Keller148141b2016-11-11 12:39:36 -08001409void __i40e_del_filter(struct i40e_vsi *vsi, struct i40e_mac_filter *f)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001410{
Jacob Keller1bc87e82016-10-05 09:30:31 -07001411 if (!f)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001412 return;
1413
Alan Bradya410c822016-12-12 15:44:07 -08001414 /* If the filter was never added to firmware then we can just delete it
1415 * directly and we don't want to set the status to remove or else an
1416 * admin queue command will unnecessarily fire.
1417 */
Jacob Keller1bc87e82016-10-05 09:30:31 -07001418 if ((f->state == I40E_FILTER_FAILED) ||
1419 (f->state == I40E_FILTER_NEW)) {
Jacob Keller278e7d02016-10-05 09:30:37 -07001420 hash_del(&f->hlist);
Jacob Keller1bc87e82016-10-05 09:30:31 -07001421 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001422 } else {
Jacob Keller1bc87e82016-10-05 09:30:31 -07001423 f->state = I40E_FILTER_REMOVE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001424 }
Alan Bradya410c822016-12-12 15:44:07 -08001425
1426 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1427 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001428}
1429
1430/**
Jacob Keller290d2552016-10-05 09:30:36 -07001431 * i40e_del_filter - Remove a MAC/VLAN filter from the VSI
1432 * @vsi: the VSI to be searched
1433 * @macaddr: the MAC address
1434 * @vlan: the VLAN
1435 *
Jacob Keller278e7d02016-10-05 09:30:37 -07001436 * NOTE: This function is expected to be called with mac_filter_hash_lock
Jacob Keller290d2552016-10-05 09:30:36 -07001437 * being held.
1438 * ANOTHER NOTE: This function MUST be called from within the context of
1439 * the "safe" variants of any list iterators, e.g. list_for_each_entry_safe()
1440 * instead of list_for_each_entry().
1441 **/
1442void i40e_del_filter(struct i40e_vsi *vsi, const u8 *macaddr, s16 vlan)
1443{
1444 struct i40e_mac_filter *f;
1445
1446 if (!vsi || !macaddr)
1447 return;
1448
1449 f = i40e_find_filter(vsi, macaddr, vlan);
1450 __i40e_del_filter(vsi, f);
1451}
1452
1453/**
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001454 * i40e_add_mac_filter - Add a MAC filter for all active VLANs
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001455 * @vsi: the VSI to be searched
1456 * @macaddr: the mac address to be filtered
1457 *
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001458 * If we're not in VLAN mode, just add the filter to I40E_VLAN_ANY. Otherwise,
1459 * go through all the macvlan filters and add a macvlan filter for each
Jacob Keller5feb3d72016-10-05 09:30:34 -07001460 * unique vlan that already exists. If a PVID has been assigned, instead only
1461 * add the macaddr to that VLAN.
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001462 *
Jacob Keller5feb3d72016-10-05 09:30:34 -07001463 * Returns last filter added on success, else NULL
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001464 **/
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001465struct i40e_mac_filter *i40e_add_mac_filter(struct i40e_vsi *vsi,
1466 const u8 *macaddr)
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001467{
Jacob Keller5feb3d72016-10-05 09:30:34 -07001468 struct i40e_mac_filter *f, *add = NULL;
Jacob Keller278e7d02016-10-05 09:30:37 -07001469 struct hlist_node *h;
1470 int bkt;
Jacob Keller5feb3d72016-10-05 09:30:34 -07001471
1472 if (vsi->info.pvid)
1473 return i40e_add_filter(vsi, macaddr,
1474 le16_to_cpu(vsi->info.pvid));
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001475
Jacob Keller7aaf95362016-11-11 12:39:33 -08001476 if (!i40e_is_vsi_in_vlan(vsi))
1477 return i40e_add_filter(vsi, macaddr, I40E_VLAN_ANY);
1478
Jacob Keller278e7d02016-10-05 09:30:37 -07001479 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Jacob Keller57b341d2016-10-05 09:30:35 -07001480 if (f->state == I40E_FILTER_REMOVE)
1481 continue;
Jacob Keller5feb3d72016-10-05 09:30:34 -07001482 add = i40e_add_filter(vsi, macaddr, f->vlan);
1483 if (!add)
1484 return NULL;
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001485 }
1486
Jacob Keller5feb3d72016-10-05 09:30:34 -07001487 return add;
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001488}
1489
1490/**
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001491 * i40e_del_mac_filter - Remove a MAC filter from all VLANs
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001492 * @vsi: the VSI to be searched
1493 * @macaddr: the mac address to be removed
1494 *
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001495 * Removes a given MAC address from a VSI regardless of what VLAN it has been
1496 * associated with.
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001497 *
1498 * Returns 0 for success, or error
1499 **/
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001500int i40e_del_mac_filter(struct i40e_vsi *vsi, const u8 *macaddr)
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001501{
Jacob Keller278e7d02016-10-05 09:30:37 -07001502 struct i40e_mac_filter *f;
1503 struct hlist_node *h;
Jacob Keller290d2552016-10-05 09:30:36 -07001504 bool found = false;
Jacob Keller278e7d02016-10-05 09:30:37 -07001505 int bkt;
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001506
Jacob Keller278e7d02016-10-05 09:30:37 -07001507 WARN(!spin_is_locked(&vsi->mac_filter_hash_lock),
1508 "Missing mac_filter_hash_lock\n");
1509 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Jacob Keller290d2552016-10-05 09:30:36 -07001510 if (ether_addr_equal(macaddr, f->macaddr)) {
1511 __i40e_del_filter(vsi, f);
1512 found = true;
1513 }
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001514 }
Jacob Keller290d2552016-10-05 09:30:36 -07001515
1516 if (found)
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001517 return 0;
Jacob Keller290d2552016-10-05 09:30:36 -07001518 else
1519 return -ENOENT;
Jacob Keller35ec2ff2016-10-05 09:30:33 -07001520}
1521
1522/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001523 * i40e_set_mac - NDO callback to set mac address
1524 * @netdev: network interface device structure
1525 * @p: pointer to an address structure
1526 *
1527 * Returns 0 on success, negative on failure
1528 **/
1529static int i40e_set_mac(struct net_device *netdev, void *p)
1530{
1531 struct i40e_netdev_priv *np = netdev_priv(netdev);
1532 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001533 struct i40e_pf *pf = vsi->back;
1534 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001535 struct sockaddr *addr = p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001536
1537 if (!is_valid_ether_addr(addr->sa_data))
1538 return -EADDRNOTAVAIL;
1539
Shannon Nelson30650cc2014-07-29 04:01:50 +00001540 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1541 netdev_info(netdev, "already using mac address %pM\n",
1542 addr->sa_data);
1543 return 0;
1544 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001545
Jacob Keller0da36b92017-04-19 09:25:55 -04001546 if (test_bit(__I40E_VSI_DOWN, vsi->back->state) ||
1547 test_bit(__I40E_RESET_RECOVERY_PENDING, vsi->back->state))
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001548 return -EADDRNOTAVAIL;
1549
Shannon Nelson30650cc2014-07-29 04:01:50 +00001550 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1551 netdev_info(netdev, "returning to hw mac address %pM\n",
1552 hw->mac.addr);
1553 else
1554 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1555
Jacob Keller278e7d02016-10-05 09:30:37 -07001556 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001557 i40e_del_mac_filter(vsi, netdev->dev_addr);
1558 i40e_add_mac_filter(vsi, addr->sa_data);
Jacob Keller278e7d02016-10-05 09:30:37 -07001559 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001560 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001561 if (vsi->type == I40E_VSI_MAIN) {
1562 i40e_status ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001563
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001564 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001565 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001566 addr->sa_data, NULL);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001567 if (ret)
1568 netdev_info(netdev, "Ignoring error from firmware on LAA update, status %s, AQ ret %s\n",
1569 i40e_stat_str(hw, ret),
1570 i40e_aq_str(hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001571 }
1572
Jesse Brandeburgc53934c2016-01-04 10:33:06 -08001573 /* schedule our worker thread which will take care of
1574 * applying the new filter changes
1575 */
1576 i40e_service_event_schedule(vsi->back);
1577 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001578}
1579
1580/**
1581 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1582 * @vsi: the VSI being setup
1583 * @ctxt: VSI context structure
1584 * @enabled_tc: Enabled TCs bitmap
1585 * @is_add: True if called before Add VSI
1586 *
1587 * Setup VSI queue mapping for enabled traffic classes.
1588 **/
1589static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1590 struct i40e_vsi_context *ctxt,
1591 u8 enabled_tc,
1592 bool is_add)
1593{
1594 struct i40e_pf *pf = vsi->back;
1595 u16 sections = 0;
1596 u8 netdev_tc = 0;
1597 u16 numtc = 0;
1598 u16 qcount;
1599 u8 offset;
1600 u16 qmap;
1601 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001602 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001603
1604 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1605 offset = 0;
1606
1607 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1608 /* Find numtc from enabled TC bitmap */
1609 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001610 if (enabled_tc & BIT(i)) /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001611 numtc++;
1612 }
1613 if (!numtc) {
1614 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1615 numtc = 1;
1616 }
1617 } else {
1618 /* At least TC0 is enabled in case of non-DCB case */
1619 numtc = 1;
1620 }
1621
1622 vsi->tc_config.numtc = numtc;
1623 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001624 /* Number of queues per enabled TC */
Catherine Sullivan7d644022016-05-16 10:26:41 -07001625 qcount = vsi->alloc_queue_pairs;
1626
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001627 num_tc_qps = qcount / numtc;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001628 num_tc_qps = min_t(int, num_tc_qps, i40e_pf_get_max_q_per_tc(pf));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001629
1630 /* Setup queue offset/count for all TCs for given VSI */
1631 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1632 /* See if the given TC is enabled for the given VSI */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001633 if (vsi->tc_config.enabled_tc & BIT(i)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001634 /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001635 int pow, num_qps;
1636
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001637 switch (vsi->type) {
1638 case I40E_VSI_MAIN:
Helin Zhangacd65442015-10-26 19:44:28 -04001639 qcount = min_t(int, pf->alloc_rss_size,
1640 num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001641 break;
1642 case I40E_VSI_FDIR:
1643 case I40E_VSI_SRIOV:
1644 case I40E_VSI_VMDQ2:
1645 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001646 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001647 WARN_ON(i != 0);
1648 break;
1649 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001650 vsi->tc_config.tc_info[i].qoffset = offset;
1651 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001652
Shannon Nelson1e200e42015-02-27 09:15:24 +00001653 /* find the next higher power-of-2 of num queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001654 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001655 pow = 0;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001656 while (num_qps && (BIT_ULL(pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001657 pow++;
1658 num_qps >>= 1;
1659 }
1660
1661 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1662 qmap =
1663 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1664 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1665
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001666 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001667 } else {
1668 /* TC is not enabled so set the offset to
1669 * default queue and allocate one queue
1670 * for the given TC.
1671 */
1672 vsi->tc_config.tc_info[i].qoffset = 0;
1673 vsi->tc_config.tc_info[i].qcount = 1;
1674 vsi->tc_config.tc_info[i].netdev_tc = 0;
1675
1676 qmap = 0;
1677 }
1678 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1679 }
1680
1681 /* Set actual Tx/Rx queue pairs */
1682 vsi->num_queue_pairs = offset;
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001683 if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) {
1684 if (vsi->req_queue_pairs > 0)
1685 vsi->num_queue_pairs = vsi->req_queue_pairs;
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001686 else if (pf->flags & I40E_FLAG_MSIX_ENABLED)
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001687 vsi->num_queue_pairs = pf->num_lan_msix;
1688 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001689
1690 /* Scheduler section valid can only be set for ADD VSI */
1691 if (is_add) {
1692 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1693
1694 ctxt->info.up_enable_bits = enabled_tc;
1695 }
1696 if (vsi->type == I40E_VSI_SRIOV) {
1697 ctxt->info.mapping_flags |=
1698 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1699 for (i = 0; i < vsi->num_queue_pairs; i++)
1700 ctxt->info.queue_mapping[i] =
1701 cpu_to_le16(vsi->base_queue + i);
1702 } else {
1703 ctxt->info.mapping_flags |=
1704 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1705 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1706 }
1707 ctxt->info.valid_sections |= cpu_to_le16(sections);
1708}
1709
1710/**
Jacob Keller6622f5c2016-10-05 09:30:32 -07001711 * i40e_addr_sync - Callback for dev_(mc|uc)_sync to add address
1712 * @netdev: the netdevice
1713 * @addr: address to add
1714 *
1715 * Called by __dev_(mc|uc)_sync when an address needs to be added. We call
1716 * __dev_(uc|mc)_sync from .set_rx_mode and guarantee to hold the hash lock.
1717 */
1718static int i40e_addr_sync(struct net_device *netdev, const u8 *addr)
1719{
1720 struct i40e_netdev_priv *np = netdev_priv(netdev);
1721 struct i40e_vsi *vsi = np->vsi;
Jacob Keller6622f5c2016-10-05 09:30:32 -07001722
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001723 if (i40e_add_mac_filter(vsi, addr))
Jacob Keller6622f5c2016-10-05 09:30:32 -07001724 return 0;
1725 else
1726 return -ENOMEM;
1727}
1728
1729/**
1730 * i40e_addr_unsync - Callback for dev_(mc|uc)_sync to remove address
1731 * @netdev: the netdevice
1732 * @addr: address to add
1733 *
1734 * Called by __dev_(mc|uc)_sync when an address needs to be removed. We call
1735 * __dev_(uc|mc)_sync from .set_rx_mode and guarantee to hold the hash lock.
1736 */
1737static int i40e_addr_unsync(struct net_device *netdev, const u8 *addr)
1738{
1739 struct i40e_netdev_priv *np = netdev_priv(netdev);
1740 struct i40e_vsi *vsi = np->vsi;
1741
Jacob Kellerfeffdbe2016-11-11 12:39:35 -08001742 i40e_del_mac_filter(vsi, addr);
Jacob Keller6622f5c2016-10-05 09:30:32 -07001743
1744 return 0;
1745}
1746
1747/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001748 * i40e_set_rx_mode - NDO callback to set the netdev filters
1749 * @netdev: network interface device structure
1750 **/
1751static void i40e_set_rx_mode(struct net_device *netdev)
1752{
1753 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001754 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001755
Jacob Keller278e7d02016-10-05 09:30:37 -07001756 spin_lock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -04001757
Jacob Keller6622f5c2016-10-05 09:30:32 -07001758 __dev_uc_sync(netdev, i40e_addr_sync, i40e_addr_unsync);
1759 __dev_mc_sync(netdev, i40e_addr_sync, i40e_addr_unsync);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001760
Jacob Keller278e7d02016-10-05 09:30:37 -07001761 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001762
1763 /* check for other flag changes */
1764 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1765 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1766 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1767 }
Jesse Brandeburgc53934c2016-01-04 10:33:06 -08001768
1769 /* schedule our worker thread which will take care of
1770 * applying the new filter changes
1771 */
1772 i40e_service_event_schedule(vsi->back);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001773}
1774
1775/**
Jacob Keller671889e2016-12-02 12:33:00 -08001776 * i40e_undo_del_filter_entries - Undo the changes made to MAC filter entries
Jacob Keller4a2ce272016-10-05 09:30:38 -07001777 * @vsi: Pointer to VSI struct
Kiran Patil21659032015-09-30 14:09:03 -04001778 * @from: Pointer to list which contains MAC filter entries - changes to
1779 * those entries needs to be undone.
1780 *
Jacob Keller671889e2016-12-02 12:33:00 -08001781 * MAC filter entries from this list were slated for deletion.
Kiran Patil21659032015-09-30 14:09:03 -04001782 **/
Jacob Keller671889e2016-12-02 12:33:00 -08001783static void i40e_undo_del_filter_entries(struct i40e_vsi *vsi,
1784 struct hlist_head *from)
Kiran Patil21659032015-09-30 14:09:03 -04001785{
Jacob Keller278e7d02016-10-05 09:30:37 -07001786 struct i40e_mac_filter *f;
1787 struct hlist_node *h;
Kiran Patil21659032015-09-30 14:09:03 -04001788
Jacob Keller278e7d02016-10-05 09:30:37 -07001789 hlist_for_each_entry_safe(f, h, from, hlist) {
1790 u64 key = i40e_addr_to_hkey(f->macaddr);
1791
Kiran Patil21659032015-09-30 14:09:03 -04001792 /* Move the element back into MAC filter list*/
Jacob Keller278e7d02016-10-05 09:30:37 -07001793 hlist_del(&f->hlist);
1794 hash_add(vsi->mac_filter_hash, &f->hlist, key);
Kiran Patil21659032015-09-30 14:09:03 -04001795 }
1796}
1797
1798/**
Jacob Keller671889e2016-12-02 12:33:00 -08001799 * i40e_undo_add_filter_entries - Undo the changes made to MAC filter entries
1800 * @vsi: Pointer to vsi struct
1801 * @from: Pointer to list which contains MAC filter entries - changes to
1802 * those entries needs to be undone.
1803 *
1804 * MAC filter entries from this list were slated for addition.
1805 **/
1806static void i40e_undo_add_filter_entries(struct i40e_vsi *vsi,
1807 struct hlist_head *from)
1808{
1809 struct i40e_new_mac_filter *new;
1810 struct hlist_node *h;
1811
1812 hlist_for_each_entry_safe(new, h, from, hlist) {
1813 /* We can simply free the wrapper structure */
1814 hlist_del(&new->hlist);
1815 kfree(new);
1816 }
1817}
1818
1819/**
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001820 * i40e_next_entry - Get the next non-broadcast filter from a list
Jacob Keller671889e2016-12-02 12:33:00 -08001821 * @next: pointer to filter in list
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001822 *
1823 * Returns the next non-broadcast filter in the list. Required so that we
1824 * ignore broadcast filters within the list, since these are not handled via
1825 * the normal firmware update path.
1826 */
Jacob Keller671889e2016-12-02 12:33:00 -08001827static
1828struct i40e_new_mac_filter *i40e_next_filter(struct i40e_new_mac_filter *next)
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001829{
Jacob Keller584a8872017-03-07 15:17:52 -08001830 hlist_for_each_entry_continue(next, hlist) {
1831 if (!is_broadcast_ether_addr(next->f->macaddr))
1832 return next;
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001833 }
1834
Jacob Keller584a8872017-03-07 15:17:52 -08001835 return NULL;
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001836}
1837
1838/**
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001839 * i40e_update_filter_state - Update filter state based on return data
1840 * from firmware
1841 * @count: Number of filters added
1842 * @add_list: return data from fw
1843 * @head: pointer to first filter in current batch
Kiran Patil21659032015-09-30 14:09:03 -04001844 *
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001845 * MAC filter entries from list were slated to be added to device. Returns
1846 * number of successful filters. Note that 0 does NOT mean success!
Kiran Patil21659032015-09-30 14:09:03 -04001847 **/
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001848static int
1849i40e_update_filter_state(int count,
1850 struct i40e_aqc_add_macvlan_element_data *add_list,
Jacob Keller671889e2016-12-02 12:33:00 -08001851 struct i40e_new_mac_filter *add_head)
Kiran Patil21659032015-09-30 14:09:03 -04001852{
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001853 int retval = 0;
1854 int i;
Kiran Patil21659032015-09-30 14:09:03 -04001855
Jacob Kellerac9e2392016-11-11 12:39:27 -08001856 for (i = 0; i < count; i++) {
1857 /* Always check status of each filter. We don't need to check
1858 * the firmware return status because we pre-set the filter
1859 * status to I40E_AQC_MM_ERR_NO_RES when sending the filter
1860 * request to the adminq. Thus, if it no longer matches then
1861 * we know the filter is active.
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001862 */
Jacob Kellerac9e2392016-11-11 12:39:27 -08001863 if (add_list[i].match_method == I40E_AQC_MM_ERR_NO_RES) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001864 add_head->state = I40E_FILTER_FAILED;
Jacob Kellerac9e2392016-11-11 12:39:27 -08001865 } else {
1866 add_head->state = I40E_FILTER_ACTIVE;
1867 retval++;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001868 }
Jacob Kellerac9e2392016-11-11 12:39:27 -08001869
Jacob Kellerd88d40b2016-12-02 12:32:59 -08001870 add_head = i40e_next_filter(add_head);
1871 if (!add_head)
1872 break;
Kiran Patil21659032015-09-30 14:09:03 -04001873 }
Jacob Kellerac9e2392016-11-11 12:39:27 -08001874
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001875 return retval;
Kiran Patil21659032015-09-30 14:09:03 -04001876}
1877
1878/**
Jacob Keller00936312016-10-05 09:30:41 -07001879 * i40e_aqc_del_filters - Request firmware to delete a set of filters
1880 * @vsi: ptr to the VSI
1881 * @vsi_name: name to display in messages
1882 * @list: the list of filters to send to firmware
1883 * @num_del: the number of filters to delete
1884 * @retval: Set to -EIO on failure to delete
1885 *
1886 * Send a request to firmware via AdminQ to delete a set of filters. Uses
1887 * *retval instead of a return value so that success does not force ret_val to
1888 * be set to 0. This ensures that a sequence of calls to this function
1889 * preserve the previous value of *retval on successful delete.
1890 */
1891static
1892void i40e_aqc_del_filters(struct i40e_vsi *vsi, const char *vsi_name,
1893 struct i40e_aqc_remove_macvlan_element_data *list,
1894 int num_del, int *retval)
1895{
1896 struct i40e_hw *hw = &vsi->back->hw;
1897 i40e_status aq_ret;
1898 int aq_err;
1899
1900 aq_ret = i40e_aq_remove_macvlan(hw, vsi->seid, list, num_del, NULL);
1901 aq_err = hw->aq.asq_last_status;
1902
1903 /* Explicitly ignore and do not report when firmware returns ENOENT */
1904 if (aq_ret && !(aq_err == I40E_AQ_RC_ENOENT)) {
1905 *retval = -EIO;
1906 dev_info(&vsi->back->pdev->dev,
1907 "ignoring delete macvlan error on %s, err %s, aq_err %s\n",
1908 vsi_name, i40e_stat_str(hw, aq_ret),
1909 i40e_aq_str(hw, aq_err));
1910 }
1911}
1912
1913/**
1914 * i40e_aqc_add_filters - Request firmware to add a set of filters
1915 * @vsi: ptr to the VSI
1916 * @vsi_name: name to display in messages
1917 * @list: the list of filters to send to firmware
1918 * @add_head: Position in the add hlist
1919 * @num_add: the number of filters to add
1920 * @promisc_change: set to true on exit if promiscuous mode was forced on
1921 *
1922 * Send a request to firmware via AdminQ to add a chunk of filters. Will set
1923 * promisc_changed to true if the firmware has run out of space for more
1924 * filters.
1925 */
1926static
1927void i40e_aqc_add_filters(struct i40e_vsi *vsi, const char *vsi_name,
1928 struct i40e_aqc_add_macvlan_element_data *list,
Jacob Keller671889e2016-12-02 12:33:00 -08001929 struct i40e_new_mac_filter *add_head,
Jacob Keller00936312016-10-05 09:30:41 -07001930 int num_add, bool *promisc_changed)
1931{
1932 struct i40e_hw *hw = &vsi->back->hw;
Jacob Keller00936312016-10-05 09:30:41 -07001933 int aq_err, fcnt;
1934
Jacob Kellerac9e2392016-11-11 12:39:27 -08001935 i40e_aq_add_macvlan(hw, vsi->seid, list, num_add, NULL);
Jacob Keller00936312016-10-05 09:30:41 -07001936 aq_err = hw->aq.asq_last_status;
Jacob Kellerac9e2392016-11-11 12:39:27 -08001937 fcnt = i40e_update_filter_state(num_add, list, add_head);
Jacob Keller00936312016-10-05 09:30:41 -07001938
1939 if (fcnt != num_add) {
1940 *promisc_changed = true;
Jacob Keller0da36b92017-04-19 09:25:55 -04001941 set_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state);
Jacob Keller00936312016-10-05 09:30:41 -07001942 dev_warn(&vsi->back->pdev->dev,
1943 "Error %s adding RX filters on %s, promiscuous mode forced on\n",
1944 i40e_aq_str(hw, aq_err),
1945 vsi_name);
1946 }
1947}
1948
1949/**
Jacob Keller435c0842016-11-08 13:05:10 -08001950 * i40e_aqc_broadcast_filter - Set promiscuous broadcast flags
1951 * @vsi: pointer to the VSI
1952 * @f: filter data
1953 *
1954 * This function sets or clears the promiscuous broadcast flags for VLAN
1955 * filters in order to properly receive broadcast frames. Assumes that only
1956 * broadcast filters are passed.
Jacob Keller671889e2016-12-02 12:33:00 -08001957 *
1958 * Returns status indicating success or failure;
Jacob Keller435c0842016-11-08 13:05:10 -08001959 **/
Jacob Keller671889e2016-12-02 12:33:00 -08001960static i40e_status
1961i40e_aqc_broadcast_filter(struct i40e_vsi *vsi, const char *vsi_name,
1962 struct i40e_mac_filter *f)
Jacob Keller435c0842016-11-08 13:05:10 -08001963{
1964 bool enable = f->state == I40E_FILTER_NEW;
1965 struct i40e_hw *hw = &vsi->back->hw;
1966 i40e_status aq_ret;
1967
1968 if (f->vlan == I40E_VLAN_ANY) {
1969 aq_ret = i40e_aq_set_vsi_broadcast(hw,
1970 vsi->seid,
1971 enable,
1972 NULL);
1973 } else {
1974 aq_ret = i40e_aq_set_vsi_bc_promisc_on_vlan(hw,
1975 vsi->seid,
1976 enable,
1977 f->vlan,
1978 NULL);
1979 }
1980
Jacob Keller671889e2016-12-02 12:33:00 -08001981 if (aq_ret)
Jacob Keller435c0842016-11-08 13:05:10 -08001982 dev_warn(&vsi->back->pdev->dev,
1983 "Error %s setting broadcast promiscuous mode on %s\n",
1984 i40e_aq_str(hw, hw->aq.asq_last_status),
1985 vsi_name);
Jacob Keller671889e2016-12-02 12:33:00 -08001986
1987 return aq_ret;
Jacob Keller435c0842016-11-08 13:05:10 -08001988}
1989
1990/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001991 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1992 * @vsi: ptr to the VSI
1993 *
1994 * Push any outstanding VSI filter changes through the AdminQ.
1995 *
1996 * Returns 0 or error value
1997 **/
Jesse Brandeburg17652c62015-11-05 17:01:02 -08001998int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001999{
Jacob Keller278e7d02016-10-05 09:30:37 -07002000 struct hlist_head tmp_add_list, tmp_del_list;
Jacob Keller671889e2016-12-02 12:33:00 -08002001 struct i40e_mac_filter *f;
2002 struct i40e_new_mac_filter *new, *add_head = NULL;
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002003 struct i40e_hw *hw = &vsi->back->hw;
Jacob Keller38326212016-11-11 12:39:26 -08002004 unsigned int failed_filters = 0;
Alan Brady84f5ca62016-10-05 09:30:39 -07002005 unsigned int vlan_filters = 0;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002006 bool promisc_changed = false;
Shannon Nelson2d1de822016-05-16 10:26:44 -07002007 char vsi_name[16] = "PF";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002008 int filter_list_len = 0;
Mitch Williamsea02e902015-11-09 15:35:50 -08002009 i40e_status aq_ret = 0;
Alan Brady84f5ca62016-10-05 09:30:39 -07002010 u32 changed_flags = 0;
Jacob Keller278e7d02016-10-05 09:30:37 -07002011 struct hlist_node *h;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002012 struct i40e_pf *pf;
2013 int num_add = 0;
2014 int num_del = 0;
Alan Brady84f5ca62016-10-05 09:30:39 -07002015 int retval = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002016 u16 cmd_flags;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002017 int list_size;
Jacob Keller278e7d02016-10-05 09:30:37 -07002018 int bkt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002019
2020 /* empty array typed pointers, kcalloc later */
2021 struct i40e_aqc_add_macvlan_element_data *add_list;
2022 struct i40e_aqc_remove_macvlan_element_data *del_list;
2023
Jacob Keller0da36b92017-04-19 09:25:55 -04002024 while (test_and_set_bit(__I40E_VSI_SYNCING_FILTERS, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002025 usleep_range(1000, 2000);
2026 pf = vsi->back;
2027
2028 if (vsi->netdev) {
2029 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
2030 vsi->current_netdev_flags = vsi->netdev->flags;
2031 }
2032
Jacob Keller278e7d02016-10-05 09:30:37 -07002033 INIT_HLIST_HEAD(&tmp_add_list);
2034 INIT_HLIST_HEAD(&tmp_del_list);
Kiran Patil21659032015-09-30 14:09:03 -04002035
Shannon Nelson2d1de822016-05-16 10:26:44 -07002036 if (vsi->type == I40E_VSI_SRIOV)
2037 snprintf(vsi_name, sizeof(vsi_name) - 1, "VF %d", vsi->vf_id);
2038 else if (vsi->type != I40E_VSI_MAIN)
2039 snprintf(vsi_name, sizeof(vsi_name) - 1, "vsi %d", vsi->seid);
2040
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002041 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
2042 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
2043
Jacob Keller278e7d02016-10-05 09:30:37 -07002044 spin_lock_bh(&vsi->mac_filter_hash_lock);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002045 /* Create a list of filters to delete. */
Jacob Keller278e7d02016-10-05 09:30:37 -07002046 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002047 if (f->state == I40E_FILTER_REMOVE) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002048 /* Move the element into temporary del_list */
Jacob Keller278e7d02016-10-05 09:30:37 -07002049 hash_del(&f->hlist);
2050 hlist_add_head(&f->hlist, &tmp_del_list);
Alan Brady84f5ca62016-10-05 09:30:39 -07002051
2052 /* Avoid counting removed filters */
2053 continue;
Kiran Patil21659032015-09-30 14:09:03 -04002054 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002055 if (f->state == I40E_FILTER_NEW) {
Jacob Keller671889e2016-12-02 12:33:00 -08002056 /* Create a temporary i40e_new_mac_filter */
2057 new = kzalloc(sizeof(*new), GFP_ATOMIC);
2058 if (!new)
2059 goto err_no_memory_locked;
2060
2061 /* Store pointer to the real filter */
2062 new->f = f;
2063 new->state = f->state;
2064
2065 /* Add it to the hash list */
2066 hlist_add_head(&new->hlist, &tmp_add_list);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002067 }
Alan Brady84f5ca62016-10-05 09:30:39 -07002068
Jacob Keller489a3262016-11-11 12:39:31 -08002069 /* Count the number of active (current and new) VLAN
2070 * filters we have now. Does not count filters which
2071 * are marked for deletion.
Alan Brady84f5ca62016-10-05 09:30:39 -07002072 */
2073 if (f->vlan > 0)
2074 vlan_filters++;
Alan Brady84f5ca62016-10-05 09:30:39 -07002075 }
2076
Jacob Keller489a3262016-11-11 12:39:31 -08002077 retval = i40e_correct_mac_vlan_filters(vsi,
2078 &tmp_add_list,
2079 &tmp_del_list,
2080 vlan_filters);
2081 if (retval)
2082 goto err_no_memory_locked;
Alan Brady84f5ca62016-10-05 09:30:39 -07002083
Jacob Keller278e7d02016-10-05 09:30:37 -07002084 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -04002085 }
2086
2087 /* Now process 'del_list' outside the lock */
Jacob Keller278e7d02016-10-05 09:30:37 -07002088 if (!hlist_empty(&tmp_del_list)) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002089 filter_list_len = hw->aq.asq_buf_size /
Kiran Patil21659032015-09-30 14:09:03 -04002090 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002091 list_size = filter_list_len *
Shannon Nelsonf1199992015-11-19 11:34:23 -08002092 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002093 del_list = kzalloc(list_size, GFP_ATOMIC);
Jacob Keller4a2ce272016-10-05 09:30:38 -07002094 if (!del_list)
2095 goto err_no_memory;
Kiran Patil21659032015-09-30 14:09:03 -04002096
Jacob Keller278e7d02016-10-05 09:30:37 -07002097 hlist_for_each_entry_safe(f, h, &tmp_del_list, hlist) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002098 cmd_flags = 0;
2099
Jacob Keller435c0842016-11-08 13:05:10 -08002100 /* handle broadcast filters by updating the broadcast
Jacob Kellerd88d40b2016-12-02 12:32:59 -08002101 * promiscuous flag and release filter list.
Jacob Keller435c0842016-11-08 13:05:10 -08002102 */
2103 if (is_broadcast_ether_addr(f->macaddr)) {
2104 i40e_aqc_broadcast_filter(vsi, vsi_name, f);
2105
2106 hlist_del(&f->hlist);
2107 kfree(f);
2108 continue;
2109 }
2110
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002111 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00002112 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002113 if (f->vlan == I40E_VLAN_ANY) {
2114 del_list[num_del].vlan_tag = 0;
Alan Bradya6cb9142016-09-06 18:05:07 -07002115 cmd_flags |= I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002116 } else {
2117 del_list[num_del].vlan_tag =
2118 cpu_to_le16((u16)(f->vlan));
2119 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002120
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002121 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
2122 del_list[num_del].flags = cmd_flags;
2123 num_del++;
2124
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002125 /* flush a full buffer */
2126 if (num_del == filter_list_len) {
Jacob Keller00936312016-10-05 09:30:41 -07002127 i40e_aqc_del_filters(vsi, vsi_name, del_list,
2128 num_del, &retval);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002129 memset(del_list, 0, list_size);
Jacob Keller00936312016-10-05 09:30:41 -07002130 num_del = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002131 }
Kiran Patil21659032015-09-30 14:09:03 -04002132 /* Release memory for MAC filter entries which were
2133 * synced up with HW.
2134 */
Jacob Keller278e7d02016-10-05 09:30:37 -07002135 hlist_del(&f->hlist);
Kiran Patil21659032015-09-30 14:09:03 -04002136 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002137 }
Kiran Patil21659032015-09-30 14:09:03 -04002138
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002139 if (num_del) {
Jacob Keller00936312016-10-05 09:30:41 -07002140 i40e_aqc_del_filters(vsi, vsi_name, del_list,
2141 num_del, &retval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002142 }
2143
2144 kfree(del_list);
2145 del_list = NULL;
Kiran Patil21659032015-09-30 14:09:03 -04002146 }
2147
Jacob Keller278e7d02016-10-05 09:30:37 -07002148 if (!hlist_empty(&tmp_add_list)) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002149 /* Do all the adds now. */
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002150 filter_list_len = hw->aq.asq_buf_size /
Shannon Nelsonf1199992015-11-19 11:34:23 -08002151 sizeof(struct i40e_aqc_add_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002152 list_size = filter_list_len *
2153 sizeof(struct i40e_aqc_add_macvlan_element_data);
2154 add_list = kzalloc(list_size, GFP_ATOMIC);
Jacob Keller4a2ce272016-10-05 09:30:38 -07002155 if (!add_list)
2156 goto err_no_memory;
2157
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002158 num_add = 0;
Jacob Keller671889e2016-12-02 12:33:00 -08002159 hlist_for_each_entry_safe(new, h, &tmp_add_list, hlist) {
Jacob Kellerd19cb642017-04-21 13:38:05 -07002160 if (test_bit(__I40E_VSI_OVERFLOW_PROMISC,
Jacob Keller0da36b92017-04-19 09:25:55 -04002161 vsi->state)) {
Jacob Keller671889e2016-12-02 12:33:00 -08002162 new->state = I40E_FILTER_FAILED;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002163 continue;
2164 }
Jacob Keller435c0842016-11-08 13:05:10 -08002165
2166 /* handle broadcast filters by updating the broadcast
2167 * promiscuous flag instead of adding a MAC filter.
2168 */
Jacob Keller671889e2016-12-02 12:33:00 -08002169 if (is_broadcast_ether_addr(new->f->macaddr)) {
2170 if (i40e_aqc_broadcast_filter(vsi, vsi_name,
2171 new->f))
2172 new->state = I40E_FILTER_FAILED;
2173 else
2174 new->state = I40E_FILTER_ACTIVE;
Jacob Keller435c0842016-11-08 13:05:10 -08002175 continue;
2176 }
2177
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002178 /* add to add array */
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002179 if (num_add == 0)
Jacob Keller671889e2016-12-02 12:33:00 -08002180 add_head = new;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002181 cmd_flags = 0;
Jacob Keller671889e2016-12-02 12:33:00 -08002182 ether_addr_copy(add_list[num_add].mac_addr,
2183 new->f->macaddr);
2184 if (new->f->vlan == I40E_VLAN_ANY) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002185 add_list[num_add].vlan_tag = 0;
2186 cmd_flags |= I40E_AQC_MACVLAN_ADD_IGNORE_VLAN;
2187 } else {
2188 add_list[num_add].vlan_tag =
Jacob Keller671889e2016-12-02 12:33:00 -08002189 cpu_to_le16((u16)(new->f->vlan));
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002190 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002191 add_list[num_add].queue_number = 0;
Jacob Kellerac9e2392016-11-11 12:39:27 -08002192 /* set invalid match method for later detection */
Keller, Jacob E0266ac42016-12-09 13:39:21 -08002193 add_list[num_add].match_method = I40E_AQC_MM_ERR_NO_RES;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002194 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002195 add_list[num_add].flags = cpu_to_le16(cmd_flags);
2196 num_add++;
2197
2198 /* flush a full buffer */
2199 if (num_add == filter_list_len) {
Jacob Keller00936312016-10-05 09:30:41 -07002200 i40e_aqc_add_filters(vsi, vsi_name, add_list,
2201 add_head, num_add,
2202 &promisc_changed);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002203 memset(add_list, 0, list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002204 num_add = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002205 }
2206 }
2207 if (num_add) {
Jacob Keller00936312016-10-05 09:30:41 -07002208 i40e_aqc_add_filters(vsi, vsi_name, add_list, add_head,
2209 num_add, &promisc_changed);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002210 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002211 /* Now move all of the filters from the temp add list back to
2212 * the VSI's list.
2213 */
Jacob Keller278e7d02016-10-05 09:30:37 -07002214 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller671889e2016-12-02 12:33:00 -08002215 hlist_for_each_entry_safe(new, h, &tmp_add_list, hlist) {
2216 /* Only update the state if we're still NEW */
2217 if (new->f->state == I40E_FILTER_NEW)
2218 new->f->state = new->state;
2219 hlist_del(&new->hlist);
2220 kfree(new);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002221 }
Jacob Keller278e7d02016-10-05 09:30:37 -07002222 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002223 kfree(add_list);
2224 add_list = NULL;
2225 }
2226
Jacob Keller38326212016-11-11 12:39:26 -08002227 /* Determine the number of active and failed filters. */
2228 spin_lock_bh(&vsi->mac_filter_hash_lock);
2229 vsi->active_filters = 0;
2230 hash_for_each(vsi->mac_filter_hash, bkt, f, hlist) {
2231 if (f->state == I40E_FILTER_ACTIVE)
2232 vsi->active_filters++;
2233 else if (f->state == I40E_FILTER_FAILED)
2234 failed_filters++;
2235 }
2236 spin_unlock_bh(&vsi->mac_filter_hash_lock);
2237
2238 /* If promiscuous mode has changed, we need to calculate a new
2239 * threshold for when we are safe to exit
2240 */
2241 if (promisc_changed)
2242 vsi->promisc_threshold = (vsi->active_filters * 3) / 4;
2243
2244 /* Check if we are able to exit overflow promiscuous mode. We can
2245 * safely exit if we didn't just enter, we no longer have any failed
2246 * filters, and we have reduced filters below the threshold value.
2247 */
Jacob Keller0da36b92017-04-19 09:25:55 -04002248 if (test_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state) &&
Jacob Keller38326212016-11-11 12:39:26 -08002249 !promisc_changed && !failed_filters &&
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002250 (vsi->active_filters < vsi->promisc_threshold)) {
Jacob Keller38326212016-11-11 12:39:26 -08002251 dev_info(&pf->pdev->dev,
2252 "filter logjam cleared on %s, leaving overflow promiscuous mode\n",
2253 vsi_name);
Jacob Keller0da36b92017-04-19 09:25:55 -04002254 clear_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state);
Jacob Keller38326212016-11-11 12:39:26 -08002255 promisc_changed = true;
2256 vsi->promisc_threshold = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002257 }
2258
Anjali Singhai Jaina856b5c2016-04-13 03:08:23 -07002259 /* if the VF is not trusted do not do promisc */
2260 if ((vsi->type == I40E_VSI_SRIOV) && !pf->vf[vsi->vf_id].trusted) {
Jacob Keller0da36b92017-04-19 09:25:55 -04002261 clear_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state);
Anjali Singhai Jaina856b5c2016-04-13 03:08:23 -07002262 goto out;
2263 }
2264
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002265 /* check for changes in promiscuous modes */
2266 if (changed_flags & IFF_ALLMULTI) {
2267 bool cur_multipromisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002268
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002269 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Mitch Williamsea02e902015-11-09 15:35:50 -08002270 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
2271 vsi->seid,
2272 cur_multipromisc,
2273 NULL);
2274 if (aq_ret) {
2275 retval = i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002276 hw->aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002277 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002278 "set multi promisc failed on %s, err %s aq_err %s\n",
2279 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002280 i40e_stat_str(hw, aq_ret),
2281 i40e_aq_str(hw, hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002282 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002283 }
Alan Bradye5887232017-06-07 05:43:10 -04002284
2285 if ((changed_flags & IFF_PROMISC) || promisc_changed) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002286 bool cur_promisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002287
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002288 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
Jacob Kellerd19cb642017-04-21 13:38:05 -07002289 test_bit(__I40E_VSI_OVERFLOW_PROMISC,
Jacob Keller0da36b92017-04-19 09:25:55 -04002290 vsi->state));
Anjali Singhai Jain6784ed52016-01-15 14:33:13 -08002291 if ((vsi->type == I40E_VSI_MAIN) &&
2292 (pf->lan_veb != I40E_NO_VEB) &&
2293 !(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002294 /* set defport ON for Main VSI instead of true promisc
2295 * this way we will get all unicast/multicast and VLAN
2296 * promisc behavior but will not get VF or VMDq traffic
2297 * replicated on the Main VSI.
2298 */
2299 if (pf->cur_promisc != cur_promisc) {
2300 pf->cur_promisc = cur_promisc;
Mitch Williams5bc16032016-05-16 10:26:43 -07002301 if (cur_promisc)
2302 aq_ret =
2303 i40e_aq_set_default_vsi(hw,
2304 vsi->seid,
2305 NULL);
2306 else
2307 aq_ret =
2308 i40e_aq_clear_default_vsi(hw,
2309 vsi->seid,
2310 NULL);
2311 if (aq_ret) {
2312 retval = i40e_aq_rc_to_posix(aq_ret,
2313 hw->aq.asq_last_status);
2314 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002315 "Set default VSI failed on %s, err %s, aq_err %s\n",
2316 vsi_name,
Mitch Williams5bc16032016-05-16 10:26:43 -07002317 i40e_stat_str(hw, aq_ret),
2318 i40e_aq_str(hw,
2319 hw->aq.asq_last_status));
2320 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002321 }
2322 } else {
Mitch Williamsea02e902015-11-09 15:35:50 -08002323 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002324 hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002325 vsi->seid,
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07002326 cur_promisc, NULL,
2327 true);
Mitch Williamsea02e902015-11-09 15:35:50 -08002328 if (aq_ret) {
2329 retval =
2330 i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002331 hw->aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002332 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002333 "set unicast promisc failed on %s, err %s, aq_err %s\n",
2334 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002335 i40e_stat_str(hw, aq_ret),
2336 i40e_aq_str(hw,
2337 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002338 }
2339 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002340 hw,
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002341 vsi->seid,
2342 cur_promisc, NULL);
Mitch Williamsea02e902015-11-09 15:35:50 -08002343 if (aq_ret) {
2344 retval =
2345 i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002346 hw->aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002347 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002348 "set multicast promisc failed on %s, err %s, aq_err %s\n",
2349 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002350 i40e_stat_str(hw, aq_ret),
2351 i40e_aq_str(hw,
2352 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002353 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002354 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002355 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
2356 vsi->seid,
2357 cur_promisc, NULL);
2358 if (aq_ret) {
2359 retval = i40e_aq_rc_to_posix(aq_ret,
2360 pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00002361 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002362 "set brdcast promisc failed, err %s, aq_err %s\n",
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002363 i40e_stat_str(hw, aq_ret),
2364 i40e_aq_str(hw,
2365 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002366 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002367 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002368out:
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08002369 /* if something went wrong then set the changed flag so we try again */
2370 if (retval)
2371 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
2372
Jacob Keller0da36b92017-04-19 09:25:55 -04002373 clear_bit(__I40E_VSI_SYNCING_FILTERS, vsi->state);
Mitch Williamsea02e902015-11-09 15:35:50 -08002374 return retval;
Jacob Keller4a2ce272016-10-05 09:30:38 -07002375
2376err_no_memory:
2377 /* Restore elements on the temporary add and delete lists */
2378 spin_lock_bh(&vsi->mac_filter_hash_lock);
Alan Brady84f5ca62016-10-05 09:30:39 -07002379err_no_memory_locked:
Jacob Keller671889e2016-12-02 12:33:00 -08002380 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
2381 i40e_undo_add_filter_entries(vsi, &tmp_add_list);
Jacob Keller4a2ce272016-10-05 09:30:38 -07002382 spin_unlock_bh(&vsi->mac_filter_hash_lock);
2383
2384 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
Jacob Keller0da36b92017-04-19 09:25:55 -04002385 clear_bit(__I40E_VSI_SYNCING_FILTERS, vsi->state);
Jacob Keller4a2ce272016-10-05 09:30:38 -07002386 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002387}
2388
2389/**
2390 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
2391 * @pf: board private structure
2392 **/
2393static void i40e_sync_filters_subtask(struct i40e_pf *pf)
2394{
2395 int v;
2396
2397 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
2398 return;
2399 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
2400
Mitch Williams505682c2014-05-20 08:01:37 +00002401 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002402 if (pf->vsi[v] &&
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002403 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) {
2404 int ret = i40e_sync_vsi_filters(pf->vsi[v]);
2405
2406 if (ret) {
2407 /* come back and try again later */
2408 pf->flags |= I40E_FLAG_FILTER_SYNC;
2409 break;
2410 }
2411 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002412 }
2413}
2414
2415/**
Björn Töpel0c8493d2017-05-24 07:55:34 +02002416 * i40e_max_xdp_frame_size - returns the maximum allowed frame size for XDP
2417 * @vsi: the vsi
2418 **/
2419static int i40e_max_xdp_frame_size(struct i40e_vsi *vsi)
2420{
2421 if (PAGE_SIZE >= 8192 || (vsi->back->flags & I40E_FLAG_LEGACY_RX))
2422 return I40E_RXBUFFER_2048;
2423 else
2424 return I40E_RXBUFFER_3072;
2425}
2426
2427/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002428 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
2429 * @netdev: network interface device structure
2430 * @new_mtu: new value for maximum frame size
2431 *
2432 * Returns 0 on success, negative on failure
2433 **/
2434static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
2435{
2436 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002437 struct i40e_vsi *vsi = np->vsi;
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08002438 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002439
Björn Töpel0c8493d2017-05-24 07:55:34 +02002440 if (i40e_enabled_xdp_vsi(vsi)) {
2441 int frame_size = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
2442
2443 if (frame_size > i40e_max_xdp_frame_size(vsi))
2444 return -EINVAL;
2445 }
2446
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002447 netdev_info(netdev, "changing MTU from %d to %d\n",
2448 netdev->mtu, new_mtu);
2449 netdev->mtu = new_mtu;
2450 if (netif_running(netdev))
2451 i40e_vsi_reinit_locked(vsi);
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08002452 pf->flags |= (I40E_FLAG_SERVICE_CLIENT_REQUESTED |
2453 I40E_FLAG_CLIENT_L2_CHANGE);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002454 return 0;
2455}
2456
2457/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002458 * i40e_ioctl - Access the hwtstamp interface
2459 * @netdev: network interface device structure
2460 * @ifr: interface request data
2461 * @cmd: ioctl command
2462 **/
2463int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2464{
2465 struct i40e_netdev_priv *np = netdev_priv(netdev);
2466 struct i40e_pf *pf = np->vsi->back;
2467
2468 switch (cmd) {
2469 case SIOCGHWTSTAMP:
2470 return i40e_ptp_get_ts_config(pf, ifr);
2471 case SIOCSHWTSTAMP:
2472 return i40e_ptp_set_ts_config(pf, ifr);
2473 default:
2474 return -EOPNOTSUPP;
2475 }
2476}
2477
2478/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002479 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
2480 * @vsi: the vsi being adjusted
2481 **/
2482void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
2483{
2484 struct i40e_vsi_context ctxt;
2485 i40e_status ret;
2486
2487 if ((vsi->info.valid_sections &
2488 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2489 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
2490 return; /* already enabled */
2491
2492 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2493 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2494 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
2495
2496 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002497 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002498 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2499 if (ret) {
2500 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002501 "update vlan stripping failed, err %s aq_err %s\n",
2502 i40e_stat_str(&vsi->back->hw, ret),
2503 i40e_aq_str(&vsi->back->hw,
2504 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002505 }
2506}
2507
2508/**
2509 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
2510 * @vsi: the vsi being adjusted
2511 **/
2512void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
2513{
2514 struct i40e_vsi_context ctxt;
2515 i40e_status ret;
2516
2517 if ((vsi->info.valid_sections &
2518 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2519 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
2520 I40E_AQ_VSI_PVLAN_EMOD_MASK))
2521 return; /* already disabled */
2522
2523 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2524 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2525 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
2526
2527 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002528 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002529 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2530 if (ret) {
2531 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002532 "update vlan stripping failed, err %s aq_err %s\n",
2533 i40e_stat_str(&vsi->back->hw, ret),
2534 i40e_aq_str(&vsi->back->hw,
2535 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002536 }
2537}
2538
2539/**
2540 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2541 * @netdev: network interface to be adjusted
2542 * @features: netdev features to test if VLAN offload is enabled or not
2543 **/
2544static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2545{
2546 struct i40e_netdev_priv *np = netdev_priv(netdev);
2547 struct i40e_vsi *vsi = np->vsi;
2548
2549 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2550 i40e_vlan_stripping_enable(vsi);
2551 else
2552 i40e_vlan_stripping_disable(vsi);
2553}
2554
2555/**
Jacob Keller490a4ad2016-11-11 12:39:29 -08002556 * i40e_add_vlan_all_mac - Add a MAC/VLAN filter for each existing MAC address
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002557 * @vsi: the vsi being configured
2558 * @vid: vlan id to be added (0 = untagged only , -1 = any)
Jacob Keller490a4ad2016-11-11 12:39:29 -08002559 *
2560 * This is a helper function for adding a new MAC/VLAN filter with the
2561 * specified VLAN for each existing MAC address already in the hash table.
2562 * This function does *not* perform any accounting to update filters based on
2563 * VLAN mode.
2564 *
2565 * NOTE: this function expects to be called while under the
2566 * mac_filter_hash_lock
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002567 **/
Jacob Keller9af52f62016-11-11 12:39:30 -08002568int i40e_add_vlan_all_mac(struct i40e_vsi *vsi, s16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002569{
Jacob Keller490a4ad2016-11-11 12:39:29 -08002570 struct i40e_mac_filter *f, *add_f;
Jacob Keller278e7d02016-10-05 09:30:37 -07002571 struct hlist_node *h;
2572 int bkt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002573
Jacob Keller278e7d02016-10-05 09:30:37 -07002574 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Jacob Keller57b341d2016-10-05 09:30:35 -07002575 if (f->state == I40E_FILTER_REMOVE)
2576 continue;
Jacob Keller1bc87e82016-10-05 09:30:31 -07002577 add_f = i40e_add_filter(vsi, f->macaddr, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002578 if (!add_f) {
2579 dev_info(&vsi->back->pdev->dev,
2580 "Could not add vlan filter %d for %pM\n",
2581 vid, f->macaddr);
2582 return -ENOMEM;
2583 }
2584 }
2585
Jacob Keller490a4ad2016-11-11 12:39:29 -08002586 return 0;
2587}
2588
2589/**
2590 * i40e_vsi_add_vlan - Add VSI membership for given VLAN
2591 * @vsi: the VSI being configured
Jacob Kellerf94484b2016-12-07 14:05:34 -08002592 * @vid: VLAN id to be added
Jacob Keller490a4ad2016-11-11 12:39:29 -08002593 **/
Jacob Kellerf94484b2016-12-07 14:05:34 -08002594int i40e_vsi_add_vlan(struct i40e_vsi *vsi, u16 vid)
Jacob Keller490a4ad2016-11-11 12:39:29 -08002595{
Jacob Keller489a3262016-11-11 12:39:31 -08002596 int err;
Jacob Keller490a4ad2016-11-11 12:39:29 -08002597
Jacob Kellerfcf6cfc2017-06-23 04:24:51 -04002598 if (vsi->info.pvid)
Jacob Kellerf94484b2016-12-07 14:05:34 -08002599 return -EINVAL;
2600
Jacob Kellerfcf6cfc2017-06-23 04:24:51 -04002601 /* The network stack will attempt to add VID=0, with the intention to
2602 * receive priority tagged packets with a VLAN of 0. Our HW receives
2603 * these packets by default when configured to receive untagged
2604 * packets, so we don't need to add a filter for this case.
2605 * Additionally, HW interprets adding a VID=0 filter as meaning to
2606 * receive *only* tagged traffic and stops receiving untagged traffic.
2607 * Thus, we do not want to actually add a filter for VID=0
2608 */
2609 if (!vid)
2610 return 0;
2611
Jacob Keller490a4ad2016-11-11 12:39:29 -08002612 /* Locked once because all functions invoked below iterates list*/
2613 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller490a4ad2016-11-11 12:39:29 -08002614 err = i40e_add_vlan_all_mac(vsi, vid);
Jacob Keller278e7d02016-10-05 09:30:37 -07002615 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller489a3262016-11-11 12:39:31 -08002616 if (err)
2617 return err;
Kiran Patil21659032015-09-30 14:09:03 -04002618
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002619 /* schedule our worker thread which will take care of
2620 * applying the new filter changes
2621 */
2622 i40e_service_event_schedule(vsi->back);
2623 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002624}
2625
2626/**
Jacob Keller490a4ad2016-11-11 12:39:29 -08002627 * i40e_rm_vlan_all_mac - Remove MAC/VLAN pair for all MAC with the given VLAN
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002628 * @vsi: the vsi being configured
2629 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jacob Keller490a4ad2016-11-11 12:39:29 -08002630 *
2631 * This function should be used to remove all VLAN filters which match the
2632 * given VID. It does not schedule the service event and does not take the
2633 * mac_filter_hash_lock so it may be combined with other operations under
2634 * a single invocation of the mac_filter_hash_lock.
2635 *
2636 * NOTE: this function expects to be called while under the
2637 * mac_filter_hash_lock
2638 */
Jacob Keller9af52f62016-11-11 12:39:30 -08002639void i40e_rm_vlan_all_mac(struct i40e_vsi *vsi, s16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002640{
Alan Brady84f5ca62016-10-05 09:30:39 -07002641 struct i40e_mac_filter *f;
Jacob Keller278e7d02016-10-05 09:30:37 -07002642 struct hlist_node *h;
Jacob Keller278e7d02016-10-05 09:30:37 -07002643 int bkt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002644
Jacob Keller278e7d02016-10-05 09:30:37 -07002645 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Jacob Keller290d2552016-10-05 09:30:36 -07002646 if (f->vlan == vid)
2647 __i40e_del_filter(vsi, f);
2648 }
Jacob Keller490a4ad2016-11-11 12:39:29 -08002649}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002650
Jacob Keller490a4ad2016-11-11 12:39:29 -08002651/**
2652 * i40e_vsi_kill_vlan - Remove VSI membership for given VLAN
2653 * @vsi: the VSI being configured
Jacob Kellerf94484b2016-12-07 14:05:34 -08002654 * @vid: VLAN id to be removed
Jacob Keller490a4ad2016-11-11 12:39:29 -08002655 **/
Jacob Kellerf94484b2016-12-07 14:05:34 -08002656void i40e_vsi_kill_vlan(struct i40e_vsi *vsi, u16 vid)
Jacob Keller490a4ad2016-11-11 12:39:29 -08002657{
Jacob Kellerf94484b2016-12-07 14:05:34 -08002658 if (!vid || vsi->info.pvid)
2659 return;
2660
Jacob Keller490a4ad2016-11-11 12:39:29 -08002661 spin_lock_bh(&vsi->mac_filter_hash_lock);
2662 i40e_rm_vlan_all_mac(vsi, vid);
Jacob Keller278e7d02016-10-05 09:30:37 -07002663 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -04002664
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002665 /* schedule our worker thread which will take care of
2666 * applying the new filter changes
2667 */
2668 i40e_service_event_schedule(vsi->back);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002669}
2670
2671/**
2672 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2673 * @netdev: network interface to be adjusted
2674 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002675 *
2676 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002677 **/
2678static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2679 __always_unused __be16 proto, u16 vid)
2680{
2681 struct i40e_netdev_priv *np = netdev_priv(netdev);
2682 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002683 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002684
Jacob Keller6a1127852016-10-25 16:08:49 -07002685 if (vid >= VLAN_N_VID)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002686 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002687
Jacob Kellerfcf6cfc2017-06-23 04:24:51 -04002688 ret = i40e_vsi_add_vlan(vsi, vid);
Jacob Keller6a1127852016-10-25 16:08:49 -07002689 if (!ret)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002690 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002691
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002692 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002693}
2694
2695/**
2696 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2697 * @netdev: network interface to be adjusted
2698 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002699 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002700 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002701 **/
2702static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2703 __always_unused __be16 proto, u16 vid)
2704{
2705 struct i40e_netdev_priv *np = netdev_priv(netdev);
2706 struct i40e_vsi *vsi = np->vsi;
2707
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002708 /* return code is ignored as there is nothing a user
2709 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002710 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002711 */
2712 i40e_vsi_kill_vlan(vsi, vid);
2713
2714 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002715
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002716 return 0;
2717}
2718
2719/**
2720 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2721 * @vsi: the vsi being brought back up
2722 **/
2723static void i40e_restore_vlan(struct i40e_vsi *vsi)
2724{
2725 u16 vid;
2726
2727 if (!vsi->netdev)
2728 return;
2729
2730 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2731
2732 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2733 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2734 vid);
2735}
2736
2737/**
2738 * i40e_vsi_add_pvid - Add pvid for the VSI
2739 * @vsi: the vsi being adjusted
2740 * @vid: the vlan id to set as a PVID
2741 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002742int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002743{
2744 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002745 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002746
2747 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2748 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002749 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2750 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002751 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002752
2753 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002754 ctxt.info = vsi->info;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002755 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2756 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002757 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002758 "add pvid failed, err %s aq_err %s\n",
2759 i40e_stat_str(&vsi->back->hw, ret),
2760 i40e_aq_str(&vsi->back->hw,
2761 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002762 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002763 }
2764
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002765 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002766}
2767
2768/**
2769 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2770 * @vsi: the vsi being adjusted
2771 *
2772 * Just use the vlan_rx_register() service to put it back to normal
2773 **/
2774void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2775{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002776 i40e_vlan_stripping_disable(vsi);
2777
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002778 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002779}
2780
2781/**
2782 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2783 * @vsi: ptr to the VSI
2784 *
2785 * If this function returns with an error, then it's possible one or
2786 * more of the rings is populated (while the rest are not). It is the
2787 * callers duty to clean those orphaned rings.
2788 *
2789 * Return 0 on success, negative on failure
2790 **/
2791static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2792{
2793 int i, err = 0;
2794
2795 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002796 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002797
Björn Töpel74608d12017-05-24 07:55:35 +02002798 if (!i40e_enabled_xdp_vsi(vsi))
2799 return err;
2800
2801 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
2802 err = i40e_setup_tx_descriptors(vsi->xdp_rings[i]);
2803
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002804 return err;
2805}
2806
2807/**
2808 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2809 * @vsi: ptr to the VSI
2810 *
2811 * Free VSI's transmit software resources
2812 **/
2813static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2814{
2815 int i;
2816
Björn Töpel74608d12017-05-24 07:55:35 +02002817 if (vsi->tx_rings) {
2818 for (i = 0; i < vsi->num_queue_pairs; i++)
2819 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
2820 i40e_free_tx_resources(vsi->tx_rings[i]);
2821 }
Greg Rose8e9dca52013-12-18 13:45:53 +00002822
Björn Töpel74608d12017-05-24 07:55:35 +02002823 if (vsi->xdp_rings) {
2824 for (i = 0; i < vsi->num_queue_pairs; i++)
2825 if (vsi->xdp_rings[i] && vsi->xdp_rings[i]->desc)
2826 i40e_free_tx_resources(vsi->xdp_rings[i]);
2827 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002828}
2829
2830/**
2831 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2832 * @vsi: ptr to the VSI
2833 *
2834 * If this function returns with an error, then it's possible one or
2835 * more of the rings is populated (while the rest are not). It is the
2836 * callers duty to clean those orphaned rings.
2837 *
2838 * Return 0 on success, negative on failure
2839 **/
2840static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2841{
2842 int i, err = 0;
2843
2844 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002845 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002846 return err;
2847}
2848
2849/**
2850 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2851 * @vsi: ptr to the VSI
2852 *
2853 * Free all receive software resources
2854 **/
2855static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2856{
2857 int i;
2858
Greg Rose8e9dca52013-12-18 13:45:53 +00002859 if (!vsi->rx_rings)
2860 return;
2861
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002862 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002863 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002864 i40e_free_rx_resources(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002865}
2866
2867/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002868 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2869 * @ring: The Tx ring to configure
2870 *
2871 * This enables/disables XPS for a given Tx descriptor ring
2872 * based on the TCs enabled for the VSI that ring belongs to.
2873 **/
2874static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2875{
2876 struct i40e_vsi *vsi = ring->vsi;
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002877
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002878 if (!ring->q_vector || !ring->netdev)
2879 return;
2880
Jacob Kellerba4460d2017-07-14 09:10:08 -04002881 if ((vsi->tc_config.numtc <= 1) &&
2882 !test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state)) {
2883 netif_set_xps_queue(ring->netdev,
Jacob Keller759dc4a2017-07-14 09:10:10 -04002884 get_cpu_mask(ring->q_vector->v_idx),
Jacob Kellerba4460d2017-07-14 09:10:08 -04002885 ring->queue_index);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002886 }
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002887
2888 /* schedule our worker thread which will take care of
2889 * applying the new filter changes
2890 */
2891 i40e_service_event_schedule(vsi->back);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002892}
2893
2894/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002895 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2896 * @ring: The Tx ring to configure
2897 *
2898 * Configure the Tx descriptor ring in the HMC context.
2899 **/
2900static int i40e_configure_tx_ring(struct i40e_ring *ring)
2901{
2902 struct i40e_vsi *vsi = ring->vsi;
2903 u16 pf_q = vsi->base_queue + ring->queue_index;
2904 struct i40e_hw *hw = &vsi->back->hw;
2905 struct i40e_hmc_obj_txq tx_ctx;
2906 i40e_status err = 0;
2907 u32 qtx_ctl = 0;
2908
2909 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002910 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002911 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2912 ring->atr_count = 0;
2913 } else {
2914 ring->atr_sample_rate = 0;
2915 }
2916
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002917 /* configure XPS */
2918 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002919
2920 /* clear the context structure first */
2921 memset(&tx_ctx, 0, sizeof(tx_ctx));
2922
2923 tx_ctx.new_context = 1;
2924 tx_ctx.base = (ring->dma / 128);
2925 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002926 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2927 I40E_FLAG_FD_ATR_ENABLED));
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002928 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002929 /* FDIR VSI tx ring can still use RS bit and writebacks */
2930 if (vsi->type != I40E_VSI_FDIR)
2931 tx_ctx.head_wb_ena = 1;
2932 tx_ctx.head_wb_addr = ring->dma +
2933 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002934
2935 /* As part of VSI creation/update, FW allocates certain
2936 * Tx arbitration queue sets for each TC enabled for
2937 * the VSI. The FW returns the handles to these queue
2938 * sets as part of the response buffer to Add VSI,
2939 * Update VSI, etc. AQ commands. It is expected that
2940 * these queue set handles be associated with the Tx
2941 * queues by the driver as part of the TX queue context
2942 * initialization. This has to be done regardless of
2943 * DCB as by default everything is mapped to TC0.
2944 */
2945 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2946 tx_ctx.rdylist_act = 0;
2947
2948 /* clear the context in the HMC */
2949 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2950 if (err) {
2951 dev_info(&vsi->back->pdev->dev,
2952 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2953 ring->queue_index, pf_q, err);
2954 return -ENOMEM;
2955 }
2956
2957 /* set the context in the HMC */
2958 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2959 if (err) {
2960 dev_info(&vsi->back->pdev->dev,
2961 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2962 ring->queue_index, pf_q, err);
2963 return -ENOMEM;
2964 }
2965
2966 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002967 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002968 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002969 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2970 I40E_QTX_CTL_VFVM_INDX_MASK;
2971 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002972 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002973 }
2974
Shannon Nelson13fd9772013-09-28 07:14:19 +00002975 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2976 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002977 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2978 i40e_flush(hw);
2979
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002980 /* cache tail off for easier writes later */
2981 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2982
2983 return 0;
2984}
2985
2986/**
2987 * i40e_configure_rx_ring - Configure a receive ring context
2988 * @ring: The Rx ring to configure
2989 *
2990 * Configure the Rx descriptor ring in the HMC context.
2991 **/
2992static int i40e_configure_rx_ring(struct i40e_ring *ring)
2993{
2994 struct i40e_vsi *vsi = ring->vsi;
2995 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2996 u16 pf_q = vsi->base_queue + ring->queue_index;
2997 struct i40e_hw *hw = &vsi->back->hw;
2998 struct i40e_hmc_obj_rxq rx_ctx;
2999 i40e_status err = 0;
3000
3001 ring->state = 0;
3002
3003 /* clear the context structure first */
3004 memset(&rx_ctx, 0, sizeof(rx_ctx));
3005
3006 ring->rx_buf_len = vsi->rx_buf_len;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003007
Alexander Duyckdab86af2017-03-14 10:15:27 -07003008 rx_ctx.dbuff = DIV_ROUND_UP(ring->rx_buf_len,
3009 BIT_ULL(I40E_RXQ_CTX_DBUFF_SHIFT));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003010
3011 rx_ctx.base = (ring->dma / 128);
3012 rx_ctx.qlen = ring->count;
3013
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07003014 /* use 32 byte descriptors */
3015 rx_ctx.dsize = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003016
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07003017 /* descriptor type is always zero
3018 * rx_ctx.dtype = 0;
3019 */
Jesse Brandeburgb32bfa172016-04-18 11:33:42 -07003020 rx_ctx.hsplit_0 = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003021
Jesse Brandeburgb32bfa172016-04-18 11:33:42 -07003022 rx_ctx.rxmax = min_t(u16, vsi->max_frame, chain_len * ring->rx_buf_len);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003023 if (hw->revision_id == 0)
3024 rx_ctx.lrxqthresh = 0;
3025 else
3026 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003027 rx_ctx.crcstrip = 1;
3028 rx_ctx.l2tsel = 1;
Jesse Brandeburgc4bbac32015-09-28 11:21:48 -07003029 /* this controls whether VLAN is stripped from inner headers */
3030 rx_ctx.showiv = 0;
Catherine Sullivanacb36762014-03-06 09:02:30 +00003031 /* set the prefena field to 1 because the manual says to */
3032 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003033
3034 /* clear the context in the HMC */
3035 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
3036 if (err) {
3037 dev_info(&vsi->back->pdev->dev,
3038 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
3039 ring->queue_index, pf_q, err);
3040 return -ENOMEM;
3041 }
3042
3043 /* set the context in the HMC */
3044 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
3045 if (err) {
3046 dev_info(&vsi->back->pdev->dev,
3047 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
3048 ring->queue_index, pf_q, err);
3049 return -ENOMEM;
3050 }
3051
Alexander Duyckca9ec082017-04-05 07:51:02 -04003052 /* configure Rx buffer alignment */
3053 if (!vsi->netdev || (vsi->back->flags & I40E_FLAG_LEGACY_RX))
3054 clear_ring_build_skb_enabled(ring);
3055 else
3056 set_ring_build_skb_enabled(ring);
3057
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003058 /* cache tail for quicker writes, and clear the reg before use */
3059 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
3060 writel(0, ring->tail);
3061
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -07003062 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003063
3064 return 0;
3065}
3066
3067/**
3068 * i40e_vsi_configure_tx - Configure the VSI for Tx
3069 * @vsi: VSI structure describing this set of rings and resources
3070 *
3071 * Configure the Tx VSI for operation.
3072 **/
3073static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
3074{
3075 int err = 0;
3076 u16 i;
3077
Alexander Duyck9f65e152013-09-28 06:00:58 +00003078 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
3079 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003080
Björn Töpel74608d12017-05-24 07:55:35 +02003081 if (!i40e_enabled_xdp_vsi(vsi))
3082 return err;
3083
3084 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
3085 err = i40e_configure_tx_ring(vsi->xdp_rings[i]);
3086
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003087 return err;
3088}
3089
3090/**
3091 * i40e_vsi_configure_rx - Configure the VSI for Rx
3092 * @vsi: the VSI being configured
3093 *
3094 * Configure the Rx VSI for operation.
3095 **/
3096static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
3097{
3098 int err = 0;
3099 u16 i;
3100
Alexander Duyckdab86af2017-03-14 10:15:27 -07003101 if (!vsi->netdev || (vsi->back->flags & I40E_FLAG_LEGACY_RX)) {
3102 vsi->max_frame = I40E_MAX_RXBUFFER;
3103 vsi->rx_buf_len = I40E_RXBUFFER_2048;
3104#if (PAGE_SIZE < 8192)
Alexander Duyckca9ec082017-04-05 07:51:02 -04003105 } else if (!I40E_2K_TOO_SMALL_WITH_PADDING &&
3106 (vsi->netdev->mtu <= ETH_DATA_LEN)) {
Alexander Duyckdab86af2017-03-14 10:15:27 -07003107 vsi->max_frame = I40E_RXBUFFER_1536 - NET_IP_ALIGN;
3108 vsi->rx_buf_len = I40E_RXBUFFER_1536 - NET_IP_ALIGN;
3109#endif
3110 } else {
3111 vsi->max_frame = I40E_MAX_RXBUFFER;
Alexander Duyck98efd692017-04-05 07:51:01 -04003112 vsi->rx_buf_len = (PAGE_SIZE < 8192) ? I40E_RXBUFFER_3072 :
3113 I40E_RXBUFFER_2048;
Alexander Duyckdab86af2017-03-14 10:15:27 -07003114 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003115
3116 /* set up individual rings */
3117 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00003118 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003119
3120 return err;
3121}
3122
3123/**
3124 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
3125 * @vsi: ptr to the VSI
3126 **/
3127static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
3128{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00003129 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003130 u16 qoffset, qcount;
3131 int i, n;
3132
Parikh, Neeravcd238a32015-02-21 06:43:37 +00003133 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
3134 /* Reset the TC information */
3135 for (i = 0; i < vsi->num_queue_pairs; i++) {
3136 rx_ring = vsi->rx_rings[i];
3137 tx_ring = vsi->tx_rings[i];
3138 rx_ring->dcb_tc = 0;
3139 tx_ring->dcb_tc = 0;
3140 }
3141 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003142
3143 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04003144 if (!(vsi->tc_config.enabled_tc & BIT_ULL(n)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003145 continue;
3146
3147 qoffset = vsi->tc_config.tc_info[n].qoffset;
3148 qcount = vsi->tc_config.tc_info[n].qcount;
3149 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00003150 rx_ring = vsi->rx_rings[i];
3151 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003152 rx_ring->dcb_tc = n;
3153 tx_ring->dcb_tc = n;
3154 }
3155 }
3156}
3157
3158/**
3159 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
3160 * @vsi: ptr to the VSI
3161 **/
3162static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
3163{
3164 if (vsi->netdev)
3165 i40e_set_rx_mode(vsi->netdev);
3166}
3167
3168/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003169 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
3170 * @vsi: Pointer to the targeted VSI
3171 *
3172 * This function replays the hlist on the hw where all the SB Flow Director
3173 * filters were saved.
3174 **/
3175static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
3176{
3177 struct i40e_fdir_filter *filter;
3178 struct i40e_pf *pf = vsi->back;
3179 struct hlist_node *node;
3180
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003181 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
3182 return;
3183
Jacob Keller6d069422017-02-06 14:38:44 -08003184 /* Reset FDir counters as we're replaying all existing filters */
Jacob Keller097dbf52017-02-06 14:38:46 -08003185 pf->fd_tcp4_filter_cnt = 0;
3186 pf->fd_udp4_filter_cnt = 0;
Jacob Kellerf223c872017-02-06 14:38:51 -08003187 pf->fd_sctp4_filter_cnt = 0;
Jacob Keller097dbf52017-02-06 14:38:46 -08003188 pf->fd_ip4_filter_cnt = 0;
Jacob Keller6d069422017-02-06 14:38:44 -08003189
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003190 hlist_for_each_entry_safe(filter, node,
3191 &pf->fdir_filter_list, fdir_node) {
3192 i40e_add_del_fdir(vsi, filter, true);
3193 }
3194}
3195
3196/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003197 * i40e_vsi_configure - Set up the VSI for action
3198 * @vsi: the VSI being configured
3199 **/
3200static int i40e_vsi_configure(struct i40e_vsi *vsi)
3201{
3202 int err;
3203
3204 i40e_set_vsi_rx_mode(vsi);
3205 i40e_restore_vlan(vsi);
3206 i40e_vsi_config_dcb_rings(vsi);
3207 err = i40e_vsi_configure_tx(vsi);
3208 if (!err)
3209 err = i40e_vsi_configure_rx(vsi);
3210
3211 return err;
3212}
3213
3214/**
3215 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
3216 * @vsi: the VSI being configured
3217 **/
3218static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
3219{
Björn Töpel74608d12017-05-24 07:55:35 +02003220 bool has_xdp = i40e_enabled_xdp_vsi(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003221 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003222 struct i40e_hw *hw = &pf->hw;
3223 u16 vector;
3224 int i, q;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003225 u32 qp;
3226
3227 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
3228 * and PFINT_LNKLSTn registers, e.g.:
3229 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
3230 */
3231 qp = vsi->base_queue;
3232 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00003233 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003234 struct i40e_q_vector *q_vector = vsi->q_vectors[i];
3235
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003236 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003237 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[i]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003238 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3239 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
3240 q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003241 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[i]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003242 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3243 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
3244 q_vector->tx.itr);
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003245 wr32(hw, I40E_PFINT_RATEN(vector - 1),
Alan Brady1c0e6a32016-11-28 16:06:02 -08003246 i40e_intrl_usec_to_reg(vsi->int_rate_limit));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003247
3248 /* Linked list for the queuepairs assigned to this vector */
3249 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
3250 for (q = 0; q < q_vector->num_ringpairs; q++) {
Björn Töpel74608d12017-05-24 07:55:35 +02003251 u32 nextqp = has_xdp ? qp + vsi->alloc_queue_pairs : qp;
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003252 u32 val;
3253
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003254 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
Björn Töpel74608d12017-05-24 07:55:35 +02003255 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3256 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
3257 (nextqp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT) |
3258 (I40E_QUEUE_TYPE_TX <<
3259 I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003260
3261 wr32(hw, I40E_QINT_RQCTL(qp), val);
3262
Björn Töpel74608d12017-05-24 07:55:35 +02003263 if (has_xdp) {
3264 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3265 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3266 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3267 (qp << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT) |
3268 (I40E_QUEUE_TYPE_TX <<
3269 I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3270
3271 wr32(hw, I40E_QINT_TQCTL(nextqp), val);
3272 }
3273
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003274 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
Björn Töpel74608d12017-05-24 07:55:35 +02003275 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3276 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3277 ((qp + 1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT) |
3278 (I40E_QUEUE_TYPE_RX <<
3279 I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003280
3281 /* Terminate the linked list */
3282 if (q == (q_vector->num_ringpairs - 1))
Björn Töpel74608d12017-05-24 07:55:35 +02003283 val |= (I40E_QUEUE_END_OF_LIST <<
3284 I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003285
3286 wr32(hw, I40E_QINT_TQCTL(qp), val);
3287 qp++;
3288 }
3289 }
3290
3291 i40e_flush(hw);
3292}
3293
3294/**
3295 * i40e_enable_misc_int_causes - enable the non-queue interrupts
3296 * @hw: ptr to the hardware info
3297 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00003298static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003299{
Jacob Kellerab437b52014-12-14 01:55:08 +00003300 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003301 u32 val;
3302
3303 /* clear things first */
3304 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
3305 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
3306
3307 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
3308 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
3309 I40E_PFINT_ICR0_ENA_GRST_MASK |
3310 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
3311 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003312 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
3313 I40E_PFINT_ICR0_ENA_VFLR_MASK |
3314 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3315
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003316 if (pf->flags & I40E_FLAG_IWARP_ENABLED)
3317 val |= I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3318
Jacob Kellerab437b52014-12-14 01:55:08 +00003319 if (pf->flags & I40E_FLAG_PTP)
3320 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
3321
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003322 wr32(hw, I40E_PFINT_ICR0_ENA, val);
3323
3324 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00003325 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
3326 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003327
3328 /* OTHER_ITR_IDX = 0 */
3329 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
3330}
3331
3332/**
3333 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
3334 * @vsi: the VSI being configured
3335 **/
3336static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
3337{
Björn Töpel74608d12017-05-24 07:55:35 +02003338 u32 nextqp = i40e_enabled_xdp_vsi(vsi) ? vsi->alloc_queue_pairs : 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00003339 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003340 struct i40e_pf *pf = vsi->back;
3341 struct i40e_hw *hw = &pf->hw;
3342 u32 val;
3343
3344 /* set the ITR configuration */
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003345 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003346 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[0]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003347 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3348 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003349 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[0]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003350 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3351 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
3352
Jacob Kellerab437b52014-12-14 01:55:08 +00003353 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003354
3355 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
3356 wr32(hw, I40E_PFINT_LNKLST0, 0);
3357
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00003358 /* Associate the queue pair to the vector and enable the queue int */
Björn Töpel74608d12017-05-24 07:55:35 +02003359 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3360 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3361 (nextqp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003362 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3363
3364 wr32(hw, I40E_QINT_RQCTL(0), val);
3365
Björn Töpel74608d12017-05-24 07:55:35 +02003366 if (i40e_enabled_xdp_vsi(vsi)) {
3367 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3368 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT)|
3369 (I40E_QUEUE_TYPE_TX
3370 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3371
3372 wr32(hw, I40E_QINT_TQCTL(nextqp), val);
3373 }
3374
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003375 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3376 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3377 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3378
3379 wr32(hw, I40E_QINT_TQCTL(0), val);
3380 i40e_flush(hw);
3381}
3382
3383/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00003384 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
3385 * @pf: board private structure
3386 **/
3387void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
3388{
3389 struct i40e_hw *hw = &pf->hw;
3390
3391 wr32(hw, I40E_PFINT_DYN_CTL0,
3392 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
3393 i40e_flush(hw);
3394}
3395
3396/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003397 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
3398 * @pf: board private structure
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003399 * @clearpba: true when all pending interrupt events should be cleared
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003400 **/
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003401void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf, bool clearpba)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003402{
3403 struct i40e_hw *hw = &pf->hw;
3404 u32 val;
3405
3406 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003407 (clearpba ? I40E_PFINT_DYN_CTL0_CLEARPBA_MASK : 0) |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003408 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
3409
3410 wr32(hw, I40E_PFINT_DYN_CTL0, val);
3411 i40e_flush(hw);
3412}
3413
3414/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003415 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
3416 * @irq: interrupt number
3417 * @data: pointer to a q_vector
3418 **/
3419static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
3420{
3421 struct i40e_q_vector *q_vector = data;
3422
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003423 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003424 return IRQ_HANDLED;
3425
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003426 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003427
3428 return IRQ_HANDLED;
3429}
3430
3431/**
Alan Brady96db7762016-09-14 16:24:38 -07003432 * i40e_irq_affinity_notify - Callback for affinity changes
3433 * @notify: context as to what irq was changed
3434 * @mask: the new affinity mask
3435 *
3436 * This is a callback function used by the irq_set_affinity_notifier function
3437 * so that we may register to receive changes to the irq affinity masks.
3438 **/
3439static void i40e_irq_affinity_notify(struct irq_affinity_notify *notify,
3440 const cpumask_t *mask)
3441{
3442 struct i40e_q_vector *q_vector =
3443 container_of(notify, struct i40e_q_vector, affinity_notify);
3444
Jacob Keller7e4d01e2017-07-12 05:46:05 -04003445 cpumask_copy(&q_vector->affinity_mask, mask);
Alan Brady96db7762016-09-14 16:24:38 -07003446}
3447
3448/**
3449 * i40e_irq_affinity_release - Callback for affinity notifier release
3450 * @ref: internal core kernel usage
3451 *
3452 * This is a callback function used by the irq_set_affinity_notifier function
3453 * to inform the current notification subscriber that they will no longer
3454 * receive notifications.
3455 **/
3456static void i40e_irq_affinity_release(struct kref *ref) {}
3457
3458/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003459 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
3460 * @vsi: the VSI being configured
3461 * @basename: name for the vector
3462 *
3463 * Allocates MSI-X vectors and requests interrupts from the kernel.
3464 **/
3465static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
3466{
3467 int q_vectors = vsi->num_q_vectors;
3468 struct i40e_pf *pf = vsi->back;
3469 int base = vsi->base_vector;
3470 int rx_int_idx = 0;
3471 int tx_int_idx = 0;
3472 int vector, err;
Alan Brady96db7762016-09-14 16:24:38 -07003473 int irq_num;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003474
3475 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00003476 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003477
Alan Brady96db7762016-09-14 16:24:38 -07003478 irq_num = pf->msix_entries[base + vector].vector;
3479
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003480 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003481 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3482 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3483 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003484 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003485 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3486 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003487 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003488 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3489 "%s-%s-%d", basename, "tx", tx_int_idx++);
3490 } else {
3491 /* skip this unused q_vector */
3492 continue;
3493 }
Alan Brady96db7762016-09-14 16:24:38 -07003494 err = request_irq(irq_num,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003495 vsi->irq_handler,
3496 0,
3497 q_vector->name,
3498 q_vector);
3499 if (err) {
3500 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003501 "MSIX request_irq failed, error: %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003502 goto free_queue_irqs;
3503 }
Alan Brady96db7762016-09-14 16:24:38 -07003504
3505 /* register for affinity change notifications */
3506 q_vector->affinity_notify.notify = i40e_irq_affinity_notify;
3507 q_vector->affinity_notify.release = i40e_irq_affinity_release;
3508 irq_set_affinity_notifier(irq_num, &q_vector->affinity_notify);
Jacob Keller759dc4a2017-07-14 09:10:10 -04003509 /* get_cpu_mask returns a static constant mask with
3510 * a permanent lifetime so it's ok to use here.
3511 */
3512 irq_set_affinity_hint(irq_num, get_cpu_mask(q_vector->v_idx));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003513 }
3514
Shannon Nelson63741842014-04-23 04:50:16 +00003515 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003516 return 0;
3517
3518free_queue_irqs:
3519 while (vector) {
3520 vector--;
Alan Brady96db7762016-09-14 16:24:38 -07003521 irq_num = pf->msix_entries[base + vector].vector;
3522 irq_set_affinity_notifier(irq_num, NULL);
3523 irq_set_affinity_hint(irq_num, NULL);
3524 free_irq(irq_num, &vsi->q_vectors[vector]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003525 }
3526 return err;
3527}
3528
3529/**
3530 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3531 * @vsi: the VSI being un-configured
3532 **/
3533static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3534{
3535 struct i40e_pf *pf = vsi->back;
3536 struct i40e_hw *hw = &pf->hw;
3537 int base = vsi->base_vector;
3538 int i;
3539
Shannon Nelson2e5c26ea2017-06-07 05:43:11 -04003540 /* disable interrupt causation from each queue */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003541 for (i = 0; i < vsi->num_queue_pairs; i++) {
Shannon Nelson2e5c26ea2017-06-07 05:43:11 -04003542 u32 val;
3543
3544 val = rd32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx));
3545 val &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3546 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), val);
3547
3548 val = rd32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx));
3549 val &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3550 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), val);
3551
Björn Töpel74608d12017-05-24 07:55:35 +02003552 if (!i40e_enabled_xdp_vsi(vsi))
3553 continue;
3554 wr32(hw, I40E_QINT_TQCTL(vsi->xdp_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003555 }
3556
Shannon Nelson2e5c26ea2017-06-07 05:43:11 -04003557 /* disable each interrupt */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003558 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3559 for (i = vsi->base_vector;
3560 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3561 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3562
3563 i40e_flush(hw);
3564 for (i = 0; i < vsi->num_q_vectors; i++)
3565 synchronize_irq(pf->msix_entries[i + base].vector);
3566 } else {
3567 /* Legacy and MSI mode - this stops all interrupt handling */
3568 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3569 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3570 i40e_flush(hw);
3571 synchronize_irq(pf->pdev->irq);
3572 }
3573}
3574
3575/**
3576 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3577 * @vsi: the VSI being configured
3578 **/
3579static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3580{
3581 struct i40e_pf *pf = vsi->back;
3582 int i;
3583
3584 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Jesse Brandeburg78455482015-07-23 16:54:41 -04003585 for (i = 0; i < vsi->num_q_vectors; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003586 i40e_irq_dynamic_enable(vsi, i);
3587 } else {
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003588 i40e_irq_dynamic_enable_icr0(pf, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003589 }
3590
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003591 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003592 return 0;
3593}
3594
3595/**
3596 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3597 * @pf: board private structure
3598 **/
3599static void i40e_stop_misc_vector(struct i40e_pf *pf)
3600{
3601 /* Disable ICR 0 */
3602 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3603 i40e_flush(&pf->hw);
3604}
3605
3606/**
3607 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3608 * @irq: interrupt number
3609 * @data: pointer to a q_vector
3610 *
3611 * This is the handler used for all MSI/Legacy interrupts, and deals
3612 * with both queue and non-queue interrupts. This is also used in
3613 * MSIX mode to handle the non-queue interrupts.
3614 **/
3615static irqreturn_t i40e_intr(int irq, void *data)
3616{
3617 struct i40e_pf *pf = (struct i40e_pf *)data;
3618 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003619 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003620 u32 icr0, icr0_remaining;
3621 u32 val, ena_mask;
3622
3623 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003624 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003625
Shannon Nelson116a57d2013-09-28 07:13:59 +00003626 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3627 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003628 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003629
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003630 /* if interrupt but no bits showing, must be SWINT */
3631 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3632 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3633 pf->sw_int_count++;
3634
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003635 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
Catherine Sullivan76429842017-06-07 05:43:12 -04003636 (icr0 & I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK)) {
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003637 ena_mask &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
Carolyn Wyborny23bb6dc2016-11-08 13:05:12 -08003638 dev_dbg(&pf->pdev->dev, "cleared PE_CRITERR\n");
Catherine Sullivan76429842017-06-07 05:43:12 -04003639 set_bit(__I40E_CORE_RESET_REQUESTED, pf->state);
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003640 }
3641
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003642 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3643 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003644 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
3645 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003646
Anjali Singhai Jaina16ae2d2016-01-15 14:33:16 -08003647 /* We do not have a way to disarm Queue causes while leaving
3648 * interrupt enabled for all other causes, ideally
3649 * interrupt should be disabled while we are in NAPI but
3650 * this is not a performance path and napi_schedule()
3651 * can deal with rescheduling.
3652 */
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03003653 if (!test_bit(__I40E_DOWN, pf->state))
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003654 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003655 }
3656
3657 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3658 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
Jacob Keller0da36b92017-04-19 09:25:55 -04003659 set_bit(__I40E_ADMINQ_EVENT_PENDING, pf->state);
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08003660 i40e_debug(&pf->hw, I40E_DEBUG_NVM, "AdminQ event\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003661 }
3662
3663 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3664 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
Jacob Keller0da36b92017-04-19 09:25:55 -04003665 set_bit(__I40E_MDD_EVENT_PENDING, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003666 }
3667
3668 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3669 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
Jacob Keller0da36b92017-04-19 09:25:55 -04003670 set_bit(__I40E_VFLR_EVENT_PENDING, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003671 }
3672
3673 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
Jacob Keller0da36b92017-04-19 09:25:55 -04003674 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
3675 set_bit(__I40E_RESET_INTR_RECEIVED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003676 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3677 val = rd32(hw, I40E_GLGEN_RSTAT);
3678 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3679 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003680 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003681 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003682 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003683 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003684 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003685 pf->empr_count++;
Jacob Keller0da36b92017-04-19 09:25:55 -04003686 set_bit(__I40E_EMP_RESET_INTR_RECEIVED, pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003687 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003688 }
3689
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003690 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3691 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3692 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
Anjali Singhai Jain25fc0e62015-03-31 00:45:01 -07003693 dev_info(&pf->pdev->dev, "HMC error info 0x%x, HMC error data 0x%x\n",
3694 rd32(hw, I40E_PFHMC_ERRORINFO),
3695 rd32(hw, I40E_PFHMC_ERRORDATA));
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003696 }
3697
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003698 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3699 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3700
3701 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003702 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003703 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003704 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003705 }
3706
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003707 /* If a critical error is pending we have no choice but to reset the
3708 * device.
3709 * Report and mask out any remaining unexpected interrupts.
3710 */
3711 icr0_remaining = icr0 & ena_mask;
3712 if (icr0_remaining) {
3713 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3714 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003715 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003716 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003717 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003718 dev_info(&pf->pdev->dev, "device will be reset\n");
Jacob Keller0da36b92017-04-19 09:25:55 -04003719 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003720 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003721 }
3722 ena_mask &= ~icr0_remaining;
3723 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003724 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003725
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003726enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003727 /* re-enable interrupt causes */
3728 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03003729 if (!test_bit(__I40E_DOWN, pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003730 i40e_service_event_schedule(pf);
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003731 i40e_irq_dynamic_enable_icr0(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003732 }
3733
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003734 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003735}
3736
3737/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003738 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3739 * @tx_ring: tx ring to clean
3740 * @budget: how many cleans we're allowed
3741 *
3742 * Returns true if there's any budget left (e.g. the clean is finished)
3743 **/
3744static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3745{
3746 struct i40e_vsi *vsi = tx_ring->vsi;
3747 u16 i = tx_ring->next_to_clean;
3748 struct i40e_tx_buffer *tx_buf;
3749 struct i40e_tx_desc *tx_desc;
3750
3751 tx_buf = &tx_ring->tx_bi[i];
3752 tx_desc = I40E_TX_DESC(tx_ring, i);
3753 i -= tx_ring->count;
3754
3755 do {
3756 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3757
3758 /* if next_to_watch is not set then there is no work pending */
3759 if (!eop_desc)
3760 break;
3761
3762 /* prevent any other reads prior to eop_desc */
3763 read_barrier_depends();
3764
3765 /* if the descriptor isn't done, no work yet to do */
3766 if (!(eop_desc->cmd_type_offset_bsz &
3767 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3768 break;
3769
3770 /* clear next_to_watch to prevent false hangs */
3771 tx_buf->next_to_watch = NULL;
3772
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003773 tx_desc->buffer_addr = 0;
3774 tx_desc->cmd_type_offset_bsz = 0;
3775 /* move past filter desc */
3776 tx_buf++;
3777 tx_desc++;
3778 i++;
3779 if (unlikely(!i)) {
3780 i -= tx_ring->count;
3781 tx_buf = tx_ring->tx_bi;
3782 tx_desc = I40E_TX_DESC(tx_ring, 0);
3783 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003784 /* unmap skb header data */
3785 dma_unmap_single(tx_ring->dev,
3786 dma_unmap_addr(tx_buf, dma),
3787 dma_unmap_len(tx_buf, len),
3788 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003789 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3790 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003791
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003792 tx_buf->raw_buf = NULL;
3793 tx_buf->tx_flags = 0;
3794 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003795 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003796 tx_desc->buffer_addr = 0;
3797 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003798
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003799 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003800 tx_buf++;
3801 tx_desc++;
3802 i++;
3803 if (unlikely(!i)) {
3804 i -= tx_ring->count;
3805 tx_buf = tx_ring->tx_bi;
3806 tx_desc = I40E_TX_DESC(tx_ring, 0);
3807 }
3808
3809 /* update budget accounting */
3810 budget--;
3811 } while (likely(budget));
3812
3813 i += tx_ring->count;
3814 tx_ring->next_to_clean = i;
3815
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003816 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED)
Jesse Brandeburg78455482015-07-23 16:54:41 -04003817 i40e_irq_dynamic_enable(vsi, tx_ring->q_vector->v_idx);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003818
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003819 return budget > 0;
3820}
3821
3822/**
3823 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3824 * @irq: interrupt number
3825 * @data: pointer to a q_vector
3826 **/
3827static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3828{
3829 struct i40e_q_vector *q_vector = data;
3830 struct i40e_vsi *vsi;
3831
3832 if (!q_vector->tx.ring)
3833 return IRQ_HANDLED;
3834
3835 vsi = q_vector->tx.ring->vsi;
3836 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3837
3838 return IRQ_HANDLED;
3839}
3840
3841/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003842 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003843 * @vsi: the VSI being configured
3844 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003845 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003846 **/
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003847static void i40e_map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003848{
Alexander Duyck493fb302013-09-28 07:01:44 +00003849 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e152013-09-28 06:00:58 +00003850 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3851 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003852
3853 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003854 tx_ring->next = q_vector->tx.ring;
3855 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003856 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003857
Björn Töpel74608d12017-05-24 07:55:35 +02003858 /* Place XDP Tx ring in the same q_vector ring list as regular Tx */
3859 if (i40e_enabled_xdp_vsi(vsi)) {
3860 struct i40e_ring *xdp_ring = vsi->xdp_rings[qp_idx];
3861
3862 xdp_ring->q_vector = q_vector;
3863 xdp_ring->next = q_vector->tx.ring;
3864 q_vector->tx.ring = xdp_ring;
3865 q_vector->tx.count++;
3866 }
3867
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003868 rx_ring->q_vector = q_vector;
3869 rx_ring->next = q_vector->rx.ring;
3870 q_vector->rx.ring = rx_ring;
3871 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003872}
3873
3874/**
3875 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3876 * @vsi: the VSI being configured
3877 *
3878 * This function maps descriptor rings to the queue-specific vectors
3879 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3880 * one vector per queue pair, but on a constrained vector budget, we
3881 * group the queue pairs as "efficiently" as possible.
3882 **/
3883static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3884{
3885 int qp_remaining = vsi->num_queue_pairs;
3886 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003887 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003888 int v_start = 0;
3889 int qp_idx = 0;
3890
3891 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3892 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003893 * It is also important to go through all the vectors available to be
3894 * sure that if we don't use all the vectors, that the remaining vectors
3895 * are cleared. This is especially important when decreasing the
3896 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003897 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003898 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003899 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3900
3901 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3902
3903 q_vector->num_ringpairs = num_ringpairs;
3904
3905 q_vector->rx.count = 0;
3906 q_vector->tx.count = 0;
3907 q_vector->rx.ring = NULL;
3908 q_vector->tx.ring = NULL;
3909
3910 while (num_ringpairs--) {
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003911 i40e_map_vector_to_qp(vsi, v_start, qp_idx);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003912 qp_idx++;
3913 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003914 }
3915 }
3916}
3917
3918/**
3919 * i40e_vsi_request_irq - Request IRQ from the OS
3920 * @vsi: the VSI being configured
3921 * @basename: name for the vector
3922 **/
3923static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3924{
3925 struct i40e_pf *pf = vsi->back;
3926 int err;
3927
3928 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3929 err = i40e_vsi_request_irq_msix(vsi, basename);
3930 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3931 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003932 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003933 else
3934 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003935 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003936
3937 if (err)
3938 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3939
3940 return err;
3941}
3942
3943#ifdef CONFIG_NET_POLL_CONTROLLER
3944/**
Jesse Brandeburgd89d9672016-01-04 10:33:02 -08003945 * i40e_netpoll - A Polling 'interrupt' handler
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003946 * @netdev: network interface device structure
3947 *
3948 * This is used by netconsole to send skbs without having to re-enable
3949 * interrupts. It's not called while the normal interrupt routine is executing.
3950 **/
3951static void i40e_netpoll(struct net_device *netdev)
3952{
3953 struct i40e_netdev_priv *np = netdev_priv(netdev);
3954 struct i40e_vsi *vsi = np->vsi;
3955 struct i40e_pf *pf = vsi->back;
3956 int i;
3957
3958 /* if interface is down do nothing */
Jacob Keller0da36b92017-04-19 09:25:55 -04003959 if (test_bit(__I40E_VSI_DOWN, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003960 return;
3961
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003962 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3963 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003964 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003965 } else {
3966 i40e_intr(pf->pdev->irq, netdev);
3967 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003968}
3969#endif
3970
Jacob Kellerc768e492017-04-13 04:45:47 -04003971#define I40E_QTX_ENA_WAIT_COUNT 50
3972
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003973/**
Neerav Parikh23527302014-06-03 23:50:15 +00003974 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3975 * @pf: the PF being configured
3976 * @pf_q: the PF queue
3977 * @enable: enable or disable state of the queue
3978 *
3979 * This routine will wait for the given Tx queue of the PF to reach the
3980 * enabled or disabled state.
3981 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3982 * multiple retries; else will return 0 in case of success.
3983 **/
3984static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3985{
3986 int i;
3987 u32 tx_reg;
3988
3989 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3990 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3991 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3992 break;
3993
Neerav Parikhf98a2002014-09-13 07:40:44 +00003994 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003995 }
3996 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3997 return -ETIMEDOUT;
3998
3999 return 0;
4000}
4001
4002/**
Jacob Kellerc768e492017-04-13 04:45:47 -04004003 * i40e_control_tx_q - Start or stop a particular Tx queue
4004 * @pf: the PF structure
4005 * @pf_q: the PF queue to configure
4006 * @enable: start or stop the queue
4007 *
4008 * This function enables or disables a single queue. Note that any delay
4009 * required after the operation is expected to be handled by the caller of
4010 * this function.
4011 **/
4012static void i40e_control_tx_q(struct i40e_pf *pf, int pf_q, bool enable)
4013{
4014 struct i40e_hw *hw = &pf->hw;
4015 u32 tx_reg;
4016 int i;
4017
4018 /* warn the TX unit of coming changes */
4019 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
4020 if (!enable)
4021 usleep_range(10, 20);
4022
4023 for (i = 0; i < I40E_QTX_ENA_WAIT_COUNT; i++) {
4024 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
4025 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
4026 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
4027 break;
4028 usleep_range(1000, 2000);
4029 }
4030
4031 /* Skip if the queue is already in the requested state */
4032 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
4033 return;
4034
4035 /* turn on/off the queue */
4036 if (enable) {
4037 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
4038 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
4039 } else {
4040 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
4041 }
4042
4043 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
4044}
4045
4046/**
Björn Töpel74608d12017-05-24 07:55:35 +02004047 * i40e_control_wait_tx_q - Start/stop Tx queue and wait for completion
4048 * @seid: VSI SEID
4049 * @pf: the PF structure
4050 * @pf_q: the PF queue to configure
4051 * @is_xdp: true if the queue is used for XDP
4052 * @enable: start or stop the queue
4053 **/
4054static int i40e_control_wait_tx_q(int seid, struct i40e_pf *pf, int pf_q,
4055 bool is_xdp, bool enable)
4056{
4057 int ret;
4058
4059 i40e_control_tx_q(pf, pf_q, enable);
4060
4061 /* wait for the change to finish */
4062 ret = i40e_pf_txq_wait(pf, pf_q, enable);
4063 if (ret) {
4064 dev_info(&pf->pdev->dev,
4065 "VSI seid %d %sTx ring %d %sable timeout\n",
4066 seid, (is_xdp ? "XDP " : ""), pf_q,
4067 (enable ? "en" : "dis"));
4068 }
4069
4070 return ret;
4071}
4072
4073/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004074 * i40e_vsi_control_tx - Start or stop a VSI's rings
4075 * @vsi: the VSI being configured
4076 * @enable: start or stop the rings
4077 **/
4078static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
4079{
4080 struct i40e_pf *pf = vsi->back;
Jacob Kellerc768e492017-04-13 04:45:47 -04004081 int i, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004082
4083 pf_q = vsi->base_queue;
4084 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Björn Töpel74608d12017-05-24 07:55:35 +02004085 ret = i40e_control_wait_tx_q(vsi->seid, pf,
4086 pf_q,
4087 false /*is xdp*/, enable);
4088 if (ret)
Neerav Parikh23527302014-06-03 23:50:15 +00004089 break;
Björn Töpel74608d12017-05-24 07:55:35 +02004090
4091 if (!i40e_enabled_xdp_vsi(vsi))
4092 continue;
4093
4094 ret = i40e_control_wait_tx_q(vsi->seid, pf,
4095 pf_q + vsi->alloc_queue_pairs,
4096 true /*is xdp*/, enable);
4097 if (ret)
4098 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004099 }
4100
Neerav Parikh23527302014-06-03 23:50:15 +00004101 return ret;
4102}
4103
4104/**
4105 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
4106 * @pf: the PF being configured
4107 * @pf_q: the PF queue
4108 * @enable: enable or disable state of the queue
4109 *
4110 * This routine will wait for the given Rx queue of the PF to reach the
4111 * enabled or disabled state.
4112 * Returns -ETIMEDOUT in case of failing to reach the requested state after
4113 * multiple retries; else will return 0 in case of success.
4114 **/
4115static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
4116{
4117 int i;
4118 u32 rx_reg;
4119
4120 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
4121 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
4122 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
4123 break;
4124
Neerav Parikhf98a2002014-09-13 07:40:44 +00004125 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00004126 }
4127 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
4128 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00004129
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004130 return 0;
4131}
4132
4133/**
Jacob Kellerc768e492017-04-13 04:45:47 -04004134 * i40e_control_rx_q - Start or stop a particular Rx queue
4135 * @pf: the PF structure
4136 * @pf_q: the PF queue to configure
4137 * @enable: start or stop the queue
4138 *
4139 * This function enables or disables a single queue. Note that any delay
4140 * required after the operation is expected to be handled by the caller of
4141 * this function.
4142 **/
4143static void i40e_control_rx_q(struct i40e_pf *pf, int pf_q, bool enable)
4144{
4145 struct i40e_hw *hw = &pf->hw;
4146 u32 rx_reg;
4147 int i;
4148
4149 for (i = 0; i < I40E_QTX_ENA_WAIT_COUNT; i++) {
4150 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
4151 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
4152 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
4153 break;
4154 usleep_range(1000, 2000);
4155 }
4156
4157 /* Skip if the queue is already in the requested state */
4158 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
4159 return;
4160
4161 /* turn on/off the queue */
4162 if (enable)
4163 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
4164 else
4165 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
4166
4167 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
4168}
4169
4170/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004171 * i40e_vsi_control_rx - Start or stop a VSI's rings
4172 * @vsi: the VSI being configured
4173 * @enable: start or stop the rings
4174 **/
4175static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
4176{
4177 struct i40e_pf *pf = vsi->back;
Jacob Kellerc768e492017-04-13 04:45:47 -04004178 int i, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004179
4180 pf_q = vsi->base_queue;
4181 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Jacob Kellerc768e492017-04-13 04:45:47 -04004182 i40e_control_rx_q(pf, pf_q, enable);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004183
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004184 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00004185 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
4186 if (ret) {
4187 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004188 "VSI seid %d Rx ring %d %sable timeout\n",
4189 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00004190 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004191 }
4192 }
4193
Wyborny, Carolynd08a9f62017-03-28 08:00:48 -07004194 /* Due to HW errata, on Rx disable only, the register can indicate done
4195 * before it really is. Needs 50ms to be sure
4196 */
4197 if (!enable)
4198 mdelay(50);
4199
Neerav Parikh23527302014-06-03 23:50:15 +00004200 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004201}
4202
4203/**
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004204 * i40e_vsi_start_rings - Start a VSI's rings
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004205 * @vsi: the VSI being configured
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004206 **/
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004207int i40e_vsi_start_rings(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004208{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00004209 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004210
4211 /* do rx first for enable and last for disable */
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004212 ret = i40e_vsi_control_rx(vsi, true);
4213 if (ret)
4214 return ret;
4215 ret = i40e_vsi_control_tx(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004216
4217 return ret;
4218}
4219
4220/**
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004221 * i40e_vsi_stop_rings - Stop a VSI's rings
4222 * @vsi: the VSI being configured
4223 **/
4224void i40e_vsi_stop_rings(struct i40e_vsi *vsi)
4225{
Jacob Keller34807562017-04-13 04:45:53 -04004226 /* When port TX is suspended, don't wait */
Jacob Keller0da36b92017-04-19 09:25:55 -04004227 if (test_bit(__I40E_PORT_SUSPENDED, vsi->back->state))
Jacob Keller34807562017-04-13 04:45:53 -04004228 return i40e_vsi_stop_rings_no_wait(vsi);
4229
Filip Sadowski3aa7b742016-10-11 15:26:58 -07004230 /* do rx first for enable and last for disable
4231 * Ignore return value, we need to shutdown whatever we can
4232 */
4233 i40e_vsi_control_tx(vsi, false);
4234 i40e_vsi_control_rx(vsi, false);
4235}
4236
4237/**
Jacob Kellere4b433f2017-04-13 04:45:52 -04004238 * i40e_vsi_stop_rings_no_wait - Stop a VSI's rings and do not delay
4239 * @vsi: the VSI being shutdown
4240 *
4241 * This function stops all the rings for a VSI but does not delay to verify
4242 * that rings have been disabled. It is expected that the caller is shutting
4243 * down multiple VSIs at once and will delay together for all the VSIs after
4244 * initiating the shutdown. This is particularly useful for shutting down lots
4245 * of VFs together. Otherwise, a large delay can be incurred while configuring
4246 * each VSI in serial.
4247 **/
4248void i40e_vsi_stop_rings_no_wait(struct i40e_vsi *vsi)
4249{
4250 struct i40e_pf *pf = vsi->back;
4251 int i, pf_q;
4252
4253 pf_q = vsi->base_queue;
4254 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4255 i40e_control_tx_q(pf, pf_q, false);
4256 i40e_control_rx_q(pf, pf_q, false);
4257 }
4258}
4259
4260/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004261 * i40e_vsi_free_irq - Free the irq association with the OS
4262 * @vsi: the VSI being configured
4263 **/
4264static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
4265{
4266 struct i40e_pf *pf = vsi->back;
4267 struct i40e_hw *hw = &pf->hw;
4268 int base = vsi->base_vector;
4269 u32 val, qp;
4270 int i;
4271
4272 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4273 if (!vsi->q_vectors)
4274 return;
4275
Shannon Nelson63741842014-04-23 04:50:16 +00004276 if (!vsi->irqs_ready)
4277 return;
4278
4279 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004280 for (i = 0; i < vsi->num_q_vectors; i++) {
Alan Brady96db7762016-09-14 16:24:38 -07004281 int irq_num;
4282 u16 vector;
4283
4284 vector = i + base;
4285 irq_num = pf->msix_entries[vector].vector;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004286
4287 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00004288 if (!vsi->q_vectors[i] ||
4289 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004290 continue;
4291
Alan Brady96db7762016-09-14 16:24:38 -07004292 /* clear the affinity notifier in the IRQ descriptor */
4293 irq_set_affinity_notifier(irq_num, NULL);
Jacob Keller759dc4a2017-07-14 09:10:10 -04004294 /* remove our suggested affinity mask for this IRQ */
Alan Brady96db7762016-09-14 16:24:38 -07004295 irq_set_affinity_hint(irq_num, NULL);
4296 synchronize_irq(irq_num);
4297 free_irq(irq_num, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004298
4299 /* Tear down the interrupt queue link list
4300 *
4301 * We know that they come in pairs and always
4302 * the Rx first, then the Tx. To clear the
4303 * link list, stick the EOL value into the
4304 * next_q field of the registers.
4305 */
4306 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
4307 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4308 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4309 val |= I40E_QUEUE_END_OF_LIST
4310 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4311 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
4312
4313 while (qp != I40E_QUEUE_END_OF_LIST) {
4314 u32 next;
4315
4316 val = rd32(hw, I40E_QINT_RQCTL(qp));
4317
4318 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4319 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4320 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4321 I40E_QINT_RQCTL_INTEVENT_MASK);
4322
4323 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4324 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4325
4326 wr32(hw, I40E_QINT_RQCTL(qp), val);
4327
4328 val = rd32(hw, I40E_QINT_TQCTL(qp));
4329
4330 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
4331 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
4332
4333 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4334 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4335 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4336 I40E_QINT_TQCTL_INTEVENT_MASK);
4337
4338 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4339 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4340
4341 wr32(hw, I40E_QINT_TQCTL(qp), val);
4342 qp = next;
4343 }
4344 }
4345 } else {
4346 free_irq(pf->pdev->irq, pf);
4347
4348 val = rd32(hw, I40E_PFINT_LNKLST0);
4349 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4350 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4351 val |= I40E_QUEUE_END_OF_LIST
4352 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
4353 wr32(hw, I40E_PFINT_LNKLST0, val);
4354
4355 val = rd32(hw, I40E_QINT_RQCTL(qp));
4356 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4357 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4358 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4359 I40E_QINT_RQCTL_INTEVENT_MASK);
4360
4361 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4362 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4363
4364 wr32(hw, I40E_QINT_RQCTL(qp), val);
4365
4366 val = rd32(hw, I40E_QINT_TQCTL(qp));
4367
4368 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4369 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4370 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4371 I40E_QINT_TQCTL_INTEVENT_MASK);
4372
4373 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4374 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4375
4376 wr32(hw, I40E_QINT_TQCTL(qp), val);
4377 }
4378}
4379
4380/**
Alexander Duyck493fb302013-09-28 07:01:44 +00004381 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
4382 * @vsi: the VSI being configured
4383 * @v_idx: Index of vector to be freed
4384 *
4385 * This function frees the memory allocated to the q_vector. In addition if
4386 * NAPI is enabled it will delete any references to the NAPI struct prior
4387 * to freeing the q_vector.
4388 **/
4389static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
4390{
4391 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004392 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00004393
4394 if (!q_vector)
4395 return;
4396
4397 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004398 i40e_for_each_ring(ring, q_vector->tx)
4399 ring->q_vector = NULL;
4400
4401 i40e_for_each_ring(ring, q_vector->rx)
4402 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00004403
4404 /* only VSI w/ an associated netdev is set up w/ NAPI */
4405 if (vsi->netdev)
4406 netif_napi_del(&q_vector->napi);
4407
4408 vsi->q_vectors[v_idx] = NULL;
4409
4410 kfree_rcu(q_vector, rcu);
4411}
4412
4413/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004414 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
4415 * @vsi: the VSI being un-configured
4416 *
4417 * This frees the memory allocated to the q_vectors and
4418 * deletes references to the NAPI struct.
4419 **/
4420static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
4421{
4422 int v_idx;
4423
Alexander Duyck493fb302013-09-28 07:01:44 +00004424 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
4425 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004426}
4427
4428/**
4429 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
4430 * @pf: board private structure
4431 **/
4432static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
4433{
4434 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
4435 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4436 pci_disable_msix(pf->pdev);
4437 kfree(pf->msix_entries);
4438 pf->msix_entries = NULL;
Shannon Nelson3b444392015-02-26 16:15:57 +00004439 kfree(pf->irq_pile);
4440 pf->irq_pile = NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004441 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
4442 pci_disable_msi(pf->pdev);
4443 }
4444 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
4445}
4446
4447/**
4448 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
4449 * @pf: board private structure
4450 *
4451 * We go through and clear interrupt specific resources and reset the structure
4452 * to pre-load conditions
4453 **/
4454static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
4455{
4456 int i;
4457
Shannon Nelsone1477582015-02-21 06:44:33 +00004458 i40e_stop_misc_vector(pf);
Shannon Nelson69278392016-03-10 14:59:43 -08004459 if (pf->flags & I40E_FLAG_MSIX_ENABLED && pf->msix_entries) {
Shannon Nelsone1477582015-02-21 06:44:33 +00004460 synchronize_irq(pf->msix_entries[0].vector);
4461 free_irq(pf->msix_entries[0].vector, pf);
4462 }
4463
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004464 i40e_put_lump(pf->irq_pile, pf->iwarp_base_vector,
4465 I40E_IWARP_IRQ_PILE_ID);
4466
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004467 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00004468 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004469 if (pf->vsi[i])
4470 i40e_vsi_free_q_vectors(pf->vsi[i]);
4471 i40e_reset_interrupt_capability(pf);
4472}
4473
4474/**
4475 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
4476 * @vsi: the VSI being configured
4477 **/
4478static void i40e_napi_enable_all(struct i40e_vsi *vsi)
4479{
4480 int q_idx;
4481
4482 if (!vsi->netdev)
4483 return;
4484
Alexander Duyck13a8cd12017-03-24 15:01:42 -07004485 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++) {
4486 struct i40e_q_vector *q_vector = vsi->q_vectors[q_idx];
4487
4488 if (q_vector->rx.ring || q_vector->tx.ring)
4489 napi_enable(&q_vector->napi);
4490 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004491}
4492
4493/**
4494 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
4495 * @vsi: the VSI being configured
4496 **/
4497static void i40e_napi_disable_all(struct i40e_vsi *vsi)
4498{
4499 int q_idx;
4500
4501 if (!vsi->netdev)
4502 return;
4503
Alexander Duyck13a8cd12017-03-24 15:01:42 -07004504 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++) {
4505 struct i40e_q_vector *q_vector = vsi->q_vectors[q_idx];
4506
4507 if (q_vector->rx.ring || q_vector->tx.ring)
4508 napi_disable(&q_vector->napi);
4509 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004510}
4511
4512/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004513 * i40e_vsi_close - Shut down a VSI
4514 * @vsi: the vsi to be quelled
4515 **/
4516static void i40e_vsi_close(struct i40e_vsi *vsi)
4517{
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08004518 struct i40e_pf *pf = vsi->back;
Jacob Keller0da36b92017-04-19 09:25:55 -04004519 if (!test_and_set_bit(__I40E_VSI_DOWN, vsi->state))
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004520 i40e_down(vsi);
4521 i40e_vsi_free_irq(vsi);
4522 i40e_vsi_free_tx_resources(vsi);
4523 i40e_vsi_free_rx_resources(vsi);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04004524 vsi->current_netdev_flags = 0;
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08004525 pf->flags |= I40E_FLAG_SERVICE_CLIENT_REQUESTED;
Jacob Keller0da36b92017-04-19 09:25:55 -04004526 if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08004527 pf->flags |= I40E_FLAG_CLIENT_RESET;
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004528}
4529
4530/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004531 * i40e_quiesce_vsi - Pause a given VSI
4532 * @vsi: the VSI being paused
4533 **/
4534static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
4535{
Jacob Keller0da36b92017-04-19 09:25:55 -04004536 if (test_bit(__I40E_VSI_DOWN, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004537 return;
4538
Jacob Keller0da36b92017-04-19 09:25:55 -04004539 set_bit(__I40E_VSI_NEEDS_RESTART, vsi->state);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004540 if (vsi->netdev && netif_running(vsi->netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004541 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004542 else
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004543 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004544}
4545
4546/**
4547 * i40e_unquiesce_vsi - Resume a given VSI
4548 * @vsi: the VSI being resumed
4549 **/
4550static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
4551{
Jacob Keller0da36b92017-04-19 09:25:55 -04004552 if (!test_and_clear_bit(__I40E_VSI_NEEDS_RESTART, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004553 return;
4554
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004555 if (vsi->netdev && netif_running(vsi->netdev))
4556 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
4557 else
Shannon Nelson8276f752014-03-14 07:32:27 +00004558 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004559}
4560
4561/**
4562 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
4563 * @pf: the PF
4564 **/
4565static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
4566{
4567 int v;
4568
Mitch Williams505682c2014-05-20 08:01:37 +00004569 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004570 if (pf->vsi[v])
4571 i40e_quiesce_vsi(pf->vsi[v]);
4572 }
4573}
4574
4575/**
4576 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
4577 * @pf: the PF
4578 **/
4579static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
4580{
4581 int v;
4582
Mitch Williams505682c2014-05-20 08:01:37 +00004583 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004584 if (pf->vsi[v])
4585 i40e_unquiesce_vsi(pf->vsi[v]);
4586 }
4587}
4588
Neerav Parikh69129dc2014-11-12 00:18:46 +00004589/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004590 * i40e_vsi_wait_queues_disabled - Wait for VSI's queues to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004591 * @vsi: the VSI being configured
4592 *
Jacob Kelleraf26ce22017-04-05 07:50:58 -04004593 * Wait until all queues on a given VSI have been disabled.
Neerav Parikh69129dc2014-11-12 00:18:46 +00004594 **/
Jacob Kellere4b433f2017-04-13 04:45:52 -04004595int i40e_vsi_wait_queues_disabled(struct i40e_vsi *vsi)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004596{
4597 struct i40e_pf *pf = vsi->back;
4598 int i, pf_q, ret;
4599
4600 pf_q = vsi->base_queue;
4601 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Jacob Kelleraf26ce22017-04-05 07:50:58 -04004602 /* Check and wait for the Tx queue */
Neerav Parikh69129dc2014-11-12 00:18:46 +00004603 ret = i40e_pf_txq_wait(pf, pf_q, false);
4604 if (ret) {
4605 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004606 "VSI seid %d Tx ring %d disable timeout\n",
4607 vsi->seid, pf_q);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004608 return ret;
4609 }
Björn Töpel74608d12017-05-24 07:55:35 +02004610
4611 if (!i40e_enabled_xdp_vsi(vsi))
4612 goto wait_rx;
4613
4614 /* Check and wait for the XDP Tx queue */
4615 ret = i40e_pf_txq_wait(pf, pf_q + vsi->alloc_queue_pairs,
4616 false);
4617 if (ret) {
4618 dev_info(&pf->pdev->dev,
4619 "VSI seid %d XDP Tx ring %d disable timeout\n",
4620 vsi->seid, pf_q);
4621 return ret;
4622 }
4623wait_rx:
4624 /* Check and wait for the Rx queue */
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004625 ret = i40e_pf_rxq_wait(pf, pf_q, false);
4626 if (ret) {
4627 dev_info(&pf->pdev->dev,
4628 "VSI seid %d Rx ring %d disable timeout\n",
4629 vsi->seid, pf_q);
4630 return ret;
4631 }
4632 }
4633
Neerav Parikh69129dc2014-11-12 00:18:46 +00004634 return 0;
4635}
4636
Jacob Kellere4b433f2017-04-13 04:45:52 -04004637#ifdef CONFIG_I40E_DCB
Neerav Parikh69129dc2014-11-12 00:18:46 +00004638/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004639 * i40e_pf_wait_queues_disabled - Wait for all queues of PF VSIs to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004640 * @pf: the PF
4641 *
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004642 * This function waits for the queues to be in disabled state for all the
Neerav Parikh69129dc2014-11-12 00:18:46 +00004643 * VSIs that are managed by this PF.
4644 **/
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004645static int i40e_pf_wait_queues_disabled(struct i40e_pf *pf)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004646{
4647 int v, ret = 0;
4648
4649 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Alexander Duyckc76cb6e2017-02-21 15:55:48 -08004650 if (pf->vsi[v]) {
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004651 ret = i40e_vsi_wait_queues_disabled(pf->vsi[v]);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004652 if (ret)
4653 break;
4654 }
4655 }
4656
4657 return ret;
4658}
4659
4660#endif
Kiran Patilb03a8c12015-09-24 18:13:15 -04004661
4662/**
4663 * i40e_detect_recover_hung_queue - Function to detect and recover hung_queue
4664 * @q_idx: TX queue number
4665 * @vsi: Pointer to VSI struct
4666 *
4667 * This function checks specified queue for given VSI. Detects hung condition.
Alan Brady17daabb2017-04-05 07:50:56 -04004668 * We proactively detect hung TX queues by checking if interrupts are disabled
4669 * but there are pending descriptors. If it appears hung, attempt to recover
4670 * by triggering a SW interrupt.
Kiran Patilb03a8c12015-09-24 18:13:15 -04004671 **/
4672static void i40e_detect_recover_hung_queue(int q_idx, struct i40e_vsi *vsi)
4673{
4674 struct i40e_ring *tx_ring = NULL;
4675 struct i40e_pf *pf;
Alan Brady17daabb2017-04-05 07:50:56 -04004676 u32 val, tx_pending;
Kiran Patilb03a8c12015-09-24 18:13:15 -04004677 int i;
4678
4679 pf = vsi->back;
4680
4681 /* now that we have an index, find the tx_ring struct */
4682 for (i = 0; i < vsi->num_queue_pairs; i++) {
4683 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
4684 if (q_idx == vsi->tx_rings[i]->queue_index) {
4685 tx_ring = vsi->tx_rings[i];
4686 break;
4687 }
4688 }
4689 }
4690
4691 if (!tx_ring)
4692 return;
4693
4694 /* Read interrupt register */
4695 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4696 val = rd32(&pf->hw,
4697 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
4698 tx_ring->vsi->base_vector - 1));
4699 else
4700 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
4701
Alan Brady17daabb2017-04-05 07:50:56 -04004702 tx_pending = i40e_get_tx_pending(tx_ring);
Kiran Patilb03a8c12015-09-24 18:13:15 -04004703
Alan Brady17daabb2017-04-05 07:50:56 -04004704 /* Interrupts are disabled and TX pending is non-zero,
4705 * trigger the SW interrupt (don't wait). Worst case
4706 * there will be one extra interrupt which may result
4707 * into not cleaning any queues because queues are cleaned.
Kiran Patilb03a8c12015-09-24 18:13:15 -04004708 */
Alan Brady17daabb2017-04-05 07:50:56 -04004709 if (tx_pending && (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK)))
4710 i40e_force_wb(vsi, tx_ring->q_vector);
Kiran Patilb03a8c12015-09-24 18:13:15 -04004711}
4712
4713/**
4714 * i40e_detect_recover_hung - Function to detect and recover hung_queues
4715 * @pf: pointer to PF struct
4716 *
4717 * LAN VSI has netdev and netdev has TX queues. This function is to check
4718 * each of those TX queues if they are hung, trigger recovery by issuing
4719 * SW interrupt.
4720 **/
4721static void i40e_detect_recover_hung(struct i40e_pf *pf)
4722{
4723 struct net_device *netdev;
4724 struct i40e_vsi *vsi;
Jesse Brandeburgb85c94b2017-06-20 15:16:59 -07004725 unsigned int i;
Kiran Patilb03a8c12015-09-24 18:13:15 -04004726
4727 /* Only for LAN VSI */
4728 vsi = pf->vsi[pf->lan_vsi];
4729
4730 if (!vsi)
4731 return;
4732
4733 /* Make sure, VSI state is not DOWN/RECOVERY_PENDING */
Jacob Keller0da36b92017-04-19 09:25:55 -04004734 if (test_bit(__I40E_VSI_DOWN, vsi->back->state) ||
4735 test_bit(__I40E_RESET_RECOVERY_PENDING, vsi->back->state))
Kiran Patilb03a8c12015-09-24 18:13:15 -04004736 return;
4737
4738 /* Make sure type is MAIN VSI */
4739 if (vsi->type != I40E_VSI_MAIN)
4740 return;
4741
4742 netdev = vsi->netdev;
4743 if (!netdev)
4744 return;
4745
4746 /* Bail out if netif_carrier is not OK */
4747 if (!netif_carrier_ok(netdev))
4748 return;
4749
4750 /* Go thru' TX queues for netdev */
4751 for (i = 0; i < netdev->num_tx_queues; i++) {
4752 struct netdev_queue *q;
4753
4754 q = netdev_get_tx_queue(netdev, i);
4755 if (q)
4756 i40e_detect_recover_hung_queue(i, vsi);
4757 }
4758}
4759
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004760/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004761 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00004762 * @pf: pointer to PF
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004763 *
4764 * Get TC map for ISCSI PF type that will include iSCSI TC
4765 * and LAN TC.
4766 **/
4767static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4768{
4769 struct i40e_dcb_app_priority_table app;
4770 struct i40e_hw *hw = &pf->hw;
4771 u8 enabled_tc = 1; /* TC0 is always enabled */
4772 u8 tc, i;
4773 /* Get the iSCSI APP TLV */
4774 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4775
4776 for (i = 0; i < dcbcfg->numapps; i++) {
4777 app = dcbcfg->app[i];
4778 if (app.selector == I40E_APP_SEL_TCPIP &&
4779 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4780 tc = dcbcfg->etscfg.prioritytable[app.priority];
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004781 enabled_tc |= BIT(tc);
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004782 break;
4783 }
4784 }
4785
4786 return enabled_tc;
4787}
4788
4789/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004790 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4791 * @dcbcfg: the corresponding DCBx configuration structure
4792 *
4793 * Return the number of TCs from given DCBx configuration
4794 **/
4795static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4796{
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004797 int i, tc_unused = 0;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004798 u8 num_tc = 0;
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004799 u8 ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004800
4801 /* Scan the ETS Config Priority Table to find
4802 * traffic class enabled for a given priority
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004803 * and create a bitmask of enabled TCs
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004804 */
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004805 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++)
4806 num_tc |= BIT(dcbcfg->etscfg.prioritytable[i]);
4807
4808 /* Now scan the bitmask to check for
4809 * contiguous TCs starting with TC0
4810 */
4811 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4812 if (num_tc & BIT(i)) {
4813 if (!tc_unused) {
4814 ret++;
4815 } else {
4816 pr_err("Non-contiguous TC - Disabling DCB\n");
4817 return 1;
4818 }
4819 } else {
4820 tc_unused = 1;
4821 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004822 }
4823
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004824 /* There is always at least TC0 */
4825 if (!ret)
4826 ret = 1;
4827
4828 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004829}
4830
4831/**
4832 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4833 * @dcbcfg: the corresponding DCBx configuration structure
4834 *
4835 * Query the current DCB configuration and return the number of
4836 * traffic classes enabled from the given DCBX config
4837 **/
4838static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4839{
4840 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4841 u8 enabled_tc = 1;
4842 u8 i;
4843
4844 for (i = 0; i < num_tc; i++)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004845 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004846
4847 return enabled_tc;
4848}
4849
4850/**
4851 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4852 * @pf: PF being queried
4853 *
4854 * Return number of traffic classes enabled for the given PF
4855 **/
4856static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4857{
4858 struct i40e_hw *hw = &pf->hw;
Dave Ertman52a08ca2016-07-27 12:02:34 -07004859 u8 i, enabled_tc = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004860 u8 num_tc = 0;
4861 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4862
4863 /* If DCB is not enabled then always in single TC */
4864 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4865 return 1;
4866
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004867 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004868 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4869 return i40e_dcb_get_num_tc(dcbcfg);
4870
4871 /* MFP mode return count of enabled TCs for this PF */
4872 if (pf->hw.func_caps.iscsi)
4873 enabled_tc = i40e_get_iscsi_tc_map(pf);
4874 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004875 return 1; /* Only TC0 */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004876
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004877 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004878 if (enabled_tc & BIT(i))
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004879 num_tc++;
4880 }
4881 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004882}
4883
4884/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004885 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4886 * @pf: PF being queried
4887 *
4888 * Return a bitmap for enabled traffic classes for this PF.
4889 **/
4890static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4891{
4892 /* If DCB is not enabled for this PF then just return default TC */
4893 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
David Ertmanea6acb72016-09-20 07:10:50 -07004894 return I40E_DEFAULT_TRAFFIC_CLASS;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004895
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004896 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004897 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4898 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4899
Neerav Parikhfc51de92015-02-24 06:58:53 +00004900 /* MFP enabled and iSCSI PF type */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004901 if (pf->hw.func_caps.iscsi)
4902 return i40e_get_iscsi_tc_map(pf);
4903 else
David Ertmanea6acb72016-09-20 07:10:50 -07004904 return I40E_DEFAULT_TRAFFIC_CLASS;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004905}
4906
4907/**
4908 * i40e_vsi_get_bw_info - Query VSI BW Information
4909 * @vsi: the VSI being queried
4910 *
4911 * Returns 0 on success, negative value on failure
4912 **/
4913static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4914{
4915 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4916 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4917 struct i40e_pf *pf = vsi->back;
4918 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004919 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004920 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004921 int i;
4922
4923 /* Get the VSI level BW configuration */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004924 ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4925 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004926 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004927 "couldn't get PF vsi bw config, err %s aq_err %s\n",
4928 i40e_stat_str(&pf->hw, ret),
4929 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004930 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004931 }
4932
4933 /* Get the VSI level BW configuration per TC */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004934 ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
4935 NULL);
4936 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004937 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004938 "couldn't get PF vsi ets bw config, err %s aq_err %s\n",
4939 i40e_stat_str(&pf->hw, ret),
4940 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004941 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004942 }
4943
4944 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4945 dev_info(&pf->pdev->dev,
4946 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4947 bw_config.tc_valid_bits,
4948 bw_ets_config.tc_valid_bits);
4949 /* Still continuing */
4950 }
4951
4952 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4953 vsi->bw_max_quanta = bw_config.max_bw;
4954 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4955 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4956 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4957 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4958 vsi->bw_ets_limit_credits[i] =
4959 le16_to_cpu(bw_ets_config.credits[i]);
4960 /* 3 bits out of 4 for each TC */
4961 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4962 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004963
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004964 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004965}
4966
4967/**
4968 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4969 * @vsi: the VSI being configured
4970 * @enabled_tc: TC bitmap
4971 * @bw_credits: BW shared credits per TC
4972 *
4973 * Returns 0 on success, negative value on failure
4974 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004975static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004976 u8 *bw_share)
4977{
4978 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004979 i40e_status ret;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004980 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004981
4982 bw_data.tc_valid_bits = enabled_tc;
4983 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4984 bw_data.tc_bw_credits[i] = bw_share[i];
4985
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004986 ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4987 NULL);
4988 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004989 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004990 "AQ command Config VSI BW allocation per TC failed = %d\n",
4991 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004992 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004993 }
4994
4995 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4996 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4997
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004998 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004999}
5000
5001/**
5002 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
5003 * @vsi: the VSI being configured
5004 * @enabled_tc: TC map to be enabled
5005 *
5006 **/
5007static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
5008{
5009 struct net_device *netdev = vsi->netdev;
5010 struct i40e_pf *pf = vsi->back;
5011 struct i40e_hw *hw = &pf->hw;
5012 u8 netdev_tc = 0;
5013 int i;
5014 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
5015
5016 if (!netdev)
5017 return;
5018
5019 if (!enabled_tc) {
5020 netdev_reset_tc(netdev);
5021 return;
5022 }
5023
5024 /* Set up actual enabled TCs on the VSI */
5025 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
5026 return;
5027
5028 /* set per TC queues for the VSI */
5029 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
5030 /* Only set TC queues for enabled tcs
5031 *
5032 * e.g. For a VSI that has TC0 and TC3 enabled the
5033 * enabled_tc bitmap would be 0x00001001; the driver
5034 * will set the numtc for netdev as 2 that will be
5035 * referenced by the netdev layer as TC 0 and 1.
5036 */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005037 if (vsi->tc_config.enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005038 netdev_set_tc_queue(netdev,
5039 vsi->tc_config.tc_info[i].netdev_tc,
5040 vsi->tc_config.tc_info[i].qcount,
5041 vsi->tc_config.tc_info[i].qoffset);
5042 }
5043
5044 /* Assign UP2TC map for the VSI */
5045 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
5046 /* Get the actual TC# for the UP */
5047 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
5048 /* Get the mapped netdev TC# for the UP */
5049 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
5050 netdev_set_prio_tc_map(netdev, i, netdev_tc);
5051 }
5052}
5053
5054/**
5055 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
5056 * @vsi: the VSI being configured
5057 * @ctxt: the ctxt buffer returned from AQ VSI update param command
5058 **/
5059static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
5060 struct i40e_vsi_context *ctxt)
5061{
5062 /* copy just the sections touched not the entire info
5063 * since not all sections are valid as returned by
5064 * update vsi params
5065 */
5066 vsi->info.mapping_flags = ctxt->info.mapping_flags;
5067 memcpy(&vsi->info.queue_mapping,
5068 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
5069 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
5070 sizeof(vsi->info.tc_mapping));
5071}
5072
5073/**
5074 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
5075 * @vsi: VSI to be configured
5076 * @enabled_tc: TC bitmap
5077 *
5078 * This configures a particular VSI for TCs that are mapped to the
5079 * given TC bitmap. It uses default bandwidth share for TCs across
5080 * VSIs to configure TC for a particular VSI.
5081 *
5082 * NOTE:
5083 * It is expected that the VSI queues have been quisced before calling
5084 * this function.
5085 **/
5086static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
5087{
5088 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
5089 struct i40e_vsi_context ctxt;
5090 int ret = 0;
5091 int i;
5092
5093 /* Check if enabled_tc is same as existing or new TCs */
5094 if (vsi->tc_config.enabled_tc == enabled_tc)
5095 return ret;
5096
5097 /* Enable ETS TCs with equal BW Share for now across all VSIs */
5098 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005099 if (enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005100 bw_share[i] = 1;
5101 }
5102
5103 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
5104 if (ret) {
5105 dev_info(&vsi->back->pdev->dev,
5106 "Failed configuring TC map %d for VSI %d\n",
5107 enabled_tc, vsi->seid);
5108 goto out;
5109 }
5110
5111 /* Update Queue Pairs Mapping for currently enabled UPs */
5112 ctxt.seid = vsi->seid;
5113 ctxt.pf_num = vsi->back->hw.pf_id;
5114 ctxt.vf_num = 0;
5115 ctxt.uplink_seid = vsi->uplink_seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07005116 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005117 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
5118
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005119 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
5120 ctxt.info.valid_sections |=
5121 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
5122 ctxt.info.queueing_opt_flags |= I40E_AQ_VSI_QUE_OPT_TCP_ENA;
5123 }
5124
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005125 /* Update the VSI after updating the VSI queue-mapping information */
5126 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
5127 if (ret) {
5128 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005129 "Update vsi tc config failed, err %s aq_err %s\n",
5130 i40e_stat_str(&vsi->back->hw, ret),
5131 i40e_aq_str(&vsi->back->hw,
5132 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005133 goto out;
5134 }
5135 /* update the local VSI info with updated queue map */
5136 i40e_vsi_update_queue_map(vsi, &ctxt);
5137 vsi->info.valid_sections = 0;
5138
5139 /* Update current VSI BW information */
5140 ret = i40e_vsi_get_bw_info(vsi);
5141 if (ret) {
5142 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005143 "Failed updating vsi bw info, err %s aq_err %s\n",
5144 i40e_stat_str(&vsi->back->hw, ret),
5145 i40e_aq_str(&vsi->back->hw,
5146 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005147 goto out;
5148 }
5149
5150 /* Update the netdev TC setup */
5151 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
5152out:
5153 return ret;
5154}
5155
5156/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005157 * i40e_veb_config_tc - Configure TCs for given VEB
5158 * @veb: given VEB
5159 * @enabled_tc: TC bitmap
5160 *
5161 * Configures given TC bitmap for VEB (switching) element
5162 **/
5163int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
5164{
5165 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
5166 struct i40e_pf *pf = veb->pf;
5167 int ret = 0;
5168 int i;
5169
5170 /* No TCs or already enabled TCs just return */
5171 if (!enabled_tc || veb->enabled_tc == enabled_tc)
5172 return ret;
5173
5174 bw_data.tc_valid_bits = enabled_tc;
5175 /* bw_data.absolute_credits is not set (relative) */
5176
5177 /* Enable ETS TCs with equal BW Share for now */
5178 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005179 if (enabled_tc & BIT(i))
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005180 bw_data.tc_bw_share_credits[i] = 1;
5181 }
5182
5183 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
5184 &bw_data, NULL);
5185 if (ret) {
5186 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005187 "VEB bw config failed, err %s aq_err %s\n",
5188 i40e_stat_str(&pf->hw, ret),
5189 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005190 goto out;
5191 }
5192
5193 /* Update the BW information */
5194 ret = i40e_veb_get_bw_info(veb);
5195 if (ret) {
5196 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005197 "Failed getting veb bw config, err %s aq_err %s\n",
5198 i40e_stat_str(&pf->hw, ret),
5199 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005200 }
5201
5202out:
5203 return ret;
5204}
5205
5206#ifdef CONFIG_I40E_DCB
5207/**
5208 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
5209 * @pf: PF struct
5210 *
5211 * Reconfigure VEB/VSIs on a given PF; it is assumed that
5212 * the caller would've quiesce all the VSIs before calling
5213 * this function
5214 **/
5215static void i40e_dcb_reconfigure(struct i40e_pf *pf)
5216{
5217 u8 tc_map = 0;
5218 int ret;
5219 u8 v;
5220
5221 /* Enable the TCs available on PF to all VEBs */
5222 tc_map = i40e_pf_get_tc_map(pf);
5223 for (v = 0; v < I40E_MAX_VEB; v++) {
5224 if (!pf->veb[v])
5225 continue;
5226 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
5227 if (ret) {
5228 dev_info(&pf->pdev->dev,
5229 "Failed configuring TC for VEB seid=%d\n",
5230 pf->veb[v]->seid);
5231 /* Will try to configure as many components */
5232 }
5233 }
5234
5235 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00005236 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005237 if (!pf->vsi[v])
5238 continue;
5239
5240 /* - Enable all TCs for the LAN VSI
5241 * - For all others keep them at TC0 for now
5242 */
5243 if (v == pf->lan_vsi)
5244 tc_map = i40e_pf_get_tc_map(pf);
5245 else
David Ertmanea6acb72016-09-20 07:10:50 -07005246 tc_map = I40E_DEFAULT_TRAFFIC_CLASS;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005247
5248 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
5249 if (ret) {
5250 dev_info(&pf->pdev->dev,
5251 "Failed configuring TC for VSI seid=%d\n",
5252 pf->vsi[v]->seid);
5253 /* Will try to configure as many components */
5254 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00005255 /* Re-configure VSI vectors based on updated TC map */
5256 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005257 if (pf->vsi[v]->netdev)
5258 i40e_dcbnl_set_all(pf->vsi[v]);
5259 }
5260 }
5261}
5262
5263/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005264 * i40e_resume_port_tx - Resume port Tx
5265 * @pf: PF struct
5266 *
5267 * Resume a port's Tx and issue a PF reset in case of failure to
5268 * resume.
5269 **/
5270static int i40e_resume_port_tx(struct i40e_pf *pf)
5271{
5272 struct i40e_hw *hw = &pf->hw;
5273 int ret;
5274
5275 ret = i40e_aq_resume_port_tx(hw, NULL);
5276 if (ret) {
5277 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005278 "Resume Port Tx failed, err %s aq_err %s\n",
5279 i40e_stat_str(&pf->hw, ret),
5280 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005281 /* Schedule PF reset to recover */
Jacob Keller0da36b92017-04-19 09:25:55 -04005282 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005283 i40e_service_event_schedule(pf);
5284 }
5285
5286 return ret;
5287}
5288
5289/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005290 * i40e_init_pf_dcb - Initialize DCB configuration
5291 * @pf: PF being configured
5292 *
5293 * Query the current DCB configuration and cache it
5294 * in the hardware structure
5295 **/
5296static int i40e_init_pf_dcb(struct i40e_pf *pf)
5297{
5298 struct i40e_hw *hw = &pf->hw;
5299 int err = 0;
5300
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00005301 /* Do not enable DCB for SW1 and SW2 images even if the FW is capable */
Jacob Kellerd36e41d2017-06-23 04:24:46 -04005302 if (pf->hw_features & I40E_HW_NO_DCB_SUPPORT)
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00005303 goto out;
5304
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005305 /* Get the initial DCB configuration */
5306 err = i40e_init_dcb(hw);
5307 if (!err) {
5308 /* Device/Function is not DCBX capable */
5309 if ((!hw->func_caps.dcb) ||
5310 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
5311 dev_info(&pf->pdev->dev,
5312 "DCBX offload is not supported or is disabled for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005313 } else {
5314 /* When status is not DISABLED then DCBX in FW */
5315 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
5316 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005317
5318 pf->flags |= I40E_FLAG_DCB_CAPABLE;
Dave Ertmana0362442016-08-29 17:38:26 -07005319 /* Enable DCB tagging only when more than one TC
5320 * or explicitly disable if only one TC
5321 */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005322 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
5323 pf->flags |= I40E_FLAG_DCB_ENABLED;
Dave Ertmana0362442016-08-29 17:38:26 -07005324 else
5325 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005326 dev_dbg(&pf->pdev->dev,
5327 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005328 }
Neerav Parikh014269f2014-04-01 07:11:48 +00005329 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00005330 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005331 "Query for DCB configuration failed, err %s aq_err %s\n",
5332 i40e_stat_str(&pf->hw, err),
5333 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005334 }
5335
5336out:
5337 return err;
5338}
5339#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005340#define SPEED_SIZE 14
5341#define FC_SIZE 8
5342/**
5343 * i40e_print_link_message - print link up or down
5344 * @vsi: the VSI for which link needs a message
5345 */
Matt Jaredc156f852015-08-27 11:42:39 -04005346void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005347{
Filip Sadowski7ec9ba12016-11-08 13:05:13 -08005348 enum i40e_aq_link_speed new_speed;
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005349 struct i40e_pf *pf = vsi->back;
Shannon Nelsona9165492015-09-03 17:19:00 -04005350 char *speed = "Unknown";
5351 char *fc = "Unknown";
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005352 char *fec = "";
Mariusz Stachura68e49702017-07-12 05:46:14 -04005353 char *req_fec = "";
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005354 char *an = "";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005355
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005356 new_speed = pf->hw.phy.link_info.link_speed;
Filip Sadowski7ec9ba12016-11-08 13:05:13 -08005357
5358 if ((vsi->current_isup == isup) && (vsi->current_speed == new_speed))
Matt Jaredc156f852015-08-27 11:42:39 -04005359 return;
5360 vsi->current_isup = isup;
Filip Sadowski7ec9ba12016-11-08 13:05:13 -08005361 vsi->current_speed = new_speed;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005362 if (!isup) {
5363 netdev_info(vsi->netdev, "NIC Link is Down\n");
5364 return;
5365 }
5366
Greg Rose148c2d82014-12-11 07:06:27 +00005367 /* Warn user if link speed on NPAR enabled partition is not at
5368 * least 10GB
5369 */
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005370 if (pf->hw.func_caps.npar_enable &&
5371 (pf->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
5372 pf->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
Greg Rose148c2d82014-12-11 07:06:27 +00005373 netdev_warn(vsi->netdev,
5374 "The partition detected link speed that is less than 10Gbps\n");
5375
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005376 switch (pf->hw.phy.link_info.link_speed) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005377 case I40E_LINK_SPEED_40GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005378 speed = "40 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005379 break;
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005380 case I40E_LINK_SPEED_20GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005381 speed = "20 G";
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005382 break;
Carolyn Wyborny31232372016-11-21 13:03:48 -08005383 case I40E_LINK_SPEED_25GB:
5384 speed = "25 G";
5385 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005386 case I40E_LINK_SPEED_10GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005387 speed = "10 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005388 break;
5389 case I40E_LINK_SPEED_1GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005390 speed = "1000 M";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005391 break;
Mitch Williams5960d332014-09-13 07:40:47 +00005392 case I40E_LINK_SPEED_100MB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005393 speed = "100 M";
Mitch Williams5960d332014-09-13 07:40:47 +00005394 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005395 default:
5396 break;
5397 }
5398
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005399 switch (pf->hw.fc.current_mode) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005400 case I40E_FC_FULL:
Shannon Nelsona9165492015-09-03 17:19:00 -04005401 fc = "RX/TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005402 break;
5403 case I40E_FC_TX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005404 fc = "TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005405 break;
5406 case I40E_FC_RX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005407 fc = "RX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005408 break;
5409 default:
Shannon Nelsona9165492015-09-03 17:19:00 -04005410 fc = "None";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005411 break;
5412 }
5413
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005414 if (pf->hw.phy.link_info.link_speed == I40E_LINK_SPEED_25GB) {
Mariusz Stachura68e49702017-07-12 05:46:14 -04005415 req_fec = ", Requested FEC: None";
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005416 fec = ", FEC: None";
5417 an = ", Autoneg: False";
5418
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005419 if (pf->hw.phy.link_info.an_info & I40E_AQ_AN_COMPLETED)
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005420 an = ", Autoneg: True";
5421
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005422 if (pf->hw.phy.link_info.fec_info &
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005423 I40E_AQ_CONFIG_FEC_KR_ENA)
5424 fec = ", FEC: CL74 FC-FEC/BASE-R";
Sudheer Mogilappagari3fded462017-07-14 09:10:18 -04005425 else if (pf->hw.phy.link_info.fec_info &
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005426 I40E_AQ_CONFIG_FEC_RS_ENA)
5427 fec = ", FEC: CL108 RS-FEC";
Mariusz Stachura68e49702017-07-12 05:46:14 -04005428
5429 /* 'CL108 RS-FEC' should be displayed when RS is requested, or
5430 * both RS and FC are requested
5431 */
5432 if (vsi->back->hw.phy.link_info.req_fec_info &
5433 (I40E_AQ_REQUEST_FEC_KR | I40E_AQ_REQUEST_FEC_RS)) {
5434 if (vsi->back->hw.phy.link_info.req_fec_info &
5435 I40E_AQ_REQUEST_FEC_RS)
5436 req_fec = ", Requested FEC: CL108 RS-FEC";
5437 else
5438 req_fec = ", Requested FEC: CL74 FC-FEC/BASE-R";
5439 }
Henry Tieman3e03d7c2016-12-02 12:32:57 -08005440 }
5441
Mariusz Stachura68e49702017-07-12 05:46:14 -04005442 netdev_info(vsi->netdev, "NIC Link is Up, %sbps Full Duplex%s%s%s, Flow Control: %s\n",
5443 speed, req_fec, fec, an, fc);
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005444}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005445
5446/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005447 * i40e_up_complete - Finish the last steps of bringing up a connection
5448 * @vsi: the VSI being configured
5449 **/
5450static int i40e_up_complete(struct i40e_vsi *vsi)
5451{
5452 struct i40e_pf *pf = vsi->back;
5453 int err;
5454
5455 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5456 i40e_vsi_configure_msix(vsi);
5457 else
5458 i40e_configure_msi_and_legacy(vsi);
5459
5460 /* start rings */
Filip Sadowski3aa7b742016-10-11 15:26:58 -07005461 err = i40e_vsi_start_rings(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005462 if (err)
5463 return err;
5464
Jacob Keller0da36b92017-04-19 09:25:55 -04005465 clear_bit(__I40E_VSI_DOWN, vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005466 i40e_napi_enable_all(vsi);
5467 i40e_vsi_enable_irq(vsi);
5468
5469 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
5470 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005471 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005472 netif_tx_start_all_queues(vsi->netdev);
5473 netif_carrier_on(vsi->netdev);
5474 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005475
5476 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005477 if (vsi->type == I40E_VSI_FDIR) {
5478 /* reset fd counters */
Jacob Keller097dbf52017-02-06 14:38:46 -08005479 pf->fd_add_err = 0;
5480 pf->fd_atr_cnt = 0;
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005481 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005482 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005483
5484 /* On the next run of the service_task, notify any clients of the new
5485 * opened netdev
5486 */
5487 pf->flags |= I40E_FLAG_SERVICE_CLIENT_REQUESTED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005488 i40e_service_event_schedule(pf);
5489
5490 return 0;
5491}
5492
5493/**
5494 * i40e_vsi_reinit_locked - Reset the VSI
5495 * @vsi: the VSI being configured
5496 *
5497 * Rebuild the ring structs after some configuration
5498 * has changed, e.g. MTU size.
5499 **/
5500static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
5501{
5502 struct i40e_pf *pf = vsi->back;
5503
5504 WARN_ON(in_interrupt());
Jacob Keller0da36b92017-04-19 09:25:55 -04005505 while (test_and_set_bit(__I40E_CONFIG_BUSY, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005506 usleep_range(1000, 2000);
5507 i40e_down(vsi);
5508
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005509 i40e_up(vsi);
Jacob Keller0da36b92017-04-19 09:25:55 -04005510 clear_bit(__I40E_CONFIG_BUSY, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005511}
5512
5513/**
5514 * i40e_up - Bring the connection back up after being down
5515 * @vsi: the VSI being configured
5516 **/
5517int i40e_up(struct i40e_vsi *vsi)
5518{
5519 int err;
5520
5521 err = i40e_vsi_configure(vsi);
5522 if (!err)
5523 err = i40e_up_complete(vsi);
5524
5525 return err;
5526}
5527
5528/**
5529 * i40e_down - Shutdown the connection processing
5530 * @vsi: the VSI being stopped
5531 **/
5532void i40e_down(struct i40e_vsi *vsi)
5533{
5534 int i;
5535
5536 /* It is assumed that the caller of this function
Jacob Kellerd19cb642017-04-21 13:38:05 -07005537 * sets the vsi->state __I40E_VSI_DOWN bit.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005538 */
5539 if (vsi->netdev) {
5540 netif_carrier_off(vsi->netdev);
5541 netif_tx_disable(vsi->netdev);
5542 }
5543 i40e_vsi_disable_irq(vsi);
Filip Sadowski3aa7b742016-10-11 15:26:58 -07005544 i40e_vsi_stop_rings(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005545 i40e_napi_disable_all(vsi);
5546
5547 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00005548 i40e_clean_tx_ring(vsi->tx_rings[i]);
Björn Töpel74608d12017-05-24 07:55:35 +02005549 if (i40e_enabled_xdp_vsi(vsi))
5550 i40e_clean_tx_ring(vsi->xdp_rings[i]);
Alexander Duyck9f65e152013-09-28 06:00:58 +00005551 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005552 }
Catherine Sullivanf980d442016-05-16 10:26:34 -07005553
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005554}
5555
5556/**
5557 * i40e_setup_tc - configure multiple traffic classes
5558 * @netdev: net device to configure
5559 * @tc: number of traffic classes to enable
5560 **/
5561static int i40e_setup_tc(struct net_device *netdev, u8 tc)
5562{
5563 struct i40e_netdev_priv *np = netdev_priv(netdev);
5564 struct i40e_vsi *vsi = np->vsi;
5565 struct i40e_pf *pf = vsi->back;
5566 u8 enabled_tc = 0;
5567 int ret = -EINVAL;
5568 int i;
5569
5570 /* Check if DCB enabled to continue */
5571 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
5572 netdev_info(netdev, "DCB is not enabled for adapter\n");
5573 goto exit;
5574 }
5575
5576 /* Check if MFP enabled */
5577 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
5578 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
5579 goto exit;
5580 }
5581
5582 /* Check whether tc count is within enabled limit */
5583 if (tc > i40e_pf_get_num_tc(pf)) {
5584 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
5585 goto exit;
5586 }
5587
5588 /* Generate TC map for number of tc requested */
5589 for (i = 0; i < tc; i++)
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005590 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005591
5592 /* Requesting same TC configuration as already enabled */
5593 if (enabled_tc == vsi->tc_config.enabled_tc)
5594 return 0;
5595
5596 /* Quiesce VSI queues */
5597 i40e_quiesce_vsi(vsi);
5598
5599 /* Configure VSI for enabled TCs */
5600 ret = i40e_vsi_config_tc(vsi, enabled_tc);
5601 if (ret) {
5602 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
5603 vsi->seid);
5604 goto exit;
5605 }
5606
5607 /* Unquiesce VSI */
5608 i40e_unquiesce_vsi(vsi);
5609
5610exit:
5611 return ret;
5612}
5613
Jiri Pirko2572ac52017-08-07 10:15:17 +02005614static int __i40e_setup_tc(struct net_device *netdev, enum tc_setup_type type,
Jiri Pirkode4784c2017-08-07 10:15:32 +02005615 void *type_data)
John Fastabende4c67342016-02-16 21:16:15 -08005616{
Jiri Pirkode4784c2017-08-07 10:15:32 +02005617 struct tc_mqprio_qopt *mqprio = type_data;
5618
Jiri Pirko2572ac52017-08-07 10:15:17 +02005619 if (type != TC_SETUP_MQPRIO)
Jiri Pirko38cf0422017-08-07 10:15:31 +02005620 return -EOPNOTSUPP;
Amritha Nambiar56f36ac2017-03-15 10:39:25 -07005621
Jiri Pirkode4784c2017-08-07 10:15:32 +02005622 mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS;
Amritha Nambiar56f36ac2017-03-15 10:39:25 -07005623
Jiri Pirkode4784c2017-08-07 10:15:32 +02005624 return i40e_setup_tc(netdev, mqprio->num_tc);
John Fastabende4c67342016-02-16 21:16:15 -08005625}
5626
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005627/**
5628 * i40e_open - Called when a network interface is made active
5629 * @netdev: network interface device structure
5630 *
5631 * The open entry point is called when a network interface is made
5632 * active by the system (IFF_UP). At this point all resources needed
5633 * for transmit and receive operations are allocated, the interrupt
5634 * handler is registered with the OS, the netdev watchdog subtask is
5635 * enabled, and the stack is notified that the interface is ready.
5636 *
5637 * Returns 0 on success, negative value on failure
5638 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005639int i40e_open(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005640{
5641 struct i40e_netdev_priv *np = netdev_priv(netdev);
5642 struct i40e_vsi *vsi = np->vsi;
5643 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005644 int err;
5645
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005646 /* disallow open during test or if eeprom is broken */
Jacob Keller0da36b92017-04-19 09:25:55 -04005647 if (test_bit(__I40E_TESTING, pf->state) ||
5648 test_bit(__I40E_BAD_EEPROM, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005649 return -EBUSY;
5650
5651 netif_carrier_off(netdev);
5652
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005653 err = i40e_vsi_open(vsi);
5654 if (err)
5655 return err;
5656
Jesse Brandeburg059dab62014-04-01 09:07:20 +00005657 /* configure global TSO hardware offload settings */
5658 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
5659 TCP_FLAG_FIN) >> 16);
5660 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
5661 TCP_FLAG_FIN |
5662 TCP_FLAG_CWR) >> 16);
5663 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
5664
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07005665 udp_tunnel_get_rx_info(netdev);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005666
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005667 return 0;
5668}
5669
5670/**
5671 * i40e_vsi_open -
5672 * @vsi: the VSI to open
5673 *
5674 * Finish initialization of the VSI.
5675 *
5676 * Returns 0 on success, negative value on failure
Maciej Sosin373149f2017-04-05 07:50:55 -04005677 *
5678 * Note: expects to be called while under rtnl_lock()
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005679 **/
5680int i40e_vsi_open(struct i40e_vsi *vsi)
5681{
5682 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00005683 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005684 int err;
5685
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005686 /* allocate descriptors */
5687 err = i40e_vsi_setup_tx_resources(vsi);
5688 if (err)
5689 goto err_setup_tx;
5690 err = i40e_vsi_setup_rx_resources(vsi);
5691 if (err)
5692 goto err_setup_rx;
5693
5694 err = i40e_vsi_configure(vsi);
5695 if (err)
5696 goto err_setup_rx;
5697
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005698 if (vsi->netdev) {
5699 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
5700 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
5701 err = i40e_vsi_request_irq(vsi, int_name);
5702 if (err)
5703 goto err_setup_rx;
5704
5705 /* Notify the stack of the actual queue counts. */
5706 err = netif_set_real_num_tx_queues(vsi->netdev,
5707 vsi->num_queue_pairs);
5708 if (err)
5709 goto err_set_queues;
5710
5711 err = netif_set_real_num_rx_queues(vsi->netdev,
5712 vsi->num_queue_pairs);
5713 if (err)
5714 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005715
5716 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00005717 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005718 dev_driver_string(&pf->pdev->dev),
5719 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005720 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005721
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005722 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00005723 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005724 goto err_setup_rx;
5725 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005726
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005727 err = i40e_up_complete(vsi);
5728 if (err)
5729 goto err_up_complete;
5730
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005731 return 0;
5732
5733err_up_complete:
5734 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005735err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005736 i40e_vsi_free_irq(vsi);
5737err_setup_rx:
5738 i40e_vsi_free_rx_resources(vsi);
5739err_setup_tx:
5740 i40e_vsi_free_tx_resources(vsi);
5741 if (vsi == pf->vsi[pf->lan_vsi])
Maciej Sosin373149f2017-04-05 07:50:55 -04005742 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED), true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005743
5744 return err;
5745}
5746
5747/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005748 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00005749 * @pf: Pointer to PF
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005750 *
5751 * This function destroys the hlist where all the Flow Director
5752 * filters were saved.
5753 **/
5754static void i40e_fdir_filter_exit(struct i40e_pf *pf)
5755{
5756 struct i40e_fdir_filter *filter;
Jacob Keller0e588de2017-02-06 14:38:50 -08005757 struct i40e_flex_pit *pit_entry, *tmp;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005758 struct hlist_node *node2;
5759
5760 hlist_for_each_entry_safe(filter, node2,
5761 &pf->fdir_filter_list, fdir_node) {
5762 hlist_del(&filter->fdir_node);
5763 kfree(filter);
5764 }
Jacob Keller097dbf52017-02-06 14:38:46 -08005765
Jacob Keller0e588de2017-02-06 14:38:50 -08005766 list_for_each_entry_safe(pit_entry, tmp, &pf->l3_flex_pit_list, list) {
5767 list_del(&pit_entry->list);
5768 kfree(pit_entry);
5769 }
5770 INIT_LIST_HEAD(&pf->l3_flex_pit_list);
5771
5772 list_for_each_entry_safe(pit_entry, tmp, &pf->l4_flex_pit_list, list) {
5773 list_del(&pit_entry->list);
5774 kfree(pit_entry);
5775 }
5776 INIT_LIST_HEAD(&pf->l4_flex_pit_list);
5777
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005778 pf->fdir_pf_active_filters = 0;
Jacob Keller097dbf52017-02-06 14:38:46 -08005779 pf->fd_tcp4_filter_cnt = 0;
5780 pf->fd_udp4_filter_cnt = 0;
Jacob Kellerf223c872017-02-06 14:38:51 -08005781 pf->fd_sctp4_filter_cnt = 0;
Jacob Keller097dbf52017-02-06 14:38:46 -08005782 pf->fd_ip4_filter_cnt = 0;
Jacob Keller3bcee1e2017-02-06 14:38:46 -08005783
5784 /* Reprogram the default input set for TCP/IPv4 */
5785 i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_NONF_IPV4_TCP,
5786 I40E_L3_SRC_MASK | I40E_L3_DST_MASK |
5787 I40E_L4_SRC_MASK | I40E_L4_DST_MASK);
5788
5789 /* Reprogram the default input set for UDP/IPv4 */
5790 i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_NONF_IPV4_UDP,
5791 I40E_L3_SRC_MASK | I40E_L3_DST_MASK |
5792 I40E_L4_SRC_MASK | I40E_L4_DST_MASK);
5793
5794 /* Reprogram the default input set for SCTP/IPv4 */
5795 i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_NONF_IPV4_SCTP,
5796 I40E_L3_SRC_MASK | I40E_L3_DST_MASK |
5797 I40E_L4_SRC_MASK | I40E_L4_DST_MASK);
5798
5799 /* Reprogram the default input set for Other/IPv4 */
5800 i40e_write_fd_input_set(pf, I40E_FILTER_PCTYPE_NONF_IPV4_OTHER,
5801 I40E_L3_SRC_MASK | I40E_L3_DST_MASK);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005802}
5803
5804/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005805 * i40e_close - Disables a network interface
5806 * @netdev: network interface device structure
5807 *
5808 * The close entry point is called when an interface is de-activated
5809 * by the OS. The hardware is still under the driver's control, but
5810 * this netdev interface is disabled.
5811 *
5812 * Returns 0, this is not allowed to fail
5813 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005814int i40e_close(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005815{
5816 struct i40e_netdev_priv *np = netdev_priv(netdev);
5817 struct i40e_vsi *vsi = np->vsi;
5818
Shannon Nelson90ef8d42014-03-14 07:32:26 +00005819 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005820
5821 return 0;
5822}
5823
5824/**
5825 * i40e_do_reset - Start a PF or Core Reset sequence
5826 * @pf: board private structure
5827 * @reset_flags: which reset is requested
Maciej Sosin373149f2017-04-05 07:50:55 -04005828 * @lock_acquired: indicates whether or not the lock has been acquired
5829 * before this function was called.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005830 *
5831 * The essential difference in resets is that the PF Reset
5832 * doesn't clear the packet buffers, doesn't reset the PE
5833 * firmware, and doesn't bother the other PFs on the chip.
5834 **/
Maciej Sosin373149f2017-04-05 07:50:55 -04005835void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags, bool lock_acquired)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005836{
5837 u32 val;
5838
5839 WARN_ON(in_interrupt());
5840
Mitch Williams263fc482014-04-23 04:50:11 +00005841
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005842 /* do the biggest reset indicated */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005843 if (reset_flags & BIT_ULL(__I40E_GLOBAL_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005844
5845 /* Request a Global Reset
5846 *
5847 * This will start the chip's countdown to the actual full
5848 * chip reset event, and a warning interrupt to be sent
5849 * to all PFs, including the requestor. Our handler
5850 * for the warning interrupt will deal with the shutdown
5851 * and recovery of the switch setup.
5852 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005853 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005854 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5855 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5856 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5857
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005858 } else if (reset_flags & BIT_ULL(__I40E_CORE_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005859
5860 /* Request a Core Reset
5861 *
5862 * Same as Global Reset, except does *not* include the MAC/PHY
5863 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005864 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005865 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5866 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5867 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5868 i40e_flush(&pf->hw);
5869
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005870 } else if (reset_flags & BIT_ULL(__I40E_PF_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005871
5872 /* Request a PF Reset
5873 *
5874 * Resets only the PF-specific registers
5875 *
5876 * This goes directly to the tear-down and rebuild of
5877 * the switch, since we need to do all the recovery as
5878 * for the Core Reset.
5879 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005880 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Maciej Sosin373149f2017-04-05 07:50:55 -04005881 i40e_handle_reset_warning(pf, lock_acquired);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005882
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005883 } else if (reset_flags & BIT_ULL(__I40E_REINIT_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005884 int v;
5885
5886 /* Find the VSI(s) that requested a re-init */
5887 dev_info(&pf->pdev->dev,
5888 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005889 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005890 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005891
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005892 if (vsi != NULL &&
Jacob Kellerd19cb642017-04-21 13:38:05 -07005893 test_and_clear_bit(__I40E_VSI_REINIT_REQUESTED,
Jacob Keller0da36b92017-04-19 09:25:55 -04005894 vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005895 i40e_vsi_reinit_locked(pf->vsi[v]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005896 }
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005897 } else if (reset_flags & BIT_ULL(__I40E_DOWN_REQUESTED)) {
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005898 int v;
5899
5900 /* Find the VSI(s) that needs to be brought down */
5901 dev_info(&pf->pdev->dev, "VSI down requested\n");
5902 for (v = 0; v < pf->num_alloc_vsi; v++) {
5903 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005904
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005905 if (vsi != NULL &&
Jacob Kellerd19cb642017-04-21 13:38:05 -07005906 test_and_clear_bit(__I40E_VSI_DOWN_REQUESTED,
Jacob Keller0da36b92017-04-19 09:25:55 -04005907 vsi->state)) {
5908 set_bit(__I40E_VSI_DOWN, vsi->state);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005909 i40e_down(vsi);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005910 }
5911 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005912 } else {
5913 dev_info(&pf->pdev->dev,
5914 "bad reset request 0x%08x\n", reset_flags);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005915 }
5916}
5917
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005918#ifdef CONFIG_I40E_DCB
5919/**
5920 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5921 * @pf: board private structure
5922 * @old_cfg: current DCB config
5923 * @new_cfg: new DCB config
5924 **/
5925bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5926 struct i40e_dcbx_config *old_cfg,
5927 struct i40e_dcbx_config *new_cfg)
5928{
5929 bool need_reconfig = false;
5930
5931 /* Check if ETS configuration has changed */
5932 if (memcmp(&new_cfg->etscfg,
5933 &old_cfg->etscfg,
5934 sizeof(new_cfg->etscfg))) {
5935 /* If Priority Table has changed reconfig is needed */
5936 if (memcmp(&new_cfg->etscfg.prioritytable,
5937 &old_cfg->etscfg.prioritytable,
5938 sizeof(new_cfg->etscfg.prioritytable))) {
5939 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005940 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005941 }
5942
5943 if (memcmp(&new_cfg->etscfg.tcbwtable,
5944 &old_cfg->etscfg.tcbwtable,
5945 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005946 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005947
5948 if (memcmp(&new_cfg->etscfg.tsatable,
5949 &old_cfg->etscfg.tsatable,
5950 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005951 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005952 }
5953
5954 /* Check if PFC configuration has changed */
5955 if (memcmp(&new_cfg->pfc,
5956 &old_cfg->pfc,
5957 sizeof(new_cfg->pfc))) {
5958 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005959 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005960 }
5961
5962 /* Check if APP Table has changed */
5963 if (memcmp(&new_cfg->app,
5964 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005965 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005966 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005967 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005968 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005969
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005970 dev_dbg(&pf->pdev->dev, "dcb need_reconfig=%d\n", need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005971 return need_reconfig;
5972}
5973
5974/**
5975 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5976 * @pf: board private structure
5977 * @e: event info posted on ARQ
5978 **/
5979static int i40e_handle_lldp_event(struct i40e_pf *pf,
5980 struct i40e_arq_event_info *e)
5981{
5982 struct i40e_aqc_lldp_get_mib *mib =
5983 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5984 struct i40e_hw *hw = &pf->hw;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005985 struct i40e_dcbx_config tmp_dcbx_cfg;
5986 bool need_reconfig = false;
5987 int ret = 0;
5988 u8 type;
5989
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005990 /* Not DCB capable or capability disabled */
David Ertmanea6acb72016-09-20 07:10:50 -07005991 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005992 return ret;
5993
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005994 /* Ignore if event is not for Nearest Bridge */
5995 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5996 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005997 dev_dbg(&pf->pdev->dev, "LLDP event mib bridge type 0x%x\n", type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005998 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5999 return ret;
6000
6001 /* Check MIB Type and return if event for Remote MIB update */
6002 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00006003 dev_dbg(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04006004 "LLDP event mib type %s\n", type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006005 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
6006 /* Update the remote cached instance and return */
6007 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
6008 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
6009 &hw->remote_dcbx_config);
6010 goto exit;
6011 }
6012
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00006013 /* Store the old configuration */
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07006014 tmp_dcbx_cfg = hw->local_dcbx_config;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00006015
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006016 /* Reset the old DCBx configuration data */
6017 memset(&hw->local_dcbx_config, 0, sizeof(hw->local_dcbx_config));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00006018 /* Get updated DCBX data from firmware */
6019 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006020 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006021 dev_info(&pf->pdev->dev,
6022 "Failed querying DCB configuration data from firmware, err %s aq_err %s\n",
6023 i40e_stat_str(&pf->hw, ret),
6024 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006025 goto exit;
6026 }
6027
6028 /* No change detected in DCBX configs */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006029 if (!memcmp(&tmp_dcbx_cfg, &hw->local_dcbx_config,
6030 sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006031 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006032 goto exit;
6033 }
6034
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006035 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg,
6036 &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006037
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006038 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg, &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006039
6040 if (!need_reconfig)
6041 goto exit;
6042
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006043 /* Enable DCB tagging only when more than one TC */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00006044 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
Neerav Parikh4d9b6042014-05-22 06:31:51 +00006045 pf->flags |= I40E_FLAG_DCB_ENABLED;
6046 else
6047 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
6048
Jacob Keller0da36b92017-04-19 09:25:55 -04006049 set_bit(__I40E_PORT_SUSPENDED, pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006050 /* Reconfiguration needed quiesce all VSIs */
6051 i40e_pf_quiesce_all_vsi(pf);
6052
6053 /* Changes in configuration update VEB/VSI */
6054 i40e_dcb_reconfigure(pf);
6055
Neerav Parikh2fd75f32014-11-12 00:18:20 +00006056 ret = i40e_resume_port_tx(pf);
6057
Jacob Keller0da36b92017-04-19 09:25:55 -04006058 clear_bit(__I40E_PORT_SUSPENDED, pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00006059 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00006060 if (ret)
6061 goto exit;
6062
Neerav Parikh3fe06f42016-02-17 16:12:15 -08006063 /* Wait for the PF's queues to be disabled */
6064 ret = i40e_pf_wait_queues_disabled(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00006065 if (ret) {
6066 /* Schedule PF reset to recover */
Jacob Keller0da36b92017-04-19 09:25:55 -04006067 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Parikh, Neerav11e47702015-02-21 06:43:55 +00006068 i40e_service_event_schedule(pf);
6069 } else {
Neerav Parikh2fd75f32014-11-12 00:18:20 +00006070 i40e_pf_unquiesce_all_vsi(pf);
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08006071 pf->flags |= (I40E_FLAG_SERVICE_CLIENT_REQUESTED |
6072 I40E_FLAG_CLIENT_L2_CHANGE);
Parikh, Neerav11e47702015-02-21 06:43:55 +00006073 }
6074
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006075exit:
6076 return ret;
6077}
6078#endif /* CONFIG_I40E_DCB */
6079
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006080/**
Anjali Singhai Jain233261862013-11-26 10:49:22 +00006081 * i40e_do_reset_safe - Protected reset path for userland calls.
6082 * @pf: board private structure
6083 * @reset_flags: which reset is requested
6084 *
6085 **/
6086void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
6087{
6088 rtnl_lock();
Maciej Sosin373149f2017-04-05 07:50:55 -04006089 i40e_do_reset(pf, reset_flags, true);
Anjali Singhai Jain233261862013-11-26 10:49:22 +00006090 rtnl_unlock();
6091}
6092
6093/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006094 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
6095 * @pf: board private structure
6096 * @e: event info posted on ARQ
6097 *
6098 * Handler for LAN Queue Overflow Event generated by the firmware for PF
6099 * and VF queues
6100 **/
6101static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
6102 struct i40e_arq_event_info *e)
6103{
6104 struct i40e_aqc_lan_overflow *data =
6105 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
6106 u32 queue = le32_to_cpu(data->prtdcb_rupto);
6107 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
6108 struct i40e_hw *hw = &pf->hw;
6109 struct i40e_vf *vf;
6110 u16 vf_id;
6111
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006112 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
6113 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006114
6115 /* Queue belongs to VF, find the VF and issue VF reset */
6116 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
6117 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
6118 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
6119 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
6120 vf_id -= hw->func_caps.vf_base_id;
6121 vf = &pf->vf[vf_id];
6122 i40e_vc_notify_vf_reset(vf);
6123 /* Allow VF to process pending reset notification */
6124 msleep(20);
6125 i40e_reset_vf(vf, false);
6126 }
6127}
6128
6129/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00006130 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
6131 * @pf: board private structure
6132 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006133u32 i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain12957382014-06-04 04:22:47 +00006134{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006135 u32 val, fcnt_prog;
Anjali Singhai Jain12957382014-06-04 04:22:47 +00006136
6137 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
6138 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
6139 return fcnt_prog;
6140}
6141
6142/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006143 * i40e_get_current_fd_count - Get total FD filters programmed for this PF
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006144 * @pf: board private structure
6145 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006146u32 i40e_get_current_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006147{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006148 u32 val, fcnt_prog;
6149
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006150 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
6151 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
6152 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
6153 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
6154 return fcnt_prog;
6155}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006156
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006157/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006158 * i40e_get_global_fd_count - Get total FD filters programmed on device
6159 * @pf: board private structure
6160 **/
6161u32 i40e_get_global_fd_count(struct i40e_pf *pf)
6162{
6163 u32 val, fcnt_prog;
6164
6165 val = rd32(&pf->hw, I40E_GLQF_FDCNT_0);
6166 fcnt_prog = (val & I40E_GLQF_FDCNT_0_GUARANT_CNT_MASK) +
6167 ((val & I40E_GLQF_FDCNT_0_BESTCNT_MASK) >>
6168 I40E_GLQF_FDCNT_0_BESTCNT_SHIFT);
6169 return fcnt_prog;
6170}
6171
6172/**
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006173 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
6174 * @pf: board private structure
6175 **/
6176void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
6177{
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04006178 struct i40e_fdir_filter *filter;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006179 u32 fcnt_prog, fcnt_avail;
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04006180 struct hlist_node *node;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006181
Jacob Keller0da36b92017-04-19 09:25:55 -04006182 if (test_bit(__I40E_FD_FLUSH_REQUESTED, pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006183 return;
6184
Jacob Keller47994c12017-04-19 09:25:57 -04006185 /* Check if we have enough room to re-enable FDir SB capability. */
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006186 fcnt_prog = i40e_get_global_fd_count(pf);
Anjali Singhai Jain12957382014-06-04 04:22:47 +00006187 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006188 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
6189 (pf->fd_add_err == 0) ||
6190 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Jacob Keller47994c12017-04-19 09:25:57 -04006191 if (pf->flags & I40E_FLAG_FD_SB_AUTO_DISABLED) {
6192 pf->flags &= ~I40E_FLAG_FD_SB_AUTO_DISABLED;
6193 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
6194 (I40E_DEBUG_FD & pf->hw.debug_mask))
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04006195 dev_info(&pf->pdev->dev, "FD Sideband/ntuple is being enabled since we have space in the table now\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006196 }
6197 }
Jacob Kellera3417d22016-09-06 18:05:10 -07006198
Jacob Keller47994c12017-04-19 09:25:57 -04006199 /* We should wait for even more space before re-enabling ATR.
6200 * Additionally, we cannot enable ATR as long as we still have TCP SB
6201 * rules active.
Jacob Kellera3417d22016-09-06 18:05:10 -07006202 */
Jacob Keller47994c12017-04-19 09:25:57 -04006203 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) &&
6204 (pf->fd_tcp4_filter_cnt == 0)) {
6205 if (pf->flags & I40E_FLAG_FD_ATR_AUTO_DISABLED) {
6206 pf->flags &= ~I40E_FLAG_FD_ATR_AUTO_DISABLED;
6207 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
6208 (I40E_DEBUG_FD & pf->hw.debug_mask))
Jacob Kellera3417d22016-09-06 18:05:10 -07006209 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table and there are no conflicting ntuple rules\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006210 }
6211 }
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04006212
6213 /* if hw had a problem adding a filter, delete it */
6214 if (pf->fd_inv > 0) {
6215 hlist_for_each_entry_safe(filter, node,
6216 &pf->fdir_filter_list, fdir_node) {
6217 if (filter->fd_id == pf->fd_inv) {
6218 hlist_del(&filter->fdir_node);
6219 kfree(filter);
6220 pf->fdir_pf_active_filters--;
6221 }
6222 }
6223 }
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006224}
6225
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006226#define I40E_MIN_FD_FLUSH_INTERVAL 10
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006227#define I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE 30
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006228/**
6229 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
6230 * @pf: board private structure
6231 **/
6232static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
6233{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006234 unsigned long min_flush_time;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006235 int flush_wait_retry = 50;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006236 bool disable_atr = false;
6237 int fd_room;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006238 int reg;
6239
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006240 if (!time_after(jiffies, pf->fd_flush_timestamp +
6241 (I40E_MIN_FD_FLUSH_INTERVAL * HZ)))
6242 return;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006243
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006244 /* If the flush is happening too quick and we have mostly SB rules we
6245 * should not re-enable ATR for some time.
6246 */
6247 min_flush_time = pf->fd_flush_timestamp +
6248 (I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE * HZ);
6249 fd_room = pf->fdir_pf_filter_count - pf->fdir_pf_active_filters;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006250
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006251 if (!(time_after(jiffies, min_flush_time)) &&
6252 (fd_room < I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) {
6253 if (I40E_DEBUG_FD & pf->hw.debug_mask)
6254 dev_info(&pf->pdev->dev, "ATR disabled, not enough FD filter space.\n");
6255 disable_atr = true;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006256 }
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006257
6258 pf->fd_flush_timestamp = jiffies;
Jacob Keller47994c12017-04-19 09:25:57 -04006259 pf->flags |= I40E_FLAG_FD_ATR_AUTO_DISABLED;
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006260 /* flush all filters */
6261 wr32(&pf->hw, I40E_PFQF_CTL_1,
6262 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
6263 i40e_flush(&pf->hw);
6264 pf->fd_flush_cnt++;
6265 pf->fd_add_err = 0;
6266 do {
6267 /* Check FD flush status every 5-6msec */
6268 usleep_range(5000, 6000);
6269 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
6270 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
6271 break;
6272 } while (flush_wait_retry--);
6273 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
6274 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
6275 } else {
6276 /* replay sideband filters */
6277 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
Jacob Keller097dbf52017-02-06 14:38:46 -08006278 if (!disable_atr && !pf->fd_tcp4_filter_cnt)
Jacob Keller47994c12017-04-19 09:25:57 -04006279 pf->flags &= ~I40E_FLAG_FD_ATR_AUTO_DISABLED;
Jacob Keller0da36b92017-04-19 09:25:55 -04006280 clear_bit(__I40E_FD_FLUSH_REQUESTED, pf->state);
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04006281 if (I40E_DEBUG_FD & pf->hw.debug_mask)
6282 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
6283 }
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006284}
6285
6286/**
6287 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
6288 * @pf: board private structure
6289 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006290u32 i40e_get_current_atr_cnt(struct i40e_pf *pf)
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006291{
6292 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
6293}
6294
6295/* We can see up to 256 filter programming desc in transit if the filters are
6296 * being applied really fast; before we see the first
6297 * filter miss error on Rx queue 0. Accumulating enough error messages before
6298 * reacting will make sure we don't cause flush too often.
6299 */
6300#define I40E_MAX_FD_PROGRAM_ERROR 256
6301
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006302/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006303 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
6304 * @pf: board private structure
6305 **/
6306static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
6307{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006308
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006309 /* if interface is down do nothing */
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03006310 if (test_bit(__I40E_DOWN, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006311 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006312
Jacob Keller0da36b92017-04-19 09:25:55 -04006313 if (test_bit(__I40E_FD_FLUSH_REQUESTED, pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006314 i40e_fdir_flush_and_replay(pf);
6315
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006316 i40e_fdir_check_and_reenable(pf);
6317
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006318}
6319
6320/**
6321 * i40e_vsi_link_event - notify VSI of a link event
6322 * @vsi: vsi to be notified
6323 * @link_up: link up or down
6324 **/
6325static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
6326{
Jacob Keller0da36b92017-04-19 09:25:55 -04006327 if (!vsi || test_bit(__I40E_VSI_DOWN, vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006328 return;
6329
6330 switch (vsi->type) {
6331 case I40E_VSI_MAIN:
6332 if (!vsi->netdev || !vsi->netdev_registered)
6333 break;
6334
6335 if (link_up) {
6336 netif_carrier_on(vsi->netdev);
6337 netif_tx_wake_all_queues(vsi->netdev);
6338 } else {
6339 netif_carrier_off(vsi->netdev);
6340 netif_tx_stop_all_queues(vsi->netdev);
6341 }
6342 break;
6343
6344 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006345 case I40E_VSI_VMDQ2:
6346 case I40E_VSI_CTRL:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06006347 case I40E_VSI_IWARP:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006348 case I40E_VSI_MIRROR:
6349 default:
6350 /* there is no notification for other VSIs */
6351 break;
6352 }
6353}
6354
6355/**
6356 * i40e_veb_link_event - notify elements on the veb of a link event
6357 * @veb: veb to be notified
6358 * @link_up: link up or down
6359 **/
6360static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
6361{
6362 struct i40e_pf *pf;
6363 int i;
6364
6365 if (!veb || !veb->pf)
6366 return;
6367 pf = veb->pf;
6368
6369 /* depth first... */
6370 for (i = 0; i < I40E_MAX_VEB; i++)
6371 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
6372 i40e_veb_link_event(pf->veb[i], link_up);
6373
6374 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00006375 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006376 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
6377 i40e_vsi_link_event(pf->vsi[i], link_up);
6378}
6379
6380/**
6381 * i40e_link_event - Update netif_carrier status
6382 * @pf: board private structure
6383 **/
6384static void i40e_link_event(struct i40e_pf *pf)
6385{
Mitch Williams320684c2014-10-17 03:14:43 +00006386 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006387 u8 new_link_speed, old_link_speed;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006388 i40e_status status;
6389 bool new_link, old_link;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006390
Catherine Sullivan1f9610e2015-10-21 19:47:09 -04006391 /* save off old link status information */
6392 pf->hw.phy.link_info_old = pf->hw.phy.link_info;
6393
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006394 /* set this to force the get_link_status call to refresh state */
6395 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006396
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006397 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006398
6399 status = i40e_get_link_status(&pf->hw, &new_link);
Harshitha Ramamurthyae136702016-12-12 15:44:16 -08006400
6401 /* On success, disable temp link polling */
6402 if (status == I40E_SUCCESS) {
6403 if (pf->flags & I40E_FLAG_TEMP_LINK_POLLING)
6404 pf->flags &= ~I40E_FLAG_TEMP_LINK_POLLING;
6405 } else {
6406 /* Enable link polling temporarily until i40e_get_link_status
6407 * returns I40E_SUCCESS
6408 */
6409 pf->flags |= I40E_FLAG_TEMP_LINK_POLLING;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006410 dev_dbg(&pf->pdev->dev, "couldn't get link state, status: %d\n",
6411 status);
6412 return;
6413 }
6414
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006415 old_link_speed = pf->hw.phy.link_info_old.link_speed;
6416 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006417
6418 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006419 new_link_speed == old_link_speed &&
Jacob Keller0da36b92017-04-19 09:25:55 -04006420 (test_bit(__I40E_VSI_DOWN, vsi->state) ||
Mitch Williams320684c2014-10-17 03:14:43 +00006421 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006422 return;
Mitch Williams320684c2014-10-17 03:14:43 +00006423
Sudheer Mogilappagari9a034492017-07-14 09:10:16 -04006424 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006425
6426 /* Notify the base of the switch tree connected to
6427 * the link. Floating VEBs are not notified.
6428 */
6429 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
6430 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
6431 else
Mitch Williams320684c2014-10-17 03:14:43 +00006432 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006433
6434 if (pf->vf)
6435 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006436
6437 if (pf->flags & I40E_FLAG_PTP)
6438 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006439}
6440
6441/**
Shannon Nelson21536712014-10-25 10:35:25 +00006442 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006443 * @pf: board private structure
6444 **/
6445static void i40e_watchdog_subtask(struct i40e_pf *pf)
6446{
6447 int i;
6448
6449 /* if interface is down do nothing */
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03006450 if (test_bit(__I40E_DOWN, pf->state) ||
Jacob Keller0da36b92017-04-19 09:25:55 -04006451 test_bit(__I40E_CONFIG_BUSY, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006452 return;
6453
Shannon Nelson21536712014-10-25 10:35:25 +00006454 /* make sure we don't do these things too often */
6455 if (time_before(jiffies, (pf->service_timer_previous +
6456 pf->service_timer_period)))
6457 return;
6458 pf->service_timer_previous = jiffies;
6459
Harshitha Ramamurthyae136702016-12-12 15:44:16 -08006460 if ((pf->flags & I40E_FLAG_LINK_POLLING_ENABLED) ||
6461 (pf->flags & I40E_FLAG_TEMP_LINK_POLLING))
Shannon Nelson9ac77262015-08-27 11:42:40 -04006462 i40e_link_event(pf);
Shannon Nelson21536712014-10-25 10:35:25 +00006463
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006464 /* Update the stats for active netdevs so the network stack
6465 * can look at updated numbers whenever it cares to
6466 */
Mitch Williams505682c2014-05-20 08:01:37 +00006467 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006468 if (pf->vsi[i] && pf->vsi[i]->netdev)
6469 i40e_update_stats(pf->vsi[i]);
6470
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04006471 if (pf->flags & I40E_FLAG_VEB_STATS_ENABLED) {
6472 /* Update the stats for the active switching components */
6473 for (i = 0; i < I40E_MAX_VEB; i++)
6474 if (pf->veb[i])
6475 i40e_update_veb_stats(pf->veb[i]);
6476 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006477
Jacob Keller61189552017-05-03 10:29:01 -07006478 i40e_ptp_rx_hang(pf);
Jacob Keller0bc07062017-05-03 10:29:02 -07006479 i40e_ptp_tx_hang(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006480}
6481
6482/**
6483 * i40e_reset_subtask - Set up for resetting the device and driver
6484 * @pf: board private structure
6485 **/
6486static void i40e_reset_subtask(struct i40e_pf *pf)
6487{
6488 u32 reset_flags = 0;
6489
Jacob Keller0da36b92017-04-19 09:25:55 -04006490 if (test_bit(__I40E_REINIT_REQUESTED, pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006491 reset_flags |= BIT(__I40E_REINIT_REQUESTED);
Jacob Keller0da36b92017-04-19 09:25:55 -04006492 clear_bit(__I40E_REINIT_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006493 }
Jacob Keller0da36b92017-04-19 09:25:55 -04006494 if (test_bit(__I40E_PF_RESET_REQUESTED, pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006495 reset_flags |= BIT(__I40E_PF_RESET_REQUESTED);
Jacob Keller0da36b92017-04-19 09:25:55 -04006496 clear_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006497 }
Jacob Keller0da36b92017-04-19 09:25:55 -04006498 if (test_bit(__I40E_CORE_RESET_REQUESTED, pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006499 reset_flags |= BIT(__I40E_CORE_RESET_REQUESTED);
Jacob Keller0da36b92017-04-19 09:25:55 -04006500 clear_bit(__I40E_CORE_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006501 }
Jacob Keller0da36b92017-04-19 09:25:55 -04006502 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006503 reset_flags |= BIT(__I40E_GLOBAL_RESET_REQUESTED);
Jacob Keller0da36b92017-04-19 09:25:55 -04006504 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006505 }
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03006506 if (test_bit(__I40E_DOWN_REQUESTED, pf->state)) {
6507 reset_flags |= BIT(__I40E_DOWN_REQUESTED);
6508 clear_bit(__I40E_DOWN_REQUESTED, pf->state);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006509 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006510
6511 /* If there's a recovery already waiting, it takes
6512 * precedence before starting a new reset sequence.
6513 */
Jacob Keller0da36b92017-04-19 09:25:55 -04006514 if (test_bit(__I40E_RESET_INTR_RECEIVED, pf->state)) {
Maciej Sosin373149f2017-04-05 07:50:55 -04006515 i40e_prep_for_reset(pf, false);
6516 i40e_reset(pf);
6517 i40e_rebuild(pf, false, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006518 }
6519
6520 /* If we're already down or resetting, just bail */
6521 if (reset_flags &&
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03006522 !test_bit(__I40E_DOWN, pf->state) &&
Jacob Keller0da36b92017-04-19 09:25:55 -04006523 !test_bit(__I40E_CONFIG_BUSY, pf->state)) {
Jacob Kellerdfc4ff62017-06-07 05:43:13 -04006524 i40e_do_reset(pf, reset_flags, false);
Maciej Sosin373149f2017-04-05 07:50:55 -04006525 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006526}
6527
6528/**
6529 * i40e_handle_link_event - Handle link event
6530 * @pf: board private structure
6531 * @e: event info posted on ARQ
6532 **/
6533static void i40e_handle_link_event(struct i40e_pf *pf,
6534 struct i40e_arq_event_info *e)
6535{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006536 struct i40e_aqc_get_link_status *status =
6537 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006538
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006539 /* Do a new status request to re-enable LSE reporting
6540 * and load new status information into the hw struct
6541 * This completely ignores any state information
6542 * in the ARQ event info, instead choosing to always
6543 * issue the AQ update link status command.
6544 */
6545 i40e_link_event(pf);
6546
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00006547 /* check for unqualified module, if link is down */
6548 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
6549 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
6550 (!(status->link_info & I40E_AQ_LINK_UP)))
6551 dev_err(&pf->pdev->dev,
6552 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006553}
6554
6555/**
6556 * i40e_clean_adminq_subtask - Clean the AdminQ rings
6557 * @pf: board private structure
6558 **/
6559static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
6560{
6561 struct i40e_arq_event_info event;
6562 struct i40e_hw *hw = &pf->hw;
6563 u16 pending, i = 0;
6564 i40e_status ret;
6565 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00006566 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006567 u32 val;
6568
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006569 /* Do not run clean AQ when PF reset fails */
Jacob Keller0da36b92017-04-19 09:25:55 -04006570 if (test_bit(__I40E_RESET_FAILED, pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006571 return;
6572
Shannon Nelson86df2422014-05-20 08:01:35 +00006573 /* check for error indications */
6574 val = rd32(&pf->hw, pf->hw.aq.arq.len);
6575 oldval = val;
6576 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006577 if (hw->debug_mask & I40E_DEBUG_AQ)
6578 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006579 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
6580 }
6581 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006582 if (hw->debug_mask & I40E_DEBUG_AQ)
6583 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006584 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
Mitch Williams1d0a4ad2015-12-23 12:05:48 -08006585 pf->arq_overflows++;
Shannon Nelson86df2422014-05-20 08:01:35 +00006586 }
6587 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006588 if (hw->debug_mask & I40E_DEBUG_AQ)
6589 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006590 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
6591 }
6592 if (oldval != val)
6593 wr32(&pf->hw, pf->hw.aq.arq.len, val);
6594
6595 val = rd32(&pf->hw, pf->hw.aq.asq.len);
6596 oldval = val;
6597 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006598 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6599 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006600 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
6601 }
6602 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006603 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6604 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006605 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
6606 }
6607 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006608 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6609 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006610 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
6611 }
6612 if (oldval != val)
6613 wr32(&pf->hw, pf->hw.aq.asq.len, val);
6614
Mitch Williams1001dc32014-11-11 20:02:19 +00006615 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
6616 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006617 if (!event.msg_buf)
6618 return;
6619
6620 do {
6621 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00006622 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006623 break;
Mitch Williams56497972014-06-04 08:45:18 +00006624 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006625 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
6626 break;
6627 }
6628
6629 opcode = le16_to_cpu(event.desc.opcode);
6630 switch (opcode) {
6631
6632 case i40e_aqc_opc_get_link_status:
6633 i40e_handle_link_event(pf, &event);
6634 break;
6635 case i40e_aqc_opc_send_msg_to_pf:
6636 ret = i40e_vc_process_vf_msg(pf,
6637 le16_to_cpu(event.desc.retval),
6638 le32_to_cpu(event.desc.cookie_high),
6639 le32_to_cpu(event.desc.cookie_low),
6640 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00006641 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006642 break;
6643 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006644 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006645#ifdef CONFIG_I40E_DCB
6646 rtnl_lock();
6647 ret = i40e_handle_lldp_event(pf, &event);
6648 rtnl_unlock();
6649#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006650 break;
6651 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006652 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006653 i40e_handle_lan_overflow_event(pf, &event);
6654 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00006655 case i40e_aqc_opc_send_msg_to_peer:
6656 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
6657 break;
Shannon Nelson91a0f932015-03-19 14:32:01 -07006658 case i40e_aqc_opc_nvm_erase:
6659 case i40e_aqc_opc_nvm_update:
Michal Kosiarz00ada502015-11-19 11:34:20 -08006660 case i40e_aqc_opc_oem_post_update:
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08006661 i40e_debug(&pf->hw, I40E_DEBUG_NVM,
6662 "ARQ NVM operation 0x%04x completed\n",
6663 opcode);
Shannon Nelson91a0f932015-03-19 14:32:01 -07006664 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006665 default:
6666 dev_info(&pf->pdev->dev,
Shannon Nelson56e5ca62016-03-10 14:59:48 -08006667 "ARQ: Unknown event 0x%04x ignored\n",
Shannon Nelson0467bc92013-12-18 13:45:58 +00006668 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006669 break;
6670 }
Christopher N Bednarz1fca3262017-03-10 12:22:03 -08006671 } while (i++ < pf->adminq_work_limit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006672
Christopher N Bednarz1fca3262017-03-10 12:22:03 -08006673 if (i < pf->adminq_work_limit)
Jacob Keller0da36b92017-04-19 09:25:55 -04006674 clear_bit(__I40E_ADMINQ_EVENT_PENDING, pf->state);
Christopher N Bednarz1fca3262017-03-10 12:22:03 -08006675
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006676 /* re-enable Admin queue interrupt cause */
6677 val = rd32(hw, I40E_PFINT_ICR0_ENA);
6678 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
6679 wr32(hw, I40E_PFINT_ICR0_ENA, val);
6680 i40e_flush(hw);
6681
6682 kfree(event.msg_buf);
6683}
6684
6685/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006686 * i40e_verify_eeprom - make sure eeprom is good to use
6687 * @pf: board private structure
6688 **/
6689static void i40e_verify_eeprom(struct i40e_pf *pf)
6690{
6691 int err;
6692
6693 err = i40e_diag_eeprom_test(&pf->hw);
6694 if (err) {
6695 /* retry in case of garbage read */
6696 err = i40e_diag_eeprom_test(&pf->hw);
6697 if (err) {
6698 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
6699 err);
Jacob Keller0da36b92017-04-19 09:25:55 -04006700 set_bit(__I40E_BAD_EEPROM, pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006701 }
6702 }
6703
Jacob Keller0da36b92017-04-19 09:25:55 -04006704 if (!err && test_bit(__I40E_BAD_EEPROM, pf->state)) {
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006705 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
Jacob Keller0da36b92017-04-19 09:25:55 -04006706 clear_bit(__I40E_BAD_EEPROM, pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006707 }
6708}
6709
6710/**
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006711 * i40e_enable_pf_switch_lb
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006712 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006713 *
6714 * enable switch loop back or die - no point in a return value
6715 **/
6716static void i40e_enable_pf_switch_lb(struct i40e_pf *pf)
6717{
6718 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6719 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006720 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006721
6722 ctxt.seid = pf->main_vsi_seid;
6723 ctxt.pf_num = pf->hw.pf_id;
6724 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006725 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6726 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006727 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006728 "couldn't get PF vsi config, err %s aq_err %s\n",
6729 i40e_stat_str(&pf->hw, ret),
6730 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006731 return;
6732 }
6733 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6734 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6735 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6736
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006737 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6738 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006739 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006740 "update vsi switch failed, err %s aq_err %s\n",
6741 i40e_stat_str(&pf->hw, ret),
6742 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006743 }
6744}
6745
6746/**
6747 * i40e_disable_pf_switch_lb
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006748 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006749 *
6750 * disable switch loop back or die - no point in a return value
6751 **/
6752static void i40e_disable_pf_switch_lb(struct i40e_pf *pf)
6753{
6754 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6755 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006756 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006757
6758 ctxt.seid = pf->main_vsi_seid;
6759 ctxt.pf_num = pf->hw.pf_id;
6760 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006761 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6762 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006763 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006764 "couldn't get PF vsi config, err %s aq_err %s\n",
6765 i40e_stat_str(&pf->hw, ret),
6766 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006767 return;
6768 }
6769 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6770 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6771 ctxt.info.switch_id &= ~cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6772
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006773 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6774 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006775 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006776 "update vsi switch failed, err %s aq_err %s\n",
6777 i40e_stat_str(&pf->hw, ret),
6778 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006779 }
6780}
6781
6782/**
Neerav Parikh51616012015-02-06 08:52:14 +00006783 * i40e_config_bridge_mode - Configure the HW bridge mode
6784 * @veb: pointer to the bridge instance
6785 *
6786 * Configure the loop back mode for the LAN VSI that is downlink to the
6787 * specified HW bridge instance. It is expected this function is called
6788 * when a new HW bridge is instantiated.
6789 **/
6790static void i40e_config_bridge_mode(struct i40e_veb *veb)
6791{
6792 struct i40e_pf *pf = veb->pf;
6793
Shannon Nelson6dec1012015-09-28 14:12:30 -04006794 if (pf->hw.debug_mask & I40E_DEBUG_LAN)
6795 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
6796 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
Neerav Parikh51616012015-02-06 08:52:14 +00006797 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
6798 i40e_disable_pf_switch_lb(pf);
6799 else
6800 i40e_enable_pf_switch_lb(pf);
6801}
6802
6803/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006804 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
6805 * @veb: pointer to the VEB instance
6806 *
6807 * This is a recursive function that first builds the attached VSIs then
6808 * recurses in to build the next layer of VEB. We track the connections
6809 * through our own index numbers because the seid's from the HW could
6810 * change across the reset.
6811 **/
6812static int i40e_reconstitute_veb(struct i40e_veb *veb)
6813{
6814 struct i40e_vsi *ctl_vsi = NULL;
6815 struct i40e_pf *pf = veb->pf;
6816 int v, veb_idx;
6817 int ret;
6818
6819 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006820 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006821 if (pf->vsi[v] &&
6822 pf->vsi[v]->veb_idx == veb->idx &&
6823 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
6824 ctl_vsi = pf->vsi[v];
6825 break;
6826 }
6827 }
6828 if (!ctl_vsi) {
6829 dev_info(&pf->pdev->dev,
6830 "missing owner VSI for veb_idx %d\n", veb->idx);
6831 ret = -ENOENT;
6832 goto end_reconstitute;
6833 }
6834 if (ctl_vsi != pf->vsi[pf->lan_vsi])
6835 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
6836 ret = i40e_add_vsi(ctl_vsi);
6837 if (ret) {
6838 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006839 "rebuild of veb_idx %d owner VSI failed: %d\n",
6840 veb->idx, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006841 goto end_reconstitute;
6842 }
6843 i40e_vsi_reset_stats(ctl_vsi);
6844
6845 /* create the VEB in the switch and move the VSI onto the VEB */
6846 ret = i40e_add_veb(veb, ctl_vsi);
6847 if (ret)
6848 goto end_reconstitute;
6849
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07006850 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
6851 veb->bridge_mode = BRIDGE_MODE_VEB;
6852 else
6853 veb->bridge_mode = BRIDGE_MODE_VEPA;
Neerav Parikh51616012015-02-06 08:52:14 +00006854 i40e_config_bridge_mode(veb);
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00006855
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006856 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006857 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006858 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
6859 continue;
6860
6861 if (pf->vsi[v]->veb_idx == veb->idx) {
6862 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04006863
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006864 vsi->uplink_seid = veb->seid;
6865 ret = i40e_add_vsi(vsi);
6866 if (ret) {
6867 dev_info(&pf->pdev->dev,
6868 "rebuild of vsi_idx %d failed: %d\n",
6869 v, ret);
6870 goto end_reconstitute;
6871 }
6872 i40e_vsi_reset_stats(vsi);
6873 }
6874 }
6875
6876 /* create any VEBs attached to this VEB - RECURSION */
6877 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
6878 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
6879 pf->veb[veb_idx]->uplink_seid = veb->seid;
6880 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
6881 if (ret)
6882 break;
6883 }
6884 }
6885
6886end_reconstitute:
6887 return ret;
6888}
6889
6890/**
6891 * i40e_get_capabilities - get info about the HW
6892 * @pf: the PF struct
6893 **/
6894static int i40e_get_capabilities(struct i40e_pf *pf)
6895{
6896 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
6897 u16 data_size;
6898 int buf_len;
6899 int err;
6900
6901 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6902 do {
6903 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6904 if (!cap_buf)
6905 return -ENOMEM;
6906
6907 /* this loads the data into the hw struct for us */
6908 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6909 &data_size,
6910 i40e_aqc_opc_list_func_capabilities,
6911 NULL);
6912 /* data loaded, buffer no longer needed */
6913 kfree(cap_buf);
6914
6915 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6916 /* retry with a larger buffer */
6917 buf_len = data_size;
6918 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6919 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006920 "capability discovery failed, err %s aq_err %s\n",
6921 i40e_stat_str(&pf->hw, err),
6922 i40e_aq_str(&pf->hw,
6923 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006924 return -ENODEV;
6925 }
6926 } while (err);
6927
6928 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6929 dev_info(&pf->pdev->dev,
6930 "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",
6931 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6932 pf->hw.func_caps.num_msix_vectors,
6933 pf->hw.func_caps.num_msix_vectors_vf,
6934 pf->hw.func_caps.fd_filters_guaranteed,
6935 pf->hw.func_caps.fd_filters_best_effort,
6936 pf->hw.func_caps.num_tx_qp,
6937 pf->hw.func_caps.num_vsis);
6938
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006939#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6940 + pf->hw.func_caps.num_vfs)
6941 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6942 dev_info(&pf->pdev->dev,
6943 "got num_vsis %d, setting num_vsis to %d\n",
6944 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6945 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6946 }
6947
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006948 return 0;
6949}
6950
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006951static int i40e_vsi_clear(struct i40e_vsi *vsi);
6952
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006953/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006954 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006955 * @pf: board private structure
6956 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006957static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006958{
6959 struct i40e_vsi *vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006960
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006961 /* quick workaround for an NVM issue that leaves a critical register
6962 * uninitialized
6963 */
6964 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6965 static const u32 hkey[] = {
6966 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6967 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6968 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6969 0x95b3a76d};
Alexander Duyck4b816442016-10-11 15:26:53 -07006970 int i;
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006971
6972 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6973 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6974 }
6975
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006976 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006977 return;
6978
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006979 /* find existing VSI and see if it needs configuring */
Alexander Duyck4b816442016-10-11 15:26:53 -07006980 vsi = i40e_find_vsi_by_type(pf, I40E_VSI_FDIR);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006981
6982 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006983 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006984 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6985 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006986 if (!vsi) {
6987 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006988 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6989 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006990 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006991 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006992
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006993 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006994}
6995
6996/**
6997 * i40e_fdir_teardown - release the Flow Director resources
6998 * @pf: board private structure
6999 **/
7000static void i40e_fdir_teardown(struct i40e_pf *pf)
7001{
Alexander Duyck4b816442016-10-11 15:26:53 -07007002 struct i40e_vsi *vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007003
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00007004 i40e_fdir_filter_exit(pf);
Alexander Duyck4b816442016-10-11 15:26:53 -07007005 vsi = i40e_find_vsi_by_type(pf, I40E_VSI_FDIR);
7006 if (vsi)
7007 i40e_vsi_release(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007008}
7009
7010/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007011 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007012 * @pf: board private structure
Maciej Sosin373149f2017-04-05 07:50:55 -04007013 * @lock_acquired: indicates whether or not the lock has been acquired
7014 * before this function was called.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007015 *
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007016 * Close up the VFs and other things in prep for PF Reset.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007017 **/
Maciej Sosin373149f2017-04-05 07:50:55 -04007018static void i40e_prep_for_reset(struct i40e_pf *pf, bool lock_acquired)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007019{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007020 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00007021 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007022 u32 v;
7023
Jacob Keller0da36b92017-04-19 09:25:55 -04007024 clear_bit(__I40E_RESET_INTR_RECEIVED, pf->state);
7025 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00007026 return;
Mitch Williamsd3ce57342016-03-10 14:59:46 -08007027 if (i40e_check_asq_alive(&pf->hw))
7028 i40e_vc_notify_reset(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007029
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00007030 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007031
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007032 /* quiesce the VSIs and their queues that are not already DOWN */
Maciej Sosin373149f2017-04-05 07:50:55 -04007033 /* pf_quiesce_all_vsi modifies netdev structures -rtnl_lock needed */
7034 if (!lock_acquired)
7035 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007036 i40e_pf_quiesce_all_vsi(pf);
Maciej Sosin373149f2017-04-05 07:50:55 -04007037 if (!lock_acquired)
7038 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007039
Mitch Williams505682c2014-05-20 08:01:37 +00007040 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007041 if (pf->vsi[v])
7042 pf->vsi[v]->seid = 0;
7043 }
7044
7045 i40e_shutdown_adminq(&pf->hw);
7046
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007047 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00007048 if (hw->hmc.hmc_obj) {
7049 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00007050 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00007051 dev_warn(&pf->pdev->dev,
7052 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007053 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007054}
7055
7056/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00007057 * i40e_send_version - update firmware with driver version
7058 * @pf: PF struct
7059 */
7060static void i40e_send_version(struct i40e_pf *pf)
7061{
7062 struct i40e_driver_version dv;
7063
7064 dv.major_version = DRV_VERSION_MAJOR;
7065 dv.minor_version = DRV_VERSION_MINOR;
7066 dv.build_version = DRV_VERSION_BUILD;
7067 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00007068 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00007069 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
7070}
7071
7072/**
Filip Sadowski5bbb2e22017-06-07 05:43:09 -04007073 * i40e_get_oem_version - get OEM specific version information
7074 * @hw: pointer to the hardware structure
7075 **/
7076static void i40e_get_oem_version(struct i40e_hw *hw)
7077{
7078 u16 block_offset = 0xffff;
7079 u16 block_length = 0;
7080 u16 capabilities = 0;
7081 u16 gen_snap = 0;
7082 u16 release = 0;
7083
7084#define I40E_SR_NVM_OEM_VERSION_PTR 0x1B
7085#define I40E_NVM_OEM_LENGTH_OFFSET 0x00
7086#define I40E_NVM_OEM_CAPABILITIES_OFFSET 0x01
7087#define I40E_NVM_OEM_GEN_OFFSET 0x02
7088#define I40E_NVM_OEM_RELEASE_OFFSET 0x03
7089#define I40E_NVM_OEM_CAPABILITIES_MASK 0x000F
7090#define I40E_NVM_OEM_LENGTH 3
7091
7092 /* Check if pointer to OEM version block is valid. */
7093 i40e_read_nvm_word(hw, I40E_SR_NVM_OEM_VERSION_PTR, &block_offset);
7094 if (block_offset == 0xffff)
7095 return;
7096
7097 /* Check if OEM version block has correct length. */
7098 i40e_read_nvm_word(hw, block_offset + I40E_NVM_OEM_LENGTH_OFFSET,
7099 &block_length);
7100 if (block_length < I40E_NVM_OEM_LENGTH)
7101 return;
7102
7103 /* Check if OEM version format is as expected. */
7104 i40e_read_nvm_word(hw, block_offset + I40E_NVM_OEM_CAPABILITIES_OFFSET,
7105 &capabilities);
7106 if ((capabilities & I40E_NVM_OEM_CAPABILITIES_MASK) != 0)
7107 return;
7108
7109 i40e_read_nvm_word(hw, block_offset + I40E_NVM_OEM_GEN_OFFSET,
7110 &gen_snap);
7111 i40e_read_nvm_word(hw, block_offset + I40E_NVM_OEM_RELEASE_OFFSET,
7112 &release);
7113 hw->nvm.oem_ver = (gen_snap << I40E_OEM_SNAP_SHIFT) | release;
7114 hw->nvm.eetrack = I40E_OEM_EETRACK_ID;
7115}
7116
7117/**
Maciej Sosin373149f2017-04-05 07:50:55 -04007118 * i40e_reset - wait for core reset to finish reset, reset pf if corer not seen
7119 * @pf: board private structure
7120 **/
7121static int i40e_reset(struct i40e_pf *pf)
7122{
7123 struct i40e_hw *hw = &pf->hw;
7124 i40e_status ret;
7125
7126 ret = i40e_pf_reset(hw);
7127 if (ret) {
7128 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Jacob Keller0da36b92017-04-19 09:25:55 -04007129 set_bit(__I40E_RESET_FAILED, pf->state);
7130 clear_bit(__I40E_RESET_RECOVERY_PENDING, pf->state);
Maciej Sosin373149f2017-04-05 07:50:55 -04007131 } else {
7132 pf->pfr_count++;
7133 }
7134 return ret;
7135}
7136
7137/**
7138 * i40e_rebuild - rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007139 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007140 * @reinit: if the Main VSI needs to re-initialized.
Maciej Sosin373149f2017-04-05 07:50:55 -04007141 * @lock_acquired: indicates whether or not the lock has been acquired
7142 * before this function was called.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007143 **/
Maciej Sosin373149f2017-04-05 07:50:55 -04007144static void i40e_rebuild(struct i40e_pf *pf, bool reinit, bool lock_acquired)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007145{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007146 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00007147 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007148 i40e_status ret;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04007149 u32 val;
Maciej Sosin373149f2017-04-05 07:50:55 -04007150 int v;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007151
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -03007152 if (test_bit(__I40E_DOWN, pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00007153 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00007154 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007155
7156 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
7157 ret = i40e_init_adminq(&pf->hw);
7158 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007159 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, err %s aq_err %s\n",
7160 i40e_stat_str(&pf->hw, ret),
7161 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00007162 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007163 }
Filip Sadowski5bbb2e22017-06-07 05:43:09 -04007164 i40e_get_oem_version(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007165
Shannon Nelson4eb3f762014-03-06 08:59:58 +00007166 /* re-verify the eeprom if we just had an EMP reset */
Jacob Keller0da36b92017-04-19 09:25:55 -04007167 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, pf->state))
Shannon Nelson4eb3f762014-03-06 08:59:58 +00007168 i40e_verify_eeprom(pf);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00007169
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00007170 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007171 ret = i40e_get_capabilities(pf);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007172 if (ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007173 goto end_core_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007174
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007175 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
Alexander Duyckc76cb6e2017-02-21 15:55:48 -08007176 hw->func_caps.num_rx_qp, 0, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007177 if (ret) {
7178 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
7179 goto end_core_reset;
7180 }
7181 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
7182 if (ret) {
7183 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
7184 goto end_core_reset;
7185 }
7186
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08007187#ifdef CONFIG_I40E_DCB
7188 ret = i40e_init_pf_dcb(pf);
7189 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00007190 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
7191 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
7192 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08007193 }
7194#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007195 /* do basic switch setup */
Maciej Sosin373149f2017-04-05 07:50:55 -04007196 if (!lock_acquired)
7197 rtnl_lock();
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007198 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007199 if (ret)
Maciej Sosin373149f2017-04-05 07:50:55 -04007200 goto end_unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007201
Shannon Nelson2f0aff42016-01-04 10:33:08 -08007202 /* The driver only wants link up/down and module qualification
7203 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00007204 */
7205 ret = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -08007206 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -07007207 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -08007208 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00007209 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007210 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
7211 i40e_stat_str(&pf->hw, ret),
7212 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00007213
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00007214 /* make sure our flow control settings are restored */
7215 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
7216 if (ret)
Neerav Parikh8279e492015-09-03 17:18:50 -04007217 dev_dbg(&pf->pdev->dev, "setting flow control: ret = %s last_status = %s\n",
7218 i40e_stat_str(&pf->hw, ret),
7219 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00007220
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007221 /* Rebuild the VSIs and VEBs that existed before reset.
7222 * They are still in our local switch element arrays, so only
7223 * need to rebuild the switch model in the HW.
7224 *
7225 * If there were VEBs but the reconstitution failed, we'll try
7226 * try to recover minimal use by getting the basic PF VSI working.
7227 */
7228 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00007229 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007230 /* find the one VEB connected to the MAC, and find orphans */
7231 for (v = 0; v < I40E_MAX_VEB; v++) {
7232 if (!pf->veb[v])
7233 continue;
7234
7235 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
7236 pf->veb[v]->uplink_seid == 0) {
7237 ret = i40e_reconstitute_veb(pf->veb[v]);
7238
7239 if (!ret)
7240 continue;
7241
7242 /* If Main VEB failed, we're in deep doodoo,
7243 * so give up rebuilding the switch and set up
7244 * for minimal rebuild of PF VSI.
7245 * If orphan failed, we'll report the error
7246 * but try to keep going.
7247 */
7248 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
7249 dev_info(&pf->pdev->dev,
7250 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
7251 ret);
7252 pf->vsi[pf->lan_vsi]->uplink_seid
7253 = pf->mac_seid;
7254 break;
7255 } else if (pf->veb[v]->uplink_seid == 0) {
7256 dev_info(&pf->pdev->dev,
7257 "rebuild of orphan VEB failed: %d\n",
7258 ret);
7259 }
7260 }
7261 }
7262 }
7263
7264 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00007265 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007266 /* no VEB, so rebuild only the Main VSI */
7267 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
7268 if (ret) {
7269 dev_info(&pf->pdev->dev,
7270 "rebuild of Main VSI failed: %d\n", ret);
Maciej Sosin373149f2017-04-05 07:50:55 -04007271 goto end_unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007272 }
7273 }
7274
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04007275 /* Reconfigure hardware for allowing smaller MSS in the case
7276 * of TSO, so that we avoid the MDD being fired and causing
7277 * a reset in the case of small MSS+TSO.
7278 */
7279#define I40E_REG_MSS 0x000E64DC
7280#define I40E_REG_MSS_MIN_MASK 0x3FF0000
7281#define I40E_64BYTE_MSS 0x400000
7282 val = rd32(hw, I40E_REG_MSS);
7283 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
7284 val &= ~I40E_REG_MSS_MIN_MASK;
7285 val |= I40E_64BYTE_MSS;
7286 wr32(hw, I40E_REG_MSS, val);
7287 }
7288
Jacob Kellerd36e41d2017-06-23 04:24:46 -04007289 if (pf->hw_features & I40E_HW_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00007290 msleep(75);
7291 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
7292 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007293 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
7294 i40e_stat_str(&pf->hw, ret),
7295 i40e_aq_str(&pf->hw,
7296 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00007297 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007298 /* reinit the misc interrupt */
7299 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7300 ret = i40e_setup_misc_vector(pf);
7301
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04007302 /* Add a filter to drop all Flow control frames from any VSI from being
7303 * transmitted. By doing so we stop a malicious VF from sending out
7304 * PAUSE or PFC frames and potentially controlling traffic for other
7305 * PF/VF VSIs.
7306 * The FW can still send Flow control frames if enabled.
7307 */
7308 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
7309 pf->main_vsi_seid);
7310
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007311 /* restart the VSIs that were rebuilt and running before the reset */
7312 i40e_pf_unquiesce_all_vsi(pf);
7313
Jacob Keller024b05f2017-04-13 04:45:46 -04007314 /* Release the RTNL lock before we start resetting VFs */
7315 if (!lock_acquired)
7316 rtnl_unlock();
7317
Jacob Kellere4b433f2017-04-13 04:45:52 -04007318 i40e_reset_all_vfs(pf, true);
Mitch Williams69f64b22014-02-13 03:48:46 -08007319
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007320 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00007321 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007322
Jacob Keller024b05f2017-04-13 04:45:46 -04007323 /* We've already released the lock, so don't do it again */
7324 goto end_core_reset;
7325
Maciej Sosin373149f2017-04-05 07:50:55 -04007326end_unlock:
Jacob Keller024b05f2017-04-13 04:45:46 -04007327 if (!lock_acquired)
7328 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007329end_core_reset:
Jacob Keller0da36b92017-04-19 09:25:55 -04007330 clear_bit(__I40E_RESET_FAILED, pf->state);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00007331clear_recovery:
Jacob Keller0da36b92017-04-19 09:25:55 -04007332 clear_bit(__I40E_RESET_RECOVERY_PENDING, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007333}
7334
7335/**
Maciej Sosin373149f2017-04-05 07:50:55 -04007336 * i40e_reset_and_rebuild - reset and rebuild using a saved config
7337 * @pf: board private structure
7338 * @reinit: if the Main VSI needs to re-initialized.
7339 * @lock_acquired: indicates whether or not the lock has been acquired
7340 * before this function was called.
7341 **/
7342static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit,
7343 bool lock_acquired)
7344{
7345 int ret;
7346 /* Now we wait for GRST to settle out.
7347 * We don't have to delete the VEBs or VSIs from the hw switch
7348 * because the reset will make them disappear.
7349 */
7350 ret = i40e_reset(pf);
7351 if (!ret)
7352 i40e_rebuild(pf, reinit, lock_acquired);
7353}
7354
7355/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007356 * i40e_handle_reset_warning - prep for the PF to reset, reset and rebuild
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007357 * @pf: board private structure
7358 *
7359 * Close up the VFs and other things in prep for a Core Reset,
7360 * then get ready to rebuild the world.
Maciej Sosin373149f2017-04-05 07:50:55 -04007361 * @lock_acquired: indicates whether or not the lock has been acquired
7362 * before this function was called.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007363 **/
Maciej Sosin373149f2017-04-05 07:50:55 -04007364static void i40e_handle_reset_warning(struct i40e_pf *pf, bool lock_acquired)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007365{
Maciej Sosin373149f2017-04-05 07:50:55 -04007366 i40e_prep_for_reset(pf, lock_acquired);
7367 i40e_reset_and_rebuild(pf, false, lock_acquired);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007368}
7369
7370/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007371 * i40e_handle_mdd_event
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007372 * @pf: pointer to the PF structure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007373 *
7374 * Called from the MDD irq handler to identify possibly malicious vfs
7375 **/
7376static void i40e_handle_mdd_event(struct i40e_pf *pf)
7377{
7378 struct i40e_hw *hw = &pf->hw;
7379 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00007380 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007381 struct i40e_vf *vf;
7382 u32 reg;
7383 int i;
7384
Jacob Keller0da36b92017-04-19 09:25:55 -04007385 if (!test_bit(__I40E_MDD_EVENT_PENDING, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007386 return;
7387
7388 /* find what triggered the MDD event */
7389 reg = rd32(hw, I40E_GL_MDET_TX);
7390 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007391 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
7392 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00007393 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007394 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07007395 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007396 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00007397 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
7398 I40E_GL_MDET_TX_QUEUE_SHIFT) -
7399 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007400 if (netif_msg_tx_err(pf))
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007401 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on TX queue %d PF number 0x%02x VF number 0x%02x\n",
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007402 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007403 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
7404 mdd_detected = true;
7405 }
7406 reg = rd32(hw, I40E_GL_MDET_RX);
7407 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007408 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
7409 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07007410 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007411 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00007412 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
7413 I40E_GL_MDET_RX_QUEUE_SHIFT) -
7414 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007415 if (netif_msg_rx_err(pf))
7416 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
7417 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007418 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
7419 mdd_detected = true;
7420 }
7421
Neerav Parikhdf430b12014-06-04 01:23:15 +00007422 if (mdd_detected) {
7423 reg = rd32(hw, I40E_PF_MDET_TX);
7424 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
7425 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007426 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00007427 pf_mdd_detected = true;
7428 }
7429 reg = rd32(hw, I40E_PF_MDET_RX);
7430 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
7431 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007432 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00007433 pf_mdd_detected = true;
7434 }
7435 /* Queue belongs to the PF, initiate a reset */
7436 if (pf_mdd_detected) {
Jacob Keller0da36b92017-04-19 09:25:55 -04007437 set_bit(__I40E_PF_RESET_REQUESTED, pf->state);
Neerav Parikhdf430b12014-06-04 01:23:15 +00007438 i40e_service_event_schedule(pf);
7439 }
7440 }
7441
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007442 /* see if one of the VFs needs its hand slapped */
7443 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
7444 vf = &(pf->vf[i]);
7445 reg = rd32(hw, I40E_VP_MDET_TX(i));
7446 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
7447 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
7448 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007449 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
7450 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007451 }
7452
7453 reg = rd32(hw, I40E_VP_MDET_RX(i));
7454 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
7455 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
7456 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007457 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
7458 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007459 }
7460
7461 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
7462 dev_info(&pf->pdev->dev,
7463 "Too many MDD events on VF %d, disabled\n", i);
7464 dev_info(&pf->pdev->dev,
7465 "Use PF Control I/F to re-enable the VF\n");
Jacob Keller6322e632017-04-13 04:45:54 -04007466 set_bit(I40E_VF_STATE_DISABLED, &vf->vf_states);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007467 }
7468 }
7469
7470 /* re-enable mdd interrupt cause */
Jacob Keller0da36b92017-04-19 09:25:55 -04007471 clear_bit(__I40E_MDD_EVENT_PENDING, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007472 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
7473 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
7474 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
7475 i40e_flush(hw);
7476}
7477
Jacob Kellerd8b2c702017-06-20 15:17:00 -07007478static const char *i40e_tunnel_name(struct i40e_udp_port_config *port)
7479{
7480 switch (port->type) {
7481 case UDP_TUNNEL_TYPE_VXLAN:
7482 return "vxlan";
7483 case UDP_TUNNEL_TYPE_GENEVE:
7484 return "geneve";
7485 default:
7486 return "unknown";
7487 }
7488}
7489
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007490/**
Alexander Duyck1f190d92017-04-19 09:25:51 -04007491 * i40e_sync_udp_filters - Trigger a sync event for existing UDP filters
7492 * @pf: board private structure
7493 **/
7494static void i40e_sync_udp_filters(struct i40e_pf *pf)
7495{
7496 int i;
7497
7498 /* loop through and set pending bit for all active UDP filters */
7499 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
7500 if (pf->udp_ports[i].port)
7501 pf->pending_udp_bitmap |= BIT_ULL(i);
7502 }
7503
7504 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
7505}
7506
7507/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08007508 * i40e_sync_udp_filters_subtask - Sync the VSI filter list with HW
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007509 * @pf: board private structure
7510 **/
Singhai, Anjali6a899022015-12-14 12:21:18 -08007511static void i40e_sync_udp_filters_subtask(struct i40e_pf *pf)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007512{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007513 struct i40e_hw *hw = &pf->hw;
7514 i40e_status ret;
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08007515 u16 port;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007516 int i;
7517
Singhai, Anjali6a899022015-12-14 12:21:18 -08007518 if (!(pf->flags & I40E_FLAG_UDP_FILTER_SYNC))
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007519 return;
7520
Singhai, Anjali6a899022015-12-14 12:21:18 -08007521 pf->flags &= ~I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007522
7523 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Singhai, Anjali6a899022015-12-14 12:21:18 -08007524 if (pf->pending_udp_bitmap & BIT_ULL(i)) {
7525 pf->pending_udp_bitmap &= ~BIT_ULL(i);
Jacob Keller27826fd2017-04-19 09:25:50 -04007526 port = pf->udp_ports[i].port;
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007527 if (port)
Carolyn Wybornyb3f5c7b2016-08-24 11:33:51 -07007528 ret = i40e_aq_add_udp_tunnel(hw, port,
7529 pf->udp_ports[i].type,
7530 NULL, NULL);
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007531 else
7532 ret = i40e_aq_del_udp_tunnel(hw, i, NULL);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007533
7534 if (ret) {
Jacob Kellerd8b2c702017-06-20 15:17:00 -07007535 dev_info(&pf->pdev->dev,
7536 "%s %s port %d, index %d failed, err %s aq_err %s\n",
7537 i40e_tunnel_name(&pf->udp_ports[i]),
7538 port ? "add" : "delete",
7539 port, i,
7540 i40e_stat_str(&pf->hw, ret),
7541 i40e_aq_str(&pf->hw,
7542 pf->hw.aq.asq_last_status));
Jacob Keller27826fd2017-04-19 09:25:50 -04007543 pf->udp_ports[i].port = 0;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007544 }
7545 }
7546 }
7547}
7548
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007549/**
7550 * i40e_service_task - Run the driver's async subtasks
7551 * @work: pointer to work_struct containing our data
7552 **/
7553static void i40e_service_task(struct work_struct *work)
7554{
7555 struct i40e_pf *pf = container_of(work,
7556 struct i40e_pf,
7557 service_task);
7558 unsigned long start_time = jiffies;
7559
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007560 /* don't bother with service tasks if a reset is in progress */
Jacob Keller0da36b92017-04-19 09:25:55 -04007561 if (test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state))
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007562 return;
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007563
Jacob Keller0da36b92017-04-19 09:25:55 -04007564 if (test_and_set_bit(__I40E_SERVICE_SCHED, pf->state))
Mitch Williams91089032016-11-21 13:03:51 -08007565 return;
7566
Kiran Patilb03a8c12015-09-24 18:13:15 -04007567 i40e_detect_recover_hung(pf);
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08007568 i40e_sync_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007569 i40e_reset_subtask(pf);
7570 i40e_handle_mdd_event(pf);
7571 i40e_vc_process_vflr_event(pf);
7572 i40e_watchdog_subtask(pf);
7573 i40e_fdir_reinit_subtask(pf);
Mitch Williams0ef2d5a2017-01-24 10:24:00 -08007574 if (pf->flags & I40E_FLAG_CLIENT_RESET) {
7575 /* Client subtask will reopen next time through. */
7576 i40e_notify_client_of_netdev_close(pf->vsi[pf->lan_vsi], true);
7577 pf->flags &= ~I40E_FLAG_CLIENT_RESET;
7578 } else {
7579 i40e_client_subtask(pf);
7580 if (pf->flags & I40E_FLAG_CLIENT_L2_CHANGE) {
7581 i40e_notify_client_of_l2_param_changes(
7582 pf->vsi[pf->lan_vsi]);
7583 pf->flags &= ~I40E_FLAG_CLIENT_L2_CHANGE;
7584 }
7585 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007586 i40e_sync_filters_subtask(pf);
Singhai, Anjali6a899022015-12-14 12:21:18 -08007587 i40e_sync_udp_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007588 i40e_clean_adminq_subtask(pf);
7589
Mitch Williams91089032016-11-21 13:03:51 -08007590 /* flush memory to make sure state is correct before next watchdog */
7591 smp_mb__before_atomic();
Jacob Keller0da36b92017-04-19 09:25:55 -04007592 clear_bit(__I40E_SERVICE_SCHED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007593
7594 /* If the tasks have taken longer than one timer cycle or there
7595 * is more work to be done, reschedule the service task now
7596 * rather than wait for the timer to tick again.
7597 */
7598 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
Jacob Keller0da36b92017-04-19 09:25:55 -04007599 test_bit(__I40E_ADMINQ_EVENT_PENDING, pf->state) ||
7600 test_bit(__I40E_MDD_EVENT_PENDING, pf->state) ||
7601 test_bit(__I40E_VFLR_EVENT_PENDING, pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007602 i40e_service_event_schedule(pf);
7603}
7604
7605/**
7606 * i40e_service_timer - timer callback
7607 * @data: pointer to PF struct
7608 **/
7609static void i40e_service_timer(unsigned long data)
7610{
7611 struct i40e_pf *pf = (struct i40e_pf *)data;
7612
7613 mod_timer(&pf->service_timer,
7614 round_jiffies(jiffies + pf->service_timer_period));
7615 i40e_service_event_schedule(pf);
7616}
7617
7618/**
7619 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
7620 * @vsi: the VSI being configured
7621 **/
7622static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
7623{
7624 struct i40e_pf *pf = vsi->back;
7625
7626 switch (vsi->type) {
7627 case I40E_VSI_MAIN:
7628 vsi->alloc_queue_pairs = pf->num_lan_qps;
7629 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7630 I40E_REQ_DESCRIPTOR_MULTIPLE);
7631 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7632 vsi->num_q_vectors = pf->num_lan_msix;
7633 else
7634 vsi->num_q_vectors = 1;
7635
7636 break;
7637
7638 case I40E_VSI_FDIR:
7639 vsi->alloc_queue_pairs = 1;
7640 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
7641 I40E_REQ_DESCRIPTOR_MULTIPLE);
Tushar Davea70e4072016-05-16 12:40:53 -07007642 vsi->num_q_vectors = pf->num_fdsb_msix;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007643 break;
7644
7645 case I40E_VSI_VMDQ2:
7646 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
7647 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7648 I40E_REQ_DESCRIPTOR_MULTIPLE);
7649 vsi->num_q_vectors = pf->num_vmdq_msix;
7650 break;
7651
7652 case I40E_VSI_SRIOV:
7653 vsi->alloc_queue_pairs = pf->num_vf_qps;
7654 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7655 I40E_REQ_DESCRIPTOR_MULTIPLE);
7656 break;
7657
7658 default:
7659 WARN_ON(1);
7660 return -ENODATA;
7661 }
7662
7663 return 0;
7664}
7665
7666/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007667 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
7668 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007669 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007670 *
7671 * On error: returns error code (negative)
7672 * On success: returns 0
7673 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007674static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007675{
Björn Töpel74608d12017-05-24 07:55:35 +02007676 struct i40e_ring **next_rings;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007677 int size;
7678 int ret = 0;
7679
Björn Töpel74608d12017-05-24 07:55:35 +02007680 /* allocate memory for both Tx, XDP Tx and Rx ring pointers */
7681 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs *
7682 (i40e_enabled_xdp_vsi(vsi) ? 3 : 2);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007683 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
7684 if (!vsi->tx_rings)
7685 return -ENOMEM;
Björn Töpel74608d12017-05-24 07:55:35 +02007686 next_rings = vsi->tx_rings + vsi->alloc_queue_pairs;
7687 if (i40e_enabled_xdp_vsi(vsi)) {
7688 vsi->xdp_rings = next_rings;
7689 next_rings += vsi->alloc_queue_pairs;
7690 }
7691 vsi->rx_rings = next_rings;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007692
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007693 if (alloc_qvectors) {
7694 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00007695 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007696 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
7697 if (!vsi->q_vectors) {
7698 ret = -ENOMEM;
7699 goto err_vectors;
7700 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007701 }
7702 return ret;
7703
7704err_vectors:
7705 kfree(vsi->tx_rings);
7706 return ret;
7707}
7708
7709/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007710 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
7711 * @pf: board private structure
7712 * @type: type of VSI
7713 *
7714 * On error: returns error code (negative)
7715 * On success: returns vsi index in PF (positive)
7716 **/
7717static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
7718{
7719 int ret = -ENODEV;
7720 struct i40e_vsi *vsi;
7721 int vsi_idx;
7722 int i;
7723
7724 /* Need to protect the allocation of the VSIs at the PF level */
7725 mutex_lock(&pf->switch_mutex);
7726
7727 /* VSI list may be fragmented if VSI creation/destruction has
7728 * been happening. We can afford to do a quick scan to look
7729 * for any free VSIs in the list.
7730 *
7731 * find next empty vsi slot, looping back around if necessary
7732 */
7733 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00007734 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007735 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00007736 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007737 i = 0;
7738 while (i < pf->next_vsi && pf->vsi[i])
7739 i++;
7740 }
7741
Mitch Williams505682c2014-05-20 08:01:37 +00007742 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007743 vsi_idx = i; /* Found one! */
7744 } else {
7745 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00007746 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007747 }
7748 pf->next_vsi = ++i;
7749
7750 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
7751 if (!vsi) {
7752 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00007753 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007754 }
7755 vsi->type = type;
7756 vsi->back = pf;
Jacob Keller0da36b92017-04-19 09:25:55 -04007757 set_bit(__I40E_VSI_DOWN, vsi->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007758 vsi->flags = 0;
7759 vsi->idx = vsi_idx;
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04007760 vsi->int_rate_limit = 0;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00007761 vsi->rss_table_size = (vsi->type == I40E_VSI_MAIN) ?
7762 pf->rss_table_size : 64;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007763 vsi->netdev_registered = false;
7764 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
Jacob Keller278e7d02016-10-05 09:30:37 -07007765 hash_init(vsi->mac_filter_hash);
Shannon Nelson63741842014-04-23 04:50:16 +00007766 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007767
Alexander Duyck9f65e152013-09-28 06:00:58 +00007768 ret = i40e_set_num_rings_in_vsi(vsi);
7769 if (ret)
7770 goto err_rings;
7771
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007772 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007773 if (ret)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007774 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00007775
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007776 /* Setup default MSIX irq handler for VSI */
7777 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
7778
Kiran Patil21659032015-09-30 14:09:03 -04007779 /* Initialize VSI lock */
Jacob Keller278e7d02016-10-05 09:30:37 -07007780 spin_lock_init(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007781 pf->vsi[vsi_idx] = vsi;
7782 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00007783 goto unlock_pf;
7784
Alexander Duyck9f65e152013-09-28 06:00:58 +00007785err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00007786 pf->next_vsi = i - 1;
7787 kfree(vsi);
7788unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007789 mutex_unlock(&pf->switch_mutex);
7790 return ret;
7791}
7792
7793/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007794 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
7795 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007796 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007797 *
7798 * On error: returns error code (negative)
7799 * On success: returns 0
7800 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007801static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007802{
7803 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007804 if (free_qvectors) {
7805 kfree(vsi->q_vectors);
7806 vsi->q_vectors = NULL;
7807 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007808 kfree(vsi->tx_rings);
7809 vsi->tx_rings = NULL;
7810 vsi->rx_rings = NULL;
Björn Töpel74608d12017-05-24 07:55:35 +02007811 vsi->xdp_rings = NULL;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007812}
7813
7814/**
Helin Zhang28c58692015-10-26 19:44:27 -04007815 * i40e_clear_rss_config_user - clear the user configured RSS hash keys
7816 * and lookup table
7817 * @vsi: Pointer to VSI structure
7818 */
7819static void i40e_clear_rss_config_user(struct i40e_vsi *vsi)
7820{
7821 if (!vsi)
7822 return;
7823
7824 kfree(vsi->rss_hkey_user);
7825 vsi->rss_hkey_user = NULL;
7826
7827 kfree(vsi->rss_lut_user);
7828 vsi->rss_lut_user = NULL;
7829}
7830
7831/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007832 * i40e_vsi_clear - Deallocate the VSI provided
7833 * @vsi: the VSI being un-configured
7834 **/
7835static int i40e_vsi_clear(struct i40e_vsi *vsi)
7836{
7837 struct i40e_pf *pf;
7838
7839 if (!vsi)
7840 return 0;
7841
7842 if (!vsi->back)
7843 goto free_vsi;
7844 pf = vsi->back;
7845
7846 mutex_lock(&pf->switch_mutex);
7847 if (!pf->vsi[vsi->idx]) {
7848 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
7849 vsi->idx, vsi->idx, vsi, vsi->type);
7850 goto unlock_vsi;
7851 }
7852
7853 if (pf->vsi[vsi->idx] != vsi) {
7854 dev_err(&pf->pdev->dev,
7855 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
7856 pf->vsi[vsi->idx]->idx,
7857 pf->vsi[vsi->idx],
7858 pf->vsi[vsi->idx]->type,
7859 vsi->idx, vsi, vsi->type);
7860 goto unlock_vsi;
7861 }
7862
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007863 /* updates the PF for this cleared vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007864 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7865 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
7866
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007867 i40e_vsi_free_arrays(vsi, true);
Helin Zhang28c58692015-10-26 19:44:27 -04007868 i40e_clear_rss_config_user(vsi);
Alexander Duyck493fb302013-09-28 07:01:44 +00007869
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007870 pf->vsi[vsi->idx] = NULL;
7871 if (vsi->idx < pf->next_vsi)
7872 pf->next_vsi = vsi->idx;
7873
7874unlock_vsi:
7875 mutex_unlock(&pf->switch_mutex);
7876free_vsi:
7877 kfree(vsi);
7878
7879 return 0;
7880}
7881
7882/**
Alexander Duyck9f65e152013-09-28 06:00:58 +00007883 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
7884 * @vsi: the VSI being cleaned
7885 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007886static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007887{
7888 int i;
7889
Greg Rose8e9dca52013-12-18 13:45:53 +00007890 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00007891 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00007892 kfree_rcu(vsi->tx_rings[i], rcu);
7893 vsi->tx_rings[i] = NULL;
7894 vsi->rx_rings[i] = NULL;
Björn Töpel74608d12017-05-24 07:55:35 +02007895 if (vsi->xdp_rings)
7896 vsi->xdp_rings[i] = NULL;
Mitch Williams00403f02013-09-28 07:13:13 +00007897 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007898 }
Alexander Duyck9f65e152013-09-28 06:00:58 +00007899}
7900
7901/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007902 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
7903 * @vsi: the VSI being configured
7904 **/
7905static int i40e_alloc_rings(struct i40e_vsi *vsi)
7906{
Björn Töpel74608d12017-05-24 07:55:35 +02007907 int i, qpv = i40e_enabled_xdp_vsi(vsi) ? 3 : 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007908 struct i40e_pf *pf = vsi->back;
Björn Töpel74608d12017-05-24 07:55:35 +02007909 struct i40e_ring *ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007910
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007911 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00007912 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007913 /* allocate space for both Tx and Rx in one shot */
Björn Töpel74608d12017-05-24 07:55:35 +02007914 ring = kcalloc(qpv, sizeof(struct i40e_ring), GFP_KERNEL);
7915 if (!ring)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007916 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007917
Björn Töpel74608d12017-05-24 07:55:35 +02007918 ring->queue_index = i;
7919 ring->reg_idx = vsi->base_queue + i;
7920 ring->ring_active = false;
7921 ring->vsi = vsi;
7922 ring->netdev = vsi->netdev;
7923 ring->dev = &pf->pdev->dev;
7924 ring->count = vsi->num_desc;
7925 ring->size = 0;
7926 ring->dcb_tc = 0;
Jacob Kellerd36e41d2017-06-23 04:24:46 -04007927 if (vsi->back->hw_features & I40E_HW_WB_ON_ITR_CAPABLE)
Björn Töpel74608d12017-05-24 07:55:35 +02007928 ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
7929 ring->tx_itr_setting = pf->tx_itr_default;
7930 vsi->tx_rings[i] = ring++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007931
Björn Töpel74608d12017-05-24 07:55:35 +02007932 if (!i40e_enabled_xdp_vsi(vsi))
7933 goto setup_rx;
7934
7935 ring->queue_index = vsi->alloc_queue_pairs + i;
7936 ring->reg_idx = vsi->base_queue + ring->queue_index;
7937 ring->ring_active = false;
7938 ring->vsi = vsi;
7939 ring->netdev = NULL;
7940 ring->dev = &pf->pdev->dev;
7941 ring->count = vsi->num_desc;
7942 ring->size = 0;
7943 ring->dcb_tc = 0;
Jacob Kellerd36e41d2017-06-23 04:24:46 -04007944 if (vsi->back->hw_features & I40E_HW_WB_ON_ITR_CAPABLE)
Björn Töpel74608d12017-05-24 07:55:35 +02007945 ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
7946 set_ring_xdp(ring);
7947 ring->tx_itr_setting = pf->tx_itr_default;
7948 vsi->xdp_rings[i] = ring++;
7949
7950setup_rx:
7951 ring->queue_index = i;
7952 ring->reg_idx = vsi->base_queue + i;
7953 ring->ring_active = false;
7954 ring->vsi = vsi;
7955 ring->netdev = vsi->netdev;
7956 ring->dev = &pf->pdev->dev;
7957 ring->count = vsi->num_desc;
7958 ring->size = 0;
7959 ring->dcb_tc = 0;
7960 ring->rx_itr_setting = pf->rx_itr_default;
7961 vsi->rx_rings[i] = ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007962 }
7963
7964 return 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007965
7966err_out:
7967 i40e_vsi_clear_rings(vsi);
7968 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007969}
7970
7971/**
7972 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
7973 * @pf: board private structure
7974 * @vectors: the number of MSI-X vectors to request
7975 *
7976 * Returns the number of vectors reserved, or error
7977 **/
7978static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
7979{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007980 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
7981 I40E_MIN_MSIX, vectors);
7982 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007983 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007984 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007985 vectors = 0;
7986 }
7987
7988 return vectors;
7989}
7990
7991/**
7992 * i40e_init_msix - Setup the MSIX capability
7993 * @pf: board private structure
7994 *
7995 * Work with the OS to set up the MSIX vectors needed.
7996 *
Shannon Nelson3b444392015-02-26 16:15:57 +00007997 * Returns the number of vectors reserved or negative on failure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007998 **/
7999static int i40e_init_msix(struct i40e_pf *pf)
8000{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008001 struct i40e_hw *hw = &pf->hw;
Jacob Kellerc0cf70a2017-01-24 10:24:01 -08008002 int cpus, extra_vectors;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008003 int vectors_left;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008004 int v_budget, i;
Shannon Nelson3b444392015-02-26 16:15:57 +00008005 int v_actual;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008006 int iwarp_requested = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008007
8008 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
8009 return -ENODEV;
8010
8011 /* The number of vectors we'll request will be comprised of:
8012 * - Add 1 for "other" cause for Admin Queue events, etc.
8013 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008014 * - Queues being used for RSS.
8015 * We don't need as many as max_rss_size vectors.
8016 * use rss_size instead in the calculation since that
8017 * is governed by number of cpus in the system.
8018 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008019 * - The number of VMDq pairs
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008020 * - The CPU count within the NUMA node if iWARP is enabled
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008021 * Once we count this up, try the request.
8022 *
8023 * If we can't get what we want, we'll simplify to nearly nothing
8024 * and try again. If that still fails, we punt.
8025 */
Shannon Nelson1e200e42015-02-27 09:15:24 +00008026 vectors_left = hw->func_caps.num_msix_vectors;
8027 v_budget = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008028
Shannon Nelson1e200e42015-02-27 09:15:24 +00008029 /* reserve one vector for miscellaneous handler */
8030 if (vectors_left) {
8031 v_budget++;
8032 vectors_left--;
8033 }
8034
Jacob Kellerc0cf70a2017-01-24 10:24:01 -08008035 /* reserve some vectors for the main PF traffic queues. Initially we
8036 * only reserve at most 50% of the available vectors, in the case that
8037 * the number of online CPUs is large. This ensures that we can enable
8038 * extra features as well. Once we've enabled the other features, we
8039 * will use any remaining vectors to reach as close as we can to the
8040 * number of online CPUs.
8041 */
8042 cpus = num_online_cpus();
8043 pf->num_lan_msix = min_t(int, cpus, vectors_left / 2);
Shannon Nelson1e200e42015-02-27 09:15:24 +00008044 vectors_left -= pf->num_lan_msix;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008045
8046 /* reserve one vector for sideband flow director */
8047 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8048 if (vectors_left) {
Tushar Davea70e4072016-05-16 12:40:53 -07008049 pf->num_fdsb_msix = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008050 v_budget++;
8051 vectors_left--;
8052 } else {
Tushar Davea70e4072016-05-16 12:40:53 -07008053 pf->num_fdsb_msix = 0;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008054 }
8055 }
John W Linville83840e42015-01-14 03:06:28 +00008056
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008057 /* can we reserve enough for iWARP? */
8058 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008059 iwarp_requested = pf->num_iwarp_msix;
8060
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008061 if (!vectors_left)
8062 pf->num_iwarp_msix = 0;
8063 else if (vectors_left < pf->num_iwarp_msix)
8064 pf->num_iwarp_msix = 1;
8065 v_budget += pf->num_iwarp_msix;
8066 vectors_left -= pf->num_iwarp_msix;
8067 }
8068
Shannon Nelson1e200e42015-02-27 09:15:24 +00008069 /* any vectors left over go for VMDq support */
8070 if (pf->flags & I40E_FLAG_VMDQ_ENABLED) {
8071 int vmdq_vecs_wanted = pf->num_vmdq_vsis * pf->num_vmdq_qps;
8072 int vmdq_vecs = min_t(int, vectors_left, vmdq_vecs_wanted);
8073
Stefan Assmann9ca57e92016-09-19 13:37:49 +02008074 if (!vectors_left) {
8075 pf->num_vmdq_msix = 0;
8076 pf->num_vmdq_qps = 0;
8077 } else {
8078 /* if we're short on vectors for what's desired, we limit
8079 * the queues per vmdq. If this is still more than are
8080 * available, the user will need to change the number of
8081 * queues/vectors used by the PF later with the ethtool
8082 * channels command
8083 */
8084 if (vmdq_vecs < vmdq_vecs_wanted)
8085 pf->num_vmdq_qps = 1;
8086 pf->num_vmdq_msix = pf->num_vmdq_qps;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008087
Stefan Assmann9ca57e92016-09-19 13:37:49 +02008088 v_budget += vmdq_vecs;
8089 vectors_left -= vmdq_vecs;
8090 }
Shannon Nelson1e200e42015-02-27 09:15:24 +00008091 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008092
Jacob Kellerc0cf70a2017-01-24 10:24:01 -08008093 /* On systems with a large number of SMP cores, we previously limited
8094 * the number of vectors for num_lan_msix to be at most 50% of the
8095 * available vectors, to allow for other features. Now, we add back
8096 * the remaining vectors. However, we ensure that the total
8097 * num_lan_msix will not exceed num_online_cpus(). To do this, we
8098 * calculate the number of vectors we can add without going over the
8099 * cap of CPUs. For systems with a small number of CPUs this will be
8100 * zero.
8101 */
8102 extra_vectors = min_t(int, cpus - pf->num_lan_msix, vectors_left);
8103 pf->num_lan_msix += extra_vectors;
8104 vectors_left -= extra_vectors;
8105
8106 WARN(vectors_left < 0,
8107 "Calculation of remaining vectors underflowed. This is an accounting bug when determining total MSI-X vectors.\n");
8108
8109 v_budget += pf->num_lan_msix;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008110 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
8111 GFP_KERNEL);
8112 if (!pf->msix_entries)
8113 return -ENOMEM;
8114
8115 for (i = 0; i < v_budget; i++)
8116 pf->msix_entries[i].entry = i;
Shannon Nelson3b444392015-02-26 16:15:57 +00008117 v_actual = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008118
Shannon Nelson3b444392015-02-26 16:15:57 +00008119 if (v_actual < I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008120 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
8121 kfree(pf->msix_entries);
8122 pf->msix_entries = NULL;
Guilherme G Piccoli4c95aa52016-09-22 10:03:58 -03008123 pci_disable_msix(pf->pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008124 return -ENODEV;
8125
Shannon Nelson3b444392015-02-26 16:15:57 +00008126 } else if (v_actual == I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008127 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008128 pf->num_vmdq_vsis = 0;
8129 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008130 pf->num_lan_qps = 1;
8131 pf->num_lan_msix = 1;
8132
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008133 } else if (!vectors_left) {
8134 /* If we have limited resources, we will start with no vectors
8135 * for the special features and then allocate vectors to some
8136 * of these features based on the policy and at the end disable
8137 * the features that did not get any vectors.
8138 */
Shannon Nelson3b444392015-02-26 16:15:57 +00008139 int vec;
8140
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008141 dev_info(&pf->pdev->dev,
8142 "MSI-X vector limit reached, attempting to redistribute vectors\n");
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008143 /* reserve the misc vector */
Shannon Nelson3b444392015-02-26 16:15:57 +00008144 vec = v_actual - 1;
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008145
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008146 /* Scale vector usage down */
8147 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008148 pf->num_vmdq_vsis = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00008149 pf->num_vmdq_qps = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008150
8151 /* partition out the remaining vectors */
8152 switch (vec) {
8153 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008154 pf->num_lan_msix = 1;
8155 break;
8156 case 3:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008157 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
8158 pf->num_lan_msix = 1;
8159 pf->num_iwarp_msix = 1;
8160 } else {
8161 pf->num_lan_msix = 2;
8162 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008163 break;
8164 default:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008165 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
8166 pf->num_iwarp_msix = min_t(int, (vec / 3),
8167 iwarp_requested);
8168 pf->num_vmdq_vsis = min_t(int, (vec / 3),
8169 I40E_DEFAULT_NUM_VMDQ_VSI);
8170 } else {
8171 pf->num_vmdq_vsis = min_t(int, (vec / 2),
8172 I40E_DEFAULT_NUM_VMDQ_VSI);
8173 }
Stefan Assmannabd97a92016-09-19 13:37:51 +02008174 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8175 pf->num_fdsb_msix = 1;
8176 vec--;
8177 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008178 pf->num_lan_msix = min_t(int,
8179 (vec - (pf->num_iwarp_msix + pf->num_vmdq_vsis)),
8180 pf->num_lan_msix);
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008181 pf->num_lan_qps = pf->num_lan_msix;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008182 break;
8183 }
8184 }
8185
Stefan Assmannabd97a92016-09-19 13:37:51 +02008186 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
8187 (pf->num_fdsb_msix == 0)) {
8188 dev_info(&pf->pdev->dev, "Sideband Flowdir disabled, not enough MSI-X vectors\n");
8189 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
8190 }
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00008191 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
8192 (pf->num_vmdq_msix == 0)) {
8193 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
8194 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
8195 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008196
8197 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
8198 (pf->num_iwarp_msix == 0)) {
8199 dev_info(&pf->pdev->dev, "IWARP disabled, not enough MSI-X vectors\n");
8200 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
8201 }
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02008202 i40e_debug(&pf->hw, I40E_DEBUG_INIT,
8203 "MSI-X vector distribution: PF %d, VMDq %d, FDSB %d, iWARP %d\n",
8204 pf->num_lan_msix,
8205 pf->num_vmdq_msix * pf->num_vmdq_vsis,
8206 pf->num_fdsb_msix,
8207 pf->num_iwarp_msix);
8208
Shannon Nelson3b444392015-02-26 16:15:57 +00008209 return v_actual;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008210}
8211
8212/**
Greg Rose90e04072014-03-06 08:59:57 +00008213 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00008214 * @vsi: the VSI being configured
8215 * @v_idx: index of the vector in the vsi struct
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008216 * @cpu: cpu to be used on affinity_mask
Alexander Duyck493fb302013-09-28 07:01:44 +00008217 *
8218 * We allocate one q_vector. If allocation fails we return -ENOMEM.
8219 **/
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008220static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx, int cpu)
Alexander Duyck493fb302013-09-28 07:01:44 +00008221{
8222 struct i40e_q_vector *q_vector;
8223
8224 /* allocate q_vector */
8225 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
8226 if (!q_vector)
8227 return -ENOMEM;
8228
8229 q_vector->vsi = vsi;
8230 q_vector->v_idx = v_idx;
Jacob Keller759dc4a2017-07-14 09:10:10 -04008231 cpumask_copy(&q_vector->affinity_mask, cpu_possible_mask);
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008232
Alexander Duyck493fb302013-09-28 07:01:44 +00008233 if (vsi->netdev)
8234 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00008235 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00008236
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00008237 q_vector->rx.latency_range = I40E_LOW_LATENCY;
8238 q_vector->tx.latency_range = I40E_LOW_LATENCY;
8239
Alexander Duyck493fb302013-09-28 07:01:44 +00008240 /* tie q_vector and vsi together */
8241 vsi->q_vectors[v_idx] = q_vector;
8242
8243 return 0;
8244}
8245
8246/**
Greg Rose90e04072014-03-06 08:59:57 +00008247 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008248 * @vsi: the VSI being configured
8249 *
8250 * We allocate one q_vector per queue interrupt. If allocation fails we
8251 * return -ENOMEM.
8252 **/
Greg Rose90e04072014-03-06 08:59:57 +00008253static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008254{
8255 struct i40e_pf *pf = vsi->back;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008256 int err, v_idx, num_q_vectors, current_cpu;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008257
8258 /* if not MSIX, give the one vector only to the LAN VSI */
8259 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
8260 num_q_vectors = vsi->num_q_vectors;
8261 else if (vsi == pf->vsi[pf->lan_vsi])
8262 num_q_vectors = 1;
8263 else
8264 return -EINVAL;
8265
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008266 current_cpu = cpumask_first(cpu_online_mask);
8267
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008268 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008269 err = i40e_vsi_alloc_q_vector(vsi, v_idx, current_cpu);
Alexander Duyck493fb302013-09-28 07:01:44 +00008270 if (err)
8271 goto err_out;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03008272 current_cpu = cpumask_next(current_cpu, cpu_online_mask);
8273 if (unlikely(current_cpu >= nr_cpu_ids))
8274 current_cpu = cpumask_first(cpu_online_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008275 }
8276
8277 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00008278
8279err_out:
8280 while (v_idx--)
8281 i40e_free_q_vector(vsi, v_idx);
8282
8283 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008284}
8285
8286/**
8287 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
8288 * @pf: board private structure to initialize
8289 **/
Jesse Brandeburgc11472802015-04-07 19:45:39 -04008290static int i40e_init_interrupt_scheme(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008291{
Shannon Nelson3b444392015-02-26 16:15:57 +00008292 int vectors = 0;
8293 ssize_t size;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008294
8295 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Shannon Nelson3b444392015-02-26 16:15:57 +00008296 vectors = i40e_init_msix(pf);
8297 if (vectors < 0) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008298 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008299 I40E_FLAG_IWARP_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008300 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00008301 I40E_FLAG_DCB_CAPABLE |
Dave Ertmana0362442016-08-29 17:38:26 -07008302 I40E_FLAG_DCB_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08008303 I40E_FLAG_SRIOV_ENABLED |
8304 I40E_FLAG_FD_SB_ENABLED |
8305 I40E_FLAG_FD_ATR_ENABLED |
8306 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008307
8308 /* rework the queue expectations without MSIX */
8309 i40e_determine_queue_usage(pf);
8310 }
8311 }
8312
8313 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
8314 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08008315 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Shannon Nelson3b444392015-02-26 16:15:57 +00008316 vectors = pci_enable_msi(pf->pdev);
8317 if (vectors < 0) {
8318 dev_info(&pf->pdev->dev, "MSI init failed - %d\n",
8319 vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008320 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
8321 }
Shannon Nelson3b444392015-02-26 16:15:57 +00008322 vectors = 1; /* one MSI or Legacy vector */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008323 }
8324
Shannon Nelson958a3e32013-09-28 07:13:28 +00008325 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08008326 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00008327
Shannon Nelson3b444392015-02-26 16:15:57 +00008328 /* set up vector assignment tracking */
8329 size = sizeof(struct i40e_lump_tracking) + (sizeof(u16) * vectors);
8330 pf->irq_pile = kzalloc(size, GFP_KERNEL);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04008331 if (!pf->irq_pile) {
8332 dev_err(&pf->pdev->dev, "error allocating irq_pile memory\n");
8333 return -ENOMEM;
8334 }
Shannon Nelson3b444392015-02-26 16:15:57 +00008335 pf->irq_pile->num_entries = vectors;
8336 pf->irq_pile->search_hint = 0;
8337
Jesse Brandeburgc11472802015-04-07 19:45:39 -04008338 /* track first vector for misc interrupts, ignore return */
Shannon Nelson3b444392015-02-26 16:15:57 +00008339 (void)i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT - 1);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04008340
8341 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008342}
8343
8344/**
8345 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
8346 * @pf: board private structure
8347 *
8348 * This sets up the handler for MSIX 0, which is used to manage the
8349 * non-queue interrupts, e.g. AdminQ and errors. This is not used
8350 * when in MSI or Legacy interrupt mode.
8351 **/
8352static int i40e_setup_misc_vector(struct i40e_pf *pf)
8353{
8354 struct i40e_hw *hw = &pf->hw;
8355 int err = 0;
8356
8357 /* Only request the irq if this is the first time through, and
8358 * not when we're rebuilding after a Reset
8359 */
Jacob Keller0da36b92017-04-19 09:25:55 -04008360 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008361 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00008362 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008363 if (err) {
8364 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08008365 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00008366 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008367 return -EFAULT;
8368 }
8369 }
8370
Jacob Kellerab437b52014-12-14 01:55:08 +00008371 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008372
8373 /* associate no queues to the misc vector */
8374 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
8375 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
8376
8377 i40e_flush(hw);
8378
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08008379 i40e_irq_dynamic_enable_icr0(pf, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008380
8381 return err;
8382}
8383
8384/**
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008385 * i40e_config_rss_aq - Prepare for RSS using AQ commands
8386 * @vsi: vsi structure
8387 * @seed: RSS hash seed
8388 **/
Helin Zhange69ff812015-10-21 19:56:22 -04008389static int i40e_config_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
8390 u8 *lut, u16 lut_size)
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008391{
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008392 struct i40e_pf *pf = vsi->back;
8393 struct i40e_hw *hw = &pf->hw;
Jacob Keller776b2e12016-07-19 16:23:30 -07008394 int ret = 0;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008395
Jacob Keller776b2e12016-07-19 16:23:30 -07008396 if (seed) {
8397 struct i40e_aqc_get_set_rss_key_data *seed_dw =
8398 (struct i40e_aqc_get_set_rss_key_data *)seed;
8399 ret = i40e_aq_set_rss_key(hw, vsi->id, seed_dw);
8400 if (ret) {
8401 dev_info(&pf->pdev->dev,
8402 "Cannot set RSS key, err %s aq_err %s\n",
8403 i40e_stat_str(hw, ret),
8404 i40e_aq_str(hw, hw->aq.asq_last_status));
8405 return ret;
8406 }
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008407 }
Jacob Keller776b2e12016-07-19 16:23:30 -07008408 if (lut) {
8409 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008410
Jacob Keller776b2e12016-07-19 16:23:30 -07008411 ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
8412 if (ret) {
8413 dev_info(&pf->pdev->dev,
8414 "Cannot set RSS lut, err %s aq_err %s\n",
8415 i40e_stat_str(hw, ret),
8416 i40e_aq_str(hw, hw->aq.asq_last_status));
8417 return ret;
8418 }
8419 }
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008420 return ret;
8421}
8422
8423/**
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008424 * i40e_get_rss_aq - Get RSS keys and lut by using AQ commands
8425 * @vsi: Pointer to vsi structure
8426 * @seed: Buffter to store the hash keys
8427 * @lut: Buffer to store the lookup table entries
8428 * @lut_size: Size of buffer to store the lookup table entries
8429 *
8430 * Return 0 on success, negative on failure
8431 */
8432static int i40e_get_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
8433 u8 *lut, u16 lut_size)
8434{
8435 struct i40e_pf *pf = vsi->back;
8436 struct i40e_hw *hw = &pf->hw;
8437 int ret = 0;
8438
8439 if (seed) {
8440 ret = i40e_aq_get_rss_key(hw, vsi->id,
8441 (struct i40e_aqc_get_set_rss_key_data *)seed);
8442 if (ret) {
8443 dev_info(&pf->pdev->dev,
8444 "Cannot get RSS key, err %s aq_err %s\n",
8445 i40e_stat_str(&pf->hw, ret),
8446 i40e_aq_str(&pf->hw,
8447 pf->hw.aq.asq_last_status));
8448 return ret;
8449 }
8450 }
8451
8452 if (lut) {
8453 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
8454
8455 ret = i40e_aq_get_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
8456 if (ret) {
8457 dev_info(&pf->pdev->dev,
8458 "Cannot get RSS lut, err %s aq_err %s\n",
8459 i40e_stat_str(&pf->hw, ret),
8460 i40e_aq_str(&pf->hw,
8461 pf->hw.aq.asq_last_status));
8462 return ret;
8463 }
8464 }
8465
8466 return ret;
8467}
8468
8469/**
Jacob Keller0582b962016-07-19 16:23:29 -07008470 * i40e_vsi_config_rss - Prepare for VSI(VMDq) RSS if used
8471 * @vsi: VSI structure
8472 **/
8473static int i40e_vsi_config_rss(struct i40e_vsi *vsi)
8474{
8475 u8 seed[I40E_HKEY_ARRAY_SIZE];
8476 struct i40e_pf *pf = vsi->back;
8477 u8 *lut;
8478 int ret;
8479
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008480 if (!(pf->hw_features & I40E_HW_RSS_AQ_CAPABLE))
Jacob Keller0582b962016-07-19 16:23:29 -07008481 return 0;
8482
Jacob Keller552b9962016-07-19 16:23:31 -07008483 if (!vsi->rss_size)
8484 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8485 vsi->num_queue_pairs);
8486 if (!vsi->rss_size)
8487 return -EINVAL;
8488
Jacob Keller0582b962016-07-19 16:23:29 -07008489 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8490 if (!lut)
8491 return -ENOMEM;
Jacob Keller552b9962016-07-19 16:23:31 -07008492 /* Use the user configured hash keys and lookup table if there is one,
8493 * otherwise use default
8494 */
8495 if (vsi->rss_lut_user)
8496 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8497 else
8498 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
8499 if (vsi->rss_hkey_user)
8500 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8501 else
8502 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Jacob Keller0582b962016-07-19 16:23:29 -07008503 ret = i40e_config_rss_aq(vsi, seed, lut, vsi->rss_table_size);
8504 kfree(lut);
8505
8506 return ret;
8507}
8508
8509/**
Helin Zhang043dd652015-10-21 19:56:23 -04008510 * i40e_config_rss_reg - Configure RSS keys and lut by writing registers
Helin Zhange69ff812015-10-21 19:56:22 -04008511 * @vsi: Pointer to vsi structure
8512 * @seed: RSS hash seed
8513 * @lut: Lookup table
8514 * @lut_size: Lookup table size
8515 *
8516 * Returns 0 on success, negative on failure
8517 **/
8518static int i40e_config_rss_reg(struct i40e_vsi *vsi, const u8 *seed,
8519 const u8 *lut, u16 lut_size)
8520{
8521 struct i40e_pf *pf = vsi->back;
8522 struct i40e_hw *hw = &pf->hw;
Mitch Williamsc4e18682016-04-12 08:30:40 -07008523 u16 vf_id = vsi->vf_id;
Helin Zhange69ff812015-10-21 19:56:22 -04008524 u8 i;
8525
8526 /* Fill out hash function seed */
8527 if (seed) {
8528 u32 *seed_dw = (u32 *)seed;
8529
Mitch Williamsc4e18682016-04-12 08:30:40 -07008530 if (vsi->type == I40E_VSI_MAIN) {
8531 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Lihong Yang26f77e52017-01-30 12:29:33 -08008532 wr32(hw, I40E_PFQF_HKEY(i), seed_dw[i]);
Mitch Williamsc4e18682016-04-12 08:30:40 -07008533 } else if (vsi->type == I40E_VSI_SRIOV) {
8534 for (i = 0; i <= I40E_VFQF_HKEY1_MAX_INDEX; i++)
Lihong Yang26f77e52017-01-30 12:29:33 -08008535 wr32(hw, I40E_VFQF_HKEY1(i, vf_id), seed_dw[i]);
Mitch Williamsc4e18682016-04-12 08:30:40 -07008536 } else {
8537 dev_err(&pf->pdev->dev, "Cannot set RSS seed - invalid VSI type\n");
8538 }
Helin Zhange69ff812015-10-21 19:56:22 -04008539 }
8540
8541 if (lut) {
8542 u32 *lut_dw = (u32 *)lut;
8543
Mitch Williamsc4e18682016-04-12 08:30:40 -07008544 if (vsi->type == I40E_VSI_MAIN) {
8545 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8546 return -EINVAL;
8547 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8548 wr32(hw, I40E_PFQF_HLUT(i), lut_dw[i]);
8549 } else if (vsi->type == I40E_VSI_SRIOV) {
8550 if (lut_size != I40E_VF_HLUT_ARRAY_SIZE)
8551 return -EINVAL;
8552 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
Lihong Yang26f77e52017-01-30 12:29:33 -08008553 wr32(hw, I40E_VFQF_HLUT1(i, vf_id), lut_dw[i]);
Mitch Williamsc4e18682016-04-12 08:30:40 -07008554 } else {
8555 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
8556 }
Helin Zhange69ff812015-10-21 19:56:22 -04008557 }
8558 i40e_flush(hw);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008559
8560 return 0;
8561}
8562
8563/**
Helin Zhang043dd652015-10-21 19:56:23 -04008564 * i40e_get_rss_reg - Get the RSS keys and lut by reading registers
8565 * @vsi: Pointer to VSI structure
8566 * @seed: Buffer to store the keys
8567 * @lut: Buffer to store the lookup table entries
8568 * @lut_size: Size of buffer to store the lookup table entries
8569 *
8570 * Returns 0 on success, negative on failure
8571 */
8572static int i40e_get_rss_reg(struct i40e_vsi *vsi, u8 *seed,
8573 u8 *lut, u16 lut_size)
8574{
8575 struct i40e_pf *pf = vsi->back;
8576 struct i40e_hw *hw = &pf->hw;
8577 u16 i;
8578
8579 if (seed) {
8580 u32 *seed_dw = (u32 *)seed;
8581
8582 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008583 seed_dw[i] = i40e_read_rx_ctl(hw, I40E_PFQF_HKEY(i));
Helin Zhang043dd652015-10-21 19:56:23 -04008584 }
8585 if (lut) {
8586 u32 *lut_dw = (u32 *)lut;
8587
8588 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8589 return -EINVAL;
8590 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8591 lut_dw[i] = rd32(hw, I40E_PFQF_HLUT(i));
8592 }
8593
8594 return 0;
8595}
8596
8597/**
8598 * i40e_config_rss - Configure RSS keys and lut
8599 * @vsi: Pointer to VSI structure
8600 * @seed: RSS hash seed
8601 * @lut: Lookup table
8602 * @lut_size: Lookup table size
8603 *
8604 * Returns 0 on success, negative on failure
8605 */
8606int i40e_config_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8607{
8608 struct i40e_pf *pf = vsi->back;
8609
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008610 if (pf->hw_features & I40E_HW_RSS_AQ_CAPABLE)
Helin Zhang043dd652015-10-21 19:56:23 -04008611 return i40e_config_rss_aq(vsi, seed, lut, lut_size);
8612 else
8613 return i40e_config_rss_reg(vsi, seed, lut, lut_size);
8614}
8615
8616/**
8617 * i40e_get_rss - Get RSS keys and lut
8618 * @vsi: Pointer to VSI structure
8619 * @seed: Buffer to store the keys
8620 * @lut: Buffer to store the lookup table entries
8621 * lut_size: Size of buffer to store the lookup table entries
8622 *
8623 * Returns 0 on success, negative on failure
8624 */
8625int i40e_get_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8626{
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008627 struct i40e_pf *pf = vsi->back;
8628
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008629 if (pf->hw_features & I40E_HW_RSS_AQ_CAPABLE)
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008630 return i40e_get_rss_aq(vsi, seed, lut, lut_size);
8631 else
8632 return i40e_get_rss_reg(vsi, seed, lut, lut_size);
Helin Zhang043dd652015-10-21 19:56:23 -04008633}
8634
8635/**
Helin Zhange69ff812015-10-21 19:56:22 -04008636 * i40e_fill_rss_lut - Fill the RSS lookup table with default values
8637 * @pf: Pointer to board private structure
8638 * @lut: Lookup table
8639 * @rss_table_size: Lookup table size
8640 * @rss_size: Range of queue number for hashing
8641 */
Alan Bradyf1582352016-08-24 11:33:46 -07008642void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
8643 u16 rss_table_size, u16 rss_size)
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008644{
Helin Zhange69ff812015-10-21 19:56:22 -04008645 u16 i;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008646
Helin Zhange69ff812015-10-21 19:56:22 -04008647 for (i = 0; i < rss_table_size; i++)
8648 lut[i] = i % rss_size;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008649}
8650
8651/**
Helin Zhang043dd652015-10-21 19:56:23 -04008652 * i40e_pf_config_rss - Prepare for RSS if used
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008653 * @pf: board private structure
8654 **/
Helin Zhang043dd652015-10-21 19:56:23 -04008655static int i40e_pf_config_rss(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008656{
Anjali Singhai Jain66ddcff2015-02-24 06:58:50 +00008657 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008658 u8 seed[I40E_HKEY_ARRAY_SIZE];
Helin Zhange69ff812015-10-21 19:56:22 -04008659 u8 *lut;
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00008660 struct i40e_hw *hw = &pf->hw;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008661 u32 reg_val;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008662 u64 hena;
Helin Zhange69ff812015-10-21 19:56:22 -04008663 int ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008664
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008665 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008666 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
8667 ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008668 hena |= i40e_pf_get_default_rss_hena(pf);
8669
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008670 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena);
8671 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008672
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008673 /* Determine the RSS table size based on the hardware capabilities */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008674 reg_val = i40e_read_rx_ctl(hw, I40E_PFQF_CTL_0);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008675 reg_val = (pf->rss_table_size == 512) ?
8676 (reg_val | I40E_PFQF_CTL_0_HASHLUTSIZE_512) :
8677 (reg_val & ~I40E_PFQF_CTL_0_HASHLUTSIZE_512);
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008678 i40e_write_rx_ctl(hw, I40E_PFQF_CTL_0, reg_val);
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008679
Helin Zhang28c58692015-10-26 19:44:27 -04008680 /* Determine the RSS size of the VSI */
Harshitha Ramamurthyf25571b2017-02-21 15:55:40 -08008681 if (!vsi->rss_size) {
8682 u16 qcount;
8683
8684 qcount = vsi->num_queue_pairs / vsi->tc_config.numtc;
8685 vsi->rss_size = min_t(int, pf->alloc_rss_size, qcount);
8686 }
Mitch Williamsa4fa59c2016-09-12 14:18:43 -07008687 if (!vsi->rss_size)
8688 return -EINVAL;
Helin Zhang28c58692015-10-26 19:44:27 -04008689
Helin Zhange69ff812015-10-21 19:56:22 -04008690 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8691 if (!lut)
8692 return -ENOMEM;
8693
Helin Zhang28c58692015-10-26 19:44:27 -04008694 /* Use user configured lut if there is one, otherwise use default */
8695 if (vsi->rss_lut_user)
8696 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8697 else
8698 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008699
Helin Zhang28c58692015-10-26 19:44:27 -04008700 /* Use user configured hash key if there is one, otherwise
8701 * use default.
8702 */
8703 if (vsi->rss_hkey_user)
8704 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8705 else
8706 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhang043dd652015-10-21 19:56:23 -04008707 ret = i40e_config_rss(vsi, seed, lut, vsi->rss_table_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008708 kfree(lut);
8709
8710 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008711}
8712
8713/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008714 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
8715 * @pf: board private structure
8716 * @queue_count: the requested queue count for rss.
8717 *
8718 * returns 0 if rss is not enabled, if enabled returns the final rss queue
8719 * count which may be different from the requested queue count.
Maciej Sosin373149f2017-04-05 07:50:55 -04008720 * Note: expects to be called while under rtnl_lock()
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008721 **/
8722int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
8723{
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008724 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
8725 int new_rss_size;
8726
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008727 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
8728 return 0;
8729
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008730 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008731
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008732 if (queue_count != vsi->num_queue_pairs) {
Harshitha Ramamurthyf25571b2017-02-21 15:55:40 -08008733 u16 qcount;
8734
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008735 vsi->req_queue_pairs = queue_count;
Maciej Sosin373149f2017-04-05 07:50:55 -04008736 i40e_prep_for_reset(pf, true);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008737
Helin Zhangacd65442015-10-26 19:44:28 -04008738 pf->alloc_rss_size = new_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008739
Maciej Sosin373149f2017-04-05 07:50:55 -04008740 i40e_reset_and_rebuild(pf, true, true);
Helin Zhang28c58692015-10-26 19:44:27 -04008741
8742 /* Discard the user configured hash keys and lut, if less
8743 * queues are enabled.
8744 */
8745 if (queue_count < vsi->rss_size) {
8746 i40e_clear_rss_config_user(vsi);
8747 dev_dbg(&pf->pdev->dev,
8748 "discard user configured hash keys and lut\n");
8749 }
8750
8751 /* Reset vsi->rss_size, as number of enabled queues changed */
Harshitha Ramamurthyf25571b2017-02-21 15:55:40 -08008752 qcount = vsi->num_queue_pairs / vsi->tc_config.numtc;
8753 vsi->rss_size = min_t(int, pf->alloc_rss_size, qcount);
Helin Zhang28c58692015-10-26 19:44:27 -04008754
Helin Zhang043dd652015-10-21 19:56:23 -04008755 i40e_pf_config_rss(pf);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008756 }
Lihong Yang12815052016-09-27 11:28:48 -07008757 dev_info(&pf->pdev->dev, "User requested queue count/HW max RSS count: %d/%d\n",
8758 vsi->req_queue_pairs, pf->rss_size_max);
Helin Zhangacd65442015-10-26 19:44:28 -04008759 return pf->alloc_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008760}
8761
8762/**
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008763 * i40e_get_partition_bw_setting - Retrieve BW settings for this PF partition
Greg Rosef4492db2015-02-06 08:52:12 +00008764 * @pf: board private structure
8765 **/
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008766i40e_status i40e_get_partition_bw_setting(struct i40e_pf *pf)
Greg Rosef4492db2015-02-06 08:52:12 +00008767{
8768 i40e_status status;
8769 bool min_valid, max_valid;
8770 u32 max_bw, min_bw;
8771
8772 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
8773 &min_valid, &max_valid);
8774
8775 if (!status) {
8776 if (min_valid)
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008777 pf->min_bw = min_bw;
Greg Rosef4492db2015-02-06 08:52:12 +00008778 if (max_valid)
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008779 pf->max_bw = max_bw;
Greg Rosef4492db2015-02-06 08:52:12 +00008780 }
8781
8782 return status;
8783}
8784
8785/**
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008786 * i40e_set_partition_bw_setting - Set BW settings for this PF partition
Greg Rosef4492db2015-02-06 08:52:12 +00008787 * @pf: board private structure
8788 **/
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008789i40e_status i40e_set_partition_bw_setting(struct i40e_pf *pf)
Greg Rosef4492db2015-02-06 08:52:12 +00008790{
8791 struct i40e_aqc_configure_partition_bw_data bw_data;
8792 i40e_status status;
8793
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00008794 /* Set the valid bit for this PF */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008795 bw_data.pf_valid_bits = cpu_to_le16(BIT(pf->hw.pf_id));
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008796 bw_data.max_bw[pf->hw.pf_id] = pf->max_bw & I40E_ALT_BW_VALUE_MASK;
8797 bw_data.min_bw[pf->hw.pf_id] = pf->min_bw & I40E_ALT_BW_VALUE_MASK;
Greg Rosef4492db2015-02-06 08:52:12 +00008798
8799 /* Set the new bandwidths */
8800 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
8801
8802 return status;
8803}
8804
8805/**
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008806 * i40e_commit_partition_bw_setting - Commit BW settings for this PF partition
Greg Rosef4492db2015-02-06 08:52:12 +00008807 * @pf: board private structure
8808 **/
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008809i40e_status i40e_commit_partition_bw_setting(struct i40e_pf *pf)
Greg Rosef4492db2015-02-06 08:52:12 +00008810{
8811 /* Commit temporary BW setting to permanent NVM image */
8812 enum i40e_admin_queue_err last_aq_status;
8813 i40e_status ret;
8814 u16 nvm_word;
8815
8816 if (pf->hw.partition_id != 1) {
8817 dev_info(&pf->pdev->dev,
8818 "Commit BW only works on partition 1! This is partition %d",
8819 pf->hw.partition_id);
8820 ret = I40E_NOT_SUPPORTED;
8821 goto bw_commit_out;
8822 }
8823
8824 /* Acquire NVM for read access */
8825 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
8826 last_aq_status = pf->hw.aq.asq_last_status;
8827 if (ret) {
8828 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008829 "Cannot acquire NVM for read access, err %s aq_err %s\n",
8830 i40e_stat_str(&pf->hw, ret),
8831 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008832 goto bw_commit_out;
8833 }
8834
8835 /* Read word 0x10 of NVM - SW compatibility word 1 */
8836 ret = i40e_aq_read_nvm(&pf->hw,
8837 I40E_SR_NVM_CONTROL_WORD,
8838 0x10, sizeof(nvm_word), &nvm_word,
8839 false, NULL);
8840 /* Save off last admin queue command status before releasing
8841 * the NVM
8842 */
8843 last_aq_status = pf->hw.aq.asq_last_status;
8844 i40e_release_nvm(&pf->hw);
8845 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008846 dev_info(&pf->pdev->dev, "NVM read error, err %s aq_err %s\n",
8847 i40e_stat_str(&pf->hw, ret),
8848 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008849 goto bw_commit_out;
8850 }
8851
8852 /* Wait a bit for NVM release to complete */
8853 msleep(50);
8854
8855 /* Acquire NVM for write access */
8856 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
8857 last_aq_status = pf->hw.aq.asq_last_status;
8858 if (ret) {
8859 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008860 "Cannot acquire NVM for write access, err %s aq_err %s\n",
8861 i40e_stat_str(&pf->hw, ret),
8862 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008863 goto bw_commit_out;
8864 }
8865 /* Write it back out unchanged to initiate update NVM,
8866 * which will force a write of the shadow (alt) RAM to
8867 * the NVM - thus storing the bandwidth values permanently.
8868 */
8869 ret = i40e_aq_update_nvm(&pf->hw,
8870 I40E_SR_NVM_CONTROL_WORD,
8871 0x10, sizeof(nvm_word),
8872 &nvm_word, true, NULL);
8873 /* Save off last admin queue command status before releasing
8874 * the NVM
8875 */
8876 last_aq_status = pf->hw.aq.asq_last_status;
8877 i40e_release_nvm(&pf->hw);
8878 if (ret)
8879 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008880 "BW settings NOT SAVED, err %s aq_err %s\n",
8881 i40e_stat_str(&pf->hw, ret),
8882 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008883bw_commit_out:
8884
8885 return ret;
8886}
8887
8888/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008889 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
8890 * @pf: board private structure to initialize
8891 *
8892 * i40e_sw_init initializes the Adapter private data structure.
8893 * Fields are initialized based on PCI device information and
8894 * OS network device settings (MTU size).
8895 **/
8896static int i40e_sw_init(struct i40e_pf *pf)
8897{
8898 int err = 0;
8899 int size;
8900
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008901 /* Set default capability flags */
8902 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
8903 I40E_FLAG_MSI_ENABLED |
Mitch Williams2bc7ee82015-02-06 08:52:11 +00008904 I40E_FLAG_MSIX_ENABLED;
8905
Mitch Williamsca99eb92014-04-04 04:43:07 +00008906 /* Set default ITR */
8907 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
8908 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
8909
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008910 /* Depending on PF configurations, it is possible that the RSS
8911 * maximum might end up larger than the available queues
8912 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008913 pf->rss_size_max = BIT(pf->hw.func_caps.rss_table_entry_width);
Helin Zhangacd65442015-10-26 19:44:28 -04008914 pf->alloc_rss_size = 1;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00008915 pf->rss_table_size = pf->hw.func_caps.rss_table_size;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008916 pf->rss_size_max = min_t(int, pf->rss_size_max,
8917 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008918 if (pf->hw.func_caps.rss) {
8919 pf->flags |= I40E_FLAG_RSS_ENABLED;
Helin Zhangacd65442015-10-26 19:44:28 -04008920 pf->alloc_rss_size = min_t(int, pf->rss_size_max,
8921 num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008922 }
8923
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008924 /* MFP mode enabled */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04008925 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.flex10_enable) {
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008926 pf->flags |= I40E_FLAG_MFP_ENABLED;
8927 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008928 if (i40e_get_partition_bw_setting(pf)) {
Greg Rosef4492db2015-02-06 08:52:12 +00008929 dev_warn(&pf->pdev->dev,
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008930 "Could not get partition bw settings\n");
8931 } else {
Greg Rosef4492db2015-02-06 08:52:12 +00008932 dev_info(&pf->pdev->dev,
Shannon Nelson4fc8c672017-06-07 05:43:08 -04008933 "Partition BW Min = %8.8x, Max = %8.8x\n",
8934 pf->min_bw, pf->max_bw);
8935
8936 /* nudge the Tx scheduler */
8937 i40e_set_partition_bw_setting(pf);
8938 }
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008939 }
8940
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008941 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
8942 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
8943 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
8944 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008945 if (pf->flags & I40E_FLAG_MFP_ENABLED &&
8946 pf->hw.num_partitions > 1)
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008947 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00008948 "Flow Director Sideband mode Disabled in MFP mode\n");
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008949 else
8950 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008951 pf->fdir_pf_filter_count =
8952 pf->hw.func_caps.fd_filters_guaranteed;
8953 pf->hw.fdir_shared_filter_count =
8954 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008955 }
8956
Anjali Singhai Jain5a433192017-06-23 04:24:45 -04008957 if (pf->hw.mac.type == I40E_MAC_X722) {
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008958 pf->hw_features |= (I40E_HW_RSS_AQ_CAPABLE |
8959 I40E_HW_128_QP_RSS_CAPABLE |
8960 I40E_HW_ATR_EVICT_CAPABLE |
8961 I40E_HW_WB_ON_ITR_CAPABLE |
8962 I40E_HW_MULTIPLE_TCP_UDP_RSS_PCTYPE |
8963 I40E_HW_NO_PCI_LINK_CHECK |
8964 I40E_HW_USE_SET_LLDP_MIB |
8965 I40E_HW_GENEVE_OFFLOAD_CAPABLE |
8966 I40E_HW_PTP_L4_CAPABLE |
8967 I40E_HW_WOL_MC_MAGIC_PKT_WAKE |
8968 I40E_HW_OUTER_UDP_CSUM_CAPABLE);
Anjali Singhai Jain10a955f2017-06-23 04:24:48 -04008969
8970#define I40E_FDEVICT_PCTYPE_DEFAULT 0xc03
8971 if (rd32(&pf->hw, I40E_GLQF_FDEVICTENA(1)) !=
8972 I40E_FDEVICT_PCTYPE_DEFAULT) {
8973 dev_warn(&pf->pdev->dev,
8974 "FD EVICT PCTYPES are not right, disable FD HW EVICT\n");
8975 pf->hw_features &= ~I40E_HW_ATR_EVICT_CAPABLE;
8976 }
Anjali Singhai Jain5a433192017-06-23 04:24:45 -04008977 } else if ((pf->hw.aq.api_maj_ver > 1) ||
8978 ((pf->hw.aq.api_maj_ver == 1) &&
8979 (pf->hw.aq.api_min_ver > 4))) {
8980 /* Supported in FW API version higher than 1.4 */
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008981 pf->hw_features |= I40E_HW_GENEVE_OFFLOAD_CAPABLE;
Anjali Singhai Jain5a433192017-06-23 04:24:45 -04008982 }
8983
8984 /* Enable HW ATR eviction if possible */
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008985 if (pf->hw_features & I40E_HW_ATR_EVICT_CAPABLE)
Anjali Singhai Jain5a433192017-06-23 04:24:45 -04008986 pf->flags |= I40E_FLAG_HW_ATR_EVICT_ENABLED;
8987
Bimmy Pujari6de432c2016-11-11 12:39:38 -08008988 if ((pf->hw.mac.type == I40E_MAC_XL710) &&
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008989 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008990 (pf->hw.aq.fw_maj_ver < 4))) {
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008991 pf->hw_features |= I40E_HW_RESTART_AUTONEG;
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008992 /* No DCB support for FW < v4.33 */
Jacob Kellerd36e41d2017-06-23 04:24:46 -04008993 pf->hw_features |= I40E_HW_NO_DCB_SUPPORT;
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008994 }
8995
8996 /* Disable FW LLDP if FW < v4.3 */
Bimmy Pujari6de432c2016-11-11 12:39:38 -08008997 if ((pf->hw.mac.type == I40E_MAC_XL710) &&
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008998 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
8999 (pf->hw.aq.fw_maj_ver < 4)))
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009000 pf->hw_features |= I40E_HW_STOP_FW_LLDP;
Neerav Parikhf1bbad32016-01-13 16:51:39 -08009001
9002 /* Use the FW Set LLDP MIB API if FW > v4.40 */
Bimmy Pujari6de432c2016-11-11 12:39:38 -08009003 if ((pf->hw.mac.type == I40E_MAC_XL710) &&
Neerav Parikhf1bbad32016-01-13 16:51:39 -08009004 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver >= 40)) ||
9005 (pf->hw.aq.fw_maj_ver >= 5)))
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009006 pf->hw_features |= I40E_HW_USE_SET_LLDP_MIB;
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08009007
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009008 if (pf->hw.func_caps.vmdq) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009009 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04009010 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
Jesse Brandeburge9e53662015-10-02 17:57:21 -07009011 pf->num_vmdq_qps = i40e_default_queues_per_vmdq(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009012 }
9013
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009014 if (pf->hw.func_caps.iwarp) {
9015 pf->flags |= I40E_FLAG_IWARP_ENABLED;
9016 /* IWARP needs one extra vector for CQP just like MISC.*/
9017 pf->num_iwarp_msix = (int)num_online_cpus() + 1;
9018 }
9019
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009020#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f132014-12-11 07:06:34 +00009021 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009022 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
9023 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
9024 pf->num_req_vfs = min_t(int,
9025 pf->hw.func_caps.num_vfs,
9026 I40E_MAX_VF_COUNT);
9027 }
9028#endif /* CONFIG_PCI_IOV */
9029 pf->eeprom_version = 0xDEAD;
9030 pf->lan_veb = I40E_NO_VEB;
9031 pf->lan_vsi = I40E_NO_VSI;
9032
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04009033 /* By default FW has this off for performance reasons */
9034 pf->flags &= ~I40E_FLAG_VEB_STATS_ENABLED;
9035
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009036 /* set up queue assignment tracking */
9037 size = sizeof(struct i40e_lump_tracking)
9038 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
9039 pf->qp_pile = kzalloc(size, GFP_KERNEL);
9040 if (!pf->qp_pile) {
9041 err = -ENOMEM;
9042 goto sw_init_done;
9043 }
9044 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
9045 pf->qp_pile->search_hint = 0;
9046
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00009047 pf->tx_timeout_recovery_level = 1;
9048
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009049 mutex_init(&pf->switch_mutex);
9050
9051sw_init_done:
9052 return err;
9053}
9054
9055/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009056 * i40e_set_ntuple - set the ntuple feature flag and take action
9057 * @pf: board private structure to initialize
9058 * @features: the feature set that the stack is suggesting
9059 *
9060 * returns a bool to indicate if reset needs to happen
9061 **/
9062bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
9063{
9064 bool need_reset = false;
9065
9066 /* Check if Flow Director n-tuple support was enabled or disabled. If
9067 * the state changed, we need to reset.
9068 */
9069 if (features & NETIF_F_NTUPLE) {
9070 /* Enable filters and mark for reset */
9071 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
9072 need_reset = true;
Tushar Davea70e4072016-05-16 12:40:53 -07009073 /* enable FD_SB only if there is MSI-X vector */
9074 if (pf->num_fdsb_msix > 0)
9075 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009076 } else {
9077 /* turn off filters, mark for reset and clear SW filter list */
9078 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
9079 need_reset = true;
9080 i40e_fdir_filter_exit(pf);
9081 }
Jacob Keller47994c12017-04-19 09:25:57 -04009082 pf->flags &= ~(I40E_FLAG_FD_SB_ENABLED |
9083 I40E_FLAG_FD_SB_AUTO_DISABLED);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00009084 /* reset fd counters */
Jacob Keller097dbf52017-02-06 14:38:46 -08009085 pf->fd_add_err = 0;
9086 pf->fd_atr_cnt = 0;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00009087 /* if ATR was auto disabled it can be re-enabled. */
Jacob Keller47994c12017-04-19 09:25:57 -04009088 if (pf->flags & I40E_FLAG_FD_ATR_AUTO_DISABLED) {
9089 pf->flags &= ~I40E_FLAG_FD_ATR_AUTO_DISABLED;
9090 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
9091 (I40E_DEBUG_FD & pf->hw.debug_mask))
Jacob Keller234dc4e2016-09-06 18:05:09 -07009092 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
9093 }
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009094 }
9095 return need_reset;
9096}
9097
9098/**
Alan Bradyd8ec9862016-07-27 12:02:38 -07009099 * i40e_clear_rss_lut - clear the rx hash lookup table
9100 * @vsi: the VSI being configured
9101 **/
9102static void i40e_clear_rss_lut(struct i40e_vsi *vsi)
9103{
9104 struct i40e_pf *pf = vsi->back;
9105 struct i40e_hw *hw = &pf->hw;
9106 u16 vf_id = vsi->vf_id;
9107 u8 i;
9108
9109 if (vsi->type == I40E_VSI_MAIN) {
9110 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
9111 wr32(hw, I40E_PFQF_HLUT(i), 0);
9112 } else if (vsi->type == I40E_VSI_SRIOV) {
9113 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
9114 i40e_write_rx_ctl(hw, I40E_VFQF_HLUT1(i, vf_id), 0);
9115 } else {
9116 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
9117 }
9118}
9119
9120/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009121 * i40e_set_features - set the netdev feature flags
9122 * @netdev: ptr to the netdev being adjusted
9123 * @features: the feature set that the stack is suggesting
Maciej Sosin373149f2017-04-05 07:50:55 -04009124 * Note: expects to be called while under rtnl_lock()
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009125 **/
9126static int i40e_set_features(struct net_device *netdev,
9127 netdev_features_t features)
9128{
9129 struct i40e_netdev_priv *np = netdev_priv(netdev);
9130 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009131 struct i40e_pf *pf = vsi->back;
9132 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009133
Alan Bradyd8ec9862016-07-27 12:02:38 -07009134 if (features & NETIF_F_RXHASH && !(netdev->features & NETIF_F_RXHASH))
9135 i40e_pf_config_rss(pf);
9136 else if (!(features & NETIF_F_RXHASH) &&
9137 netdev->features & NETIF_F_RXHASH)
9138 i40e_clear_rss_lut(vsi);
9139
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009140 if (features & NETIF_F_HW_VLAN_CTAG_RX)
9141 i40e_vlan_stripping_enable(vsi);
9142 else
9143 i40e_vlan_stripping_disable(vsi);
9144
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009145 need_reset = i40e_set_ntuple(pf, features);
9146
9147 if (need_reset)
Maciej Sosin373149f2017-04-05 07:50:55 -04009148 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED), true);
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00009149
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009150 return 0;
9151}
9152
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009153/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08009154 * i40e_get_udp_port_idx - Lookup a possibly offloaded for Rx UDP port
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009155 * @pf: board private structure
9156 * @port: The UDP port to look up
9157 *
9158 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
9159 **/
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009160static u8 i40e_get_udp_port_idx(struct i40e_pf *pf, u16 port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009161{
9162 u8 i;
9163
9164 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Jacob Keller27826fd2017-04-19 09:25:50 -04009165 if (pf->udp_ports[i].port == port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009166 return i;
9167 }
9168
9169 return i;
9170}
9171
9172/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009173 * i40e_udp_tunnel_add - Get notifications about UDP tunnel ports that come up
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009174 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009175 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009176 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009177static void i40e_udp_tunnel_add(struct net_device *netdev,
9178 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009179{
9180 struct i40e_netdev_priv *np = netdev_priv(netdev);
9181 struct i40e_vsi *vsi = np->vsi;
9182 struct i40e_pf *pf = vsi->back;
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009183 u16 port = ntohs(ti->port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009184 u8 next_idx;
9185 u8 idx;
9186
Singhai, Anjali6a899022015-12-14 12:21:18 -08009187 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009188
9189 /* Check if port already exists */
9190 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009191 netdev_info(netdev, "port %d already offloaded\n", port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009192 return;
9193 }
9194
9195 /* Now check if there is space to add the new port */
Singhai, Anjali6a899022015-12-14 12:21:18 -08009196 next_idx = i40e_get_udp_port_idx(pf, 0);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009197
9198 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009199 netdev_info(netdev, "maximum number of offloaded UDP ports reached, not adding port %d\n",
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009200 port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009201 return;
9202 }
9203
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009204 switch (ti->type) {
9205 case UDP_TUNNEL_TYPE_VXLAN:
9206 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_VXLAN;
9207 break;
9208 case UDP_TUNNEL_TYPE_GENEVE:
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009209 if (!(pf->hw_features & I40E_HW_GENEVE_OFFLOAD_CAPABLE))
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009210 return;
9211 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_NGE;
9212 break;
9213 default:
9214 return;
9215 }
9216
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009217 /* New port: add it and mark its index in the bitmap */
Jacob Keller27826fd2017-04-19 09:25:50 -04009218 pf->udp_ports[next_idx].port = port;
Singhai, Anjali6a899022015-12-14 12:21:18 -08009219 pf->pending_udp_bitmap |= BIT_ULL(next_idx);
9220 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009221}
9222
9223/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009224 * i40e_udp_tunnel_del - Get notifications about UDP tunnel ports that go away
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009225 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009226 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009227 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009228static void i40e_udp_tunnel_del(struct net_device *netdev,
9229 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009230{
9231 struct i40e_netdev_priv *np = netdev_priv(netdev);
9232 struct i40e_vsi *vsi = np->vsi;
9233 struct i40e_pf *pf = vsi->back;
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009234 u16 port = ntohs(ti->port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009235 u8 idx;
9236
Singhai, Anjali6a899022015-12-14 12:21:18 -08009237 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009238
9239 /* Check if port already exists */
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009240 if (idx >= I40E_MAX_PF_UDP_OFFLOAD_PORTS)
9241 goto not_found;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00009242
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009243 switch (ti->type) {
9244 case UDP_TUNNEL_TYPE_VXLAN:
9245 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_VXLAN)
9246 goto not_found;
9247 break;
9248 case UDP_TUNNEL_TYPE_GENEVE:
9249 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_NGE)
9250 goto not_found;
9251 break;
9252 default:
9253 goto not_found;
Singhai, Anjali6a899022015-12-14 12:21:18 -08009254 }
9255
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009256 /* if port exists, set it to 0 (mark for deletion)
9257 * and make it pending
9258 */
Jacob Keller27826fd2017-04-19 09:25:50 -04009259 pf->udp_ports[idx].port = 0;
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009260 pf->pending_udp_bitmap |= BIT_ULL(idx);
Singhai, Anjali6a899022015-12-14 12:21:18 -08009261 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
9262
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009263 return;
9264not_found:
9265 netdev_warn(netdev, "UDP port %d was not found, not deleting\n",
Jacob Kellerfe0b0cd2017-02-06 14:38:38 -08009266 port);
Singhai, Anjali6a899022015-12-14 12:21:18 -08009267}
9268
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009269static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01009270 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009271{
9272 struct i40e_netdev_priv *np = netdev_priv(netdev);
9273 struct i40e_pf *pf = np->vsi->back;
9274 struct i40e_hw *hw = &pf->hw;
9275
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009276 if (!(pf->hw_features & I40E_HW_PORT_ID_VALID))
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009277 return -EOPNOTSUPP;
9278
9279 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
9280 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
9281
9282 return 0;
9283}
9284
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08009285/**
9286 * i40e_ndo_fdb_add - add an entry to the hardware database
9287 * @ndm: the input from the stack
9288 * @tb: pointer to array of nladdr (unused)
9289 * @dev: the net device pointer
9290 * @addr: the MAC address entry being added
9291 * @flags: instructions from stack about fdb operation
9292 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00009293static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
9294 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01009295 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00009296 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00009297{
9298 struct i40e_netdev_priv *np = netdev_priv(dev);
9299 struct i40e_pf *pf = np->vsi->back;
9300 int err = 0;
9301
9302 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
9303 return -EOPNOTSUPP;
9304
Or Gerlitz65891fe2014-12-14 18:19:05 +02009305 if (vid) {
9306 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
9307 return -EINVAL;
9308 }
9309
Greg Rose4ba0dea2014-03-06 08:59:55 +00009310 /* Hardware does not support aging addresses so if a
9311 * ndm_state is given only allow permanent addresses
9312 */
9313 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
9314 netdev_info(dev, "FDB only supports static addresses\n");
9315 return -EINVAL;
9316 }
9317
9318 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
9319 err = dev_uc_add_excl(dev, addr);
9320 else if (is_multicast_ether_addr(addr))
9321 err = dev_mc_add_excl(dev, addr);
9322 else
9323 err = -EINVAL;
9324
9325 /* Only return duplicate errors if NLM_F_EXCL is set */
9326 if (err == -EEXIST && !(flags & NLM_F_EXCL))
9327 err = 0;
9328
9329 return err;
9330}
9331
Neerav Parikh51616012015-02-06 08:52:14 +00009332/**
9333 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
9334 * @dev: the netdev being configured
9335 * @nlh: RTNL message
9336 *
9337 * Inserts a new hardware bridge if not already created and
9338 * enables the bridging mode requested (VEB or VEPA). If the
9339 * hardware bridge has already been inserted and the request
9340 * is to change the mode then that requires a PF reset to
9341 * allow rebuild of the components with required hardware
9342 * bridge mode enabled.
Maciej Sosin373149f2017-04-05 07:50:55 -04009343 *
9344 * Note: expects to be called while under rtnl_lock()
Neerav Parikh51616012015-02-06 08:52:14 +00009345 **/
9346static int i40e_ndo_bridge_setlink(struct net_device *dev,
Carolyn Wyborny9df70b62015-04-27 14:57:11 -04009347 struct nlmsghdr *nlh,
9348 u16 flags)
Neerav Parikh51616012015-02-06 08:52:14 +00009349{
9350 struct i40e_netdev_priv *np = netdev_priv(dev);
9351 struct i40e_vsi *vsi = np->vsi;
9352 struct i40e_pf *pf = vsi->back;
9353 struct i40e_veb *veb = NULL;
9354 struct nlattr *attr, *br_spec;
9355 int i, rem;
9356
9357 /* Only for PF VSI for now */
9358 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
9359 return -EOPNOTSUPP;
9360
9361 /* Find the HW bridge for PF VSI */
9362 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9363 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9364 veb = pf->veb[i];
9365 }
9366
9367 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
9368
9369 nla_for_each_nested(attr, br_spec, rem) {
9370 __u16 mode;
9371
9372 if (nla_type(attr) != IFLA_BRIDGE_MODE)
9373 continue;
9374
9375 mode = nla_get_u16(attr);
9376 if ((mode != BRIDGE_MODE_VEPA) &&
9377 (mode != BRIDGE_MODE_VEB))
9378 return -EINVAL;
9379
9380 /* Insert a new HW bridge */
9381 if (!veb) {
9382 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
9383 vsi->tc_config.enabled_tc);
9384 if (veb) {
9385 veb->bridge_mode = mode;
9386 i40e_config_bridge_mode(veb);
9387 } else {
9388 /* No Bridge HW offload available */
9389 return -ENOENT;
9390 }
9391 break;
9392 } else if (mode != veb->bridge_mode) {
9393 /* Existing HW bridge but different mode needs reset */
9394 veb->bridge_mode = mode;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009395 /* TODO: If no VFs or VMDq VSIs, disallow VEB mode */
9396 if (mode == BRIDGE_MODE_VEB)
9397 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
9398 else
9399 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
Maciej Sosin373149f2017-04-05 07:50:55 -04009400 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED),
9401 true);
Neerav Parikh51616012015-02-06 08:52:14 +00009402 break;
9403 }
9404 }
9405
9406 return 0;
9407}
9408
9409/**
9410 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
9411 * @skb: skb buff
9412 * @pid: process id
9413 * @seq: RTNL message seq #
9414 * @dev: the netdev being configured
9415 * @filter_mask: unused
Jesse Brandeburgd4b2f9f2015-09-03 17:18:48 -04009416 * @nlflags: netlink flags passed in
Neerav Parikh51616012015-02-06 08:52:14 +00009417 *
9418 * Return the mode in which the hardware bridge is operating in
9419 * i.e VEB or VEPA.
9420 **/
Neerav Parikh51616012015-02-06 08:52:14 +00009421static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
9422 struct net_device *dev,
Carolyn Wyborny9f4ffc42015-08-31 19:54:42 -04009423 u32 __always_unused filter_mask,
9424 int nlflags)
Neerav Parikh51616012015-02-06 08:52:14 +00009425{
9426 struct i40e_netdev_priv *np = netdev_priv(dev);
9427 struct i40e_vsi *vsi = np->vsi;
9428 struct i40e_pf *pf = vsi->back;
9429 struct i40e_veb *veb = NULL;
9430 int i;
9431
9432 /* Only for PF VSI for now */
9433 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
9434 return -EOPNOTSUPP;
9435
9436 /* Find the HW bridge for the PF VSI */
9437 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9438 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9439 veb = pf->veb[i];
9440 }
9441
9442 if (!veb)
9443 return 0;
9444
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02009445 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
Huaibin Wang599b0762016-09-26 09:51:18 +02009446 0, 0, nlflags, filter_mask, NULL);
Neerav Parikh51616012015-02-06 08:52:14 +00009447}
Neerav Parikh51616012015-02-06 08:52:14 +00009448
Joe Stringerf44a75e2015-04-14 17:09:14 -07009449/**
9450 * i40e_features_check - Validate encapsulated packet conforms to limits
9451 * @skb: skb buff
Jean Sacren2bc11c62015-09-19 05:08:43 -06009452 * @dev: This physical port's netdev
Joe Stringerf44a75e2015-04-14 17:09:14 -07009453 * @features: Offload features that the stack believes apply
9454 **/
9455static netdev_features_t i40e_features_check(struct sk_buff *skb,
9456 struct net_device *dev,
9457 netdev_features_t features)
9458{
Alexander Duyckf114dca2016-10-25 16:08:46 -07009459 size_t len;
9460
9461 /* No point in doing any of this if neither checksum nor GSO are
9462 * being requested for this frame. We can rule out both by just
9463 * checking for CHECKSUM_PARTIAL
9464 */
9465 if (skb->ip_summed != CHECKSUM_PARTIAL)
9466 return features;
9467
9468 /* We cannot support GSO if the MSS is going to be less than
9469 * 64 bytes. If it is then we need to drop support for GSO.
9470 */
9471 if (skb_is_gso(skb) && (skb_shinfo(skb)->gso_size < 64))
9472 features &= ~NETIF_F_GSO_MASK;
9473
9474 /* MACLEN can support at most 63 words */
9475 len = skb_network_header(skb) - skb->data;
9476 if (len & ~(63 * 2))
9477 goto out_err;
9478
9479 /* IPLEN and EIPLEN can support at most 127 dwords */
9480 len = skb_transport_header(skb) - skb_network_header(skb);
9481 if (len & ~(127 * 4))
9482 goto out_err;
9483
9484 if (skb->encapsulation) {
9485 /* L4TUNLEN can support 127 words */
9486 len = skb_inner_network_header(skb) - skb_transport_header(skb);
9487 if (len & ~(127 * 2))
9488 goto out_err;
9489
9490 /* IPLEN can support at most 127 dwords */
9491 len = skb_inner_transport_header(skb) -
9492 skb_inner_network_header(skb);
9493 if (len & ~(127 * 4))
9494 goto out_err;
9495 }
9496
9497 /* No need to validate L4LEN as TCP is the only protocol with a
9498 * a flexible value and we support all possible values supported
9499 * by TCP, which is at most 15 dwords
9500 */
Joe Stringerf44a75e2015-04-14 17:09:14 -07009501
9502 return features;
Alexander Duyckf114dca2016-10-25 16:08:46 -07009503out_err:
9504 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Joe Stringerf44a75e2015-04-14 17:09:14 -07009505}
9506
Björn Töpel0c8493d2017-05-24 07:55:34 +02009507/**
9508 * i40e_xdp_setup - add/remove an XDP program
9509 * @vsi: VSI to changed
9510 * @prog: XDP program
9511 **/
9512static int i40e_xdp_setup(struct i40e_vsi *vsi,
9513 struct bpf_prog *prog)
9514{
9515 int frame_size = vsi->netdev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
9516 struct i40e_pf *pf = vsi->back;
9517 struct bpf_prog *old_prog;
9518 bool need_reset;
9519 int i;
9520
9521 /* Don't allow frames that span over multiple buffers */
9522 if (frame_size > vsi->rx_buf_len)
9523 return -EINVAL;
9524
9525 if (!i40e_enabled_xdp_vsi(vsi) && !prog)
9526 return 0;
9527
9528 /* When turning XDP on->off/off->on we reset and rebuild the rings. */
9529 need_reset = (i40e_enabled_xdp_vsi(vsi) != !!prog);
9530
9531 if (need_reset)
9532 i40e_prep_for_reset(pf, true);
9533
9534 old_prog = xchg(&vsi->xdp_prog, prog);
9535
9536 if (need_reset)
9537 i40e_reset_and_rebuild(pf, true, true);
9538
9539 for (i = 0; i < vsi->num_queue_pairs; i++)
9540 WRITE_ONCE(vsi->rx_rings[i]->xdp_prog, vsi->xdp_prog);
9541
9542 if (old_prog)
9543 bpf_prog_put(old_prog);
9544
9545 return 0;
9546}
9547
9548/**
9549 * i40e_xdp - implements ndo_xdp for i40e
9550 * @dev: netdevice
9551 * @xdp: XDP command
9552 **/
9553static int i40e_xdp(struct net_device *dev,
9554 struct netdev_xdp *xdp)
9555{
9556 struct i40e_netdev_priv *np = netdev_priv(dev);
9557 struct i40e_vsi *vsi = np->vsi;
9558
9559 if (vsi->type != I40E_VSI_MAIN)
9560 return -EINVAL;
9561
9562 switch (xdp->command) {
9563 case XDP_SETUP_PROG:
9564 return i40e_xdp_setup(vsi, xdp->prog);
9565 case XDP_QUERY_PROG:
9566 xdp->prog_attached = i40e_enabled_xdp_vsi(vsi);
Daniel Borkmanneb230392017-06-24 21:13:52 +02009567 xdp->prog_id = vsi->xdp_prog ? vsi->xdp_prog->aux->id : 0;
Björn Töpel0c8493d2017-05-24 07:55:34 +02009568 return 0;
9569 default:
9570 return -EINVAL;
9571 }
9572}
9573
Shannon Nelson37a29732015-02-27 09:15:19 +00009574static const struct net_device_ops i40e_netdev_ops = {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009575 .ndo_open = i40e_open,
9576 .ndo_stop = i40e_close,
9577 .ndo_start_xmit = i40e_lan_xmit_frame,
9578 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
9579 .ndo_set_rx_mode = i40e_set_rx_mode,
9580 .ndo_validate_addr = eth_validate_addr,
9581 .ndo_set_mac_address = i40e_set_mac,
9582 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009583 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009584 .ndo_tx_timeout = i40e_tx_timeout,
9585 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
9586 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
9587#ifdef CONFIG_NET_POLL_CONTROLLER
9588 .ndo_poll_controller = i40e_netpoll,
9589#endif
John Fastabende4c67342016-02-16 21:16:15 -08009590 .ndo_setup_tc = __i40e_setup_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009591 .ndo_set_features = i40e_set_features,
9592 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
9593 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04009594 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009595 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00009596 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00009597 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Anjali Singhai Jainc3bbbd22016-04-01 03:56:07 -07009598 .ndo_set_vf_trust = i40e_ndo_set_vf_trust,
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009599 .ndo_udp_tunnel_add = i40e_udp_tunnel_add,
9600 .ndo_udp_tunnel_del = i40e_udp_tunnel_del,
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009601 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00009602 .ndo_fdb_add = i40e_ndo_fdb_add,
Joe Stringerf44a75e2015-04-14 17:09:14 -07009603 .ndo_features_check = i40e_features_check,
Neerav Parikh51616012015-02-06 08:52:14 +00009604 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
9605 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
Björn Töpel0c8493d2017-05-24 07:55:34 +02009606 .ndo_xdp = i40e_xdp,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009607};
9608
9609/**
9610 * i40e_config_netdev - Setup the netdev flags
9611 * @vsi: the VSI being configured
9612 *
9613 * Returns 0 on success, negative value on failure
9614 **/
9615static int i40e_config_netdev(struct i40e_vsi *vsi)
9616{
9617 struct i40e_pf *pf = vsi->back;
9618 struct i40e_hw *hw = &pf->hw;
9619 struct i40e_netdev_priv *np;
9620 struct net_device *netdev;
Jacob Keller435c0842016-11-08 13:05:10 -08009621 u8 broadcast[ETH_ALEN];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009622 u8 mac_addr[ETH_ALEN];
9623 int etherdev_size;
Preethi Banalabacd75c2017-03-27 14:43:18 -07009624 netdev_features_t hw_enc_features;
9625 netdev_features_t hw_features;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009626
9627 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00009628 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009629 if (!netdev)
9630 return -ENOMEM;
9631
9632 vsi->netdev = netdev;
9633 np = netdev_priv(netdev);
9634 np->vsi = vsi;
9635
Preethi Banalabacd75c2017-03-27 14:43:18 -07009636 hw_enc_features = NETIF_F_SG |
9637 NETIF_F_IP_CSUM |
9638 NETIF_F_IPV6_CSUM |
9639 NETIF_F_HIGHDMA |
9640 NETIF_F_SOFT_FEATURES |
9641 NETIF_F_TSO |
9642 NETIF_F_TSO_ECN |
9643 NETIF_F_TSO6 |
9644 NETIF_F_GSO_GRE |
9645 NETIF_F_GSO_GRE_CSUM |
9646 NETIF_F_GSO_PARTIAL |
9647 NETIF_F_GSO_UDP_TUNNEL |
9648 NETIF_F_GSO_UDP_TUNNEL_CSUM |
9649 NETIF_F_SCTP_CRC |
9650 NETIF_F_RXHASH |
9651 NETIF_F_RXCSUM |
9652 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009653
Jacob Kellerd36e41d2017-06-23 04:24:46 -04009654 if (!(pf->hw_features & I40E_HW_OUTER_UDP_CSUM_CAPABLE))
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009655 netdev->gso_partial_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
9656
9657 netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009658
Preethi Banalabacd75c2017-03-27 14:43:18 -07009659 netdev->hw_enc_features |= hw_enc_features;
9660
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009661 /* record features VLANs can make use of */
Preethi Banalabacd75c2017-03-27 14:43:18 -07009662 netdev->vlan_features |= hw_enc_features | NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009663
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009664 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009665 netdev->hw_features |= NETIF_F_NTUPLE;
Preethi Banalabacd75c2017-03-27 14:43:18 -07009666 hw_features = hw_enc_features |
9667 NETIF_F_HW_VLAN_CTAG_TX |
9668 NETIF_F_HW_VLAN_CTAG_RX;
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009669
Preethi Banalabacd75c2017-03-27 14:43:18 -07009670 netdev->hw_features |= hw_features;
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009671
Preethi Banalabacd75c2017-03-27 14:43:18 -07009672 netdev->features |= hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009673 netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009674
9675 if (vsi->type == I40E_VSI_MAIN) {
9676 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00009677 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Jacob Keller41c4c2b2017-04-05 07:50:57 -04009678 /* The following steps are necessary for two reasons. First,
9679 * some older NVM configurations load a default MAC-VLAN
9680 * filter that will accept any tagged packet, and we want to
9681 * replace this with a normal filter. Additionally, it is
9682 * possible our MAC address was provided by the platform using
9683 * Open Firmware or similar.
9684 *
9685 * Thus, we need to remove the default filter and install one
9686 * specific to the MAC address.
Jacob Keller1596b5d2016-11-08 13:05:15 -08009687 */
9688 i40e_rm_default_mac_filter(vsi, mac_addr);
Jacob Keller278e7d02016-10-05 09:30:37 -07009689 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller9569a9a2016-11-11 12:39:37 -08009690 i40e_add_mac_filter(vsi, mac_addr);
Jacob Keller278e7d02016-10-05 09:30:37 -07009691 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009692 } else {
Jacob Keller8c9eb352017-07-12 05:46:12 -04009693 /* Relate the VSI_VMDQ name to the VSI_MAIN name. Note that we
9694 * are still limited by IFNAMSIZ, but we're adding 'v%d\0' to
9695 * the end, which is 4 bytes long, so force truncation of the
9696 * original name by IFNAMSIZ - 4
9697 */
9698 snprintf(netdev->name, IFNAMSIZ, "%.*sv%%d",
9699 IFNAMSIZ - 4,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009700 pf->vsi[pf->lan_vsi]->netdev->name);
9701 random_ether_addr(mac_addr);
Kiran Patil21659032015-09-30 14:09:03 -04009702
Jacob Keller278e7d02016-10-05 09:30:37 -07009703 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller9569a9a2016-11-11 12:39:37 -08009704 i40e_add_mac_filter(vsi, mac_addr);
Jacob Keller278e7d02016-10-05 09:30:37 -07009705 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009706 }
Kiran Patil21659032015-09-30 14:09:03 -04009707
Jacob Keller435c0842016-11-08 13:05:10 -08009708 /* Add the broadcast filter so that we initially will receive
9709 * broadcast packets. Note that when a new VLAN is first added the
9710 * driver will convert all filters marked I40E_VLAN_ANY into VLAN
9711 * specific filters as part of transitioning into "vlan" operation.
9712 * When more VLANs are added, the driver will copy each existing MAC
9713 * filter and add it for the new VLAN.
9714 *
9715 * Broadcast filters are handled specially by
9716 * i40e_sync_filters_subtask, as the driver must to set the broadcast
9717 * promiscuous bit instead of adding this directly as a MAC/VLAN
9718 * filter. The subtask will update the correct broadcast promiscuous
9719 * bits as VLANs become active or inactive.
9720 */
9721 eth_broadcast_addr(broadcast);
9722 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller9569a9a2016-11-11 12:39:37 -08009723 i40e_add_mac_filter(vsi, broadcast);
Jacob Keller435c0842016-11-08 13:05:10 -08009724 spin_unlock_bh(&vsi->mac_filter_hash_lock);
9725
Greg Rose9a173902014-05-22 06:32:02 +00009726 ether_addr_copy(netdev->dev_addr, mac_addr);
9727 ether_addr_copy(netdev->perm_addr, mac_addr);
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009728
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009729 netdev->priv_flags |= IFF_UNICAST_FLT;
9730 netdev->priv_flags |= IFF_SUPP_NOFCS;
9731 /* Setup netdev TC information */
9732 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
9733
9734 netdev->netdev_ops = &i40e_netdev_ops;
9735 netdev->watchdog_timeo = 5 * HZ;
9736 i40e_set_ethtool_ops(netdev);
9737
Jarod Wilson91c527a2016-10-17 15:54:05 -04009738 /* MTU range: 68 - 9706 */
9739 netdev->min_mtu = ETH_MIN_MTU;
Mitch Williams1e3a5fd2017-06-23 04:24:43 -04009740 netdev->max_mtu = I40E_MAX_RXBUFFER - I40E_PACKET_HDR_PAD;
Jarod Wilson91c527a2016-10-17 15:54:05 -04009741
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009742 return 0;
9743}
9744
9745/**
9746 * i40e_vsi_delete - Delete a VSI from the switch
9747 * @vsi: the VSI being removed
9748 *
9749 * Returns 0 on success, negative value on failure
9750 **/
9751static void i40e_vsi_delete(struct i40e_vsi *vsi)
9752{
9753 /* remove default VSI is not allowed */
9754 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
9755 return;
9756
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009757 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009758}
9759
9760/**
Neerav Parikh51616012015-02-06 08:52:14 +00009761 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
9762 * @vsi: the VSI being queried
9763 *
9764 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
9765 **/
9766int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
9767{
9768 struct i40e_veb *veb;
9769 struct i40e_pf *pf = vsi->back;
9770
9771 /* Uplink is not a bridge so default to VEB */
9772 if (vsi->veb_idx == I40E_NO_VEB)
9773 return 1;
9774
9775 veb = pf->veb[vsi->veb_idx];
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009776 if (!veb) {
9777 dev_info(&pf->pdev->dev,
9778 "There is no veb associated with the bridge\n");
9779 return -ENOENT;
9780 }
Neerav Parikh51616012015-02-06 08:52:14 +00009781
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009782 /* Uplink is a bridge in VEPA mode */
9783 if (veb->bridge_mode & BRIDGE_MODE_VEPA) {
9784 return 0;
9785 } else {
9786 /* Uplink is a bridge in VEB mode */
9787 return 1;
9788 }
9789
9790 /* VEPA is now default bridge, so return 0 */
9791 return 0;
Neerav Parikh51616012015-02-06 08:52:14 +00009792}
9793
9794/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009795 * i40e_add_vsi - Add a VSI to the switch
9796 * @vsi: the VSI being configured
9797 *
9798 * This initializes a VSI context depending on the VSI type to be added and
9799 * passes it down to the add_vsi aq command.
9800 **/
9801static int i40e_add_vsi(struct i40e_vsi *vsi)
9802{
9803 int ret = -ENODEV;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009804 struct i40e_pf *pf = vsi->back;
9805 struct i40e_hw *hw = &pf->hw;
9806 struct i40e_vsi_context ctxt;
Jacob Keller278e7d02016-10-05 09:30:37 -07009807 struct i40e_mac_filter *f;
9808 struct hlist_node *h;
9809 int bkt;
Kiran Patil21659032015-09-30 14:09:03 -04009810
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009811 u8 enabled_tc = 0x1; /* TC0 enabled */
9812 int f_count = 0;
9813
9814 memset(&ctxt, 0, sizeof(ctxt));
9815 switch (vsi->type) {
9816 case I40E_VSI_MAIN:
9817 /* The PF's main VSI is already setup as part of the
9818 * device initialization, so we'll not bother with
9819 * the add_vsi call, but we will retrieve the current
9820 * VSI context.
9821 */
9822 ctxt.seid = pf->main_vsi_seid;
9823 ctxt.pf_num = pf->hw.pf_id;
9824 ctxt.vf_num = 0;
9825 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
9826 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
9827 if (ret) {
9828 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009829 "couldn't get PF vsi config, err %s aq_err %s\n",
9830 i40e_stat_str(&pf->hw, ret),
9831 i40e_aq_str(&pf->hw,
9832 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009833 return -ENOENT;
9834 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009835 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009836 vsi->info.valid_sections = 0;
9837
9838 vsi->seid = ctxt.seid;
9839 vsi->id = ctxt.vsi_number;
9840
9841 enabled_tc = i40e_pf_get_tc_map(pf);
9842
9843 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009844 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
9845 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009846 memset(&ctxt, 0, sizeof(ctxt));
9847 ctxt.seid = pf->main_vsi_seid;
9848 ctxt.pf_num = pf->hw.pf_id;
9849 ctxt.vf_num = 0;
9850 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
9851 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
9852 if (ret) {
9853 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009854 "update vsi failed, err %s aq_err %s\n",
9855 i40e_stat_str(&pf->hw, ret),
9856 i40e_aq_str(&pf->hw,
9857 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009858 ret = -ENOENT;
9859 goto err;
9860 }
9861 /* update the local VSI info queue map */
9862 i40e_vsi_update_queue_map(vsi, &ctxt);
9863 vsi->info.valid_sections = 0;
9864 } else {
9865 /* Default/Main VSI is only enabled for TC0
9866 * reconfigure it to enable all TCs that are
9867 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009868 * For MFP case the iSCSI PF would use this
9869 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009870 */
9871 ret = i40e_vsi_config_tc(vsi, enabled_tc);
9872 if (ret) {
Carolyn Wyborny19279232017-07-14 09:10:07 -04009873 /* Single TC condition is not fatal,
9874 * message and continue
9875 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009876 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009877 "failed to configure TCs for main VSI tc_map 0x%08x, err %s aq_err %s\n",
9878 enabled_tc,
9879 i40e_stat_str(&pf->hw, ret),
9880 i40e_aq_str(&pf->hw,
9881 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009882 }
9883 }
9884 break;
9885
9886 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009887 ctxt.pf_num = hw->pf_id;
9888 ctxt.vf_num = 0;
9889 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009890 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009891 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009892 if ((pf->flags & I40E_FLAG_VEB_MODE_ENABLED) &&
9893 (i40e_is_vsi_uplink_mode_veb(vsi))) {
Neerav Parikh51616012015-02-06 08:52:14 +00009894 ctxt.info.valid_sections |=
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009895 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
Neerav Parikh51616012015-02-06 08:52:14 +00009896 ctxt.info.switch_id =
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009897 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Neerav Parikh51616012015-02-06 08:52:14 +00009898 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009899 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009900 break;
9901
9902 case I40E_VSI_VMDQ2:
9903 ctxt.pf_num = hw->pf_id;
9904 ctxt.vf_num = 0;
9905 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009906 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009907 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
9908
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009909 /* This VSI is connected to VEB so the switch_id
9910 * should be set to zero by default.
9911 */
Neerav Parikh51616012015-02-06 08:52:14 +00009912 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9913 ctxt.info.valid_sections |=
9914 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9915 ctxt.info.switch_id =
9916 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9917 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009918
9919 /* Setup the VSI tx/rx queue map for TC0 only for now */
9920 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9921 break;
9922
9923 case I40E_VSI_SRIOV:
9924 ctxt.pf_num = hw->pf_id;
9925 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
9926 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009927 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009928 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
9929
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009930 /* This VSI is connected to VEB so the switch_id
9931 * should be set to zero by default.
9932 */
Neerav Parikh51616012015-02-06 08:52:14 +00009933 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9934 ctxt.info.valid_sections |=
9935 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9936 ctxt.info.switch_id =
9937 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9938 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009939
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009940 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
9941 ctxt.info.valid_sections |=
9942 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
9943 ctxt.info.queueing_opt_flags |=
Ashish Shah4b28cdb2016-05-03 15:13:17 -07009944 (I40E_AQ_VSI_QUE_OPT_TCP_ENA |
9945 I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009946 }
9947
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009948 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
9949 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00009950 if (pf->vf[vsi->vf_id].spoofchk) {
9951 ctxt.info.valid_sections |=
9952 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
9953 ctxt.info.sec_flags |=
9954 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
9955 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
9956 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009957 /* Setup the VSI tx/rx queue map for TC0 only for now */
9958 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9959 break;
9960
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009961 case I40E_VSI_IWARP:
9962 /* send down message to iWARP */
9963 break;
9964
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009965 default:
9966 return -ENODEV;
9967 }
9968
9969 if (vsi->type != I40E_VSI_MAIN) {
9970 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
9971 if (ret) {
9972 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009973 "add vsi failed, err %s aq_err %s\n",
9974 i40e_stat_str(&pf->hw, ret),
9975 i40e_aq_str(&pf->hw,
9976 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009977 ret = -ENOENT;
9978 goto err;
9979 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009980 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009981 vsi->info.valid_sections = 0;
9982 vsi->seid = ctxt.seid;
9983 vsi->id = ctxt.vsi_number;
9984 }
9985
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009986 vsi->active_filters = 0;
Jacob Keller0da36b92017-04-19 09:25:55 -04009987 clear_bit(__I40E_VSI_OVERFLOW_PROMISC, vsi->state);
Jacob Keller278e7d02016-10-05 09:30:37 -07009988 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009989 /* If macvlan filters already exist, force them to get loaded */
Jacob Keller278e7d02016-10-05 09:30:37 -07009990 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009991 f->state = I40E_FILTER_NEW;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009992 f_count++;
9993 }
Jacob Keller278e7d02016-10-05 09:30:37 -07009994 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -04009995
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009996 if (f_count) {
9997 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
9998 pf->flags |= I40E_FLAG_FILTER_SYNC;
9999 }
10000
10001 /* Update VSI BW information */
10002 ret = i40e_vsi_get_bw_info(vsi);
10003 if (ret) {
10004 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010005 "couldn't get vsi bw info, err %s aq_err %s\n",
10006 i40e_stat_str(&pf->hw, ret),
10007 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010008 /* VSI is already added so not tearing that up */
10009 ret = 0;
10010 }
10011
10012err:
10013 return ret;
10014}
10015
10016/**
10017 * i40e_vsi_release - Delete a VSI and free its resources
10018 * @vsi: the VSI being removed
10019 *
10020 * Returns 0 on success or < 0 on error
10021 **/
10022int i40e_vsi_release(struct i40e_vsi *vsi)
10023{
Jacob Keller278e7d02016-10-05 09:30:37 -070010024 struct i40e_mac_filter *f;
10025 struct hlist_node *h;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010026 struct i40e_veb *veb = NULL;
10027 struct i40e_pf *pf;
10028 u16 uplink_seid;
Jacob Keller278e7d02016-10-05 09:30:37 -070010029 int i, n, bkt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010030
10031 pf = vsi->back;
10032
10033 /* release of a VEB-owner or last VSI is not allowed */
10034 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
10035 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
10036 vsi->seid, vsi->uplink_seid);
10037 return -ENODEV;
10038 }
10039 if (vsi == pf->vsi[pf->lan_vsi] &&
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030010040 !test_bit(__I40E_DOWN, pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010041 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
10042 return -ENODEV;
10043 }
10044
10045 uplink_seid = vsi->uplink_seid;
10046 if (vsi->type != I40E_VSI_SRIOV) {
10047 if (vsi->netdev_registered) {
10048 vsi->netdev_registered = false;
10049 if (vsi->netdev) {
10050 /* results in a call to i40e_close() */
10051 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010052 }
10053 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +000010054 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010055 }
10056 i40e_vsi_disable_irq(vsi);
10057 }
10058
Jacob Keller278e7d02016-10-05 09:30:37 -070010059 spin_lock_bh(&vsi->mac_filter_hash_lock);
Jacob Keller6622f5c2016-10-05 09:30:32 -070010060
10061 /* clear the sync flag on all filters */
10062 if (vsi->netdev) {
10063 __dev_uc_unsync(vsi->netdev, NULL);
10064 __dev_mc_unsync(vsi->netdev, NULL);
10065 }
10066
10067 /* make sure any remaining filters are marked for deletion */
Jacob Keller278e7d02016-10-05 09:30:37 -070010068 hash_for_each_safe(vsi->mac_filter_hash, bkt, h, f, hlist)
Jacob Keller290d2552016-10-05 09:30:36 -070010069 __i40e_del_filter(vsi, f);
Jacob Keller6622f5c2016-10-05 09:30:32 -070010070
Jacob Keller278e7d02016-10-05 09:30:37 -070010071 spin_unlock_bh(&vsi->mac_filter_hash_lock);
Kiran Patil21659032015-09-30 14:09:03 -040010072
Jesse Brandeburg17652c62015-11-05 17:01:02 -080010073 i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010074
10075 i40e_vsi_delete(vsi);
10076 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +000010077 if (vsi->netdev) {
10078 free_netdev(vsi->netdev);
10079 vsi->netdev = NULL;
10080 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010081 i40e_vsi_clear_rings(vsi);
10082 i40e_vsi_clear(vsi);
10083
10084 /* If this was the last thing on the VEB, except for the
10085 * controlling VSI, remove the VEB, which puts the controlling
10086 * VSI onto the next level down in the switch.
10087 *
10088 * Well, okay, there's one more exception here: don't remove
10089 * the orphan VEBs yet. We'll wait for an explicit remove request
10090 * from up the network stack.
10091 */
Mitch Williams505682c2014-05-20 08:01:37 +000010092 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010093 if (pf->vsi[i] &&
10094 pf->vsi[i]->uplink_seid == uplink_seid &&
10095 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
10096 n++; /* count the VSIs */
10097 }
10098 }
10099 for (i = 0; i < I40E_MAX_VEB; i++) {
10100 if (!pf->veb[i])
10101 continue;
10102 if (pf->veb[i]->uplink_seid == uplink_seid)
10103 n++; /* count the VEBs */
10104 if (pf->veb[i]->seid == uplink_seid)
10105 veb = pf->veb[i];
10106 }
10107 if (n == 0 && veb && veb->uplink_seid != 0)
10108 i40e_veb_release(veb);
10109
10110 return 0;
10111}
10112
10113/**
10114 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
10115 * @vsi: ptr to the VSI
10116 *
10117 * This should only be called after i40e_vsi_mem_alloc() which allocates the
10118 * corresponding SW VSI structure and initializes num_queue_pairs for the
10119 * newly allocated VSI.
10120 *
10121 * Returns 0 on success or negative on failure
10122 **/
10123static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
10124{
10125 int ret = -ENOENT;
10126 struct i40e_pf *pf = vsi->back;
10127
Alexander Duyck493fb302013-09-28 07:01:44 +000010128 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010129 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
10130 vsi->seid);
10131 return -EEXIST;
10132 }
10133
10134 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +000010135 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010136 vsi->seid, vsi->base_vector);
10137 return -EEXIST;
10138 }
10139
Greg Rose90e04072014-03-06 08:59:57 +000010140 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010141 if (ret) {
10142 dev_info(&pf->pdev->dev,
10143 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
10144 vsi->num_q_vectors, vsi->seid, ret);
10145 vsi->num_q_vectors = 0;
10146 goto vector_setup_out;
10147 }
10148
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -040010149 /* In Legacy mode, we do not have to get any other vector since we
10150 * piggyback on the misc/ICR0 for queue interrupts.
10151 */
10152 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
10153 return ret;
Shannon Nelson958a3e32013-09-28 07:13:28 +000010154 if (vsi->num_q_vectors)
10155 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
10156 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010157 if (vsi->base_vector < 0) {
10158 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +000010159 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
10160 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010161 i40e_vsi_free_q_vectors(vsi);
10162 ret = -ENOENT;
10163 goto vector_setup_out;
10164 }
10165
10166vector_setup_out:
10167 return ret;
10168}
10169
10170/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010171 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
10172 * @vsi: pointer to the vsi.
10173 *
10174 * This re-allocates a vsi's queue resources.
10175 *
10176 * Returns pointer to the successfully allocated and configured VSI sw struct
10177 * on success, otherwise returns NULL on failure.
10178 **/
10179static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
10180{
Björn Töpel74608d12017-05-24 07:55:35 +020010181 u16 alloc_queue_pairs;
John Underwoodf5340392016-02-18 09:19:24 -080010182 struct i40e_pf *pf;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010183 u8 enabled_tc;
10184 int ret;
10185
John Underwoodf5340392016-02-18 09:19:24 -080010186 if (!vsi)
10187 return NULL;
10188
10189 pf = vsi->back;
10190
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010191 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
10192 i40e_vsi_clear_rings(vsi);
10193
10194 i40e_vsi_free_arrays(vsi, false);
10195 i40e_set_num_rings_in_vsi(vsi);
10196 ret = i40e_vsi_alloc_arrays(vsi, false);
10197 if (ret)
10198 goto err_vsi;
10199
Björn Töpel74608d12017-05-24 07:55:35 +020010200 alloc_queue_pairs = vsi->alloc_queue_pairs *
10201 (i40e_enabled_xdp_vsi(vsi) ? 2 : 1);
10202
10203 ret = i40e_get_lump(pf, pf->qp_pile, alloc_queue_pairs, vsi->idx);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010204 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +000010205 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010206 "failed to get tracking for %d queues for VSI %d err %d\n",
Björn Töpel74608d12017-05-24 07:55:35 +020010207 alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010208 goto err_vsi;
10209 }
10210 vsi->base_queue = ret;
10211
10212 /* Update the FW view of the VSI. Force a reset of TC and queue
10213 * layout configurations.
10214 */
10215 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
10216 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
10217 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
10218 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
Jacob Keller1596b5d2016-11-08 13:05:15 -080010219 if (vsi->type == I40E_VSI_MAIN)
10220 i40e_rm_default_mac_filter(vsi, pf->hw.mac.perm_addr);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010221
10222 /* assign it some queues */
10223 ret = i40e_alloc_rings(vsi);
10224 if (ret)
10225 goto err_rings;
10226
10227 /* map all of the rings to the q_vectors */
10228 i40e_vsi_map_rings_to_vectors(vsi);
10229 return vsi;
10230
10231err_rings:
10232 i40e_vsi_free_q_vectors(vsi);
10233 if (vsi->netdev_registered) {
10234 vsi->netdev_registered = false;
10235 unregister_netdev(vsi->netdev);
10236 free_netdev(vsi->netdev);
10237 vsi->netdev = NULL;
10238 }
10239 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
10240err_vsi:
10241 i40e_vsi_clear(vsi);
10242 return NULL;
10243}
10244
10245/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010246 * i40e_vsi_setup - Set up a VSI by a given type
10247 * @pf: board private structure
10248 * @type: VSI type
10249 * @uplink_seid: the switch element to link to
10250 * @param1: usage depends upon VSI type. For VF types, indicates VF id
10251 *
10252 * This allocates the sw VSI structure and its queue resources, then add a VSI
10253 * to the identified VEB.
10254 *
10255 * Returns pointer to the successfully allocated and configure VSI sw struct on
10256 * success, otherwise returns NULL on failure.
10257 **/
10258struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
10259 u16 uplink_seid, u32 param1)
10260{
10261 struct i40e_vsi *vsi = NULL;
10262 struct i40e_veb *veb = NULL;
Björn Töpel74608d12017-05-24 07:55:35 +020010263 u16 alloc_queue_pairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010264 int ret, i;
10265 int v_idx;
10266
10267 /* The requested uplink_seid must be either
10268 * - the PF's port seid
10269 * no VEB is needed because this is the PF
10270 * or this is a Flow Director special case VSI
10271 * - seid of an existing VEB
10272 * - seid of a VSI that owns an existing VEB
10273 * - seid of a VSI that doesn't own a VEB
10274 * a new VEB is created and the VSI becomes the owner
10275 * - seid of the PF VSI, which is what creates the first VEB
10276 * this is a special case of the previous
10277 *
10278 * Find which uplink_seid we were given and create a new VEB if needed
10279 */
10280 for (i = 0; i < I40E_MAX_VEB; i++) {
10281 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
10282 veb = pf->veb[i];
10283 break;
10284 }
10285 }
10286
10287 if (!veb && uplink_seid != pf->mac_seid) {
10288
Mitch Williams505682c2014-05-20 08:01:37 +000010289 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010290 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
10291 vsi = pf->vsi[i];
10292 break;
10293 }
10294 }
10295 if (!vsi) {
10296 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
10297 uplink_seid);
10298 return NULL;
10299 }
10300
10301 if (vsi->uplink_seid == pf->mac_seid)
10302 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
10303 vsi->tc_config.enabled_tc);
10304 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
10305 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
10306 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +000010307 if (veb) {
10308 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
10309 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040010310 "New VSI creation error, uplink seid of LAN VSI expected.\n");
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +000010311 return NULL;
10312 }
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040010313 /* We come up by default in VEPA mode if SRIOV is not
10314 * already enabled, in which case we can't force VEPA
10315 * mode.
10316 */
10317 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
10318 veb->bridge_mode = BRIDGE_MODE_VEPA;
10319 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
10320 }
Neerav Parikh51616012015-02-06 08:52:14 +000010321 i40e_config_bridge_mode(veb);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +000010322 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010323 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
10324 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
10325 veb = pf->veb[i];
10326 }
10327 if (!veb) {
10328 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
10329 return NULL;
10330 }
10331
10332 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
10333 uplink_seid = veb->seid;
10334 }
10335
10336 /* get vsi sw struct */
10337 v_idx = i40e_vsi_mem_alloc(pf, type);
10338 if (v_idx < 0)
10339 goto err_alloc;
10340 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010341 if (!vsi)
10342 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010343 vsi->type = type;
10344 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
10345
10346 if (type == I40E_VSI_MAIN)
10347 pf->lan_vsi = v_idx;
10348 else if (type == I40E_VSI_SRIOV)
10349 vsi->vf_id = param1;
10350 /* assign it some queues */
Björn Töpel74608d12017-05-24 07:55:35 +020010351 alloc_queue_pairs = vsi->alloc_queue_pairs *
10352 (i40e_enabled_xdp_vsi(vsi) ? 2 : 1);
10353
10354 ret = i40e_get_lump(pf, pf->qp_pile, alloc_queue_pairs, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010355 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +000010356 dev_info(&pf->pdev->dev,
10357 "failed to get tracking for %d queues for VSI %d err=%d\n",
Björn Töpel74608d12017-05-24 07:55:35 +020010358 alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010359 goto err_vsi;
10360 }
10361 vsi->base_queue = ret;
10362
10363 /* get a VSI from the hardware */
10364 vsi->uplink_seid = uplink_seid;
10365 ret = i40e_add_vsi(vsi);
10366 if (ret)
10367 goto err_vsi;
10368
10369 switch (vsi->type) {
10370 /* setup the netdev if needed */
10371 case I40E_VSI_MAIN:
10372 case I40E_VSI_VMDQ2:
10373 ret = i40e_config_netdev(vsi);
10374 if (ret)
10375 goto err_netdev;
10376 ret = register_netdev(vsi->netdev);
10377 if (ret)
10378 goto err_netdev;
10379 vsi->netdev_registered = true;
10380 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010381#ifdef CONFIG_I40E_DCB
10382 /* Setup DCB netlink interface */
10383 i40e_dcbnl_setup(vsi);
10384#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010385 /* fall through */
10386
10387 case I40E_VSI_FDIR:
10388 /* set up vectors and rings if needed */
10389 ret = i40e_vsi_setup_vectors(vsi);
10390 if (ret)
10391 goto err_msix;
10392
10393 ret = i40e_alloc_rings(vsi);
10394 if (ret)
10395 goto err_rings;
10396
10397 /* map all of the rings to the q_vectors */
10398 i40e_vsi_map_rings_to_vectors(vsi);
10399
10400 i40e_vsi_reset_stats(vsi);
10401 break;
10402
10403 default:
10404 /* no netdev or rings for the other VSI types */
10405 break;
10406 }
10407
Jacob Kellerd36e41d2017-06-23 04:24:46 -040010408 if ((pf->hw_features & I40E_HW_RSS_AQ_CAPABLE) &&
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -040010409 (vsi->type == I40E_VSI_VMDQ2)) {
10410 ret = i40e_vsi_config_rss(vsi);
10411 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010412 return vsi;
10413
10414err_rings:
10415 i40e_vsi_free_q_vectors(vsi);
10416err_msix:
10417 if (vsi->netdev_registered) {
10418 vsi->netdev_registered = false;
10419 unregister_netdev(vsi->netdev);
10420 free_netdev(vsi->netdev);
10421 vsi->netdev = NULL;
10422 }
10423err_netdev:
10424 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
10425err_vsi:
10426 i40e_vsi_clear(vsi);
10427err_alloc:
10428 return NULL;
10429}
10430
10431/**
10432 * i40e_veb_get_bw_info - Query VEB BW information
10433 * @veb: the veb to query
10434 *
10435 * Query the Tx scheduler BW configuration data for given VEB
10436 **/
10437static int i40e_veb_get_bw_info(struct i40e_veb *veb)
10438{
10439 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
10440 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
10441 struct i40e_pf *pf = veb->pf;
10442 struct i40e_hw *hw = &pf->hw;
10443 u32 tc_bw_max;
10444 int ret = 0;
10445 int i;
10446
10447 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
10448 &bw_data, NULL);
10449 if (ret) {
10450 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010451 "query veb bw config failed, err %s aq_err %s\n",
10452 i40e_stat_str(&pf->hw, ret),
10453 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010454 goto out;
10455 }
10456
10457 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
10458 &ets_data, NULL);
10459 if (ret) {
10460 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010461 "query veb bw ets config failed, err %s aq_err %s\n",
10462 i40e_stat_str(&pf->hw, ret),
10463 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010464 goto out;
10465 }
10466
10467 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
10468 veb->bw_max_quanta = ets_data.tc_bw_max;
10469 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +000010470 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010471 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
10472 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
10473 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
10474 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
10475 veb->bw_tc_limit_credits[i] =
10476 le16_to_cpu(bw_data.tc_bw_limits[i]);
10477 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
10478 }
10479
10480out:
10481 return ret;
10482}
10483
10484/**
10485 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
10486 * @pf: board private structure
10487 *
10488 * On error: returns error code (negative)
10489 * On success: returns vsi index in PF (positive)
10490 **/
10491static int i40e_veb_mem_alloc(struct i40e_pf *pf)
10492{
10493 int ret = -ENOENT;
10494 struct i40e_veb *veb;
10495 int i;
10496
10497 /* Need to protect the allocation of switch elements at the PF level */
10498 mutex_lock(&pf->switch_mutex);
10499
10500 /* VEB list may be fragmented if VEB creation/destruction has
10501 * been happening. We can afford to do a quick scan to look
10502 * for any free slots in the list.
10503 *
10504 * find next empty veb slot, looping back around if necessary
10505 */
10506 i = 0;
10507 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
10508 i++;
10509 if (i >= I40E_MAX_VEB) {
10510 ret = -ENOMEM;
10511 goto err_alloc_veb; /* out of VEB slots! */
10512 }
10513
10514 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
10515 if (!veb) {
10516 ret = -ENOMEM;
10517 goto err_alloc_veb;
10518 }
10519 veb->pf = pf;
10520 veb->idx = i;
10521 veb->enabled_tc = 1;
10522
10523 pf->veb[i] = veb;
10524 ret = i;
10525err_alloc_veb:
10526 mutex_unlock(&pf->switch_mutex);
10527 return ret;
10528}
10529
10530/**
10531 * i40e_switch_branch_release - Delete a branch of the switch tree
10532 * @branch: where to start deleting
10533 *
10534 * This uses recursion to find the tips of the branch to be
10535 * removed, deleting until we get back to and can delete this VEB.
10536 **/
10537static void i40e_switch_branch_release(struct i40e_veb *branch)
10538{
10539 struct i40e_pf *pf = branch->pf;
10540 u16 branch_seid = branch->seid;
10541 u16 veb_idx = branch->idx;
10542 int i;
10543
10544 /* release any VEBs on this VEB - RECURSION */
10545 for (i = 0; i < I40E_MAX_VEB; i++) {
10546 if (!pf->veb[i])
10547 continue;
10548 if (pf->veb[i]->uplink_seid == branch->seid)
10549 i40e_switch_branch_release(pf->veb[i]);
10550 }
10551
10552 /* Release the VSIs on this VEB, but not the owner VSI.
10553 *
10554 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
10555 * the VEB itself, so don't use (*branch) after this loop.
10556 */
Mitch Williams505682c2014-05-20 08:01:37 +000010557 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010558 if (!pf->vsi[i])
10559 continue;
10560 if (pf->vsi[i]->uplink_seid == branch_seid &&
10561 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
10562 i40e_vsi_release(pf->vsi[i]);
10563 }
10564 }
10565
10566 /* There's one corner case where the VEB might not have been
10567 * removed, so double check it here and remove it if needed.
10568 * This case happens if the veb was created from the debugfs
10569 * commands and no VSIs were added to it.
10570 */
10571 if (pf->veb[veb_idx])
10572 i40e_veb_release(pf->veb[veb_idx]);
10573}
10574
10575/**
10576 * i40e_veb_clear - remove veb struct
10577 * @veb: the veb to remove
10578 **/
10579static void i40e_veb_clear(struct i40e_veb *veb)
10580{
10581 if (!veb)
10582 return;
10583
10584 if (veb->pf) {
10585 struct i40e_pf *pf = veb->pf;
10586
10587 mutex_lock(&pf->switch_mutex);
10588 if (pf->veb[veb->idx] == veb)
10589 pf->veb[veb->idx] = NULL;
10590 mutex_unlock(&pf->switch_mutex);
10591 }
10592
10593 kfree(veb);
10594}
10595
10596/**
10597 * i40e_veb_release - Delete a VEB and free its resources
10598 * @veb: the VEB being removed
10599 **/
10600void i40e_veb_release(struct i40e_veb *veb)
10601{
10602 struct i40e_vsi *vsi = NULL;
10603 struct i40e_pf *pf;
10604 int i, n = 0;
10605
10606 pf = veb->pf;
10607
10608 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +000010609 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010610 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
10611 n++;
10612 vsi = pf->vsi[i];
10613 }
10614 }
10615 if (n != 1) {
10616 dev_info(&pf->pdev->dev,
10617 "can't remove VEB %d with %d VSIs left\n",
10618 veb->seid, n);
10619 return;
10620 }
10621
10622 /* move the remaining VSI to uplink veb */
10623 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
10624 if (veb->uplink_seid) {
10625 vsi->uplink_seid = veb->uplink_seid;
10626 if (veb->uplink_seid == pf->mac_seid)
10627 vsi->veb_idx = I40E_NO_VEB;
10628 else
10629 vsi->veb_idx = veb->veb_idx;
10630 } else {
10631 /* floating VEB */
10632 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
10633 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
10634 }
10635
10636 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
10637 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010638}
10639
10640/**
10641 * i40e_add_veb - create the VEB in the switch
10642 * @veb: the VEB to be instantiated
10643 * @vsi: the controlling VSI
10644 **/
10645static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
10646{
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010647 struct i40e_pf *pf = veb->pf;
Shannon Nelson66fc3602016-01-13 16:51:42 -080010648 bool enable_stats = !!(pf->flags & I40E_FLAG_VEB_STATS_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010649 int ret;
10650
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010651 ret = i40e_aq_add_veb(&pf->hw, veb->uplink_seid, vsi->seid,
Mitch Williams5bc16032016-05-16 10:26:43 -070010652 veb->enabled_tc, false,
Shannon Nelson66fc3602016-01-13 16:51:42 -080010653 &veb->seid, enable_stats, NULL);
Mitch Williams5bc16032016-05-16 10:26:43 -070010654
10655 /* get a VEB from the hardware */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010656 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010657 dev_info(&pf->pdev->dev,
10658 "couldn't add VEB, err %s aq_err %s\n",
10659 i40e_stat_str(&pf->hw, ret),
10660 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010661 return -EPERM;
10662 }
10663
10664 /* get statistics counter */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010665 ret = i40e_aq_get_veb_parameters(&pf->hw, veb->seid, NULL, NULL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010666 &veb->stats_idx, NULL, NULL, NULL);
10667 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010668 dev_info(&pf->pdev->dev,
10669 "couldn't get VEB statistics idx, err %s aq_err %s\n",
10670 i40e_stat_str(&pf->hw, ret),
10671 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010672 return -EPERM;
10673 }
10674 ret = i40e_veb_get_bw_info(veb);
10675 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010676 dev_info(&pf->pdev->dev,
10677 "couldn't get VEB bw info, err %s aq_err %s\n",
10678 i40e_stat_str(&pf->hw, ret),
10679 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
10680 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010681 return -ENOENT;
10682 }
10683
10684 vsi->uplink_seid = veb->seid;
10685 vsi->veb_idx = veb->idx;
10686 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
10687
10688 return 0;
10689}
10690
10691/**
10692 * i40e_veb_setup - Set up a VEB
10693 * @pf: board private structure
10694 * @flags: VEB setup flags
10695 * @uplink_seid: the switch element to link to
10696 * @vsi_seid: the initial VSI seid
10697 * @enabled_tc: Enabled TC bit-map
10698 *
10699 * This allocates the sw VEB structure and links it into the switch
10700 * It is possible and legal for this to be a duplicate of an already
10701 * existing VEB. It is also possible for both uplink and vsi seids
10702 * to be zero, in order to create a floating VEB.
10703 *
10704 * Returns pointer to the successfully allocated VEB sw struct on
10705 * success, otherwise returns NULL on failure.
10706 **/
10707struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
10708 u16 uplink_seid, u16 vsi_seid,
10709 u8 enabled_tc)
10710{
10711 struct i40e_veb *veb, *uplink_veb = NULL;
10712 int vsi_idx, veb_idx;
10713 int ret;
10714
10715 /* if one seid is 0, the other must be 0 to create a floating relay */
10716 if ((uplink_seid == 0 || vsi_seid == 0) &&
10717 (uplink_seid + vsi_seid != 0)) {
10718 dev_info(&pf->pdev->dev,
10719 "one, not both seid's are 0: uplink=%d vsi=%d\n",
10720 uplink_seid, vsi_seid);
10721 return NULL;
10722 }
10723
10724 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +000010725 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010726 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
10727 break;
Mitch Williams505682c2014-05-20 08:01:37 +000010728 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010729 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
10730 vsi_seid);
10731 return NULL;
10732 }
10733
10734 if (uplink_seid && uplink_seid != pf->mac_seid) {
10735 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
10736 if (pf->veb[veb_idx] &&
10737 pf->veb[veb_idx]->seid == uplink_seid) {
10738 uplink_veb = pf->veb[veb_idx];
10739 break;
10740 }
10741 }
10742 if (!uplink_veb) {
10743 dev_info(&pf->pdev->dev,
10744 "uplink seid %d not found\n", uplink_seid);
10745 return NULL;
10746 }
10747 }
10748
10749 /* get veb sw struct */
10750 veb_idx = i40e_veb_mem_alloc(pf);
10751 if (veb_idx < 0)
10752 goto err_alloc;
10753 veb = pf->veb[veb_idx];
10754 veb->flags = flags;
10755 veb->uplink_seid = uplink_seid;
10756 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
10757 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
10758
10759 /* create the VEB in the switch */
10760 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
10761 if (ret)
10762 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +000010763 if (vsi_idx == pf->lan_vsi)
10764 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010765
10766 return veb;
10767
10768err_veb:
10769 i40e_veb_clear(veb);
10770err_alloc:
10771 return NULL;
10772}
10773
10774/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000010775 * i40e_setup_pf_switch_element - set PF vars based on switch type
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010776 * @pf: board private structure
10777 * @ele: element we are building info from
10778 * @num_reported: total number of elements
10779 * @printconfig: should we print the contents
10780 *
10781 * helper function to assist in extracting a few useful SEID values.
10782 **/
10783static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
10784 struct i40e_aqc_switch_config_element_resp *ele,
10785 u16 num_reported, bool printconfig)
10786{
10787 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
10788 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
10789 u8 element_type = ele->element_type;
10790 u16 seid = le16_to_cpu(ele->seid);
10791
10792 if (printconfig)
10793 dev_info(&pf->pdev->dev,
10794 "type=%d seid=%d uplink=%d downlink=%d\n",
10795 element_type, seid, uplink_seid, downlink_seid);
10796
10797 switch (element_type) {
10798 case I40E_SWITCH_ELEMENT_TYPE_MAC:
10799 pf->mac_seid = seid;
10800 break;
10801 case I40E_SWITCH_ELEMENT_TYPE_VEB:
10802 /* Main VEB? */
10803 if (uplink_seid != pf->mac_seid)
10804 break;
10805 if (pf->lan_veb == I40E_NO_VEB) {
10806 int v;
10807
10808 /* find existing or else empty VEB */
10809 for (v = 0; v < I40E_MAX_VEB; v++) {
10810 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
10811 pf->lan_veb = v;
10812 break;
10813 }
10814 }
10815 if (pf->lan_veb == I40E_NO_VEB) {
10816 v = i40e_veb_mem_alloc(pf);
10817 if (v < 0)
10818 break;
10819 pf->lan_veb = v;
10820 }
10821 }
10822
10823 pf->veb[pf->lan_veb]->seid = seid;
10824 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
10825 pf->veb[pf->lan_veb]->pf = pf;
10826 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
10827 break;
10828 case I40E_SWITCH_ELEMENT_TYPE_VSI:
10829 if (num_reported != 1)
10830 break;
10831 /* This is immediately after a reset so we can assume this is
10832 * the PF's VSI
10833 */
10834 pf->mac_seid = uplink_seid;
10835 pf->pf_seid = downlink_seid;
10836 pf->main_vsi_seid = seid;
10837 if (printconfig)
10838 dev_info(&pf->pdev->dev,
10839 "pf_seid=%d main_vsi_seid=%d\n",
10840 pf->pf_seid, pf->main_vsi_seid);
10841 break;
10842 case I40E_SWITCH_ELEMENT_TYPE_PF:
10843 case I40E_SWITCH_ELEMENT_TYPE_VF:
10844 case I40E_SWITCH_ELEMENT_TYPE_EMP:
10845 case I40E_SWITCH_ELEMENT_TYPE_BMC:
10846 case I40E_SWITCH_ELEMENT_TYPE_PE:
10847 case I40E_SWITCH_ELEMENT_TYPE_PA:
10848 /* ignore these for now */
10849 break;
10850 default:
10851 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
10852 element_type, seid);
10853 break;
10854 }
10855}
10856
10857/**
10858 * i40e_fetch_switch_configuration - Get switch config from firmware
10859 * @pf: board private structure
10860 * @printconfig: should we print the contents
10861 *
10862 * Get the current switch configuration from the device and
10863 * extract a few useful SEID values.
10864 **/
10865int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
10866{
10867 struct i40e_aqc_get_switch_config_resp *sw_config;
10868 u16 next_seid = 0;
10869 int ret = 0;
10870 u8 *aq_buf;
10871 int i;
10872
10873 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
10874 if (!aq_buf)
10875 return -ENOMEM;
10876
10877 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
10878 do {
10879 u16 num_reported, num_total;
10880
10881 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
10882 I40E_AQ_LARGE_BUF,
10883 &next_seid, NULL);
10884 if (ret) {
10885 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010886 "get switch config failed err %s aq_err %s\n",
10887 i40e_stat_str(&pf->hw, ret),
10888 i40e_aq_str(&pf->hw,
10889 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010890 kfree(aq_buf);
10891 return -ENOENT;
10892 }
10893
10894 num_reported = le16_to_cpu(sw_config->header.num_reported);
10895 num_total = le16_to_cpu(sw_config->header.num_total);
10896
10897 if (printconfig)
10898 dev_info(&pf->pdev->dev,
10899 "header: %d reported %d total\n",
10900 num_reported, num_total);
10901
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010902 for (i = 0; i < num_reported; i++) {
10903 struct i40e_aqc_switch_config_element_resp *ele =
10904 &sw_config->element[i];
10905
10906 i40e_setup_pf_switch_element(pf, ele, num_reported,
10907 printconfig);
10908 }
10909 } while (next_seid != 0);
10910
10911 kfree(aq_buf);
10912 return ret;
10913}
10914
10915/**
10916 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
10917 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010918 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010919 *
10920 * Returns 0 on success, negative value on failure
10921 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010922static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010923{
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070010924 u16 flags = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010925 int ret;
10926
10927 /* find out what's out there already */
10928 ret = i40e_fetch_switch_configuration(pf, false);
10929 if (ret) {
10930 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010931 "couldn't fetch switch config, err %s aq_err %s\n",
10932 i40e_stat_str(&pf->hw, ret),
10933 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010934 return ret;
10935 }
10936 i40e_pf_reset_stats(pf);
10937
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070010938 /* set the switch config bit for the whole device to
10939 * support limited promisc or true promisc
10940 * when user requests promisc. The default is limited
10941 * promisc.
10942 */
10943
10944 if ((pf->hw.pf_id == 0) &&
10945 !(pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT))
10946 flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10947
10948 if (pf->hw.pf_id == 0) {
10949 u16 valid_flags;
10950
10951 valid_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10952 ret = i40e_aq_set_switch_config(&pf->hw, flags, valid_flags,
10953 NULL);
10954 if (ret && pf->hw.aq.asq_last_status != I40E_AQ_RC_ESRCH) {
10955 dev_info(&pf->pdev->dev,
10956 "couldn't set switch config bits, err %s aq_err %s\n",
10957 i40e_stat_str(&pf->hw, ret),
10958 i40e_aq_str(&pf->hw,
10959 pf->hw.aq.asq_last_status));
10960 /* not a fatal problem, just keep going */
10961 }
10962 }
10963
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010964 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010965 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010966 struct i40e_vsi *vsi = NULL;
10967 u16 uplink_seid;
10968
10969 /* Set up the PF VSI associated with the PF's main VSI
10970 * that is already in the HW switch
10971 */
10972 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
10973 uplink_seid = pf->veb[pf->lan_veb]->seid;
10974 else
10975 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010976 if (pf->lan_vsi == I40E_NO_VSI)
10977 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
10978 else if (reinit)
10979 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010980 if (!vsi) {
10981 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
10982 i40e_fdir_teardown(pf);
10983 return -EAGAIN;
10984 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010985 } else {
10986 /* force a reset of TC and queue layout configurations */
10987 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -040010988
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010989 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
10990 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
10991 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
10992 }
10993 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
10994
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010995 i40e_fdir_sb_setup(pf);
10996
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010997 /* Setup static PF queue filter control settings */
10998 ret = i40e_setup_pf_filter_control(pf);
10999 if (ret) {
11000 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
11001 ret);
11002 /* Failure here should not stop continuing other steps */
11003 }
11004
11005 /* enable RSS in the HW, even for only one queue, as the stack can use
11006 * the hash
11007 */
11008 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
Helin Zhang043dd652015-10-21 19:56:23 -040011009 i40e_pf_config_rss(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011010
11011 /* fill in link information and enable LSE reporting */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011012 i40e_link_event(pf);
11013
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000011014 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011015 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
11016 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000011017
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000011018 i40e_ptp_init(pf);
11019
Alexander Duyck1f190d92017-04-19 09:25:51 -040011020 /* repopulate tunnel port filters */
11021 i40e_sync_udp_filters(pf);
11022
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011023 return ret;
11024}
11025
11026/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011027 * i40e_determine_queue_usage - Work out queue distribution
11028 * @pf: board private structure
11029 **/
11030static void i40e_determine_queue_usage(struct i40e_pf *pf)
11031{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011032 int queues_left;
11033
11034 pf->num_lan_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011035
11036 /* Find the max queues to be put into basic use. We'll always be
11037 * using TC0, whether or not DCB is running, and TC0 will get the
11038 * big RSS set.
11039 */
11040 queues_left = pf->hw.func_caps.num_tx_qp;
11041
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011042 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +000011043 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011044 /* one qp for PF, no queues for anything else */
11045 queues_left = 0;
Helin Zhangacd65442015-10-26 19:44:28 -040011046 pf->alloc_rss_size = pf->num_lan_qps = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011047
11048 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080011049 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011050 I40E_FLAG_IWARP_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080011051 I40E_FLAG_FD_SB_ENABLED |
11052 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000011053 I40E_FLAG_DCB_CAPABLE |
Dave Ertmana0362442016-08-29 17:38:26 -070011054 I40E_FLAG_DCB_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080011055 I40E_FLAG_SRIOV_ENABLED |
11056 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +000011057 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
11058 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +000011059 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000011060 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +000011061 /* one qp for PF */
Helin Zhangacd65442015-10-26 19:44:28 -040011062 pf->alloc_rss_size = pf->num_lan_qps = 1;
Frank Zhang9aa7e932014-05-20 08:01:42 +000011063 queues_left -= pf->num_lan_qps;
11064
11065 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011066 I40E_FLAG_IWARP_ENABLED |
Frank Zhang9aa7e932014-05-20 08:01:42 +000011067 I40E_FLAG_FD_SB_ENABLED |
11068 I40E_FLAG_FD_ATR_ENABLED |
11069 I40E_FLAG_DCB_ENABLED |
11070 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011071 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011072 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +000011073 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011074 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Dave Ertmana0362442016-08-29 17:38:26 -070011075 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE |
11076 I40E_FLAG_DCB_ENABLED);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011077 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
11078 }
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +000011079 pf->num_lan_qps = max_t(int, pf->rss_size_max,
11080 num_online_cpus());
11081 pf->num_lan_qps = min_t(int, pf->num_lan_qps,
11082 pf->hw.func_caps.num_tx_qp);
11083
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011084 queues_left -= pf->num_lan_qps;
11085 }
11086
11087 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
11088 if (queues_left > 1) {
11089 queues_left -= 1; /* save 1 queue for FD */
11090 } else {
11091 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
11092 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
11093 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011094 }
11095
11096 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
11097 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080011098 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
11099 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011100 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
11101 }
11102
11103 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
11104 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
11105 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
11106 (queues_left / pf->num_vmdq_qps));
11107 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
11108 }
11109
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +000011110 pf->queues_left = queues_left;
Neerav Parikh8279e492015-09-03 17:18:50 -040011111 dev_dbg(&pf->pdev->dev,
11112 "qs_avail=%d FD SB=%d lan_qs=%d lan_tc0=%d vf=%d*%d vmdq=%d*%d, remaining=%d\n",
11113 pf->hw.func_caps.num_tx_qp,
11114 !!(pf->flags & I40E_FLAG_FD_SB_ENABLED),
Helin Zhangacd65442015-10-26 19:44:28 -040011115 pf->num_lan_qps, pf->alloc_rss_size, pf->num_req_vfs,
11116 pf->num_vf_qps, pf->num_vmdq_vsis, pf->num_vmdq_qps,
11117 queues_left);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011118}
11119
11120/**
11121 * i40e_setup_pf_filter_control - Setup PF static filter control
11122 * @pf: PF to be setup
11123 *
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000011124 * i40e_setup_pf_filter_control sets up a PF's initial filter control
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011125 * settings. If PE/FCoE are enabled then it will also set the per PF
11126 * based filter sizes required for them. It also enables Flow director,
11127 * ethertype and macvlan type filter settings for the pf.
11128 *
11129 * Returns 0 on success, negative on failure
11130 **/
11131static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
11132{
11133 struct i40e_filter_control_settings *settings = &pf->filter_settings;
11134
11135 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
11136
11137 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080011138 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011139 settings->enable_fdir = true;
11140
11141 /* Ethtype and MACVLAN filters enabled for PF */
11142 settings->enable_ethtype = true;
11143 settings->enable_macvlan = true;
11144
11145 if (i40e_set_filter_control(&pf->hw, settings))
11146 return -ENOENT;
11147
11148 return 0;
11149}
11150
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011151#define INFO_STRING_LEN 255
Shannon Nelson7fd89542015-10-21 19:47:04 -040011152#define REMAIN(__x) (INFO_STRING_LEN - (__x))
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011153static void i40e_print_features(struct i40e_pf *pf)
11154{
11155 struct i40e_hw *hw = &pf->hw;
Joe Perches3b195842015-12-03 04:20:57 -080011156 char *buf;
11157 int i;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011158
Joe Perches3b195842015-12-03 04:20:57 -080011159 buf = kmalloc(INFO_STRING_LEN, GFP_KERNEL);
11160 if (!buf)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011161 return;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011162
Joe Perches3b195842015-12-03 04:20:57 -080011163 i = snprintf(buf, INFO_STRING_LEN, "Features: PF-id[%d]", hw->pf_id);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011164#ifdef CONFIG_PCI_IOV
Joe Perches3b195842015-12-03 04:20:57 -080011165 i += snprintf(&buf[i], REMAIN(i), " VFs: %d", pf->num_req_vfs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011166#endif
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070011167 i += snprintf(&buf[i], REMAIN(i), " VSIs: %d QP: %d",
Shannon Nelson7fd89542015-10-21 19:47:04 -040011168 pf->hw.func_caps.num_vsis,
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070011169 pf->vsi[pf->lan_vsi]->num_queue_pairs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011170 if (pf->flags & I40E_FLAG_RSS_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080011171 i += snprintf(&buf[i], REMAIN(i), " RSS");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011172 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080011173 i += snprintf(&buf[i], REMAIN(i), " FD_ATR");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000011174 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
Joe Perches3b195842015-12-03 04:20:57 -080011175 i += snprintf(&buf[i], REMAIN(i), " FD_SB");
11176 i += snprintf(&buf[i], REMAIN(i), " NTUPLE");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000011177 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +000011178 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Joe Perches3b195842015-12-03 04:20:57 -080011179 i += snprintf(&buf[i], REMAIN(i), " DCB");
Joe Perches3b195842015-12-03 04:20:57 -080011180 i += snprintf(&buf[i], REMAIN(i), " VxLAN");
Singhai, Anjali6a899022015-12-14 12:21:18 -080011181 i += snprintf(&buf[i], REMAIN(i), " Geneve");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011182 if (pf->flags & I40E_FLAG_PTP)
Joe Perches3b195842015-12-03 04:20:57 -080011183 i += snprintf(&buf[i], REMAIN(i), " PTP");
Shannon Nelson6dec1012015-09-28 14:12:30 -040011184 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080011185 i += snprintf(&buf[i], REMAIN(i), " VEB");
Shannon Nelson6dec1012015-09-28 14:12:30 -040011186 else
Joe Perches3b195842015-12-03 04:20:57 -080011187 i += snprintf(&buf[i], REMAIN(i), " VEPA");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011188
Joe Perches3b195842015-12-03 04:20:57 -080011189 dev_info(&pf->pdev->dev, "%s\n", buf);
11190 kfree(buf);
Shannon Nelson7fd89542015-10-21 19:47:04 -040011191 WARN_ON(i > INFO_STRING_LEN);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011192}
11193
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011194/**
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011195 * i40e_get_platform_mac_addr - get platform-specific MAC address
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011196 * @pdev: PCI device information struct
11197 * @pf: board private structure
11198 *
Jacob Keller41c4c2b2017-04-05 07:50:57 -040011199 * Look up the MAC address for the device. First we'll try
11200 * eth_platform_get_mac_address, which will check Open Firmware, or arch
11201 * specific fallback. Otherwise, we'll default to the stored value in
11202 * firmware.
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011203 **/
11204static void i40e_get_platform_mac_addr(struct pci_dev *pdev, struct i40e_pf *pf)
11205{
Jacob Keller41c4c2b2017-04-05 07:50:57 -040011206 if (eth_platform_get_mac_address(&pdev->dev, pf->hw.mac.addr))
11207 i40e_get_mac_addr(&pf->hw, pf->hw.mac.addr);
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011208}
11209
11210/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011211 * i40e_probe - Device initialization routine
11212 * @pdev: PCI device information struct
11213 * @ent: entry in i40e_pci_tbl
11214 *
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000011215 * i40e_probe initializes a PF identified by a pci_dev structure.
11216 * The OS initialization, configuring of the PF private structure,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011217 * and a hardware reset occur.
11218 *
11219 * Returns 0 on success, negative on failure
11220 **/
11221static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
11222{
Catherine Sullivane8278452015-02-06 08:52:08 +000011223 struct i40e_aq_get_phy_abilities_resp abilities;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011224 struct i40e_pf *pf;
11225 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000011226 static u16 pfs_found;
Shannon Nelson1d5109d2015-08-26 15:14:08 -040011227 u16 wol_nvm_bits;
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011228 u16 link_status;
Jean Sacren6f66a482015-09-19 05:08:45 -060011229 int err;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040011230 u32 val;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000011231 u32 i;
Helin Zhang58fc3262015-10-01 14:37:38 -040011232 u8 set_fc_aq_fail;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011233
11234 err = pci_enable_device_mem(pdev);
11235 if (err)
11236 return err;
11237
11238 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +000011239 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +000011240 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +000011241 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
11242 if (err) {
11243 dev_err(&pdev->dev,
11244 "DMA configuration failed: 0x%x\n", err);
11245 goto err_dma;
11246 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011247 }
11248
11249 /* set up pci connections */
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011250 err = pci_request_mem_regions(pdev, i40e_driver_name);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011251 if (err) {
11252 dev_info(&pdev->dev,
11253 "pci_request_selected_regions failed %d\n", err);
11254 goto err_pci_reg;
11255 }
11256
11257 pci_enable_pcie_error_reporting(pdev);
11258 pci_set_master(pdev);
11259
11260 /* Now that we have a PCI connection, we need to do the
11261 * low level device setup. This is primarily setting up
11262 * the Admin Queue structures and then querying for the
11263 * device's current profile information.
11264 */
11265 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
11266 if (!pf) {
11267 err = -ENOMEM;
11268 goto err_pf_alloc;
11269 }
11270 pf->next_vsi = 0;
11271 pf->pdev = pdev;
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030011272 set_bit(__I40E_DOWN, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011273
11274 hw = &pf->hw;
11275 hw->back = pf;
Anjali Singhai232f4702015-02-26 16:15:39 +000011276
Shannon Nelson2ac8b672015-07-23 16:54:37 -040011277 pf->ioremap_len = min_t(int, pci_resource_len(pdev, 0),
11278 I40E_MAX_CSR_SPACE);
Anjali Singhai232f4702015-02-26 16:15:39 +000011279
Shannon Nelson2ac8b672015-07-23 16:54:37 -040011280 hw->hw_addr = ioremap(pci_resource_start(pdev, 0), pf->ioremap_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011281 if (!hw->hw_addr) {
11282 err = -EIO;
11283 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
11284 (unsigned int)pci_resource_start(pdev, 0),
Shannon Nelson2ac8b672015-07-23 16:54:37 -040011285 pf->ioremap_len, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011286 goto err_ioremap;
11287 }
11288 hw->vendor_id = pdev->vendor;
11289 hw->device_id = pdev->device;
11290 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
11291 hw->subsystem_vendor_id = pdev->subsystem_vendor;
11292 hw->subsystem_device_id = pdev->subsystem_device;
11293 hw->bus.device = PCI_SLOT(pdev->devfn);
11294 hw->bus.func = PCI_FUNC(pdev->devfn);
Sudheer Mogilappagarib3f028f2017-02-09 23:58:22 -080011295 hw->bus.bus_id = pdev->bus->number;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000011296 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011297
Jacob Keller0e588de2017-02-06 14:38:50 -080011298 INIT_LIST_HEAD(&pf->l3_flex_pit_list);
11299 INIT_LIST_HEAD(&pf->l4_flex_pit_list);
11300
Shannon Nelsonde03d2b2016-03-10 14:59:44 -080011301 /* set up the locks for the AQ, do this only once in probe
11302 * and destroy them only once in remove
11303 */
11304 mutex_init(&hw->aq.asq_mutex);
11305 mutex_init(&hw->aq.arq_mutex);
11306
Alexander Duyck5d4ca232016-09-30 08:21:46 -040011307 pf->msg_enable = netif_msg_init(debug,
11308 NETIF_MSG_DRV |
11309 NETIF_MSG_PROBE |
11310 NETIF_MSG_LINK);
11311 if (debug < -1)
11312 pf->hw.debug_mask = debug;
Shannon Nelson5b5faa42014-10-17 03:14:51 +000011313
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +000011314 /* do a special CORER for clearing PXE mode once at init */
11315 if (hw->revision_id == 0 &&
11316 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
11317 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
11318 i40e_flush(hw);
11319 msleep(200);
11320 pf->corer_count++;
11321
11322 i40e_clear_pxe_mode(hw);
11323 }
11324
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011325 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +000011326 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011327 err = i40e_pf_reset(hw);
11328 if (err) {
11329 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
11330 goto err_pf_reset;
11331 }
11332 pf->pfr_count++;
11333
11334 hw->aq.num_arq_entries = I40E_AQ_LEN;
11335 hw->aq.num_asq_entries = I40E_AQ_LEN;
11336 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
11337 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
11338 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000011339
Carolyn Wybornyb294ac72014-12-11 07:06:39 +000011340 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000011341 "%s-%s:misc",
11342 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011343
11344 err = i40e_init_shared_code(hw);
11345 if (err) {
Anjali Singhai Jainb2a75c52015-04-27 14:57:20 -040011346 dev_warn(&pdev->dev, "unidentified MAC or BLANK NVM: %d\n",
11347 err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011348 goto err_pf_reset;
11349 }
11350
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000011351 /* set up a default setting for link flow control */
11352 pf->hw.fc.requested_mode = I40E_FC_NONE;
11353
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011354 err = i40e_init_adminq(hw);
Carolyn Wyborny2b2426a762015-10-26 19:44:35 -040011355 if (err) {
11356 if (err == I40E_ERR_FIRMWARE_API_VERSION)
11357 dev_info(&pdev->dev,
11358 "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");
11359 else
11360 dev_info(&pdev->dev,
11361 "The driver for the device stopped because the device firmware failed to init. Try updating your NVM image.\n");
11362
11363 goto err_pf_reset;
11364 }
Filip Sadowski5bbb2e22017-06-07 05:43:09 -040011365 i40e_get_oem_version(hw);
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040011366
Shannon Nelson6dec1012015-09-28 14:12:30 -040011367 /* provide nvm, fw, api versions */
11368 dev_info(&pdev->dev, "fw %d.%d.%05d api %d.%d nvm %s\n",
11369 hw->aq.fw_maj_ver, hw->aq.fw_min_ver, hw->aq.fw_build,
11370 hw->aq.api_maj_ver, hw->aq.api_min_ver,
11371 i40e_nvm_version_str(hw));
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040011372
Catherine Sullivan7aa67612014-07-09 07:46:17 +000011373 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
11374 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +000011375 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000011376 "The driver for the device detected a newer version of the NVM image than expected. Please install the most recent version of the network driver.\n");
Mariusz Stachurae04ea002017-07-14 09:10:19 -040011377 else if (hw->aq.api_maj_ver == 1 && hw->aq.api_min_ver < 4)
Shannon Nelson278b6f62014-06-04 01:41:03 +000011378 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000011379 "The driver for the device detected an older version of the NVM image than expected. Please update the NVM image.\n");
Shannon Nelson278b6f62014-06-04 01:41:03 +000011380
Shannon Nelson4eb3f762014-03-06 08:59:58 +000011381 i40e_verify_eeprom(pf);
11382
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +000011383 /* Rev 0 hardware was never productized */
11384 if (hw->revision_id < 1)
11385 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");
11386
Shannon Nelson6ff4ef82013-12-21 05:44:49 +000011387 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011388 err = i40e_get_capabilities(pf);
11389 if (err)
11390 goto err_adminq_setup;
11391
11392 err = i40e_sw_init(pf);
11393 if (err) {
11394 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
11395 goto err_sw_init;
11396 }
11397
11398 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
Alexander Duyckc76cb6e2017-02-21 15:55:48 -080011399 hw->func_caps.num_rx_qp, 0, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011400 if (err) {
11401 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
11402 goto err_init_lan_hmc;
11403 }
11404
11405 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
11406 if (err) {
11407 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
11408 err = -ENOENT;
11409 goto err_configure_lan_hmc;
11410 }
11411
Neerav Parikhb686ece2014-12-14 01:55:11 +000011412 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
11413 * Ignore error return codes because if it was already disabled via
11414 * hardware settings this will fail
11415 */
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011416 if (pf->hw_features & I40E_HW_STOP_FW_LLDP) {
Neerav Parikhb686ece2014-12-14 01:55:11 +000011417 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
11418 i40e_aq_stop_lldp(hw, true, NULL);
11419 }
11420
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050011421 /* allow a platform config to override the HW addr */
11422 i40e_get_platform_mac_addr(pdev, pf);
Jacob Keller41c4c2b2017-04-05 07:50:57 -040011423
Jesse Brandeburgf62b5062013-11-28 06:39:27 +000011424 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011425 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
11426 err = -EIO;
11427 goto err_mac_addr;
11428 }
11429 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +000011430 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +000011431 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
11432 if (is_valid_ether_addr(hw->mac.port_addr))
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011433 pf->hw_features |= I40E_HW_PORT_ID_VALID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011434
11435 pci_set_drvdata(pdev, pf);
11436 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080011437#ifdef CONFIG_I40E_DCB
11438 err = i40e_init_pf_dcb(pf);
11439 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +000011440 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
David Ertmanc17ef432016-09-30 01:36:21 -070011441 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE | I40E_FLAG_DCB_ENABLED);
Neerav Parikh014269f2014-04-01 07:11:48 +000011442 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080011443 }
11444#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011445
11446 /* set up periodic task facility */
11447 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
11448 pf->service_timer_period = HZ;
11449
11450 INIT_WORK(&pf->service_task, i40e_service_task);
Jacob Keller0da36b92017-04-19 09:25:55 -040011451 clear_bit(__I40E_SERVICE_SCHED, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011452
Shannon Nelson1d5109d2015-08-26 15:14:08 -040011453 /* NVM bit on means WoL disabled for the port */
11454 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -080011455 if (BIT (hw->port) & wol_nvm_bits || hw->partition_id != 1)
Shannon Nelson1d5109d2015-08-26 15:14:08 -040011456 pf->wol_en = false;
11457 else
11458 pf->wol_en = true;
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011459 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
11460
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011461 /* set up the main switch operations */
11462 i40e_determine_queue_usage(pf);
Jesse Brandeburgc11472802015-04-07 19:45:39 -040011463 err = i40e_init_interrupt_scheme(pf);
11464 if (err)
11465 goto err_switch_setup;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011466
Mitch Williams505682c2014-05-20 08:01:37 +000011467 /* The number of VSIs reported by the FW is the minimum guaranteed
11468 * to us; HW supports far more and we share the remaining pool with
11469 * the other PFs. We allocate space for more than the guarantee with
11470 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011471 */
Mitch Williams505682c2014-05-20 08:01:37 +000011472 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
11473 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
11474 else
11475 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
11476
11477 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
Jesse Brandeburgd17038d2015-12-23 12:05:55 -080011478 pf->vsi = kcalloc(pf->num_alloc_vsi, sizeof(struct i40e_vsi *),
11479 GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +000011480 if (!pf->vsi) {
11481 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011482 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +000011483 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011484
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040011485#ifdef CONFIG_PCI_IOV
11486 /* prep for VF support */
11487 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
11488 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
Jacob Keller0da36b92017-04-19 09:25:55 -040011489 !test_bit(__I40E_BAD_EEPROM, pf->state)) {
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040011490 if (pci_num_vf(pdev))
11491 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
11492 }
11493#endif
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000011494 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011495 if (err) {
11496 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
11497 goto err_vsis;
11498 }
Helin Zhang58fc3262015-10-01 14:37:38 -040011499
11500 /* Make sure flow control is set according to current settings */
11501 err = i40e_set_fc(hw, &set_fc_aq_fail, true);
11502 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_GET)
11503 dev_dbg(&pf->pdev->dev,
11504 "Set fc with err %s aq_err %s on get_phy_cap\n",
11505 i40e_stat_str(hw, err),
11506 i40e_aq_str(hw, hw->aq.asq_last_status));
11507 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_SET)
11508 dev_dbg(&pf->pdev->dev,
11509 "Set fc with err %s aq_err %s on set_phy_config\n",
11510 i40e_stat_str(hw, err),
11511 i40e_aq_str(hw, hw->aq.asq_last_status));
11512 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_UPDATE)
11513 dev_dbg(&pf->pdev->dev,
11514 "Set fc with err %s aq_err %s on get_link_info\n",
11515 i40e_stat_str(hw, err),
11516 i40e_aq_str(hw, hw->aq.asq_last_status));
11517
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000011518 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +000011519 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000011520 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
11521 i40e_vsi_open(pf->vsi[i]);
11522 break;
11523 }
11524 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011525
Shannon Nelson2f0aff42016-01-04 10:33:08 -080011526 /* The driver only wants link up/down and module qualification
11527 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000011528 */
11529 err = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -080011530 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -070011531 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -080011532 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000011533 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040011534 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
11535 i40e_stat_str(&pf->hw, err),
11536 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000011537
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040011538 /* Reconfigure hardware for allowing smaller MSS in the case
11539 * of TSO, so that we avoid the MDD being fired and causing
11540 * a reset in the case of small MSS+TSO.
11541 */
11542 val = rd32(hw, I40E_REG_MSS);
11543 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
11544 val &= ~I40E_REG_MSS_MIN_MASK;
11545 val |= I40E_64BYTE_MSS;
11546 wr32(hw, I40E_REG_MSS, val);
11547 }
11548
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011549 if (pf->hw_features & I40E_HW_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +000011550 msleep(75);
11551 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
11552 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040011553 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
11554 i40e_stat_str(&pf->hw, err),
11555 i40e_aq_str(&pf->hw,
11556 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +000011557 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011558 /* The main driver is (mostly) up and happy. We need to set this state
11559 * before setting up the misc vector or we get a race and the vector
11560 * ends up disabled forever.
11561 */
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030011562 clear_bit(__I40E_DOWN, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011563
11564 /* In case of MSIX we are going to setup the misc vector right here
11565 * to handle admin queue events etc. In case of legacy and MSI
11566 * the misc functionality and queue processing is combined in
11567 * the same vector and that gets setup at open.
11568 */
11569 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
11570 err = i40e_setup_misc_vector(pf);
11571 if (err) {
11572 dev_info(&pdev->dev,
11573 "setup of misc vector failed: %d\n", err);
11574 goto err_vsis;
11575 }
11576 }
11577
Greg Rosedf805f62014-04-04 04:43:16 +000011578#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011579 /* prep for VF support */
11580 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +000011581 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
Jacob Keller0da36b92017-04-19 09:25:55 -040011582 !test_bit(__I40E_BAD_EEPROM, pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011583 /* disable link interrupts for VFs */
11584 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
11585 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
11586 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
11587 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -080011588
11589 if (pci_num_vf(pdev)) {
11590 dev_info(&pdev->dev,
11591 "Active VFs found, allocating resources.\n");
11592 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
11593 if (err)
11594 dev_info(&pdev->dev,
11595 "Error %d allocating resources for existing VFs\n",
11596 err);
11597 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011598 }
Greg Rosedf805f62014-04-04 04:43:16 +000011599#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011600
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011601 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11602 pf->iwarp_base_vector = i40e_get_lump(pf, pf->irq_pile,
11603 pf->num_iwarp_msix,
11604 I40E_IWARP_IRQ_PILE_ID);
11605 if (pf->iwarp_base_vector < 0) {
11606 dev_info(&pdev->dev,
11607 "failed to get tracking for %d vectors for IWARP err=%d\n",
11608 pf->num_iwarp_msix, pf->iwarp_base_vector);
11609 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
11610 }
11611 }
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000011612
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011613 i40e_dbg_pf_init(pf);
11614
11615 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +000011616 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011617
11618 /* since everything's happy, start the service_task timer */
11619 mod_timer(&pf->service_timer,
11620 round_jiffies(jiffies + pf->service_timer_period));
11621
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011622 /* add this PF to client device list and launch a client service task */
Mitch Williams004eb612017-04-04 12:40:16 -070011623 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11624 err = i40e_lan_add_device(pf);
11625 if (err)
11626 dev_info(&pdev->dev, "Failed to add PF to client API service list: %d\n",
11627 err);
11628 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011629
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011630#define PCI_SPEED_SIZE 8
11631#define PCI_WIDTH_SIZE 8
11632 /* Devices on the IOSF bus do not have this information
11633 * and will report PCI Gen 1 x 1 by default so don't bother
11634 * checking them.
11635 */
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011636 if (!(pf->hw_features & I40E_HW_NO_PCI_LINK_CHECK)) {
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011637 char speed[PCI_SPEED_SIZE] = "Unknown";
11638 char width[PCI_WIDTH_SIZE] = "Unknown";
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011639
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011640 /* Get the negotiated link width and speed from PCI config
11641 * space
11642 */
11643 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA,
11644 &link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011645
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011646 i40e_set_pci_config_data(hw, link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011647
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011648 switch (hw->bus.speed) {
11649 case i40e_bus_speed_8000:
11650 strncpy(speed, "8.0", PCI_SPEED_SIZE); break;
11651 case i40e_bus_speed_5000:
11652 strncpy(speed, "5.0", PCI_SPEED_SIZE); break;
11653 case i40e_bus_speed_2500:
11654 strncpy(speed, "2.5", PCI_SPEED_SIZE); break;
11655 default:
11656 break;
11657 }
11658 switch (hw->bus.width) {
11659 case i40e_bus_width_pcie_x8:
11660 strncpy(width, "8", PCI_WIDTH_SIZE); break;
11661 case i40e_bus_width_pcie_x4:
11662 strncpy(width, "4", PCI_WIDTH_SIZE); break;
11663 case i40e_bus_width_pcie_x2:
11664 strncpy(width, "2", PCI_WIDTH_SIZE); break;
11665 case i40e_bus_width_pcie_x1:
11666 strncpy(width, "1", PCI_WIDTH_SIZE); break;
11667 default:
11668 break;
11669 }
11670
11671 dev_info(&pdev->dev, "PCI-Express: Speed %sGT/s Width x%s\n",
11672 speed, width);
11673
11674 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
11675 hw->bus.speed < i40e_bus_speed_8000) {
11676 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
11677 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
11678 }
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011679 }
11680
Catherine Sullivane8278452015-02-06 08:52:08 +000011681 /* get the requested speeds from the fw */
11682 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
11683 if (err)
Neerav Parikh8279e492015-09-03 17:18:50 -040011684 dev_dbg(&pf->pdev->dev, "get requested speeds ret = %s last_status = %s\n",
11685 i40e_stat_str(&pf->hw, err),
11686 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Catherine Sullivane8278452015-02-06 08:52:08 +000011687 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
11688
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -040011689 /* get the supported phy types from the fw */
11690 err = i40e_aq_get_phy_capabilities(hw, false, true, &abilities, NULL);
11691 if (err)
11692 dev_dbg(&pf->pdev->dev, "get supported phy types ret = %s last_status = %s\n",
11693 i40e_stat_str(&pf->hw, err),
11694 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -040011695
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -040011696 /* Add a filter to drop all Flow control frames from any VSI from being
11697 * transmitted. By doing so we stop a malicious VF from sending out
11698 * PAUSE or PFC frames and potentially controlling traffic for other
11699 * PF/VF VSIs.
11700 * The FW can still send Flow control frames if enabled.
11701 */
11702 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
11703 pf->main_vsi_seid);
11704
Carolyn Wyborny31b606d2016-02-17 16:12:12 -080011705 if ((pf->hw.device_id == I40E_DEV_ID_10G_BASE_T) ||
Henry Tieman4f9b4302016-11-08 13:05:18 -080011706 (pf->hw.device_id == I40E_DEV_ID_10G_BASE_T4))
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011707 pf->hw_features |= I40E_HW_PHY_CONTROLS_LEDS;
Harshitha Ramamurthy4ad9f4f2016-11-08 13:05:09 -080011708 if (pf->hw.device_id == I40E_DEV_ID_SFP_I_X722)
Jacob Kellerd36e41d2017-06-23 04:24:46 -040011709 pf->hw_features |= I40E_HW_HAVE_CRT_RETIMER;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011710 /* print a string summarizing features */
11711 i40e_print_features(pf);
11712
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011713 return 0;
11714
11715 /* Unwind what we've done if something failed in the setup */
11716err_vsis:
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030011717 set_bit(__I40E_DOWN, pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011718 i40e_clear_interrupt_scheme(pf);
11719 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +000011720err_switch_setup:
11721 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011722 del_timer_sync(&pf->service_timer);
11723err_mac_addr:
11724err_configure_lan_hmc:
11725 (void)i40e_shutdown_lan_hmc(hw);
11726err_init_lan_hmc:
11727 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011728err_sw_init:
11729err_adminq_setup:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011730err_pf_reset:
11731 iounmap(hw->hw_addr);
11732err_ioremap:
11733 kfree(pf);
11734err_pf_alloc:
11735 pci_disable_pcie_error_reporting(pdev);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011736 pci_release_mem_regions(pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011737err_pci_reg:
11738err_dma:
11739 pci_disable_device(pdev);
11740 return err;
11741}
11742
11743/**
11744 * i40e_remove - Device removal routine
11745 * @pdev: PCI device information struct
11746 *
11747 * i40e_remove is called by the PCI subsystem to alert the driver
11748 * that is should release a PCI device. This could be caused by a
11749 * Hot-Plug event, or because the driver is going to be removed from
11750 * memory.
11751 **/
11752static void i40e_remove(struct pci_dev *pdev)
11753{
11754 struct i40e_pf *pf = pci_get_drvdata(pdev);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011755 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011756 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011757 int i;
11758
11759 i40e_dbg_pf_exit(pf);
11760
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000011761 i40e_ptp_stop(pf);
11762
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011763 /* Disable RSS in hw */
Shannon Nelson272cdaf22016-02-17 16:12:21 -080011764 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), 0);
11765 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), 0);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011766
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011767 /* no more scheduling of any task */
Jacob Keller0da36b92017-04-19 09:25:55 -040011768 set_bit(__I40E_SUSPENDED, pf->state);
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030011769 set_bit(__I40E_DOWN, pf->state);
Shannon Nelsonc99abb42016-03-10 14:59:45 -080011770 if (pf->service_timer.data)
11771 del_timer_sync(&pf->service_timer);
11772 if (pf->service_task.func)
11773 cancel_work_sync(&pf->service_task);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011774
Mitch Williams921c4672017-03-30 00:46:08 -070011775 /* Client close must be called explicitly here because the timer
11776 * has been stopped.
11777 */
11778 i40e_notify_client_of_netdev_close(pf->vsi[pf->lan_vsi], false);
11779
Mitch Williamseb2d80b2014-02-13 03:48:48 -080011780 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
11781 i40e_free_vfs(pf);
11782 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
11783 }
11784
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011785 i40e_fdir_teardown(pf);
11786
11787 /* If there is a switch structure or any orphans, remove them.
11788 * This will leave only the PF's VSI remaining.
11789 */
11790 for (i = 0; i < I40E_MAX_VEB; i++) {
11791 if (!pf->veb[i])
11792 continue;
11793
11794 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
11795 pf->veb[i]->uplink_seid == 0)
11796 i40e_switch_branch_release(pf->veb[i]);
11797 }
11798
11799 /* Now we can shutdown the PF's VSI, just before we kill
11800 * adminq and hmc.
11801 */
11802 if (pf->vsi[pf->lan_vsi])
11803 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
11804
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011805 /* remove attached clients */
Mitch Williams004eb612017-04-04 12:40:16 -070011806 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11807 ret_code = i40e_lan_del_device(pf);
11808 if (ret_code)
11809 dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
11810 ret_code);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011811 }
11812
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011813 /* shutdown and destroy the HMC */
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011814 if (hw->hmc.hmc_obj) {
11815 ret_code = i40e_shutdown_lan_hmc(hw);
Shannon Nelson60442de2014-04-23 04:50:13 +000011816 if (ret_code)
11817 dev_warn(&pdev->dev,
11818 "Failed to destroy the HMC resources: %d\n",
11819 ret_code);
11820 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011821
11822 /* shutdown the adminq */
Henry Tiemanac9c5c62016-09-06 18:05:11 -070011823 i40e_shutdown_adminq(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011824
Jesse Brandeburg8ddb3322015-11-18 15:47:06 -080011825 /* destroy the locks only once, here */
11826 mutex_destroy(&hw->aq.arq_mutex);
11827 mutex_destroy(&hw->aq.asq_mutex);
11828
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011829 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
11830 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +000011831 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011832 if (pf->vsi[i]) {
11833 i40e_vsi_clear_rings(pf->vsi[i]);
11834 i40e_vsi_clear(pf->vsi[i]);
11835 pf->vsi[i] = NULL;
11836 }
11837 }
11838
11839 for (i = 0; i < I40E_MAX_VEB; i++) {
11840 kfree(pf->veb[i]);
11841 pf->veb[i] = NULL;
11842 }
11843
11844 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011845 kfree(pf->vsi);
11846
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011847 iounmap(hw->hw_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011848 kfree(pf);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011849 pci_release_mem_regions(pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011850
11851 pci_disable_pcie_error_reporting(pdev);
11852 pci_disable_device(pdev);
11853}
11854
11855/**
11856 * i40e_pci_error_detected - warning that something funky happened in PCI land
11857 * @pdev: PCI device information struct
11858 *
11859 * Called to warn that something happened and the error handling steps
11860 * are in progress. Allows the driver to quiesce things, be ready for
11861 * remediation.
11862 **/
11863static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
11864 enum pci_channel_state error)
11865{
11866 struct i40e_pf *pf = pci_get_drvdata(pdev);
11867
11868 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
11869
Guilherme G Piccoliedfc23ee2016-10-03 00:31:12 -070011870 if (!pf) {
11871 dev_info(&pdev->dev,
11872 "Cannot recover - error happened during device probe\n");
11873 return PCI_ERS_RESULT_DISCONNECT;
11874 }
11875
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011876 /* shutdown all operations */
Jacob Kellerdfc4ff62017-06-07 05:43:13 -040011877 if (!test_bit(__I40E_SUSPENDED, pf->state))
11878 i40e_prep_for_reset(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011879
11880 /* Request a slot reset */
11881 return PCI_ERS_RESULT_NEED_RESET;
11882}
11883
11884/**
11885 * i40e_pci_error_slot_reset - a PCI slot reset just happened
11886 * @pdev: PCI device information struct
11887 *
11888 * Called to find if the driver can work with the device now that
11889 * the pci slot has been reset. If a basic connection seems good
11890 * (registers are readable and have sane content) then return a
11891 * happy little PCI_ERS_RESULT_xxx.
11892 **/
11893static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
11894{
11895 struct i40e_pf *pf = pci_get_drvdata(pdev);
11896 pci_ers_result_t result;
11897 int err;
11898 u32 reg;
11899
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011900 dev_dbg(&pdev->dev, "%s\n", __func__);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011901 if (pci_enable_device_mem(pdev)) {
11902 dev_info(&pdev->dev,
11903 "Cannot re-enable PCI device after reset.\n");
11904 result = PCI_ERS_RESULT_DISCONNECT;
11905 } else {
11906 pci_set_master(pdev);
11907 pci_restore_state(pdev);
11908 pci_save_state(pdev);
11909 pci_wake_from_d3(pdev, false);
11910
11911 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
11912 if (reg == 0)
11913 result = PCI_ERS_RESULT_RECOVERED;
11914 else
11915 result = PCI_ERS_RESULT_DISCONNECT;
11916 }
11917
11918 err = pci_cleanup_aer_uncorrect_error_status(pdev);
11919 if (err) {
11920 dev_info(&pdev->dev,
11921 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
11922 err);
11923 /* non-fatal, continue */
11924 }
11925
11926 return result;
11927}
11928
11929/**
11930 * i40e_pci_error_resume - restart operations after PCI error recovery
11931 * @pdev: PCI device information struct
11932 *
11933 * Called to allow the driver to bring things back up after PCI error
11934 * and/or reset recovery has finished.
11935 **/
11936static void i40e_pci_error_resume(struct pci_dev *pdev)
11937{
11938 struct i40e_pf *pf = pci_get_drvdata(pdev);
11939
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011940 dev_dbg(&pdev->dev, "%s\n", __func__);
Jacob Keller0da36b92017-04-19 09:25:55 -040011941 if (test_bit(__I40E_SUSPENDED, pf->state))
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011942 return;
11943
Jacob Kellerdfc4ff62017-06-07 05:43:13 -040011944 i40e_handle_reset_warning(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011945}
11946
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011947/**
Joshua Hay1d680052016-12-12 15:44:08 -080011948 * i40e_enable_mc_magic_wake - enable multicast magic packet wake up
11949 * using the mac_address_write admin q function
11950 * @pf: pointer to i40e_pf struct
11951 **/
11952static void i40e_enable_mc_magic_wake(struct i40e_pf *pf)
11953{
11954 struct i40e_hw *hw = &pf->hw;
11955 i40e_status ret;
11956 u8 mac_addr[6];
11957 u16 flags = 0;
11958
11959 /* Get current MAC address in case it's an LAA */
11960 if (pf->vsi[pf->lan_vsi] && pf->vsi[pf->lan_vsi]->netdev) {
11961 ether_addr_copy(mac_addr,
11962 pf->vsi[pf->lan_vsi]->netdev->dev_addr);
11963 } else {
11964 dev_err(&pf->pdev->dev,
11965 "Failed to retrieve MAC address; using default\n");
11966 ether_addr_copy(mac_addr, hw->mac.addr);
11967 }
11968
11969 /* The FW expects the mac address write cmd to first be called with
11970 * one of these flags before calling it again with the multicast
11971 * enable flags.
11972 */
11973 flags = I40E_AQC_WRITE_TYPE_LAA_WOL;
11974
11975 if (hw->func_caps.flex10_enable && hw->partition_id != 1)
11976 flags = I40E_AQC_WRITE_TYPE_LAA_ONLY;
11977
11978 ret = i40e_aq_mac_address_write(hw, flags, mac_addr, NULL);
11979 if (ret) {
11980 dev_err(&pf->pdev->dev,
11981 "Failed to update MAC address registers; cannot enable Multicast Magic packet wake up");
11982 return;
11983 }
11984
11985 flags = I40E_AQC_MC_MAG_EN
11986 | I40E_AQC_WOL_PRESERVE_ON_PFR
11987 | I40E_AQC_WRITE_TYPE_UPDATE_MC_MAG;
11988 ret = i40e_aq_mac_address_write(hw, flags, mac_addr, NULL);
11989 if (ret)
11990 dev_err(&pf->pdev->dev,
11991 "Failed to enable Multicast Magic Packet wake up\n");
11992}
11993
11994/**
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011995 * i40e_shutdown - PCI callback for shutting down
11996 * @pdev: PCI device information struct
11997 **/
11998static void i40e_shutdown(struct pci_dev *pdev)
11999{
12000 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012001 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012002
Jacob Keller0da36b92017-04-19 09:25:55 -040012003 set_bit(__I40E_SUSPENDED, pf->state);
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030012004 set_bit(__I40E_DOWN, pf->state);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012005 rtnl_lock();
Maciej Sosin373149f2017-04-05 07:50:55 -040012006 i40e_prep_for_reset(pf, true);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012007 rtnl_unlock();
12008
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012009 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
12010 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
12011
Catherine Sullivan02b42492015-07-10 19:35:59 -040012012 del_timer_sync(&pf->service_timer);
12013 cancel_work_sync(&pf->service_task);
12014 i40e_fdir_teardown(pf);
12015
Mitch Williams921c4672017-03-30 00:46:08 -070012016 /* Client close must be called explicitly here because the timer
12017 * has been stopped.
12018 */
12019 i40e_notify_client_of_netdev_close(pf->vsi[pf->lan_vsi], false);
12020
Jacob Kellerd36e41d2017-06-23 04:24:46 -040012021 if (pf->wol_en && (pf->hw_features & I40E_HW_WOL_MC_MAGIC_PKT_WAKE))
Joshua Hay1d680052016-12-12 15:44:08 -080012022 i40e_enable_mc_magic_wake(pf);
12023
Jacob Kellerdfc4ff62017-06-07 05:43:13 -040012024 i40e_prep_for_reset(pf, false);
Catherine Sullivan02b42492015-07-10 19:35:59 -040012025
12026 wr32(hw, I40E_PFPM_APM,
12027 (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
12028 wr32(hw, I40E_PFPM_WUFC,
12029 (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
12030
Shannon Nelsone1477582015-02-21 06:44:33 +000012031 i40e_clear_interrupt_scheme(pf);
12032
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012033 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012034 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012035 pci_set_power_state(pdev, PCI_D3hot);
12036 }
12037}
12038
12039#ifdef CONFIG_PM
12040/**
12041 * i40e_suspend - PCI callback for moving to D3
12042 * @pdev: PCI device information struct
12043 **/
12044static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
12045{
12046 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012047 struct i40e_hw *hw = &pf->hw;
Greg Rose059ff692016-05-16 10:26:38 -070012048 int retval = 0;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012049
Jacob Keller0da36b92017-04-19 09:25:55 -040012050 set_bit(__I40E_SUSPENDED, pf->state);
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030012051 set_bit(__I40E_DOWN, pf->state);
Mitch Williams3932dbf2015-03-31 00:45:04 -070012052
Jacob Kellerd36e41d2017-06-23 04:24:46 -040012053 if (pf->wol_en && (pf->hw_features & I40E_HW_WOL_MC_MAGIC_PKT_WAKE))
Joshua Hay1d680052016-12-12 15:44:08 -080012054 i40e_enable_mc_magic_wake(pf);
12055
Jacob Kellerdfc4ff62017-06-07 05:43:13 -040012056 i40e_prep_for_reset(pf, false);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012057
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012058 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
12059 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
12060
Greg Roseb33d3b72016-05-16 10:26:37 -070012061 i40e_stop_misc_vector(pf);
Carolyn Wyborny7c9ae7f2017-06-20 15:16:53 -070012062 if (pf->msix_entries) {
12063 synchronize_irq(pf->msix_entries[0].vector);
12064 free_irq(pf->msix_entries[0].vector, pf);
12065 }
Greg Rose059ff692016-05-16 10:26:38 -070012066 retval = pci_save_state(pdev);
12067 if (retval)
12068 return retval;
12069
Shannon Nelson8e2773a2013-11-28 06:39:22 +000012070 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012071 pci_set_power_state(pdev, PCI_D3hot);
12072
Greg Rose059ff692016-05-16 10:26:38 -070012073 return retval;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012074}
12075
12076/**
12077 * i40e_resume - PCI callback for waking up from D3
12078 * @pdev: PCI device information struct
12079 **/
12080static int i40e_resume(struct pci_dev *pdev)
12081{
12082 struct i40e_pf *pf = pci_get_drvdata(pdev);
12083 u32 err;
12084
12085 pci_set_power_state(pdev, PCI_D0);
12086 pci_restore_state(pdev);
12087 /* pci_restore_state() clears dev->state_saves, so
12088 * call pci_save_state() again to restore it.
12089 */
12090 pci_save_state(pdev);
12091
12092 err = pci_enable_device_mem(pdev);
12093 if (err) {
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040012094 dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n");
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012095 return err;
12096 }
12097 pci_set_master(pdev);
12098
12099 /* no wakeup events while running */
12100 pci_wake_from_d3(pdev, false);
12101
12102 /* handling the reset will rebuild the device state */
Jacob Keller0da36b92017-04-19 09:25:55 -040012103 if (test_and_clear_bit(__I40E_SUSPENDED, pf->state)) {
Mauro S. M. Rodrigues9e6c9c02017-05-12 23:26:56 -030012104 clear_bit(__I40E_DOWN, pf->state);
Carolyn Wyborny7c9ae7f2017-06-20 15:16:53 -070012105 if (pf->msix_entries) {
12106 err = request_irq(pf->msix_entries[0].vector,
12107 i40e_intr, 0, pf->int_name, pf);
12108 if (err) {
12109 dev_err(&pf->pdev->dev,
12110 "request_irq for %s failed: %d\n",
12111 pf->int_name, err);
12112 }
12113 }
Jacob Kellerdfc4ff62017-06-07 05:43:13 -040012114 i40e_reset_and_rebuild(pf, false, false);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012115 }
12116
12117 return 0;
12118}
12119
12120#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012121static const struct pci_error_handlers i40e_err_handler = {
12122 .error_detected = i40e_pci_error_detected,
12123 .slot_reset = i40e_pci_error_slot_reset,
12124 .resume = i40e_pci_error_resume,
12125};
12126
12127static struct pci_driver i40e_driver = {
12128 .name = i40e_driver_name,
12129 .id_table = i40e_pci_tbl,
12130 .probe = i40e_probe,
12131 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +000012132#ifdef CONFIG_PM
12133 .suspend = i40e_suspend,
12134 .resume = i40e_resume,
12135#endif
12136 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012137 .err_handler = &i40e_err_handler,
12138 .sriov_configure = i40e_pci_sriov_configure,
12139};
12140
12141/**
12142 * i40e_init_module - Driver registration routine
12143 *
12144 * i40e_init_module is the first routine called when the driver is
12145 * loaded. All it does is register with the PCI subsystem.
12146 **/
12147static int __init i40e_init_module(void)
12148{
12149 pr_info("%s: %s - version %s\n", i40e_driver_name,
12150 i40e_driver_string, i40e_driver_version_str);
12151 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
Greg Rose96664482015-02-06 08:52:13 +000012152
Jacob Keller4d5957c2017-06-20 15:16:54 -070012153 /* There is no need to throttle the number of active tasks because
12154 * each device limits its own task using a state bit for scheduling
12155 * the service task, and the device tasks do not interfere with each
12156 * other, so we don't set a max task limit. We must set WQ_MEM_RECLAIM
12157 * since we need to be able to guarantee forward progress even under
12158 * memory pressure.
Jesse Brandeburg2803b162015-12-22 14:25:08 -080012159 */
Jacob Keller4d5957c2017-06-20 15:16:54 -070012160 i40e_wq = alloc_workqueue("%s", WQ_MEM_RECLAIM, 0, i40e_driver_name);
Jesse Brandeburg2803b162015-12-22 14:25:08 -080012161 if (!i40e_wq) {
12162 pr_err("%s: Failed to create workqueue\n", i40e_driver_name);
12163 return -ENOMEM;
12164 }
12165
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012166 i40e_dbg_init();
12167 return pci_register_driver(&i40e_driver);
12168}
12169module_init(i40e_init_module);
12170
12171/**
12172 * i40e_exit_module - Driver exit cleanup routine
12173 *
12174 * i40e_exit_module is called just before the driver is removed
12175 * from memory.
12176 **/
12177static void __exit i40e_exit_module(void)
12178{
12179 pci_unregister_driver(&i40e_driver);
Jesse Brandeburg2803b162015-12-22 14:25:08 -080012180 destroy_workqueue(i40e_wq);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012181 i40e_dbg_exit();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000012182}
12183module_exit(i40e_exit_module);