blob: 53cde5b443469c46e588b2c67cb1bb13ffdc9998 [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08004 * Copyright(c) 2013 - 2016 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>
30
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000031/* Local includes */
32#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000033#include "i40e_diag.h"
Alexander Duyck06a5f7f2016-06-16 12:22:06 -070034#include <net/udp_tunnel.h>
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000035
36const char i40e_driver_name[] = "i40e";
37static const char i40e_driver_string[] =
38 "Intel(R) Ethernet Connection XL710 Network Driver";
39
40#define DRV_KERN "-k"
41
Catherine Sullivane8e724d2014-07-10 07:58:26 +000042#define DRV_VERSION_MAJOR 1
Bimmy Pujari07061952016-05-16 10:26:45 -070043#define DRV_VERSION_MINOR 6
Bimmy Pujari93e6fa22016-07-27 12:02:41 -070044#define DRV_VERSION_BUILD 12
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000045#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
46 __stringify(DRV_VERSION_MINOR) "." \
47 __stringify(DRV_VERSION_BUILD) DRV_KERN
48const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080049static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000050
51/* a bit of forward declarations */
52static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
53static void i40e_handle_reset_warning(struct i40e_pf *pf);
54static int i40e_add_vsi(struct i40e_vsi *vsi);
55static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000056static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000057static int i40e_setup_misc_vector(struct i40e_pf *pf);
58static void i40e_determine_queue_usage(struct i40e_pf *pf);
59static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080060static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080061static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000062
63/* i40e_pci_tbl - PCI Device ID Table
64 *
65 * Last entry must be all 0s
66 *
67 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
68 * Class, Class Mask, private data (not used) }
69 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020070static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080071 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080072 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080073 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
74 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080075 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
77 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Mitch Williams5960d332014-09-13 07:40:47 +000078 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
Shannon Nelsonbc5166b92015-08-26 15:14:10 -040079 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T4), 0},
Jesse Brandeburgae24b402015-03-27 00:12:09 -070080 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
Anjali Singhai Jain35dae512015-12-22 14:25:03 -080081 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_X722), 0},
82 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_X722), 0},
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -040083 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_X722), 0},
84 {PCI_VDEVICE(INTEL, I40E_DEV_ID_1G_BASE_T_X722), 0},
85 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T_X722), 0},
Catherine Sullivand6bf58c2016-03-18 12:18:08 -070086 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_I_X722), 0},
Shannon Nelson48a3b512015-07-23 16:54:39 -040087 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
88 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2_A), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000089 /* required last entry */
90 {0, }
91};
92MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
93
94#define I40E_MAX_VF_COUNT 128
95static int debug = -1;
96module_param(debug, int, 0);
97MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
98
99MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
100MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
101MODULE_LICENSE("GPL");
102MODULE_VERSION(DRV_VERSION);
103
Jesse Brandeburg2803b162015-12-22 14:25:08 -0800104static struct workqueue_struct *i40e_wq;
105
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000106/**
107 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
108 * @hw: pointer to the HW structure
109 * @mem: ptr to mem struct to fill out
110 * @size: size of memory requested
111 * @alignment: what to align the allocation to
112 **/
113int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
114 u64 size, u32 alignment)
115{
116 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
117
118 mem->size = ALIGN(size, alignment);
119 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
120 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000121 if (!mem->va)
122 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000123
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000124 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000125}
126
127/**
128 * i40e_free_dma_mem_d - OS specific memory free for shared code
129 * @hw: pointer to the HW structure
130 * @mem: ptr to mem struct to free
131 **/
132int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
133{
134 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
135
136 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
137 mem->va = NULL;
138 mem->pa = 0;
139 mem->size = 0;
140
141 return 0;
142}
143
144/**
145 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
146 * @hw: pointer to the HW structure
147 * @mem: ptr to mem struct to fill out
148 * @size: size of memory requested
149 **/
150int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
151 u32 size)
152{
153 mem->size = size;
154 mem->va = kzalloc(size, GFP_KERNEL);
155
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000156 if (!mem->va)
157 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000158
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000159 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000160}
161
162/**
163 * i40e_free_virt_mem_d - OS specific memory free for shared code
164 * @hw: pointer to the HW structure
165 * @mem: ptr to mem struct to free
166 **/
167int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
168{
169 /* it's ok to kfree a NULL pointer */
170 kfree(mem->va);
171 mem->va = NULL;
172 mem->size = 0;
173
174 return 0;
175}
176
177/**
178 * i40e_get_lump - find a lump of free generic resource
179 * @pf: board private structure
180 * @pile: the pile of resource to search
181 * @needed: the number of items needed
182 * @id: an owner id to stick on the items assigned
183 *
184 * Returns the base item index of the lump, or negative for error
185 *
186 * The search_hint trick and lack of advanced fit-finding only work
187 * because we're highly likely to have all the same size lump requests.
188 * Linear search time and any fragmentation should be minimal.
189 **/
190static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
191 u16 needed, u16 id)
192{
193 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000194 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000195
196 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
197 dev_info(&pf->pdev->dev,
198 "param err: pile=%p needed=%d id=0x%04x\n",
199 pile, needed, id);
200 return -EINVAL;
201 }
202
203 /* start the linear search with an imperfect hint */
204 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000205 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000206 /* skip already allocated entries */
207 if (pile->list[i] & I40E_PILE_VALID_BIT) {
208 i++;
209 continue;
210 }
211
212 /* do we have enough in this lump? */
213 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
214 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
215 break;
216 }
217
218 if (j == needed) {
219 /* there was enough, so assign it to the requestor */
220 for (j = 0; j < needed; j++)
221 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
222 ret = i;
223 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000224 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000225 }
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400226
227 /* not enough, so skip over it and continue looking */
228 i += j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000229 }
230
231 return ret;
232}
233
234/**
235 * i40e_put_lump - return a lump of generic resource
236 * @pile: the pile of resource to search
237 * @index: the base item index
238 * @id: the owner id of the items assigned
239 *
240 * Returns the count of items in the lump
241 **/
242static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
243{
244 int valid_id = (id | I40E_PILE_VALID_BIT);
245 int count = 0;
246 int i;
247
248 if (!pile || index >= pile->num_entries)
249 return -EINVAL;
250
251 for (i = index;
252 i < pile->num_entries && pile->list[i] == valid_id;
253 i++) {
254 pile->list[i] = 0;
255 count++;
256 }
257
258 if (count && index < pile->search_hint)
259 pile->search_hint = index;
260
261 return count;
262}
263
264/**
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700265 * i40e_find_vsi_from_id - searches for the vsi with the given id
266 * @pf - the pf structure to search for the vsi
267 * @id - id of the vsi it is searching for
268 **/
269struct i40e_vsi *i40e_find_vsi_from_id(struct i40e_pf *pf, u16 id)
270{
271 int i;
272
273 for (i = 0; i < pf->num_alloc_vsi; i++)
274 if (pf->vsi[i] && (pf->vsi[i]->id == id))
275 return pf->vsi[i];
276
277 return NULL;
278}
279
280/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000281 * i40e_service_event_schedule - Schedule the service task to wake up
282 * @pf: board private structure
283 *
284 * If not already scheduled, this puts the task into the work queue
285 **/
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600286void i40e_service_event_schedule(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000287{
288 if (!test_bit(__I40E_DOWN, &pf->state) &&
289 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
290 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
Jesse Brandeburg2803b162015-12-22 14:25:08 -0800291 queue_work(i40e_wq, &pf->service_task);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000292}
293
294/**
295 * i40e_tx_timeout - Respond to a Tx Hang
296 * @netdev: network interface device structure
297 *
298 * If any port has noticed a Tx timeout, it is likely that the whole
299 * device is munged, not just the one netdev port, so go for the full
300 * reset.
301 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700302#ifdef I40E_FCOE
303void i40e_tx_timeout(struct net_device *netdev)
304#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000305static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700306#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000307{
308 struct i40e_netdev_priv *np = netdev_priv(netdev);
309 struct i40e_vsi *vsi = np->vsi;
310 struct i40e_pf *pf = vsi->back;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400311 struct i40e_ring *tx_ring = NULL;
312 unsigned int i, hung_queue = 0;
313 u32 head, val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000314
315 pf->tx_timeout_count++;
316
Kiran Patilb03a8c12015-09-24 18:13:15 -0400317 /* find the stopped queue the same way the stack does */
318 for (i = 0; i < netdev->num_tx_queues; i++) {
319 struct netdev_queue *q;
320 unsigned long trans_start;
321
322 q = netdev_get_tx_queue(netdev, i);
Florian Westphal9b366272016-05-03 16:33:14 +0200323 trans_start = q->trans_start;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400324 if (netif_xmit_stopped(q) &&
325 time_after(jiffies,
326 (trans_start + netdev->watchdog_timeo))) {
327 hung_queue = i;
328 break;
329 }
330 }
331
332 if (i == netdev->num_tx_queues) {
333 netdev_info(netdev, "tx_timeout: no netdev hung queue found\n");
334 } else {
335 /* now that we have an index, find the tx_ring struct */
336 for (i = 0; i < vsi->num_queue_pairs; i++) {
337 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
338 if (hung_queue ==
339 vsi->tx_rings[i]->queue_index) {
340 tx_ring = vsi->tx_rings[i];
341 break;
342 }
343 }
344 }
345 }
346
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000347 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Kiran Patilb03a8c12015-09-24 18:13:15 -0400348 pf->tx_timeout_recovery_level = 1; /* reset after some time */
349 else if (time_before(jiffies,
350 (pf->tx_timeout_last_recovery + netdev->watchdog_timeo)))
351 return; /* don't do any new action before the next timeout */
352
353 if (tx_ring) {
354 head = i40e_get_head(tx_ring);
355 /* Read interrupt register */
356 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
357 val = rd32(&pf->hw,
358 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
359 tx_ring->vsi->base_vector - 1));
360 else
361 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
362
363 netdev_info(netdev, "tx_timeout: VSI_seid: %d, Q %d, NTC: 0x%x, HWB: 0x%x, NTU: 0x%x, TAIL: 0x%x, INT: 0x%x\n",
364 vsi->seid, hung_queue, tx_ring->next_to_clean,
365 head, tx_ring->next_to_use,
366 readl(tx_ring->tail), val);
367 }
368
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000369 pf->tx_timeout_last_recovery = jiffies;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400370 netdev_info(netdev, "tx_timeout recovery level %d, hung_queue %d\n",
371 pf->tx_timeout_recovery_level, hung_queue);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000372
373 switch (pf->tx_timeout_recovery_level) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000374 case 1:
375 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
376 break;
377 case 2:
378 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
379 break;
380 case 3:
381 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
382 break;
383 default:
384 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000385 break;
386 }
Kiran Patilb03a8c12015-09-24 18:13:15 -0400387
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000388 i40e_service_event_schedule(pf);
389 pf->tx_timeout_recovery_level++;
390}
391
392/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000393 * i40e_get_vsi_stats_struct - Get System Network Statistics
394 * @vsi: the VSI we care about
395 *
396 * Returns the address of the device statistics structure.
397 * The statistics are actually updated from the service task.
398 **/
399struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
400{
401 return &vsi->net_stats;
402}
403
404/**
405 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
406 * @netdev: network interface device structure
407 *
408 * Returns the address of the device statistics structure.
409 * The statistics are actually updated from the service task.
410 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700411#ifdef I40E_FCOE
412struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
413 struct net_device *netdev,
414 struct rtnl_link_stats64 *stats)
415#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000416static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
417 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000418 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700419#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000420{
421 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000422 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000423 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000424 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
425 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000426
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000427 if (test_bit(__I40E_DOWN, &vsi->state))
428 return stats;
429
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800430 if (!vsi->tx_rings)
431 return stats;
432
Alexander Duyck980e9b12013-09-28 06:01:03 +0000433 rcu_read_lock();
434 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000435 u64 bytes, packets;
436 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000437
Alexander Duyck980e9b12013-09-28 06:01:03 +0000438 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
439 if (!tx_ring)
440 continue;
441
442 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700443 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000444 packets = tx_ring->stats.packets;
445 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700446 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000447
448 stats->tx_packets += packets;
449 stats->tx_bytes += bytes;
450 rx_ring = &tx_ring[1];
451
452 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700453 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000454 packets = rx_ring->stats.packets;
455 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700456 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000457
458 stats->rx_packets += packets;
459 stats->rx_bytes += bytes;
460 }
461 rcu_read_unlock();
462
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000463 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000464 stats->multicast = vsi_stats->multicast;
465 stats->tx_errors = vsi_stats->tx_errors;
466 stats->tx_dropped = vsi_stats->tx_dropped;
467 stats->rx_errors = vsi_stats->rx_errors;
Jesse Brandeburgd8201e22015-07-23 16:54:35 -0400468 stats->rx_dropped = vsi_stats->rx_dropped;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000469 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
470 stats->rx_length_errors = vsi_stats->rx_length_errors;
471
472 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000473}
474
475/**
476 * i40e_vsi_reset_stats - Resets all stats of the given vsi
477 * @vsi: the VSI to have its stats reset
478 **/
479void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
480{
481 struct rtnl_link_stats64 *ns;
482 int i;
483
484 if (!vsi)
485 return;
486
487 ns = i40e_get_vsi_stats_struct(vsi);
488 memset(ns, 0, sizeof(*ns));
489 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
490 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
491 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000492 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000493 for (i = 0; i < vsi->num_queue_pairs; i++) {
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400494 memset(&vsi->rx_rings[i]->stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000495 sizeof(vsi->rx_rings[i]->stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400496 memset(&vsi->rx_rings[i]->rx_stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000497 sizeof(vsi->rx_rings[i]->rx_stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400498 memset(&vsi->tx_rings[i]->stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000499 sizeof(vsi->tx_rings[i]->stats));
500 memset(&vsi->tx_rings[i]->tx_stats, 0,
501 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000502 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000503 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000504 vsi->stat_offsets_loaded = false;
505}
506
507/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000508 * i40e_pf_reset_stats - Reset all of the stats for the given PF
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000509 * @pf: the PF to be reset
510 **/
511void i40e_pf_reset_stats(struct i40e_pf *pf)
512{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000513 int i;
514
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000515 memset(&pf->stats, 0, sizeof(pf->stats));
516 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
517 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000518
519 for (i = 0; i < I40E_MAX_VEB; i++) {
520 if (pf->veb[i]) {
521 memset(&pf->veb[i]->stats, 0,
522 sizeof(pf->veb[i]->stats));
523 memset(&pf->veb[i]->stats_offsets, 0,
524 sizeof(pf->veb[i]->stats_offsets));
525 pf->veb[i]->stat_offsets_loaded = false;
526 }
527 }
Catherine Sullivan42bce042016-07-27 12:02:32 -0700528 pf->hw_csum_rx_error = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000529}
530
531/**
532 * i40e_stat_update48 - read and update a 48 bit stat from the chip
533 * @hw: ptr to the hardware info
534 * @hireg: the high 32 bit reg to read
535 * @loreg: the low 32 bit reg to read
536 * @offset_loaded: has the initial offset been loaded yet
537 * @offset: ptr to current offset value
538 * @stat: ptr to the stat
539 *
540 * Since the device stats are not reset at PFReset, they likely will not
541 * be zeroed when the driver starts. We'll save the first values read
542 * and use them as offsets to be subtracted from the raw values in order
543 * to report stats that count from zero. In the process, we also manage
544 * the potential roll-over.
545 **/
546static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
547 bool offset_loaded, u64 *offset, u64 *stat)
548{
549 u64 new_data;
550
Shannon Nelsonab600852014-01-17 15:36:39 -0800551 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000552 new_data = rd32(hw, loreg);
553 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
554 } else {
555 new_data = rd64(hw, loreg);
556 }
557 if (!offset_loaded)
558 *offset = new_data;
559 if (likely(new_data >= *offset))
560 *stat = new_data - *offset;
561 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400562 *stat = (new_data + BIT_ULL(48)) - *offset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000563 *stat &= 0xFFFFFFFFFFFFULL;
564}
565
566/**
567 * i40e_stat_update32 - read and update a 32 bit stat from the chip
568 * @hw: ptr to the hardware info
569 * @reg: the hw reg to read
570 * @offset_loaded: has the initial offset been loaded yet
571 * @offset: ptr to current offset value
572 * @stat: ptr to the stat
573 **/
574static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
575 bool offset_loaded, u64 *offset, u64 *stat)
576{
577 u32 new_data;
578
579 new_data = rd32(hw, reg);
580 if (!offset_loaded)
581 *offset = new_data;
582 if (likely(new_data >= *offset))
583 *stat = (u32)(new_data - *offset);
584 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400585 *stat = (u32)((new_data + BIT_ULL(32)) - *offset);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000586}
587
588/**
589 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
590 * @vsi: the VSI to be updated
591 **/
592void i40e_update_eth_stats(struct i40e_vsi *vsi)
593{
594 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
595 struct i40e_pf *pf = vsi->back;
596 struct i40e_hw *hw = &pf->hw;
597 struct i40e_eth_stats *oes;
598 struct i40e_eth_stats *es; /* device's eth stats */
599
600 es = &vsi->eth_stats;
601 oes = &vsi->eth_stats_offsets;
602
603 /* Gather up the stats that the hw collects */
604 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
605 vsi->stat_offsets_loaded,
606 &oes->tx_errors, &es->tx_errors);
607 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
608 vsi->stat_offsets_loaded,
609 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000610 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
611 vsi->stat_offsets_loaded,
612 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
613 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
614 vsi->stat_offsets_loaded,
615 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000616
617 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
618 I40E_GLV_GORCL(stat_idx),
619 vsi->stat_offsets_loaded,
620 &oes->rx_bytes, &es->rx_bytes);
621 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
622 I40E_GLV_UPRCL(stat_idx),
623 vsi->stat_offsets_loaded,
624 &oes->rx_unicast, &es->rx_unicast);
625 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
626 I40E_GLV_MPRCL(stat_idx),
627 vsi->stat_offsets_loaded,
628 &oes->rx_multicast, &es->rx_multicast);
629 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
630 I40E_GLV_BPRCL(stat_idx),
631 vsi->stat_offsets_loaded,
632 &oes->rx_broadcast, &es->rx_broadcast);
633
634 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
635 I40E_GLV_GOTCL(stat_idx),
636 vsi->stat_offsets_loaded,
637 &oes->tx_bytes, &es->tx_bytes);
638 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
639 I40E_GLV_UPTCL(stat_idx),
640 vsi->stat_offsets_loaded,
641 &oes->tx_unicast, &es->tx_unicast);
642 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
643 I40E_GLV_MPTCL(stat_idx),
644 vsi->stat_offsets_loaded,
645 &oes->tx_multicast, &es->tx_multicast);
646 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
647 I40E_GLV_BPTCL(stat_idx),
648 vsi->stat_offsets_loaded,
649 &oes->tx_broadcast, &es->tx_broadcast);
650 vsi->stat_offsets_loaded = true;
651}
652
653/**
654 * i40e_update_veb_stats - Update Switch component statistics
655 * @veb: the VEB being updated
656 **/
657static void i40e_update_veb_stats(struct i40e_veb *veb)
658{
659 struct i40e_pf *pf = veb->pf;
660 struct i40e_hw *hw = &pf->hw;
661 struct i40e_eth_stats *oes;
662 struct i40e_eth_stats *es; /* device's eth stats */
Neerav Parikhfe860af2015-07-10 19:36:02 -0400663 struct i40e_veb_tc_stats *veb_oes;
664 struct i40e_veb_tc_stats *veb_es;
665 int i, idx = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000666
667 idx = veb->stats_idx;
668 es = &veb->stats;
669 oes = &veb->stats_offsets;
Neerav Parikhfe860af2015-07-10 19:36:02 -0400670 veb_es = &veb->tc_stats;
671 veb_oes = &veb->tc_stats_offsets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000672
673 /* Gather up the stats that the hw collects */
674 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
675 veb->stat_offsets_loaded,
676 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000677 if (hw->revision_id > 0)
678 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
679 veb->stat_offsets_loaded,
680 &oes->rx_unknown_protocol,
681 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000682 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
683 veb->stat_offsets_loaded,
684 &oes->rx_bytes, &es->rx_bytes);
685 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
686 veb->stat_offsets_loaded,
687 &oes->rx_unicast, &es->rx_unicast);
688 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
689 veb->stat_offsets_loaded,
690 &oes->rx_multicast, &es->rx_multicast);
691 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
692 veb->stat_offsets_loaded,
693 &oes->rx_broadcast, &es->rx_broadcast);
694
695 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
696 veb->stat_offsets_loaded,
697 &oes->tx_bytes, &es->tx_bytes);
698 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
699 veb->stat_offsets_loaded,
700 &oes->tx_unicast, &es->tx_unicast);
701 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
702 veb->stat_offsets_loaded,
703 &oes->tx_multicast, &es->tx_multicast);
704 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
705 veb->stat_offsets_loaded,
706 &oes->tx_broadcast, &es->tx_broadcast);
Neerav Parikhfe860af2015-07-10 19:36:02 -0400707 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
708 i40e_stat_update48(hw, I40E_GLVEBTC_RPCH(i, idx),
709 I40E_GLVEBTC_RPCL(i, idx),
710 veb->stat_offsets_loaded,
711 &veb_oes->tc_rx_packets[i],
712 &veb_es->tc_rx_packets[i]);
713 i40e_stat_update48(hw, I40E_GLVEBTC_RBCH(i, idx),
714 I40E_GLVEBTC_RBCL(i, idx),
715 veb->stat_offsets_loaded,
716 &veb_oes->tc_rx_bytes[i],
717 &veb_es->tc_rx_bytes[i]);
718 i40e_stat_update48(hw, I40E_GLVEBTC_TPCH(i, idx),
719 I40E_GLVEBTC_TPCL(i, idx),
720 veb->stat_offsets_loaded,
721 &veb_oes->tc_tx_packets[i],
722 &veb_es->tc_tx_packets[i]);
723 i40e_stat_update48(hw, I40E_GLVEBTC_TBCH(i, idx),
724 I40E_GLVEBTC_TBCL(i, idx),
725 veb->stat_offsets_loaded,
726 &veb_oes->tc_tx_bytes[i],
727 &veb_es->tc_tx_bytes[i]);
728 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000729 veb->stat_offsets_loaded = true;
730}
731
Vasu Dev38e00432014-08-01 13:27:03 -0700732#ifdef I40E_FCOE
733/**
734 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
735 * @vsi: the VSI that is capable of doing FCoE
736 **/
737static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
738{
739 struct i40e_pf *pf = vsi->back;
740 struct i40e_hw *hw = &pf->hw;
741 struct i40e_fcoe_stats *ofs;
742 struct i40e_fcoe_stats *fs; /* device's eth stats */
743 int idx;
744
745 if (vsi->type != I40E_VSI_FCOE)
746 return;
747
Kiran Patil4147e2c2016-01-15 14:33:14 -0800748 idx = hw->pf_id + I40E_FCOE_PF_STAT_OFFSET;
Vasu Dev38e00432014-08-01 13:27:03 -0700749 fs = &vsi->fcoe_stats;
750 ofs = &vsi->fcoe_stats_offsets;
751
752 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
753 vsi->fcoe_stat_offsets_loaded,
754 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
755 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
756 vsi->fcoe_stat_offsets_loaded,
757 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
758 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
759 vsi->fcoe_stat_offsets_loaded,
760 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
761 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
762 vsi->fcoe_stat_offsets_loaded,
763 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
764 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
765 vsi->fcoe_stat_offsets_loaded,
766 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
767 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
768 vsi->fcoe_stat_offsets_loaded,
769 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
770 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
771 vsi->fcoe_stat_offsets_loaded,
772 &ofs->fcoe_last_error, &fs->fcoe_last_error);
773 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
774 vsi->fcoe_stat_offsets_loaded,
775 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
776
777 vsi->fcoe_stat_offsets_loaded = true;
778}
779
780#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000781/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000782 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000783 * @vsi: the VSI to be updated
784 *
785 * There are a few instances where we store the same stat in a
786 * couple of different structs. This is partly because we have
787 * the netdev stats that need to be filled out, which is slightly
788 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000789 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000790 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000791static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000792{
793 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000794 struct rtnl_link_stats64 *ons;
795 struct rtnl_link_stats64 *ns; /* netdev stats */
796 struct i40e_eth_stats *oes;
797 struct i40e_eth_stats *es; /* device's eth stats */
798 u32 tx_restart, tx_busy;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800799 u64 tx_lost_interrupt;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000800 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000801 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000802 u64 bytes, packets;
803 unsigned int start;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400804 u64 tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400805 u64 tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000806 u64 rx_p, rx_b;
807 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000808 u16 q;
809
810 if (test_bit(__I40E_DOWN, &vsi->state) ||
811 test_bit(__I40E_CONFIG_BUSY, &pf->state))
812 return;
813
814 ns = i40e_get_vsi_stats_struct(vsi);
815 ons = &vsi->net_stats_offsets;
816 es = &vsi->eth_stats;
817 oes = &vsi->eth_stats_offsets;
818
819 /* Gather up the netdev and vsi stats that the driver collects
820 * on the fly during packet processing
821 */
822 rx_b = rx_p = 0;
823 tx_b = tx_p = 0;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400824 tx_restart = tx_busy = tx_linearize = tx_force_wb = 0;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800825 tx_lost_interrupt = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000826 rx_page = 0;
827 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000828 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000829 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000830 /* locate Tx ring */
831 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000832
Alexander Duyck980e9b12013-09-28 06:01:03 +0000833 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700834 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000835 packets = p->stats.packets;
836 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700837 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000838 tx_b += bytes;
839 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000840 tx_restart += p->tx_stats.restart_queue;
841 tx_busy += p->tx_stats.tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400842 tx_linearize += p->tx_stats.tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400843 tx_force_wb += p->tx_stats.tx_force_wb;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800844 tx_lost_interrupt += p->tx_stats.tx_lost_interrupt;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000845
846 /* Rx queue is part of the same block as Tx queue */
847 p = &p[1];
848 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700849 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000850 packets = p->stats.packets;
851 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700852 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000853 rx_b += bytes;
854 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000855 rx_buf += p->rx_stats.alloc_buff_failed;
856 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000857 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000858 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000859 vsi->tx_restart = tx_restart;
860 vsi->tx_busy = tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400861 vsi->tx_linearize = tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400862 vsi->tx_force_wb = tx_force_wb;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800863 vsi->tx_lost_interrupt = tx_lost_interrupt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000864 vsi->rx_page_failed = rx_page;
865 vsi->rx_buf_failed = rx_buf;
866
867 ns->rx_packets = rx_p;
868 ns->rx_bytes = rx_b;
869 ns->tx_packets = tx_p;
870 ns->tx_bytes = tx_b;
871
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000872 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000873 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000874 ons->tx_errors = oes->tx_errors;
875 ns->tx_errors = es->tx_errors;
876 ons->multicast = oes->rx_multicast;
877 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000878 ons->rx_dropped = oes->rx_discards;
879 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000880 ons->tx_dropped = oes->tx_discards;
881 ns->tx_dropped = es->tx_discards;
882
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000883 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000884 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000885 ns->rx_crc_errors = pf->stats.crc_errors;
886 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
887 ns->rx_length_errors = pf->stats.rx_length_errors;
888 }
889}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000890
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000891/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000892 * i40e_update_pf_stats - Update the PF statistics counters.
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000893 * @pf: the PF to be updated
894 **/
895static void i40e_update_pf_stats(struct i40e_pf *pf)
896{
897 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
898 struct i40e_hw_port_stats *nsd = &pf->stats;
899 struct i40e_hw *hw = &pf->hw;
900 u32 val;
901 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000902
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000903 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
904 I40E_GLPRT_GORCL(hw->port),
905 pf->stat_offsets_loaded,
906 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
907 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
908 I40E_GLPRT_GOTCL(hw->port),
909 pf->stat_offsets_loaded,
910 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
911 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
912 pf->stat_offsets_loaded,
913 &osd->eth.rx_discards,
914 &nsd->eth.rx_discards);
Shannon Nelson532d2832014-04-23 04:50:09 +0000915 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
916 I40E_GLPRT_UPRCL(hw->port),
917 pf->stat_offsets_loaded,
918 &osd->eth.rx_unicast,
919 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000920 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
921 I40E_GLPRT_MPRCL(hw->port),
922 pf->stat_offsets_loaded,
923 &osd->eth.rx_multicast,
924 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000925 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
926 I40E_GLPRT_BPRCL(hw->port),
927 pf->stat_offsets_loaded,
928 &osd->eth.rx_broadcast,
929 &nsd->eth.rx_broadcast);
930 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
931 I40E_GLPRT_UPTCL(hw->port),
932 pf->stat_offsets_loaded,
933 &osd->eth.tx_unicast,
934 &nsd->eth.tx_unicast);
935 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
936 I40E_GLPRT_MPTCL(hw->port),
937 pf->stat_offsets_loaded,
938 &osd->eth.tx_multicast,
939 &nsd->eth.tx_multicast);
940 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
941 I40E_GLPRT_BPTCL(hw->port),
942 pf->stat_offsets_loaded,
943 &osd->eth.tx_broadcast,
944 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000945
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000946 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
947 pf->stat_offsets_loaded,
948 &osd->tx_dropped_link_down,
949 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000950
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000951 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
952 pf->stat_offsets_loaded,
953 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000954
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000955 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
956 pf->stat_offsets_loaded,
957 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000958
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000959 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
960 pf->stat_offsets_loaded,
961 &osd->mac_local_faults,
962 &nsd->mac_local_faults);
963 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
964 pf->stat_offsets_loaded,
965 &osd->mac_remote_faults,
966 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000967
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000968 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
969 pf->stat_offsets_loaded,
970 &osd->rx_length_errors,
971 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000972
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000973 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
974 pf->stat_offsets_loaded,
975 &osd->link_xon_rx, &nsd->link_xon_rx);
976 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
977 pf->stat_offsets_loaded,
978 &osd->link_xon_tx, &nsd->link_xon_tx);
Neerav Parikh95db2392015-11-06 15:26:09 -0800979 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
980 pf->stat_offsets_loaded,
981 &osd->link_xoff_rx, &nsd->link_xoff_rx);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000982 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
983 pf->stat_offsets_loaded,
984 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000985
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000986 for (i = 0; i < 8; i++) {
Neerav Parikh95db2392015-11-06 15:26:09 -0800987 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
988 pf->stat_offsets_loaded,
989 &osd->priority_xoff_rx[i],
990 &nsd->priority_xoff_rx[i]);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000991 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000992 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000993 &osd->priority_xon_rx[i],
994 &nsd->priority_xon_rx[i]);
995 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000996 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000997 &osd->priority_xon_tx[i],
998 &nsd->priority_xon_tx[i]);
999 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001000 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001001 &osd->priority_xoff_tx[i],
1002 &nsd->priority_xoff_tx[i]);
1003 i40e_stat_update32(hw,
1004 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001005 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001006 &osd->priority_xon_2_xoff[i],
1007 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001008 }
1009
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001010 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1011 I40E_GLPRT_PRC64L(hw->port),
1012 pf->stat_offsets_loaded,
1013 &osd->rx_size_64, &nsd->rx_size_64);
1014 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1015 I40E_GLPRT_PRC127L(hw->port),
1016 pf->stat_offsets_loaded,
1017 &osd->rx_size_127, &nsd->rx_size_127);
1018 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1019 I40E_GLPRT_PRC255L(hw->port),
1020 pf->stat_offsets_loaded,
1021 &osd->rx_size_255, &nsd->rx_size_255);
1022 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1023 I40E_GLPRT_PRC511L(hw->port),
1024 pf->stat_offsets_loaded,
1025 &osd->rx_size_511, &nsd->rx_size_511);
1026 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1027 I40E_GLPRT_PRC1023L(hw->port),
1028 pf->stat_offsets_loaded,
1029 &osd->rx_size_1023, &nsd->rx_size_1023);
1030 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1031 I40E_GLPRT_PRC1522L(hw->port),
1032 pf->stat_offsets_loaded,
1033 &osd->rx_size_1522, &nsd->rx_size_1522);
1034 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1035 I40E_GLPRT_PRC9522L(hw->port),
1036 pf->stat_offsets_loaded,
1037 &osd->rx_size_big, &nsd->rx_size_big);
1038
1039 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1040 I40E_GLPRT_PTC64L(hw->port),
1041 pf->stat_offsets_loaded,
1042 &osd->tx_size_64, &nsd->tx_size_64);
1043 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1044 I40E_GLPRT_PTC127L(hw->port),
1045 pf->stat_offsets_loaded,
1046 &osd->tx_size_127, &nsd->tx_size_127);
1047 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1048 I40E_GLPRT_PTC255L(hw->port),
1049 pf->stat_offsets_loaded,
1050 &osd->tx_size_255, &nsd->tx_size_255);
1051 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1052 I40E_GLPRT_PTC511L(hw->port),
1053 pf->stat_offsets_loaded,
1054 &osd->tx_size_511, &nsd->tx_size_511);
1055 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1056 I40E_GLPRT_PTC1023L(hw->port),
1057 pf->stat_offsets_loaded,
1058 &osd->tx_size_1023, &nsd->tx_size_1023);
1059 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1060 I40E_GLPRT_PTC1522L(hw->port),
1061 pf->stat_offsets_loaded,
1062 &osd->tx_size_1522, &nsd->tx_size_1522);
1063 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1064 I40E_GLPRT_PTC9522L(hw->port),
1065 pf->stat_offsets_loaded,
1066 &osd->tx_size_big, &nsd->tx_size_big);
1067
1068 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1069 pf->stat_offsets_loaded,
1070 &osd->rx_undersize, &nsd->rx_undersize);
1071 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1072 pf->stat_offsets_loaded,
1073 &osd->rx_fragments, &nsd->rx_fragments);
1074 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1075 pf->stat_offsets_loaded,
1076 &osd->rx_oversize, &nsd->rx_oversize);
1077 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1078 pf->stat_offsets_loaded,
1079 &osd->rx_jabber, &nsd->rx_jabber);
1080
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001081 /* FDIR stats */
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001082 i40e_stat_update32(hw,
1083 I40E_GLQF_PCNT(I40E_FD_ATR_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001084 pf->stat_offsets_loaded,
1085 &osd->fd_atr_match, &nsd->fd_atr_match);
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001086 i40e_stat_update32(hw,
1087 I40E_GLQF_PCNT(I40E_FD_SB_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001088 pf->stat_offsets_loaded,
1089 &osd->fd_sb_match, &nsd->fd_sb_match);
Anjali Singhai Jain60ccd452015-04-16 20:06:01 -04001090 i40e_stat_update32(hw,
1091 I40E_GLQF_PCNT(I40E_FD_ATR_TUNNEL_STAT_IDX(pf->hw.pf_id)),
1092 pf->stat_offsets_loaded,
1093 &osd->fd_atr_tunnel_match, &nsd->fd_atr_tunnel_match);
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001094
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001095 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1096 nsd->tx_lpi_status =
1097 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1098 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1099 nsd->rx_lpi_status =
1100 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1101 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1102 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1103 pf->stat_offsets_loaded,
1104 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1105 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1106 pf->stat_offsets_loaded,
1107 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1108
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001109 if (pf->flags & I40E_FLAG_FD_SB_ENABLED &&
1110 !(pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED))
1111 nsd->fd_sb_status = true;
1112 else
1113 nsd->fd_sb_status = false;
1114
1115 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED &&
1116 !(pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
1117 nsd->fd_atr_status = true;
1118 else
1119 nsd->fd_atr_status = false;
1120
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001121 pf->stat_offsets_loaded = true;
1122}
1123
1124/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001125 * i40e_update_stats - Update the various statistics counters.
1126 * @vsi: the VSI to be updated
1127 *
1128 * Update the various stats for this VSI and its related entities.
1129 **/
1130void i40e_update_stats(struct i40e_vsi *vsi)
1131{
1132 struct i40e_pf *pf = vsi->back;
1133
1134 if (vsi == pf->vsi[pf->lan_vsi])
1135 i40e_update_pf_stats(pf);
1136
1137 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001138#ifdef I40E_FCOE
1139 i40e_update_fcoe_stats(vsi);
1140#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001141}
1142
1143/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001144 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1145 * @vsi: the VSI to be searched
1146 * @macaddr: the MAC address
1147 * @vlan: the vlan
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001148 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001149 * @is_netdev: make sure its a netdev filter, else doesn't matter
1150 *
1151 * Returns ptr to the filter object or NULL
1152 **/
1153static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1154 u8 *macaddr, s16 vlan,
1155 bool is_vf, bool is_netdev)
1156{
1157 struct i40e_mac_filter *f;
1158
1159 if (!vsi || !macaddr)
1160 return NULL;
1161
1162 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1163 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1164 (vlan == f->vlan) &&
1165 (!is_vf || f->is_vf) &&
1166 (!is_netdev || f->is_netdev))
1167 return f;
1168 }
1169 return NULL;
1170}
1171
1172/**
1173 * i40e_find_mac - Find a mac addr in the macvlan filters list
1174 * @vsi: the VSI to be searched
1175 * @macaddr: the MAC address we are searching for
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001176 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001177 * @is_netdev: make sure its a netdev filter, else doesn't matter
1178 *
1179 * Returns the first filter with the provided MAC address or NULL if
1180 * MAC address was not found
1181 **/
1182struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1183 bool is_vf, bool is_netdev)
1184{
1185 struct i40e_mac_filter *f;
1186
1187 if (!vsi || !macaddr)
1188 return NULL;
1189
1190 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1191 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1192 (!is_vf || f->is_vf) &&
1193 (!is_netdev || f->is_netdev))
1194 return f;
1195 }
1196 return NULL;
1197}
1198
1199/**
1200 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1201 * @vsi: the VSI to be searched
1202 *
1203 * Returns true if VSI is in vlan mode or false otherwise
1204 **/
1205bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1206{
1207 struct i40e_mac_filter *f;
1208
1209 /* Only -1 for all the filters denotes not in vlan mode
1210 * so we have to go through all the list in order to make sure
1211 */
1212 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Greg Rosed9b68f82015-07-23 16:54:31 -04001213 if (f->vlan >= 0 || vsi->info.pvid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001214 return true;
1215 }
1216
1217 return false;
1218}
1219
1220/**
1221 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1222 * @vsi: the VSI to be searched
1223 * @macaddr: the mac address to be filtered
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001224 * @is_vf: true if it is a VF
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001225 * @is_netdev: true if it is a netdev
1226 *
1227 * Goes through all the macvlan filters and adds a
1228 * macvlan filter for each unique vlan that already exists
1229 *
1230 * Returns first filter found on success, else NULL
1231 **/
1232struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1233 bool is_vf, bool is_netdev)
1234{
1235 struct i40e_mac_filter *f;
1236
1237 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Mitch Williamsecbb44e2015-07-10 19:35:56 -04001238 if (vsi->info.pvid)
1239 f->vlan = le16_to_cpu(vsi->info.pvid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001240 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1241 is_vf, is_netdev)) {
1242 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001243 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001244 return NULL;
1245 }
1246 }
1247
1248 return list_first_entry_or_null(&vsi->mac_filter_list,
1249 struct i40e_mac_filter, list);
1250}
1251
1252/**
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001253 * i40e_del_mac_all_vlan - Remove a MAC filter from all VLANS
1254 * @vsi: the VSI to be searched
1255 * @macaddr: the mac address to be removed
1256 * @is_vf: true if it is a VF
1257 * @is_netdev: true if it is a netdev
1258 *
1259 * Removes a given MAC address from a VSI, regardless of VLAN
1260 *
1261 * Returns 0 for success, or error
1262 **/
1263int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1264 bool is_vf, bool is_netdev)
1265{
1266 struct i40e_mac_filter *f = NULL;
1267 int changed = 0;
1268
1269 WARN(!spin_is_locked(&vsi->mac_filter_list_lock),
1270 "Missing mac_filter_list_lock\n");
1271 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1272 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1273 (is_vf == f->is_vf) &&
1274 (is_netdev == f->is_netdev)) {
1275 f->counter--;
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001276 changed = 1;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001277 if (f->counter == 0)
1278 f->state = I40E_FILTER_REMOVE;
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001279 }
1280 }
1281 if (changed) {
1282 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1283 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1284 return 0;
1285 }
1286 return -ENOENT;
1287}
1288
1289/**
Greg Rose8c27d422014-05-22 06:31:56 +00001290 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1291 * @vsi: the PF Main VSI - inappropriate for any other VSI
1292 * @macaddr: the MAC address
Shannon Nelson30650cc2014-07-29 04:01:50 +00001293 *
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001294 * Remove whatever filter the firmware set up so the driver can manage
1295 * its own filtering intelligently.
Greg Rose8c27d422014-05-22 06:31:56 +00001296 **/
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001297static void i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
Greg Rose8c27d422014-05-22 06:31:56 +00001298{
1299 struct i40e_aqc_remove_macvlan_element_data element;
1300 struct i40e_pf *pf = vsi->back;
Greg Rose8c27d422014-05-22 06:31:56 +00001301
1302 /* Only appropriate for the PF main VSI */
1303 if (vsi->type != I40E_VSI_MAIN)
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001304 return;
Greg Rose8c27d422014-05-22 06:31:56 +00001305
Shannon Nelson30650cc2014-07-29 04:01:50 +00001306 memset(&element, 0, sizeof(element));
Greg Rose8c27d422014-05-22 06:31:56 +00001307 ether_addr_copy(element.mac_addr, macaddr);
1308 element.vlan_tag = 0;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001309 /* Ignore error returns, some firmware does it this way... */
1310 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1311 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
Shannon Nelson30650cc2014-07-29 04:01:50 +00001312
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001313 memset(&element, 0, sizeof(element));
1314 ether_addr_copy(element.mac_addr, macaddr);
1315 element.vlan_tag = 0;
1316 /* ...and some firmware does it this way. */
1317 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1318 I40E_AQC_MACVLAN_ADD_IGNORE_VLAN;
1319 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
Greg Rose8c27d422014-05-22 06:31:56 +00001320}
1321
1322/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001323 * i40e_add_filter - Add a mac/vlan filter to the VSI
1324 * @vsi: the VSI to be searched
1325 * @macaddr: the MAC address
1326 * @vlan: the vlan
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001327 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001328 * @is_netdev: make sure its a netdev filter, else doesn't matter
1329 *
1330 * Returns ptr to the filter object or NULL when no memory available.
Kiran Patil21659032015-09-30 14:09:03 -04001331 *
1332 * NOTE: This function is expected to be called with mac_filter_list_lock
1333 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001334 **/
1335struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1336 u8 *macaddr, s16 vlan,
1337 bool is_vf, bool is_netdev)
1338{
1339 struct i40e_mac_filter *f;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001340 int changed = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001341
1342 if (!vsi || !macaddr)
1343 return NULL;
1344
Kiran Patilf6bd0962016-06-20 09:10:34 -07001345 /* Do not allow broadcast filter to be added since broadcast filter
1346 * is added as part of add VSI for any newly created VSI except
1347 * FDIR VSI
1348 */
1349 if (is_broadcast_ether_addr(macaddr))
1350 return NULL;
1351
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001352 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1353 if (!f) {
1354 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1355 if (!f)
1356 goto add_filter_out;
1357
Greg Rose9a173902014-05-22 06:32:02 +00001358 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001359 f->vlan = vlan;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001360 /* If we're in overflow promisc mode, set the state directly
1361 * to failed, so we don't bother to try sending the filter
1362 * to the hardware.
1363 */
1364 if (test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state))
1365 f->state = I40E_FILTER_FAILED;
1366 else
1367 f->state = I40E_FILTER_NEW;
1368 changed = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001369 INIT_LIST_HEAD(&f->list);
Kiran Patil04d5a212015-12-09 15:50:23 -08001370 list_add_tail(&f->list, &vsi->mac_filter_list);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001371 }
1372
1373 /* increment counter and add a new flag if needed */
1374 if (is_vf) {
1375 if (!f->is_vf) {
1376 f->is_vf = true;
1377 f->counter++;
1378 }
1379 } else if (is_netdev) {
1380 if (!f->is_netdev) {
1381 f->is_netdev = true;
1382 f->counter++;
1383 }
1384 } else {
1385 f->counter++;
1386 }
1387
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001388 if (changed) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001389 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1390 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1391 }
1392
1393add_filter_out:
1394 return f;
1395}
1396
1397/**
1398 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1399 * @vsi: the VSI to be searched
1400 * @macaddr: the MAC address
1401 * @vlan: the vlan
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001402 * @is_vf: make sure it's a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001403 * @is_netdev: make sure it's a netdev filter, else doesn't matter
Kiran Patil21659032015-09-30 14:09:03 -04001404 *
1405 * NOTE: This function is expected to be called with mac_filter_list_lock
1406 * being held.
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001407 * ANOTHER NOTE: This function MUST be called from within the context of
1408 * the "safe" variants of any list iterators, e.g. list_for_each_entry_safe()
1409 * instead of list_for_each_entry().
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001410 **/
1411void i40e_del_filter(struct i40e_vsi *vsi,
1412 u8 *macaddr, s16 vlan,
1413 bool is_vf, bool is_netdev)
1414{
1415 struct i40e_mac_filter *f;
1416
1417 if (!vsi || !macaddr)
1418 return;
1419
1420 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1421 if (!f || f->counter == 0)
1422 return;
1423
1424 if (is_vf) {
1425 if (f->is_vf) {
1426 f->is_vf = false;
1427 f->counter--;
1428 }
1429 } else if (is_netdev) {
1430 if (f->is_netdev) {
1431 f->is_netdev = false;
1432 f->counter--;
1433 }
1434 } else {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001435 /* make sure we don't remove a filter in use by VF or netdev */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001436 int min_f = 0;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001437
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001438 min_f += (f->is_vf ? 1 : 0);
1439 min_f += (f->is_netdev ? 1 : 0);
1440
1441 if (f->counter > min_f)
1442 f->counter--;
1443 }
1444
1445 /* counter == 0 tells sync_filters_subtask to
1446 * remove the filter from the firmware's list
1447 */
1448 if (f->counter == 0) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001449 if ((f->state == I40E_FILTER_FAILED) ||
1450 (f->state == I40E_FILTER_NEW)) {
1451 /* this one never got added by the FW. Just remove it,
1452 * no need to sync anything.
1453 */
1454 list_del(&f->list);
1455 kfree(f);
1456 } else {
1457 f->state = I40E_FILTER_REMOVE;
1458 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1459 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1460 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001461 }
1462}
1463
1464/**
1465 * i40e_set_mac - NDO callback to set mac address
1466 * @netdev: network interface device structure
1467 * @p: pointer to an address structure
1468 *
1469 * Returns 0 on success, negative on failure
1470 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001471#ifdef I40E_FCOE
1472int i40e_set_mac(struct net_device *netdev, void *p)
1473#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001474static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001475#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001476{
1477 struct i40e_netdev_priv *np = netdev_priv(netdev);
1478 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001479 struct i40e_pf *pf = vsi->back;
1480 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001481 struct sockaddr *addr = p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001482
1483 if (!is_valid_ether_addr(addr->sa_data))
1484 return -EADDRNOTAVAIL;
1485
Shannon Nelson30650cc2014-07-29 04:01:50 +00001486 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1487 netdev_info(netdev, "already using mac address %pM\n",
1488 addr->sa_data);
1489 return 0;
1490 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001491
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001492 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1493 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1494 return -EADDRNOTAVAIL;
1495
Shannon Nelson30650cc2014-07-29 04:01:50 +00001496 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1497 netdev_info(netdev, "returning to hw mac address %pM\n",
1498 hw->mac.addr);
1499 else
1500 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1501
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001502 spin_lock_bh(&vsi->mac_filter_list_lock);
1503 i40e_del_mac_all_vlan(vsi, netdev->dev_addr, false, true);
1504 i40e_put_mac_in_vlan(vsi, addr->sa_data, false, true);
1505 spin_unlock_bh(&vsi->mac_filter_list_lock);
1506 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001507 if (vsi->type == I40E_VSI_MAIN) {
1508 i40e_status ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001509
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001510 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001511 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001512 addr->sa_data, NULL);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001513 if (ret)
1514 netdev_info(netdev, "Ignoring error from firmware on LAA update, status %s, AQ ret %s\n",
1515 i40e_stat_str(hw, ret),
1516 i40e_aq_str(hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001517 }
1518
Jesse Brandeburgc53934c2016-01-04 10:33:06 -08001519 /* schedule our worker thread which will take care of
1520 * applying the new filter changes
1521 */
1522 i40e_service_event_schedule(vsi->back);
1523 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001524}
1525
1526/**
1527 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1528 * @vsi: the VSI being setup
1529 * @ctxt: VSI context structure
1530 * @enabled_tc: Enabled TCs bitmap
1531 * @is_add: True if called before Add VSI
1532 *
1533 * Setup VSI queue mapping for enabled traffic classes.
1534 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001535#ifdef I40E_FCOE
1536void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1537 struct i40e_vsi_context *ctxt,
1538 u8 enabled_tc,
1539 bool is_add)
1540#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001541static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1542 struct i40e_vsi_context *ctxt,
1543 u8 enabled_tc,
1544 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001545#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001546{
1547 struct i40e_pf *pf = vsi->back;
1548 u16 sections = 0;
1549 u8 netdev_tc = 0;
1550 u16 numtc = 0;
1551 u16 qcount;
1552 u8 offset;
1553 u16 qmap;
1554 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001555 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001556
1557 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1558 offset = 0;
1559
1560 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1561 /* Find numtc from enabled TC bitmap */
1562 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001563 if (enabled_tc & BIT(i)) /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001564 numtc++;
1565 }
1566 if (!numtc) {
1567 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1568 numtc = 1;
1569 }
1570 } else {
1571 /* At least TC0 is enabled in case of non-DCB case */
1572 numtc = 1;
1573 }
1574
1575 vsi->tc_config.numtc = numtc;
1576 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001577 /* Number of queues per enabled TC */
Catherine Sullivan7d644022016-05-16 10:26:41 -07001578 qcount = vsi->alloc_queue_pairs;
1579
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001580 num_tc_qps = qcount / numtc;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001581 num_tc_qps = min_t(int, num_tc_qps, i40e_pf_get_max_q_per_tc(pf));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001582
1583 /* Setup queue offset/count for all TCs for given VSI */
1584 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1585 /* See if the given TC is enabled for the given VSI */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001586 if (vsi->tc_config.enabled_tc & BIT(i)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001587 /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001588 int pow, num_qps;
1589
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001590 switch (vsi->type) {
1591 case I40E_VSI_MAIN:
Helin Zhangacd65442015-10-26 19:44:28 -04001592 qcount = min_t(int, pf->alloc_rss_size,
1593 num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001594 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001595#ifdef I40E_FCOE
1596 case I40E_VSI_FCOE:
1597 qcount = num_tc_qps;
1598 break;
1599#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001600 case I40E_VSI_FDIR:
1601 case I40E_VSI_SRIOV:
1602 case I40E_VSI_VMDQ2:
1603 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001604 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001605 WARN_ON(i != 0);
1606 break;
1607 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001608 vsi->tc_config.tc_info[i].qoffset = offset;
1609 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001610
Shannon Nelson1e200e42015-02-27 09:15:24 +00001611 /* find the next higher power-of-2 of num queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001612 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001613 pow = 0;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001614 while (num_qps && (BIT_ULL(pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001615 pow++;
1616 num_qps >>= 1;
1617 }
1618
1619 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1620 qmap =
1621 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1622 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1623
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001624 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001625 } else {
1626 /* TC is not enabled so set the offset to
1627 * default queue and allocate one queue
1628 * for the given TC.
1629 */
1630 vsi->tc_config.tc_info[i].qoffset = 0;
1631 vsi->tc_config.tc_info[i].qcount = 1;
1632 vsi->tc_config.tc_info[i].netdev_tc = 0;
1633
1634 qmap = 0;
1635 }
1636 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1637 }
1638
1639 /* Set actual Tx/Rx queue pairs */
1640 vsi->num_queue_pairs = offset;
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001641 if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) {
1642 if (vsi->req_queue_pairs > 0)
1643 vsi->num_queue_pairs = vsi->req_queue_pairs;
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001644 else if (pf->flags & I40E_FLAG_MSIX_ENABLED)
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001645 vsi->num_queue_pairs = pf->num_lan_msix;
1646 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001647
1648 /* Scheduler section valid can only be set for ADD VSI */
1649 if (is_add) {
1650 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1651
1652 ctxt->info.up_enable_bits = enabled_tc;
1653 }
1654 if (vsi->type == I40E_VSI_SRIOV) {
1655 ctxt->info.mapping_flags |=
1656 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1657 for (i = 0; i < vsi->num_queue_pairs; i++)
1658 ctxt->info.queue_mapping[i] =
1659 cpu_to_le16(vsi->base_queue + i);
1660 } else {
1661 ctxt->info.mapping_flags |=
1662 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1663 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1664 }
1665 ctxt->info.valid_sections |= cpu_to_le16(sections);
1666}
1667
1668/**
1669 * i40e_set_rx_mode - NDO callback to set the netdev filters
1670 * @netdev: network interface device structure
1671 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001672#ifdef I40E_FCOE
1673void i40e_set_rx_mode(struct net_device *netdev)
1674#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001675static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001676#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001677{
1678 struct i40e_netdev_priv *np = netdev_priv(netdev);
1679 struct i40e_mac_filter *f, *ftmp;
1680 struct i40e_vsi *vsi = np->vsi;
1681 struct netdev_hw_addr *uca;
1682 struct netdev_hw_addr *mca;
1683 struct netdev_hw_addr *ha;
1684
Kiran Patil21659032015-09-30 14:09:03 -04001685 spin_lock_bh(&vsi->mac_filter_list_lock);
1686
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001687 /* add addr if not already in the filter list */
1688 netdev_for_each_uc_addr(uca, netdev) {
1689 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1690 if (i40e_is_vsi_in_vlan(vsi))
1691 i40e_put_mac_in_vlan(vsi, uca->addr,
1692 false, true);
1693 else
1694 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1695 false, true);
1696 }
1697 }
1698
1699 netdev_for_each_mc_addr(mca, netdev) {
1700 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1701 if (i40e_is_vsi_in_vlan(vsi))
1702 i40e_put_mac_in_vlan(vsi, mca->addr,
1703 false, true);
1704 else
1705 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1706 false, true);
1707 }
1708 }
1709
1710 /* remove filter if not in netdev list */
1711 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001712
1713 if (!f->is_netdev)
1714 continue;
1715
Shannon Nelson2f41f332015-08-26 15:14:20 -04001716 netdev_for_each_mc_addr(mca, netdev)
1717 if (ether_addr_equal(mca->addr, f->macaddr))
1718 goto bottom_of_search_loop;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001719
Shannon Nelson2f41f332015-08-26 15:14:20 -04001720 netdev_for_each_uc_addr(uca, netdev)
1721 if (ether_addr_equal(uca->addr, f->macaddr))
1722 goto bottom_of_search_loop;
1723
1724 for_each_dev_addr(netdev, ha)
1725 if (ether_addr_equal(ha->addr, f->macaddr))
1726 goto bottom_of_search_loop;
1727
1728 /* f->macaddr wasn't found in uc, mc, or ha list so delete it */
1729 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1730
1731bottom_of_search_loop:
1732 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001733 }
Kiran Patil21659032015-09-30 14:09:03 -04001734 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001735
1736 /* check for other flag changes */
1737 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1738 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1739 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1740 }
Jesse Brandeburgc53934c2016-01-04 10:33:06 -08001741
1742 /* schedule our worker thread which will take care of
1743 * applying the new filter changes
1744 */
1745 i40e_service_event_schedule(vsi->back);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001746}
1747
1748/**
Kiran Patil21659032015-09-30 14:09:03 -04001749 * i40e_undo_del_filter_entries - Undo the changes made to MAC filter entries
1750 * @vsi: pointer to vsi struct
1751 * @from: Pointer to list which contains MAC filter entries - changes to
1752 * those entries needs to be undone.
1753 *
1754 * MAC filter entries from list were slated to be removed from device.
1755 **/
1756static void i40e_undo_del_filter_entries(struct i40e_vsi *vsi,
1757 struct list_head *from)
1758{
1759 struct i40e_mac_filter *f, *ftmp;
1760
1761 list_for_each_entry_safe(f, ftmp, from, list) {
Kiran Patil21659032015-09-30 14:09:03 -04001762 /* Move the element back into MAC filter list*/
1763 list_move_tail(&f->list, &vsi->mac_filter_list);
1764 }
1765}
1766
1767/**
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001768 * i40e_update_filter_state - Update filter state based on return data
1769 * from firmware
1770 * @count: Number of filters added
1771 * @add_list: return data from fw
1772 * @head: pointer to first filter in current batch
1773 * @aq_err: status from fw
Kiran Patil21659032015-09-30 14:09:03 -04001774 *
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001775 * MAC filter entries from list were slated to be added to device. Returns
1776 * number of successful filters. Note that 0 does NOT mean success!
Kiran Patil21659032015-09-30 14:09:03 -04001777 **/
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001778static int
1779i40e_update_filter_state(int count,
1780 struct i40e_aqc_add_macvlan_element_data *add_list,
1781 struct i40e_mac_filter *add_head, int aq_err)
Kiran Patil21659032015-09-30 14:09:03 -04001782{
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001783 int retval = 0;
1784 int i;
Kiran Patil21659032015-09-30 14:09:03 -04001785
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001786
1787 if (!aq_err) {
1788 retval = count;
1789 /* Everything's good, mark all filters active. */
1790 for (i = 0; i < count ; i++) {
1791 add_head->state = I40E_FILTER_ACTIVE;
1792 add_head = list_next_entry(add_head, list);
1793 }
1794 } else if (aq_err == I40E_AQ_RC_ENOSPC) {
1795 /* Device ran out of filter space. Check the return value
1796 * for each filter to see which ones are active.
1797 */
1798 for (i = 0; i < count ; i++) {
1799 if (add_list[i].match_method ==
1800 I40E_AQC_MM_ERR_NO_RES) {
1801 add_head->state = I40E_FILTER_FAILED;
1802 } else {
1803 add_head->state = I40E_FILTER_ACTIVE;
1804 retval++;
1805 }
1806 add_head = list_next_entry(add_head, list);
1807 }
1808 } else {
1809 /* Some other horrible thing happened, fail all filters */
1810 retval = 0;
1811 for (i = 0; i < count ; i++) {
1812 add_head->state = I40E_FILTER_FAILED;
1813 add_head = list_next_entry(add_head, list);
1814 }
Kiran Patil21659032015-09-30 14:09:03 -04001815 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001816 return retval;
Kiran Patil21659032015-09-30 14:09:03 -04001817}
1818
1819/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001820 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1821 * @vsi: ptr to the VSI
1822 *
1823 * Push any outstanding VSI filter changes through the AdminQ.
1824 *
1825 * Returns 0 or error value
1826 **/
Jesse Brandeburg17652c62015-11-05 17:01:02 -08001827int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001828{
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001829 struct i40e_mac_filter *f, *ftmp, *add_head = NULL;
1830 struct list_head tmp_add_list, tmp_del_list;
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001831 struct i40e_hw *hw = &vsi->back->hw;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001832 bool promisc_changed = false;
Shannon Nelson2d1de822016-05-16 10:26:44 -07001833 char vsi_name[16] = "PF";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001834 int filter_list_len = 0;
1835 u32 changed_flags = 0;
Mitch Williamsea02e902015-11-09 15:35:50 -08001836 i40e_status aq_ret = 0;
Mitch Williamsea02e902015-11-09 15:35:50 -08001837 int retval = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001838 struct i40e_pf *pf;
1839 int num_add = 0;
1840 int num_del = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001841 int aq_err = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001842 u16 cmd_flags;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001843 int list_size;
1844 int fcnt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001845
1846 /* empty array typed pointers, kcalloc later */
1847 struct i40e_aqc_add_macvlan_element_data *add_list;
1848 struct i40e_aqc_remove_macvlan_element_data *del_list;
1849
1850 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1851 usleep_range(1000, 2000);
1852 pf = vsi->back;
1853
1854 if (vsi->netdev) {
1855 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1856 vsi->current_netdev_flags = vsi->netdev->flags;
1857 }
1858
Kiran Patil21659032015-09-30 14:09:03 -04001859 INIT_LIST_HEAD(&tmp_add_list);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001860 INIT_LIST_HEAD(&tmp_del_list);
Kiran Patil21659032015-09-30 14:09:03 -04001861
Shannon Nelson2d1de822016-05-16 10:26:44 -07001862 if (vsi->type == I40E_VSI_SRIOV)
1863 snprintf(vsi_name, sizeof(vsi_name) - 1, "VF %d", vsi->vf_id);
1864 else if (vsi->type != I40E_VSI_MAIN)
1865 snprintf(vsi_name, sizeof(vsi_name) - 1, "vsi %d", vsi->seid);
1866
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001867 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1868 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1869
Kiran Patil21659032015-09-30 14:09:03 -04001870 spin_lock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001871 /* Create a list of filters to delete. */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001872 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001873 if (f->state == I40E_FILTER_REMOVE) {
1874 WARN_ON(f->counter != 0);
1875 /* Move the element into temporary del_list */
1876 list_move_tail(&f->list, &tmp_del_list);
1877 vsi->active_filters--;
Kiran Patil21659032015-09-30 14:09:03 -04001878 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001879 if (f->state == I40E_FILTER_NEW) {
1880 WARN_ON(f->counter == 0);
1881 /* Move the element into temporary add_list */
1882 list_move_tail(&f->list, &tmp_add_list);
1883 }
Kiran Patil21659032015-09-30 14:09:03 -04001884 }
1885 spin_unlock_bh(&vsi->mac_filter_list_lock);
Kiran Patil21659032015-09-30 14:09:03 -04001886 }
1887
1888 /* Now process 'del_list' outside the lock */
1889 if (!list_empty(&tmp_del_list)) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001890 filter_list_len = hw->aq.asq_buf_size /
Kiran Patil21659032015-09-30 14:09:03 -04001891 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001892 list_size = filter_list_len *
Shannon Nelsonf1199992015-11-19 11:34:23 -08001893 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001894 del_list = kzalloc(list_size, GFP_ATOMIC);
Kiran Patil21659032015-09-30 14:09:03 -04001895 if (!del_list) {
Kiran Patil21659032015-09-30 14:09:03 -04001896 /* Undo VSI's MAC filter entry element updates */
1897 spin_lock_bh(&vsi->mac_filter_list_lock);
1898 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
Kiran Patil21659032015-09-30 14:09:03 -04001899 spin_unlock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsea02e902015-11-09 15:35:50 -08001900 retval = -ENOMEM;
1901 goto out;
Kiran Patil21659032015-09-30 14:09:03 -04001902 }
1903
1904 list_for_each_entry_safe(f, ftmp, &tmp_del_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001905 cmd_flags = 0;
1906
1907 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001908 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001909 if (f->vlan == I40E_VLAN_ANY) {
1910 del_list[num_del].vlan_tag = 0;
1911 cmd_flags |= I40E_AQC_MACVLAN_ADD_IGNORE_VLAN;
1912 } else {
1913 del_list[num_del].vlan_tag =
1914 cpu_to_le16((u16)(f->vlan));
1915 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001916
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001917 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1918 del_list[num_del].flags = cmd_flags;
1919 num_del++;
1920
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001921 /* flush a full buffer */
1922 if (num_del == filter_list_len) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001923 aq_ret = i40e_aq_remove_macvlan(hw, vsi->seid,
1924 del_list,
1925 num_del, NULL);
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001926 aq_err = hw->aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001927 num_del = 0;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001928 memset(del_list, 0, list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001929
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001930 /* Explicitly ignore and do not report when
1931 * firmware returns ENOENT.
1932 */
1933 if (aq_ret && !(aq_err == I40E_AQ_RC_ENOENT)) {
Mitch Williamsea02e902015-11-09 15:35:50 -08001934 retval = -EIO;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001935 dev_info(&pf->pdev->dev,
1936 "ignoring delete macvlan error on %s, err %s, aq_err %s\n",
Shannon Nelson2d1de822016-05-16 10:26:44 -07001937 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001938 i40e_stat_str(hw, aq_ret),
1939 i40e_aq_str(hw, aq_err));
Mitch Williamsea02e902015-11-09 15:35:50 -08001940 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001941 }
Kiran Patil21659032015-09-30 14:09:03 -04001942 /* Release memory for MAC filter entries which were
1943 * synced up with HW.
1944 */
1945 list_del(&f->list);
1946 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001947 }
Kiran Patil21659032015-09-30 14:09:03 -04001948
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001949 if (num_del) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001950 aq_ret = i40e_aq_remove_macvlan(hw, vsi->seid, del_list,
1951 num_del, NULL);
1952 aq_err = hw->aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001953 num_del = 0;
1954
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001955 /* Explicitly ignore and do not report when firmware
1956 * returns ENOENT.
1957 */
1958 if (aq_ret && !(aq_err == I40E_AQ_RC_ENOENT)) {
1959 retval = -EIO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001960 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07001961 "ignoring delete macvlan error on %s, err %s aq_err %s\n",
1962 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001963 i40e_stat_str(hw, aq_ret),
1964 i40e_aq_str(hw, aq_err));
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001965 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001966 }
1967
1968 kfree(del_list);
1969 del_list = NULL;
Kiran Patil21659032015-09-30 14:09:03 -04001970 }
1971
1972 if (!list_empty(&tmp_add_list)) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001973 /* Do all the adds now. */
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001974 filter_list_len = hw->aq.asq_buf_size /
Shannon Nelsonf1199992015-11-19 11:34:23 -08001975 sizeof(struct i40e_aqc_add_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001976 list_size = filter_list_len *
1977 sizeof(struct i40e_aqc_add_macvlan_element_data);
1978 add_list = kzalloc(list_size, GFP_ATOMIC);
Kiran Patil21659032015-09-30 14:09:03 -04001979 if (!add_list) {
Mitch Williamsea02e902015-11-09 15:35:50 -08001980 retval = -ENOMEM;
1981 goto out;
Kiran Patil21659032015-09-30 14:09:03 -04001982 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001983 num_add = 0;
1984 list_for_each_entry(f, &tmp_add_list, list) {
1985 if (test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1986 &vsi->state)) {
1987 f->state = I40E_FILTER_FAILED;
1988 continue;
1989 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001990 /* add to add array */
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001991 if (num_add == 0)
1992 add_head = f;
1993 cmd_flags = 0;
Greg Rose9a173902014-05-22 06:32:02 +00001994 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001995 if (f->vlan == I40E_VLAN_ANY) {
1996 add_list[num_add].vlan_tag = 0;
1997 cmd_flags |= I40E_AQC_MACVLAN_ADD_IGNORE_VLAN;
1998 } else {
1999 add_list[num_add].vlan_tag =
2000 cpu_to_le16((u16)(f->vlan));
2001 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002002 add_list[num_add].queue_number = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002003 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002004 add_list[num_add].flags = cpu_to_le16(cmd_flags);
2005 num_add++;
2006
2007 /* flush a full buffer */
2008 if (num_add == filter_list_len) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002009 aq_ret = i40e_aq_add_macvlan(hw, vsi->seid,
Mitch Williamsea02e902015-11-09 15:35:50 -08002010 add_list, num_add,
2011 NULL);
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002012 aq_err = hw->aq.asq_last_status;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002013 fcnt = i40e_update_filter_state(num_add,
2014 add_list,
2015 add_head,
2016 aq_ret);
2017 vsi->active_filters += fcnt;
2018
2019 if (fcnt != num_add) {
2020 promisc_changed = true;
2021 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2022 &vsi->state);
2023 vsi->promisc_threshold =
2024 (vsi->active_filters * 3) / 4;
2025 dev_warn(&pf->pdev->dev,
2026 "Error %s adding RX filters on %s, promiscuous mode forced on\n",
2027 i40e_aq_str(hw, aq_err),
2028 vsi_name);
2029 }
2030 memset(add_list, 0, list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002031 num_add = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002032 }
2033 }
2034 if (num_add) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002035 aq_ret = i40e_aq_add_macvlan(hw, vsi->seid,
Mitch Williamsea02e902015-11-09 15:35:50 -08002036 add_list, num_add, NULL);
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002037 aq_err = hw->aq.asq_last_status;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002038 fcnt = i40e_update_filter_state(num_add, add_list,
2039 add_head, aq_ret);
2040 vsi->active_filters += fcnt;
2041 if (fcnt != num_add) {
2042 promisc_changed = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002043 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2044 &vsi->state);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002045 vsi->promisc_threshold =
2046 (vsi->active_filters * 3) / 4;
2047 dev_warn(&pf->pdev->dev,
2048 "Error %s adding RX filters on %s, promiscuous mode forced on\n",
2049 i40e_aq_str(hw, aq_err), vsi_name);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002050 }
2051 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002052 /* Now move all of the filters from the temp add list back to
2053 * the VSI's list.
2054 */
2055 spin_lock_bh(&vsi->mac_filter_list_lock);
2056 list_for_each_entry_safe(f, ftmp, &tmp_add_list, list) {
2057 list_move_tail(&f->list, &vsi->mac_filter_list);
2058 }
2059 spin_unlock_bh(&vsi->mac_filter_list_lock);
2060 kfree(add_list);
2061 add_list = NULL;
2062 }
2063
2064 /* Check to see if we can drop out of overflow promiscuous mode. */
2065 if (test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state) &&
2066 (vsi->active_filters < vsi->promisc_threshold)) {
2067 int failed_count = 0;
2068 /* See if we have any failed filters. We can't drop out of
2069 * promiscuous until these have all been deleted.
2070 */
2071 spin_lock_bh(&vsi->mac_filter_list_lock);
2072 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2073 if (f->state == I40E_FILTER_FAILED)
2074 failed_count++;
2075 }
2076 spin_unlock_bh(&vsi->mac_filter_list_lock);
2077 if (!failed_count) {
2078 dev_info(&pf->pdev->dev,
2079 "filter logjam cleared on %s, leaving overflow promiscuous mode\n",
2080 vsi_name);
2081 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
2082 promisc_changed = true;
2083 vsi->promisc_threshold = 0;
2084 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002085 }
2086
Anjali Singhai Jaina856b5c2016-04-13 03:08:23 -07002087 /* if the VF is not trusted do not do promisc */
2088 if ((vsi->type == I40E_VSI_SRIOV) && !pf->vf[vsi->vf_id].trusted) {
2089 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
2090 goto out;
2091 }
2092
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002093 /* check for changes in promiscuous modes */
2094 if (changed_flags & IFF_ALLMULTI) {
2095 bool cur_multipromisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002096
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002097 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Mitch Williamsea02e902015-11-09 15:35:50 -08002098 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
2099 vsi->seid,
2100 cur_multipromisc,
2101 NULL);
2102 if (aq_ret) {
2103 retval = i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002104 hw->aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002105 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002106 "set multi promisc failed on %s, err %s aq_err %s\n",
2107 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002108 i40e_stat_str(hw, aq_ret),
2109 i40e_aq_str(hw, hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002110 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002111 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002112 if ((changed_flags & IFF_PROMISC) ||
2113 (promisc_changed &&
2114 test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state))) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002115 bool cur_promisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002116
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002117 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
2118 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2119 &vsi->state));
Anjali Singhai Jain6784ed52016-01-15 14:33:13 -08002120 if ((vsi->type == I40E_VSI_MAIN) &&
2121 (pf->lan_veb != I40E_NO_VEB) &&
2122 !(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002123 /* set defport ON for Main VSI instead of true promisc
2124 * this way we will get all unicast/multicast and VLAN
2125 * promisc behavior but will not get VF or VMDq traffic
2126 * replicated on the Main VSI.
2127 */
2128 if (pf->cur_promisc != cur_promisc) {
2129 pf->cur_promisc = cur_promisc;
Mitch Williams5bc16032016-05-16 10:26:43 -07002130 if (cur_promisc)
2131 aq_ret =
2132 i40e_aq_set_default_vsi(hw,
2133 vsi->seid,
2134 NULL);
2135 else
2136 aq_ret =
2137 i40e_aq_clear_default_vsi(hw,
2138 vsi->seid,
2139 NULL);
2140 if (aq_ret) {
2141 retval = i40e_aq_rc_to_posix(aq_ret,
2142 hw->aq.asq_last_status);
2143 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002144 "Set default VSI failed on %s, err %s, aq_err %s\n",
2145 vsi_name,
Mitch Williams5bc16032016-05-16 10:26:43 -07002146 i40e_stat_str(hw, aq_ret),
2147 i40e_aq_str(hw,
2148 hw->aq.asq_last_status));
2149 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002150 }
2151 } else {
Mitch Williamsea02e902015-11-09 15:35:50 -08002152 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002153 hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002154 vsi->seid,
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07002155 cur_promisc, NULL,
2156 true);
Mitch Williamsea02e902015-11-09 15:35:50 -08002157 if (aq_ret) {
2158 retval =
2159 i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002160 hw->aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002161 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002162 "set unicast promisc failed on %s, err %s, aq_err %s\n",
2163 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002164 i40e_stat_str(hw, aq_ret),
2165 i40e_aq_str(hw,
2166 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002167 }
2168 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002169 hw,
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002170 vsi->seid,
2171 cur_promisc, NULL);
Mitch Williamsea02e902015-11-09 15:35:50 -08002172 if (aq_ret) {
2173 retval =
2174 i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002175 hw->aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002176 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002177 "set multicast promisc failed on %s, err %s, aq_err %s\n",
2178 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002179 i40e_stat_str(hw, aq_ret),
2180 i40e_aq_str(hw,
2181 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002182 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002183 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002184 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
2185 vsi->seid,
2186 cur_promisc, NULL);
2187 if (aq_ret) {
2188 retval = i40e_aq_rc_to_posix(aq_ret,
2189 pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00002190 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002191 "set brdcast promisc failed, err %s, aq_err %s\n",
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002192 i40e_stat_str(hw, aq_ret),
2193 i40e_aq_str(hw,
2194 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002195 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002196 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002197out:
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08002198 /* if something went wrong then set the changed flag so we try again */
2199 if (retval)
2200 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
2201
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002202 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
Mitch Williamsea02e902015-11-09 15:35:50 -08002203 return retval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002204}
2205
2206/**
2207 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
2208 * @pf: board private structure
2209 **/
2210static void i40e_sync_filters_subtask(struct i40e_pf *pf)
2211{
2212 int v;
2213
2214 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
2215 return;
2216 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
2217
Mitch Williams505682c2014-05-20 08:01:37 +00002218 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002219 if (pf->vsi[v] &&
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002220 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) {
2221 int ret = i40e_sync_vsi_filters(pf->vsi[v]);
2222
2223 if (ret) {
2224 /* come back and try again later */
2225 pf->flags |= I40E_FLAG_FILTER_SYNC;
2226 break;
2227 }
2228 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002229 }
2230}
2231
2232/**
2233 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
2234 * @netdev: network interface device structure
2235 * @new_mtu: new value for maximum frame size
2236 *
2237 * Returns 0 on success, negative on failure
2238 **/
2239static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
2240{
2241 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00002242 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002243 struct i40e_vsi *vsi = np->vsi;
2244
2245 /* MTU < 68 is an error and causes problems on some kernels */
2246 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
2247 return -EINVAL;
2248
2249 netdev_info(netdev, "changing MTU from %d to %d\n",
2250 netdev->mtu, new_mtu);
2251 netdev->mtu = new_mtu;
2252 if (netif_running(netdev))
2253 i40e_vsi_reinit_locked(vsi);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002254 i40e_notify_client_of_l2_param_changes(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002255 return 0;
2256}
2257
2258/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002259 * i40e_ioctl - Access the hwtstamp interface
2260 * @netdev: network interface device structure
2261 * @ifr: interface request data
2262 * @cmd: ioctl command
2263 **/
2264int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2265{
2266 struct i40e_netdev_priv *np = netdev_priv(netdev);
2267 struct i40e_pf *pf = np->vsi->back;
2268
2269 switch (cmd) {
2270 case SIOCGHWTSTAMP:
2271 return i40e_ptp_get_ts_config(pf, ifr);
2272 case SIOCSHWTSTAMP:
2273 return i40e_ptp_set_ts_config(pf, ifr);
2274 default:
2275 return -EOPNOTSUPP;
2276 }
2277}
2278
2279/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002280 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
2281 * @vsi: the vsi being adjusted
2282 **/
2283void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
2284{
2285 struct i40e_vsi_context ctxt;
2286 i40e_status ret;
2287
2288 if ((vsi->info.valid_sections &
2289 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2290 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
2291 return; /* already enabled */
2292
2293 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2294 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2295 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
2296
2297 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002298 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002299 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2300 if (ret) {
2301 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002302 "update vlan stripping failed, err %s aq_err %s\n",
2303 i40e_stat_str(&vsi->back->hw, ret),
2304 i40e_aq_str(&vsi->back->hw,
2305 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002306 }
2307}
2308
2309/**
2310 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
2311 * @vsi: the vsi being adjusted
2312 **/
2313void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
2314{
2315 struct i40e_vsi_context ctxt;
2316 i40e_status ret;
2317
2318 if ((vsi->info.valid_sections &
2319 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2320 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
2321 I40E_AQ_VSI_PVLAN_EMOD_MASK))
2322 return; /* already disabled */
2323
2324 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2325 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2326 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
2327
2328 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002329 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002330 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2331 if (ret) {
2332 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002333 "update vlan stripping failed, err %s aq_err %s\n",
2334 i40e_stat_str(&vsi->back->hw, ret),
2335 i40e_aq_str(&vsi->back->hw,
2336 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002337 }
2338}
2339
2340/**
2341 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2342 * @netdev: network interface to be adjusted
2343 * @features: netdev features to test if VLAN offload is enabled or not
2344 **/
2345static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2346{
2347 struct i40e_netdev_priv *np = netdev_priv(netdev);
2348 struct i40e_vsi *vsi = np->vsi;
2349
2350 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2351 i40e_vlan_stripping_enable(vsi);
2352 else
2353 i40e_vlan_stripping_disable(vsi);
2354}
2355
2356/**
2357 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2358 * @vsi: the vsi being configured
2359 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2360 **/
2361int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2362{
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002363 struct i40e_mac_filter *f, *ftmp, *add_f;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002364 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002365
2366 is_vf = (vsi->type == I40E_VSI_SRIOV);
2367 is_netdev = !!(vsi->netdev);
2368
Kiran Patil21659032015-09-30 14:09:03 -04002369 /* Locked once because all functions invoked below iterates list*/
2370 spin_lock_bh(&vsi->mac_filter_list_lock);
2371
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002372 if (is_netdev) {
2373 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2374 is_vf, is_netdev);
2375 if (!add_f) {
2376 dev_info(&vsi->back->pdev->dev,
2377 "Could not add vlan filter %d for %pM\n",
2378 vid, vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002379 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002380 return -ENOMEM;
2381 }
2382 }
2383
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002384 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002385 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2386 if (!add_f) {
2387 dev_info(&vsi->back->pdev->dev,
2388 "Could not add vlan filter %d for %pM\n",
2389 vid, f->macaddr);
Kiran Patil21659032015-09-30 14:09:03 -04002390 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002391 return -ENOMEM;
2392 }
2393 }
2394
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002395 /* Now if we add a vlan tag, make sure to check if it is the first
2396 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2397 * with 0, so we now accept untagged and specified tagged traffic
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002398 * (and not all tags along with untagged)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002399 */
2400 if (vid > 0) {
2401 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2402 I40E_VLAN_ANY,
2403 is_vf, is_netdev)) {
2404 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2405 I40E_VLAN_ANY, is_vf, is_netdev);
2406 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2407 is_vf, is_netdev);
2408 if (!add_f) {
2409 dev_info(&vsi->back->pdev->dev,
2410 "Could not add filter 0 for %pM\n",
2411 vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002412 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002413 return -ENOMEM;
2414 }
2415 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002416 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002417
Greg Rose8d82a7c2014-01-13 16:13:04 -08002418 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2419 if (vid > 0 && !vsi->info.pvid) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002420 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Kiran Patil21659032015-09-30 14:09:03 -04002421 if (!i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2422 is_vf, is_netdev))
2423 continue;
2424 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2425 is_vf, is_netdev);
2426 add_f = i40e_add_filter(vsi, f->macaddr,
2427 0, is_vf, is_netdev);
2428 if (!add_f) {
2429 dev_info(&vsi->back->pdev->dev,
2430 "Could not add filter 0 for %pM\n",
2431 f->macaddr);
2432 spin_unlock_bh(&vsi->mac_filter_list_lock);
2433 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002434 }
2435 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002436 }
2437
Kiran Patil21659032015-09-30 14:09:03 -04002438 spin_unlock_bh(&vsi->mac_filter_list_lock);
2439
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002440 /* schedule our worker thread which will take care of
2441 * applying the new filter changes
2442 */
2443 i40e_service_event_schedule(vsi->back);
2444 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002445}
2446
2447/**
2448 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2449 * @vsi: the vsi being configured
2450 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002451 *
2452 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002453 **/
2454int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2455{
2456 struct net_device *netdev = vsi->netdev;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002457 struct i40e_mac_filter *f, *ftmp, *add_f;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002458 bool is_vf, is_netdev;
2459 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002460
2461 is_vf = (vsi->type == I40E_VSI_SRIOV);
2462 is_netdev = !!(netdev);
2463
Kiran Patil21659032015-09-30 14:09:03 -04002464 /* Locked once because all functions invoked below iterates list */
2465 spin_lock_bh(&vsi->mac_filter_list_lock);
2466
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002467 if (is_netdev)
2468 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2469
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002470 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002471 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2472
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002473 /* go through all the filters for this VSI and if there is only
2474 * vid == 0 it means there are no other filters, so vid 0 must
2475 * be replaced with -1. This signifies that we should from now
2476 * on accept any traffic (with any tag present, or untagged)
2477 */
2478 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2479 if (is_netdev) {
2480 if (f->vlan &&
2481 ether_addr_equal(netdev->dev_addr, f->macaddr))
2482 filter_count++;
2483 }
2484
2485 if (f->vlan)
2486 filter_count++;
2487 }
2488
2489 if (!filter_count && is_netdev) {
2490 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2491 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2492 is_vf, is_netdev);
2493 if (!f) {
2494 dev_info(&vsi->back->pdev->dev,
2495 "Could not add filter %d for %pM\n",
2496 I40E_VLAN_ANY, netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002497 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002498 return -ENOMEM;
2499 }
2500 }
2501
2502 if (!filter_count) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002503 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002504 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2505 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
Kiran Patil21659032015-09-30 14:09:03 -04002506 is_vf, is_netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002507 if (!add_f) {
2508 dev_info(&vsi->back->pdev->dev,
2509 "Could not add filter %d for %pM\n",
2510 I40E_VLAN_ANY, f->macaddr);
Kiran Patil21659032015-09-30 14:09:03 -04002511 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002512 return -ENOMEM;
2513 }
2514 }
2515 }
2516
Kiran Patil21659032015-09-30 14:09:03 -04002517 spin_unlock_bh(&vsi->mac_filter_list_lock);
2518
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002519 /* schedule our worker thread which will take care of
2520 * applying the new filter changes
2521 */
2522 i40e_service_event_schedule(vsi->back);
2523 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002524}
2525
2526/**
2527 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2528 * @netdev: network interface to be adjusted
2529 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002530 *
2531 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002532 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002533#ifdef I40E_FCOE
2534int i40e_vlan_rx_add_vid(struct net_device *netdev,
2535 __always_unused __be16 proto, u16 vid)
2536#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002537static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2538 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002539#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002540{
2541 struct i40e_netdev_priv *np = netdev_priv(netdev);
2542 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002543 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002544
2545 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002546 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002547
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002548 /* If the network stack called us with vid = 0 then
2549 * it is asking to receive priority tagged packets with
2550 * vlan id 0. Our HW receives them by default when configured
2551 * to receive untagged packets so there is no need to add an
2552 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002553 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002554 if (vid)
2555 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002556
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002557 if (!ret && (vid < VLAN_N_VID))
2558 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002559
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002560 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002561}
2562
2563/**
2564 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2565 * @netdev: network interface to be adjusted
2566 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002567 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002568 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002569 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002570#ifdef I40E_FCOE
2571int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2572 __always_unused __be16 proto, u16 vid)
2573#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002574static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2575 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002576#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002577{
2578 struct i40e_netdev_priv *np = netdev_priv(netdev);
2579 struct i40e_vsi *vsi = np->vsi;
2580
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002581 /* return code is ignored as there is nothing a user
2582 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002583 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002584 */
2585 i40e_vsi_kill_vlan(vsi, vid);
2586
2587 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002588
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002589 return 0;
2590}
2591
2592/**
Tushar Daveb1b15df2016-07-01 10:11:20 -07002593 * i40e_macaddr_init - explicitly write the mac address filters
2594 *
2595 * @vsi: pointer to the vsi
2596 * @macaddr: the MAC address
2597 *
2598 * This is needed when the macaddr has been obtained by other
2599 * means than the default, e.g., from Open Firmware or IDPROM.
2600 * Returns 0 on success, negative on failure
2601 **/
2602static int i40e_macaddr_init(struct i40e_vsi *vsi, u8 *macaddr)
2603{
2604 int ret;
2605 struct i40e_aqc_add_macvlan_element_data element;
2606
2607 ret = i40e_aq_mac_address_write(&vsi->back->hw,
2608 I40E_AQC_WRITE_TYPE_LAA_WOL,
2609 macaddr, NULL);
2610 if (ret) {
2611 dev_info(&vsi->back->pdev->dev,
2612 "Addr change for VSI failed: %d\n", ret);
2613 return -EADDRNOTAVAIL;
2614 }
2615
2616 memset(&element, 0, sizeof(element));
2617 ether_addr_copy(element.mac_addr, macaddr);
2618 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
2619 ret = i40e_aq_add_macvlan(&vsi->back->hw, vsi->seid, &element, 1, NULL);
2620 if (ret) {
2621 dev_info(&vsi->back->pdev->dev,
2622 "add filter failed err %s aq_err %s\n",
2623 i40e_stat_str(&vsi->back->hw, ret),
2624 i40e_aq_str(&vsi->back->hw,
2625 vsi->back->hw.aq.asq_last_status));
2626 }
2627 return ret;
2628}
2629
2630/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002631 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2632 * @vsi: the vsi being brought back up
2633 **/
2634static void i40e_restore_vlan(struct i40e_vsi *vsi)
2635{
2636 u16 vid;
2637
2638 if (!vsi->netdev)
2639 return;
2640
2641 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2642
2643 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2644 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2645 vid);
2646}
2647
2648/**
2649 * i40e_vsi_add_pvid - Add pvid for the VSI
2650 * @vsi: the vsi being adjusted
2651 * @vid: the vlan id to set as a PVID
2652 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002653int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002654{
2655 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002656 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002657
2658 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2659 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002660 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2661 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002662 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002663
2664 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002665 ctxt.info = vsi->info;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002666 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2667 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002668 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002669 "add pvid failed, err %s aq_err %s\n",
2670 i40e_stat_str(&vsi->back->hw, ret),
2671 i40e_aq_str(&vsi->back->hw,
2672 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002673 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002674 }
2675
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002676 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002677}
2678
2679/**
2680 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2681 * @vsi: the vsi being adjusted
2682 *
2683 * Just use the vlan_rx_register() service to put it back to normal
2684 **/
2685void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2686{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002687 i40e_vlan_stripping_disable(vsi);
2688
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002689 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002690}
2691
2692/**
2693 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2694 * @vsi: ptr to the VSI
2695 *
2696 * If this function returns with an error, then it's possible one or
2697 * more of the rings is populated (while the rest are not). It is the
2698 * callers duty to clean those orphaned rings.
2699 *
2700 * Return 0 on success, negative on failure
2701 **/
2702static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2703{
2704 int i, err = 0;
2705
2706 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002707 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002708
2709 return err;
2710}
2711
2712/**
2713 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2714 * @vsi: ptr to the VSI
2715 *
2716 * Free VSI's transmit software resources
2717 **/
2718static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2719{
2720 int i;
2721
Greg Rose8e9dca52013-12-18 13:45:53 +00002722 if (!vsi->tx_rings)
2723 return;
2724
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002725 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002726 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002727 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002728}
2729
2730/**
2731 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2732 * @vsi: ptr to the VSI
2733 *
2734 * If this function returns with an error, then it's possible one or
2735 * more of the rings is populated (while the rest are not). It is the
2736 * callers duty to clean those orphaned rings.
2737 *
2738 * Return 0 on success, negative on failure
2739 **/
2740static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2741{
2742 int i, err = 0;
2743
2744 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002745 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002746#ifdef I40E_FCOE
2747 i40e_fcoe_setup_ddp_resources(vsi);
2748#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002749 return err;
2750}
2751
2752/**
2753 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2754 * @vsi: ptr to the VSI
2755 *
2756 * Free all receive software resources
2757 **/
2758static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2759{
2760 int i;
2761
Greg Rose8e9dca52013-12-18 13:45:53 +00002762 if (!vsi->rx_rings)
2763 return;
2764
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002765 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002766 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002767 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002768#ifdef I40E_FCOE
2769 i40e_fcoe_free_ddp_resources(vsi);
2770#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002771}
2772
2773/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002774 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2775 * @ring: The Tx ring to configure
2776 *
2777 * This enables/disables XPS for a given Tx descriptor ring
2778 * based on the TCs enabled for the VSI that ring belongs to.
2779 **/
2780static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2781{
2782 struct i40e_vsi *vsi = ring->vsi;
2783 cpumask_var_t mask;
2784
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002785 if (!ring->q_vector || !ring->netdev)
2786 return;
2787
2788 /* Single TC mode enable XPS */
2789 if (vsi->tc_config.numtc <= 1) {
2790 if (!test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002791 netif_set_xps_queue(ring->netdev,
2792 &ring->q_vector->affinity_mask,
2793 ring->queue_index);
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002794 } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) {
2795 /* Disable XPS to allow selection based on TC */
2796 bitmap_zero(cpumask_bits(mask), nr_cpumask_bits);
2797 netif_set_xps_queue(ring->netdev, mask, ring->queue_index);
2798 free_cpumask_var(mask);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002799 }
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002800
2801 /* schedule our worker thread which will take care of
2802 * applying the new filter changes
2803 */
2804 i40e_service_event_schedule(vsi->back);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002805}
2806
2807/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002808 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2809 * @ring: The Tx ring to configure
2810 *
2811 * Configure the Tx descriptor ring in the HMC context.
2812 **/
2813static int i40e_configure_tx_ring(struct i40e_ring *ring)
2814{
2815 struct i40e_vsi *vsi = ring->vsi;
2816 u16 pf_q = vsi->base_queue + ring->queue_index;
2817 struct i40e_hw *hw = &vsi->back->hw;
2818 struct i40e_hmc_obj_txq tx_ctx;
2819 i40e_status err = 0;
2820 u32 qtx_ctl = 0;
2821
2822 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002823 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002824 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2825 ring->atr_count = 0;
2826 } else {
2827 ring->atr_sample_rate = 0;
2828 }
2829
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002830 /* configure XPS */
2831 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002832
2833 /* clear the context structure first */
2834 memset(&tx_ctx, 0, sizeof(tx_ctx));
2835
2836 tx_ctx.new_context = 1;
2837 tx_ctx.base = (ring->dma / 128);
2838 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002839 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2840 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002841#ifdef I40E_FCOE
2842 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2843#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002844 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002845 /* FDIR VSI tx ring can still use RS bit and writebacks */
2846 if (vsi->type != I40E_VSI_FDIR)
2847 tx_ctx.head_wb_ena = 1;
2848 tx_ctx.head_wb_addr = ring->dma +
2849 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002850
2851 /* As part of VSI creation/update, FW allocates certain
2852 * Tx arbitration queue sets for each TC enabled for
2853 * the VSI. The FW returns the handles to these queue
2854 * sets as part of the response buffer to Add VSI,
2855 * Update VSI, etc. AQ commands. It is expected that
2856 * these queue set handles be associated with the Tx
2857 * queues by the driver as part of the TX queue context
2858 * initialization. This has to be done regardless of
2859 * DCB as by default everything is mapped to TC0.
2860 */
2861 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2862 tx_ctx.rdylist_act = 0;
2863
2864 /* clear the context in the HMC */
2865 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2866 if (err) {
2867 dev_info(&vsi->back->pdev->dev,
2868 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2869 ring->queue_index, pf_q, err);
2870 return -ENOMEM;
2871 }
2872
2873 /* set the context in the HMC */
2874 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2875 if (err) {
2876 dev_info(&vsi->back->pdev->dev,
2877 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2878 ring->queue_index, pf_q, err);
2879 return -ENOMEM;
2880 }
2881
2882 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002883 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002884 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002885 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2886 I40E_QTX_CTL_VFVM_INDX_MASK;
2887 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002888 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002889 }
2890
Shannon Nelson13fd977492013-09-28 07:14:19 +00002891 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2892 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002893 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2894 i40e_flush(hw);
2895
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002896 /* cache tail off for easier writes later */
2897 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2898
2899 return 0;
2900}
2901
2902/**
2903 * i40e_configure_rx_ring - Configure a receive ring context
2904 * @ring: The Rx ring to configure
2905 *
2906 * Configure the Rx descriptor ring in the HMC context.
2907 **/
2908static int i40e_configure_rx_ring(struct i40e_ring *ring)
2909{
2910 struct i40e_vsi *vsi = ring->vsi;
2911 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2912 u16 pf_q = vsi->base_queue + ring->queue_index;
2913 struct i40e_hw *hw = &vsi->back->hw;
2914 struct i40e_hmc_obj_rxq rx_ctx;
2915 i40e_status err = 0;
2916
2917 ring->state = 0;
2918
2919 /* clear the context structure first */
2920 memset(&rx_ctx, 0, sizeof(rx_ctx));
2921
2922 ring->rx_buf_len = vsi->rx_buf_len;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002923
2924 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002925
2926 rx_ctx.base = (ring->dma / 128);
2927 rx_ctx.qlen = ring->count;
2928
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07002929 /* use 32 byte descriptors */
2930 rx_ctx.dsize = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002931
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07002932 /* descriptor type is always zero
2933 * rx_ctx.dtype = 0;
2934 */
Jesse Brandeburgb32bfa12016-04-18 11:33:42 -07002935 rx_ctx.hsplit_0 = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002936
Jesse Brandeburgb32bfa12016-04-18 11:33:42 -07002937 rx_ctx.rxmax = min_t(u16, vsi->max_frame, chain_len * ring->rx_buf_len);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002938 if (hw->revision_id == 0)
2939 rx_ctx.lrxqthresh = 0;
2940 else
2941 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002942 rx_ctx.crcstrip = 1;
2943 rx_ctx.l2tsel = 1;
Jesse Brandeburgc4bbac32015-09-28 11:21:48 -07002944 /* this controls whether VLAN is stripped from inner headers */
2945 rx_ctx.showiv = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07002946#ifdef I40E_FCOE
2947 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2948#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002949 /* set the prefena field to 1 because the manual says to */
2950 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002951
2952 /* clear the context in the HMC */
2953 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2954 if (err) {
2955 dev_info(&vsi->back->pdev->dev,
2956 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2957 ring->queue_index, pf_q, err);
2958 return -ENOMEM;
2959 }
2960
2961 /* set the context in the HMC */
2962 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2963 if (err) {
2964 dev_info(&vsi->back->pdev->dev,
2965 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2966 ring->queue_index, pf_q, err);
2967 return -ENOMEM;
2968 }
2969
2970 /* cache tail for quicker writes, and clear the reg before use */
2971 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2972 writel(0, ring->tail);
2973
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -07002974 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002975
2976 return 0;
2977}
2978
2979/**
2980 * i40e_vsi_configure_tx - Configure the VSI for Tx
2981 * @vsi: VSI structure describing this set of rings and resources
2982 *
2983 * Configure the Tx VSI for operation.
2984 **/
2985static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2986{
2987 int err = 0;
2988 u16 i;
2989
Alexander Duyck9f65e152013-09-28 06:00:58 +00002990 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2991 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002992
2993 return err;
2994}
2995
2996/**
2997 * i40e_vsi_configure_rx - Configure the VSI for Rx
2998 * @vsi: the VSI being configured
2999 *
3000 * Configure the Rx VSI for operation.
3001 **/
3002static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
3003{
3004 int err = 0;
3005 u16 i;
3006
3007 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
3008 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
3009 + ETH_FCS_LEN + VLAN_HLEN;
3010 else
3011 vsi->max_frame = I40E_RXBUFFER_2048;
3012
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -07003013 vsi->rx_buf_len = I40E_RXBUFFER_2048;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003014
Vasu Dev38e00432014-08-01 13:27:03 -07003015#ifdef I40E_FCOE
3016 /* setup rx buffer for FCoE */
3017 if ((vsi->type == I40E_VSI_FCOE) &&
3018 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
Vasu Dev38e00432014-08-01 13:27:03 -07003019 vsi->rx_buf_len = I40E_RXBUFFER_3072;
3020 vsi->max_frame = I40E_RXBUFFER_3072;
Vasu Dev38e00432014-08-01 13:27:03 -07003021 }
3022
3023#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003024 /* round up for the chip's needs */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003025 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04003026 BIT_ULL(I40E_RXQ_CTX_DBUFF_SHIFT));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003027
3028 /* set up individual rings */
3029 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00003030 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003031
3032 return err;
3033}
3034
3035/**
3036 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
3037 * @vsi: ptr to the VSI
3038 **/
3039static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
3040{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00003041 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003042 u16 qoffset, qcount;
3043 int i, n;
3044
Parikh, Neeravcd238a32015-02-21 06:43:37 +00003045 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
3046 /* Reset the TC information */
3047 for (i = 0; i < vsi->num_queue_pairs; i++) {
3048 rx_ring = vsi->rx_rings[i];
3049 tx_ring = vsi->tx_rings[i];
3050 rx_ring->dcb_tc = 0;
3051 tx_ring->dcb_tc = 0;
3052 }
3053 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003054
3055 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04003056 if (!(vsi->tc_config.enabled_tc & BIT_ULL(n)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003057 continue;
3058
3059 qoffset = vsi->tc_config.tc_info[n].qoffset;
3060 qcount = vsi->tc_config.tc_info[n].qcount;
3061 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00003062 rx_ring = vsi->rx_rings[i];
3063 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003064 rx_ring->dcb_tc = n;
3065 tx_ring->dcb_tc = n;
3066 }
3067 }
3068}
3069
3070/**
3071 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
3072 * @vsi: ptr to the VSI
3073 **/
3074static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
3075{
Tushar Daveb1b15df2016-07-01 10:11:20 -07003076 struct i40e_pf *pf = vsi->back;
3077 int err;
3078
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003079 if (vsi->netdev)
3080 i40e_set_rx_mode(vsi->netdev);
Tushar Daveb1b15df2016-07-01 10:11:20 -07003081
3082 if (!!(pf->flags & I40E_FLAG_PF_MAC)) {
3083 err = i40e_macaddr_init(vsi, pf->hw.mac.addr);
3084 if (err) {
3085 dev_warn(&pf->pdev->dev,
3086 "could not set up macaddr; err %d\n", err);
3087 }
3088 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003089}
3090
3091/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003092 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
3093 * @vsi: Pointer to the targeted VSI
3094 *
3095 * This function replays the hlist on the hw where all the SB Flow Director
3096 * filters were saved.
3097 **/
3098static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
3099{
3100 struct i40e_fdir_filter *filter;
3101 struct i40e_pf *pf = vsi->back;
3102 struct hlist_node *node;
3103
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003104 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
3105 return;
3106
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003107 hlist_for_each_entry_safe(filter, node,
3108 &pf->fdir_filter_list, fdir_node) {
3109 i40e_add_del_fdir(vsi, filter, true);
3110 }
3111}
3112
3113/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003114 * i40e_vsi_configure - Set up the VSI for action
3115 * @vsi: the VSI being configured
3116 **/
3117static int i40e_vsi_configure(struct i40e_vsi *vsi)
3118{
3119 int err;
3120
3121 i40e_set_vsi_rx_mode(vsi);
3122 i40e_restore_vlan(vsi);
3123 i40e_vsi_config_dcb_rings(vsi);
3124 err = i40e_vsi_configure_tx(vsi);
3125 if (!err)
3126 err = i40e_vsi_configure_rx(vsi);
3127
3128 return err;
3129}
3130
3131/**
3132 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
3133 * @vsi: the VSI being configured
3134 **/
3135static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
3136{
3137 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003138 struct i40e_hw *hw = &pf->hw;
3139 u16 vector;
3140 int i, q;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003141 u32 qp;
3142
3143 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
3144 * and PFINT_LNKLSTn registers, e.g.:
3145 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
3146 */
3147 qp = vsi->base_queue;
3148 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00003149 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003150 struct i40e_q_vector *q_vector = vsi->q_vectors[i];
3151
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003152 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003153 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[i]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003154 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3155 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
3156 q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003157 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[i]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003158 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3159 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
3160 q_vector->tx.itr);
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003161 wr32(hw, I40E_PFINT_RATEN(vector - 1),
3162 INTRL_USEC_TO_REG(vsi->int_rate_limit));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003163
3164 /* Linked list for the queuepairs assigned to this vector */
3165 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
3166 for (q = 0; q < q_vector->num_ringpairs; q++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003167 u32 val;
3168
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003169 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3170 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3171 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
3172 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
3173 (I40E_QUEUE_TYPE_TX
3174 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
3175
3176 wr32(hw, I40E_QINT_RQCTL(qp), val);
3177
3178 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3179 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3180 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3181 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
3182 (I40E_QUEUE_TYPE_RX
3183 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3184
3185 /* Terminate the linked list */
3186 if (q == (q_vector->num_ringpairs - 1))
3187 val |= (I40E_QUEUE_END_OF_LIST
3188 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3189
3190 wr32(hw, I40E_QINT_TQCTL(qp), val);
3191 qp++;
3192 }
3193 }
3194
3195 i40e_flush(hw);
3196}
3197
3198/**
3199 * i40e_enable_misc_int_causes - enable the non-queue interrupts
3200 * @hw: ptr to the hardware info
3201 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00003202static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003203{
Jacob Kellerab437b52014-12-14 01:55:08 +00003204 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003205 u32 val;
3206
3207 /* clear things first */
3208 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
3209 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
3210
3211 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
3212 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
3213 I40E_PFINT_ICR0_ENA_GRST_MASK |
3214 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
3215 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003216 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
3217 I40E_PFINT_ICR0_ENA_VFLR_MASK |
3218 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3219
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003220 if (pf->flags & I40E_FLAG_IWARP_ENABLED)
3221 val |= I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3222
Jacob Kellerab437b52014-12-14 01:55:08 +00003223 if (pf->flags & I40E_FLAG_PTP)
3224 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
3225
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003226 wr32(hw, I40E_PFINT_ICR0_ENA, val);
3227
3228 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00003229 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
3230 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003231
3232 /* OTHER_ITR_IDX = 0 */
3233 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
3234}
3235
3236/**
3237 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
3238 * @vsi: the VSI being configured
3239 **/
3240static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
3241{
Alexander Duyck493fb302013-09-28 07:01:44 +00003242 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003243 struct i40e_pf *pf = vsi->back;
3244 struct i40e_hw *hw = &pf->hw;
3245 u32 val;
3246
3247 /* set the ITR configuration */
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003248 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003249 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[0]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003250 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3251 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003252 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[0]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003253 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3254 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
3255
Jacob Kellerab437b52014-12-14 01:55:08 +00003256 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003257
3258 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
3259 wr32(hw, I40E_PFINT_LNKLST0, 0);
3260
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00003261 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003262 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3263 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3264 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3265
3266 wr32(hw, I40E_QINT_RQCTL(0), val);
3267
3268 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3269 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3270 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3271
3272 wr32(hw, I40E_QINT_TQCTL(0), val);
3273 i40e_flush(hw);
3274}
3275
3276/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00003277 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
3278 * @pf: board private structure
3279 **/
3280void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
3281{
3282 struct i40e_hw *hw = &pf->hw;
3283
3284 wr32(hw, I40E_PFINT_DYN_CTL0,
3285 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
3286 i40e_flush(hw);
3287}
3288
3289/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003290 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
3291 * @pf: board private structure
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003292 * @clearpba: true when all pending interrupt events should be cleared
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003293 **/
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003294void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf, bool clearpba)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003295{
3296 struct i40e_hw *hw = &pf->hw;
3297 u32 val;
3298
3299 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003300 (clearpba ? I40E_PFINT_DYN_CTL0_CLEARPBA_MASK : 0) |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003301 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
3302
3303 wr32(hw, I40E_PFINT_DYN_CTL0, val);
3304 i40e_flush(hw);
3305}
3306
3307/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003308 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
3309 * @irq: interrupt number
3310 * @data: pointer to a q_vector
3311 **/
3312static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
3313{
3314 struct i40e_q_vector *q_vector = data;
3315
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003316 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003317 return IRQ_HANDLED;
3318
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003319 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003320
3321 return IRQ_HANDLED;
3322}
3323
3324/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003325 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
3326 * @vsi: the VSI being configured
3327 * @basename: name for the vector
3328 *
3329 * Allocates MSI-X vectors and requests interrupts from the kernel.
3330 **/
3331static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
3332{
3333 int q_vectors = vsi->num_q_vectors;
3334 struct i40e_pf *pf = vsi->back;
3335 int base = vsi->base_vector;
3336 int rx_int_idx = 0;
3337 int tx_int_idx = 0;
3338 int vector, err;
3339
3340 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00003341 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003342
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003343 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003344 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3345 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3346 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003347 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003348 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3349 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003350 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003351 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3352 "%s-%s-%d", basename, "tx", tx_int_idx++);
3353 } else {
3354 /* skip this unused q_vector */
3355 continue;
3356 }
3357 err = request_irq(pf->msix_entries[base + vector].vector,
3358 vsi->irq_handler,
3359 0,
3360 q_vector->name,
3361 q_vector);
3362 if (err) {
3363 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003364 "MSIX request_irq failed, error: %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003365 goto free_queue_irqs;
3366 }
3367 /* assign the mask for this irq */
3368 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3369 &q_vector->affinity_mask);
3370 }
3371
Shannon Nelson63741842014-04-23 04:50:16 +00003372 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003373 return 0;
3374
3375free_queue_irqs:
3376 while (vector) {
3377 vector--;
3378 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3379 NULL);
3380 free_irq(pf->msix_entries[base + vector].vector,
3381 &(vsi->q_vectors[vector]));
3382 }
3383 return err;
3384}
3385
3386/**
3387 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3388 * @vsi: the VSI being un-configured
3389 **/
3390static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3391{
3392 struct i40e_pf *pf = vsi->back;
3393 struct i40e_hw *hw = &pf->hw;
3394 int base = vsi->base_vector;
3395 int i;
3396
3397 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00003398 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3399 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003400 }
3401
3402 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3403 for (i = vsi->base_vector;
3404 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3405 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3406
3407 i40e_flush(hw);
3408 for (i = 0; i < vsi->num_q_vectors; i++)
3409 synchronize_irq(pf->msix_entries[i + base].vector);
3410 } else {
3411 /* Legacy and MSI mode - this stops all interrupt handling */
3412 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3413 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3414 i40e_flush(hw);
3415 synchronize_irq(pf->pdev->irq);
3416 }
3417}
3418
3419/**
3420 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3421 * @vsi: the VSI being configured
3422 **/
3423static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3424{
3425 struct i40e_pf *pf = vsi->back;
3426 int i;
3427
3428 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Jesse Brandeburg78455482015-07-23 16:54:41 -04003429 for (i = 0; i < vsi->num_q_vectors; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003430 i40e_irq_dynamic_enable(vsi, i);
3431 } else {
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003432 i40e_irq_dynamic_enable_icr0(pf, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003433 }
3434
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003435 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003436 return 0;
3437}
3438
3439/**
3440 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3441 * @pf: board private structure
3442 **/
3443static void i40e_stop_misc_vector(struct i40e_pf *pf)
3444{
3445 /* Disable ICR 0 */
3446 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3447 i40e_flush(&pf->hw);
3448}
3449
3450/**
3451 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3452 * @irq: interrupt number
3453 * @data: pointer to a q_vector
3454 *
3455 * This is the handler used for all MSI/Legacy interrupts, and deals
3456 * with both queue and non-queue interrupts. This is also used in
3457 * MSIX mode to handle the non-queue interrupts.
3458 **/
3459static irqreturn_t i40e_intr(int irq, void *data)
3460{
3461 struct i40e_pf *pf = (struct i40e_pf *)data;
3462 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003463 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003464 u32 icr0, icr0_remaining;
3465 u32 val, ena_mask;
3466
3467 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003468 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003469
Shannon Nelson116a57d2013-09-28 07:13:59 +00003470 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3471 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003472 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003473
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003474 /* if interrupt but no bits showing, must be SWINT */
3475 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3476 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3477 pf->sw_int_count++;
3478
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003479 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
3480 (ena_mask & I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK)) {
3481 ena_mask &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3482 icr0 &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3483 dev_info(&pf->pdev->dev, "cleared PE_CRITERR\n");
3484 }
3485
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003486 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3487 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003488 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
3489 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003490
Anjali Singhai Jaina16ae2d2016-01-15 14:33:16 -08003491 /* We do not have a way to disarm Queue causes while leaving
3492 * interrupt enabled for all other causes, ideally
3493 * interrupt should be disabled while we are in NAPI but
3494 * this is not a performance path and napi_schedule()
3495 * can deal with rescheduling.
3496 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003497 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003498 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003499 }
3500
3501 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3502 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3503 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08003504 i40e_debug(&pf->hw, I40E_DEBUG_NVM, "AdminQ event\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003505 }
3506
3507 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3508 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3509 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3510 }
3511
3512 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3513 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3514 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3515 }
3516
3517 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3518 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3519 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3520 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3521 val = rd32(hw, I40E_GLGEN_RSTAT);
3522 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3523 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003524 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003525 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003526 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003527 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003528 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003529 pf->empr_count++;
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00003530 set_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003531 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003532 }
3533
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003534 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3535 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3536 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
Anjali Singhai Jain25fc0e62015-03-31 00:45:01 -07003537 dev_info(&pf->pdev->dev, "HMC error info 0x%x, HMC error data 0x%x\n",
3538 rd32(hw, I40E_PFHMC_ERRORINFO),
3539 rd32(hw, I40E_PFHMC_ERRORDATA));
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003540 }
3541
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003542 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3543 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3544
3545 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003546 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003547 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003548 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003549 }
3550
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003551 /* If a critical error is pending we have no choice but to reset the
3552 * device.
3553 * Report and mask out any remaining unexpected interrupts.
3554 */
3555 icr0_remaining = icr0 & ena_mask;
3556 if (icr0_remaining) {
3557 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3558 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003559 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003560 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003561 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003562 dev_info(&pf->pdev->dev, "device will be reset\n");
3563 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3564 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003565 }
3566 ena_mask &= ~icr0_remaining;
3567 }
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003568 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003569
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003570enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003571 /* re-enable interrupt causes */
3572 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003573 if (!test_bit(__I40E_DOWN, &pf->state)) {
3574 i40e_service_event_schedule(pf);
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003575 i40e_irq_dynamic_enable_icr0(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003576 }
3577
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003578 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003579}
3580
3581/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003582 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3583 * @tx_ring: tx ring to clean
3584 * @budget: how many cleans we're allowed
3585 *
3586 * Returns true if there's any budget left (e.g. the clean is finished)
3587 **/
3588static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3589{
3590 struct i40e_vsi *vsi = tx_ring->vsi;
3591 u16 i = tx_ring->next_to_clean;
3592 struct i40e_tx_buffer *tx_buf;
3593 struct i40e_tx_desc *tx_desc;
3594
3595 tx_buf = &tx_ring->tx_bi[i];
3596 tx_desc = I40E_TX_DESC(tx_ring, i);
3597 i -= tx_ring->count;
3598
3599 do {
3600 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3601
3602 /* if next_to_watch is not set then there is no work pending */
3603 if (!eop_desc)
3604 break;
3605
3606 /* prevent any other reads prior to eop_desc */
3607 read_barrier_depends();
3608
3609 /* if the descriptor isn't done, no work yet to do */
3610 if (!(eop_desc->cmd_type_offset_bsz &
3611 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3612 break;
3613
3614 /* clear next_to_watch to prevent false hangs */
3615 tx_buf->next_to_watch = NULL;
3616
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003617 tx_desc->buffer_addr = 0;
3618 tx_desc->cmd_type_offset_bsz = 0;
3619 /* move past filter desc */
3620 tx_buf++;
3621 tx_desc++;
3622 i++;
3623 if (unlikely(!i)) {
3624 i -= tx_ring->count;
3625 tx_buf = tx_ring->tx_bi;
3626 tx_desc = I40E_TX_DESC(tx_ring, 0);
3627 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003628 /* unmap skb header data */
3629 dma_unmap_single(tx_ring->dev,
3630 dma_unmap_addr(tx_buf, dma),
3631 dma_unmap_len(tx_buf, len),
3632 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003633 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3634 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003635
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003636 tx_buf->raw_buf = NULL;
3637 tx_buf->tx_flags = 0;
3638 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003639 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003640 tx_desc->buffer_addr = 0;
3641 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003642
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003643 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003644 tx_buf++;
3645 tx_desc++;
3646 i++;
3647 if (unlikely(!i)) {
3648 i -= tx_ring->count;
3649 tx_buf = tx_ring->tx_bi;
3650 tx_desc = I40E_TX_DESC(tx_ring, 0);
3651 }
3652
3653 /* update budget accounting */
3654 budget--;
3655 } while (likely(budget));
3656
3657 i += tx_ring->count;
3658 tx_ring->next_to_clean = i;
3659
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003660 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED)
Jesse Brandeburg78455482015-07-23 16:54:41 -04003661 i40e_irq_dynamic_enable(vsi, tx_ring->q_vector->v_idx);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003662
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003663 return budget > 0;
3664}
3665
3666/**
3667 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3668 * @irq: interrupt number
3669 * @data: pointer to a q_vector
3670 **/
3671static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3672{
3673 struct i40e_q_vector *q_vector = data;
3674 struct i40e_vsi *vsi;
3675
3676 if (!q_vector->tx.ring)
3677 return IRQ_HANDLED;
3678
3679 vsi = q_vector->tx.ring->vsi;
3680 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3681
3682 return IRQ_HANDLED;
3683}
3684
3685/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003686 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003687 * @vsi: the VSI being configured
3688 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003689 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003690 **/
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003691static void i40e_map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003692{
Alexander Duyck493fb302013-09-28 07:01:44 +00003693 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e152013-09-28 06:00:58 +00003694 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3695 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003696
3697 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003698 tx_ring->next = q_vector->tx.ring;
3699 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003700 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003701
3702 rx_ring->q_vector = q_vector;
3703 rx_ring->next = q_vector->rx.ring;
3704 q_vector->rx.ring = rx_ring;
3705 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003706}
3707
3708/**
3709 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3710 * @vsi: the VSI being configured
3711 *
3712 * This function maps descriptor rings to the queue-specific vectors
3713 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3714 * one vector per queue pair, but on a constrained vector budget, we
3715 * group the queue pairs as "efficiently" as possible.
3716 **/
3717static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3718{
3719 int qp_remaining = vsi->num_queue_pairs;
3720 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003721 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003722 int v_start = 0;
3723 int qp_idx = 0;
3724
3725 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3726 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003727 * It is also important to go through all the vectors available to be
3728 * sure that if we don't use all the vectors, that the remaining vectors
3729 * are cleared. This is especially important when decreasing the
3730 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003731 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003732 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003733 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3734
3735 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3736
3737 q_vector->num_ringpairs = num_ringpairs;
3738
3739 q_vector->rx.count = 0;
3740 q_vector->tx.count = 0;
3741 q_vector->rx.ring = NULL;
3742 q_vector->tx.ring = NULL;
3743
3744 while (num_ringpairs--) {
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003745 i40e_map_vector_to_qp(vsi, v_start, qp_idx);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003746 qp_idx++;
3747 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003748 }
3749 }
3750}
3751
3752/**
3753 * i40e_vsi_request_irq - Request IRQ from the OS
3754 * @vsi: the VSI being configured
3755 * @basename: name for the vector
3756 **/
3757static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3758{
3759 struct i40e_pf *pf = vsi->back;
3760 int err;
3761
3762 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3763 err = i40e_vsi_request_irq_msix(vsi, basename);
3764 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3765 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003766 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003767 else
3768 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003769 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003770
3771 if (err)
3772 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3773
3774 return err;
3775}
3776
3777#ifdef CONFIG_NET_POLL_CONTROLLER
3778/**
Jesse Brandeburgd89d9672016-01-04 10:33:02 -08003779 * i40e_netpoll - A Polling 'interrupt' handler
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003780 * @netdev: network interface device structure
3781 *
3782 * This is used by netconsole to send skbs without having to re-enable
3783 * interrupts. It's not called while the normal interrupt routine is executing.
3784 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003785#ifdef I40E_FCOE
3786void i40e_netpoll(struct net_device *netdev)
3787#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003788static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003789#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003790{
3791 struct i40e_netdev_priv *np = netdev_priv(netdev);
3792 struct i40e_vsi *vsi = np->vsi;
3793 struct i40e_pf *pf = vsi->back;
3794 int i;
3795
3796 /* if interface is down do nothing */
3797 if (test_bit(__I40E_DOWN, &vsi->state))
3798 return;
3799
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003800 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3801 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003802 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003803 } else {
3804 i40e_intr(pf->pdev->irq, netdev);
3805 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003806}
3807#endif
3808
3809/**
Neerav Parikh23527302014-06-03 23:50:15 +00003810 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3811 * @pf: the PF being configured
3812 * @pf_q: the PF queue
3813 * @enable: enable or disable state of the queue
3814 *
3815 * This routine will wait for the given Tx queue of the PF to reach the
3816 * enabled or disabled state.
3817 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3818 * multiple retries; else will return 0 in case of success.
3819 **/
3820static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3821{
3822 int i;
3823 u32 tx_reg;
3824
3825 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3826 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3827 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3828 break;
3829
Neerav Parikhf98a2002014-09-13 07:40:44 +00003830 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003831 }
3832 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3833 return -ETIMEDOUT;
3834
3835 return 0;
3836}
3837
3838/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003839 * i40e_vsi_control_tx - Start or stop a VSI's rings
3840 * @vsi: the VSI being configured
3841 * @enable: start or stop the rings
3842 **/
3843static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3844{
3845 struct i40e_pf *pf = vsi->back;
3846 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003847 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003848 u32 tx_reg;
3849
3850 pf_q = vsi->base_queue;
3851 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499ab2014-04-23 04:50:03 +00003852
3853 /* warn the TX unit of coming changes */
3854 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3855 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003856 usleep_range(10, 20);
Matt Jared351499ab2014-04-23 04:50:03 +00003857
Mitch Williams6c5ef622014-02-20 19:29:16 -08003858 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003859 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003860 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3861 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3862 break;
3863 usleep_range(1000, 2000);
3864 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003865 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c1220072014-03-14 07:32:29 +00003866 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003867 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003868
3869 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003870 if (enable) {
3871 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003872 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003873 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003874 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003875 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003876
3877 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003878 /* No waiting for the Tx queue to disable */
3879 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3880 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003881
3882 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003883 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3884 if (ret) {
3885 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003886 "VSI seid %d Tx ring %d %sable timeout\n",
3887 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003888 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003889 }
3890 }
3891
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003892 if (hw->revision_id == 0)
3893 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003894 return ret;
3895}
3896
3897/**
3898 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3899 * @pf: the PF being configured
3900 * @pf_q: the PF queue
3901 * @enable: enable or disable state of the queue
3902 *
3903 * This routine will wait for the given Rx queue of the PF to reach the
3904 * enabled or disabled state.
3905 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3906 * multiple retries; else will return 0 in case of success.
3907 **/
3908static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3909{
3910 int i;
3911 u32 rx_reg;
3912
3913 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3914 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3915 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3916 break;
3917
Neerav Parikhf98a2002014-09-13 07:40:44 +00003918 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003919 }
3920 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3921 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003922
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003923 return 0;
3924}
3925
3926/**
3927 * i40e_vsi_control_rx - Start or stop a VSI's rings
3928 * @vsi: the VSI being configured
3929 * @enable: start or stop the rings
3930 **/
3931static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3932{
3933 struct i40e_pf *pf = vsi->back;
3934 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003935 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003936 u32 rx_reg;
3937
3938 pf_q = vsi->base_queue;
3939 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003940 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003941 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003942 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3943 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3944 break;
3945 usleep_range(1000, 2000);
3946 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003947
Catherine Sullivan7c1220072014-03-14 07:32:29 +00003948 /* Skip if the queue is already in the requested state */
3949 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3950 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003951
3952 /* turn on/off the queue */
3953 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003954 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003955 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003956 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003957 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
Neerav Parikh3fe06f42016-02-17 16:12:15 -08003958 /* No waiting for the Tx queue to disable */
3959 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3960 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003961
3962 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003963 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3964 if (ret) {
3965 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003966 "VSI seid %d Rx ring %d %sable timeout\n",
3967 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003968 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003969 }
3970 }
3971
Neerav Parikh23527302014-06-03 23:50:15 +00003972 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003973}
3974
3975/**
3976 * i40e_vsi_control_rings - Start or stop a VSI's rings
3977 * @vsi: the VSI being configured
3978 * @enable: start or stop the rings
3979 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003980int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003981{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003982 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003983
3984 /* do rx first for enable and last for disable */
3985 if (request) {
3986 ret = i40e_vsi_control_rx(vsi, request);
3987 if (ret)
3988 return ret;
3989 ret = i40e_vsi_control_tx(vsi, request);
3990 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003991 /* Ignore return value, we need to shutdown whatever we can */
3992 i40e_vsi_control_tx(vsi, request);
3993 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003994 }
3995
3996 return ret;
3997}
3998
3999/**
4000 * i40e_vsi_free_irq - Free the irq association with the OS
4001 * @vsi: the VSI being configured
4002 **/
4003static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
4004{
4005 struct i40e_pf *pf = vsi->back;
4006 struct i40e_hw *hw = &pf->hw;
4007 int base = vsi->base_vector;
4008 u32 val, qp;
4009 int i;
4010
4011 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4012 if (!vsi->q_vectors)
4013 return;
4014
Shannon Nelson63741842014-04-23 04:50:16 +00004015 if (!vsi->irqs_ready)
4016 return;
4017
4018 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004019 for (i = 0; i < vsi->num_q_vectors; i++) {
4020 u16 vector = i + base;
4021
4022 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00004023 if (!vsi->q_vectors[i] ||
4024 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004025 continue;
4026
4027 /* clear the affinity_mask in the IRQ descriptor */
4028 irq_set_affinity_hint(pf->msix_entries[vector].vector,
4029 NULL);
Greg Roseb33d3b72016-05-16 10:26:37 -07004030 synchronize_irq(pf->msix_entries[vector].vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004031 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00004032 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004033
4034 /* Tear down the interrupt queue link list
4035 *
4036 * We know that they come in pairs and always
4037 * the Rx first, then the Tx. To clear the
4038 * link list, stick the EOL value into the
4039 * next_q field of the registers.
4040 */
4041 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
4042 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4043 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4044 val |= I40E_QUEUE_END_OF_LIST
4045 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4046 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
4047
4048 while (qp != I40E_QUEUE_END_OF_LIST) {
4049 u32 next;
4050
4051 val = rd32(hw, I40E_QINT_RQCTL(qp));
4052
4053 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4054 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4055 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4056 I40E_QINT_RQCTL_INTEVENT_MASK);
4057
4058 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4059 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4060
4061 wr32(hw, I40E_QINT_RQCTL(qp), val);
4062
4063 val = rd32(hw, I40E_QINT_TQCTL(qp));
4064
4065 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
4066 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
4067
4068 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4069 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4070 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4071 I40E_QINT_TQCTL_INTEVENT_MASK);
4072
4073 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4074 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4075
4076 wr32(hw, I40E_QINT_TQCTL(qp), val);
4077 qp = next;
4078 }
4079 }
4080 } else {
4081 free_irq(pf->pdev->irq, pf);
4082
4083 val = rd32(hw, I40E_PFINT_LNKLST0);
4084 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4085 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4086 val |= I40E_QUEUE_END_OF_LIST
4087 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
4088 wr32(hw, I40E_PFINT_LNKLST0, val);
4089
4090 val = rd32(hw, I40E_QINT_RQCTL(qp));
4091 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4092 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4093 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4094 I40E_QINT_RQCTL_INTEVENT_MASK);
4095
4096 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4097 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4098
4099 wr32(hw, I40E_QINT_RQCTL(qp), val);
4100
4101 val = rd32(hw, I40E_QINT_TQCTL(qp));
4102
4103 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4104 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4105 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4106 I40E_QINT_TQCTL_INTEVENT_MASK);
4107
4108 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4109 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4110
4111 wr32(hw, I40E_QINT_TQCTL(qp), val);
4112 }
4113}
4114
4115/**
Alexander Duyck493fb302013-09-28 07:01:44 +00004116 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
4117 * @vsi: the VSI being configured
4118 * @v_idx: Index of vector to be freed
4119 *
4120 * This function frees the memory allocated to the q_vector. In addition if
4121 * NAPI is enabled it will delete any references to the NAPI struct prior
4122 * to freeing the q_vector.
4123 **/
4124static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
4125{
4126 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004127 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00004128
4129 if (!q_vector)
4130 return;
4131
4132 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004133 i40e_for_each_ring(ring, q_vector->tx)
4134 ring->q_vector = NULL;
4135
4136 i40e_for_each_ring(ring, q_vector->rx)
4137 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00004138
4139 /* only VSI w/ an associated netdev is set up w/ NAPI */
4140 if (vsi->netdev)
4141 netif_napi_del(&q_vector->napi);
4142
4143 vsi->q_vectors[v_idx] = NULL;
4144
4145 kfree_rcu(q_vector, rcu);
4146}
4147
4148/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004149 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
4150 * @vsi: the VSI being un-configured
4151 *
4152 * This frees the memory allocated to the q_vectors and
4153 * deletes references to the NAPI struct.
4154 **/
4155static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
4156{
4157 int v_idx;
4158
Alexander Duyck493fb302013-09-28 07:01:44 +00004159 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
4160 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004161}
4162
4163/**
4164 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
4165 * @pf: board private structure
4166 **/
4167static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
4168{
4169 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
4170 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4171 pci_disable_msix(pf->pdev);
4172 kfree(pf->msix_entries);
4173 pf->msix_entries = NULL;
Shannon Nelson3b444392015-02-26 16:15:57 +00004174 kfree(pf->irq_pile);
4175 pf->irq_pile = NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004176 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
4177 pci_disable_msi(pf->pdev);
4178 }
4179 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
4180}
4181
4182/**
4183 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
4184 * @pf: board private structure
4185 *
4186 * We go through and clear interrupt specific resources and reset the structure
4187 * to pre-load conditions
4188 **/
4189static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
4190{
4191 int i;
4192
Shannon Nelsone1477582015-02-21 06:44:33 +00004193 i40e_stop_misc_vector(pf);
Shannon Nelson69278392016-03-10 14:59:43 -08004194 if (pf->flags & I40E_FLAG_MSIX_ENABLED && pf->msix_entries) {
Shannon Nelsone1477582015-02-21 06:44:33 +00004195 synchronize_irq(pf->msix_entries[0].vector);
4196 free_irq(pf->msix_entries[0].vector, pf);
4197 }
4198
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004199 i40e_put_lump(pf->irq_pile, pf->iwarp_base_vector,
4200 I40E_IWARP_IRQ_PILE_ID);
4201
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004202 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00004203 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004204 if (pf->vsi[i])
4205 i40e_vsi_free_q_vectors(pf->vsi[i]);
4206 i40e_reset_interrupt_capability(pf);
4207}
4208
4209/**
4210 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
4211 * @vsi: the VSI being configured
4212 **/
4213static void i40e_napi_enable_all(struct i40e_vsi *vsi)
4214{
4215 int q_idx;
4216
4217 if (!vsi->netdev)
4218 return;
4219
4220 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004221 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004222}
4223
4224/**
4225 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
4226 * @vsi: the VSI being configured
4227 **/
4228static void i40e_napi_disable_all(struct i40e_vsi *vsi)
4229{
4230 int q_idx;
4231
4232 if (!vsi->netdev)
4233 return;
4234
4235 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004236 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004237}
4238
4239/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004240 * i40e_vsi_close - Shut down a VSI
4241 * @vsi: the vsi to be quelled
4242 **/
4243static void i40e_vsi_close(struct i40e_vsi *vsi)
4244{
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004245 bool reset = false;
4246
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004247 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
4248 i40e_down(vsi);
4249 i40e_vsi_free_irq(vsi);
4250 i40e_vsi_free_tx_resources(vsi);
4251 i40e_vsi_free_rx_resources(vsi);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04004252 vsi->current_netdev_flags = 0;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004253 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4254 reset = true;
4255 i40e_notify_client_of_netdev_close(vsi, reset);
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004256}
4257
4258/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004259 * i40e_quiesce_vsi - Pause a given VSI
4260 * @vsi: the VSI being paused
4261 **/
4262static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
4263{
4264 if (test_bit(__I40E_DOWN, &vsi->state))
4265 return;
4266
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004267 /* No need to disable FCoE VSI when Tx suspended */
4268 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
4269 vsi->type == I40E_VSI_FCOE) {
4270 dev_dbg(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004271 "VSI seid %d skipping FCoE VSI disable\n", vsi->seid);
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004272 return;
4273 }
4274
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004275 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004276 if (vsi->netdev && netif_running(vsi->netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004277 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004278 else
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004279 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004280}
4281
4282/**
4283 * i40e_unquiesce_vsi - Resume a given VSI
4284 * @vsi: the VSI being resumed
4285 **/
4286static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
4287{
4288 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
4289 return;
4290
4291 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
4292 if (vsi->netdev && netif_running(vsi->netdev))
4293 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
4294 else
Shannon Nelson8276f752014-03-14 07:32:27 +00004295 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004296}
4297
4298/**
4299 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
4300 * @pf: the PF
4301 **/
4302static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
4303{
4304 int v;
4305
Mitch Williams505682c2014-05-20 08:01:37 +00004306 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004307 if (pf->vsi[v])
4308 i40e_quiesce_vsi(pf->vsi[v]);
4309 }
4310}
4311
4312/**
4313 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
4314 * @pf: the PF
4315 **/
4316static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
4317{
4318 int v;
4319
Mitch Williams505682c2014-05-20 08:01:37 +00004320 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004321 if (pf->vsi[v])
4322 i40e_unquiesce_vsi(pf->vsi[v]);
4323 }
4324}
4325
Neerav Parikh69129dc2014-11-12 00:18:46 +00004326#ifdef CONFIG_I40E_DCB
4327/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004328 * i40e_vsi_wait_queues_disabled - Wait for VSI's queues to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004329 * @vsi: the VSI being configured
4330 *
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004331 * This function waits for the given VSI's queues to be disabled.
Neerav Parikh69129dc2014-11-12 00:18:46 +00004332 **/
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004333static int i40e_vsi_wait_queues_disabled(struct i40e_vsi *vsi)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004334{
4335 struct i40e_pf *pf = vsi->back;
4336 int i, pf_q, ret;
4337
4338 pf_q = vsi->base_queue;
4339 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4340 /* Check and wait for the disable status of the queue */
4341 ret = i40e_pf_txq_wait(pf, pf_q, false);
4342 if (ret) {
4343 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004344 "VSI seid %d Tx ring %d disable timeout\n",
4345 vsi->seid, pf_q);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004346 return ret;
4347 }
4348 }
4349
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004350 pf_q = vsi->base_queue;
4351 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4352 /* Check and wait for the disable status of the queue */
4353 ret = i40e_pf_rxq_wait(pf, pf_q, false);
4354 if (ret) {
4355 dev_info(&pf->pdev->dev,
4356 "VSI seid %d Rx ring %d disable timeout\n",
4357 vsi->seid, pf_q);
4358 return ret;
4359 }
4360 }
4361
Neerav Parikh69129dc2014-11-12 00:18:46 +00004362 return 0;
4363}
4364
4365/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004366 * i40e_pf_wait_queues_disabled - Wait for all queues of PF VSIs to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004367 * @pf: the PF
4368 *
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004369 * This function waits for the queues to be in disabled state for all the
Neerav Parikh69129dc2014-11-12 00:18:46 +00004370 * VSIs that are managed by this PF.
4371 **/
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004372static int i40e_pf_wait_queues_disabled(struct i40e_pf *pf)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004373{
4374 int v, ret = 0;
4375
4376 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004377 /* No need to wait for FCoE VSI queues */
4378 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004379 ret = i40e_vsi_wait_queues_disabled(pf->vsi[v]);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004380 if (ret)
4381 break;
4382 }
4383 }
4384
4385 return ret;
4386}
4387
4388#endif
Kiran Patilb03a8c12015-09-24 18:13:15 -04004389
4390/**
4391 * i40e_detect_recover_hung_queue - Function to detect and recover hung_queue
4392 * @q_idx: TX queue number
4393 * @vsi: Pointer to VSI struct
4394 *
4395 * This function checks specified queue for given VSI. Detects hung condition.
4396 * Sets hung bit since it is two step process. Before next run of service task
4397 * if napi_poll runs, it reset 'hung' bit for respective q_vector. If not,
4398 * hung condition remain unchanged and during subsequent run, this function
4399 * issues SW interrupt to recover from hung condition.
4400 **/
4401static void i40e_detect_recover_hung_queue(int q_idx, struct i40e_vsi *vsi)
4402{
4403 struct i40e_ring *tx_ring = NULL;
4404 struct i40e_pf *pf;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004405 u32 head, val, tx_pending_hw;
Kiran Patilb03a8c12015-09-24 18:13:15 -04004406 int i;
4407
4408 pf = vsi->back;
4409
4410 /* now that we have an index, find the tx_ring struct */
4411 for (i = 0; i < vsi->num_queue_pairs; i++) {
4412 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
4413 if (q_idx == vsi->tx_rings[i]->queue_index) {
4414 tx_ring = vsi->tx_rings[i];
4415 break;
4416 }
4417 }
4418 }
4419
4420 if (!tx_ring)
4421 return;
4422
4423 /* Read interrupt register */
4424 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4425 val = rd32(&pf->hw,
4426 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
4427 tx_ring->vsi->base_vector - 1));
4428 else
4429 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
4430
4431 head = i40e_get_head(tx_ring);
4432
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004433 tx_pending_hw = i40e_get_tx_pending(tx_ring, false);
Kiran Patilb03a8c12015-09-24 18:13:15 -04004434
Kiran Patil9c6c1252015-11-06 15:26:02 -08004435 /* HW is done executing descriptors, updated HEAD write back,
4436 * but SW hasn't processed those descriptors. If interrupt is
4437 * not generated from this point ON, it could result into
4438 * dev_watchdog detecting timeout on those netdev_queue,
4439 * hence proactively trigger SW interrupt.
Kiran Patilb03a8c12015-09-24 18:13:15 -04004440 */
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004441 if (tx_pending_hw && (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK))) {
Kiran Patil9c6c1252015-11-06 15:26:02 -08004442 /* NAPI Poll didn't run and clear since it was set */
4443 if (test_and_clear_bit(I40E_Q_VECTOR_HUNG_DETECT,
4444 &tx_ring->q_vector->hung_detected)) {
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004445 netdev_info(vsi->netdev, "VSI_seid %d, Hung TX queue %d, tx_pending_hw: %d, NTC:0x%x, HWB: 0x%x, NTU: 0x%x, TAIL: 0x%x\n",
4446 vsi->seid, q_idx, tx_pending_hw,
Kiran Patil9c6c1252015-11-06 15:26:02 -08004447 tx_ring->next_to_clean, head,
4448 tx_ring->next_to_use,
4449 readl(tx_ring->tail));
4450 netdev_info(vsi->netdev, "VSI_seid %d, Issuing force_wb for TX queue %d, Interrupt Reg: 0x%x\n",
4451 vsi->seid, q_idx, val);
4452 i40e_force_wb(vsi, tx_ring->q_vector);
4453 } else {
4454 /* First Chance - detected possible hung */
4455 set_bit(I40E_Q_VECTOR_HUNG_DETECT,
4456 &tx_ring->q_vector->hung_detected);
4457 }
4458 }
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004459
4460 /* This is the case where we have interrupts missing,
4461 * so the tx_pending in HW will most likely be 0, but we
4462 * will have tx_pending in SW since the WB happened but the
4463 * interrupt got lost.
4464 */
4465 if ((!tx_pending_hw) && i40e_get_tx_pending(tx_ring, true) &&
4466 (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK))) {
4467 if (napi_reschedule(&tx_ring->q_vector->napi))
4468 tx_ring->tx_stats.tx_lost_interrupt++;
4469 }
Kiran Patilb03a8c12015-09-24 18:13:15 -04004470}
4471
4472/**
4473 * i40e_detect_recover_hung - Function to detect and recover hung_queues
4474 * @pf: pointer to PF struct
4475 *
4476 * LAN VSI has netdev and netdev has TX queues. This function is to check
4477 * each of those TX queues if they are hung, trigger recovery by issuing
4478 * SW interrupt.
4479 **/
4480static void i40e_detect_recover_hung(struct i40e_pf *pf)
4481{
4482 struct net_device *netdev;
4483 struct i40e_vsi *vsi;
4484 int i;
4485
4486 /* Only for LAN VSI */
4487 vsi = pf->vsi[pf->lan_vsi];
4488
4489 if (!vsi)
4490 return;
4491
4492 /* Make sure, VSI state is not DOWN/RECOVERY_PENDING */
4493 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
4494 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4495 return;
4496
4497 /* Make sure type is MAIN VSI */
4498 if (vsi->type != I40E_VSI_MAIN)
4499 return;
4500
4501 netdev = vsi->netdev;
4502 if (!netdev)
4503 return;
4504
4505 /* Bail out if netif_carrier is not OK */
4506 if (!netif_carrier_ok(netdev))
4507 return;
4508
4509 /* Go thru' TX queues for netdev */
4510 for (i = 0; i < netdev->num_tx_queues; i++) {
4511 struct netdev_queue *q;
4512
4513 q = netdev_get_tx_queue(netdev, i);
4514 if (q)
4515 i40e_detect_recover_hung_queue(i, vsi);
4516 }
4517}
4518
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004519/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004520 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00004521 * @pf: pointer to PF
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004522 *
4523 * Get TC map for ISCSI PF type that will include iSCSI TC
4524 * and LAN TC.
4525 **/
4526static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4527{
4528 struct i40e_dcb_app_priority_table app;
4529 struct i40e_hw *hw = &pf->hw;
4530 u8 enabled_tc = 1; /* TC0 is always enabled */
4531 u8 tc, i;
4532 /* Get the iSCSI APP TLV */
4533 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4534
4535 for (i = 0; i < dcbcfg->numapps; i++) {
4536 app = dcbcfg->app[i];
4537 if (app.selector == I40E_APP_SEL_TCPIP &&
4538 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4539 tc = dcbcfg->etscfg.prioritytable[app.priority];
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004540 enabled_tc |= BIT(tc);
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004541 break;
4542 }
4543 }
4544
4545 return enabled_tc;
4546}
4547
4548/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004549 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4550 * @dcbcfg: the corresponding DCBx configuration structure
4551 *
4552 * Return the number of TCs from given DCBx configuration
4553 **/
4554static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4555{
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004556 int i, tc_unused = 0;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004557 u8 num_tc = 0;
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004558 u8 ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004559
4560 /* Scan the ETS Config Priority Table to find
4561 * traffic class enabled for a given priority
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004562 * and create a bitmask of enabled TCs
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004563 */
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004564 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++)
4565 num_tc |= BIT(dcbcfg->etscfg.prioritytable[i]);
4566
4567 /* Now scan the bitmask to check for
4568 * contiguous TCs starting with TC0
4569 */
4570 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4571 if (num_tc & BIT(i)) {
4572 if (!tc_unused) {
4573 ret++;
4574 } else {
4575 pr_err("Non-contiguous TC - Disabling DCB\n");
4576 return 1;
4577 }
4578 } else {
4579 tc_unused = 1;
4580 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004581 }
4582
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004583 /* There is always at least TC0 */
4584 if (!ret)
4585 ret = 1;
4586
4587 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004588}
4589
4590/**
4591 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4592 * @dcbcfg: the corresponding DCBx configuration structure
4593 *
4594 * Query the current DCB configuration and return the number of
4595 * traffic classes enabled from the given DCBX config
4596 **/
4597static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4598{
4599 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4600 u8 enabled_tc = 1;
4601 u8 i;
4602
4603 for (i = 0; i < num_tc; i++)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004604 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004605
4606 return enabled_tc;
4607}
4608
4609/**
4610 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4611 * @pf: PF being queried
4612 *
4613 * Return number of traffic classes enabled for the given PF
4614 **/
4615static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4616{
4617 struct i40e_hw *hw = &pf->hw;
Dave Ertman52a08ca2016-07-27 12:02:34 -07004618 u8 i, enabled_tc = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004619 u8 num_tc = 0;
4620 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4621
4622 /* If DCB is not enabled then always in single TC */
4623 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4624 return 1;
4625
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004626 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004627 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4628 return i40e_dcb_get_num_tc(dcbcfg);
4629
4630 /* MFP mode return count of enabled TCs for this PF */
4631 if (pf->hw.func_caps.iscsi)
4632 enabled_tc = i40e_get_iscsi_tc_map(pf);
4633 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004634 return 1; /* Only TC0 */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004635
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004636 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004637 if (enabled_tc & BIT(i))
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004638 num_tc++;
4639 }
4640 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004641}
4642
4643/**
4644 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
4645 * @pf: PF being queried
4646 *
4647 * Return a bitmap for first enabled traffic class for this PF.
4648 **/
4649static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
4650{
4651 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4652 u8 i = 0;
4653
4654 if (!enabled_tc)
4655 return 0x1; /* TC0 */
4656
4657 /* Find the first enabled TC */
4658 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004659 if (enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004660 break;
4661 }
4662
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004663 return BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004664}
4665
4666/**
4667 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4668 * @pf: PF being queried
4669 *
4670 * Return a bitmap for enabled traffic classes for this PF.
4671 **/
4672static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4673{
4674 /* If DCB is not enabled for this PF then just return default TC */
4675 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4676 return i40e_pf_get_default_tc(pf);
4677
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004678 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004679 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4680 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4681
Neerav Parikhfc51de92015-02-24 06:58:53 +00004682 /* MFP enabled and iSCSI PF type */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004683 if (pf->hw.func_caps.iscsi)
4684 return i40e_get_iscsi_tc_map(pf);
4685 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004686 return i40e_pf_get_default_tc(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004687}
4688
4689/**
4690 * i40e_vsi_get_bw_info - Query VSI BW Information
4691 * @vsi: the VSI being queried
4692 *
4693 * Returns 0 on success, negative value on failure
4694 **/
4695static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4696{
4697 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4698 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4699 struct i40e_pf *pf = vsi->back;
4700 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004701 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004702 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004703 int i;
4704
4705 /* Get the VSI level BW configuration */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004706 ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4707 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004708 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004709 "couldn't get PF vsi bw config, err %s aq_err %s\n",
4710 i40e_stat_str(&pf->hw, ret),
4711 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004712 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004713 }
4714
4715 /* Get the VSI level BW configuration per TC */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004716 ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
4717 NULL);
4718 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004719 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004720 "couldn't get PF vsi ets bw config, err %s aq_err %s\n",
4721 i40e_stat_str(&pf->hw, ret),
4722 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004723 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004724 }
4725
4726 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4727 dev_info(&pf->pdev->dev,
4728 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4729 bw_config.tc_valid_bits,
4730 bw_ets_config.tc_valid_bits);
4731 /* Still continuing */
4732 }
4733
4734 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4735 vsi->bw_max_quanta = bw_config.max_bw;
4736 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4737 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4738 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4739 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4740 vsi->bw_ets_limit_credits[i] =
4741 le16_to_cpu(bw_ets_config.credits[i]);
4742 /* 3 bits out of 4 for each TC */
4743 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4744 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004745
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004746 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004747}
4748
4749/**
4750 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4751 * @vsi: the VSI being configured
4752 * @enabled_tc: TC bitmap
4753 * @bw_credits: BW shared credits per TC
4754 *
4755 * Returns 0 on success, negative value on failure
4756 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004757static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004758 u8 *bw_share)
4759{
4760 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004761 i40e_status ret;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004762 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004763
4764 bw_data.tc_valid_bits = enabled_tc;
4765 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4766 bw_data.tc_bw_credits[i] = bw_share[i];
4767
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004768 ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4769 NULL);
4770 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004771 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004772 "AQ command Config VSI BW allocation per TC failed = %d\n",
4773 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004774 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004775 }
4776
4777 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4778 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4779
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004780 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004781}
4782
4783/**
4784 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4785 * @vsi: the VSI being configured
4786 * @enabled_tc: TC map to be enabled
4787 *
4788 **/
4789static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4790{
4791 struct net_device *netdev = vsi->netdev;
4792 struct i40e_pf *pf = vsi->back;
4793 struct i40e_hw *hw = &pf->hw;
4794 u8 netdev_tc = 0;
4795 int i;
4796 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4797
4798 if (!netdev)
4799 return;
4800
4801 if (!enabled_tc) {
4802 netdev_reset_tc(netdev);
4803 return;
4804 }
4805
4806 /* Set up actual enabled TCs on the VSI */
4807 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4808 return;
4809
4810 /* set per TC queues for the VSI */
4811 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4812 /* Only set TC queues for enabled tcs
4813 *
4814 * e.g. For a VSI that has TC0 and TC3 enabled the
4815 * enabled_tc bitmap would be 0x00001001; the driver
4816 * will set the numtc for netdev as 2 that will be
4817 * referenced by the netdev layer as TC 0 and 1.
4818 */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004819 if (vsi->tc_config.enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004820 netdev_set_tc_queue(netdev,
4821 vsi->tc_config.tc_info[i].netdev_tc,
4822 vsi->tc_config.tc_info[i].qcount,
4823 vsi->tc_config.tc_info[i].qoffset);
4824 }
4825
4826 /* Assign UP2TC map for the VSI */
4827 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4828 /* Get the actual TC# for the UP */
4829 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4830 /* Get the mapped netdev TC# for the UP */
4831 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4832 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4833 }
4834}
4835
4836/**
4837 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4838 * @vsi: the VSI being configured
4839 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4840 **/
4841static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4842 struct i40e_vsi_context *ctxt)
4843{
4844 /* copy just the sections touched not the entire info
4845 * since not all sections are valid as returned by
4846 * update vsi params
4847 */
4848 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4849 memcpy(&vsi->info.queue_mapping,
4850 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4851 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4852 sizeof(vsi->info.tc_mapping));
4853}
4854
4855/**
4856 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4857 * @vsi: VSI to be configured
4858 * @enabled_tc: TC bitmap
4859 *
4860 * This configures a particular VSI for TCs that are mapped to the
4861 * given TC bitmap. It uses default bandwidth share for TCs across
4862 * VSIs to configure TC for a particular VSI.
4863 *
4864 * NOTE:
4865 * It is expected that the VSI queues have been quisced before calling
4866 * this function.
4867 **/
4868static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4869{
4870 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4871 struct i40e_vsi_context ctxt;
4872 int ret = 0;
4873 int i;
4874
4875 /* Check if enabled_tc is same as existing or new TCs */
4876 if (vsi->tc_config.enabled_tc == enabled_tc)
4877 return ret;
4878
4879 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4880 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004881 if (enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004882 bw_share[i] = 1;
4883 }
4884
4885 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4886 if (ret) {
4887 dev_info(&vsi->back->pdev->dev,
4888 "Failed configuring TC map %d for VSI %d\n",
4889 enabled_tc, vsi->seid);
4890 goto out;
4891 }
4892
4893 /* Update Queue Pairs Mapping for currently enabled UPs */
4894 ctxt.seid = vsi->seid;
4895 ctxt.pf_num = vsi->back->hw.pf_id;
4896 ctxt.vf_num = 0;
4897 ctxt.uplink_seid = vsi->uplink_seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07004898 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004899 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4900
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004901 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
4902 ctxt.info.valid_sections |=
4903 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
4904 ctxt.info.queueing_opt_flags |= I40E_AQ_VSI_QUE_OPT_TCP_ENA;
4905 }
4906
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004907 /* Update the VSI after updating the VSI queue-mapping information */
4908 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4909 if (ret) {
4910 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004911 "Update vsi tc config failed, err %s aq_err %s\n",
4912 i40e_stat_str(&vsi->back->hw, ret),
4913 i40e_aq_str(&vsi->back->hw,
4914 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004915 goto out;
4916 }
4917 /* update the local VSI info with updated queue map */
4918 i40e_vsi_update_queue_map(vsi, &ctxt);
4919 vsi->info.valid_sections = 0;
4920
4921 /* Update current VSI BW information */
4922 ret = i40e_vsi_get_bw_info(vsi);
4923 if (ret) {
4924 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004925 "Failed updating vsi bw info, err %s aq_err %s\n",
4926 i40e_stat_str(&vsi->back->hw, ret),
4927 i40e_aq_str(&vsi->back->hw,
4928 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004929 goto out;
4930 }
4931
4932 /* Update the netdev TC setup */
4933 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4934out:
4935 return ret;
4936}
4937
4938/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004939 * i40e_veb_config_tc - Configure TCs for given VEB
4940 * @veb: given VEB
4941 * @enabled_tc: TC bitmap
4942 *
4943 * Configures given TC bitmap for VEB (switching) element
4944 **/
4945int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4946{
4947 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4948 struct i40e_pf *pf = veb->pf;
4949 int ret = 0;
4950 int i;
4951
4952 /* No TCs or already enabled TCs just return */
4953 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4954 return ret;
4955
4956 bw_data.tc_valid_bits = enabled_tc;
4957 /* bw_data.absolute_credits is not set (relative) */
4958
4959 /* Enable ETS TCs with equal BW Share for now */
4960 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004961 if (enabled_tc & BIT(i))
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004962 bw_data.tc_bw_share_credits[i] = 1;
4963 }
4964
4965 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4966 &bw_data, NULL);
4967 if (ret) {
4968 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004969 "VEB bw config failed, err %s aq_err %s\n",
4970 i40e_stat_str(&pf->hw, ret),
4971 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004972 goto out;
4973 }
4974
4975 /* Update the BW information */
4976 ret = i40e_veb_get_bw_info(veb);
4977 if (ret) {
4978 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004979 "Failed getting veb bw config, err %s aq_err %s\n",
4980 i40e_stat_str(&pf->hw, ret),
4981 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004982 }
4983
4984out:
4985 return ret;
4986}
4987
4988#ifdef CONFIG_I40E_DCB
4989/**
4990 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4991 * @pf: PF struct
4992 *
4993 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4994 * the caller would've quiesce all the VSIs before calling
4995 * this function
4996 **/
4997static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4998{
4999 u8 tc_map = 0;
5000 int ret;
5001 u8 v;
5002
5003 /* Enable the TCs available on PF to all VEBs */
5004 tc_map = i40e_pf_get_tc_map(pf);
5005 for (v = 0; v < I40E_MAX_VEB; v++) {
5006 if (!pf->veb[v])
5007 continue;
5008 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
5009 if (ret) {
5010 dev_info(&pf->pdev->dev,
5011 "Failed configuring TC for VEB seid=%d\n",
5012 pf->veb[v]->seid);
5013 /* Will try to configure as many components */
5014 }
5015 }
5016
5017 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00005018 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005019 if (!pf->vsi[v])
5020 continue;
5021
5022 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07005023#ifdef I40E_FCOE
5024 * - For FCoE VSI only enable the TC configured
5025 * as per the APP TLV
5026#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005027 * - For all others keep them at TC0 for now
5028 */
5029 if (v == pf->lan_vsi)
5030 tc_map = i40e_pf_get_tc_map(pf);
5031 else
5032 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07005033#ifdef I40E_FCOE
5034 if (pf->vsi[v]->type == I40E_VSI_FCOE)
5035 tc_map = i40e_get_fcoe_tc_map(pf);
5036#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005037
5038 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
5039 if (ret) {
5040 dev_info(&pf->pdev->dev,
5041 "Failed configuring TC for VSI seid=%d\n",
5042 pf->vsi[v]->seid);
5043 /* Will try to configure as many components */
5044 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00005045 /* Re-configure VSI vectors based on updated TC map */
5046 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005047 if (pf->vsi[v]->netdev)
5048 i40e_dcbnl_set_all(pf->vsi[v]);
5049 }
5050 }
5051}
5052
5053/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005054 * i40e_resume_port_tx - Resume port Tx
5055 * @pf: PF struct
5056 *
5057 * Resume a port's Tx and issue a PF reset in case of failure to
5058 * resume.
5059 **/
5060static int i40e_resume_port_tx(struct i40e_pf *pf)
5061{
5062 struct i40e_hw *hw = &pf->hw;
5063 int ret;
5064
5065 ret = i40e_aq_resume_port_tx(hw, NULL);
5066 if (ret) {
5067 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005068 "Resume Port Tx failed, err %s aq_err %s\n",
5069 i40e_stat_str(&pf->hw, ret),
5070 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005071 /* Schedule PF reset to recover */
5072 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5073 i40e_service_event_schedule(pf);
5074 }
5075
5076 return ret;
5077}
5078
5079/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005080 * i40e_init_pf_dcb - Initialize DCB configuration
5081 * @pf: PF being configured
5082 *
5083 * Query the current DCB configuration and cache it
5084 * in the hardware structure
5085 **/
5086static int i40e_init_pf_dcb(struct i40e_pf *pf)
5087{
5088 struct i40e_hw *hw = &pf->hw;
5089 int err = 0;
5090
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00005091 /* Do not enable DCB for SW1 and SW2 images even if the FW is capable */
Neerav Parikhf1bbad32016-01-13 16:51:39 -08005092 if (pf->flags & I40E_FLAG_NO_DCB_SUPPORT)
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00005093 goto out;
5094
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005095 /* Get the initial DCB configuration */
5096 err = i40e_init_dcb(hw);
5097 if (!err) {
5098 /* Device/Function is not DCBX capable */
5099 if ((!hw->func_caps.dcb) ||
5100 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
5101 dev_info(&pf->pdev->dev,
5102 "DCBX offload is not supported or is disabled for this PF.\n");
5103
5104 if (pf->flags & I40E_FLAG_MFP_ENABLED)
5105 goto out;
5106
5107 } else {
5108 /* When status is not DISABLED then DCBX in FW */
5109 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
5110 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005111
5112 pf->flags |= I40E_FLAG_DCB_CAPABLE;
Dave Ertmana0362442016-08-29 17:38:26 -07005113 /* Enable DCB tagging only when more than one TC
5114 * or explicitly disable if only one TC
5115 */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005116 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
5117 pf->flags |= I40E_FLAG_DCB_ENABLED;
Dave Ertmana0362442016-08-29 17:38:26 -07005118 else
5119 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005120 dev_dbg(&pf->pdev->dev,
5121 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005122 }
Neerav Parikh014269f2014-04-01 07:11:48 +00005123 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00005124 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005125 "Query for DCB configuration failed, err %s aq_err %s\n",
5126 i40e_stat_str(&pf->hw, err),
5127 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005128 }
5129
5130out:
5131 return err;
5132}
5133#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005134#define SPEED_SIZE 14
5135#define FC_SIZE 8
5136/**
5137 * i40e_print_link_message - print link up or down
5138 * @vsi: the VSI for which link needs a message
5139 */
Matt Jaredc156f852015-08-27 11:42:39 -04005140void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005141{
Shannon Nelsona9165492015-09-03 17:19:00 -04005142 char *speed = "Unknown";
5143 char *fc = "Unknown";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005144
Matt Jaredc156f852015-08-27 11:42:39 -04005145 if (vsi->current_isup == isup)
5146 return;
5147 vsi->current_isup = isup;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005148 if (!isup) {
5149 netdev_info(vsi->netdev, "NIC Link is Down\n");
5150 return;
5151 }
5152
Greg Rose148c2d82014-12-11 07:06:27 +00005153 /* Warn user if link speed on NPAR enabled partition is not at
5154 * least 10GB
5155 */
5156 if (vsi->back->hw.func_caps.npar_enable &&
5157 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
5158 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
5159 netdev_warn(vsi->netdev,
5160 "The partition detected link speed that is less than 10Gbps\n");
5161
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005162 switch (vsi->back->hw.phy.link_info.link_speed) {
5163 case I40E_LINK_SPEED_40GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005164 speed = "40 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005165 break;
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005166 case I40E_LINK_SPEED_20GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005167 speed = "20 G";
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005168 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005169 case I40E_LINK_SPEED_10GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005170 speed = "10 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005171 break;
5172 case I40E_LINK_SPEED_1GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005173 speed = "1000 M";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005174 break;
Mitch Williams5960d332014-09-13 07:40:47 +00005175 case I40E_LINK_SPEED_100MB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005176 speed = "100 M";
Mitch Williams5960d332014-09-13 07:40:47 +00005177 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005178 default:
5179 break;
5180 }
5181
5182 switch (vsi->back->hw.fc.current_mode) {
5183 case I40E_FC_FULL:
Shannon Nelsona9165492015-09-03 17:19:00 -04005184 fc = "RX/TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005185 break;
5186 case I40E_FC_TX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005187 fc = "TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005188 break;
5189 case I40E_FC_RX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005190 fc = "RX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005191 break;
5192 default:
Shannon Nelsona9165492015-09-03 17:19:00 -04005193 fc = "None";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005194 break;
5195 }
5196
Shannon Nelsona9165492015-09-03 17:19:00 -04005197 netdev_info(vsi->netdev, "NIC Link is Up %sbps Full Duplex, Flow Control: %s\n",
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005198 speed, fc);
5199}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005200
5201/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005202 * i40e_up_complete - Finish the last steps of bringing up a connection
5203 * @vsi: the VSI being configured
5204 **/
5205static int i40e_up_complete(struct i40e_vsi *vsi)
5206{
5207 struct i40e_pf *pf = vsi->back;
5208 int err;
5209
5210 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5211 i40e_vsi_configure_msix(vsi);
5212 else
5213 i40e_configure_msi_and_legacy(vsi);
5214
5215 /* start rings */
5216 err = i40e_vsi_control_rings(vsi, true);
5217 if (err)
5218 return err;
5219
5220 clear_bit(__I40E_DOWN, &vsi->state);
5221 i40e_napi_enable_all(vsi);
5222 i40e_vsi_enable_irq(vsi);
5223
5224 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
5225 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005226 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005227 netif_tx_start_all_queues(vsi->netdev);
5228 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00005229 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005230 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005231 /* need to check for qualified module here*/
5232 if ((pf->hw.phy.link_info.link_info &
5233 I40E_AQ_MEDIA_AVAILABLE) &&
5234 (!(pf->hw.phy.link_info.an_info &
5235 I40E_AQ_QUALIFIED_MODULE)))
5236 netdev_err(vsi->netdev,
5237 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005238 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005239
5240 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005241 if (vsi->type == I40E_VSI_FDIR) {
5242 /* reset fd counters */
5243 pf->fd_add_err = pf->fd_atr_cnt = 0;
5244 if (pf->fd_tcp_rule > 0) {
5245 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005246 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5247 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005248 pf->fd_tcp_rule = 0;
5249 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005250 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005251 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005252
5253 /* On the next run of the service_task, notify any clients of the new
5254 * opened netdev
5255 */
5256 pf->flags |= I40E_FLAG_SERVICE_CLIENT_REQUESTED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005257 i40e_service_event_schedule(pf);
5258
5259 return 0;
5260}
5261
5262/**
5263 * i40e_vsi_reinit_locked - Reset the VSI
5264 * @vsi: the VSI being configured
5265 *
5266 * Rebuild the ring structs after some configuration
5267 * has changed, e.g. MTU size.
5268 **/
5269static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
5270{
5271 struct i40e_pf *pf = vsi->back;
5272
5273 WARN_ON(in_interrupt());
5274 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
5275 usleep_range(1000, 2000);
5276 i40e_down(vsi);
5277
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005278 i40e_up(vsi);
5279 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
5280}
5281
5282/**
5283 * i40e_up - Bring the connection back up after being down
5284 * @vsi: the VSI being configured
5285 **/
5286int i40e_up(struct i40e_vsi *vsi)
5287{
5288 int err;
5289
5290 err = i40e_vsi_configure(vsi);
5291 if (!err)
5292 err = i40e_up_complete(vsi);
5293
5294 return err;
5295}
5296
5297/**
5298 * i40e_down - Shutdown the connection processing
5299 * @vsi: the VSI being stopped
5300 **/
5301void i40e_down(struct i40e_vsi *vsi)
5302{
5303 int i;
5304
5305 /* It is assumed that the caller of this function
5306 * sets the vsi->state __I40E_DOWN bit.
5307 */
5308 if (vsi->netdev) {
5309 netif_carrier_off(vsi->netdev);
5310 netif_tx_disable(vsi->netdev);
5311 }
5312 i40e_vsi_disable_irq(vsi);
5313 i40e_vsi_control_rings(vsi, false);
5314 i40e_napi_disable_all(vsi);
5315
5316 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00005317 i40e_clean_tx_ring(vsi->tx_rings[i]);
5318 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005319 }
Catherine Sullivanf980d442016-05-16 10:26:34 -07005320
5321 i40e_notify_client_of_netdev_close(vsi, false);
5322
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005323}
5324
5325/**
5326 * i40e_setup_tc - configure multiple traffic classes
5327 * @netdev: net device to configure
5328 * @tc: number of traffic classes to enable
5329 **/
5330static int i40e_setup_tc(struct net_device *netdev, u8 tc)
5331{
5332 struct i40e_netdev_priv *np = netdev_priv(netdev);
5333 struct i40e_vsi *vsi = np->vsi;
5334 struct i40e_pf *pf = vsi->back;
5335 u8 enabled_tc = 0;
5336 int ret = -EINVAL;
5337 int i;
5338
5339 /* Check if DCB enabled to continue */
5340 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
5341 netdev_info(netdev, "DCB is not enabled for adapter\n");
5342 goto exit;
5343 }
5344
5345 /* Check if MFP enabled */
5346 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
5347 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
5348 goto exit;
5349 }
5350
5351 /* Check whether tc count is within enabled limit */
5352 if (tc > i40e_pf_get_num_tc(pf)) {
5353 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
5354 goto exit;
5355 }
5356
5357 /* Generate TC map for number of tc requested */
5358 for (i = 0; i < tc; i++)
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005359 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005360
5361 /* Requesting same TC configuration as already enabled */
5362 if (enabled_tc == vsi->tc_config.enabled_tc)
5363 return 0;
5364
5365 /* Quiesce VSI queues */
5366 i40e_quiesce_vsi(vsi);
5367
5368 /* Configure VSI for enabled TCs */
5369 ret = i40e_vsi_config_tc(vsi, enabled_tc);
5370 if (ret) {
5371 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
5372 vsi->seid);
5373 goto exit;
5374 }
5375
5376 /* Unquiesce VSI */
5377 i40e_unquiesce_vsi(vsi);
5378
5379exit:
5380 return ret;
5381}
5382
John Fastabende4c67342016-02-16 21:16:15 -08005383#ifdef I40E_FCOE
John Fastabend16e5cc62016-02-16 21:16:43 -08005384int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto,
5385 struct tc_to_netdev *tc)
John Fastabende4c67342016-02-16 21:16:15 -08005386#else
John Fastabend16e5cc62016-02-16 21:16:43 -08005387static int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto,
5388 struct tc_to_netdev *tc)
John Fastabende4c67342016-02-16 21:16:15 -08005389#endif
5390{
John Fastabend16e5cc62016-02-16 21:16:43 -08005391 if (handle != TC_H_ROOT || tc->type != TC_SETUP_MQPRIO)
John Fastabende4c67342016-02-16 21:16:15 -08005392 return -EINVAL;
John Fastabend16e5cc62016-02-16 21:16:43 -08005393 return i40e_setup_tc(netdev, tc->tc);
John Fastabende4c67342016-02-16 21:16:15 -08005394}
5395
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005396/**
5397 * i40e_open - Called when a network interface is made active
5398 * @netdev: network interface device structure
5399 *
5400 * The open entry point is called when a network interface is made
5401 * active by the system (IFF_UP). At this point all resources needed
5402 * for transmit and receive operations are allocated, the interrupt
5403 * handler is registered with the OS, the netdev watchdog subtask is
5404 * enabled, and the stack is notified that the interface is ready.
5405 *
5406 * Returns 0 on success, negative value on failure
5407 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005408int i40e_open(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005409{
5410 struct i40e_netdev_priv *np = netdev_priv(netdev);
5411 struct i40e_vsi *vsi = np->vsi;
5412 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005413 int err;
5414
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005415 /* disallow open during test or if eeprom is broken */
5416 if (test_bit(__I40E_TESTING, &pf->state) ||
5417 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005418 return -EBUSY;
5419
5420 netif_carrier_off(netdev);
5421
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005422 err = i40e_vsi_open(vsi);
5423 if (err)
5424 return err;
5425
Jesse Brandeburg059dab62014-04-01 09:07:20 +00005426 /* configure global TSO hardware offload settings */
5427 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
5428 TCP_FLAG_FIN) >> 16);
5429 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
5430 TCP_FLAG_FIN |
5431 TCP_FLAG_CWR) >> 16);
5432 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
5433
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07005434 udp_tunnel_get_rx_info(netdev);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005435
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005436 return 0;
5437}
5438
5439/**
5440 * i40e_vsi_open -
5441 * @vsi: the VSI to open
5442 *
5443 * Finish initialization of the VSI.
5444 *
5445 * Returns 0 on success, negative value on failure
5446 **/
5447int i40e_vsi_open(struct i40e_vsi *vsi)
5448{
5449 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00005450 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005451 int err;
5452
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005453 /* allocate descriptors */
5454 err = i40e_vsi_setup_tx_resources(vsi);
5455 if (err)
5456 goto err_setup_tx;
5457 err = i40e_vsi_setup_rx_resources(vsi);
5458 if (err)
5459 goto err_setup_rx;
5460
5461 err = i40e_vsi_configure(vsi);
5462 if (err)
5463 goto err_setup_rx;
5464
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005465 if (vsi->netdev) {
5466 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
5467 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
5468 err = i40e_vsi_request_irq(vsi, int_name);
5469 if (err)
5470 goto err_setup_rx;
5471
5472 /* Notify the stack of the actual queue counts. */
5473 err = netif_set_real_num_tx_queues(vsi->netdev,
5474 vsi->num_queue_pairs);
5475 if (err)
5476 goto err_set_queues;
5477
5478 err = netif_set_real_num_rx_queues(vsi->netdev,
5479 vsi->num_queue_pairs);
5480 if (err)
5481 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005482
5483 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00005484 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005485 dev_driver_string(&pf->pdev->dev),
5486 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005487 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005488
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005489 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00005490 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005491 goto err_setup_rx;
5492 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005493
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005494 err = i40e_up_complete(vsi);
5495 if (err)
5496 goto err_up_complete;
5497
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005498 return 0;
5499
5500err_up_complete:
5501 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005502err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005503 i40e_vsi_free_irq(vsi);
5504err_setup_rx:
5505 i40e_vsi_free_rx_resources(vsi);
5506err_setup_tx:
5507 i40e_vsi_free_tx_resources(vsi);
5508 if (vsi == pf->vsi[pf->lan_vsi])
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005509 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005510
5511 return err;
5512}
5513
5514/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005515 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00005516 * @pf: Pointer to PF
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005517 *
5518 * This function destroys the hlist where all the Flow Director
5519 * filters were saved.
5520 **/
5521static void i40e_fdir_filter_exit(struct i40e_pf *pf)
5522{
5523 struct i40e_fdir_filter *filter;
5524 struct hlist_node *node2;
5525
5526 hlist_for_each_entry_safe(filter, node2,
5527 &pf->fdir_filter_list, fdir_node) {
5528 hlist_del(&filter->fdir_node);
5529 kfree(filter);
5530 }
5531 pf->fdir_pf_active_filters = 0;
5532}
5533
5534/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005535 * i40e_close - Disables a network interface
5536 * @netdev: network interface device structure
5537 *
5538 * The close entry point is called when an interface is de-activated
5539 * by the OS. The hardware is still under the driver's control, but
5540 * this netdev interface is disabled.
5541 *
5542 * Returns 0, this is not allowed to fail
5543 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005544int i40e_close(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005545{
5546 struct i40e_netdev_priv *np = netdev_priv(netdev);
5547 struct i40e_vsi *vsi = np->vsi;
5548
Shannon Nelson90ef8d42014-03-14 07:32:26 +00005549 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005550
5551 return 0;
5552}
5553
5554/**
5555 * i40e_do_reset - Start a PF or Core Reset sequence
5556 * @pf: board private structure
5557 * @reset_flags: which reset is requested
5558 *
5559 * The essential difference in resets is that the PF Reset
5560 * doesn't clear the packet buffers, doesn't reset the PE
5561 * firmware, and doesn't bother the other PFs on the chip.
5562 **/
5563void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5564{
5565 u32 val;
5566
5567 WARN_ON(in_interrupt());
5568
Mitch Williams263fc482014-04-23 04:50:11 +00005569
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005570 /* do the biggest reset indicated */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005571 if (reset_flags & BIT_ULL(__I40E_GLOBAL_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005572
5573 /* Request a Global Reset
5574 *
5575 * This will start the chip's countdown to the actual full
5576 * chip reset event, and a warning interrupt to be sent
5577 * to all PFs, including the requestor. Our handler
5578 * for the warning interrupt will deal with the shutdown
5579 * and recovery of the switch setup.
5580 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005581 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005582 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5583 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5584 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5585
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005586 } else if (reset_flags & BIT_ULL(__I40E_CORE_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005587
5588 /* Request a Core Reset
5589 *
5590 * Same as Global Reset, except does *not* include the MAC/PHY
5591 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005592 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005593 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5594 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5595 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5596 i40e_flush(&pf->hw);
5597
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005598 } else if (reset_flags & BIT_ULL(__I40E_PF_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005599
5600 /* Request a PF Reset
5601 *
5602 * Resets only the PF-specific registers
5603 *
5604 * This goes directly to the tear-down and rebuild of
5605 * the switch, since we need to do all the recovery as
5606 * for the Core Reset.
5607 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005608 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005609 i40e_handle_reset_warning(pf);
5610
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005611 } else if (reset_flags & BIT_ULL(__I40E_REINIT_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005612 int v;
5613
5614 /* Find the VSI(s) that requested a re-init */
5615 dev_info(&pf->pdev->dev,
5616 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005617 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005618 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005619
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005620 if (vsi != NULL &&
5621 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5622 i40e_vsi_reinit_locked(pf->vsi[v]);
5623 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5624 }
5625 }
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005626 } else if (reset_flags & BIT_ULL(__I40E_DOWN_REQUESTED)) {
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005627 int v;
5628
5629 /* Find the VSI(s) that needs to be brought down */
5630 dev_info(&pf->pdev->dev, "VSI down requested\n");
5631 for (v = 0; v < pf->num_alloc_vsi; v++) {
5632 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005633
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005634 if (vsi != NULL &&
5635 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5636 set_bit(__I40E_DOWN, &vsi->state);
5637 i40e_down(vsi);
5638 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5639 }
5640 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005641 } else {
5642 dev_info(&pf->pdev->dev,
5643 "bad reset request 0x%08x\n", reset_flags);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005644 }
5645}
5646
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005647#ifdef CONFIG_I40E_DCB
5648/**
5649 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5650 * @pf: board private structure
5651 * @old_cfg: current DCB config
5652 * @new_cfg: new DCB config
5653 **/
5654bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5655 struct i40e_dcbx_config *old_cfg,
5656 struct i40e_dcbx_config *new_cfg)
5657{
5658 bool need_reconfig = false;
5659
5660 /* Check if ETS configuration has changed */
5661 if (memcmp(&new_cfg->etscfg,
5662 &old_cfg->etscfg,
5663 sizeof(new_cfg->etscfg))) {
5664 /* If Priority Table has changed reconfig is needed */
5665 if (memcmp(&new_cfg->etscfg.prioritytable,
5666 &old_cfg->etscfg.prioritytable,
5667 sizeof(new_cfg->etscfg.prioritytable))) {
5668 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005669 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005670 }
5671
5672 if (memcmp(&new_cfg->etscfg.tcbwtable,
5673 &old_cfg->etscfg.tcbwtable,
5674 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005675 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005676
5677 if (memcmp(&new_cfg->etscfg.tsatable,
5678 &old_cfg->etscfg.tsatable,
5679 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005680 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005681 }
5682
5683 /* Check if PFC configuration has changed */
5684 if (memcmp(&new_cfg->pfc,
5685 &old_cfg->pfc,
5686 sizeof(new_cfg->pfc))) {
5687 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005688 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005689 }
5690
5691 /* Check if APP Table has changed */
5692 if (memcmp(&new_cfg->app,
5693 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005694 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005695 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005696 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005697 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005698
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005699 dev_dbg(&pf->pdev->dev, "dcb need_reconfig=%d\n", need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005700 return need_reconfig;
5701}
5702
5703/**
5704 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5705 * @pf: board private structure
5706 * @e: event info posted on ARQ
5707 **/
5708static int i40e_handle_lldp_event(struct i40e_pf *pf,
5709 struct i40e_arq_event_info *e)
5710{
5711 struct i40e_aqc_lldp_get_mib *mib =
5712 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5713 struct i40e_hw *hw = &pf->hw;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005714 struct i40e_dcbx_config tmp_dcbx_cfg;
5715 bool need_reconfig = false;
5716 int ret = 0;
5717 u8 type;
5718
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005719 /* Not DCB capable or capability disabled */
Dave Ertmana0362442016-08-29 17:38:26 -07005720 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005721 return ret;
5722
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005723 /* Ignore if event is not for Nearest Bridge */
5724 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5725 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005726 dev_dbg(&pf->pdev->dev, "LLDP event mib bridge type 0x%x\n", type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005727 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5728 return ret;
5729
5730 /* Check MIB Type and return if event for Remote MIB update */
5731 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005732 dev_dbg(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005733 "LLDP event mib type %s\n", type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005734 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5735 /* Update the remote cached instance and return */
5736 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5737 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5738 &hw->remote_dcbx_config);
5739 goto exit;
5740 }
5741
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005742 /* Store the old configuration */
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07005743 tmp_dcbx_cfg = hw->local_dcbx_config;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005744
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005745 /* Reset the old DCBx configuration data */
5746 memset(&hw->local_dcbx_config, 0, sizeof(hw->local_dcbx_config));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005747 /* Get updated DCBX data from firmware */
5748 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005749 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005750 dev_info(&pf->pdev->dev,
5751 "Failed querying DCB configuration data from firmware, err %s aq_err %s\n",
5752 i40e_stat_str(&pf->hw, ret),
5753 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005754 goto exit;
5755 }
5756
5757 /* No change detected in DCBX configs */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005758 if (!memcmp(&tmp_dcbx_cfg, &hw->local_dcbx_config,
5759 sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005760 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005761 goto exit;
5762 }
5763
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005764 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg,
5765 &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005766
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005767 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg, &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005768
5769 if (!need_reconfig)
5770 goto exit;
5771
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005772 /* Enable DCB tagging only when more than one TC */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005773 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005774 pf->flags |= I40E_FLAG_DCB_ENABLED;
5775 else
5776 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5777
Neerav Parikh69129dc2014-11-12 00:18:46 +00005778 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005779 /* Reconfiguration needed quiesce all VSIs */
5780 i40e_pf_quiesce_all_vsi(pf);
5781
5782 /* Changes in configuration update VEB/VSI */
5783 i40e_dcb_reconfigure(pf);
5784
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005785 ret = i40e_resume_port_tx(pf);
5786
Neerav Parikh69129dc2014-11-12 00:18:46 +00005787 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005788 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005789 if (ret)
5790 goto exit;
5791
Neerav Parikh3fe06f42016-02-17 16:12:15 -08005792 /* Wait for the PF's queues to be disabled */
5793 ret = i40e_pf_wait_queues_disabled(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005794 if (ret) {
5795 /* Schedule PF reset to recover */
5796 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5797 i40e_service_event_schedule(pf);
5798 } else {
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005799 i40e_pf_unquiesce_all_vsi(pf);
Neerav Parikh85a1aab2016-06-07 09:14:55 -07005800 /* Notify the client for the DCB changes */
5801 i40e_notify_client_of_l2_param_changes(pf->vsi[pf->lan_vsi]);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005802 }
5803
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005804exit:
5805 return ret;
5806}
5807#endif /* CONFIG_I40E_DCB */
5808
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005809/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005810 * i40e_do_reset_safe - Protected reset path for userland calls.
5811 * @pf: board private structure
5812 * @reset_flags: which reset is requested
5813 *
5814 **/
5815void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5816{
5817 rtnl_lock();
5818 i40e_do_reset(pf, reset_flags);
5819 rtnl_unlock();
5820}
5821
5822/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005823 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5824 * @pf: board private structure
5825 * @e: event info posted on ARQ
5826 *
5827 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5828 * and VF queues
5829 **/
5830static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5831 struct i40e_arq_event_info *e)
5832{
5833 struct i40e_aqc_lan_overflow *data =
5834 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5835 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5836 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5837 struct i40e_hw *hw = &pf->hw;
5838 struct i40e_vf *vf;
5839 u16 vf_id;
5840
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005841 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5842 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005843
5844 /* Queue belongs to VF, find the VF and issue VF reset */
5845 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5846 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5847 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5848 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5849 vf_id -= hw->func_caps.vf_base_id;
5850 vf = &pf->vf[vf_id];
5851 i40e_vc_notify_vf_reset(vf);
5852 /* Allow VF to process pending reset notification */
5853 msleep(20);
5854 i40e_reset_vf(vf, false);
5855 }
5856}
5857
5858/**
5859 * i40e_service_event_complete - Finish up the service event
5860 * @pf: board private structure
5861 **/
5862static void i40e_service_event_complete(struct i40e_pf *pf)
5863{
Shannon Nelsonb875f992015-10-21 19:47:03 -04005864 WARN_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005865
5866 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005867 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005868 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5869}
5870
5871/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005872 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5873 * @pf: board private structure
5874 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005875u32 i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005876{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005877 u32 val, fcnt_prog;
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005878
5879 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5880 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5881 return fcnt_prog;
5882}
5883
5884/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005885 * i40e_get_current_fd_count - Get total FD filters programmed for this PF
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005886 * @pf: board private structure
5887 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005888u32 i40e_get_current_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005889{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005890 u32 val, fcnt_prog;
5891
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005892 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5893 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5894 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5895 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5896 return fcnt_prog;
5897}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005898
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005899/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005900 * i40e_get_global_fd_count - Get total FD filters programmed on device
5901 * @pf: board private structure
5902 **/
5903u32 i40e_get_global_fd_count(struct i40e_pf *pf)
5904{
5905 u32 val, fcnt_prog;
5906
5907 val = rd32(&pf->hw, I40E_GLQF_FDCNT_0);
5908 fcnt_prog = (val & I40E_GLQF_FDCNT_0_GUARANT_CNT_MASK) +
5909 ((val & I40E_GLQF_FDCNT_0_BESTCNT_MASK) >>
5910 I40E_GLQF_FDCNT_0_BESTCNT_SHIFT);
5911 return fcnt_prog;
5912}
5913
5914/**
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005915 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5916 * @pf: board private structure
5917 **/
5918void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5919{
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005920 struct i40e_fdir_filter *filter;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005921 u32 fcnt_prog, fcnt_avail;
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005922 struct hlist_node *node;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005923
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005924 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5925 return;
5926
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005927 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5928 * to re-enable
5929 */
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005930 fcnt_prog = i40e_get_global_fd_count(pf);
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005931 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005932 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5933 (pf->fd_add_err == 0) ||
5934 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005935 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5936 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5937 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005938 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5939 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 +00005940 }
5941 }
5942 /* Wait for some more space to be available to turn on ATR */
5943 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5944 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5945 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5946 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005947 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5948 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005949 }
5950 }
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005951
5952 /* if hw had a problem adding a filter, delete it */
5953 if (pf->fd_inv > 0) {
5954 hlist_for_each_entry_safe(filter, node,
5955 &pf->fdir_filter_list, fdir_node) {
5956 if (filter->fd_id == pf->fd_inv) {
5957 hlist_del(&filter->fdir_node);
5958 kfree(filter);
5959 pf->fdir_pf_active_filters--;
5960 }
5961 }
5962 }
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005963}
5964
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005965#define I40E_MIN_FD_FLUSH_INTERVAL 10
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005966#define I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE 30
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005967/**
5968 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5969 * @pf: board private structure
5970 **/
5971static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5972{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005973 unsigned long min_flush_time;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005974 int flush_wait_retry = 50;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005975 bool disable_atr = false;
5976 int fd_room;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005977 int reg;
5978
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005979 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5980 return;
5981
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005982 if (!time_after(jiffies, pf->fd_flush_timestamp +
5983 (I40E_MIN_FD_FLUSH_INTERVAL * HZ)))
5984 return;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005985
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005986 /* If the flush is happening too quick and we have mostly SB rules we
5987 * should not re-enable ATR for some time.
5988 */
5989 min_flush_time = pf->fd_flush_timestamp +
5990 (I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE * HZ);
5991 fd_room = pf->fdir_pf_filter_count - pf->fdir_pf_active_filters;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005992
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005993 if (!(time_after(jiffies, min_flush_time)) &&
5994 (fd_room < I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) {
5995 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5996 dev_info(&pf->pdev->dev, "ATR disabled, not enough FD filter space.\n");
5997 disable_atr = true;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005998 }
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005999
6000 pf->fd_flush_timestamp = jiffies;
6001 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
6002 /* flush all filters */
6003 wr32(&pf->hw, I40E_PFQF_CTL_1,
6004 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
6005 i40e_flush(&pf->hw);
6006 pf->fd_flush_cnt++;
6007 pf->fd_add_err = 0;
6008 do {
6009 /* Check FD flush status every 5-6msec */
6010 usleep_range(5000, 6000);
6011 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
6012 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
6013 break;
6014 } while (flush_wait_retry--);
6015 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
6016 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
6017 } else {
6018 /* replay sideband filters */
6019 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
6020 if (!disable_atr)
6021 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
6022 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
6023 if (I40E_DEBUG_FD & pf->hw.debug_mask)
6024 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
6025 }
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006026}
6027
6028/**
6029 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
6030 * @pf: board private structure
6031 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006032u32 i40e_get_current_atr_cnt(struct i40e_pf *pf)
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006033{
6034 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
6035}
6036
6037/* We can see up to 256 filter programming desc in transit if the filters are
6038 * being applied really fast; before we see the first
6039 * filter miss error on Rx queue 0. Accumulating enough error messages before
6040 * reacting will make sure we don't cause flush too often.
6041 */
6042#define I40E_MAX_FD_PROGRAM_ERROR 256
6043
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006044/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006045 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
6046 * @pf: board private structure
6047 **/
6048static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
6049{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006050
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006051 /* if interface is down do nothing */
6052 if (test_bit(__I40E_DOWN, &pf->state))
6053 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006054
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00006055 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
6056 return;
6057
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00006058 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00006059 i40e_fdir_flush_and_replay(pf);
6060
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00006061 i40e_fdir_check_and_reenable(pf);
6062
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006063}
6064
6065/**
6066 * i40e_vsi_link_event - notify VSI of a link event
6067 * @vsi: vsi to be notified
6068 * @link_up: link up or down
6069 **/
6070static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
6071{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00006072 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006073 return;
6074
6075 switch (vsi->type) {
6076 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07006077#ifdef I40E_FCOE
6078 case I40E_VSI_FCOE:
6079#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006080 if (!vsi->netdev || !vsi->netdev_registered)
6081 break;
6082
6083 if (link_up) {
6084 netif_carrier_on(vsi->netdev);
6085 netif_tx_wake_all_queues(vsi->netdev);
6086 } else {
6087 netif_carrier_off(vsi->netdev);
6088 netif_tx_stop_all_queues(vsi->netdev);
6089 }
6090 break;
6091
6092 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006093 case I40E_VSI_VMDQ2:
6094 case I40E_VSI_CTRL:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06006095 case I40E_VSI_IWARP:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006096 case I40E_VSI_MIRROR:
6097 default:
6098 /* there is no notification for other VSIs */
6099 break;
6100 }
6101}
6102
6103/**
6104 * i40e_veb_link_event - notify elements on the veb of a link event
6105 * @veb: veb to be notified
6106 * @link_up: link up or down
6107 **/
6108static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
6109{
6110 struct i40e_pf *pf;
6111 int i;
6112
6113 if (!veb || !veb->pf)
6114 return;
6115 pf = veb->pf;
6116
6117 /* depth first... */
6118 for (i = 0; i < I40E_MAX_VEB; i++)
6119 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
6120 i40e_veb_link_event(pf->veb[i], link_up);
6121
6122 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00006123 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006124 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
6125 i40e_vsi_link_event(pf->vsi[i], link_up);
6126}
6127
6128/**
6129 * i40e_link_event - Update netif_carrier status
6130 * @pf: board private structure
6131 **/
6132static void i40e_link_event(struct i40e_pf *pf)
6133{
Mitch Williams320684c2014-10-17 03:14:43 +00006134 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006135 u8 new_link_speed, old_link_speed;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006136 i40e_status status;
6137 bool new_link, old_link;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006138
Catherine Sullivan1f9610e2015-10-21 19:47:09 -04006139 /* save off old link status information */
6140 pf->hw.phy.link_info_old = pf->hw.phy.link_info;
6141
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006142 /* set this to force the get_link_status call to refresh state */
6143 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006144
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006145 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006146
6147 status = i40e_get_link_status(&pf->hw, &new_link);
6148 if (status) {
6149 dev_dbg(&pf->pdev->dev, "couldn't get link state, status: %d\n",
6150 status);
6151 return;
6152 }
6153
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006154 old_link_speed = pf->hw.phy.link_info_old.link_speed;
6155 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006156
6157 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006158 new_link_speed == old_link_speed &&
Mitch Williams320684c2014-10-17 03:14:43 +00006159 (test_bit(__I40E_DOWN, &vsi->state) ||
6160 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006161 return;
Mitch Williams320684c2014-10-17 03:14:43 +00006162
6163 if (!test_bit(__I40E_DOWN, &vsi->state))
6164 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006165
6166 /* Notify the base of the switch tree connected to
6167 * the link. Floating VEBs are not notified.
6168 */
6169 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
6170 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
6171 else
Mitch Williams320684c2014-10-17 03:14:43 +00006172 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006173
6174 if (pf->vf)
6175 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006176
6177 if (pf->flags & I40E_FLAG_PTP)
6178 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006179}
6180
6181/**
Shannon Nelson21536712014-10-25 10:35:25 +00006182 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006183 * @pf: board private structure
6184 **/
6185static void i40e_watchdog_subtask(struct i40e_pf *pf)
6186{
6187 int i;
6188
6189 /* if interface is down do nothing */
6190 if (test_bit(__I40E_DOWN, &pf->state) ||
6191 test_bit(__I40E_CONFIG_BUSY, &pf->state))
6192 return;
6193
Shannon Nelson21536712014-10-25 10:35:25 +00006194 /* make sure we don't do these things too often */
6195 if (time_before(jiffies, (pf->service_timer_previous +
6196 pf->service_timer_period)))
6197 return;
6198 pf->service_timer_previous = jiffies;
6199
Shannon Nelson9ac77262015-08-27 11:42:40 -04006200 if (pf->flags & I40E_FLAG_LINK_POLLING_ENABLED)
6201 i40e_link_event(pf);
Shannon Nelson21536712014-10-25 10:35:25 +00006202
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006203 /* Update the stats for active netdevs so the network stack
6204 * can look at updated numbers whenever it cares to
6205 */
Mitch Williams505682c2014-05-20 08:01:37 +00006206 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006207 if (pf->vsi[i] && pf->vsi[i]->netdev)
6208 i40e_update_stats(pf->vsi[i]);
6209
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04006210 if (pf->flags & I40E_FLAG_VEB_STATS_ENABLED) {
6211 /* Update the stats for the active switching components */
6212 for (i = 0; i < I40E_MAX_VEB; i++)
6213 if (pf->veb[i])
6214 i40e_update_veb_stats(pf->veb[i]);
6215 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006216
6217 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006218}
6219
6220/**
6221 * i40e_reset_subtask - Set up for resetting the device and driver
6222 * @pf: board private structure
6223 **/
6224static void i40e_reset_subtask(struct i40e_pf *pf)
6225{
6226 u32 reset_flags = 0;
6227
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006228 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006229 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006230 reset_flags |= BIT(__I40E_REINIT_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006231 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
6232 }
6233 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006234 reset_flags |= BIT(__I40E_PF_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006235 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6236 }
6237 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006238 reset_flags |= BIT(__I40E_CORE_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006239 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
6240 }
6241 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006242 reset_flags |= BIT(__I40E_GLOBAL_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006243 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
6244 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006245 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006246 reset_flags |= BIT(__I40E_DOWN_REQUESTED);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006247 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
6248 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006249
6250 /* If there's a recovery already waiting, it takes
6251 * precedence before starting a new reset sequence.
6252 */
6253 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
6254 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006255 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006256 }
6257
6258 /* If we're already down or resetting, just bail */
6259 if (reset_flags &&
6260 !test_bit(__I40E_DOWN, &pf->state) &&
6261 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
6262 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006263
6264unlock:
6265 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006266}
6267
6268/**
6269 * i40e_handle_link_event - Handle link event
6270 * @pf: board private structure
6271 * @e: event info posted on ARQ
6272 **/
6273static void i40e_handle_link_event(struct i40e_pf *pf,
6274 struct i40e_arq_event_info *e)
6275{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006276 struct i40e_aqc_get_link_status *status =
6277 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006278
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006279 /* Do a new status request to re-enable LSE reporting
6280 * and load new status information into the hw struct
6281 * This completely ignores any state information
6282 * in the ARQ event info, instead choosing to always
6283 * issue the AQ update link status command.
6284 */
6285 i40e_link_event(pf);
6286
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00006287 /* check for unqualified module, if link is down */
6288 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
6289 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
6290 (!(status->link_info & I40E_AQ_LINK_UP)))
6291 dev_err(&pf->pdev->dev,
6292 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006293}
6294
6295/**
6296 * i40e_clean_adminq_subtask - Clean the AdminQ rings
6297 * @pf: board private structure
6298 **/
6299static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
6300{
6301 struct i40e_arq_event_info event;
6302 struct i40e_hw *hw = &pf->hw;
6303 u16 pending, i = 0;
6304 i40e_status ret;
6305 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00006306 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006307 u32 val;
6308
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006309 /* Do not run clean AQ when PF reset fails */
6310 if (test_bit(__I40E_RESET_FAILED, &pf->state))
6311 return;
6312
Shannon Nelson86df2422014-05-20 08:01:35 +00006313 /* check for error indications */
6314 val = rd32(&pf->hw, pf->hw.aq.arq.len);
6315 oldval = val;
6316 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006317 if (hw->debug_mask & I40E_DEBUG_AQ)
6318 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006319 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
6320 }
6321 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006322 if (hw->debug_mask & I40E_DEBUG_AQ)
6323 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006324 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
Mitch Williams1d0a4ad2015-12-23 12:05:48 -08006325 pf->arq_overflows++;
Shannon Nelson86df2422014-05-20 08:01:35 +00006326 }
6327 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006328 if (hw->debug_mask & I40E_DEBUG_AQ)
6329 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006330 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
6331 }
6332 if (oldval != val)
6333 wr32(&pf->hw, pf->hw.aq.arq.len, val);
6334
6335 val = rd32(&pf->hw, pf->hw.aq.asq.len);
6336 oldval = val;
6337 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006338 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6339 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006340 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
6341 }
6342 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006343 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6344 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006345 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
6346 }
6347 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006348 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6349 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006350 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
6351 }
6352 if (oldval != val)
6353 wr32(&pf->hw, pf->hw.aq.asq.len, val);
6354
Mitch Williams1001dc32014-11-11 20:02:19 +00006355 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
6356 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006357 if (!event.msg_buf)
6358 return;
6359
6360 do {
6361 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00006362 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006363 break;
Mitch Williams56497972014-06-04 08:45:18 +00006364 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006365 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
6366 break;
6367 }
6368
6369 opcode = le16_to_cpu(event.desc.opcode);
6370 switch (opcode) {
6371
6372 case i40e_aqc_opc_get_link_status:
6373 i40e_handle_link_event(pf, &event);
6374 break;
6375 case i40e_aqc_opc_send_msg_to_pf:
6376 ret = i40e_vc_process_vf_msg(pf,
6377 le16_to_cpu(event.desc.retval),
6378 le32_to_cpu(event.desc.cookie_high),
6379 le32_to_cpu(event.desc.cookie_low),
6380 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00006381 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006382 break;
6383 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006384 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006385#ifdef CONFIG_I40E_DCB
6386 rtnl_lock();
6387 ret = i40e_handle_lldp_event(pf, &event);
6388 rtnl_unlock();
6389#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006390 break;
6391 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006392 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006393 i40e_handle_lan_overflow_event(pf, &event);
6394 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00006395 case i40e_aqc_opc_send_msg_to_peer:
6396 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
6397 break;
Shannon Nelson91a0f932015-03-19 14:32:01 -07006398 case i40e_aqc_opc_nvm_erase:
6399 case i40e_aqc_opc_nvm_update:
Michal Kosiarz00ada502015-11-19 11:34:20 -08006400 case i40e_aqc_opc_oem_post_update:
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08006401 i40e_debug(&pf->hw, I40E_DEBUG_NVM,
6402 "ARQ NVM operation 0x%04x completed\n",
6403 opcode);
Shannon Nelson91a0f932015-03-19 14:32:01 -07006404 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006405 default:
6406 dev_info(&pf->pdev->dev,
Shannon Nelson56e5ca62016-03-10 14:59:48 -08006407 "ARQ: Unknown event 0x%04x ignored\n",
Shannon Nelson0467bc92013-12-18 13:45:58 +00006408 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006409 break;
6410 }
6411 } while (pending && (i++ < pf->adminq_work_limit));
6412
6413 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
6414 /* re-enable Admin queue interrupt cause */
6415 val = rd32(hw, I40E_PFINT_ICR0_ENA);
6416 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
6417 wr32(hw, I40E_PFINT_ICR0_ENA, val);
6418 i40e_flush(hw);
6419
6420 kfree(event.msg_buf);
6421}
6422
6423/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006424 * i40e_verify_eeprom - make sure eeprom is good to use
6425 * @pf: board private structure
6426 **/
6427static void i40e_verify_eeprom(struct i40e_pf *pf)
6428{
6429 int err;
6430
6431 err = i40e_diag_eeprom_test(&pf->hw);
6432 if (err) {
6433 /* retry in case of garbage read */
6434 err = i40e_diag_eeprom_test(&pf->hw);
6435 if (err) {
6436 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
6437 err);
6438 set_bit(__I40E_BAD_EEPROM, &pf->state);
6439 }
6440 }
6441
6442 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
6443 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
6444 clear_bit(__I40E_BAD_EEPROM, &pf->state);
6445 }
6446}
6447
6448/**
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006449 * i40e_enable_pf_switch_lb
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006450 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006451 *
6452 * enable switch loop back or die - no point in a return value
6453 **/
6454static void i40e_enable_pf_switch_lb(struct i40e_pf *pf)
6455{
6456 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6457 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006458 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006459
6460 ctxt.seid = pf->main_vsi_seid;
6461 ctxt.pf_num = pf->hw.pf_id;
6462 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006463 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6464 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006465 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006466 "couldn't get PF vsi config, err %s aq_err %s\n",
6467 i40e_stat_str(&pf->hw, ret),
6468 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006469 return;
6470 }
6471 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6472 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6473 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6474
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006475 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6476 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006477 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006478 "update vsi switch failed, err %s aq_err %s\n",
6479 i40e_stat_str(&pf->hw, ret),
6480 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006481 }
6482}
6483
6484/**
6485 * i40e_disable_pf_switch_lb
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006486 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006487 *
6488 * disable switch loop back or die - no point in a return value
6489 **/
6490static void i40e_disable_pf_switch_lb(struct i40e_pf *pf)
6491{
6492 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6493 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006494 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006495
6496 ctxt.seid = pf->main_vsi_seid;
6497 ctxt.pf_num = pf->hw.pf_id;
6498 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006499 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6500 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006501 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006502 "couldn't get PF vsi config, err %s aq_err %s\n",
6503 i40e_stat_str(&pf->hw, ret),
6504 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006505 return;
6506 }
6507 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6508 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6509 ctxt.info.switch_id &= ~cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6510
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006511 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6512 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006513 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006514 "update vsi switch failed, err %s aq_err %s\n",
6515 i40e_stat_str(&pf->hw, ret),
6516 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006517 }
6518}
6519
6520/**
Neerav Parikh51616012015-02-06 08:52:14 +00006521 * i40e_config_bridge_mode - Configure the HW bridge mode
6522 * @veb: pointer to the bridge instance
6523 *
6524 * Configure the loop back mode for the LAN VSI that is downlink to the
6525 * specified HW bridge instance. It is expected this function is called
6526 * when a new HW bridge is instantiated.
6527 **/
6528static void i40e_config_bridge_mode(struct i40e_veb *veb)
6529{
6530 struct i40e_pf *pf = veb->pf;
6531
Shannon Nelson6dec1012015-09-28 14:12:30 -04006532 if (pf->hw.debug_mask & I40E_DEBUG_LAN)
6533 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
6534 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
Neerav Parikh51616012015-02-06 08:52:14 +00006535 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
6536 i40e_disable_pf_switch_lb(pf);
6537 else
6538 i40e_enable_pf_switch_lb(pf);
6539}
6540
6541/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006542 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
6543 * @veb: pointer to the VEB instance
6544 *
6545 * This is a recursive function that first builds the attached VSIs then
6546 * recurses in to build the next layer of VEB. We track the connections
6547 * through our own index numbers because the seid's from the HW could
6548 * change across the reset.
6549 **/
6550static int i40e_reconstitute_veb(struct i40e_veb *veb)
6551{
6552 struct i40e_vsi *ctl_vsi = NULL;
6553 struct i40e_pf *pf = veb->pf;
6554 int v, veb_idx;
6555 int ret;
6556
6557 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006558 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006559 if (pf->vsi[v] &&
6560 pf->vsi[v]->veb_idx == veb->idx &&
6561 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
6562 ctl_vsi = pf->vsi[v];
6563 break;
6564 }
6565 }
6566 if (!ctl_vsi) {
6567 dev_info(&pf->pdev->dev,
6568 "missing owner VSI for veb_idx %d\n", veb->idx);
6569 ret = -ENOENT;
6570 goto end_reconstitute;
6571 }
6572 if (ctl_vsi != pf->vsi[pf->lan_vsi])
6573 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
6574 ret = i40e_add_vsi(ctl_vsi);
6575 if (ret) {
6576 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006577 "rebuild of veb_idx %d owner VSI failed: %d\n",
6578 veb->idx, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006579 goto end_reconstitute;
6580 }
6581 i40e_vsi_reset_stats(ctl_vsi);
6582
6583 /* create the VEB in the switch and move the VSI onto the VEB */
6584 ret = i40e_add_veb(veb, ctl_vsi);
6585 if (ret)
6586 goto end_reconstitute;
6587
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07006588 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
6589 veb->bridge_mode = BRIDGE_MODE_VEB;
6590 else
6591 veb->bridge_mode = BRIDGE_MODE_VEPA;
Neerav Parikh51616012015-02-06 08:52:14 +00006592 i40e_config_bridge_mode(veb);
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00006593
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006594 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006595 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006596 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
6597 continue;
6598
6599 if (pf->vsi[v]->veb_idx == veb->idx) {
6600 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04006601
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006602 vsi->uplink_seid = veb->seid;
6603 ret = i40e_add_vsi(vsi);
6604 if (ret) {
6605 dev_info(&pf->pdev->dev,
6606 "rebuild of vsi_idx %d failed: %d\n",
6607 v, ret);
6608 goto end_reconstitute;
6609 }
6610 i40e_vsi_reset_stats(vsi);
6611 }
6612 }
6613
6614 /* create any VEBs attached to this VEB - RECURSION */
6615 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
6616 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
6617 pf->veb[veb_idx]->uplink_seid = veb->seid;
6618 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
6619 if (ret)
6620 break;
6621 }
6622 }
6623
6624end_reconstitute:
6625 return ret;
6626}
6627
6628/**
6629 * i40e_get_capabilities - get info about the HW
6630 * @pf: the PF struct
6631 **/
6632static int i40e_get_capabilities(struct i40e_pf *pf)
6633{
6634 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
6635 u16 data_size;
6636 int buf_len;
6637 int err;
6638
6639 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6640 do {
6641 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6642 if (!cap_buf)
6643 return -ENOMEM;
6644
6645 /* this loads the data into the hw struct for us */
6646 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6647 &data_size,
6648 i40e_aqc_opc_list_func_capabilities,
6649 NULL);
6650 /* data loaded, buffer no longer needed */
6651 kfree(cap_buf);
6652
6653 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6654 /* retry with a larger buffer */
6655 buf_len = data_size;
6656 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6657 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006658 "capability discovery failed, err %s aq_err %s\n",
6659 i40e_stat_str(&pf->hw, err),
6660 i40e_aq_str(&pf->hw,
6661 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006662 return -ENODEV;
6663 }
6664 } while (err);
6665
6666 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6667 dev_info(&pf->pdev->dev,
6668 "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",
6669 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6670 pf->hw.func_caps.num_msix_vectors,
6671 pf->hw.func_caps.num_msix_vectors_vf,
6672 pf->hw.func_caps.fd_filters_guaranteed,
6673 pf->hw.func_caps.fd_filters_best_effort,
6674 pf->hw.func_caps.num_tx_qp,
6675 pf->hw.func_caps.num_vsis);
6676
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006677#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6678 + pf->hw.func_caps.num_vfs)
6679 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6680 dev_info(&pf->pdev->dev,
6681 "got num_vsis %d, setting num_vsis to %d\n",
6682 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6683 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6684 }
6685
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006686 return 0;
6687}
6688
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006689static int i40e_vsi_clear(struct i40e_vsi *vsi);
6690
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006691/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006692 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006693 * @pf: board private structure
6694 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006695static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006696{
6697 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006698 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006699
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006700 /* quick workaround for an NVM issue that leaves a critical register
6701 * uninitialized
6702 */
6703 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6704 static const u32 hkey[] = {
6705 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6706 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6707 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6708 0x95b3a76d};
6709
6710 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6711 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6712 }
6713
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006714 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006715 return;
6716
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006717 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006718 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006719 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006720 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006721 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006722 break;
6723 }
6724 }
6725
6726 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006727 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006728 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6729 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006730 if (!vsi) {
6731 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006732 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6733 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006734 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006735 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006736
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006737 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006738}
6739
6740/**
6741 * i40e_fdir_teardown - release the Flow Director resources
6742 * @pf: board private structure
6743 **/
6744static void i40e_fdir_teardown(struct i40e_pf *pf)
6745{
6746 int i;
6747
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006748 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006749 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006750 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6751 i40e_vsi_release(pf->vsi[i]);
6752 break;
6753 }
6754 }
6755}
6756
6757/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006758 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006759 * @pf: board private structure
6760 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006761 * Close up the VFs and other things in prep for PF Reset.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006762 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006763static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006764{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006765 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006766 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006767 u32 v;
6768
6769 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6770 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006771 return;
Mitch Williamsd3ce57342016-03-10 14:59:46 -08006772 if (i40e_check_asq_alive(&pf->hw))
6773 i40e_vc_notify_reset(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006774
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006775 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006776
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006777 /* quiesce the VSIs and their queues that are not already DOWN */
6778 i40e_pf_quiesce_all_vsi(pf);
6779
Mitch Williams505682c2014-05-20 08:01:37 +00006780 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006781 if (pf->vsi[v])
6782 pf->vsi[v]->seid = 0;
6783 }
6784
6785 i40e_shutdown_adminq(&pf->hw);
6786
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006787 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006788 if (hw->hmc.hmc_obj) {
6789 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006790 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006791 dev_warn(&pf->pdev->dev,
6792 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006793 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006794}
6795
6796/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006797 * i40e_send_version - update firmware with driver version
6798 * @pf: PF struct
6799 */
6800static void i40e_send_version(struct i40e_pf *pf)
6801{
6802 struct i40e_driver_version dv;
6803
6804 dv.major_version = DRV_VERSION_MAJOR;
6805 dv.minor_version = DRV_VERSION_MINOR;
6806 dv.build_version = DRV_VERSION_BUILD;
6807 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006808 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006809 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6810}
6811
6812/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006813 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006814 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006815 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006816 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006817static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006818{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006819 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006820 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006821 i40e_status ret;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006822 u32 val;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006823 u32 v;
6824
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006825 /* Now we wait for GRST to settle out.
6826 * We don't have to delete the VEBs or VSIs from the hw switch
6827 * because the reset will make them disappear.
6828 */
6829 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006830 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006831 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006832 set_bit(__I40E_RESET_FAILED, &pf->state);
6833 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006834 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006835 pf->pfr_count++;
6836
6837 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006838 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006839 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006840
6841 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6842 ret = i40e_init_adminq(&pf->hw);
6843 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006844 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, err %s aq_err %s\n",
6845 i40e_stat_str(&pf->hw, ret),
6846 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006847 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006848 }
6849
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006850 /* re-verify the eeprom if we just had an EMP reset */
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00006851 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state))
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006852 i40e_verify_eeprom(pf);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006853
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006854 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006855 ret = i40e_get_capabilities(pf);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006856 if (ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006857 goto end_core_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006858
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006859 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6860 hw->func_caps.num_rx_qp,
6861 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6862 if (ret) {
6863 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6864 goto end_core_reset;
6865 }
6866 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6867 if (ret) {
6868 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6869 goto end_core_reset;
6870 }
6871
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006872#ifdef CONFIG_I40E_DCB
6873 ret = i40e_init_pf_dcb(pf);
6874 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00006875 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6876 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6877 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006878 }
6879#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006880#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04006881 i40e_init_pf_fcoe(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006882
Vasu Dev38e00432014-08-01 13:27:03 -07006883#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006884 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006885 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006886 if (ret)
6887 goto end_core_reset;
6888
Shannon Nelson2f0aff42016-01-04 10:33:08 -08006889 /* The driver only wants link up/down and module qualification
6890 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006891 */
6892 ret = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -08006893 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -07006894 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -08006895 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006896 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006897 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
6898 i40e_stat_str(&pf->hw, ret),
6899 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006900
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006901 /* make sure our flow control settings are restored */
6902 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6903 if (ret)
Neerav Parikh8279e492015-09-03 17:18:50 -04006904 dev_dbg(&pf->pdev->dev, "setting flow control: ret = %s last_status = %s\n",
6905 i40e_stat_str(&pf->hw, ret),
6906 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006907
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006908 /* Rebuild the VSIs and VEBs that existed before reset.
6909 * They are still in our local switch element arrays, so only
6910 * need to rebuild the switch model in the HW.
6911 *
6912 * If there were VEBs but the reconstitution failed, we'll try
6913 * try to recover minimal use by getting the basic PF VSI working.
6914 */
6915 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006916 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006917 /* find the one VEB connected to the MAC, and find orphans */
6918 for (v = 0; v < I40E_MAX_VEB; v++) {
6919 if (!pf->veb[v])
6920 continue;
6921
6922 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6923 pf->veb[v]->uplink_seid == 0) {
6924 ret = i40e_reconstitute_veb(pf->veb[v]);
6925
6926 if (!ret)
6927 continue;
6928
6929 /* If Main VEB failed, we're in deep doodoo,
6930 * so give up rebuilding the switch and set up
6931 * for minimal rebuild of PF VSI.
6932 * If orphan failed, we'll report the error
6933 * but try to keep going.
6934 */
6935 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6936 dev_info(&pf->pdev->dev,
6937 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6938 ret);
6939 pf->vsi[pf->lan_vsi]->uplink_seid
6940 = pf->mac_seid;
6941 break;
6942 } else if (pf->veb[v]->uplink_seid == 0) {
6943 dev_info(&pf->pdev->dev,
6944 "rebuild of orphan VEB failed: %d\n",
6945 ret);
6946 }
6947 }
6948 }
6949 }
6950
6951 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006952 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006953 /* no VEB, so rebuild only the Main VSI */
6954 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6955 if (ret) {
6956 dev_info(&pf->pdev->dev,
6957 "rebuild of Main VSI failed: %d\n", ret);
6958 goto end_core_reset;
6959 }
6960 }
6961
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006962 /* Reconfigure hardware for allowing smaller MSS in the case
6963 * of TSO, so that we avoid the MDD being fired and causing
6964 * a reset in the case of small MSS+TSO.
6965 */
6966#define I40E_REG_MSS 0x000E64DC
6967#define I40E_REG_MSS_MIN_MASK 0x3FF0000
6968#define I40E_64BYTE_MSS 0x400000
6969 val = rd32(hw, I40E_REG_MSS);
6970 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
6971 val &= ~I40E_REG_MSS_MIN_MASK;
6972 val |= I40E_64BYTE_MSS;
6973 wr32(hw, I40E_REG_MSS, val);
6974 }
6975
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08006976 if (pf->flags & I40E_FLAG_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00006977 msleep(75);
6978 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6979 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006980 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
6981 i40e_stat_str(&pf->hw, ret),
6982 i40e_aq_str(&pf->hw,
6983 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006984 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006985 /* reinit the misc interrupt */
6986 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6987 ret = i40e_setup_misc_vector(pf);
6988
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04006989 /* Add a filter to drop all Flow control frames from any VSI from being
6990 * transmitted. By doing so we stop a malicious VF from sending out
6991 * PAUSE or PFC frames and potentially controlling traffic for other
6992 * PF/VF VSIs.
6993 * The FW can still send Flow control frames if enabled.
6994 */
6995 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
6996 pf->main_vsi_seid);
6997
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006998 /* restart the VSIs that were rebuilt and running before the reset */
6999 i40e_pf_unquiesce_all_vsi(pf);
7000
Mitch Williams69f64b22014-02-13 03:48:46 -08007001 if (pf->num_alloc_vfs) {
7002 for (v = 0; v < pf->num_alloc_vfs; v++)
7003 i40e_reset_vf(&pf->vf[v], true);
7004 }
7005
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007006 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00007007 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007008
7009end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00007010 clear_bit(__I40E_RESET_FAILED, &pf->state);
7011clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007012 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
7013}
7014
7015/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00007016 * i40e_handle_reset_warning - prep for the PF to reset, reset and rebuild
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007017 * @pf: board private structure
7018 *
7019 * Close up the VFs and other things in prep for a Core Reset,
7020 * then get ready to rebuild the world.
7021 **/
7022static void i40e_handle_reset_warning(struct i40e_pf *pf)
7023{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00007024 i40e_prep_for_reset(pf);
7025 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007026}
7027
7028/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007029 * i40e_handle_mdd_event
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00007030 * @pf: pointer to the PF structure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007031 *
7032 * Called from the MDD irq handler to identify possibly malicious vfs
7033 **/
7034static void i40e_handle_mdd_event(struct i40e_pf *pf)
7035{
7036 struct i40e_hw *hw = &pf->hw;
7037 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00007038 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007039 struct i40e_vf *vf;
7040 u32 reg;
7041 int i;
7042
7043 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
7044 return;
7045
7046 /* find what triggered the MDD event */
7047 reg = rd32(hw, I40E_GL_MDET_TX);
7048 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007049 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
7050 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00007051 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007052 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07007053 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007054 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00007055 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
7056 I40E_GL_MDET_TX_QUEUE_SHIFT) -
7057 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007058 if (netif_msg_tx_err(pf))
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00007059 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 +00007060 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007061 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
7062 mdd_detected = true;
7063 }
7064 reg = rd32(hw, I40E_GL_MDET_RX);
7065 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007066 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
7067 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07007068 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00007069 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00007070 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
7071 I40E_GL_MDET_RX_QUEUE_SHIFT) -
7072 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007073 if (netif_msg_rx_err(pf))
7074 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
7075 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007076 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
7077 mdd_detected = true;
7078 }
7079
Neerav Parikhdf430b12014-06-04 01:23:15 +00007080 if (mdd_detected) {
7081 reg = rd32(hw, I40E_PF_MDET_TX);
7082 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
7083 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007084 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00007085 pf_mdd_detected = true;
7086 }
7087 reg = rd32(hw, I40E_PF_MDET_RX);
7088 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
7089 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007090 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00007091 pf_mdd_detected = true;
7092 }
7093 /* Queue belongs to the PF, initiate a reset */
7094 if (pf_mdd_detected) {
7095 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
7096 i40e_service_event_schedule(pf);
7097 }
7098 }
7099
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007100 /* see if one of the VFs needs its hand slapped */
7101 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
7102 vf = &(pf->vf[i]);
7103 reg = rd32(hw, I40E_VP_MDET_TX(i));
7104 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
7105 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
7106 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007107 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
7108 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007109 }
7110
7111 reg = rd32(hw, I40E_VP_MDET_RX(i));
7112 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
7113 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
7114 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007115 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
7116 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007117 }
7118
7119 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
7120 dev_info(&pf->pdev->dev,
7121 "Too many MDD events on VF %d, disabled\n", i);
7122 dev_info(&pf->pdev->dev,
7123 "Use PF Control I/F to re-enable the VF\n");
7124 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
7125 }
7126 }
7127
7128 /* re-enable mdd interrupt cause */
7129 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
7130 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
7131 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
7132 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
7133 i40e_flush(hw);
7134}
7135
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007136/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08007137 * i40e_sync_udp_filters_subtask - Sync the VSI filter list with HW
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007138 * @pf: board private structure
7139 **/
Singhai, Anjali6a899022015-12-14 12:21:18 -08007140static void i40e_sync_udp_filters_subtask(struct i40e_pf *pf)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007141{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007142 struct i40e_hw *hw = &pf->hw;
7143 i40e_status ret;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007144 __be16 port;
7145 int i;
7146
Singhai, Anjali6a899022015-12-14 12:21:18 -08007147 if (!(pf->flags & I40E_FLAG_UDP_FILTER_SYNC))
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007148 return;
7149
Singhai, Anjali6a899022015-12-14 12:21:18 -08007150 pf->flags &= ~I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007151
7152 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Singhai, Anjali6a899022015-12-14 12:21:18 -08007153 if (pf->pending_udp_bitmap & BIT_ULL(i)) {
7154 pf->pending_udp_bitmap &= ~BIT_ULL(i);
7155 port = pf->udp_ports[i].index;
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007156 if (port)
Carolyn Wybornyb3f5c7b2016-08-24 11:33:51 -07007157 ret = i40e_aq_add_udp_tunnel(hw, port,
7158 pf->udp_ports[i].type,
7159 NULL, NULL);
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007160 else
7161 ret = i40e_aq_del_udp_tunnel(hw, i, NULL);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007162
7163 if (ret) {
Carolyn Wyborny730a8f82016-02-17 16:12:16 -08007164 dev_dbg(&pf->pdev->dev,
7165 "%s %s port %d, index %d failed, err %s aq_err %s\n",
7166 pf->udp_ports[i].type ? "vxlan" : "geneve",
7167 port ? "add" : "delete",
7168 ntohs(port), i,
7169 i40e_stat_str(&pf->hw, ret),
7170 i40e_aq_str(&pf->hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007171 pf->hw.aq.asq_last_status));
Singhai, Anjali6a899022015-12-14 12:21:18 -08007172 pf->udp_ports[i].index = 0;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007173 }
7174 }
7175 }
7176}
7177
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007178/**
7179 * i40e_service_task - Run the driver's async subtasks
7180 * @work: pointer to work_struct containing our data
7181 **/
7182static void i40e_service_task(struct work_struct *work)
7183{
7184 struct i40e_pf *pf = container_of(work,
7185 struct i40e_pf,
7186 service_task);
7187 unsigned long start_time = jiffies;
7188
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007189 /* don't bother with service tasks if a reset is in progress */
7190 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7191 i40e_service_event_complete(pf);
7192 return;
7193 }
7194
Kiran Patilb03a8c12015-09-24 18:13:15 -04007195 i40e_detect_recover_hung(pf);
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08007196 i40e_sync_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007197 i40e_reset_subtask(pf);
7198 i40e_handle_mdd_event(pf);
7199 i40e_vc_process_vflr_event(pf);
7200 i40e_watchdog_subtask(pf);
7201 i40e_fdir_reinit_subtask(pf);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007202 i40e_client_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007203 i40e_sync_filters_subtask(pf);
Singhai, Anjali6a899022015-12-14 12:21:18 -08007204 i40e_sync_udp_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007205 i40e_clean_adminq_subtask(pf);
7206
7207 i40e_service_event_complete(pf);
7208
7209 /* If the tasks have taken longer than one timer cycle or there
7210 * is more work to be done, reschedule the service task now
7211 * rather than wait for the timer to tick again.
7212 */
7213 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
7214 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
7215 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
7216 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
7217 i40e_service_event_schedule(pf);
7218}
7219
7220/**
7221 * i40e_service_timer - timer callback
7222 * @data: pointer to PF struct
7223 **/
7224static void i40e_service_timer(unsigned long data)
7225{
7226 struct i40e_pf *pf = (struct i40e_pf *)data;
7227
7228 mod_timer(&pf->service_timer,
7229 round_jiffies(jiffies + pf->service_timer_period));
7230 i40e_service_event_schedule(pf);
7231}
7232
7233/**
7234 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
7235 * @vsi: the VSI being configured
7236 **/
7237static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
7238{
7239 struct i40e_pf *pf = vsi->back;
7240
7241 switch (vsi->type) {
7242 case I40E_VSI_MAIN:
7243 vsi->alloc_queue_pairs = pf->num_lan_qps;
7244 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7245 I40E_REQ_DESCRIPTOR_MULTIPLE);
7246 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7247 vsi->num_q_vectors = pf->num_lan_msix;
7248 else
7249 vsi->num_q_vectors = 1;
7250
7251 break;
7252
7253 case I40E_VSI_FDIR:
7254 vsi->alloc_queue_pairs = 1;
7255 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
7256 I40E_REQ_DESCRIPTOR_MULTIPLE);
Tushar Davea70e4072016-05-16 12:40:53 -07007257 vsi->num_q_vectors = pf->num_fdsb_msix;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007258 break;
7259
7260 case I40E_VSI_VMDQ2:
7261 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
7262 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7263 I40E_REQ_DESCRIPTOR_MULTIPLE);
7264 vsi->num_q_vectors = pf->num_vmdq_msix;
7265 break;
7266
7267 case I40E_VSI_SRIOV:
7268 vsi->alloc_queue_pairs = pf->num_vf_qps;
7269 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7270 I40E_REQ_DESCRIPTOR_MULTIPLE);
7271 break;
7272
Vasu Dev38e00432014-08-01 13:27:03 -07007273#ifdef I40E_FCOE
7274 case I40E_VSI_FCOE:
7275 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
7276 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7277 I40E_REQ_DESCRIPTOR_MULTIPLE);
7278 vsi->num_q_vectors = pf->num_fcoe_msix;
7279 break;
7280
7281#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007282 default:
7283 WARN_ON(1);
7284 return -ENODATA;
7285 }
7286
7287 return 0;
7288}
7289
7290/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007291 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
7292 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007293 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007294 *
7295 * On error: returns error code (negative)
7296 * On success: returns 0
7297 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007298static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007299{
7300 int size;
7301 int ret = 0;
7302
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007303 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007304 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
7305 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
7306 if (!vsi->tx_rings)
7307 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007308 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
7309
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007310 if (alloc_qvectors) {
7311 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00007312 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007313 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
7314 if (!vsi->q_vectors) {
7315 ret = -ENOMEM;
7316 goto err_vectors;
7317 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007318 }
7319 return ret;
7320
7321err_vectors:
7322 kfree(vsi->tx_rings);
7323 return ret;
7324}
7325
7326/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007327 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
7328 * @pf: board private structure
7329 * @type: type of VSI
7330 *
7331 * On error: returns error code (negative)
7332 * On success: returns vsi index in PF (positive)
7333 **/
7334static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
7335{
7336 int ret = -ENODEV;
7337 struct i40e_vsi *vsi;
7338 int vsi_idx;
7339 int i;
7340
7341 /* Need to protect the allocation of the VSIs at the PF level */
7342 mutex_lock(&pf->switch_mutex);
7343
7344 /* VSI list may be fragmented if VSI creation/destruction has
7345 * been happening. We can afford to do a quick scan to look
7346 * for any free VSIs in the list.
7347 *
7348 * find next empty vsi slot, looping back around if necessary
7349 */
7350 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00007351 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007352 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00007353 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007354 i = 0;
7355 while (i < pf->next_vsi && pf->vsi[i])
7356 i++;
7357 }
7358
Mitch Williams505682c2014-05-20 08:01:37 +00007359 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007360 vsi_idx = i; /* Found one! */
7361 } else {
7362 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00007363 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007364 }
7365 pf->next_vsi = ++i;
7366
7367 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
7368 if (!vsi) {
7369 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00007370 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007371 }
7372 vsi->type = type;
7373 vsi->back = pf;
7374 set_bit(__I40E_DOWN, &vsi->state);
7375 vsi->flags = 0;
7376 vsi->idx = vsi_idx;
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04007377 vsi->int_rate_limit = 0;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00007378 vsi->rss_table_size = (vsi->type == I40E_VSI_MAIN) ?
7379 pf->rss_table_size : 64;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007380 vsi->netdev_registered = false;
7381 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
7382 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00007383 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007384
Alexander Duyck9f65e152013-09-28 06:00:58 +00007385 ret = i40e_set_num_rings_in_vsi(vsi);
7386 if (ret)
7387 goto err_rings;
7388
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007389 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007390 if (ret)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007391 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00007392
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007393 /* Setup default MSIX irq handler for VSI */
7394 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
7395
Kiran Patil21659032015-09-30 14:09:03 -04007396 /* Initialize VSI lock */
7397 spin_lock_init(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007398 pf->vsi[vsi_idx] = vsi;
7399 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00007400 goto unlock_pf;
7401
Alexander Duyck9f65e152013-09-28 06:00:58 +00007402err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00007403 pf->next_vsi = i - 1;
7404 kfree(vsi);
7405unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007406 mutex_unlock(&pf->switch_mutex);
7407 return ret;
7408}
7409
7410/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007411 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
7412 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007413 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007414 *
7415 * On error: returns error code (negative)
7416 * On success: returns 0
7417 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007418static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007419{
7420 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007421 if (free_qvectors) {
7422 kfree(vsi->q_vectors);
7423 vsi->q_vectors = NULL;
7424 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007425 kfree(vsi->tx_rings);
7426 vsi->tx_rings = NULL;
7427 vsi->rx_rings = NULL;
7428}
7429
7430/**
Helin Zhang28c58692015-10-26 19:44:27 -04007431 * i40e_clear_rss_config_user - clear the user configured RSS hash keys
7432 * and lookup table
7433 * @vsi: Pointer to VSI structure
7434 */
7435static void i40e_clear_rss_config_user(struct i40e_vsi *vsi)
7436{
7437 if (!vsi)
7438 return;
7439
7440 kfree(vsi->rss_hkey_user);
7441 vsi->rss_hkey_user = NULL;
7442
7443 kfree(vsi->rss_lut_user);
7444 vsi->rss_lut_user = NULL;
7445}
7446
7447/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007448 * i40e_vsi_clear - Deallocate the VSI provided
7449 * @vsi: the VSI being un-configured
7450 **/
7451static int i40e_vsi_clear(struct i40e_vsi *vsi)
7452{
7453 struct i40e_pf *pf;
7454
7455 if (!vsi)
7456 return 0;
7457
7458 if (!vsi->back)
7459 goto free_vsi;
7460 pf = vsi->back;
7461
7462 mutex_lock(&pf->switch_mutex);
7463 if (!pf->vsi[vsi->idx]) {
7464 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
7465 vsi->idx, vsi->idx, vsi, vsi->type);
7466 goto unlock_vsi;
7467 }
7468
7469 if (pf->vsi[vsi->idx] != vsi) {
7470 dev_err(&pf->pdev->dev,
7471 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
7472 pf->vsi[vsi->idx]->idx,
7473 pf->vsi[vsi->idx],
7474 pf->vsi[vsi->idx]->type,
7475 vsi->idx, vsi, vsi->type);
7476 goto unlock_vsi;
7477 }
7478
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00007479 /* updates the PF for this cleared vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007480 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7481 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
7482
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007483 i40e_vsi_free_arrays(vsi, true);
Helin Zhang28c58692015-10-26 19:44:27 -04007484 i40e_clear_rss_config_user(vsi);
Alexander Duyck493fb302013-09-28 07:01:44 +00007485
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007486 pf->vsi[vsi->idx] = NULL;
7487 if (vsi->idx < pf->next_vsi)
7488 pf->next_vsi = vsi->idx;
7489
7490unlock_vsi:
7491 mutex_unlock(&pf->switch_mutex);
7492free_vsi:
7493 kfree(vsi);
7494
7495 return 0;
7496}
7497
7498/**
Alexander Duyck9f65e152013-09-28 06:00:58 +00007499 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
7500 * @vsi: the VSI being cleaned
7501 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007502static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007503{
7504 int i;
7505
Greg Rose8e9dca52013-12-18 13:45:53 +00007506 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00007507 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00007508 kfree_rcu(vsi->tx_rings[i], rcu);
7509 vsi->tx_rings[i] = NULL;
7510 vsi->rx_rings[i] = NULL;
7511 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007512 }
Alexander Duyck9f65e152013-09-28 06:00:58 +00007513}
7514
7515/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007516 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
7517 * @vsi: the VSI being configured
7518 **/
7519static int i40e_alloc_rings(struct i40e_vsi *vsi)
7520{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00007521 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007522 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007523 int i;
7524
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007525 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00007526 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007527 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e152013-09-28 06:00:58 +00007528 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
7529 if (!tx_ring)
7530 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007531
7532 tx_ring->queue_index = i;
7533 tx_ring->reg_idx = vsi->base_queue + i;
7534 tx_ring->ring_active = false;
7535 tx_ring->vsi = vsi;
7536 tx_ring->netdev = vsi->netdev;
7537 tx_ring->dev = &pf->pdev->dev;
7538 tx_ring->count = vsi->num_desc;
7539 tx_ring->size = 0;
7540 tx_ring->dcb_tc = 0;
Anjali Singhai Jain8e0764b2015-06-05 12:20:30 -04007541 if (vsi->back->flags & I40E_FLAG_WB_ON_ITR_CAPABLE)
7542 tx_ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
Kan Lianga75e8002016-02-19 09:24:04 -05007543 tx_ring->tx_itr_setting = pf->tx_itr_default;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007544 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007545
Alexander Duyck9f65e152013-09-28 06:00:58 +00007546 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007547 rx_ring->queue_index = i;
7548 rx_ring->reg_idx = vsi->base_queue + i;
7549 rx_ring->ring_active = false;
7550 rx_ring->vsi = vsi;
7551 rx_ring->netdev = vsi->netdev;
7552 rx_ring->dev = &pf->pdev->dev;
7553 rx_ring->count = vsi->num_desc;
7554 rx_ring->size = 0;
7555 rx_ring->dcb_tc = 0;
Kan Lianga75e8002016-02-19 09:24:04 -05007556 rx_ring->rx_itr_setting = pf->rx_itr_default;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007557 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007558 }
7559
7560 return 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007561
7562err_out:
7563 i40e_vsi_clear_rings(vsi);
7564 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007565}
7566
7567/**
7568 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
7569 * @pf: board private structure
7570 * @vectors: the number of MSI-X vectors to request
7571 *
7572 * Returns the number of vectors reserved, or error
7573 **/
7574static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
7575{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007576 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
7577 I40E_MIN_MSIX, vectors);
7578 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007579 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007580 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007581 vectors = 0;
7582 }
7583
7584 return vectors;
7585}
7586
7587/**
7588 * i40e_init_msix - Setup the MSIX capability
7589 * @pf: board private structure
7590 *
7591 * Work with the OS to set up the MSIX vectors needed.
7592 *
Shannon Nelson3b444392015-02-26 16:15:57 +00007593 * Returns the number of vectors reserved or negative on failure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007594 **/
7595static int i40e_init_msix(struct i40e_pf *pf)
7596{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007597 struct i40e_hw *hw = &pf->hw;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007598 int vectors_left;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007599 int v_budget, i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007600 int v_actual;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007601 int iwarp_requested = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007602
7603 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
7604 return -ENODEV;
7605
7606 /* The number of vectors we'll request will be comprised of:
7607 * - Add 1 for "other" cause for Admin Queue events, etc.
7608 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007609 * - Queues being used for RSS.
7610 * We don't need as many as max_rss_size vectors.
7611 * use rss_size instead in the calculation since that
7612 * is governed by number of cpus in the system.
7613 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007614 * - The number of VMDq pairs
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007615 * - The CPU count within the NUMA node if iWARP is enabled
Vasu Dev38e00432014-08-01 13:27:03 -07007616#ifdef I40E_FCOE
7617 * - The number of FCOE qps.
7618#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007619 * Once we count this up, try the request.
7620 *
7621 * If we can't get what we want, we'll simplify to nearly nothing
7622 * and try again. If that still fails, we punt.
7623 */
Shannon Nelson1e200e42015-02-27 09:15:24 +00007624 vectors_left = hw->func_caps.num_msix_vectors;
7625 v_budget = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007626
Shannon Nelson1e200e42015-02-27 09:15:24 +00007627 /* reserve one vector for miscellaneous handler */
7628 if (vectors_left) {
7629 v_budget++;
7630 vectors_left--;
7631 }
7632
7633 /* reserve vectors for the main PF traffic queues */
7634 pf->num_lan_msix = min_t(int, num_online_cpus(), vectors_left);
7635 vectors_left -= pf->num_lan_msix;
7636 v_budget += pf->num_lan_msix;
7637
7638 /* reserve one vector for sideband flow director */
7639 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7640 if (vectors_left) {
Tushar Davea70e4072016-05-16 12:40:53 -07007641 pf->num_fdsb_msix = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007642 v_budget++;
7643 vectors_left--;
7644 } else {
Tushar Davea70e4072016-05-16 12:40:53 -07007645 pf->num_fdsb_msix = 0;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007646 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
7647 }
7648 }
John W Linville83840e42015-01-14 03:06:28 +00007649
Vasu Dev38e00432014-08-01 13:27:03 -07007650#ifdef I40E_FCOE
Shannon Nelson1e200e42015-02-27 09:15:24 +00007651 /* can we reserve enough for FCoE? */
Vasu Dev38e00432014-08-01 13:27:03 -07007652 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
Shannon Nelson1e200e42015-02-27 09:15:24 +00007653 if (!vectors_left)
7654 pf->num_fcoe_msix = 0;
7655 else if (vectors_left >= pf->num_fcoe_qps)
7656 pf->num_fcoe_msix = pf->num_fcoe_qps;
7657 else
7658 pf->num_fcoe_msix = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07007659 v_budget += pf->num_fcoe_msix;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007660 vectors_left -= pf->num_fcoe_msix;
Vasu Dev38e00432014-08-01 13:27:03 -07007661 }
Shannon Nelson1e200e42015-02-27 09:15:24 +00007662
Vasu Dev38e00432014-08-01 13:27:03 -07007663#endif
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007664 /* can we reserve enough for iWARP? */
7665 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7666 if (!vectors_left)
7667 pf->num_iwarp_msix = 0;
7668 else if (vectors_left < pf->num_iwarp_msix)
7669 pf->num_iwarp_msix = 1;
7670 v_budget += pf->num_iwarp_msix;
7671 vectors_left -= pf->num_iwarp_msix;
7672 }
7673
Shannon Nelson1e200e42015-02-27 09:15:24 +00007674 /* any vectors left over go for VMDq support */
7675 if (pf->flags & I40E_FLAG_VMDQ_ENABLED) {
7676 int vmdq_vecs_wanted = pf->num_vmdq_vsis * pf->num_vmdq_qps;
7677 int vmdq_vecs = min_t(int, vectors_left, vmdq_vecs_wanted);
7678
7679 /* if we're short on vectors for what's desired, we limit
7680 * the queues per vmdq. If this is still more than are
7681 * available, the user will need to change the number of
7682 * queues/vectors used by the PF later with the ethtool
7683 * channels command
7684 */
7685 if (vmdq_vecs < vmdq_vecs_wanted)
7686 pf->num_vmdq_qps = 1;
7687 pf->num_vmdq_msix = pf->num_vmdq_qps;
7688
7689 v_budget += vmdq_vecs;
7690 vectors_left -= vmdq_vecs;
7691 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007692
7693 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
7694 GFP_KERNEL);
7695 if (!pf->msix_entries)
7696 return -ENOMEM;
7697
7698 for (i = 0; i < v_budget; i++)
7699 pf->msix_entries[i].entry = i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007700 v_actual = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007701
Shannon Nelson3b444392015-02-26 16:15:57 +00007702 if (v_actual != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007703 /* If we have limited resources, we will start with no vectors
7704 * for the special features and then allocate vectors to some
7705 * of these features based on the policy and at the end disable
7706 * the features that did not get any vectors.
7707 */
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007708 iwarp_requested = pf->num_iwarp_msix;
7709 pf->num_iwarp_msix = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07007710#ifdef I40E_FCOE
7711 pf->num_fcoe_qps = 0;
7712 pf->num_fcoe_msix = 0;
7713#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007714 pf->num_vmdq_msix = 0;
7715 }
7716
Shannon Nelson3b444392015-02-26 16:15:57 +00007717 if (v_actual < I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007718 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
7719 kfree(pf->msix_entries);
7720 pf->msix_entries = NULL;
7721 return -ENODEV;
7722
Shannon Nelson3b444392015-02-26 16:15:57 +00007723 } else if (v_actual == I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007724 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007725 pf->num_vmdq_vsis = 0;
7726 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007727 pf->num_lan_qps = 1;
7728 pf->num_lan_msix = 1;
7729
Shannon Nelson3b444392015-02-26 16:15:57 +00007730 } else if (v_actual != v_budget) {
7731 int vec;
7732
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007733 /* reserve the misc vector */
Shannon Nelson3b444392015-02-26 16:15:57 +00007734 vec = v_actual - 1;
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007735
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007736 /* Scale vector usage down */
7737 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007738 pf->num_vmdq_vsis = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007739 pf->num_vmdq_qps = 1;
7740 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007741
7742 /* partition out the remaining vectors */
7743 switch (vec) {
7744 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007745 pf->num_lan_msix = 1;
7746 break;
7747 case 3:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007748 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7749 pf->num_lan_msix = 1;
7750 pf->num_iwarp_msix = 1;
7751 } else {
7752 pf->num_lan_msix = 2;
7753 }
Vasu Dev38e00432014-08-01 13:27:03 -07007754#ifdef I40E_FCOE
7755 /* give one vector to FCoE */
7756 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7757 pf->num_lan_msix = 1;
7758 pf->num_fcoe_msix = 1;
7759 }
Vasu Dev38e00432014-08-01 13:27:03 -07007760#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007761 break;
7762 default:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007763 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7764 pf->num_iwarp_msix = min_t(int, (vec / 3),
7765 iwarp_requested);
7766 pf->num_vmdq_vsis = min_t(int, (vec / 3),
7767 I40E_DEFAULT_NUM_VMDQ_VSI);
7768 } else {
7769 pf->num_vmdq_vsis = min_t(int, (vec / 2),
7770 I40E_DEFAULT_NUM_VMDQ_VSI);
7771 }
7772 pf->num_lan_msix = min_t(int,
7773 (vec - (pf->num_iwarp_msix + pf->num_vmdq_vsis)),
7774 pf->num_lan_msix);
Vasu Dev38e00432014-08-01 13:27:03 -07007775#ifdef I40E_FCOE
7776 /* give one vector to FCoE */
7777 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7778 pf->num_fcoe_msix = 1;
7779 vec--;
7780 }
7781#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007782 break;
7783 }
7784 }
7785
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007786 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7787 (pf->num_vmdq_msix == 0)) {
7788 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7789 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7790 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007791
7792 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
7793 (pf->num_iwarp_msix == 0)) {
7794 dev_info(&pf->pdev->dev, "IWARP disabled, not enough MSI-X vectors\n");
7795 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
7796 }
Vasu Dev38e00432014-08-01 13:27:03 -07007797#ifdef I40E_FCOE
7798
7799 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7800 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7801 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7802 }
7803#endif
Shannon Nelson3b444392015-02-26 16:15:57 +00007804 return v_actual;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007805}
7806
7807/**
Greg Rose90e04072014-03-06 08:59:57 +00007808 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00007809 * @vsi: the VSI being configured
7810 * @v_idx: index of the vector in the vsi struct
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007811 * @cpu: cpu to be used on affinity_mask
Alexander Duyck493fb302013-09-28 07:01:44 +00007812 *
7813 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7814 **/
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007815static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx, int cpu)
Alexander Duyck493fb302013-09-28 07:01:44 +00007816{
7817 struct i40e_q_vector *q_vector;
7818
7819 /* allocate q_vector */
7820 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7821 if (!q_vector)
7822 return -ENOMEM;
7823
7824 q_vector->vsi = vsi;
7825 q_vector->v_idx = v_idx;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007826 cpumask_set_cpu(cpu, &q_vector->affinity_mask);
7827
Alexander Duyck493fb302013-09-28 07:01:44 +00007828 if (vsi->netdev)
7829 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00007830 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007831
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007832 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7833 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7834
Alexander Duyck493fb302013-09-28 07:01:44 +00007835 /* tie q_vector and vsi together */
7836 vsi->q_vectors[v_idx] = q_vector;
7837
7838 return 0;
7839}
7840
7841/**
Greg Rose90e04072014-03-06 08:59:57 +00007842 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007843 * @vsi: the VSI being configured
7844 *
7845 * We allocate one q_vector per queue interrupt. If allocation fails we
7846 * return -ENOMEM.
7847 **/
Greg Rose90e04072014-03-06 08:59:57 +00007848static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007849{
7850 struct i40e_pf *pf = vsi->back;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007851 int err, v_idx, num_q_vectors, current_cpu;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007852
7853 /* if not MSIX, give the one vector only to the LAN VSI */
7854 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7855 num_q_vectors = vsi->num_q_vectors;
7856 else if (vsi == pf->vsi[pf->lan_vsi])
7857 num_q_vectors = 1;
7858 else
7859 return -EINVAL;
7860
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007861 current_cpu = cpumask_first(cpu_online_mask);
7862
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007863 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007864 err = i40e_vsi_alloc_q_vector(vsi, v_idx, current_cpu);
Alexander Duyck493fb302013-09-28 07:01:44 +00007865 if (err)
7866 goto err_out;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007867 current_cpu = cpumask_next(current_cpu, cpu_online_mask);
7868 if (unlikely(current_cpu >= nr_cpu_ids))
7869 current_cpu = cpumask_first(cpu_online_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007870 }
7871
7872 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007873
7874err_out:
7875 while (v_idx--)
7876 i40e_free_q_vector(vsi, v_idx);
7877
7878 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007879}
7880
7881/**
7882 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7883 * @pf: board private structure to initialize
7884 **/
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007885static int i40e_init_interrupt_scheme(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007886{
Shannon Nelson3b444392015-02-26 16:15:57 +00007887 int vectors = 0;
7888 ssize_t size;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007889
7890 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Shannon Nelson3b444392015-02-26 16:15:57 +00007891 vectors = i40e_init_msix(pf);
7892 if (vectors < 0) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007893 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007894 I40E_FLAG_IWARP_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007895#ifdef I40E_FCOE
7896 I40E_FLAG_FCOE_ENABLED |
7897#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007898 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007899 I40E_FLAG_DCB_CAPABLE |
Dave Ertmana0362442016-08-29 17:38:26 -07007900 I40E_FLAG_DCB_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007901 I40E_FLAG_SRIOV_ENABLED |
7902 I40E_FLAG_FD_SB_ENABLED |
7903 I40E_FLAG_FD_ATR_ENABLED |
7904 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007905
7906 /* rework the queue expectations without MSIX */
7907 i40e_determine_queue_usage(pf);
7908 }
7909 }
7910
7911 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7912 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007913 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Shannon Nelson3b444392015-02-26 16:15:57 +00007914 vectors = pci_enable_msi(pf->pdev);
7915 if (vectors < 0) {
7916 dev_info(&pf->pdev->dev, "MSI init failed - %d\n",
7917 vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007918 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7919 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007920 vectors = 1; /* one MSI or Legacy vector */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007921 }
7922
Shannon Nelson958a3e32013-09-28 07:13:28 +00007923 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007924 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007925
Shannon Nelson3b444392015-02-26 16:15:57 +00007926 /* set up vector assignment tracking */
7927 size = sizeof(struct i40e_lump_tracking) + (sizeof(u16) * vectors);
7928 pf->irq_pile = kzalloc(size, GFP_KERNEL);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007929 if (!pf->irq_pile) {
7930 dev_err(&pf->pdev->dev, "error allocating irq_pile memory\n");
7931 return -ENOMEM;
7932 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007933 pf->irq_pile->num_entries = vectors;
7934 pf->irq_pile->search_hint = 0;
7935
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007936 /* track first vector for misc interrupts, ignore return */
Shannon Nelson3b444392015-02-26 16:15:57 +00007937 (void)i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT - 1);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007938
7939 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007940}
7941
7942/**
7943 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7944 * @pf: board private structure
7945 *
7946 * This sets up the handler for MSIX 0, which is used to manage the
7947 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7948 * when in MSI or Legacy interrupt mode.
7949 **/
7950static int i40e_setup_misc_vector(struct i40e_pf *pf)
7951{
7952 struct i40e_hw *hw = &pf->hw;
7953 int err = 0;
7954
7955 /* Only request the irq if this is the first time through, and
7956 * not when we're rebuilding after a Reset
7957 */
7958 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7959 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007960 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007961 if (err) {
7962 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007963 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007964 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007965 return -EFAULT;
7966 }
7967 }
7968
Jacob Kellerab437b52014-12-14 01:55:08 +00007969 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007970
7971 /* associate no queues to the misc vector */
7972 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7973 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7974
7975 i40e_flush(hw);
7976
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08007977 i40e_irq_dynamic_enable_icr0(pf, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007978
7979 return err;
7980}
7981
7982/**
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007983 * i40e_config_rss_aq - Prepare for RSS using AQ commands
7984 * @vsi: vsi structure
7985 * @seed: RSS hash seed
7986 **/
Helin Zhange69ff812015-10-21 19:56:22 -04007987static int i40e_config_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
7988 u8 *lut, u16 lut_size)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007989{
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007990 struct i40e_pf *pf = vsi->back;
7991 struct i40e_hw *hw = &pf->hw;
Jacob Keller776b2e12016-07-19 16:23:30 -07007992 int ret = 0;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007993
Jacob Keller776b2e12016-07-19 16:23:30 -07007994 if (seed) {
7995 struct i40e_aqc_get_set_rss_key_data *seed_dw =
7996 (struct i40e_aqc_get_set_rss_key_data *)seed;
7997 ret = i40e_aq_set_rss_key(hw, vsi->id, seed_dw);
7998 if (ret) {
7999 dev_info(&pf->pdev->dev,
8000 "Cannot set RSS key, err %s aq_err %s\n",
8001 i40e_stat_str(hw, ret),
8002 i40e_aq_str(hw, hw->aq.asq_last_status));
8003 return ret;
8004 }
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008005 }
Jacob Keller776b2e12016-07-19 16:23:30 -07008006 if (lut) {
8007 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008008
Jacob Keller776b2e12016-07-19 16:23:30 -07008009 ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
8010 if (ret) {
8011 dev_info(&pf->pdev->dev,
8012 "Cannot set RSS lut, err %s aq_err %s\n",
8013 i40e_stat_str(hw, ret),
8014 i40e_aq_str(hw, hw->aq.asq_last_status));
8015 return ret;
8016 }
8017 }
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008018 return ret;
8019}
8020
8021/**
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008022 * i40e_get_rss_aq - Get RSS keys and lut by using AQ commands
8023 * @vsi: Pointer to vsi structure
8024 * @seed: Buffter to store the hash keys
8025 * @lut: Buffer to store the lookup table entries
8026 * @lut_size: Size of buffer to store the lookup table entries
8027 *
8028 * Return 0 on success, negative on failure
8029 */
8030static int i40e_get_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
8031 u8 *lut, u16 lut_size)
8032{
8033 struct i40e_pf *pf = vsi->back;
8034 struct i40e_hw *hw = &pf->hw;
8035 int ret = 0;
8036
8037 if (seed) {
8038 ret = i40e_aq_get_rss_key(hw, vsi->id,
8039 (struct i40e_aqc_get_set_rss_key_data *)seed);
8040 if (ret) {
8041 dev_info(&pf->pdev->dev,
8042 "Cannot get RSS key, err %s aq_err %s\n",
8043 i40e_stat_str(&pf->hw, ret),
8044 i40e_aq_str(&pf->hw,
8045 pf->hw.aq.asq_last_status));
8046 return ret;
8047 }
8048 }
8049
8050 if (lut) {
8051 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
8052
8053 ret = i40e_aq_get_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
8054 if (ret) {
8055 dev_info(&pf->pdev->dev,
8056 "Cannot get RSS lut, err %s aq_err %s\n",
8057 i40e_stat_str(&pf->hw, ret),
8058 i40e_aq_str(&pf->hw,
8059 pf->hw.aq.asq_last_status));
8060 return ret;
8061 }
8062 }
8063
8064 return ret;
8065}
8066
8067/**
Jacob Keller0582b962016-07-19 16:23:29 -07008068 * i40e_vsi_config_rss - Prepare for VSI(VMDq) RSS if used
8069 * @vsi: VSI structure
8070 **/
8071static int i40e_vsi_config_rss(struct i40e_vsi *vsi)
8072{
8073 u8 seed[I40E_HKEY_ARRAY_SIZE];
8074 struct i40e_pf *pf = vsi->back;
8075 u8 *lut;
8076 int ret;
8077
8078 if (!(pf->flags & I40E_FLAG_RSS_AQ_CAPABLE))
8079 return 0;
8080
Jacob Keller552b9962016-07-19 16:23:31 -07008081 if (!vsi->rss_size)
8082 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8083 vsi->num_queue_pairs);
8084 if (!vsi->rss_size)
8085 return -EINVAL;
8086
Jacob Keller0582b962016-07-19 16:23:29 -07008087 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8088 if (!lut)
8089 return -ENOMEM;
Jacob Keller552b9962016-07-19 16:23:31 -07008090 /* Use the user configured hash keys and lookup table if there is one,
8091 * otherwise use default
8092 */
8093 if (vsi->rss_lut_user)
8094 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8095 else
8096 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
8097 if (vsi->rss_hkey_user)
8098 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8099 else
8100 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Jacob Keller0582b962016-07-19 16:23:29 -07008101 ret = i40e_config_rss_aq(vsi, seed, lut, vsi->rss_table_size);
8102 kfree(lut);
8103
8104 return ret;
8105}
8106
8107/**
Helin Zhang043dd652015-10-21 19:56:23 -04008108 * i40e_config_rss_reg - Configure RSS keys and lut by writing registers
Helin Zhange69ff812015-10-21 19:56:22 -04008109 * @vsi: Pointer to vsi structure
8110 * @seed: RSS hash seed
8111 * @lut: Lookup table
8112 * @lut_size: Lookup table size
8113 *
8114 * Returns 0 on success, negative on failure
8115 **/
8116static int i40e_config_rss_reg(struct i40e_vsi *vsi, const u8 *seed,
8117 const u8 *lut, u16 lut_size)
8118{
8119 struct i40e_pf *pf = vsi->back;
8120 struct i40e_hw *hw = &pf->hw;
Mitch Williamsc4e18682016-04-12 08:30:40 -07008121 u16 vf_id = vsi->vf_id;
Helin Zhange69ff812015-10-21 19:56:22 -04008122 u8 i;
8123
8124 /* Fill out hash function seed */
8125 if (seed) {
8126 u32 *seed_dw = (u32 *)seed;
8127
Mitch Williamsc4e18682016-04-12 08:30:40 -07008128 if (vsi->type == I40E_VSI_MAIN) {
8129 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
8130 i40e_write_rx_ctl(hw, I40E_PFQF_HKEY(i),
8131 seed_dw[i]);
8132 } else if (vsi->type == I40E_VSI_SRIOV) {
8133 for (i = 0; i <= I40E_VFQF_HKEY1_MAX_INDEX; i++)
8134 i40e_write_rx_ctl(hw,
8135 I40E_VFQF_HKEY1(i, vf_id),
8136 seed_dw[i]);
8137 } else {
8138 dev_err(&pf->pdev->dev, "Cannot set RSS seed - invalid VSI type\n");
8139 }
Helin Zhange69ff812015-10-21 19:56:22 -04008140 }
8141
8142 if (lut) {
8143 u32 *lut_dw = (u32 *)lut;
8144
Mitch Williamsc4e18682016-04-12 08:30:40 -07008145 if (vsi->type == I40E_VSI_MAIN) {
8146 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8147 return -EINVAL;
8148 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8149 wr32(hw, I40E_PFQF_HLUT(i), lut_dw[i]);
8150 } else if (vsi->type == I40E_VSI_SRIOV) {
8151 if (lut_size != I40E_VF_HLUT_ARRAY_SIZE)
8152 return -EINVAL;
8153 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
8154 i40e_write_rx_ctl(hw,
8155 I40E_VFQF_HLUT1(i, vf_id),
8156 lut_dw[i]);
8157 } else {
8158 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
8159 }
Helin Zhange69ff812015-10-21 19:56:22 -04008160 }
8161 i40e_flush(hw);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008162
8163 return 0;
8164}
8165
8166/**
Helin Zhang043dd652015-10-21 19:56:23 -04008167 * i40e_get_rss_reg - Get the RSS keys and lut by reading registers
8168 * @vsi: Pointer to VSI structure
8169 * @seed: Buffer to store the keys
8170 * @lut: Buffer to store the lookup table entries
8171 * @lut_size: Size of buffer to store the lookup table entries
8172 *
8173 * Returns 0 on success, negative on failure
8174 */
8175static int i40e_get_rss_reg(struct i40e_vsi *vsi, u8 *seed,
8176 u8 *lut, u16 lut_size)
8177{
8178 struct i40e_pf *pf = vsi->back;
8179 struct i40e_hw *hw = &pf->hw;
8180 u16 i;
8181
8182 if (seed) {
8183 u32 *seed_dw = (u32 *)seed;
8184
8185 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008186 seed_dw[i] = i40e_read_rx_ctl(hw, I40E_PFQF_HKEY(i));
Helin Zhang043dd652015-10-21 19:56:23 -04008187 }
8188 if (lut) {
8189 u32 *lut_dw = (u32 *)lut;
8190
8191 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8192 return -EINVAL;
8193 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8194 lut_dw[i] = rd32(hw, I40E_PFQF_HLUT(i));
8195 }
8196
8197 return 0;
8198}
8199
8200/**
8201 * i40e_config_rss - Configure RSS keys and lut
8202 * @vsi: Pointer to VSI structure
8203 * @seed: RSS hash seed
8204 * @lut: Lookup table
8205 * @lut_size: Lookup table size
8206 *
8207 * Returns 0 on success, negative on failure
8208 */
8209int i40e_config_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8210{
8211 struct i40e_pf *pf = vsi->back;
8212
8213 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
8214 return i40e_config_rss_aq(vsi, seed, lut, lut_size);
8215 else
8216 return i40e_config_rss_reg(vsi, seed, lut, lut_size);
8217}
8218
8219/**
8220 * i40e_get_rss - Get RSS keys and lut
8221 * @vsi: Pointer to VSI structure
8222 * @seed: Buffer to store the keys
8223 * @lut: Buffer to store the lookup table entries
8224 * lut_size: Size of buffer to store the lookup table entries
8225 *
8226 * Returns 0 on success, negative on failure
8227 */
8228int i40e_get_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8229{
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008230 struct i40e_pf *pf = vsi->back;
8231
8232 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
8233 return i40e_get_rss_aq(vsi, seed, lut, lut_size);
8234 else
8235 return i40e_get_rss_reg(vsi, seed, lut, lut_size);
Helin Zhang043dd652015-10-21 19:56:23 -04008236}
8237
8238/**
Helin Zhange69ff812015-10-21 19:56:22 -04008239 * i40e_fill_rss_lut - Fill the RSS lookup table with default values
8240 * @pf: Pointer to board private structure
8241 * @lut: Lookup table
8242 * @rss_table_size: Lookup table size
8243 * @rss_size: Range of queue number for hashing
8244 */
Alan Bradyf1582352016-08-24 11:33:46 -07008245void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
8246 u16 rss_table_size, u16 rss_size)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008247{
Helin Zhange69ff812015-10-21 19:56:22 -04008248 u16 i;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008249
Helin Zhange69ff812015-10-21 19:56:22 -04008250 for (i = 0; i < rss_table_size; i++)
8251 lut[i] = i % rss_size;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008252}
8253
8254/**
Helin Zhang043dd652015-10-21 19:56:23 -04008255 * i40e_pf_config_rss - Prepare for RSS if used
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008256 * @pf: board private structure
8257 **/
Helin Zhang043dd652015-10-21 19:56:23 -04008258static int i40e_pf_config_rss(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008259{
Anjali Singhai Jain66ddcff2015-02-24 06:58:50 +00008260 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008261 u8 seed[I40E_HKEY_ARRAY_SIZE];
Helin Zhange69ff812015-10-21 19:56:22 -04008262 u8 *lut;
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00008263 struct i40e_hw *hw = &pf->hw;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008264 u32 reg_val;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008265 u64 hena;
Helin Zhange69ff812015-10-21 19:56:22 -04008266 int ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008267
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008268 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008269 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
8270 ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008271 hena |= i40e_pf_get_default_rss_hena(pf);
8272
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008273 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena);
8274 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008275
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008276 /* Determine the RSS table size based on the hardware capabilities */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008277 reg_val = i40e_read_rx_ctl(hw, I40E_PFQF_CTL_0);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008278 reg_val = (pf->rss_table_size == 512) ?
8279 (reg_val | I40E_PFQF_CTL_0_HASHLUTSIZE_512) :
8280 (reg_val & ~I40E_PFQF_CTL_0_HASHLUTSIZE_512);
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008281 i40e_write_rx_ctl(hw, I40E_PFQF_CTL_0, reg_val);
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008282
Helin Zhang28c58692015-10-26 19:44:27 -04008283 /* Determine the RSS size of the VSI */
8284 if (!vsi->rss_size)
Helin Zhangacd65442015-10-26 19:44:28 -04008285 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8286 vsi->num_queue_pairs);
Helin Zhang28c58692015-10-26 19:44:27 -04008287
Helin Zhange69ff812015-10-21 19:56:22 -04008288 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8289 if (!lut)
8290 return -ENOMEM;
8291
Helin Zhang28c58692015-10-26 19:44:27 -04008292 /* Use user configured lut if there is one, otherwise use default */
8293 if (vsi->rss_lut_user)
8294 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8295 else
8296 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008297
Helin Zhang28c58692015-10-26 19:44:27 -04008298 /* Use user configured hash key if there is one, otherwise
8299 * use default.
8300 */
8301 if (vsi->rss_hkey_user)
8302 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8303 else
8304 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhang043dd652015-10-21 19:56:23 -04008305 ret = i40e_config_rss(vsi, seed, lut, vsi->rss_table_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008306 kfree(lut);
8307
8308 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008309}
8310
8311/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008312 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
8313 * @pf: board private structure
8314 * @queue_count: the requested queue count for rss.
8315 *
8316 * returns 0 if rss is not enabled, if enabled returns the final rss queue
8317 * count which may be different from the requested queue count.
8318 **/
8319int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
8320{
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008321 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
8322 int new_rss_size;
8323
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008324 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
8325 return 0;
8326
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008327 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008328
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008329 if (queue_count != vsi->num_queue_pairs) {
8330 vsi->req_queue_pairs = queue_count;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008331 i40e_prep_for_reset(pf);
8332
Helin Zhangacd65442015-10-26 19:44:28 -04008333 pf->alloc_rss_size = new_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008334
8335 i40e_reset_and_rebuild(pf, true);
Helin Zhang28c58692015-10-26 19:44:27 -04008336
8337 /* Discard the user configured hash keys and lut, if less
8338 * queues are enabled.
8339 */
8340 if (queue_count < vsi->rss_size) {
8341 i40e_clear_rss_config_user(vsi);
8342 dev_dbg(&pf->pdev->dev,
8343 "discard user configured hash keys and lut\n");
8344 }
8345
8346 /* Reset vsi->rss_size, as number of enabled queues changed */
Helin Zhangacd65442015-10-26 19:44:28 -04008347 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8348 vsi->num_queue_pairs);
Helin Zhang28c58692015-10-26 19:44:27 -04008349
Helin Zhang043dd652015-10-21 19:56:23 -04008350 i40e_pf_config_rss(pf);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008351 }
Helin Zhange36b0b12015-10-26 19:44:36 -04008352 dev_info(&pf->pdev->dev, "RSS count/HW max RSS count: %d/%d\n",
8353 pf->alloc_rss_size, pf->rss_size_max);
Helin Zhangacd65442015-10-26 19:44:28 -04008354 return pf->alloc_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008355}
8356
8357/**
Greg Rosef4492db2015-02-06 08:52:12 +00008358 * i40e_get_npar_bw_setting - Retrieve BW settings for this PF partition
8359 * @pf: board private structure
8360 **/
8361i40e_status i40e_get_npar_bw_setting(struct i40e_pf *pf)
8362{
8363 i40e_status status;
8364 bool min_valid, max_valid;
8365 u32 max_bw, min_bw;
8366
8367 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
8368 &min_valid, &max_valid);
8369
8370 if (!status) {
8371 if (min_valid)
8372 pf->npar_min_bw = min_bw;
8373 if (max_valid)
8374 pf->npar_max_bw = max_bw;
8375 }
8376
8377 return status;
8378}
8379
8380/**
8381 * i40e_set_npar_bw_setting - Set BW settings for this PF partition
8382 * @pf: board private structure
8383 **/
8384i40e_status i40e_set_npar_bw_setting(struct i40e_pf *pf)
8385{
8386 struct i40e_aqc_configure_partition_bw_data bw_data;
8387 i40e_status status;
8388
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00008389 /* Set the valid bit for this PF */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008390 bw_data.pf_valid_bits = cpu_to_le16(BIT(pf->hw.pf_id));
Greg Rosef4492db2015-02-06 08:52:12 +00008391 bw_data.max_bw[pf->hw.pf_id] = pf->npar_max_bw & I40E_ALT_BW_VALUE_MASK;
8392 bw_data.min_bw[pf->hw.pf_id] = pf->npar_min_bw & I40E_ALT_BW_VALUE_MASK;
8393
8394 /* Set the new bandwidths */
8395 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
8396
8397 return status;
8398}
8399
8400/**
8401 * i40e_commit_npar_bw_setting - Commit BW settings for this PF partition
8402 * @pf: board private structure
8403 **/
8404i40e_status i40e_commit_npar_bw_setting(struct i40e_pf *pf)
8405{
8406 /* Commit temporary BW setting to permanent NVM image */
8407 enum i40e_admin_queue_err last_aq_status;
8408 i40e_status ret;
8409 u16 nvm_word;
8410
8411 if (pf->hw.partition_id != 1) {
8412 dev_info(&pf->pdev->dev,
8413 "Commit BW only works on partition 1! This is partition %d",
8414 pf->hw.partition_id);
8415 ret = I40E_NOT_SUPPORTED;
8416 goto bw_commit_out;
8417 }
8418
8419 /* Acquire NVM for read access */
8420 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
8421 last_aq_status = pf->hw.aq.asq_last_status;
8422 if (ret) {
8423 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008424 "Cannot acquire NVM for read access, err %s aq_err %s\n",
8425 i40e_stat_str(&pf->hw, ret),
8426 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008427 goto bw_commit_out;
8428 }
8429
8430 /* Read word 0x10 of NVM - SW compatibility word 1 */
8431 ret = i40e_aq_read_nvm(&pf->hw,
8432 I40E_SR_NVM_CONTROL_WORD,
8433 0x10, sizeof(nvm_word), &nvm_word,
8434 false, NULL);
8435 /* Save off last admin queue command status before releasing
8436 * the NVM
8437 */
8438 last_aq_status = pf->hw.aq.asq_last_status;
8439 i40e_release_nvm(&pf->hw);
8440 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008441 dev_info(&pf->pdev->dev, "NVM read error, err %s aq_err %s\n",
8442 i40e_stat_str(&pf->hw, ret),
8443 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008444 goto bw_commit_out;
8445 }
8446
8447 /* Wait a bit for NVM release to complete */
8448 msleep(50);
8449
8450 /* Acquire NVM for write access */
8451 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
8452 last_aq_status = pf->hw.aq.asq_last_status;
8453 if (ret) {
8454 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008455 "Cannot acquire NVM for write access, err %s aq_err %s\n",
8456 i40e_stat_str(&pf->hw, ret),
8457 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008458 goto bw_commit_out;
8459 }
8460 /* Write it back out unchanged to initiate update NVM,
8461 * which will force a write of the shadow (alt) RAM to
8462 * the NVM - thus storing the bandwidth values permanently.
8463 */
8464 ret = i40e_aq_update_nvm(&pf->hw,
8465 I40E_SR_NVM_CONTROL_WORD,
8466 0x10, sizeof(nvm_word),
8467 &nvm_word, true, NULL);
8468 /* Save off last admin queue command status before releasing
8469 * the NVM
8470 */
8471 last_aq_status = pf->hw.aq.asq_last_status;
8472 i40e_release_nvm(&pf->hw);
8473 if (ret)
8474 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008475 "BW settings NOT SAVED, err %s aq_err %s\n",
8476 i40e_stat_str(&pf->hw, ret),
8477 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008478bw_commit_out:
8479
8480 return ret;
8481}
8482
8483/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008484 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
8485 * @pf: board private structure to initialize
8486 *
8487 * i40e_sw_init initializes the Adapter private data structure.
8488 * Fields are initialized based on PCI device information and
8489 * OS network device settings (MTU size).
8490 **/
8491static int i40e_sw_init(struct i40e_pf *pf)
8492{
8493 int err = 0;
8494 int size;
8495
8496 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
8497 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
8498 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
8499 if (I40E_DEBUG_USER & debug)
8500 pf->hw.debug_mask = debug;
8501 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
8502 I40E_DEFAULT_MSG_ENABLE);
8503 }
8504
8505 /* Set default capability flags */
8506 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
8507 I40E_FLAG_MSI_ENABLED |
Mitch Williams2bc7ee82015-02-06 08:52:11 +00008508 I40E_FLAG_MSIX_ENABLED;
8509
Mitch Williamsca99eb92014-04-04 04:43:07 +00008510 /* Set default ITR */
8511 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
8512 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
8513
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008514 /* Depending on PF configurations, it is possible that the RSS
8515 * maximum might end up larger than the available queues
8516 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008517 pf->rss_size_max = BIT(pf->hw.func_caps.rss_table_entry_width);
Helin Zhangacd65442015-10-26 19:44:28 -04008518 pf->alloc_rss_size = 1;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00008519 pf->rss_table_size = pf->hw.func_caps.rss_table_size;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008520 pf->rss_size_max = min_t(int, pf->rss_size_max,
8521 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008522 if (pf->hw.func_caps.rss) {
8523 pf->flags |= I40E_FLAG_RSS_ENABLED;
Helin Zhangacd65442015-10-26 19:44:28 -04008524 pf->alloc_rss_size = min_t(int, pf->rss_size_max,
8525 num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008526 }
8527
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008528 /* MFP mode enabled */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04008529 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.flex10_enable) {
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008530 pf->flags |= I40E_FLAG_MFP_ENABLED;
8531 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
Greg Rosef4492db2015-02-06 08:52:12 +00008532 if (i40e_get_npar_bw_setting(pf))
8533 dev_warn(&pf->pdev->dev,
8534 "Could not get NPAR bw settings\n");
8535 else
8536 dev_info(&pf->pdev->dev,
8537 "Min BW = %8.8x, Max BW = %8.8x\n",
8538 pf->npar_min_bw, pf->npar_max_bw);
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008539 }
8540
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008541 /* FW/NVM is not yet fixed in this regard */
8542 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
8543 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
8544 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
8545 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008546 if (pf->flags & I40E_FLAG_MFP_ENABLED &&
8547 pf->hw.num_partitions > 1)
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008548 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00008549 "Flow Director Sideband mode Disabled in MFP mode\n");
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008550 else
8551 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008552 pf->fdir_pf_filter_count =
8553 pf->hw.func_caps.fd_filters_guaranteed;
8554 pf->hw.fdir_shared_filter_count =
8555 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008556 }
8557
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008558 if (i40e_is_mac_710(&pf->hw) &&
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008559 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008560 (pf->hw.aq.fw_maj_ver < 4))) {
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008561 pf->flags |= I40E_FLAG_RESTART_AUTONEG;
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008562 /* No DCB support for FW < v4.33 */
8563 pf->flags |= I40E_FLAG_NO_DCB_SUPPORT;
8564 }
8565
8566 /* Disable FW LLDP if FW < v4.3 */
8567 if (i40e_is_mac_710(&pf->hw) &&
8568 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
8569 (pf->hw.aq.fw_maj_ver < 4)))
8570 pf->flags |= I40E_FLAG_STOP_FW_LLDP;
8571
8572 /* Use the FW Set LLDP MIB API if FW > v4.40 */
8573 if (i40e_is_mac_710(&pf->hw) &&
8574 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver >= 40)) ||
8575 (pf->hw.aq.fw_maj_ver >= 5)))
8576 pf->flags |= I40E_FLAG_USE_SET_LLDP_MIB;
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008577
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008578 if (pf->hw.func_caps.vmdq) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008579 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008580 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
Jesse Brandeburge9e53662015-10-02 17:57:21 -07008581 pf->num_vmdq_qps = i40e_default_queues_per_vmdq(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008582 }
8583
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008584 if (pf->hw.func_caps.iwarp) {
8585 pf->flags |= I40E_FLAG_IWARP_ENABLED;
8586 /* IWARP needs one extra vector for CQP just like MISC.*/
8587 pf->num_iwarp_msix = (int)num_online_cpus() + 1;
8588 }
8589
Vasu Dev38e00432014-08-01 13:27:03 -07008590#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04008591 i40e_init_pf_fcoe(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07008592
8593#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008594#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f132014-12-11 07:06:34 +00008595 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008596 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
8597 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
8598 pf->num_req_vfs = min_t(int,
8599 pf->hw.func_caps.num_vfs,
8600 I40E_MAX_VF_COUNT);
8601 }
8602#endif /* CONFIG_PCI_IOV */
Anjali Singhai Jaind502ce02015-06-05 12:20:26 -04008603 if (pf->hw.mac.type == I40E_MAC_X722) {
8604 pf->flags |= I40E_FLAG_RSS_AQ_CAPABLE |
8605 I40E_FLAG_128_QP_RSS_CAPABLE |
8606 I40E_FLAG_HW_ATR_EVICT_CAPABLE |
8607 I40E_FLAG_OUTER_UDP_CSUM_CAPABLE |
8608 I40E_FLAG_WB_ON_ITR_CAPABLE |
Singhai, Anjali6a899022015-12-14 12:21:18 -08008609 I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE |
Jesse Brandeburg8e2cc0e2016-02-29 11:00:24 -08008610 I40E_FLAG_NO_PCI_LINK_CHECK |
Catherine Sullivanf8db54cc2015-12-22 14:25:14 -08008611 I40E_FLAG_100M_SGMII_CAPABLE |
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008612 I40E_FLAG_USE_SET_LLDP_MIB |
Singhai, Anjali6a899022015-12-14 12:21:18 -08008613 I40E_FLAG_GENEVE_OFFLOAD_CAPABLE;
Anjali Singhaia340c782016-01-06 11:49:28 -08008614 } else if ((pf->hw.aq.api_maj_ver > 1) ||
8615 ((pf->hw.aq.api_maj_ver == 1) &&
8616 (pf->hw.aq.api_min_ver > 4))) {
8617 /* Supported in FW API version higher than 1.4 */
8618 pf->flags |= I40E_FLAG_GENEVE_OFFLOAD_CAPABLE;
Anjali Singhai Jain72b74862016-01-08 17:50:21 -08008619 pf->auto_disable_flags = I40E_FLAG_HW_ATR_EVICT_CAPABLE;
8620 } else {
8621 pf->auto_disable_flags = I40E_FLAG_HW_ATR_EVICT_CAPABLE;
Anjali Singhai Jaind502ce02015-06-05 12:20:26 -04008622 }
Anjali Singhaia340c782016-01-06 11:49:28 -08008623
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008624 pf->eeprom_version = 0xDEAD;
8625 pf->lan_veb = I40E_NO_VEB;
8626 pf->lan_vsi = I40E_NO_VSI;
8627
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04008628 /* By default FW has this off for performance reasons */
8629 pf->flags &= ~I40E_FLAG_VEB_STATS_ENABLED;
8630
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008631 /* set up queue assignment tracking */
8632 size = sizeof(struct i40e_lump_tracking)
8633 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
8634 pf->qp_pile = kzalloc(size, GFP_KERNEL);
8635 if (!pf->qp_pile) {
8636 err = -ENOMEM;
8637 goto sw_init_done;
8638 }
8639 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
8640 pf->qp_pile->search_hint = 0;
8641
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00008642 pf->tx_timeout_recovery_level = 1;
8643
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008644 mutex_init(&pf->switch_mutex);
8645
Greg Rosec668a122015-02-26 16:10:39 +00008646 /* If NPAR is enabled nudge the Tx scheduler */
8647 if (pf->hw.func_caps.npar_enable && (!i40e_get_npar_bw_setting(pf)))
8648 i40e_set_npar_bw_setting(pf);
8649
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008650sw_init_done:
8651 return err;
8652}
8653
8654/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008655 * i40e_set_ntuple - set the ntuple feature flag and take action
8656 * @pf: board private structure to initialize
8657 * @features: the feature set that the stack is suggesting
8658 *
8659 * returns a bool to indicate if reset needs to happen
8660 **/
8661bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
8662{
8663 bool need_reset = false;
8664
8665 /* Check if Flow Director n-tuple support was enabled or disabled. If
8666 * the state changed, we need to reset.
8667 */
8668 if (features & NETIF_F_NTUPLE) {
8669 /* Enable filters and mark for reset */
8670 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
8671 need_reset = true;
Tushar Davea70e4072016-05-16 12:40:53 -07008672 /* enable FD_SB only if there is MSI-X vector */
8673 if (pf->num_fdsb_msix > 0)
8674 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008675 } else {
8676 /* turn off filters, mark for reset and clear SW filter list */
8677 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8678 need_reset = true;
8679 i40e_fdir_filter_exit(pf);
8680 }
8681 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008682 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00008683 /* reset fd counters */
8684 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
8685 pf->fdir_pf_active_filters = 0;
8686 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04008687 if (I40E_DEBUG_FD & pf->hw.debug_mask)
8688 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008689 /* if ATR was auto disabled it can be re-enabled. */
8690 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
8691 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
8692 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008693 }
8694 return need_reset;
8695}
8696
8697/**
Alan Bradyd8ec9862016-07-27 12:02:38 -07008698 * i40e_clear_rss_lut - clear the rx hash lookup table
8699 * @vsi: the VSI being configured
8700 **/
8701static void i40e_clear_rss_lut(struct i40e_vsi *vsi)
8702{
8703 struct i40e_pf *pf = vsi->back;
8704 struct i40e_hw *hw = &pf->hw;
8705 u16 vf_id = vsi->vf_id;
8706 u8 i;
8707
8708 if (vsi->type == I40E_VSI_MAIN) {
8709 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8710 wr32(hw, I40E_PFQF_HLUT(i), 0);
8711 } else if (vsi->type == I40E_VSI_SRIOV) {
8712 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
8713 i40e_write_rx_ctl(hw, I40E_VFQF_HLUT1(i, vf_id), 0);
8714 } else {
8715 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
8716 }
8717}
8718
8719/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008720 * i40e_set_features - set the netdev feature flags
8721 * @netdev: ptr to the netdev being adjusted
8722 * @features: the feature set that the stack is suggesting
8723 **/
8724static int i40e_set_features(struct net_device *netdev,
8725 netdev_features_t features)
8726{
8727 struct i40e_netdev_priv *np = netdev_priv(netdev);
8728 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008729 struct i40e_pf *pf = vsi->back;
8730 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008731
Alan Bradyd8ec9862016-07-27 12:02:38 -07008732 if (features & NETIF_F_RXHASH && !(netdev->features & NETIF_F_RXHASH))
8733 i40e_pf_config_rss(pf);
8734 else if (!(features & NETIF_F_RXHASH) &&
8735 netdev->features & NETIF_F_RXHASH)
8736 i40e_clear_rss_lut(vsi);
8737
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008738 if (features & NETIF_F_HW_VLAN_CTAG_RX)
8739 i40e_vlan_stripping_enable(vsi);
8740 else
8741 i40e_vlan_stripping_disable(vsi);
8742
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008743 need_reset = i40e_set_ntuple(pf, features);
8744
8745 if (need_reset)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008746 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008747
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008748 return 0;
8749}
8750
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008751/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08008752 * i40e_get_udp_port_idx - Lookup a possibly offloaded for Rx UDP port
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008753 * @pf: board private structure
8754 * @port: The UDP port to look up
8755 *
8756 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
8757 **/
Singhai, Anjali6a899022015-12-14 12:21:18 -08008758static u8 i40e_get_udp_port_idx(struct i40e_pf *pf, __be16 port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008759{
8760 u8 i;
8761
8762 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Singhai, Anjali6a899022015-12-14 12:21:18 -08008763 if (pf->udp_ports[i].index == port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008764 return i;
8765 }
8766
8767 return i;
8768}
8769
8770/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008771 * i40e_udp_tunnel_add - Get notifications about UDP tunnel ports that come up
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008772 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008773 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008774 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008775static void i40e_udp_tunnel_add(struct net_device *netdev,
8776 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008777{
8778 struct i40e_netdev_priv *np = netdev_priv(netdev);
8779 struct i40e_vsi *vsi = np->vsi;
8780 struct i40e_pf *pf = vsi->back;
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008781 __be16 port = ti->port;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008782 u8 next_idx;
8783 u8 idx;
8784
Singhai, Anjali6a899022015-12-14 12:21:18 -08008785 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008786
8787 /* Check if port already exists */
8788 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008789 netdev_info(netdev, "port %d already offloaded\n",
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07008790 ntohs(port));
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008791 return;
8792 }
8793
8794 /* Now check if there is space to add the new port */
Singhai, Anjali6a899022015-12-14 12:21:18 -08008795 next_idx = i40e_get_udp_port_idx(pf, 0);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008796
8797 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008798 netdev_info(netdev, "maximum number of offloaded UDP ports reached, not adding port %d\n",
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008799 ntohs(port));
8800 return;
8801 }
8802
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008803 switch (ti->type) {
8804 case UDP_TUNNEL_TYPE_VXLAN:
8805 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_VXLAN;
8806 break;
8807 case UDP_TUNNEL_TYPE_GENEVE:
8808 if (!(pf->flags & I40E_FLAG_GENEVE_OFFLOAD_CAPABLE))
8809 return;
8810 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_NGE;
8811 break;
8812 default:
8813 return;
8814 }
8815
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008816 /* New port: add it and mark its index in the bitmap */
Singhai, Anjali6a899022015-12-14 12:21:18 -08008817 pf->udp_ports[next_idx].index = port;
Singhai, Anjali6a899022015-12-14 12:21:18 -08008818 pf->pending_udp_bitmap |= BIT_ULL(next_idx);
8819 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008820}
8821
8822/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008823 * i40e_udp_tunnel_del - Get notifications about UDP tunnel ports that go away
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008824 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008825 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008826 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008827static void i40e_udp_tunnel_del(struct net_device *netdev,
8828 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008829{
8830 struct i40e_netdev_priv *np = netdev_priv(netdev);
8831 struct i40e_vsi *vsi = np->vsi;
8832 struct i40e_pf *pf = vsi->back;
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008833 __be16 port = ti->port;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008834 u8 idx;
8835
Singhai, Anjali6a899022015-12-14 12:21:18 -08008836 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008837
8838 /* Check if port already exists */
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008839 if (idx >= I40E_MAX_PF_UDP_OFFLOAD_PORTS)
8840 goto not_found;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008841
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008842 switch (ti->type) {
8843 case UDP_TUNNEL_TYPE_VXLAN:
8844 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_VXLAN)
8845 goto not_found;
8846 break;
8847 case UDP_TUNNEL_TYPE_GENEVE:
8848 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_NGE)
8849 goto not_found;
8850 break;
8851 default:
8852 goto not_found;
Singhai, Anjali6a899022015-12-14 12:21:18 -08008853 }
8854
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008855 /* if port exists, set it to 0 (mark for deletion)
8856 * and make it pending
8857 */
8858 pf->udp_ports[idx].index = 0;
8859 pf->pending_udp_bitmap |= BIT_ULL(idx);
Singhai, Anjali6a899022015-12-14 12:21:18 -08008860 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
8861
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008862 return;
8863not_found:
8864 netdev_warn(netdev, "UDP port %d was not found, not deleting\n",
8865 ntohs(port));
Singhai, Anjali6a899022015-12-14 12:21:18 -08008866}
8867
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008868static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01008869 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008870{
8871 struct i40e_netdev_priv *np = netdev_priv(netdev);
8872 struct i40e_pf *pf = np->vsi->back;
8873 struct i40e_hw *hw = &pf->hw;
8874
8875 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
8876 return -EOPNOTSUPP;
8877
8878 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
8879 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
8880
8881 return 0;
8882}
8883
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08008884/**
8885 * i40e_ndo_fdb_add - add an entry to the hardware database
8886 * @ndm: the input from the stack
8887 * @tb: pointer to array of nladdr (unused)
8888 * @dev: the net device pointer
8889 * @addr: the MAC address entry being added
8890 * @flags: instructions from stack about fdb operation
8891 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00008892static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
8893 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01008894 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00008895 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00008896{
8897 struct i40e_netdev_priv *np = netdev_priv(dev);
8898 struct i40e_pf *pf = np->vsi->back;
8899 int err = 0;
8900
8901 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
8902 return -EOPNOTSUPP;
8903
Or Gerlitz65891fe2014-12-14 18:19:05 +02008904 if (vid) {
8905 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
8906 return -EINVAL;
8907 }
8908
Greg Rose4ba0dea2014-03-06 08:59:55 +00008909 /* Hardware does not support aging addresses so if a
8910 * ndm_state is given only allow permanent addresses
8911 */
8912 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
8913 netdev_info(dev, "FDB only supports static addresses\n");
8914 return -EINVAL;
8915 }
8916
8917 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
8918 err = dev_uc_add_excl(dev, addr);
8919 else if (is_multicast_ether_addr(addr))
8920 err = dev_mc_add_excl(dev, addr);
8921 else
8922 err = -EINVAL;
8923
8924 /* Only return duplicate errors if NLM_F_EXCL is set */
8925 if (err == -EEXIST && !(flags & NLM_F_EXCL))
8926 err = 0;
8927
8928 return err;
8929}
8930
Neerav Parikh51616012015-02-06 08:52:14 +00008931/**
8932 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
8933 * @dev: the netdev being configured
8934 * @nlh: RTNL message
8935 *
8936 * Inserts a new hardware bridge if not already created and
8937 * enables the bridging mode requested (VEB or VEPA). If the
8938 * hardware bridge has already been inserted and the request
8939 * is to change the mode then that requires a PF reset to
8940 * allow rebuild of the components with required hardware
8941 * bridge mode enabled.
8942 **/
8943static int i40e_ndo_bridge_setlink(struct net_device *dev,
Carolyn Wyborny9df70b62015-04-27 14:57:11 -04008944 struct nlmsghdr *nlh,
8945 u16 flags)
Neerav Parikh51616012015-02-06 08:52:14 +00008946{
8947 struct i40e_netdev_priv *np = netdev_priv(dev);
8948 struct i40e_vsi *vsi = np->vsi;
8949 struct i40e_pf *pf = vsi->back;
8950 struct i40e_veb *veb = NULL;
8951 struct nlattr *attr, *br_spec;
8952 int i, rem;
8953
8954 /* Only for PF VSI for now */
8955 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8956 return -EOPNOTSUPP;
8957
8958 /* Find the HW bridge for PF VSI */
8959 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8960 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8961 veb = pf->veb[i];
8962 }
8963
8964 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
8965
8966 nla_for_each_nested(attr, br_spec, rem) {
8967 __u16 mode;
8968
8969 if (nla_type(attr) != IFLA_BRIDGE_MODE)
8970 continue;
8971
8972 mode = nla_get_u16(attr);
8973 if ((mode != BRIDGE_MODE_VEPA) &&
8974 (mode != BRIDGE_MODE_VEB))
8975 return -EINVAL;
8976
8977 /* Insert a new HW bridge */
8978 if (!veb) {
8979 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8980 vsi->tc_config.enabled_tc);
8981 if (veb) {
8982 veb->bridge_mode = mode;
8983 i40e_config_bridge_mode(veb);
8984 } else {
8985 /* No Bridge HW offload available */
8986 return -ENOENT;
8987 }
8988 break;
8989 } else if (mode != veb->bridge_mode) {
8990 /* Existing HW bridge but different mode needs reset */
8991 veb->bridge_mode = mode;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07008992 /* TODO: If no VFs or VMDq VSIs, disallow VEB mode */
8993 if (mode == BRIDGE_MODE_VEB)
8994 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
8995 else
8996 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
8997 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Neerav Parikh51616012015-02-06 08:52:14 +00008998 break;
8999 }
9000 }
9001
9002 return 0;
9003}
9004
9005/**
9006 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
9007 * @skb: skb buff
9008 * @pid: process id
9009 * @seq: RTNL message seq #
9010 * @dev: the netdev being configured
9011 * @filter_mask: unused
Jesse Brandeburgd4b2f9f2015-09-03 17:18:48 -04009012 * @nlflags: netlink flags passed in
Neerav Parikh51616012015-02-06 08:52:14 +00009013 *
9014 * Return the mode in which the hardware bridge is operating in
9015 * i.e VEB or VEPA.
9016 **/
Neerav Parikh51616012015-02-06 08:52:14 +00009017static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
9018 struct net_device *dev,
Carolyn Wyborny9f4ffc42015-08-31 19:54:42 -04009019 u32 __always_unused filter_mask,
9020 int nlflags)
Neerav Parikh51616012015-02-06 08:52:14 +00009021{
9022 struct i40e_netdev_priv *np = netdev_priv(dev);
9023 struct i40e_vsi *vsi = np->vsi;
9024 struct i40e_pf *pf = vsi->back;
9025 struct i40e_veb *veb = NULL;
9026 int i;
9027
9028 /* Only for PF VSI for now */
9029 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
9030 return -EOPNOTSUPP;
9031
9032 /* Find the HW bridge for the PF VSI */
9033 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9034 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9035 veb = pf->veb[i];
9036 }
9037
9038 if (!veb)
9039 return 0;
9040
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02009041 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
Scott Feldman7d4f8d82015-06-22 00:27:17 -07009042 nlflags, 0, 0, filter_mask, NULL);
Neerav Parikh51616012015-02-06 08:52:14 +00009043}
Neerav Parikh51616012015-02-06 08:52:14 +00009044
Singhai, Anjali6a899022015-12-14 12:21:18 -08009045/* Hardware supports L4 tunnel length of 128B (=2^7) which includes
9046 * inner mac plus all inner ethertypes.
9047 */
9048#define I40E_MAX_TUNNEL_HDR_LEN 128
Joe Stringerf44a75e2015-04-14 17:09:14 -07009049/**
9050 * i40e_features_check - Validate encapsulated packet conforms to limits
9051 * @skb: skb buff
Jean Sacren2bc11c62015-09-19 05:08:43 -06009052 * @dev: This physical port's netdev
Joe Stringerf44a75e2015-04-14 17:09:14 -07009053 * @features: Offload features that the stack believes apply
9054 **/
9055static netdev_features_t i40e_features_check(struct sk_buff *skb,
9056 struct net_device *dev,
9057 netdev_features_t features)
9058{
9059 if (skb->encapsulation &&
Singhai, Anjali6a899022015-12-14 12:21:18 -08009060 ((skb_inner_network_header(skb) - skb_transport_header(skb)) >
Joe Stringerf44a75e2015-04-14 17:09:14 -07009061 I40E_MAX_TUNNEL_HDR_LEN))
Tom Herberta1882222015-12-14 11:19:43 -08009062 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Joe Stringerf44a75e2015-04-14 17:09:14 -07009063
9064 return features;
9065}
9066
Shannon Nelson37a29732015-02-27 09:15:19 +00009067static const struct net_device_ops i40e_netdev_ops = {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009068 .ndo_open = i40e_open,
9069 .ndo_stop = i40e_close,
9070 .ndo_start_xmit = i40e_lan_xmit_frame,
9071 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
9072 .ndo_set_rx_mode = i40e_set_rx_mode,
9073 .ndo_validate_addr = eth_validate_addr,
9074 .ndo_set_mac_address = i40e_set_mac,
9075 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00009076 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009077 .ndo_tx_timeout = i40e_tx_timeout,
9078 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
9079 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
9080#ifdef CONFIG_NET_POLL_CONTROLLER
9081 .ndo_poll_controller = i40e_netpoll,
9082#endif
John Fastabende4c67342016-02-16 21:16:15 -08009083 .ndo_setup_tc = __i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07009084#ifdef I40E_FCOE
9085 .ndo_fcoe_enable = i40e_fcoe_enable,
9086 .ndo_fcoe_disable = i40e_fcoe_disable,
9087#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009088 .ndo_set_features = i40e_set_features,
9089 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
9090 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04009091 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009092 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00009093 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00009094 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Anjali Singhai Jainc3bbbd22016-04-01 03:56:07 -07009095 .ndo_set_vf_trust = i40e_ndo_set_vf_trust,
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07009096 .ndo_udp_tunnel_add = i40e_udp_tunnel_add,
9097 .ndo_udp_tunnel_del = i40e_udp_tunnel_del,
Neerav Parikh1f224ad2014-02-12 01:45:31 +00009098 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00009099 .ndo_fdb_add = i40e_ndo_fdb_add,
Joe Stringerf44a75e2015-04-14 17:09:14 -07009100 .ndo_features_check = i40e_features_check,
Neerav Parikh51616012015-02-06 08:52:14 +00009101 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
9102 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009103};
9104
9105/**
9106 * i40e_config_netdev - Setup the netdev flags
9107 * @vsi: the VSI being configured
9108 *
9109 * Returns 0 on success, negative value on failure
9110 **/
9111static int i40e_config_netdev(struct i40e_vsi *vsi)
9112{
9113 struct i40e_pf *pf = vsi->back;
9114 struct i40e_hw *hw = &pf->hw;
9115 struct i40e_netdev_priv *np;
9116 struct net_device *netdev;
9117 u8 mac_addr[ETH_ALEN];
9118 int etherdev_size;
9119
9120 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00009121 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009122 if (!netdev)
9123 return -ENOMEM;
9124
9125 vsi->netdev = netdev;
9126 np = netdev_priv(netdev);
9127 np->vsi = vsi;
9128
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009129 netdev->hw_enc_features |= NETIF_F_SG |
9130 NETIF_F_IP_CSUM |
9131 NETIF_F_IPV6_CSUM |
9132 NETIF_F_HIGHDMA |
9133 NETIF_F_SOFT_FEATURES |
9134 NETIF_F_TSO |
9135 NETIF_F_TSO_ECN |
9136 NETIF_F_TSO6 |
9137 NETIF_F_GSO_GRE |
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009138 NETIF_F_GSO_GRE_CSUM |
Tom Herbert7e133182016-05-18 09:06:10 -07009139 NETIF_F_GSO_IPXIP4 |
Alexander Duyckbf2d1df2016-05-18 10:44:53 -07009140 NETIF_F_GSO_IPXIP6 |
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009141 NETIF_F_GSO_UDP_TUNNEL |
9142 NETIF_F_GSO_UDP_TUNNEL_CSUM |
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009143 NETIF_F_GSO_PARTIAL |
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009144 NETIF_F_SCTP_CRC |
9145 NETIF_F_RXHASH |
9146 NETIF_F_RXCSUM |
Jesse Brandeburg5afdaaa2015-12-10 11:38:50 -08009147 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009148
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009149 if (!(pf->flags & I40E_FLAG_OUTER_UDP_CSUM_CAPABLE))
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009150 netdev->gso_partial_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
9151
9152 netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009153
9154 /* record features VLANs can make use of */
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009155 netdev->vlan_features |= netdev->hw_enc_features |
9156 NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009157
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009158 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009159 netdev->hw_features |= NETIF_F_NTUPLE;
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009160
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009161 netdev->hw_features |= netdev->hw_enc_features |
9162 NETIF_F_HW_VLAN_CTAG_TX |
9163 NETIF_F_HW_VLAN_CTAG_RX;
9164
9165 netdev->features |= netdev->hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009166 netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009167
9168 if (vsi->type == I40E_VSI_MAIN) {
9169 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00009170 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00009171 /* The following steps are necessary to prevent reception
9172 * of tagged packets - some older NVM configurations load a
9173 * default a MAC-VLAN filter that accepts any tagged packet
9174 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00009175 */
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009176 i40e_rm_default_mac_filter(vsi, mac_addr);
9177 spin_lock_bh(&vsi->mac_filter_list_lock);
9178 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, true);
9179 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009180 } else {
9181 /* relate the VSI_VMDQ name to the VSI_MAIN name */
9182 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
9183 pf->vsi[pf->lan_vsi]->netdev->name);
9184 random_ether_addr(mac_addr);
Kiran Patil21659032015-09-30 14:09:03 -04009185
9186 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009187 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
Kiran Patil21659032015-09-30 14:09:03 -04009188 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009189 }
Kiran Patil21659032015-09-30 14:09:03 -04009190
Greg Rose9a173902014-05-22 06:32:02 +00009191 ether_addr_copy(netdev->dev_addr, mac_addr);
9192 ether_addr_copy(netdev->perm_addr, mac_addr);
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009193
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009194 netdev->priv_flags |= IFF_UNICAST_FLT;
9195 netdev->priv_flags |= IFF_SUPP_NOFCS;
9196 /* Setup netdev TC information */
9197 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
9198
9199 netdev->netdev_ops = &i40e_netdev_ops;
9200 netdev->watchdog_timeo = 5 * HZ;
9201 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07009202#ifdef I40E_FCOE
9203 i40e_fcoe_config_netdev(netdev, vsi);
9204#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009205
9206 return 0;
9207}
9208
9209/**
9210 * i40e_vsi_delete - Delete a VSI from the switch
9211 * @vsi: the VSI being removed
9212 *
9213 * Returns 0 on success, negative value on failure
9214 **/
9215static void i40e_vsi_delete(struct i40e_vsi *vsi)
9216{
9217 /* remove default VSI is not allowed */
9218 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
9219 return;
9220
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009221 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009222}
9223
9224/**
Neerav Parikh51616012015-02-06 08:52:14 +00009225 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
9226 * @vsi: the VSI being queried
9227 *
9228 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
9229 **/
9230int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
9231{
9232 struct i40e_veb *veb;
9233 struct i40e_pf *pf = vsi->back;
9234
9235 /* Uplink is not a bridge so default to VEB */
9236 if (vsi->veb_idx == I40E_NO_VEB)
9237 return 1;
9238
9239 veb = pf->veb[vsi->veb_idx];
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009240 if (!veb) {
9241 dev_info(&pf->pdev->dev,
9242 "There is no veb associated with the bridge\n");
9243 return -ENOENT;
9244 }
Neerav Parikh51616012015-02-06 08:52:14 +00009245
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009246 /* Uplink is a bridge in VEPA mode */
9247 if (veb->bridge_mode & BRIDGE_MODE_VEPA) {
9248 return 0;
9249 } else {
9250 /* Uplink is a bridge in VEB mode */
9251 return 1;
9252 }
9253
9254 /* VEPA is now default bridge, so return 0 */
9255 return 0;
Neerav Parikh51616012015-02-06 08:52:14 +00009256}
9257
9258/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009259 * i40e_add_vsi - Add a VSI to the switch
9260 * @vsi: the VSI being configured
9261 *
9262 * This initializes a VSI context depending on the VSI type to be added and
9263 * passes it down to the add_vsi aq command.
9264 **/
9265static int i40e_add_vsi(struct i40e_vsi *vsi)
9266{
9267 int ret = -ENODEV;
Kiran Patilf6bd0962016-06-20 09:10:34 -07009268 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009269 struct i40e_pf *pf = vsi->back;
9270 struct i40e_hw *hw = &pf->hw;
9271 struct i40e_vsi_context ctxt;
Kiran Patil21659032015-09-30 14:09:03 -04009272 struct i40e_mac_filter *f, *ftmp;
9273
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009274 u8 enabled_tc = 0x1; /* TC0 enabled */
9275 int f_count = 0;
9276
9277 memset(&ctxt, 0, sizeof(ctxt));
9278 switch (vsi->type) {
9279 case I40E_VSI_MAIN:
9280 /* The PF's main VSI is already setup as part of the
9281 * device initialization, so we'll not bother with
9282 * the add_vsi call, but we will retrieve the current
9283 * VSI context.
9284 */
9285 ctxt.seid = pf->main_vsi_seid;
9286 ctxt.pf_num = pf->hw.pf_id;
9287 ctxt.vf_num = 0;
9288 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
9289 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
9290 if (ret) {
9291 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009292 "couldn't get PF vsi config, err %s aq_err %s\n",
9293 i40e_stat_str(&pf->hw, ret),
9294 i40e_aq_str(&pf->hw,
9295 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009296 return -ENOENT;
9297 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009298 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009299 vsi->info.valid_sections = 0;
9300
9301 vsi->seid = ctxt.seid;
9302 vsi->id = ctxt.vsi_number;
9303
9304 enabled_tc = i40e_pf_get_tc_map(pf);
9305
9306 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009307 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
9308 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009309 memset(&ctxt, 0, sizeof(ctxt));
9310 ctxt.seid = pf->main_vsi_seid;
9311 ctxt.pf_num = pf->hw.pf_id;
9312 ctxt.vf_num = 0;
9313 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
9314 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
9315 if (ret) {
9316 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009317 "update vsi failed, err %s aq_err %s\n",
9318 i40e_stat_str(&pf->hw, ret),
9319 i40e_aq_str(&pf->hw,
9320 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009321 ret = -ENOENT;
9322 goto err;
9323 }
9324 /* update the local VSI info queue map */
9325 i40e_vsi_update_queue_map(vsi, &ctxt);
9326 vsi->info.valid_sections = 0;
9327 } else {
9328 /* Default/Main VSI is only enabled for TC0
9329 * reconfigure it to enable all TCs that are
9330 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009331 * For MFP case the iSCSI PF would use this
9332 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009333 */
9334 ret = i40e_vsi_config_tc(vsi, enabled_tc);
9335 if (ret) {
9336 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009337 "failed to configure TCs for main VSI tc_map 0x%08x, err %s aq_err %s\n",
9338 enabled_tc,
9339 i40e_stat_str(&pf->hw, ret),
9340 i40e_aq_str(&pf->hw,
9341 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009342 ret = -ENOENT;
9343 }
9344 }
9345 break;
9346
9347 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009348 ctxt.pf_num = hw->pf_id;
9349 ctxt.vf_num = 0;
9350 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009351 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009352 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009353 if ((pf->flags & I40E_FLAG_VEB_MODE_ENABLED) &&
9354 (i40e_is_vsi_uplink_mode_veb(vsi))) {
Neerav Parikh51616012015-02-06 08:52:14 +00009355 ctxt.info.valid_sections |=
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009356 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
Neerav Parikh51616012015-02-06 08:52:14 +00009357 ctxt.info.switch_id =
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009358 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Neerav Parikh51616012015-02-06 08:52:14 +00009359 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009360 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009361 break;
9362
9363 case I40E_VSI_VMDQ2:
9364 ctxt.pf_num = hw->pf_id;
9365 ctxt.vf_num = 0;
9366 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009367 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009368 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
9369
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009370 /* This VSI is connected to VEB so the switch_id
9371 * should be set to zero by default.
9372 */
Neerav Parikh51616012015-02-06 08:52:14 +00009373 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9374 ctxt.info.valid_sections |=
9375 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9376 ctxt.info.switch_id =
9377 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9378 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009379
9380 /* Setup the VSI tx/rx queue map for TC0 only for now */
9381 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9382 break;
9383
9384 case I40E_VSI_SRIOV:
9385 ctxt.pf_num = hw->pf_id;
9386 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
9387 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009388 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009389 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
9390
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009391 /* This VSI is connected to VEB so the switch_id
9392 * should be set to zero by default.
9393 */
Neerav Parikh51616012015-02-06 08:52:14 +00009394 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9395 ctxt.info.valid_sections |=
9396 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9397 ctxt.info.switch_id =
9398 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9399 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009400
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009401 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
9402 ctxt.info.valid_sections |=
9403 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
9404 ctxt.info.queueing_opt_flags |=
Ashish Shah4b28cdb2016-05-03 15:13:17 -07009405 (I40E_AQ_VSI_QUE_OPT_TCP_ENA |
9406 I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009407 }
9408
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009409 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
9410 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00009411 if (pf->vf[vsi->vf_id].spoofchk) {
9412 ctxt.info.valid_sections |=
9413 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
9414 ctxt.info.sec_flags |=
9415 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
9416 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
9417 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009418 /* Setup the VSI tx/rx queue map for TC0 only for now */
9419 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9420 break;
9421
Vasu Dev38e00432014-08-01 13:27:03 -07009422#ifdef I40E_FCOE
9423 case I40E_VSI_FCOE:
9424 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
9425 if (ret) {
9426 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
9427 return ret;
9428 }
9429 break;
9430
9431#endif /* I40E_FCOE */
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009432 case I40E_VSI_IWARP:
9433 /* send down message to iWARP */
9434 break;
9435
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009436 default:
9437 return -ENODEV;
9438 }
9439
9440 if (vsi->type != I40E_VSI_MAIN) {
9441 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
9442 if (ret) {
9443 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009444 "add vsi failed, err %s aq_err %s\n",
9445 i40e_stat_str(&pf->hw, ret),
9446 i40e_aq_str(&pf->hw,
9447 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009448 ret = -ENOENT;
9449 goto err;
9450 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009451 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009452 vsi->info.valid_sections = 0;
9453 vsi->seid = ctxt.seid;
9454 vsi->id = ctxt.vsi_number;
9455 }
Kiran Patilf6bd0962016-06-20 09:10:34 -07009456 /* Except FDIR VSI, for all othet VSI set the broadcast filter */
9457 if (vsi->type != I40E_VSI_FDIR) {
9458 aq_ret = i40e_aq_set_vsi_broadcast(hw, vsi->seid, true, NULL);
9459 if (aq_ret) {
9460 ret = i40e_aq_rc_to_posix(aq_ret,
9461 hw->aq.asq_last_status);
9462 dev_info(&pf->pdev->dev,
9463 "set brdcast promisc failed, err %s, aq_err %s\n",
9464 i40e_stat_str(hw, aq_ret),
9465 i40e_aq_str(hw, hw->aq.asq_last_status));
9466 }
9467 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009468
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009469 vsi->active_filters = 0;
9470 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
Kiran Patil21659032015-09-30 14:09:03 -04009471 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009472 /* If macvlan filters already exist, force them to get loaded */
9473 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009474 f->state = I40E_FILTER_NEW;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009475 f_count++;
9476 }
Kiran Patil21659032015-09-30 14:09:03 -04009477 spin_unlock_bh(&vsi->mac_filter_list_lock);
9478
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009479 if (f_count) {
9480 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
9481 pf->flags |= I40E_FLAG_FILTER_SYNC;
9482 }
9483
9484 /* Update VSI BW information */
9485 ret = i40e_vsi_get_bw_info(vsi);
9486 if (ret) {
9487 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009488 "couldn't get vsi bw info, err %s aq_err %s\n",
9489 i40e_stat_str(&pf->hw, ret),
9490 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009491 /* VSI is already added so not tearing that up */
9492 ret = 0;
9493 }
9494
9495err:
9496 return ret;
9497}
9498
9499/**
9500 * i40e_vsi_release - Delete a VSI and free its resources
9501 * @vsi: the VSI being removed
9502 *
9503 * Returns 0 on success or < 0 on error
9504 **/
9505int i40e_vsi_release(struct i40e_vsi *vsi)
9506{
9507 struct i40e_mac_filter *f, *ftmp;
9508 struct i40e_veb *veb = NULL;
9509 struct i40e_pf *pf;
9510 u16 uplink_seid;
9511 int i, n;
9512
9513 pf = vsi->back;
9514
9515 /* release of a VEB-owner or last VSI is not allowed */
9516 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
9517 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
9518 vsi->seid, vsi->uplink_seid);
9519 return -ENODEV;
9520 }
9521 if (vsi == pf->vsi[pf->lan_vsi] &&
9522 !test_bit(__I40E_DOWN, &pf->state)) {
9523 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
9524 return -ENODEV;
9525 }
9526
9527 uplink_seid = vsi->uplink_seid;
9528 if (vsi->type != I40E_VSI_SRIOV) {
9529 if (vsi->netdev_registered) {
9530 vsi->netdev_registered = false;
9531 if (vsi->netdev) {
9532 /* results in a call to i40e_close() */
9533 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009534 }
9535 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00009536 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009537 }
9538 i40e_vsi_disable_irq(vsi);
9539 }
9540
Kiran Patil21659032015-09-30 14:09:03 -04009541 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009542 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
9543 i40e_del_filter(vsi, f->macaddr, f->vlan,
9544 f->is_vf, f->is_netdev);
Kiran Patil21659032015-09-30 14:09:03 -04009545 spin_unlock_bh(&vsi->mac_filter_list_lock);
9546
Jesse Brandeburg17652c62015-11-05 17:01:02 -08009547 i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009548
9549 i40e_vsi_delete(vsi);
9550 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00009551 if (vsi->netdev) {
9552 free_netdev(vsi->netdev);
9553 vsi->netdev = NULL;
9554 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009555 i40e_vsi_clear_rings(vsi);
9556 i40e_vsi_clear(vsi);
9557
9558 /* If this was the last thing on the VEB, except for the
9559 * controlling VSI, remove the VEB, which puts the controlling
9560 * VSI onto the next level down in the switch.
9561 *
9562 * Well, okay, there's one more exception here: don't remove
9563 * the orphan VEBs yet. We'll wait for an explicit remove request
9564 * from up the network stack.
9565 */
Mitch Williams505682c2014-05-20 08:01:37 +00009566 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009567 if (pf->vsi[i] &&
9568 pf->vsi[i]->uplink_seid == uplink_seid &&
9569 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9570 n++; /* count the VSIs */
9571 }
9572 }
9573 for (i = 0; i < I40E_MAX_VEB; i++) {
9574 if (!pf->veb[i])
9575 continue;
9576 if (pf->veb[i]->uplink_seid == uplink_seid)
9577 n++; /* count the VEBs */
9578 if (pf->veb[i]->seid == uplink_seid)
9579 veb = pf->veb[i];
9580 }
9581 if (n == 0 && veb && veb->uplink_seid != 0)
9582 i40e_veb_release(veb);
9583
9584 return 0;
9585}
9586
9587/**
9588 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
9589 * @vsi: ptr to the VSI
9590 *
9591 * This should only be called after i40e_vsi_mem_alloc() which allocates the
9592 * corresponding SW VSI structure and initializes num_queue_pairs for the
9593 * newly allocated VSI.
9594 *
9595 * Returns 0 on success or negative on failure
9596 **/
9597static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
9598{
9599 int ret = -ENOENT;
9600 struct i40e_pf *pf = vsi->back;
9601
Alexander Duyck493fb302013-09-28 07:01:44 +00009602 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009603 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
9604 vsi->seid);
9605 return -EEXIST;
9606 }
9607
9608 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00009609 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009610 vsi->seid, vsi->base_vector);
9611 return -EEXIST;
9612 }
9613
Greg Rose90e04072014-03-06 08:59:57 +00009614 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009615 if (ret) {
9616 dev_info(&pf->pdev->dev,
9617 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
9618 vsi->num_q_vectors, vsi->seid, ret);
9619 vsi->num_q_vectors = 0;
9620 goto vector_setup_out;
9621 }
9622
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04009623 /* In Legacy mode, we do not have to get any other vector since we
9624 * piggyback on the misc/ICR0 for queue interrupts.
9625 */
9626 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
9627 return ret;
Shannon Nelson958a3e32013-09-28 07:13:28 +00009628 if (vsi->num_q_vectors)
9629 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
9630 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009631 if (vsi->base_vector < 0) {
9632 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00009633 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
9634 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009635 i40e_vsi_free_q_vectors(vsi);
9636 ret = -ENOENT;
9637 goto vector_setup_out;
9638 }
9639
9640vector_setup_out:
9641 return ret;
9642}
9643
9644/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009645 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
9646 * @vsi: pointer to the vsi.
9647 *
9648 * This re-allocates a vsi's queue resources.
9649 *
9650 * Returns pointer to the successfully allocated and configured VSI sw struct
9651 * on success, otherwise returns NULL on failure.
9652 **/
9653static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
9654{
John Underwoodf5340392016-02-18 09:19:24 -08009655 struct i40e_pf *pf;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009656 u8 enabled_tc;
9657 int ret;
9658
John Underwoodf5340392016-02-18 09:19:24 -08009659 if (!vsi)
9660 return NULL;
9661
9662 pf = vsi->back;
9663
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009664 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
9665 i40e_vsi_clear_rings(vsi);
9666
9667 i40e_vsi_free_arrays(vsi, false);
9668 i40e_set_num_rings_in_vsi(vsi);
9669 ret = i40e_vsi_alloc_arrays(vsi, false);
9670 if (ret)
9671 goto err_vsi;
9672
9673 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
9674 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009675 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009676 "failed to get tracking for %d queues for VSI %d err %d\n",
Shannon Nelson049a2be2014-10-17 03:14:50 +00009677 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009678 goto err_vsi;
9679 }
9680 vsi->base_queue = ret;
9681
9682 /* Update the FW view of the VSI. Force a reset of TC and queue
9683 * layout configurations.
9684 */
9685 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
9686 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
9687 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
9688 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009689 if (vsi->type == I40E_VSI_MAIN)
9690 i40e_rm_default_mac_filter(vsi, pf->hw.mac.perm_addr);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009691
9692 /* assign it some queues */
9693 ret = i40e_alloc_rings(vsi);
9694 if (ret)
9695 goto err_rings;
9696
9697 /* map all of the rings to the q_vectors */
9698 i40e_vsi_map_rings_to_vectors(vsi);
9699 return vsi;
9700
9701err_rings:
9702 i40e_vsi_free_q_vectors(vsi);
9703 if (vsi->netdev_registered) {
9704 vsi->netdev_registered = false;
9705 unregister_netdev(vsi->netdev);
9706 free_netdev(vsi->netdev);
9707 vsi->netdev = NULL;
9708 }
9709 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9710err_vsi:
9711 i40e_vsi_clear(vsi);
9712 return NULL;
9713}
9714
9715/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009716 * i40e_vsi_setup - Set up a VSI by a given type
9717 * @pf: board private structure
9718 * @type: VSI type
9719 * @uplink_seid: the switch element to link to
9720 * @param1: usage depends upon VSI type. For VF types, indicates VF id
9721 *
9722 * This allocates the sw VSI structure and its queue resources, then add a VSI
9723 * to the identified VEB.
9724 *
9725 * Returns pointer to the successfully allocated and configure VSI sw struct on
9726 * success, otherwise returns NULL on failure.
9727 **/
9728struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
9729 u16 uplink_seid, u32 param1)
9730{
9731 struct i40e_vsi *vsi = NULL;
9732 struct i40e_veb *veb = NULL;
9733 int ret, i;
9734 int v_idx;
9735
9736 /* The requested uplink_seid must be either
9737 * - the PF's port seid
9738 * no VEB is needed because this is the PF
9739 * or this is a Flow Director special case VSI
9740 * - seid of an existing VEB
9741 * - seid of a VSI that owns an existing VEB
9742 * - seid of a VSI that doesn't own a VEB
9743 * a new VEB is created and the VSI becomes the owner
9744 * - seid of the PF VSI, which is what creates the first VEB
9745 * this is a special case of the previous
9746 *
9747 * Find which uplink_seid we were given and create a new VEB if needed
9748 */
9749 for (i = 0; i < I40E_MAX_VEB; i++) {
9750 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
9751 veb = pf->veb[i];
9752 break;
9753 }
9754 }
9755
9756 if (!veb && uplink_seid != pf->mac_seid) {
9757
Mitch Williams505682c2014-05-20 08:01:37 +00009758 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009759 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
9760 vsi = pf->vsi[i];
9761 break;
9762 }
9763 }
9764 if (!vsi) {
9765 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
9766 uplink_seid);
9767 return NULL;
9768 }
9769
9770 if (vsi->uplink_seid == pf->mac_seid)
9771 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
9772 vsi->tc_config.enabled_tc);
9773 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
9774 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
9775 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009776 if (veb) {
9777 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
9778 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04009779 "New VSI creation error, uplink seid of LAN VSI expected.\n");
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009780 return NULL;
9781 }
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -04009782 /* We come up by default in VEPA mode if SRIOV is not
9783 * already enabled, in which case we can't force VEPA
9784 * mode.
9785 */
9786 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
9787 veb->bridge_mode = BRIDGE_MODE_VEPA;
9788 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
9789 }
Neerav Parikh51616012015-02-06 08:52:14 +00009790 i40e_config_bridge_mode(veb);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009791 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009792 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9793 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9794 veb = pf->veb[i];
9795 }
9796 if (!veb) {
9797 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
9798 return NULL;
9799 }
9800
9801 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
9802 uplink_seid = veb->seid;
9803 }
9804
9805 /* get vsi sw struct */
9806 v_idx = i40e_vsi_mem_alloc(pf, type);
9807 if (v_idx < 0)
9808 goto err_alloc;
9809 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009810 if (!vsi)
9811 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009812 vsi->type = type;
9813 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
9814
9815 if (type == I40E_VSI_MAIN)
9816 pf->lan_vsi = v_idx;
9817 else if (type == I40E_VSI_SRIOV)
9818 vsi->vf_id = param1;
9819 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009820 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
9821 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009822 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009823 dev_info(&pf->pdev->dev,
9824 "failed to get tracking for %d queues for VSI %d err=%d\n",
9825 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009826 goto err_vsi;
9827 }
9828 vsi->base_queue = ret;
9829
9830 /* get a VSI from the hardware */
9831 vsi->uplink_seid = uplink_seid;
9832 ret = i40e_add_vsi(vsi);
9833 if (ret)
9834 goto err_vsi;
9835
9836 switch (vsi->type) {
9837 /* setup the netdev if needed */
9838 case I40E_VSI_MAIN:
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -05009839 /* Apply relevant filters if a platform-specific mac
9840 * address was selected.
9841 */
9842 if (!!(pf->flags & I40E_FLAG_PF_MAC)) {
9843 ret = i40e_macaddr_init(vsi, pf->hw.mac.addr);
9844 if (ret) {
9845 dev_warn(&pf->pdev->dev,
9846 "could not set up macaddr; err %d\n",
9847 ret);
9848 }
9849 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009850 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07009851 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009852 ret = i40e_config_netdev(vsi);
9853 if (ret)
9854 goto err_netdev;
9855 ret = register_netdev(vsi->netdev);
9856 if (ret)
9857 goto err_netdev;
9858 vsi->netdev_registered = true;
9859 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009860#ifdef CONFIG_I40E_DCB
9861 /* Setup DCB netlink interface */
9862 i40e_dcbnl_setup(vsi);
9863#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009864 /* fall through */
9865
9866 case I40E_VSI_FDIR:
9867 /* set up vectors and rings if needed */
9868 ret = i40e_vsi_setup_vectors(vsi);
9869 if (ret)
9870 goto err_msix;
9871
9872 ret = i40e_alloc_rings(vsi);
9873 if (ret)
9874 goto err_rings;
9875
9876 /* map all of the rings to the q_vectors */
9877 i40e_vsi_map_rings_to_vectors(vsi);
9878
9879 i40e_vsi_reset_stats(vsi);
9880 break;
9881
9882 default:
9883 /* no netdev or rings for the other VSI types */
9884 break;
9885 }
9886
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04009887 if ((pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) &&
9888 (vsi->type == I40E_VSI_VMDQ2)) {
9889 ret = i40e_vsi_config_rss(vsi);
9890 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009891 return vsi;
9892
9893err_rings:
9894 i40e_vsi_free_q_vectors(vsi);
9895err_msix:
9896 if (vsi->netdev_registered) {
9897 vsi->netdev_registered = false;
9898 unregister_netdev(vsi->netdev);
9899 free_netdev(vsi->netdev);
9900 vsi->netdev = NULL;
9901 }
9902err_netdev:
9903 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9904err_vsi:
9905 i40e_vsi_clear(vsi);
9906err_alloc:
9907 return NULL;
9908}
9909
9910/**
9911 * i40e_veb_get_bw_info - Query VEB BW information
9912 * @veb: the veb to query
9913 *
9914 * Query the Tx scheduler BW configuration data for given VEB
9915 **/
9916static int i40e_veb_get_bw_info(struct i40e_veb *veb)
9917{
9918 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
9919 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
9920 struct i40e_pf *pf = veb->pf;
9921 struct i40e_hw *hw = &pf->hw;
9922 u32 tc_bw_max;
9923 int ret = 0;
9924 int i;
9925
9926 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
9927 &bw_data, NULL);
9928 if (ret) {
9929 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009930 "query veb bw config failed, err %s aq_err %s\n",
9931 i40e_stat_str(&pf->hw, ret),
9932 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009933 goto out;
9934 }
9935
9936 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
9937 &ets_data, NULL);
9938 if (ret) {
9939 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009940 "query veb bw ets config failed, err %s aq_err %s\n",
9941 i40e_stat_str(&pf->hw, ret),
9942 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009943 goto out;
9944 }
9945
9946 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
9947 veb->bw_max_quanta = ets_data.tc_bw_max;
9948 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00009949 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009950 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
9951 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
9952 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
9953 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
9954 veb->bw_tc_limit_credits[i] =
9955 le16_to_cpu(bw_data.tc_bw_limits[i]);
9956 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
9957 }
9958
9959out:
9960 return ret;
9961}
9962
9963/**
9964 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
9965 * @pf: board private structure
9966 *
9967 * On error: returns error code (negative)
9968 * On success: returns vsi index in PF (positive)
9969 **/
9970static int i40e_veb_mem_alloc(struct i40e_pf *pf)
9971{
9972 int ret = -ENOENT;
9973 struct i40e_veb *veb;
9974 int i;
9975
9976 /* Need to protect the allocation of switch elements at the PF level */
9977 mutex_lock(&pf->switch_mutex);
9978
9979 /* VEB list may be fragmented if VEB creation/destruction has
9980 * been happening. We can afford to do a quick scan to look
9981 * for any free slots in the list.
9982 *
9983 * find next empty veb slot, looping back around if necessary
9984 */
9985 i = 0;
9986 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
9987 i++;
9988 if (i >= I40E_MAX_VEB) {
9989 ret = -ENOMEM;
9990 goto err_alloc_veb; /* out of VEB slots! */
9991 }
9992
9993 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
9994 if (!veb) {
9995 ret = -ENOMEM;
9996 goto err_alloc_veb;
9997 }
9998 veb->pf = pf;
9999 veb->idx = i;
10000 veb->enabled_tc = 1;
10001
10002 pf->veb[i] = veb;
10003 ret = i;
10004err_alloc_veb:
10005 mutex_unlock(&pf->switch_mutex);
10006 return ret;
10007}
10008
10009/**
10010 * i40e_switch_branch_release - Delete a branch of the switch tree
10011 * @branch: where to start deleting
10012 *
10013 * This uses recursion to find the tips of the branch to be
10014 * removed, deleting until we get back to and can delete this VEB.
10015 **/
10016static void i40e_switch_branch_release(struct i40e_veb *branch)
10017{
10018 struct i40e_pf *pf = branch->pf;
10019 u16 branch_seid = branch->seid;
10020 u16 veb_idx = branch->idx;
10021 int i;
10022
10023 /* release any VEBs on this VEB - RECURSION */
10024 for (i = 0; i < I40E_MAX_VEB; i++) {
10025 if (!pf->veb[i])
10026 continue;
10027 if (pf->veb[i]->uplink_seid == branch->seid)
10028 i40e_switch_branch_release(pf->veb[i]);
10029 }
10030
10031 /* Release the VSIs on this VEB, but not the owner VSI.
10032 *
10033 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
10034 * the VEB itself, so don't use (*branch) after this loop.
10035 */
Mitch Williams505682c2014-05-20 08:01:37 +000010036 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010037 if (!pf->vsi[i])
10038 continue;
10039 if (pf->vsi[i]->uplink_seid == branch_seid &&
10040 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
10041 i40e_vsi_release(pf->vsi[i]);
10042 }
10043 }
10044
10045 /* There's one corner case where the VEB might not have been
10046 * removed, so double check it here and remove it if needed.
10047 * This case happens if the veb was created from the debugfs
10048 * commands and no VSIs were added to it.
10049 */
10050 if (pf->veb[veb_idx])
10051 i40e_veb_release(pf->veb[veb_idx]);
10052}
10053
10054/**
10055 * i40e_veb_clear - remove veb struct
10056 * @veb: the veb to remove
10057 **/
10058static void i40e_veb_clear(struct i40e_veb *veb)
10059{
10060 if (!veb)
10061 return;
10062
10063 if (veb->pf) {
10064 struct i40e_pf *pf = veb->pf;
10065
10066 mutex_lock(&pf->switch_mutex);
10067 if (pf->veb[veb->idx] == veb)
10068 pf->veb[veb->idx] = NULL;
10069 mutex_unlock(&pf->switch_mutex);
10070 }
10071
10072 kfree(veb);
10073}
10074
10075/**
10076 * i40e_veb_release - Delete a VEB and free its resources
10077 * @veb: the VEB being removed
10078 **/
10079void i40e_veb_release(struct i40e_veb *veb)
10080{
10081 struct i40e_vsi *vsi = NULL;
10082 struct i40e_pf *pf;
10083 int i, n = 0;
10084
10085 pf = veb->pf;
10086
10087 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +000010088 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010089 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
10090 n++;
10091 vsi = pf->vsi[i];
10092 }
10093 }
10094 if (n != 1) {
10095 dev_info(&pf->pdev->dev,
10096 "can't remove VEB %d with %d VSIs left\n",
10097 veb->seid, n);
10098 return;
10099 }
10100
10101 /* move the remaining VSI to uplink veb */
10102 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
10103 if (veb->uplink_seid) {
10104 vsi->uplink_seid = veb->uplink_seid;
10105 if (veb->uplink_seid == pf->mac_seid)
10106 vsi->veb_idx = I40E_NO_VEB;
10107 else
10108 vsi->veb_idx = veb->veb_idx;
10109 } else {
10110 /* floating VEB */
10111 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
10112 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
10113 }
10114
10115 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
10116 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010117}
10118
10119/**
10120 * i40e_add_veb - create the VEB in the switch
10121 * @veb: the VEB to be instantiated
10122 * @vsi: the controlling VSI
10123 **/
10124static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
10125{
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010126 struct i40e_pf *pf = veb->pf;
Shannon Nelson66fc3602016-01-13 16:51:42 -080010127 bool enable_stats = !!(pf->flags & I40E_FLAG_VEB_STATS_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010128 int ret;
10129
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010130 ret = i40e_aq_add_veb(&pf->hw, veb->uplink_seid, vsi->seid,
Mitch Williams5bc16032016-05-16 10:26:43 -070010131 veb->enabled_tc, false,
Shannon Nelson66fc3602016-01-13 16:51:42 -080010132 &veb->seid, enable_stats, NULL);
Mitch Williams5bc16032016-05-16 10:26:43 -070010133
10134 /* get a VEB from the hardware */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010135 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010136 dev_info(&pf->pdev->dev,
10137 "couldn't add VEB, err %s aq_err %s\n",
10138 i40e_stat_str(&pf->hw, ret),
10139 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010140 return -EPERM;
10141 }
10142
10143 /* get statistics counter */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010144 ret = i40e_aq_get_veb_parameters(&pf->hw, veb->seid, NULL, NULL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010145 &veb->stats_idx, NULL, NULL, NULL);
10146 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010147 dev_info(&pf->pdev->dev,
10148 "couldn't get VEB statistics idx, err %s aq_err %s\n",
10149 i40e_stat_str(&pf->hw, ret),
10150 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010151 return -EPERM;
10152 }
10153 ret = i40e_veb_get_bw_info(veb);
10154 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010155 dev_info(&pf->pdev->dev,
10156 "couldn't get VEB bw info, err %s aq_err %s\n",
10157 i40e_stat_str(&pf->hw, ret),
10158 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
10159 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010160 return -ENOENT;
10161 }
10162
10163 vsi->uplink_seid = veb->seid;
10164 vsi->veb_idx = veb->idx;
10165 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
10166
10167 return 0;
10168}
10169
10170/**
10171 * i40e_veb_setup - Set up a VEB
10172 * @pf: board private structure
10173 * @flags: VEB setup flags
10174 * @uplink_seid: the switch element to link to
10175 * @vsi_seid: the initial VSI seid
10176 * @enabled_tc: Enabled TC bit-map
10177 *
10178 * This allocates the sw VEB structure and links it into the switch
10179 * It is possible and legal for this to be a duplicate of an already
10180 * existing VEB. It is also possible for both uplink and vsi seids
10181 * to be zero, in order to create a floating VEB.
10182 *
10183 * Returns pointer to the successfully allocated VEB sw struct on
10184 * success, otherwise returns NULL on failure.
10185 **/
10186struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
10187 u16 uplink_seid, u16 vsi_seid,
10188 u8 enabled_tc)
10189{
10190 struct i40e_veb *veb, *uplink_veb = NULL;
10191 int vsi_idx, veb_idx;
10192 int ret;
10193
10194 /* if one seid is 0, the other must be 0 to create a floating relay */
10195 if ((uplink_seid == 0 || vsi_seid == 0) &&
10196 (uplink_seid + vsi_seid != 0)) {
10197 dev_info(&pf->pdev->dev,
10198 "one, not both seid's are 0: uplink=%d vsi=%d\n",
10199 uplink_seid, vsi_seid);
10200 return NULL;
10201 }
10202
10203 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +000010204 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010205 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
10206 break;
Mitch Williams505682c2014-05-20 08:01:37 +000010207 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010208 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
10209 vsi_seid);
10210 return NULL;
10211 }
10212
10213 if (uplink_seid && uplink_seid != pf->mac_seid) {
10214 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
10215 if (pf->veb[veb_idx] &&
10216 pf->veb[veb_idx]->seid == uplink_seid) {
10217 uplink_veb = pf->veb[veb_idx];
10218 break;
10219 }
10220 }
10221 if (!uplink_veb) {
10222 dev_info(&pf->pdev->dev,
10223 "uplink seid %d not found\n", uplink_seid);
10224 return NULL;
10225 }
10226 }
10227
10228 /* get veb sw struct */
10229 veb_idx = i40e_veb_mem_alloc(pf);
10230 if (veb_idx < 0)
10231 goto err_alloc;
10232 veb = pf->veb[veb_idx];
10233 veb->flags = flags;
10234 veb->uplink_seid = uplink_seid;
10235 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
10236 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
10237
10238 /* create the VEB in the switch */
10239 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
10240 if (ret)
10241 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +000010242 if (vsi_idx == pf->lan_vsi)
10243 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010244
10245 return veb;
10246
10247err_veb:
10248 i40e_veb_clear(veb);
10249err_alloc:
10250 return NULL;
10251}
10252
10253/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010254 * i40e_setup_pf_switch_element - set PF vars based on switch type
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010255 * @pf: board private structure
10256 * @ele: element we are building info from
10257 * @num_reported: total number of elements
10258 * @printconfig: should we print the contents
10259 *
10260 * helper function to assist in extracting a few useful SEID values.
10261 **/
10262static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
10263 struct i40e_aqc_switch_config_element_resp *ele,
10264 u16 num_reported, bool printconfig)
10265{
10266 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
10267 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
10268 u8 element_type = ele->element_type;
10269 u16 seid = le16_to_cpu(ele->seid);
10270
10271 if (printconfig)
10272 dev_info(&pf->pdev->dev,
10273 "type=%d seid=%d uplink=%d downlink=%d\n",
10274 element_type, seid, uplink_seid, downlink_seid);
10275
10276 switch (element_type) {
10277 case I40E_SWITCH_ELEMENT_TYPE_MAC:
10278 pf->mac_seid = seid;
10279 break;
10280 case I40E_SWITCH_ELEMENT_TYPE_VEB:
10281 /* Main VEB? */
10282 if (uplink_seid != pf->mac_seid)
10283 break;
10284 if (pf->lan_veb == I40E_NO_VEB) {
10285 int v;
10286
10287 /* find existing or else empty VEB */
10288 for (v = 0; v < I40E_MAX_VEB; v++) {
10289 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
10290 pf->lan_veb = v;
10291 break;
10292 }
10293 }
10294 if (pf->lan_veb == I40E_NO_VEB) {
10295 v = i40e_veb_mem_alloc(pf);
10296 if (v < 0)
10297 break;
10298 pf->lan_veb = v;
10299 }
10300 }
10301
10302 pf->veb[pf->lan_veb]->seid = seid;
10303 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
10304 pf->veb[pf->lan_veb]->pf = pf;
10305 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
10306 break;
10307 case I40E_SWITCH_ELEMENT_TYPE_VSI:
10308 if (num_reported != 1)
10309 break;
10310 /* This is immediately after a reset so we can assume this is
10311 * the PF's VSI
10312 */
10313 pf->mac_seid = uplink_seid;
10314 pf->pf_seid = downlink_seid;
10315 pf->main_vsi_seid = seid;
10316 if (printconfig)
10317 dev_info(&pf->pdev->dev,
10318 "pf_seid=%d main_vsi_seid=%d\n",
10319 pf->pf_seid, pf->main_vsi_seid);
10320 break;
10321 case I40E_SWITCH_ELEMENT_TYPE_PF:
10322 case I40E_SWITCH_ELEMENT_TYPE_VF:
10323 case I40E_SWITCH_ELEMENT_TYPE_EMP:
10324 case I40E_SWITCH_ELEMENT_TYPE_BMC:
10325 case I40E_SWITCH_ELEMENT_TYPE_PE:
10326 case I40E_SWITCH_ELEMENT_TYPE_PA:
10327 /* ignore these for now */
10328 break;
10329 default:
10330 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
10331 element_type, seid);
10332 break;
10333 }
10334}
10335
10336/**
10337 * i40e_fetch_switch_configuration - Get switch config from firmware
10338 * @pf: board private structure
10339 * @printconfig: should we print the contents
10340 *
10341 * Get the current switch configuration from the device and
10342 * extract a few useful SEID values.
10343 **/
10344int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
10345{
10346 struct i40e_aqc_get_switch_config_resp *sw_config;
10347 u16 next_seid = 0;
10348 int ret = 0;
10349 u8 *aq_buf;
10350 int i;
10351
10352 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
10353 if (!aq_buf)
10354 return -ENOMEM;
10355
10356 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
10357 do {
10358 u16 num_reported, num_total;
10359
10360 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
10361 I40E_AQ_LARGE_BUF,
10362 &next_seid, NULL);
10363 if (ret) {
10364 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010365 "get switch config failed err %s aq_err %s\n",
10366 i40e_stat_str(&pf->hw, ret),
10367 i40e_aq_str(&pf->hw,
10368 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010369 kfree(aq_buf);
10370 return -ENOENT;
10371 }
10372
10373 num_reported = le16_to_cpu(sw_config->header.num_reported);
10374 num_total = le16_to_cpu(sw_config->header.num_total);
10375
10376 if (printconfig)
10377 dev_info(&pf->pdev->dev,
10378 "header: %d reported %d total\n",
10379 num_reported, num_total);
10380
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010381 for (i = 0; i < num_reported; i++) {
10382 struct i40e_aqc_switch_config_element_resp *ele =
10383 &sw_config->element[i];
10384
10385 i40e_setup_pf_switch_element(pf, ele, num_reported,
10386 printconfig);
10387 }
10388 } while (next_seid != 0);
10389
10390 kfree(aq_buf);
10391 return ret;
10392}
10393
10394/**
10395 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
10396 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010397 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010398 *
10399 * Returns 0 on success, negative value on failure
10400 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010401static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010402{
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070010403 u16 flags = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010404 int ret;
10405
10406 /* find out what's out there already */
10407 ret = i40e_fetch_switch_configuration(pf, false);
10408 if (ret) {
10409 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010410 "couldn't fetch switch config, err %s aq_err %s\n",
10411 i40e_stat_str(&pf->hw, ret),
10412 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010413 return ret;
10414 }
10415 i40e_pf_reset_stats(pf);
10416
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070010417 /* set the switch config bit for the whole device to
10418 * support limited promisc or true promisc
10419 * when user requests promisc. The default is limited
10420 * promisc.
10421 */
10422
10423 if ((pf->hw.pf_id == 0) &&
10424 !(pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT))
10425 flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10426
10427 if (pf->hw.pf_id == 0) {
10428 u16 valid_flags;
10429
10430 valid_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10431 ret = i40e_aq_set_switch_config(&pf->hw, flags, valid_flags,
10432 NULL);
10433 if (ret && pf->hw.aq.asq_last_status != I40E_AQ_RC_ESRCH) {
10434 dev_info(&pf->pdev->dev,
10435 "couldn't set switch config bits, err %s aq_err %s\n",
10436 i40e_stat_str(&pf->hw, ret),
10437 i40e_aq_str(&pf->hw,
10438 pf->hw.aq.asq_last_status));
10439 /* not a fatal problem, just keep going */
10440 }
10441 }
10442
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010443 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010444 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010445 struct i40e_vsi *vsi = NULL;
10446 u16 uplink_seid;
10447
10448 /* Set up the PF VSI associated with the PF's main VSI
10449 * that is already in the HW switch
10450 */
10451 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
10452 uplink_seid = pf->veb[pf->lan_veb]->seid;
10453 else
10454 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010455 if (pf->lan_vsi == I40E_NO_VSI)
10456 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
10457 else if (reinit)
10458 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010459 if (!vsi) {
10460 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
10461 i40e_fdir_teardown(pf);
10462 return -EAGAIN;
10463 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010464 } else {
10465 /* force a reset of TC and queue layout configurations */
10466 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -040010467
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010468 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
10469 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
10470 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
10471 }
10472 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
10473
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010474 i40e_fdir_sb_setup(pf);
10475
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010476 /* Setup static PF queue filter control settings */
10477 ret = i40e_setup_pf_filter_control(pf);
10478 if (ret) {
10479 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
10480 ret);
10481 /* Failure here should not stop continuing other steps */
10482 }
10483
10484 /* enable RSS in the HW, even for only one queue, as the stack can use
10485 * the hash
10486 */
10487 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
Helin Zhang043dd652015-10-21 19:56:23 -040010488 i40e_pf_config_rss(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010489
10490 /* fill in link information and enable LSE reporting */
Catherine Sullivan0a862b42015-08-31 19:54:53 -040010491 i40e_update_link_info(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010492 i40e_link_event(pf);
10493
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010494 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010495 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
10496 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010497
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000010498 i40e_ptp_init(pf);
10499
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010500 return ret;
10501}
10502
10503/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010504 * i40e_determine_queue_usage - Work out queue distribution
10505 * @pf: board private structure
10506 **/
10507static void i40e_determine_queue_usage(struct i40e_pf *pf)
10508{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010509 int queues_left;
10510
10511 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -070010512#ifdef I40E_FCOE
10513 pf->num_fcoe_qps = 0;
10514#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010515
10516 /* Find the max queues to be put into basic use. We'll always be
10517 * using TC0, whether or not DCB is running, and TC0 will get the
10518 * big RSS set.
10519 */
10520 queues_left = pf->hw.func_caps.num_tx_qp;
10521
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010522 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +000010523 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010524 /* one qp for PF, no queues for anything else */
10525 queues_left = 0;
Helin Zhangacd65442015-10-26 19:44:28 -040010526 pf->alloc_rss_size = pf->num_lan_qps = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010527
10528 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010529 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060010530 I40E_FLAG_IWARP_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010531#ifdef I40E_FCOE
10532 I40E_FLAG_FCOE_ENABLED |
10533#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010534 I40E_FLAG_FD_SB_ENABLED |
10535 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010536 I40E_FLAG_DCB_CAPABLE |
Dave Ertmana0362442016-08-29 17:38:26 -070010537 I40E_FLAG_DCB_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010538 I40E_FLAG_SRIOV_ENABLED |
10539 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +000010540 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
10541 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +000010542 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010543 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +000010544 /* one qp for PF */
Helin Zhangacd65442015-10-26 19:44:28 -040010545 pf->alloc_rss_size = pf->num_lan_qps = 1;
Frank Zhang9aa7e932014-05-20 08:01:42 +000010546 queues_left -= pf->num_lan_qps;
10547
10548 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060010549 I40E_FLAG_IWARP_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010550#ifdef I40E_FCOE
10551 I40E_FLAG_FCOE_ENABLED |
10552#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +000010553 I40E_FLAG_FD_SB_ENABLED |
10554 I40E_FLAG_FD_ATR_ENABLED |
10555 I40E_FLAG_DCB_ENABLED |
10556 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010557 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010558 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010559 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010560 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Dave Ertmana0362442016-08-29 17:38:26 -070010561 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE |
10562 I40E_FLAG_DCB_ENABLED);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010563 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
10564 }
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +000010565 pf->num_lan_qps = max_t(int, pf->rss_size_max,
10566 num_online_cpus());
10567 pf->num_lan_qps = min_t(int, pf->num_lan_qps,
10568 pf->hw.func_caps.num_tx_qp);
10569
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010570 queues_left -= pf->num_lan_qps;
10571 }
10572
Vasu Dev38e00432014-08-01 13:27:03 -070010573#ifdef I40E_FCOE
10574 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
10575 if (I40E_DEFAULT_FCOE <= queues_left) {
10576 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
10577 } else if (I40E_MINIMUM_FCOE <= queues_left) {
10578 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
10579 } else {
10580 pf->num_fcoe_qps = 0;
10581 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
10582 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
10583 }
10584
10585 queues_left -= pf->num_fcoe_qps;
10586 }
10587
10588#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010589 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
10590 if (queues_left > 1) {
10591 queues_left -= 1; /* save 1 queue for FD */
10592 } else {
10593 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
10594 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
10595 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010596 }
10597
10598 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10599 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010600 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
10601 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010602 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
10603 }
10604
10605 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
10606 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
10607 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
10608 (queues_left / pf->num_vmdq_qps));
10609 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
10610 }
10611
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +000010612 pf->queues_left = queues_left;
Neerav Parikh8279e492015-09-03 17:18:50 -040010613 dev_dbg(&pf->pdev->dev,
10614 "qs_avail=%d FD SB=%d lan_qs=%d lan_tc0=%d vf=%d*%d vmdq=%d*%d, remaining=%d\n",
10615 pf->hw.func_caps.num_tx_qp,
10616 !!(pf->flags & I40E_FLAG_FD_SB_ENABLED),
Helin Zhangacd65442015-10-26 19:44:28 -040010617 pf->num_lan_qps, pf->alloc_rss_size, pf->num_req_vfs,
10618 pf->num_vf_qps, pf->num_vmdq_vsis, pf->num_vmdq_qps,
10619 queues_left);
Vasu Dev38e00432014-08-01 13:27:03 -070010620#ifdef I40E_FCOE
Neerav Parikh8279e492015-09-03 17:18:50 -040010621 dev_dbg(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
Vasu Dev38e00432014-08-01 13:27:03 -070010622#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010623}
10624
10625/**
10626 * i40e_setup_pf_filter_control - Setup PF static filter control
10627 * @pf: PF to be setup
10628 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010629 * i40e_setup_pf_filter_control sets up a PF's initial filter control
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010630 * settings. If PE/FCoE are enabled then it will also set the per PF
10631 * based filter sizes required for them. It also enables Flow director,
10632 * ethertype and macvlan type filter settings for the pf.
10633 *
10634 * Returns 0 on success, negative on failure
10635 **/
10636static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
10637{
10638 struct i40e_filter_control_settings *settings = &pf->filter_settings;
10639
10640 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
10641
10642 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010643 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010644 settings->enable_fdir = true;
10645
10646 /* Ethtype and MACVLAN filters enabled for PF */
10647 settings->enable_ethtype = true;
10648 settings->enable_macvlan = true;
10649
10650 if (i40e_set_filter_control(&pf->hw, settings))
10651 return -ENOENT;
10652
10653 return 0;
10654}
10655
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010656#define INFO_STRING_LEN 255
Shannon Nelson7fd89542015-10-21 19:47:04 -040010657#define REMAIN(__x) (INFO_STRING_LEN - (__x))
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010658static void i40e_print_features(struct i40e_pf *pf)
10659{
10660 struct i40e_hw *hw = &pf->hw;
Joe Perches3b195842015-12-03 04:20:57 -080010661 char *buf;
10662 int i;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010663
Joe Perches3b195842015-12-03 04:20:57 -080010664 buf = kmalloc(INFO_STRING_LEN, GFP_KERNEL);
10665 if (!buf)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010666 return;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010667
Joe Perches3b195842015-12-03 04:20:57 -080010668 i = snprintf(buf, INFO_STRING_LEN, "Features: PF-id[%d]", hw->pf_id);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010669#ifdef CONFIG_PCI_IOV
Joe Perches3b195842015-12-03 04:20:57 -080010670 i += snprintf(&buf[i], REMAIN(i), " VFs: %d", pf->num_req_vfs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010671#endif
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070010672 i += snprintf(&buf[i], REMAIN(i), " VSIs: %d QP: %d",
Shannon Nelson7fd89542015-10-21 19:47:04 -040010673 pf->hw.func_caps.num_vsis,
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070010674 pf->vsi[pf->lan_vsi]->num_queue_pairs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010675 if (pf->flags & I40E_FLAG_RSS_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010676 i += snprintf(&buf[i], REMAIN(i), " RSS");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010677 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010678 i += snprintf(&buf[i], REMAIN(i), " FD_ATR");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010679 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
Joe Perches3b195842015-12-03 04:20:57 -080010680 i += snprintf(&buf[i], REMAIN(i), " FD_SB");
10681 i += snprintf(&buf[i], REMAIN(i), " NTUPLE");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010682 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010683 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Joe Perches3b195842015-12-03 04:20:57 -080010684 i += snprintf(&buf[i], REMAIN(i), " DCB");
Joe Perches3b195842015-12-03 04:20:57 -080010685 i += snprintf(&buf[i], REMAIN(i), " VxLAN");
Singhai, Anjali6a899022015-12-14 12:21:18 -080010686 i += snprintf(&buf[i], REMAIN(i), " Geneve");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010687 if (pf->flags & I40E_FLAG_PTP)
Joe Perches3b195842015-12-03 04:20:57 -080010688 i += snprintf(&buf[i], REMAIN(i), " PTP");
Vasu Dev38e00432014-08-01 13:27:03 -070010689#ifdef I40E_FCOE
10690 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010691 i += snprintf(&buf[i], REMAIN(i), " FCOE");
Vasu Dev38e00432014-08-01 13:27:03 -070010692#endif
Shannon Nelson6dec1012015-09-28 14:12:30 -040010693 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010694 i += snprintf(&buf[i], REMAIN(i), " VEB");
Shannon Nelson6dec1012015-09-28 14:12:30 -040010695 else
Joe Perches3b195842015-12-03 04:20:57 -080010696 i += snprintf(&buf[i], REMAIN(i), " VEPA");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010697
Joe Perches3b195842015-12-03 04:20:57 -080010698 dev_info(&pf->pdev->dev, "%s\n", buf);
10699 kfree(buf);
Shannon Nelson7fd89542015-10-21 19:47:04 -040010700 WARN_ON(i > INFO_STRING_LEN);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010701}
10702
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010703/**
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010704 * i40e_get_platform_mac_addr - get platform-specific MAC address
10705 *
10706 * @pdev: PCI device information struct
10707 * @pf: board private structure
10708 *
10709 * Look up the MAC address in Open Firmware on systems that support it,
10710 * and use IDPROM on SPARC if no OF address is found. On return, the
10711 * I40E_FLAG_PF_MAC will be wset in pf->flags if a platform-specific value
10712 * has been selected.
10713 **/
10714static void i40e_get_platform_mac_addr(struct pci_dev *pdev, struct i40e_pf *pf)
10715{
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010716 pf->flags &= ~I40E_FLAG_PF_MAC;
Sowmini Varadhanba942722016-01-12 19:32:31 -080010717 if (!eth_platform_get_mac_address(&pdev->dev, pf->hw.mac.addr))
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010718 pf->flags |= I40E_FLAG_PF_MAC;
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010719}
10720
10721/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010722 * i40e_probe - Device initialization routine
10723 * @pdev: PCI device information struct
10724 * @ent: entry in i40e_pci_tbl
10725 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010726 * i40e_probe initializes a PF identified by a pci_dev structure.
10727 * The OS initialization, configuring of the PF private structure,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010728 * and a hardware reset occur.
10729 *
10730 * Returns 0 on success, negative on failure
10731 **/
10732static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
10733{
Catherine Sullivane8278452015-02-06 08:52:08 +000010734 struct i40e_aq_get_phy_abilities_resp abilities;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010735 struct i40e_pf *pf;
10736 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010737 static u16 pfs_found;
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010738 u16 wol_nvm_bits;
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010739 u16 link_status;
Jean Sacren6f66a482015-09-19 05:08:45 -060010740 int err;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040010741 u32 val;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010742 u32 i;
Helin Zhang58fc3262015-10-01 14:37:38 -040010743 u8 set_fc_aq_fail;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010744
10745 err = pci_enable_device_mem(pdev);
10746 if (err)
10747 return err;
10748
10749 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +000010750 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +000010751 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +000010752 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
10753 if (err) {
10754 dev_err(&pdev->dev,
10755 "DMA configuration failed: 0x%x\n", err);
10756 goto err_dma;
10757 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010758 }
10759
10760 /* set up pci connections */
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020010761 err = pci_request_mem_regions(pdev, i40e_driver_name);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010762 if (err) {
10763 dev_info(&pdev->dev,
10764 "pci_request_selected_regions failed %d\n", err);
10765 goto err_pci_reg;
10766 }
10767
10768 pci_enable_pcie_error_reporting(pdev);
10769 pci_set_master(pdev);
10770
10771 /* Now that we have a PCI connection, we need to do the
10772 * low level device setup. This is primarily setting up
10773 * the Admin Queue structures and then querying for the
10774 * device's current profile information.
10775 */
10776 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
10777 if (!pf) {
10778 err = -ENOMEM;
10779 goto err_pf_alloc;
10780 }
10781 pf->next_vsi = 0;
10782 pf->pdev = pdev;
10783 set_bit(__I40E_DOWN, &pf->state);
10784
10785 hw = &pf->hw;
10786 hw->back = pf;
Anjali Singhai232f4702015-02-26 16:15:39 +000010787
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010788 pf->ioremap_len = min_t(int, pci_resource_len(pdev, 0),
10789 I40E_MAX_CSR_SPACE);
Anjali Singhai232f4702015-02-26 16:15:39 +000010790
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010791 hw->hw_addr = ioremap(pci_resource_start(pdev, 0), pf->ioremap_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010792 if (!hw->hw_addr) {
10793 err = -EIO;
10794 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
10795 (unsigned int)pci_resource_start(pdev, 0),
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010796 pf->ioremap_len, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010797 goto err_ioremap;
10798 }
10799 hw->vendor_id = pdev->vendor;
10800 hw->device_id = pdev->device;
10801 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
10802 hw->subsystem_vendor_id = pdev->subsystem_vendor;
10803 hw->subsystem_device_id = pdev->subsystem_device;
10804 hw->bus.device = PCI_SLOT(pdev->devfn);
10805 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010806 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010807
Shannon Nelsonde03d2b2016-03-10 14:59:44 -080010808 /* set up the locks for the AQ, do this only once in probe
10809 * and destroy them only once in remove
10810 */
10811 mutex_init(&hw->aq.asq_mutex);
10812 mutex_init(&hw->aq.arq_mutex);
10813
Shannon Nelson5b5faa42014-10-17 03:14:51 +000010814 if (debug != -1) {
10815 pf->msg_enable = pf->hw.debug_mask;
10816 pf->msg_enable = debug;
10817 }
10818
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +000010819 /* do a special CORER for clearing PXE mode once at init */
10820 if (hw->revision_id == 0 &&
10821 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
10822 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
10823 i40e_flush(hw);
10824 msleep(200);
10825 pf->corer_count++;
10826
10827 i40e_clear_pxe_mode(hw);
10828 }
10829
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010830 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +000010831 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010832 err = i40e_pf_reset(hw);
10833 if (err) {
10834 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
10835 goto err_pf_reset;
10836 }
10837 pf->pfr_count++;
10838
10839 hw->aq.num_arq_entries = I40E_AQ_LEN;
10840 hw->aq.num_asq_entries = I40E_AQ_LEN;
10841 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10842 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10843 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010844
Carolyn Wybornyb294ac72014-12-11 07:06:39 +000010845 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010846 "%s-%s:misc",
10847 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010848
10849 err = i40e_init_shared_code(hw);
10850 if (err) {
Anjali Singhai Jainb2a75c52015-04-27 14:57:20 -040010851 dev_warn(&pdev->dev, "unidentified MAC or BLANK NVM: %d\n",
10852 err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010853 goto err_pf_reset;
10854 }
10855
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010856 /* set up a default setting for link flow control */
10857 pf->hw.fc.requested_mode = I40E_FC_NONE;
10858
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010859 err = i40e_init_adminq(hw);
Carolyn Wyborny2b2426a762015-10-26 19:44:35 -040010860 if (err) {
10861 if (err == I40E_ERR_FIRMWARE_API_VERSION)
10862 dev_info(&pdev->dev,
10863 "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");
10864 else
10865 dev_info(&pdev->dev,
10866 "The driver for the device stopped because the device firmware failed to init. Try updating your NVM image.\n");
10867
10868 goto err_pf_reset;
10869 }
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010870
Shannon Nelson6dec1012015-09-28 14:12:30 -040010871 /* provide nvm, fw, api versions */
10872 dev_info(&pdev->dev, "fw %d.%d.%05d api %d.%d nvm %s\n",
10873 hw->aq.fw_maj_ver, hw->aq.fw_min_ver, hw->aq.fw_build,
10874 hw->aq.api_maj_ver, hw->aq.api_min_ver,
10875 i40e_nvm_version_str(hw));
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010876
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010877 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
10878 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +000010879 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010880 "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");
10881 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
10882 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +000010883 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010884 "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 +000010885
Shannon Nelson4eb3f762014-03-06 08:59:58 +000010886 i40e_verify_eeprom(pf);
10887
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +000010888 /* Rev 0 hardware was never productized */
10889 if (hw->revision_id < 1)
10890 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");
10891
Shannon Nelson6ff4ef82013-12-21 05:44:49 +000010892 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010893 err = i40e_get_capabilities(pf);
10894 if (err)
10895 goto err_adminq_setup;
10896
10897 err = i40e_sw_init(pf);
10898 if (err) {
10899 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
10900 goto err_sw_init;
10901 }
10902
10903 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
10904 hw->func_caps.num_rx_qp,
10905 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
10906 if (err) {
10907 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
10908 goto err_init_lan_hmc;
10909 }
10910
10911 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
10912 if (err) {
10913 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
10914 err = -ENOENT;
10915 goto err_configure_lan_hmc;
10916 }
10917
Neerav Parikhb686ece2014-12-14 01:55:11 +000010918 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
10919 * Ignore error return codes because if it was already disabled via
10920 * hardware settings this will fail
10921 */
Neerav Parikhf1bbad32016-01-13 16:51:39 -080010922 if (pf->flags & I40E_FLAG_STOP_FW_LLDP) {
Neerav Parikhb686ece2014-12-14 01:55:11 +000010923 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
10924 i40e_aq_stop_lldp(hw, true, NULL);
10925 }
10926
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010927 i40e_get_mac_addr(hw, hw->mac.addr);
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010928 /* allow a platform config to override the HW addr */
10929 i40e_get_platform_mac_addr(pdev, pf);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +000010930 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010931 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
10932 err = -EIO;
10933 goto err_mac_addr;
10934 }
10935 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +000010936 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +000010937 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
10938 if (is_valid_ether_addr(hw->mac.port_addr))
10939 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -070010940#ifdef I40E_FCOE
10941 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
10942 if (err)
10943 dev_info(&pdev->dev,
10944 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
10945 if (!is_valid_ether_addr(hw->mac.san_addr)) {
10946 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
10947 hw->mac.san_addr);
10948 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
10949 }
10950 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
10951#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010952
10953 pci_set_drvdata(pdev, pf);
10954 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010955#ifdef CONFIG_I40E_DCB
10956 err = i40e_init_pf_dcb(pf);
10957 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +000010958 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
Dave Ertmana0362442016-08-29 17:38:26 -070010959 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE & I40E_FLAG_DCB_ENABLED);
Neerav Parikh014269f2014-04-01 07:11:48 +000010960 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010961 }
10962#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010963
10964 /* set up periodic task facility */
10965 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
10966 pf->service_timer_period = HZ;
10967
10968 INIT_WORK(&pf->service_task, i40e_service_task);
10969 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
10970 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010971
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010972 /* NVM bit on means WoL disabled for the port */
10973 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -080010974 if (BIT (hw->port) & wol_nvm_bits || hw->partition_id != 1)
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010975 pf->wol_en = false;
10976 else
10977 pf->wol_en = true;
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010978 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
10979
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010980 /* set up the main switch operations */
10981 i40e_determine_queue_usage(pf);
Jesse Brandeburgc11472802015-04-07 19:45:39 -040010982 err = i40e_init_interrupt_scheme(pf);
10983 if (err)
10984 goto err_switch_setup;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010985
Mitch Williams505682c2014-05-20 08:01:37 +000010986 /* The number of VSIs reported by the FW is the minimum guaranteed
10987 * to us; HW supports far more and we share the remaining pool with
10988 * the other PFs. We allocate space for more than the guarantee with
10989 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010990 */
Mitch Williams505682c2014-05-20 08:01:37 +000010991 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
10992 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
10993 else
10994 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
10995
10996 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
Jesse Brandeburgd17038d2015-12-23 12:05:55 -080010997 pf->vsi = kcalloc(pf->num_alloc_vsi, sizeof(struct i40e_vsi *),
10998 GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +000010999 if (!pf->vsi) {
11000 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011001 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +000011002 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011003
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040011004#ifdef CONFIG_PCI_IOV
11005 /* prep for VF support */
11006 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
11007 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
11008 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
11009 if (pci_num_vf(pdev))
11010 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
11011 }
11012#endif
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000011013 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011014 if (err) {
11015 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
11016 goto err_vsis;
11017 }
Helin Zhang58fc3262015-10-01 14:37:38 -040011018
11019 /* Make sure flow control is set according to current settings */
11020 err = i40e_set_fc(hw, &set_fc_aq_fail, true);
11021 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_GET)
11022 dev_dbg(&pf->pdev->dev,
11023 "Set fc with err %s aq_err %s on get_phy_cap\n",
11024 i40e_stat_str(hw, err),
11025 i40e_aq_str(hw, hw->aq.asq_last_status));
11026 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_SET)
11027 dev_dbg(&pf->pdev->dev,
11028 "Set fc with err %s aq_err %s on set_phy_config\n",
11029 i40e_stat_str(hw, err),
11030 i40e_aq_str(hw, hw->aq.asq_last_status));
11031 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_UPDATE)
11032 dev_dbg(&pf->pdev->dev,
11033 "Set fc with err %s aq_err %s on get_link_info\n",
11034 i40e_stat_str(hw, err),
11035 i40e_aq_str(hw, hw->aq.asq_last_status));
11036
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000011037 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +000011038 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000011039 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
11040 i40e_vsi_open(pf->vsi[i]);
11041 break;
11042 }
11043 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011044
Shannon Nelson2f0aff42016-01-04 10:33:08 -080011045 /* The driver only wants link up/down and module qualification
11046 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000011047 */
11048 err = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -080011049 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -070011050 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -080011051 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000011052 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040011053 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
11054 i40e_stat_str(&pf->hw, err),
11055 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000011056
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040011057 /* Reconfigure hardware for allowing smaller MSS in the case
11058 * of TSO, so that we avoid the MDD being fired and causing
11059 * a reset in the case of small MSS+TSO.
11060 */
11061 val = rd32(hw, I40E_REG_MSS);
11062 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
11063 val &= ~I40E_REG_MSS_MIN_MASK;
11064 val |= I40E_64BYTE_MSS;
11065 wr32(hw, I40E_REG_MSS, val);
11066 }
11067
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -080011068 if (pf->flags & I40E_FLAG_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +000011069 msleep(75);
11070 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
11071 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040011072 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
11073 i40e_stat_str(&pf->hw, err),
11074 i40e_aq_str(&pf->hw,
11075 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +000011076 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011077 /* The main driver is (mostly) up and happy. We need to set this state
11078 * before setting up the misc vector or we get a race and the vector
11079 * ends up disabled forever.
11080 */
11081 clear_bit(__I40E_DOWN, &pf->state);
11082
11083 /* In case of MSIX we are going to setup the misc vector right here
11084 * to handle admin queue events etc. In case of legacy and MSI
11085 * the misc functionality and queue processing is combined in
11086 * the same vector and that gets setup at open.
11087 */
11088 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
11089 err = i40e_setup_misc_vector(pf);
11090 if (err) {
11091 dev_info(&pdev->dev,
11092 "setup of misc vector failed: %d\n", err);
11093 goto err_vsis;
11094 }
11095 }
11096
Greg Rosedf805f62014-04-04 04:43:16 +000011097#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011098 /* prep for VF support */
11099 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +000011100 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
11101 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011102 /* disable link interrupts for VFs */
11103 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
11104 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
11105 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
11106 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -080011107
11108 if (pci_num_vf(pdev)) {
11109 dev_info(&pdev->dev,
11110 "Active VFs found, allocating resources.\n");
11111 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
11112 if (err)
11113 dev_info(&pdev->dev,
11114 "Error %d allocating resources for existing VFs\n",
11115 err);
11116 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011117 }
Greg Rosedf805f62014-04-04 04:43:16 +000011118#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011119
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011120 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11121 pf->iwarp_base_vector = i40e_get_lump(pf, pf->irq_pile,
11122 pf->num_iwarp_msix,
11123 I40E_IWARP_IRQ_PILE_ID);
11124 if (pf->iwarp_base_vector < 0) {
11125 dev_info(&pdev->dev,
11126 "failed to get tracking for %d vectors for IWARP err=%d\n",
11127 pf->num_iwarp_msix, pf->iwarp_base_vector);
11128 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
11129 }
11130 }
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000011131
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011132 i40e_dbg_pf_init(pf);
11133
11134 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +000011135 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011136
11137 /* since everything's happy, start the service_task timer */
11138 mod_timer(&pf->service_timer,
11139 round_jiffies(jiffies + pf->service_timer_period));
11140
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011141 /* add this PF to client device list and launch a client service task */
11142 err = i40e_lan_add_device(pf);
11143 if (err)
11144 dev_info(&pdev->dev, "Failed to add PF to client API service list: %d\n",
11145 err);
11146
Vasu Dev38e00432014-08-01 13:27:03 -070011147#ifdef I40E_FCOE
11148 /* create FCoE interface */
11149 i40e_fcoe_vsi_setup(pf);
11150
11151#endif
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011152#define PCI_SPEED_SIZE 8
11153#define PCI_WIDTH_SIZE 8
11154 /* Devices on the IOSF bus do not have this information
11155 * and will report PCI Gen 1 x 1 by default so don't bother
11156 * checking them.
11157 */
11158 if (!(pf->flags & I40E_FLAG_NO_PCI_LINK_CHECK)) {
11159 char speed[PCI_SPEED_SIZE] = "Unknown";
11160 char width[PCI_WIDTH_SIZE] = "Unknown";
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011161
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011162 /* Get the negotiated link width and speed from PCI config
11163 * space
11164 */
11165 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA,
11166 &link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011167
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011168 i40e_set_pci_config_data(hw, link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011169
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011170 switch (hw->bus.speed) {
11171 case i40e_bus_speed_8000:
11172 strncpy(speed, "8.0", PCI_SPEED_SIZE); break;
11173 case i40e_bus_speed_5000:
11174 strncpy(speed, "5.0", PCI_SPEED_SIZE); break;
11175 case i40e_bus_speed_2500:
11176 strncpy(speed, "2.5", PCI_SPEED_SIZE); break;
11177 default:
11178 break;
11179 }
11180 switch (hw->bus.width) {
11181 case i40e_bus_width_pcie_x8:
11182 strncpy(width, "8", PCI_WIDTH_SIZE); break;
11183 case i40e_bus_width_pcie_x4:
11184 strncpy(width, "4", PCI_WIDTH_SIZE); break;
11185 case i40e_bus_width_pcie_x2:
11186 strncpy(width, "2", PCI_WIDTH_SIZE); break;
11187 case i40e_bus_width_pcie_x1:
11188 strncpy(width, "1", PCI_WIDTH_SIZE); break;
11189 default:
11190 break;
11191 }
11192
11193 dev_info(&pdev->dev, "PCI-Express: Speed %sGT/s Width x%s\n",
11194 speed, width);
11195
11196 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
11197 hw->bus.speed < i40e_bus_speed_8000) {
11198 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
11199 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
11200 }
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011201 }
11202
Catherine Sullivane8278452015-02-06 08:52:08 +000011203 /* get the requested speeds from the fw */
11204 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
11205 if (err)
Neerav Parikh8279e492015-09-03 17:18:50 -040011206 dev_dbg(&pf->pdev->dev, "get requested speeds ret = %s last_status = %s\n",
11207 i40e_stat_str(&pf->hw, err),
11208 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Catherine Sullivane8278452015-02-06 08:52:08 +000011209 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
11210
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -040011211 /* get the supported phy types from the fw */
11212 err = i40e_aq_get_phy_capabilities(hw, false, true, &abilities, NULL);
11213 if (err)
11214 dev_dbg(&pf->pdev->dev, "get supported phy types ret = %s last_status = %s\n",
11215 i40e_stat_str(&pf->hw, err),
11216 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
11217 pf->hw.phy.phy_types = le32_to_cpu(abilities.phy_type);
11218
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -040011219 /* Add a filter to drop all Flow control frames from any VSI from being
11220 * transmitted. By doing so we stop a malicious VF from sending out
11221 * PAUSE or PFC frames and potentially controlling traffic for other
11222 * PF/VF VSIs.
11223 * The FW can still send Flow control frames if enabled.
11224 */
11225 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
11226 pf->main_vsi_seid);
11227
Carolyn Wyborny31b606d2016-02-17 16:12:12 -080011228 if ((pf->hw.device_id == I40E_DEV_ID_10G_BASE_T) ||
11229 (pf->hw.device_id == I40E_DEV_ID_10G_BASE_T4))
11230 pf->flags |= I40E_FLAG_HAVE_10GBASET_PHY;
11231
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011232 /* print a string summarizing features */
11233 i40e_print_features(pf);
11234
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011235 return 0;
11236
11237 /* Unwind what we've done if something failed in the setup */
11238err_vsis:
11239 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011240 i40e_clear_interrupt_scheme(pf);
11241 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +000011242err_switch_setup:
11243 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011244 del_timer_sync(&pf->service_timer);
11245err_mac_addr:
11246err_configure_lan_hmc:
11247 (void)i40e_shutdown_lan_hmc(hw);
11248err_init_lan_hmc:
11249 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011250err_sw_init:
11251err_adminq_setup:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011252err_pf_reset:
11253 iounmap(hw->hw_addr);
11254err_ioremap:
11255 kfree(pf);
11256err_pf_alloc:
11257 pci_disable_pcie_error_reporting(pdev);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011258 pci_release_mem_regions(pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011259err_pci_reg:
11260err_dma:
11261 pci_disable_device(pdev);
11262 return err;
11263}
11264
11265/**
11266 * i40e_remove - Device removal routine
11267 * @pdev: PCI device information struct
11268 *
11269 * i40e_remove is called by the PCI subsystem to alert the driver
11270 * that is should release a PCI device. This could be caused by a
11271 * Hot-Plug event, or because the driver is going to be removed from
11272 * memory.
11273 **/
11274static void i40e_remove(struct pci_dev *pdev)
11275{
11276 struct i40e_pf *pf = pci_get_drvdata(pdev);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011277 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011278 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011279 int i;
11280
11281 i40e_dbg_pf_exit(pf);
11282
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000011283 i40e_ptp_stop(pf);
11284
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011285 /* Disable RSS in hw */
Shannon Nelson272cdaf22016-02-17 16:12:21 -080011286 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), 0);
11287 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), 0);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011288
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011289 /* no more scheduling of any task */
Pandi Kumar Maharajana4618ec2016-02-18 09:19:25 -080011290 set_bit(__I40E_SUSPENDED, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011291 set_bit(__I40E_DOWN, &pf->state);
Shannon Nelsonc99abb42016-03-10 14:59:45 -080011292 if (pf->service_timer.data)
11293 del_timer_sync(&pf->service_timer);
11294 if (pf->service_task.func)
11295 cancel_work_sync(&pf->service_task);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011296
Mitch Williamseb2d80b2014-02-13 03:48:48 -080011297 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
11298 i40e_free_vfs(pf);
11299 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
11300 }
11301
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011302 i40e_fdir_teardown(pf);
11303
11304 /* If there is a switch structure or any orphans, remove them.
11305 * This will leave only the PF's VSI remaining.
11306 */
11307 for (i = 0; i < I40E_MAX_VEB; i++) {
11308 if (!pf->veb[i])
11309 continue;
11310
11311 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
11312 pf->veb[i]->uplink_seid == 0)
11313 i40e_switch_branch_release(pf->veb[i]);
11314 }
11315
11316 /* Now we can shutdown the PF's VSI, just before we kill
11317 * adminq and hmc.
11318 */
11319 if (pf->vsi[pf->lan_vsi])
11320 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
11321
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011322 /* remove attached clients */
11323 ret_code = i40e_lan_del_device(pf);
11324 if (ret_code) {
11325 dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
11326 ret_code);
11327 }
11328
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011329 /* shutdown and destroy the HMC */
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011330 if (hw->hmc.hmc_obj) {
11331 ret_code = i40e_shutdown_lan_hmc(hw);
Shannon Nelson60442de2014-04-23 04:50:13 +000011332 if (ret_code)
11333 dev_warn(&pdev->dev,
11334 "Failed to destroy the HMC resources: %d\n",
11335 ret_code);
11336 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011337
11338 /* shutdown the adminq */
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011339 ret_code = i40e_shutdown_adminq(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011340 if (ret_code)
11341 dev_warn(&pdev->dev,
11342 "Failed to destroy the Admin Queue resources: %d\n",
11343 ret_code);
11344
Jesse Brandeburg8ddb3322015-11-18 15:47:06 -080011345 /* destroy the locks only once, here */
11346 mutex_destroy(&hw->aq.arq_mutex);
11347 mutex_destroy(&hw->aq.asq_mutex);
11348
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011349 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
11350 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +000011351 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011352 if (pf->vsi[i]) {
11353 i40e_vsi_clear_rings(pf->vsi[i]);
11354 i40e_vsi_clear(pf->vsi[i]);
11355 pf->vsi[i] = NULL;
11356 }
11357 }
11358
11359 for (i = 0; i < I40E_MAX_VEB; i++) {
11360 kfree(pf->veb[i]);
11361 pf->veb[i] = NULL;
11362 }
11363
11364 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011365 kfree(pf->vsi);
11366
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011367 iounmap(hw->hw_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011368 kfree(pf);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011369 pci_release_mem_regions(pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011370
11371 pci_disable_pcie_error_reporting(pdev);
11372 pci_disable_device(pdev);
11373}
11374
11375/**
11376 * i40e_pci_error_detected - warning that something funky happened in PCI land
11377 * @pdev: PCI device information struct
11378 *
11379 * Called to warn that something happened and the error handling steps
11380 * are in progress. Allows the driver to quiesce things, be ready for
11381 * remediation.
11382 **/
11383static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
11384 enum pci_channel_state error)
11385{
11386 struct i40e_pf *pf = pci_get_drvdata(pdev);
11387
11388 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
11389
11390 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011391 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
11392 rtnl_lock();
11393 i40e_prep_for_reset(pf);
11394 rtnl_unlock();
11395 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011396
11397 /* Request a slot reset */
11398 return PCI_ERS_RESULT_NEED_RESET;
11399}
11400
11401/**
11402 * i40e_pci_error_slot_reset - a PCI slot reset just happened
11403 * @pdev: PCI device information struct
11404 *
11405 * Called to find if the driver can work with the device now that
11406 * the pci slot has been reset. If a basic connection seems good
11407 * (registers are readable and have sane content) then return a
11408 * happy little PCI_ERS_RESULT_xxx.
11409 **/
11410static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
11411{
11412 struct i40e_pf *pf = pci_get_drvdata(pdev);
11413 pci_ers_result_t result;
11414 int err;
11415 u32 reg;
11416
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011417 dev_dbg(&pdev->dev, "%s\n", __func__);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011418 if (pci_enable_device_mem(pdev)) {
11419 dev_info(&pdev->dev,
11420 "Cannot re-enable PCI device after reset.\n");
11421 result = PCI_ERS_RESULT_DISCONNECT;
11422 } else {
11423 pci_set_master(pdev);
11424 pci_restore_state(pdev);
11425 pci_save_state(pdev);
11426 pci_wake_from_d3(pdev, false);
11427
11428 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
11429 if (reg == 0)
11430 result = PCI_ERS_RESULT_RECOVERED;
11431 else
11432 result = PCI_ERS_RESULT_DISCONNECT;
11433 }
11434
11435 err = pci_cleanup_aer_uncorrect_error_status(pdev);
11436 if (err) {
11437 dev_info(&pdev->dev,
11438 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
11439 err);
11440 /* non-fatal, continue */
11441 }
11442
11443 return result;
11444}
11445
11446/**
11447 * i40e_pci_error_resume - restart operations after PCI error recovery
11448 * @pdev: PCI device information struct
11449 *
11450 * Called to allow the driver to bring things back up after PCI error
11451 * and/or reset recovery has finished.
11452 **/
11453static void i40e_pci_error_resume(struct pci_dev *pdev)
11454{
11455 struct i40e_pf *pf = pci_get_drvdata(pdev);
11456
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011457 dev_dbg(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011458 if (test_bit(__I40E_SUSPENDED, &pf->state))
11459 return;
11460
11461 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011462 i40e_handle_reset_warning(pf);
Vasily Averin4c4935a2015-07-08 15:04:26 +030011463 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011464}
11465
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011466/**
11467 * i40e_shutdown - PCI callback for shutting down
11468 * @pdev: PCI device information struct
11469 **/
11470static void i40e_shutdown(struct pci_dev *pdev)
11471{
11472 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011473 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011474
11475 set_bit(__I40E_SUSPENDED, &pf->state);
11476 set_bit(__I40E_DOWN, &pf->state);
11477 rtnl_lock();
11478 i40e_prep_for_reset(pf);
11479 rtnl_unlock();
11480
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011481 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11482 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11483
Catherine Sullivan02b42492015-07-10 19:35:59 -040011484 del_timer_sync(&pf->service_timer);
11485 cancel_work_sync(&pf->service_task);
11486 i40e_fdir_teardown(pf);
11487
11488 rtnl_lock();
11489 i40e_prep_for_reset(pf);
11490 rtnl_unlock();
11491
11492 wr32(hw, I40E_PFPM_APM,
11493 (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11494 wr32(hw, I40E_PFPM_WUFC,
11495 (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11496
Shannon Nelsone1477582015-02-21 06:44:33 +000011497 i40e_clear_interrupt_scheme(pf);
11498
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011499 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011500 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011501 pci_set_power_state(pdev, PCI_D3hot);
11502 }
11503}
11504
11505#ifdef CONFIG_PM
11506/**
11507 * i40e_suspend - PCI callback for moving to D3
11508 * @pdev: PCI device information struct
11509 **/
11510static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
11511{
11512 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011513 struct i40e_hw *hw = &pf->hw;
Greg Rose059ff692016-05-16 10:26:38 -070011514 int retval = 0;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011515
11516 set_bit(__I40E_SUSPENDED, &pf->state);
11517 set_bit(__I40E_DOWN, &pf->state);
Mitch Williams3932dbf2015-03-31 00:45:04 -070011518
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011519 rtnl_lock();
11520 i40e_prep_for_reset(pf);
11521 rtnl_unlock();
11522
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011523 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11524 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11525
Greg Roseb33d3b72016-05-16 10:26:37 -070011526 i40e_stop_misc_vector(pf);
11527
Greg Rose059ff692016-05-16 10:26:38 -070011528 retval = pci_save_state(pdev);
11529 if (retval)
11530 return retval;
11531
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011532 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011533 pci_set_power_state(pdev, PCI_D3hot);
11534
Greg Rose059ff692016-05-16 10:26:38 -070011535 return retval;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011536}
11537
11538/**
11539 * i40e_resume - PCI callback for waking up from D3
11540 * @pdev: PCI device information struct
11541 **/
11542static int i40e_resume(struct pci_dev *pdev)
11543{
11544 struct i40e_pf *pf = pci_get_drvdata(pdev);
11545 u32 err;
11546
11547 pci_set_power_state(pdev, PCI_D0);
11548 pci_restore_state(pdev);
11549 /* pci_restore_state() clears dev->state_saves, so
11550 * call pci_save_state() again to restore it.
11551 */
11552 pci_save_state(pdev);
11553
11554 err = pci_enable_device_mem(pdev);
11555 if (err) {
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011556 dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n");
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011557 return err;
11558 }
11559 pci_set_master(pdev);
11560
11561 /* no wakeup events while running */
11562 pci_wake_from_d3(pdev, false);
11563
11564 /* handling the reset will rebuild the device state */
11565 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
11566 clear_bit(__I40E_DOWN, &pf->state);
11567 rtnl_lock();
11568 i40e_reset_and_rebuild(pf, false);
11569 rtnl_unlock();
11570 }
11571
11572 return 0;
11573}
11574
11575#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011576static const struct pci_error_handlers i40e_err_handler = {
11577 .error_detected = i40e_pci_error_detected,
11578 .slot_reset = i40e_pci_error_slot_reset,
11579 .resume = i40e_pci_error_resume,
11580};
11581
11582static struct pci_driver i40e_driver = {
11583 .name = i40e_driver_name,
11584 .id_table = i40e_pci_tbl,
11585 .probe = i40e_probe,
11586 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011587#ifdef CONFIG_PM
11588 .suspend = i40e_suspend,
11589 .resume = i40e_resume,
11590#endif
11591 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011592 .err_handler = &i40e_err_handler,
11593 .sriov_configure = i40e_pci_sriov_configure,
11594};
11595
11596/**
11597 * i40e_init_module - Driver registration routine
11598 *
11599 * i40e_init_module is the first routine called when the driver is
11600 * loaded. All it does is register with the PCI subsystem.
11601 **/
11602static int __init i40e_init_module(void)
11603{
11604 pr_info("%s: %s - version %s\n", i40e_driver_name,
11605 i40e_driver_string, i40e_driver_version_str);
11606 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
Greg Rose96664482015-02-06 08:52:13 +000011607
Jesse Brandeburg2803b162015-12-22 14:25:08 -080011608 /* we will see if single thread per module is enough for now,
11609 * it can't be any worse than using the system workqueue which
11610 * was already single threaded
11611 */
Jacob Keller6992a6c2016-08-04 11:37:01 -070011612 i40e_wq = alloc_workqueue("%s", WQ_UNBOUND | WQ_MEM_RECLAIM, 1,
11613 i40e_driver_name);
Jesse Brandeburg2803b162015-12-22 14:25:08 -080011614 if (!i40e_wq) {
11615 pr_err("%s: Failed to create workqueue\n", i40e_driver_name);
11616 return -ENOMEM;
11617 }
11618
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011619 i40e_dbg_init();
11620 return pci_register_driver(&i40e_driver);
11621}
11622module_init(i40e_init_module);
11623
11624/**
11625 * i40e_exit_module - Driver exit cleanup routine
11626 *
11627 * i40e_exit_module is called just before the driver is removed
11628 * from memory.
11629 **/
11630static void __exit i40e_exit_module(void)
11631{
11632 pci_unregister_driver(&i40e_driver);
Jesse Brandeburg2803b162015-12-22 14:25:08 -080011633 destroy_workqueue(i40e_wq);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011634 i40e_dbg_exit();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011635}
11636module_exit(i40e_exit_module);