blob: ed49113d858fb26ea1e1f4752ece5b91cb8bc379 [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 Pujaricf465fe2016-09-27 11:28:54 -070044#define DRV_VERSION_BUILD 21
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;
Alexander Duyck5d4ca232016-09-30 08:21:46 -040096module_param(debug, uint, 0);
97MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all), Debug mask (0x8XXXXXXX)");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000098
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
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001148 *
1149 * Returns ptr to the filter object or NULL
1150 **/
1151static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
Jacob Keller1bc87e82016-10-05 09:30:31 -07001152 u8 *macaddr, s16 vlan)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001153{
1154 struct i40e_mac_filter *f;
1155
1156 if (!vsi || !macaddr)
1157 return NULL;
1158
1159 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1160 if ((ether_addr_equal(macaddr, f->macaddr)) &&
Jacob Keller1bc87e82016-10-05 09:30:31 -07001161 (vlan == f->vlan))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001162 return f;
1163 }
1164 return NULL;
1165}
1166
1167/**
1168 * i40e_find_mac - Find a mac addr in the macvlan filters list
1169 * @vsi: the VSI to be searched
1170 * @macaddr: the MAC address we are searching for
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001171 *
1172 * Returns the first filter with the provided MAC address or NULL if
1173 * MAC address was not found
1174 **/
Jacob Keller1bc87e82016-10-05 09:30:31 -07001175struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001176{
1177 struct i40e_mac_filter *f;
1178
1179 if (!vsi || !macaddr)
1180 return NULL;
1181
1182 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07001183 if ((ether_addr_equal(macaddr, f->macaddr)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001184 return f;
1185 }
1186 return NULL;
1187}
1188
1189/**
1190 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1191 * @vsi: the VSI to be searched
1192 *
1193 * Returns true if VSI is in vlan mode or false otherwise
1194 **/
1195bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1196{
1197 struct i40e_mac_filter *f;
1198
1199 /* Only -1 for all the filters denotes not in vlan mode
1200 * so we have to go through all the list in order to make sure
1201 */
1202 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Greg Rosed9b68f82015-07-23 16:54:31 -04001203 if (f->vlan >= 0 || vsi->info.pvid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001204 return true;
1205 }
1206
1207 return false;
1208}
1209
1210/**
1211 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1212 * @vsi: the VSI to be searched
1213 * @macaddr: the mac address to be filtered
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001214 *
1215 * Goes through all the macvlan filters and adds a
1216 * macvlan filter for each unique vlan that already exists
1217 *
1218 * Returns first filter found on success, else NULL
1219 **/
Jacob Keller1bc87e82016-10-05 09:30:31 -07001220struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001221{
1222 struct i40e_mac_filter *f;
1223
1224 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Mitch Williamsecbb44e2015-07-10 19:35:56 -04001225 if (vsi->info.pvid)
1226 f->vlan = le16_to_cpu(vsi->info.pvid);
Jacob Keller1bc87e82016-10-05 09:30:31 -07001227 if (!i40e_find_filter(vsi, macaddr, f->vlan)) {
1228 if (!i40e_add_filter(vsi, macaddr, f->vlan))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001229 return NULL;
1230 }
1231 }
1232
1233 return list_first_entry_or_null(&vsi->mac_filter_list,
1234 struct i40e_mac_filter, list);
1235}
1236
1237/**
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001238 * i40e_del_mac_all_vlan - Remove a MAC filter from all VLANS
1239 * @vsi: the VSI to be searched
1240 * @macaddr: the mac address to be removed
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001241 *
1242 * Removes a given MAC address from a VSI, regardless of VLAN
1243 *
1244 * Returns 0 for success, or error
1245 **/
Jacob Keller1bc87e82016-10-05 09:30:31 -07001246int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr)
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001247{
1248 struct i40e_mac_filter *f = NULL;
1249 int changed = 0;
1250
1251 WARN(!spin_is_locked(&vsi->mac_filter_list_lock),
1252 "Missing mac_filter_list_lock\n");
1253 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07001254 if ((ether_addr_equal(macaddr, f->macaddr))) {
1255 f->state = I40E_FILTER_REMOVE;
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001256 }
1257 }
1258 if (changed) {
1259 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1260 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1261 return 0;
1262 }
1263 return -ENOENT;
1264}
1265
1266/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001267 * i40e_add_filter - Add a mac/vlan filter to the VSI
1268 * @vsi: the VSI to be searched
1269 * @macaddr: the MAC address
1270 * @vlan: the vlan
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001271 *
1272 * Returns ptr to the filter object or NULL when no memory available.
Kiran Patil21659032015-09-30 14:09:03 -04001273 *
1274 * NOTE: This function is expected to be called with mac_filter_list_lock
1275 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001276 **/
1277struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
Jacob Keller1bc87e82016-10-05 09:30:31 -07001278 u8 *macaddr, s16 vlan)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001279{
1280 struct i40e_mac_filter *f;
1281
1282 if (!vsi || !macaddr)
1283 return NULL;
1284
Kiran Patilf6bd0962016-06-20 09:10:34 -07001285 /* Do not allow broadcast filter to be added since broadcast filter
1286 * is added as part of add VSI for any newly created VSI except
1287 * FDIR VSI
1288 */
1289 if (is_broadcast_ether_addr(macaddr))
1290 return NULL;
1291
Jacob Keller1bc87e82016-10-05 09:30:31 -07001292 f = i40e_find_filter(vsi, macaddr, vlan);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001293 if (!f) {
1294 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1295 if (!f)
Jacob Keller1bc87e82016-10-05 09:30:31 -07001296 return NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001297
Greg Rose9a173902014-05-22 06:32:02 +00001298 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001299 f->vlan = vlan;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001300 /* If we're in overflow promisc mode, set the state directly
1301 * to failed, so we don't bother to try sending the filter
1302 * to the hardware.
1303 */
1304 if (test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state))
1305 f->state = I40E_FILTER_FAILED;
1306 else
1307 f->state = I40E_FILTER_NEW;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001308 INIT_LIST_HEAD(&f->list);
Kiran Patil04d5a212015-12-09 15:50:23 -08001309 list_add_tail(&f->list, &vsi->mac_filter_list);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001310
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001311 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1312 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1313 }
1314
Jacob Keller1bc87e82016-10-05 09:30:31 -07001315 /* If we're asked to add a filter that has been marked for removal, it
1316 * is safe to simply restore it to active state. __i40e_del_filter
1317 * will have simply deleted any filters which were previously marked
1318 * NEW or FAILED, so if it is currently marked REMOVE it must have
1319 * previously been ACTIVE. Since we haven't yet run the sync filters
1320 * task, just restore this filter to the ACTIVE state so that the
1321 * sync task leaves it in place
1322 */
1323 if (f->state == I40E_FILTER_REMOVE)
1324 f->state = I40E_FILTER_ACTIVE;
1325
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001326 return f;
1327}
1328
1329/**
1330 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1331 * @vsi: the VSI to be searched
1332 * @macaddr: the MAC address
1333 * @vlan: the vlan
Kiran Patil21659032015-09-30 14:09:03 -04001334 *
1335 * NOTE: This function is expected to be called with mac_filter_list_lock
1336 * being held.
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001337 * ANOTHER NOTE: This function MUST be called from within the context of
1338 * the "safe" variants of any list iterators, e.g. list_for_each_entry_safe()
1339 * instead of list_for_each_entry().
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001340 **/
Jacob Keller1bc87e82016-10-05 09:30:31 -07001341void i40e_del_filter(struct i40e_vsi *vsi, u8 *macaddr, s16 vlan)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001342{
1343 struct i40e_mac_filter *f;
1344
1345 if (!vsi || !macaddr)
1346 return;
1347
Jacob Keller1bc87e82016-10-05 09:30:31 -07001348 f = i40e_find_filter(vsi, macaddr, vlan);
1349 if (!f)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001350 return;
1351
Jacob Keller1bc87e82016-10-05 09:30:31 -07001352 if ((f->state == I40E_FILTER_FAILED) ||
1353 (f->state == I40E_FILTER_NEW)) {
1354 /* this one never got added by the FW. Just remove it,
1355 * no need to sync anything.
1356 */
1357 list_del(&f->list);
1358 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001359 } else {
Jacob Keller1bc87e82016-10-05 09:30:31 -07001360 f->state = I40E_FILTER_REMOVE;
1361 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1362 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001363 }
1364}
1365
1366/**
1367 * i40e_set_mac - NDO callback to set mac address
1368 * @netdev: network interface device structure
1369 * @p: pointer to an address structure
1370 *
1371 * Returns 0 on success, negative on failure
1372 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001373#ifdef I40E_FCOE
1374int i40e_set_mac(struct net_device *netdev, void *p)
1375#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001376static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001377#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001378{
1379 struct i40e_netdev_priv *np = netdev_priv(netdev);
1380 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001381 struct i40e_pf *pf = vsi->back;
1382 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001383 struct sockaddr *addr = p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001384
1385 if (!is_valid_ether_addr(addr->sa_data))
1386 return -EADDRNOTAVAIL;
1387
Shannon Nelson30650cc2014-07-29 04:01:50 +00001388 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1389 netdev_info(netdev, "already using mac address %pM\n",
1390 addr->sa_data);
1391 return 0;
1392 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001393
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001394 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1395 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1396 return -EADDRNOTAVAIL;
1397
Shannon Nelson30650cc2014-07-29 04:01:50 +00001398 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1399 netdev_info(netdev, "returning to hw mac address %pM\n",
1400 hw->mac.addr);
1401 else
1402 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1403
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001404 spin_lock_bh(&vsi->mac_filter_list_lock);
Jacob Keller1bc87e82016-10-05 09:30:31 -07001405 i40e_del_mac_all_vlan(vsi, netdev->dev_addr);
1406 i40e_put_mac_in_vlan(vsi, addr->sa_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001407 spin_unlock_bh(&vsi->mac_filter_list_lock);
1408 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001409 if (vsi->type == I40E_VSI_MAIN) {
1410 i40e_status ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001411
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001412 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001413 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001414 addr->sa_data, NULL);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001415 if (ret)
1416 netdev_info(netdev, "Ignoring error from firmware on LAA update, status %s, AQ ret %s\n",
1417 i40e_stat_str(hw, ret),
1418 i40e_aq_str(hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001419 }
1420
Jesse Brandeburgc53934c2016-01-04 10:33:06 -08001421 /* schedule our worker thread which will take care of
1422 * applying the new filter changes
1423 */
1424 i40e_service_event_schedule(vsi->back);
1425 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001426}
1427
1428/**
1429 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1430 * @vsi: the VSI being setup
1431 * @ctxt: VSI context structure
1432 * @enabled_tc: Enabled TCs bitmap
1433 * @is_add: True if called before Add VSI
1434 *
1435 * Setup VSI queue mapping for enabled traffic classes.
1436 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001437#ifdef I40E_FCOE
1438void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1439 struct i40e_vsi_context *ctxt,
1440 u8 enabled_tc,
1441 bool is_add)
1442#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001443static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1444 struct i40e_vsi_context *ctxt,
1445 u8 enabled_tc,
1446 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001447#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001448{
1449 struct i40e_pf *pf = vsi->back;
1450 u16 sections = 0;
1451 u8 netdev_tc = 0;
1452 u16 numtc = 0;
1453 u16 qcount;
1454 u8 offset;
1455 u16 qmap;
1456 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001457 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001458
1459 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1460 offset = 0;
1461
1462 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1463 /* Find numtc from enabled TC bitmap */
1464 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001465 if (enabled_tc & BIT(i)) /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001466 numtc++;
1467 }
1468 if (!numtc) {
1469 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1470 numtc = 1;
1471 }
1472 } else {
1473 /* At least TC0 is enabled in case of non-DCB case */
1474 numtc = 1;
1475 }
1476
1477 vsi->tc_config.numtc = numtc;
1478 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001479 /* Number of queues per enabled TC */
Catherine Sullivan7d644022016-05-16 10:26:41 -07001480 qcount = vsi->alloc_queue_pairs;
1481
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001482 num_tc_qps = qcount / numtc;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001483 num_tc_qps = min_t(int, num_tc_qps, i40e_pf_get_max_q_per_tc(pf));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001484
1485 /* Setup queue offset/count for all TCs for given VSI */
1486 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1487 /* See if the given TC is enabled for the given VSI */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001488 if (vsi->tc_config.enabled_tc & BIT(i)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001489 /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001490 int pow, num_qps;
1491
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001492 switch (vsi->type) {
1493 case I40E_VSI_MAIN:
Helin Zhangacd65442015-10-26 19:44:28 -04001494 qcount = min_t(int, pf->alloc_rss_size,
1495 num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001496 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001497#ifdef I40E_FCOE
1498 case I40E_VSI_FCOE:
1499 qcount = num_tc_qps;
1500 break;
1501#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001502 case I40E_VSI_FDIR:
1503 case I40E_VSI_SRIOV:
1504 case I40E_VSI_VMDQ2:
1505 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001506 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001507 WARN_ON(i != 0);
1508 break;
1509 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001510 vsi->tc_config.tc_info[i].qoffset = offset;
1511 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001512
Shannon Nelson1e200e42015-02-27 09:15:24 +00001513 /* find the next higher power-of-2 of num queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001514 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001515 pow = 0;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001516 while (num_qps && (BIT_ULL(pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001517 pow++;
1518 num_qps >>= 1;
1519 }
1520
1521 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1522 qmap =
1523 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1524 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1525
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001526 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001527 } else {
1528 /* TC is not enabled so set the offset to
1529 * default queue and allocate one queue
1530 * for the given TC.
1531 */
1532 vsi->tc_config.tc_info[i].qoffset = 0;
1533 vsi->tc_config.tc_info[i].qcount = 1;
1534 vsi->tc_config.tc_info[i].netdev_tc = 0;
1535
1536 qmap = 0;
1537 }
1538 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1539 }
1540
1541 /* Set actual Tx/Rx queue pairs */
1542 vsi->num_queue_pairs = offset;
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001543 if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) {
1544 if (vsi->req_queue_pairs > 0)
1545 vsi->num_queue_pairs = vsi->req_queue_pairs;
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001546 else if (pf->flags & I40E_FLAG_MSIX_ENABLED)
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001547 vsi->num_queue_pairs = pf->num_lan_msix;
1548 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001549
1550 /* Scheduler section valid can only be set for ADD VSI */
1551 if (is_add) {
1552 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1553
1554 ctxt->info.up_enable_bits = enabled_tc;
1555 }
1556 if (vsi->type == I40E_VSI_SRIOV) {
1557 ctxt->info.mapping_flags |=
1558 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1559 for (i = 0; i < vsi->num_queue_pairs; i++)
1560 ctxt->info.queue_mapping[i] =
1561 cpu_to_le16(vsi->base_queue + i);
1562 } else {
1563 ctxt->info.mapping_flags |=
1564 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1565 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1566 }
1567 ctxt->info.valid_sections |= cpu_to_le16(sections);
1568}
1569
1570/**
1571 * i40e_set_rx_mode - NDO callback to set the netdev filters
1572 * @netdev: network interface device structure
1573 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001574#ifdef I40E_FCOE
1575void i40e_set_rx_mode(struct net_device *netdev)
1576#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001577static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001578#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001579{
1580 struct i40e_netdev_priv *np = netdev_priv(netdev);
1581 struct i40e_mac_filter *f, *ftmp;
1582 struct i40e_vsi *vsi = np->vsi;
1583 struct netdev_hw_addr *uca;
1584 struct netdev_hw_addr *mca;
1585 struct netdev_hw_addr *ha;
1586
Kiran Patil21659032015-09-30 14:09:03 -04001587 spin_lock_bh(&vsi->mac_filter_list_lock);
1588
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001589 /* add addr if not already in the filter list */
1590 netdev_for_each_uc_addr(uca, netdev) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07001591 if (!i40e_find_mac(vsi, uca->addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001592 if (i40e_is_vsi_in_vlan(vsi))
Jacob Keller1bc87e82016-10-05 09:30:31 -07001593 i40e_put_mac_in_vlan(vsi, uca->addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001594 else
Jacob Keller1bc87e82016-10-05 09:30:31 -07001595 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001596 }
1597 }
1598
1599 netdev_for_each_mc_addr(mca, netdev) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07001600 if (!i40e_find_mac(vsi, mca->addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001601 if (i40e_is_vsi_in_vlan(vsi))
Jacob Keller1bc87e82016-10-05 09:30:31 -07001602 i40e_put_mac_in_vlan(vsi, mca->addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001603 else
Jacob Keller1bc87e82016-10-05 09:30:31 -07001604 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001605 }
1606 }
1607
1608 /* remove filter if not in netdev list */
1609 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001610
Shannon Nelson2f41f332015-08-26 15:14:20 -04001611 netdev_for_each_mc_addr(mca, netdev)
1612 if (ether_addr_equal(mca->addr, f->macaddr))
1613 goto bottom_of_search_loop;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001614
Shannon Nelson2f41f332015-08-26 15:14:20 -04001615 netdev_for_each_uc_addr(uca, netdev)
1616 if (ether_addr_equal(uca->addr, f->macaddr))
1617 goto bottom_of_search_loop;
1618
1619 for_each_dev_addr(netdev, ha)
1620 if (ether_addr_equal(ha->addr, f->macaddr))
1621 goto bottom_of_search_loop;
1622
1623 /* f->macaddr wasn't found in uc, mc, or ha list so delete it */
Jacob Keller1bc87e82016-10-05 09:30:31 -07001624 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY);
Shannon Nelson2f41f332015-08-26 15:14:20 -04001625
1626bottom_of_search_loop:
1627 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001628 }
Kiran Patil21659032015-09-30 14:09:03 -04001629 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001630
1631 /* check for other flag changes */
1632 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1633 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1634 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1635 }
Jesse Brandeburgc53934c2016-01-04 10:33:06 -08001636
1637 /* schedule our worker thread which will take care of
1638 * applying the new filter changes
1639 */
1640 i40e_service_event_schedule(vsi->back);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001641}
1642
1643/**
Kiran Patil21659032015-09-30 14:09:03 -04001644 * i40e_undo_del_filter_entries - Undo the changes made to MAC filter entries
1645 * @vsi: pointer to vsi struct
1646 * @from: Pointer to list which contains MAC filter entries - changes to
1647 * those entries needs to be undone.
1648 *
1649 * MAC filter entries from list were slated to be removed from device.
1650 **/
1651static void i40e_undo_del_filter_entries(struct i40e_vsi *vsi,
1652 struct list_head *from)
1653{
1654 struct i40e_mac_filter *f, *ftmp;
1655
1656 list_for_each_entry_safe(f, ftmp, from, list) {
Kiran Patil21659032015-09-30 14:09:03 -04001657 /* Move the element back into MAC filter list*/
1658 list_move_tail(&f->list, &vsi->mac_filter_list);
1659 }
1660}
1661
1662/**
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001663 * i40e_update_filter_state - Update filter state based on return data
1664 * from firmware
1665 * @count: Number of filters added
1666 * @add_list: return data from fw
1667 * @head: pointer to first filter in current batch
1668 * @aq_err: status from fw
Kiran Patil21659032015-09-30 14:09:03 -04001669 *
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001670 * MAC filter entries from list were slated to be added to device. Returns
1671 * number of successful filters. Note that 0 does NOT mean success!
Kiran Patil21659032015-09-30 14:09:03 -04001672 **/
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001673static int
1674i40e_update_filter_state(int count,
1675 struct i40e_aqc_add_macvlan_element_data *add_list,
1676 struct i40e_mac_filter *add_head, int aq_err)
Kiran Patil21659032015-09-30 14:09:03 -04001677{
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001678 int retval = 0;
1679 int i;
Kiran Patil21659032015-09-30 14:09:03 -04001680
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001681
1682 if (!aq_err) {
1683 retval = count;
1684 /* Everything's good, mark all filters active. */
1685 for (i = 0; i < count ; i++) {
1686 add_head->state = I40E_FILTER_ACTIVE;
1687 add_head = list_next_entry(add_head, list);
1688 }
1689 } else if (aq_err == I40E_AQ_RC_ENOSPC) {
1690 /* Device ran out of filter space. Check the return value
1691 * for each filter to see which ones are active.
1692 */
1693 for (i = 0; i < count ; i++) {
1694 if (add_list[i].match_method ==
1695 I40E_AQC_MM_ERR_NO_RES) {
1696 add_head->state = I40E_FILTER_FAILED;
1697 } else {
1698 add_head->state = I40E_FILTER_ACTIVE;
1699 retval++;
1700 }
1701 add_head = list_next_entry(add_head, list);
1702 }
1703 } else {
1704 /* Some other horrible thing happened, fail all filters */
1705 retval = 0;
1706 for (i = 0; i < count ; i++) {
1707 add_head->state = I40E_FILTER_FAILED;
1708 add_head = list_next_entry(add_head, list);
1709 }
Kiran Patil21659032015-09-30 14:09:03 -04001710 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001711 return retval;
Kiran Patil21659032015-09-30 14:09:03 -04001712}
1713
1714/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001715 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1716 * @vsi: ptr to the VSI
1717 *
1718 * Push any outstanding VSI filter changes through the AdminQ.
1719 *
1720 * Returns 0 or error value
1721 **/
Jesse Brandeburg17652c62015-11-05 17:01:02 -08001722int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001723{
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001724 struct i40e_mac_filter *f, *ftmp, *add_head = NULL;
1725 struct list_head tmp_add_list, tmp_del_list;
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001726 struct i40e_hw *hw = &vsi->back->hw;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001727 bool promisc_changed = false;
Shannon Nelson2d1de822016-05-16 10:26:44 -07001728 char vsi_name[16] = "PF";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001729 int filter_list_len = 0;
1730 u32 changed_flags = 0;
Mitch Williamsea02e902015-11-09 15:35:50 -08001731 i40e_status aq_ret = 0;
Mitch Williamsea02e902015-11-09 15:35:50 -08001732 int retval = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001733 struct i40e_pf *pf;
1734 int num_add = 0;
1735 int num_del = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001736 int aq_err = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001737 u16 cmd_flags;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001738 int list_size;
1739 int fcnt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001740
1741 /* empty array typed pointers, kcalloc later */
1742 struct i40e_aqc_add_macvlan_element_data *add_list;
1743 struct i40e_aqc_remove_macvlan_element_data *del_list;
1744
1745 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1746 usleep_range(1000, 2000);
1747 pf = vsi->back;
1748
1749 if (vsi->netdev) {
1750 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1751 vsi->current_netdev_flags = vsi->netdev->flags;
1752 }
1753
Kiran Patil21659032015-09-30 14:09:03 -04001754 INIT_LIST_HEAD(&tmp_add_list);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001755 INIT_LIST_HEAD(&tmp_del_list);
Kiran Patil21659032015-09-30 14:09:03 -04001756
Shannon Nelson2d1de822016-05-16 10:26:44 -07001757 if (vsi->type == I40E_VSI_SRIOV)
1758 snprintf(vsi_name, sizeof(vsi_name) - 1, "VF %d", vsi->vf_id);
1759 else if (vsi->type != I40E_VSI_MAIN)
1760 snprintf(vsi_name, sizeof(vsi_name) - 1, "vsi %d", vsi->seid);
1761
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001762 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1763 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1764
Kiran Patil21659032015-09-30 14:09:03 -04001765 spin_lock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001766 /* Create a list of filters to delete. */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001767 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001768 if (f->state == I40E_FILTER_REMOVE) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001769 /* Move the element into temporary del_list */
1770 list_move_tail(&f->list, &tmp_del_list);
1771 vsi->active_filters--;
Kiran Patil21659032015-09-30 14:09:03 -04001772 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001773 if (f->state == I40E_FILTER_NEW) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001774 /* Move the element into temporary add_list */
1775 list_move_tail(&f->list, &tmp_add_list);
1776 }
Kiran Patil21659032015-09-30 14:09:03 -04001777 }
1778 spin_unlock_bh(&vsi->mac_filter_list_lock);
Kiran Patil21659032015-09-30 14:09:03 -04001779 }
1780
1781 /* Now process 'del_list' outside the lock */
1782 if (!list_empty(&tmp_del_list)) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001783 filter_list_len = hw->aq.asq_buf_size /
Kiran Patil21659032015-09-30 14:09:03 -04001784 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001785 list_size = filter_list_len *
Shannon Nelsonf1199992015-11-19 11:34:23 -08001786 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001787 del_list = kzalloc(list_size, GFP_ATOMIC);
Kiran Patil21659032015-09-30 14:09:03 -04001788 if (!del_list) {
Kiran Patil21659032015-09-30 14:09:03 -04001789 /* Undo VSI's MAC filter entry element updates */
1790 spin_lock_bh(&vsi->mac_filter_list_lock);
1791 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
Kiran Patil21659032015-09-30 14:09:03 -04001792 spin_unlock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsea02e902015-11-09 15:35:50 -08001793 retval = -ENOMEM;
1794 goto out;
Kiran Patil21659032015-09-30 14:09:03 -04001795 }
1796
1797 list_for_each_entry_safe(f, ftmp, &tmp_del_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001798 cmd_flags = 0;
1799
1800 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001801 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001802 if (f->vlan == I40E_VLAN_ANY) {
1803 del_list[num_del].vlan_tag = 0;
Alan Bradya6cb9142016-09-06 18:05:07 -07001804 cmd_flags |= I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001805 } else {
1806 del_list[num_del].vlan_tag =
1807 cpu_to_le16((u16)(f->vlan));
1808 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001809
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001810 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1811 del_list[num_del].flags = cmd_flags;
1812 num_del++;
1813
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001814 /* flush a full buffer */
1815 if (num_del == filter_list_len) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001816 aq_ret = i40e_aq_remove_macvlan(hw, vsi->seid,
1817 del_list,
1818 num_del, NULL);
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001819 aq_err = hw->aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001820 num_del = 0;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001821 memset(del_list, 0, list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001822
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001823 /* Explicitly ignore and do not report when
1824 * firmware returns ENOENT.
1825 */
1826 if (aq_ret && !(aq_err == I40E_AQ_RC_ENOENT)) {
Mitch Williamsea02e902015-11-09 15:35:50 -08001827 retval = -EIO;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001828 dev_info(&pf->pdev->dev,
1829 "ignoring delete macvlan error on %s, err %s, aq_err %s\n",
Shannon Nelson2d1de822016-05-16 10:26:44 -07001830 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001831 i40e_stat_str(hw, aq_ret),
1832 i40e_aq_str(hw, aq_err));
Mitch Williamsea02e902015-11-09 15:35:50 -08001833 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001834 }
Kiran Patil21659032015-09-30 14:09:03 -04001835 /* Release memory for MAC filter entries which were
1836 * synced up with HW.
1837 */
1838 list_del(&f->list);
1839 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001840 }
Kiran Patil21659032015-09-30 14:09:03 -04001841
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001842 if (num_del) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001843 aq_ret = i40e_aq_remove_macvlan(hw, vsi->seid, del_list,
1844 num_del, NULL);
1845 aq_err = hw->aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001846 num_del = 0;
1847
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001848 /* Explicitly ignore and do not report when firmware
1849 * returns ENOENT.
1850 */
1851 if (aq_ret && !(aq_err == I40E_AQ_RC_ENOENT)) {
1852 retval = -EIO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001853 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07001854 "ignoring delete macvlan error on %s, err %s aq_err %s\n",
1855 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001856 i40e_stat_str(hw, aq_ret),
1857 i40e_aq_str(hw, aq_err));
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001858 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001859 }
1860
1861 kfree(del_list);
1862 del_list = NULL;
Kiran Patil21659032015-09-30 14:09:03 -04001863 }
1864
1865 if (!list_empty(&tmp_add_list)) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001866 /* Do all the adds now. */
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001867 filter_list_len = hw->aq.asq_buf_size /
Shannon Nelsonf1199992015-11-19 11:34:23 -08001868 sizeof(struct i40e_aqc_add_macvlan_element_data);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001869 list_size = filter_list_len *
1870 sizeof(struct i40e_aqc_add_macvlan_element_data);
1871 add_list = kzalloc(list_size, GFP_ATOMIC);
Kiran Patil21659032015-09-30 14:09:03 -04001872 if (!add_list) {
Mitch Williamsea02e902015-11-09 15:35:50 -08001873 retval = -ENOMEM;
1874 goto out;
Kiran Patil21659032015-09-30 14:09:03 -04001875 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001876 num_add = 0;
1877 list_for_each_entry(f, &tmp_add_list, list) {
1878 if (test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1879 &vsi->state)) {
1880 f->state = I40E_FILTER_FAILED;
1881 continue;
1882 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001883 /* add to add array */
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001884 if (num_add == 0)
1885 add_head = f;
1886 cmd_flags = 0;
Greg Rose9a173902014-05-22 06:32:02 +00001887 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001888 if (f->vlan == I40E_VLAN_ANY) {
1889 add_list[num_add].vlan_tag = 0;
1890 cmd_flags |= I40E_AQC_MACVLAN_ADD_IGNORE_VLAN;
1891 } else {
1892 add_list[num_add].vlan_tag =
1893 cpu_to_le16((u16)(f->vlan));
1894 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001895 add_list[num_add].queue_number = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001896 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001897 add_list[num_add].flags = cpu_to_le16(cmd_flags);
1898 num_add++;
1899
1900 /* flush a full buffer */
1901 if (num_add == filter_list_len) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001902 aq_ret = i40e_aq_add_macvlan(hw, vsi->seid,
Mitch Williamsea02e902015-11-09 15:35:50 -08001903 add_list, num_add,
1904 NULL);
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001905 aq_err = hw->aq.asq_last_status;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001906 fcnt = i40e_update_filter_state(num_add,
1907 add_list,
1908 add_head,
1909 aq_ret);
1910 vsi->active_filters += fcnt;
1911
1912 if (fcnt != num_add) {
1913 promisc_changed = true;
1914 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1915 &vsi->state);
1916 vsi->promisc_threshold =
1917 (vsi->active_filters * 3) / 4;
1918 dev_warn(&pf->pdev->dev,
1919 "Error %s adding RX filters on %s, promiscuous mode forced on\n",
1920 i40e_aq_str(hw, aq_err),
1921 vsi_name);
1922 }
1923 memset(add_list, 0, list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001924 num_add = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001925 }
1926 }
1927 if (num_add) {
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001928 aq_ret = i40e_aq_add_macvlan(hw, vsi->seid,
Mitch Williamsea02e902015-11-09 15:35:50 -08001929 add_list, num_add, NULL);
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001930 aq_err = hw->aq.asq_last_status;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001931 fcnt = i40e_update_filter_state(num_add, add_list,
1932 add_head, aq_ret);
1933 vsi->active_filters += fcnt;
1934 if (fcnt != num_add) {
1935 promisc_changed = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001936 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
1937 &vsi->state);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001938 vsi->promisc_threshold =
1939 (vsi->active_filters * 3) / 4;
1940 dev_warn(&pf->pdev->dev,
1941 "Error %s adding RX filters on %s, promiscuous mode forced on\n",
1942 i40e_aq_str(hw, aq_err), vsi_name);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001943 }
1944 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07001945 /* Now move all of the filters from the temp add list back to
1946 * the VSI's list.
1947 */
1948 spin_lock_bh(&vsi->mac_filter_list_lock);
1949 list_for_each_entry_safe(f, ftmp, &tmp_add_list, list) {
1950 list_move_tail(&f->list, &vsi->mac_filter_list);
1951 }
1952 spin_unlock_bh(&vsi->mac_filter_list_lock);
1953 kfree(add_list);
1954 add_list = NULL;
1955 }
1956
1957 /* Check to see if we can drop out of overflow promiscuous mode. */
1958 if (test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state) &&
1959 (vsi->active_filters < vsi->promisc_threshold)) {
1960 int failed_count = 0;
1961 /* See if we have any failed filters. We can't drop out of
1962 * promiscuous until these have all been deleted.
1963 */
1964 spin_lock_bh(&vsi->mac_filter_list_lock);
1965 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1966 if (f->state == I40E_FILTER_FAILED)
1967 failed_count++;
1968 }
1969 spin_unlock_bh(&vsi->mac_filter_list_lock);
1970 if (!failed_count) {
1971 dev_info(&pf->pdev->dev,
1972 "filter logjam cleared on %s, leaving overflow promiscuous mode\n",
1973 vsi_name);
1974 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
1975 promisc_changed = true;
1976 vsi->promisc_threshold = 0;
1977 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001978 }
1979
Anjali Singhai Jaina856b5c2016-04-13 03:08:23 -07001980 /* if the VF is not trusted do not do promisc */
1981 if ((vsi->type == I40E_VSI_SRIOV) && !pf->vf[vsi->vf_id].trusted) {
1982 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
1983 goto out;
1984 }
1985
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001986 /* check for changes in promiscuous modes */
1987 if (changed_flags & IFF_ALLMULTI) {
1988 bool cur_multipromisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001989
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001990 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Mitch Williamsea02e902015-11-09 15:35:50 -08001991 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
1992 vsi->seid,
1993 cur_multipromisc,
1994 NULL);
1995 if (aq_ret) {
1996 retval = i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07001997 hw->aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001998 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07001999 "set multi promisc failed on %s, err %s aq_err %s\n",
2000 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002001 i40e_stat_str(hw, aq_ret),
2002 i40e_aq_str(hw, hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002003 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002004 }
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002005 if ((changed_flags & IFF_PROMISC) ||
2006 (promisc_changed &&
2007 test_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state))) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002008 bool cur_promisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002009
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002010 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
2011 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2012 &vsi->state));
Anjali Singhai Jain6784ed52016-01-15 14:33:13 -08002013 if ((vsi->type == I40E_VSI_MAIN) &&
2014 (pf->lan_veb != I40E_NO_VEB) &&
2015 !(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002016 /* set defport ON for Main VSI instead of true promisc
2017 * this way we will get all unicast/multicast and VLAN
2018 * promisc behavior but will not get VF or VMDq traffic
2019 * replicated on the Main VSI.
2020 */
2021 if (pf->cur_promisc != cur_promisc) {
2022 pf->cur_promisc = cur_promisc;
Mitch Williams5bc16032016-05-16 10:26:43 -07002023 if (cur_promisc)
2024 aq_ret =
2025 i40e_aq_set_default_vsi(hw,
2026 vsi->seid,
2027 NULL);
2028 else
2029 aq_ret =
2030 i40e_aq_clear_default_vsi(hw,
2031 vsi->seid,
2032 NULL);
2033 if (aq_ret) {
2034 retval = i40e_aq_rc_to_posix(aq_ret,
2035 hw->aq.asq_last_status);
2036 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002037 "Set default VSI failed on %s, err %s, aq_err %s\n",
2038 vsi_name,
Mitch Williams5bc16032016-05-16 10:26:43 -07002039 i40e_stat_str(hw, aq_ret),
2040 i40e_aq_str(hw,
2041 hw->aq.asq_last_status));
2042 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002043 }
2044 } else {
Mitch Williamsea02e902015-11-09 15:35:50 -08002045 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002046 hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002047 vsi->seid,
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07002048 cur_promisc, NULL,
2049 true);
Mitch Williamsea02e902015-11-09 15:35:50 -08002050 if (aq_ret) {
2051 retval =
2052 i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002053 hw->aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002054 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002055 "set unicast promisc failed on %s, err %s, aq_err %s\n",
2056 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002057 i40e_stat_str(hw, aq_ret),
2058 i40e_aq_str(hw,
2059 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002060 }
2061 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002062 hw,
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002063 vsi->seid,
2064 cur_promisc, NULL);
Mitch Williamsea02e902015-11-09 15:35:50 -08002065 if (aq_ret) {
2066 retval =
2067 i40e_aq_rc_to_posix(aq_ret,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002068 hw->aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002069 dev_info(&pf->pdev->dev,
Shannon Nelson2d1de822016-05-16 10:26:44 -07002070 "set multicast promisc failed on %s, err %s, aq_err %s\n",
2071 vsi_name,
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002072 i40e_stat_str(hw, aq_ret),
2073 i40e_aq_str(hw,
2074 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002075 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002076 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002077 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
2078 vsi->seid,
2079 cur_promisc, NULL);
2080 if (aq_ret) {
2081 retval = i40e_aq_rc_to_posix(aq_ret,
2082 pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00002083 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002084 "set brdcast promisc failed, err %s, aq_err %s\n",
Mitch Williams3e25a8f2016-05-16 10:26:32 -07002085 i40e_stat_str(hw, aq_ret),
2086 i40e_aq_str(hw,
2087 hw->aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002088 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002089 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002090out:
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08002091 /* if something went wrong then set the changed flag so we try again */
2092 if (retval)
2093 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
2094
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002095 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
Mitch Williamsea02e902015-11-09 15:35:50 -08002096 return retval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002097}
2098
2099/**
2100 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
2101 * @pf: board private structure
2102 **/
2103static void i40e_sync_filters_subtask(struct i40e_pf *pf)
2104{
2105 int v;
2106
2107 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
2108 return;
2109 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
2110
Mitch Williams505682c2014-05-20 08:01:37 +00002111 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002112 if (pf->vsi[v] &&
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002113 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) {
2114 int ret = i40e_sync_vsi_filters(pf->vsi[v]);
2115
2116 if (ret) {
2117 /* come back and try again later */
2118 pf->flags |= I40E_FLAG_FILTER_SYNC;
2119 break;
2120 }
2121 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002122 }
2123}
2124
2125/**
2126 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
2127 * @netdev: network interface device structure
2128 * @new_mtu: new value for maximum frame size
2129 *
2130 * Returns 0 on success, negative on failure
2131 **/
2132static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
2133{
2134 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002135 struct i40e_vsi *vsi = np->vsi;
2136
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002137 netdev_info(netdev, "changing MTU from %d to %d\n",
2138 netdev->mtu, new_mtu);
2139 netdev->mtu = new_mtu;
2140 if (netif_running(netdev))
2141 i40e_vsi_reinit_locked(vsi);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002142 i40e_notify_client_of_l2_param_changes(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002143 return 0;
2144}
2145
2146/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002147 * i40e_ioctl - Access the hwtstamp interface
2148 * @netdev: network interface device structure
2149 * @ifr: interface request data
2150 * @cmd: ioctl command
2151 **/
2152int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2153{
2154 struct i40e_netdev_priv *np = netdev_priv(netdev);
2155 struct i40e_pf *pf = np->vsi->back;
2156
2157 switch (cmd) {
2158 case SIOCGHWTSTAMP:
2159 return i40e_ptp_get_ts_config(pf, ifr);
2160 case SIOCSHWTSTAMP:
2161 return i40e_ptp_set_ts_config(pf, ifr);
2162 default:
2163 return -EOPNOTSUPP;
2164 }
2165}
2166
2167/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002168 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
2169 * @vsi: the vsi being adjusted
2170 **/
2171void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
2172{
2173 struct i40e_vsi_context ctxt;
2174 i40e_status ret;
2175
2176 if ((vsi->info.valid_sections &
2177 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2178 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
2179 return; /* already enabled */
2180
2181 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2182 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2183 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
2184
2185 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002186 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002187 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2188 if (ret) {
2189 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002190 "update vlan stripping failed, err %s aq_err %s\n",
2191 i40e_stat_str(&vsi->back->hw, ret),
2192 i40e_aq_str(&vsi->back->hw,
2193 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002194 }
2195}
2196
2197/**
2198 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
2199 * @vsi: the vsi being adjusted
2200 **/
2201void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
2202{
2203 struct i40e_vsi_context ctxt;
2204 i40e_status ret;
2205
2206 if ((vsi->info.valid_sections &
2207 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2208 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
2209 I40E_AQ_VSI_PVLAN_EMOD_MASK))
2210 return; /* already disabled */
2211
2212 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2213 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2214 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
2215
2216 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002217 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002218 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2219 if (ret) {
2220 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002221 "update vlan stripping failed, err %s aq_err %s\n",
2222 i40e_stat_str(&vsi->back->hw, ret),
2223 i40e_aq_str(&vsi->back->hw,
2224 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002225 }
2226}
2227
2228/**
2229 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2230 * @netdev: network interface to be adjusted
2231 * @features: netdev features to test if VLAN offload is enabled or not
2232 **/
2233static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2234{
2235 struct i40e_netdev_priv *np = netdev_priv(netdev);
2236 struct i40e_vsi *vsi = np->vsi;
2237
2238 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2239 i40e_vlan_stripping_enable(vsi);
2240 else
2241 i40e_vlan_stripping_disable(vsi);
2242}
2243
2244/**
2245 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2246 * @vsi: the vsi being configured
2247 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2248 **/
2249int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2250{
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002251 struct i40e_mac_filter *f, *ftmp, *add_f;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002252
Kiran Patil21659032015-09-30 14:09:03 -04002253 /* Locked once because all functions invoked below iterates list*/
2254 spin_lock_bh(&vsi->mac_filter_list_lock);
2255
Jacob Keller1bc87e82016-10-05 09:30:31 -07002256 if (vsi->netdev) {
2257 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002258 if (!add_f) {
2259 dev_info(&vsi->back->pdev->dev,
2260 "Could not add vlan filter %d for %pM\n",
2261 vid, vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002262 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002263 return -ENOMEM;
2264 }
2265 }
2266
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002267 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07002268 add_f = i40e_add_filter(vsi, f->macaddr, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002269 if (!add_f) {
2270 dev_info(&vsi->back->pdev->dev,
2271 "Could not add vlan filter %d for %pM\n",
2272 vid, f->macaddr);
Kiran Patil21659032015-09-30 14:09:03 -04002273 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002274 return -ENOMEM;
2275 }
2276 }
2277
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002278 /* Now if we add a vlan tag, make sure to check if it is the first
2279 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2280 * with 0, so we now accept untagged and specified tagged traffic
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002281 * (and not all tags along with untagged)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002282 */
2283 if (vid > 0) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07002284 if (vsi->netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2285 I40E_VLAN_ANY)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002286 i40e_del_filter(vsi, vsi->netdev->dev_addr,
Jacob Keller1bc87e82016-10-05 09:30:31 -07002287 I40E_VLAN_ANY);
2288 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002289 if (!add_f) {
2290 dev_info(&vsi->back->pdev->dev,
2291 "Could not add filter 0 for %pM\n",
2292 vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002293 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002294 return -ENOMEM;
2295 }
2296 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002297 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002298
Greg Rose8d82a7c2014-01-13 16:13:04 -08002299 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2300 if (vid > 0 && !vsi->info.pvid) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002301 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07002302 if (!i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY))
Kiran Patil21659032015-09-30 14:09:03 -04002303 continue;
Jacob Keller1bc87e82016-10-05 09:30:31 -07002304 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY);
2305 add_f = i40e_add_filter(vsi, f->macaddr, 0);
Kiran Patil21659032015-09-30 14:09:03 -04002306 if (!add_f) {
2307 dev_info(&vsi->back->pdev->dev,
2308 "Could not add filter 0 for %pM\n",
2309 f->macaddr);
2310 spin_unlock_bh(&vsi->mac_filter_list_lock);
2311 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002312 }
2313 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002314 }
2315
Kiran Patil21659032015-09-30 14:09:03 -04002316 spin_unlock_bh(&vsi->mac_filter_list_lock);
2317
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002318 /* schedule our worker thread which will take care of
2319 * applying the new filter changes
2320 */
2321 i40e_service_event_schedule(vsi->back);
2322 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002323}
2324
2325/**
2326 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2327 * @vsi: the vsi being configured
2328 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002329 *
2330 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002331 **/
2332int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2333{
2334 struct net_device *netdev = vsi->netdev;
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002335 struct i40e_mac_filter *f, *ftmp, *add_f;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002336 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002337
Kiran Patil21659032015-09-30 14:09:03 -04002338 /* Locked once because all functions invoked below iterates list */
2339 spin_lock_bh(&vsi->mac_filter_list_lock);
2340
Jacob Keller1bc87e82016-10-05 09:30:31 -07002341 if (vsi->netdev)
2342 i40e_del_filter(vsi, netdev->dev_addr, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002343
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002344 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
Jacob Keller1bc87e82016-10-05 09:30:31 -07002345 i40e_del_filter(vsi, f->macaddr, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002346
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002347 /* go through all the filters for this VSI and if there is only
2348 * vid == 0 it means there are no other filters, so vid 0 must
2349 * be replaced with -1. This signifies that we should from now
2350 * on accept any traffic (with any tag present, or untagged)
2351 */
2352 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07002353 if (vsi->netdev) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002354 if (f->vlan &&
2355 ether_addr_equal(netdev->dev_addr, f->macaddr))
2356 filter_count++;
2357 }
2358
2359 if (f->vlan)
2360 filter_count++;
2361 }
2362
Jacob Keller1bc87e82016-10-05 09:30:31 -07002363 if (!filter_count && vsi->netdev) {
2364 i40e_del_filter(vsi, netdev->dev_addr, 0);
2365 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002366 if (!f) {
2367 dev_info(&vsi->back->pdev->dev,
2368 "Could not add filter %d for %pM\n",
2369 I40E_VLAN_ANY, netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002370 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002371 return -ENOMEM;
2372 }
2373 }
2374
2375 if (!filter_count) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07002376 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jacob Keller1bc87e82016-10-05 09:30:31 -07002377 i40e_del_filter(vsi, f->macaddr, 0);
2378 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002379 if (!add_f) {
2380 dev_info(&vsi->back->pdev->dev,
2381 "Could not add filter %d for %pM\n",
2382 I40E_VLAN_ANY, f->macaddr);
Kiran Patil21659032015-09-30 14:09:03 -04002383 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002384 return -ENOMEM;
2385 }
2386 }
2387 }
2388
Kiran Patil21659032015-09-30 14:09:03 -04002389 spin_unlock_bh(&vsi->mac_filter_list_lock);
2390
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002391 /* schedule our worker thread which will take care of
2392 * applying the new filter changes
2393 */
2394 i40e_service_event_schedule(vsi->back);
2395 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002396}
2397
2398/**
2399 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2400 * @netdev: network interface to be adjusted
2401 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002402 *
2403 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002404 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002405#ifdef I40E_FCOE
2406int i40e_vlan_rx_add_vid(struct net_device *netdev,
2407 __always_unused __be16 proto, u16 vid)
2408#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002409static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2410 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002411#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002412{
2413 struct i40e_netdev_priv *np = netdev_priv(netdev);
2414 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002415 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002416
2417 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002418 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002419
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002420 /* If the network stack called us with vid = 0 then
2421 * it is asking to receive priority tagged packets with
2422 * vlan id 0. Our HW receives them by default when configured
2423 * to receive untagged packets so there is no need to add an
2424 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002425 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002426 if (vid)
2427 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002428
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002429 if (!ret && (vid < VLAN_N_VID))
2430 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002431
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002432 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002433}
2434
2435/**
2436 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2437 * @netdev: network interface to be adjusted
2438 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002439 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002440 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002441 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002442#ifdef I40E_FCOE
2443int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2444 __always_unused __be16 proto, u16 vid)
2445#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002446static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2447 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002448#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002449{
2450 struct i40e_netdev_priv *np = netdev_priv(netdev);
2451 struct i40e_vsi *vsi = np->vsi;
2452
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002453 /* return code is ignored as there is nothing a user
2454 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002455 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002456 */
2457 i40e_vsi_kill_vlan(vsi, vid);
2458
2459 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002460
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002461 return 0;
2462}
2463
2464/**
Tushar Daveb1b15df2016-07-01 10:11:20 -07002465 * i40e_macaddr_init - explicitly write the mac address filters
2466 *
2467 * @vsi: pointer to the vsi
2468 * @macaddr: the MAC address
2469 *
2470 * This is needed when the macaddr has been obtained by other
2471 * means than the default, e.g., from Open Firmware or IDPROM.
2472 * Returns 0 on success, negative on failure
2473 **/
2474static int i40e_macaddr_init(struct i40e_vsi *vsi, u8 *macaddr)
2475{
2476 int ret;
2477 struct i40e_aqc_add_macvlan_element_data element;
2478
2479 ret = i40e_aq_mac_address_write(&vsi->back->hw,
2480 I40E_AQC_WRITE_TYPE_LAA_WOL,
2481 macaddr, NULL);
2482 if (ret) {
2483 dev_info(&vsi->back->pdev->dev,
2484 "Addr change for VSI failed: %d\n", ret);
2485 return -EADDRNOTAVAIL;
2486 }
2487
2488 memset(&element, 0, sizeof(element));
2489 ether_addr_copy(element.mac_addr, macaddr);
2490 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
2491 ret = i40e_aq_add_macvlan(&vsi->back->hw, vsi->seid, &element, 1, NULL);
2492 if (ret) {
2493 dev_info(&vsi->back->pdev->dev,
2494 "add filter failed err %s aq_err %s\n",
2495 i40e_stat_str(&vsi->back->hw, ret),
2496 i40e_aq_str(&vsi->back->hw,
2497 vsi->back->hw.aq.asq_last_status));
2498 }
2499 return ret;
2500}
2501
2502/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002503 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2504 * @vsi: the vsi being brought back up
2505 **/
2506static void i40e_restore_vlan(struct i40e_vsi *vsi)
2507{
2508 u16 vid;
2509
2510 if (!vsi->netdev)
2511 return;
2512
2513 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2514
2515 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2516 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2517 vid);
2518}
2519
2520/**
2521 * i40e_vsi_add_pvid - Add pvid for the VSI
2522 * @vsi: the vsi being adjusted
2523 * @vid: the vlan id to set as a PVID
2524 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002525int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002526{
2527 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002528 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002529
2530 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2531 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002532 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2533 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002534 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002535
2536 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002537 ctxt.info = vsi->info;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002538 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2539 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002540 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002541 "add pvid failed, err %s aq_err %s\n",
2542 i40e_stat_str(&vsi->back->hw, ret),
2543 i40e_aq_str(&vsi->back->hw,
2544 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002545 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002546 }
2547
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002548 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002549}
2550
2551/**
2552 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2553 * @vsi: the vsi being adjusted
2554 *
2555 * Just use the vlan_rx_register() service to put it back to normal
2556 **/
2557void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2558{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002559 i40e_vlan_stripping_disable(vsi);
2560
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002561 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002562}
2563
2564/**
2565 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2566 * @vsi: ptr to the VSI
2567 *
2568 * If this function returns with an error, then it's possible one or
2569 * more of the rings is populated (while the rest are not). It is the
2570 * callers duty to clean those orphaned rings.
2571 *
2572 * Return 0 on success, negative on failure
2573 **/
2574static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2575{
2576 int i, err = 0;
2577
2578 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002579 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002580
2581 return err;
2582}
2583
2584/**
2585 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2586 * @vsi: ptr to the VSI
2587 *
2588 * Free VSI's transmit software resources
2589 **/
2590static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2591{
2592 int i;
2593
Greg Rose8e9dca52013-12-18 13:45:53 +00002594 if (!vsi->tx_rings)
2595 return;
2596
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002597 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002598 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002599 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002600}
2601
2602/**
2603 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2604 * @vsi: ptr to the VSI
2605 *
2606 * If this function returns with an error, then it's possible one or
2607 * more of the rings is populated (while the rest are not). It is the
2608 * callers duty to clean those orphaned rings.
2609 *
2610 * Return 0 on success, negative on failure
2611 **/
2612static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2613{
2614 int i, err = 0;
2615
2616 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002617 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002618#ifdef I40E_FCOE
2619 i40e_fcoe_setup_ddp_resources(vsi);
2620#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002621 return err;
2622}
2623
2624/**
2625 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2626 * @vsi: ptr to the VSI
2627 *
2628 * Free all receive software resources
2629 **/
2630static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2631{
2632 int i;
2633
Greg Rose8e9dca52013-12-18 13:45:53 +00002634 if (!vsi->rx_rings)
2635 return;
2636
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002637 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002638 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002639 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002640#ifdef I40E_FCOE
2641 i40e_fcoe_free_ddp_resources(vsi);
2642#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002643}
2644
2645/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002646 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2647 * @ring: The Tx ring to configure
2648 *
2649 * This enables/disables XPS for a given Tx descriptor ring
2650 * based on the TCs enabled for the VSI that ring belongs to.
2651 **/
2652static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2653{
2654 struct i40e_vsi *vsi = ring->vsi;
2655 cpumask_var_t mask;
2656
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002657 if (!ring->q_vector || !ring->netdev)
2658 return;
2659
2660 /* Single TC mode enable XPS */
2661 if (vsi->tc_config.numtc <= 1) {
2662 if (!test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002663 netif_set_xps_queue(ring->netdev,
2664 &ring->q_vector->affinity_mask,
2665 ring->queue_index);
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002666 } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) {
2667 /* Disable XPS to allow selection based on TC */
2668 bitmap_zero(cpumask_bits(mask), nr_cpumask_bits);
2669 netif_set_xps_queue(ring->netdev, mask, ring->queue_index);
2670 free_cpumask_var(mask);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002671 }
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002672
2673 /* schedule our worker thread which will take care of
2674 * applying the new filter changes
2675 */
2676 i40e_service_event_schedule(vsi->back);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002677}
2678
2679/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002680 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2681 * @ring: The Tx ring to configure
2682 *
2683 * Configure the Tx descriptor ring in the HMC context.
2684 **/
2685static int i40e_configure_tx_ring(struct i40e_ring *ring)
2686{
2687 struct i40e_vsi *vsi = ring->vsi;
2688 u16 pf_q = vsi->base_queue + ring->queue_index;
2689 struct i40e_hw *hw = &vsi->back->hw;
2690 struct i40e_hmc_obj_txq tx_ctx;
2691 i40e_status err = 0;
2692 u32 qtx_ctl = 0;
2693
2694 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002695 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002696 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2697 ring->atr_count = 0;
2698 } else {
2699 ring->atr_sample_rate = 0;
2700 }
2701
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002702 /* configure XPS */
2703 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002704
2705 /* clear the context structure first */
2706 memset(&tx_ctx, 0, sizeof(tx_ctx));
2707
2708 tx_ctx.new_context = 1;
2709 tx_ctx.base = (ring->dma / 128);
2710 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002711 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2712 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002713#ifdef I40E_FCOE
2714 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2715#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002716 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002717 /* FDIR VSI tx ring can still use RS bit and writebacks */
2718 if (vsi->type != I40E_VSI_FDIR)
2719 tx_ctx.head_wb_ena = 1;
2720 tx_ctx.head_wb_addr = ring->dma +
2721 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002722
2723 /* As part of VSI creation/update, FW allocates certain
2724 * Tx arbitration queue sets for each TC enabled for
2725 * the VSI. The FW returns the handles to these queue
2726 * sets as part of the response buffer to Add VSI,
2727 * Update VSI, etc. AQ commands. It is expected that
2728 * these queue set handles be associated with the Tx
2729 * queues by the driver as part of the TX queue context
2730 * initialization. This has to be done regardless of
2731 * DCB as by default everything is mapped to TC0.
2732 */
2733 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2734 tx_ctx.rdylist_act = 0;
2735
2736 /* clear the context in the HMC */
2737 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2738 if (err) {
2739 dev_info(&vsi->back->pdev->dev,
2740 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2741 ring->queue_index, pf_q, err);
2742 return -ENOMEM;
2743 }
2744
2745 /* set the context in the HMC */
2746 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2747 if (err) {
2748 dev_info(&vsi->back->pdev->dev,
2749 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2750 ring->queue_index, pf_q, err);
2751 return -ENOMEM;
2752 }
2753
2754 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002755 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002756 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002757 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2758 I40E_QTX_CTL_VFVM_INDX_MASK;
2759 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002760 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002761 }
2762
Shannon Nelson13fd977492013-09-28 07:14:19 +00002763 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2764 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002765 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2766 i40e_flush(hw);
2767
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002768 /* cache tail off for easier writes later */
2769 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2770
2771 return 0;
2772}
2773
2774/**
2775 * i40e_configure_rx_ring - Configure a receive ring context
2776 * @ring: The Rx ring to configure
2777 *
2778 * Configure the Rx descriptor ring in the HMC context.
2779 **/
2780static int i40e_configure_rx_ring(struct i40e_ring *ring)
2781{
2782 struct i40e_vsi *vsi = ring->vsi;
2783 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2784 u16 pf_q = vsi->base_queue + ring->queue_index;
2785 struct i40e_hw *hw = &vsi->back->hw;
2786 struct i40e_hmc_obj_rxq rx_ctx;
2787 i40e_status err = 0;
2788
2789 ring->state = 0;
2790
2791 /* clear the context structure first */
2792 memset(&rx_ctx, 0, sizeof(rx_ctx));
2793
2794 ring->rx_buf_len = vsi->rx_buf_len;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002795
2796 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002797
2798 rx_ctx.base = (ring->dma / 128);
2799 rx_ctx.qlen = ring->count;
2800
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07002801 /* use 32 byte descriptors */
2802 rx_ctx.dsize = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002803
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07002804 /* descriptor type is always zero
2805 * rx_ctx.dtype = 0;
2806 */
Jesse Brandeburgb32bfa12016-04-18 11:33:42 -07002807 rx_ctx.hsplit_0 = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002808
Jesse Brandeburgb32bfa12016-04-18 11:33:42 -07002809 rx_ctx.rxmax = min_t(u16, vsi->max_frame, chain_len * ring->rx_buf_len);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002810 if (hw->revision_id == 0)
2811 rx_ctx.lrxqthresh = 0;
2812 else
2813 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002814 rx_ctx.crcstrip = 1;
2815 rx_ctx.l2tsel = 1;
Jesse Brandeburgc4bbac32015-09-28 11:21:48 -07002816 /* this controls whether VLAN is stripped from inner headers */
2817 rx_ctx.showiv = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07002818#ifdef I40E_FCOE
2819 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2820#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002821 /* set the prefena field to 1 because the manual says to */
2822 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002823
2824 /* clear the context in the HMC */
2825 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2826 if (err) {
2827 dev_info(&vsi->back->pdev->dev,
2828 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2829 ring->queue_index, pf_q, err);
2830 return -ENOMEM;
2831 }
2832
2833 /* set the context in the HMC */
2834 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2835 if (err) {
2836 dev_info(&vsi->back->pdev->dev,
2837 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2838 ring->queue_index, pf_q, err);
2839 return -ENOMEM;
2840 }
2841
2842 /* cache tail for quicker writes, and clear the reg before use */
2843 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2844 writel(0, ring->tail);
2845
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -07002846 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002847
2848 return 0;
2849}
2850
2851/**
2852 * i40e_vsi_configure_tx - Configure the VSI for Tx
2853 * @vsi: VSI structure describing this set of rings and resources
2854 *
2855 * Configure the Tx VSI for operation.
2856 **/
2857static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2858{
2859 int err = 0;
2860 u16 i;
2861
Alexander Duyck9f65e152013-09-28 06:00:58 +00002862 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2863 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002864
2865 return err;
2866}
2867
2868/**
2869 * i40e_vsi_configure_rx - Configure the VSI for Rx
2870 * @vsi: the VSI being configured
2871 *
2872 * Configure the Rx VSI for operation.
2873 **/
2874static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2875{
2876 int err = 0;
2877 u16 i;
2878
2879 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2880 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2881 + ETH_FCS_LEN + VLAN_HLEN;
2882 else
2883 vsi->max_frame = I40E_RXBUFFER_2048;
2884
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -07002885 vsi->rx_buf_len = I40E_RXBUFFER_2048;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002886
Vasu Dev38e00432014-08-01 13:27:03 -07002887#ifdef I40E_FCOE
2888 /* setup rx buffer for FCoE */
2889 if ((vsi->type == I40E_VSI_FCOE) &&
2890 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
Vasu Dev38e00432014-08-01 13:27:03 -07002891 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2892 vsi->max_frame = I40E_RXBUFFER_3072;
Vasu Dev38e00432014-08-01 13:27:03 -07002893 }
2894
2895#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002896 /* round up for the chip's needs */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002897 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002898 BIT_ULL(I40E_RXQ_CTX_DBUFF_SHIFT));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002899
2900 /* set up individual rings */
2901 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002902 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002903
2904 return err;
2905}
2906
2907/**
2908 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2909 * @vsi: ptr to the VSI
2910 **/
2911static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2912{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002913 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002914 u16 qoffset, qcount;
2915 int i, n;
2916
Parikh, Neeravcd238a32015-02-21 06:43:37 +00002917 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
2918 /* Reset the TC information */
2919 for (i = 0; i < vsi->num_queue_pairs; i++) {
2920 rx_ring = vsi->rx_rings[i];
2921 tx_ring = vsi->tx_rings[i];
2922 rx_ring->dcb_tc = 0;
2923 tx_ring->dcb_tc = 0;
2924 }
2925 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002926
2927 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002928 if (!(vsi->tc_config.enabled_tc & BIT_ULL(n)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002929 continue;
2930
2931 qoffset = vsi->tc_config.tc_info[n].qoffset;
2932 qcount = vsi->tc_config.tc_info[n].qcount;
2933 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002934 rx_ring = vsi->rx_rings[i];
2935 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002936 rx_ring->dcb_tc = n;
2937 tx_ring->dcb_tc = n;
2938 }
2939 }
2940}
2941
2942/**
2943 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
2944 * @vsi: ptr to the VSI
2945 **/
2946static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
2947{
Tushar Daveb1b15df2016-07-01 10:11:20 -07002948 struct i40e_pf *pf = vsi->back;
2949 int err;
2950
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002951 if (vsi->netdev)
2952 i40e_set_rx_mode(vsi->netdev);
Tushar Daveb1b15df2016-07-01 10:11:20 -07002953
2954 if (!!(pf->flags & I40E_FLAG_PF_MAC)) {
2955 err = i40e_macaddr_init(vsi, pf->hw.mac.addr);
2956 if (err) {
2957 dev_warn(&pf->pdev->dev,
2958 "could not set up macaddr; err %d\n", err);
2959 }
2960 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002961}
2962
2963/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002964 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
2965 * @vsi: Pointer to the targeted VSI
2966 *
2967 * This function replays the hlist on the hw where all the SB Flow Director
2968 * filters were saved.
2969 **/
2970static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
2971{
2972 struct i40e_fdir_filter *filter;
2973 struct i40e_pf *pf = vsi->back;
2974 struct hlist_node *node;
2975
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00002976 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
2977 return;
2978
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00002979 hlist_for_each_entry_safe(filter, node,
2980 &pf->fdir_filter_list, fdir_node) {
2981 i40e_add_del_fdir(vsi, filter, true);
2982 }
2983}
2984
2985/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002986 * i40e_vsi_configure - Set up the VSI for action
2987 * @vsi: the VSI being configured
2988 **/
2989static int i40e_vsi_configure(struct i40e_vsi *vsi)
2990{
2991 int err;
2992
2993 i40e_set_vsi_rx_mode(vsi);
2994 i40e_restore_vlan(vsi);
2995 i40e_vsi_config_dcb_rings(vsi);
2996 err = i40e_vsi_configure_tx(vsi);
2997 if (!err)
2998 err = i40e_vsi_configure_rx(vsi);
2999
3000 return err;
3001}
3002
3003/**
3004 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
3005 * @vsi: the VSI being configured
3006 **/
3007static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
3008{
3009 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003010 struct i40e_hw *hw = &pf->hw;
3011 u16 vector;
3012 int i, q;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003013 u32 qp;
3014
3015 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
3016 * and PFINT_LNKLSTn registers, e.g.:
3017 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
3018 */
3019 qp = vsi->base_queue;
3020 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00003021 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003022 struct i40e_q_vector *q_vector = vsi->q_vectors[i];
3023
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003024 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003025 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[i]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003026 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3027 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
3028 q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003029 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[i]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003030 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3031 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
3032 q_vector->tx.itr);
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003033 wr32(hw, I40E_PFINT_RATEN(vector - 1),
3034 INTRL_USEC_TO_REG(vsi->int_rate_limit));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003035
3036 /* Linked list for the queuepairs assigned to this vector */
3037 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
3038 for (q = 0; q < q_vector->num_ringpairs; q++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003039 u32 val;
3040
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003041 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3042 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3043 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
3044 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
3045 (I40E_QUEUE_TYPE_TX
3046 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
3047
3048 wr32(hw, I40E_QINT_RQCTL(qp), val);
3049
3050 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3051 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3052 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3053 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
3054 (I40E_QUEUE_TYPE_RX
3055 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3056
3057 /* Terminate the linked list */
3058 if (q == (q_vector->num_ringpairs - 1))
3059 val |= (I40E_QUEUE_END_OF_LIST
3060 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3061
3062 wr32(hw, I40E_QINT_TQCTL(qp), val);
3063 qp++;
3064 }
3065 }
3066
3067 i40e_flush(hw);
3068}
3069
3070/**
3071 * i40e_enable_misc_int_causes - enable the non-queue interrupts
3072 * @hw: ptr to the hardware info
3073 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00003074static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003075{
Jacob Kellerab437b52014-12-14 01:55:08 +00003076 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003077 u32 val;
3078
3079 /* clear things first */
3080 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
3081 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
3082
3083 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
3084 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
3085 I40E_PFINT_ICR0_ENA_GRST_MASK |
3086 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
3087 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003088 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
3089 I40E_PFINT_ICR0_ENA_VFLR_MASK |
3090 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3091
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003092 if (pf->flags & I40E_FLAG_IWARP_ENABLED)
3093 val |= I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3094
Jacob Kellerab437b52014-12-14 01:55:08 +00003095 if (pf->flags & I40E_FLAG_PTP)
3096 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
3097
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003098 wr32(hw, I40E_PFINT_ICR0_ENA, val);
3099
3100 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00003101 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
3102 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003103
3104 /* OTHER_ITR_IDX = 0 */
3105 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
3106}
3107
3108/**
3109 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
3110 * @vsi: the VSI being configured
3111 **/
3112static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
3113{
Alexander Duyck493fb302013-09-28 07:01:44 +00003114 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003115 struct i40e_pf *pf = vsi->back;
3116 struct i40e_hw *hw = &pf->hw;
3117 u32 val;
3118
3119 /* set the ITR configuration */
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003120 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003121 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[0]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003122 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3123 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003124 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[0]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003125 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3126 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
3127
Jacob Kellerab437b52014-12-14 01:55:08 +00003128 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003129
3130 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
3131 wr32(hw, I40E_PFINT_LNKLST0, 0);
3132
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00003133 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003134 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3135 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3136 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3137
3138 wr32(hw, I40E_QINT_RQCTL(0), val);
3139
3140 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3141 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3142 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3143
3144 wr32(hw, I40E_QINT_TQCTL(0), val);
3145 i40e_flush(hw);
3146}
3147
3148/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00003149 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
3150 * @pf: board private structure
3151 **/
3152void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
3153{
3154 struct i40e_hw *hw = &pf->hw;
3155
3156 wr32(hw, I40E_PFINT_DYN_CTL0,
3157 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
3158 i40e_flush(hw);
3159}
3160
3161/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003162 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
3163 * @pf: board private structure
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003164 * @clearpba: true when all pending interrupt events should be cleared
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003165 **/
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003166void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf, bool clearpba)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003167{
3168 struct i40e_hw *hw = &pf->hw;
3169 u32 val;
3170
3171 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003172 (clearpba ? I40E_PFINT_DYN_CTL0_CLEARPBA_MASK : 0) |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003173 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
3174
3175 wr32(hw, I40E_PFINT_DYN_CTL0, val);
3176 i40e_flush(hw);
3177}
3178
3179/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003180 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
3181 * @irq: interrupt number
3182 * @data: pointer to a q_vector
3183 **/
3184static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
3185{
3186 struct i40e_q_vector *q_vector = data;
3187
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003188 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003189 return IRQ_HANDLED;
3190
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003191 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003192
3193 return IRQ_HANDLED;
3194}
3195
3196/**
Alan Brady96db7762016-09-14 16:24:38 -07003197 * i40e_irq_affinity_notify - Callback for affinity changes
3198 * @notify: context as to what irq was changed
3199 * @mask: the new affinity mask
3200 *
3201 * This is a callback function used by the irq_set_affinity_notifier function
3202 * so that we may register to receive changes to the irq affinity masks.
3203 **/
3204static void i40e_irq_affinity_notify(struct irq_affinity_notify *notify,
3205 const cpumask_t *mask)
3206{
3207 struct i40e_q_vector *q_vector =
3208 container_of(notify, struct i40e_q_vector, affinity_notify);
3209
3210 q_vector->affinity_mask = *mask;
3211}
3212
3213/**
3214 * i40e_irq_affinity_release - Callback for affinity notifier release
3215 * @ref: internal core kernel usage
3216 *
3217 * This is a callback function used by the irq_set_affinity_notifier function
3218 * to inform the current notification subscriber that they will no longer
3219 * receive notifications.
3220 **/
3221static void i40e_irq_affinity_release(struct kref *ref) {}
3222
3223/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003224 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
3225 * @vsi: the VSI being configured
3226 * @basename: name for the vector
3227 *
3228 * Allocates MSI-X vectors and requests interrupts from the kernel.
3229 **/
3230static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
3231{
3232 int q_vectors = vsi->num_q_vectors;
3233 struct i40e_pf *pf = vsi->back;
3234 int base = vsi->base_vector;
3235 int rx_int_idx = 0;
3236 int tx_int_idx = 0;
3237 int vector, err;
Alan Brady96db7762016-09-14 16:24:38 -07003238 int irq_num;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003239
3240 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00003241 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003242
Alan Brady96db7762016-09-14 16:24:38 -07003243 irq_num = pf->msix_entries[base + vector].vector;
3244
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003245 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003246 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3247 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3248 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003249 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003250 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3251 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003252 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003253 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3254 "%s-%s-%d", basename, "tx", tx_int_idx++);
3255 } else {
3256 /* skip this unused q_vector */
3257 continue;
3258 }
Alan Brady96db7762016-09-14 16:24:38 -07003259 err = request_irq(irq_num,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003260 vsi->irq_handler,
3261 0,
3262 q_vector->name,
3263 q_vector);
3264 if (err) {
3265 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003266 "MSIX request_irq failed, error: %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003267 goto free_queue_irqs;
3268 }
Alan Brady96db7762016-09-14 16:24:38 -07003269
3270 /* register for affinity change notifications */
3271 q_vector->affinity_notify.notify = i40e_irq_affinity_notify;
3272 q_vector->affinity_notify.release = i40e_irq_affinity_release;
3273 irq_set_affinity_notifier(irq_num, &q_vector->affinity_notify);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003274 /* assign the mask for this irq */
Alan Brady96db7762016-09-14 16:24:38 -07003275 irq_set_affinity_hint(irq_num, &q_vector->affinity_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003276 }
3277
Shannon Nelson63741842014-04-23 04:50:16 +00003278 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003279 return 0;
3280
3281free_queue_irqs:
3282 while (vector) {
3283 vector--;
Alan Brady96db7762016-09-14 16:24:38 -07003284 irq_num = pf->msix_entries[base + vector].vector;
3285 irq_set_affinity_notifier(irq_num, NULL);
3286 irq_set_affinity_hint(irq_num, NULL);
3287 free_irq(irq_num, &vsi->q_vectors[vector]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003288 }
3289 return err;
3290}
3291
3292/**
3293 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3294 * @vsi: the VSI being un-configured
3295 **/
3296static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3297{
3298 struct i40e_pf *pf = vsi->back;
3299 struct i40e_hw *hw = &pf->hw;
3300 int base = vsi->base_vector;
3301 int i;
3302
3303 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00003304 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3305 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003306 }
3307
3308 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3309 for (i = vsi->base_vector;
3310 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3311 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3312
3313 i40e_flush(hw);
3314 for (i = 0; i < vsi->num_q_vectors; i++)
3315 synchronize_irq(pf->msix_entries[i + base].vector);
3316 } else {
3317 /* Legacy and MSI mode - this stops all interrupt handling */
3318 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3319 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3320 i40e_flush(hw);
3321 synchronize_irq(pf->pdev->irq);
3322 }
3323}
3324
3325/**
3326 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3327 * @vsi: the VSI being configured
3328 **/
3329static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3330{
3331 struct i40e_pf *pf = vsi->back;
3332 int i;
3333
3334 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Jesse Brandeburg78455482015-07-23 16:54:41 -04003335 for (i = 0; i < vsi->num_q_vectors; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003336 i40e_irq_dynamic_enable(vsi, i);
3337 } else {
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003338 i40e_irq_dynamic_enable_icr0(pf, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003339 }
3340
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003341 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003342 return 0;
3343}
3344
3345/**
3346 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3347 * @pf: board private structure
3348 **/
3349static void i40e_stop_misc_vector(struct i40e_pf *pf)
3350{
3351 /* Disable ICR 0 */
3352 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3353 i40e_flush(&pf->hw);
3354}
3355
3356/**
3357 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3358 * @irq: interrupt number
3359 * @data: pointer to a q_vector
3360 *
3361 * This is the handler used for all MSI/Legacy interrupts, and deals
3362 * with both queue and non-queue interrupts. This is also used in
3363 * MSIX mode to handle the non-queue interrupts.
3364 **/
3365static irqreturn_t i40e_intr(int irq, void *data)
3366{
3367 struct i40e_pf *pf = (struct i40e_pf *)data;
3368 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003369 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003370 u32 icr0, icr0_remaining;
3371 u32 val, ena_mask;
3372
3373 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003374 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003375
Shannon Nelson116a57d2013-09-28 07:13:59 +00003376 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3377 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003378 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003379
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003380 /* if interrupt but no bits showing, must be SWINT */
3381 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3382 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3383 pf->sw_int_count++;
3384
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003385 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
3386 (ena_mask & I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK)) {
3387 ena_mask &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3388 icr0 &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3389 dev_info(&pf->pdev->dev, "cleared PE_CRITERR\n");
3390 }
3391
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003392 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3393 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003394 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
3395 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003396
Anjali Singhai Jaina16ae2d2016-01-15 14:33:16 -08003397 /* We do not have a way to disarm Queue causes while leaving
3398 * interrupt enabled for all other causes, ideally
3399 * interrupt should be disabled while we are in NAPI but
3400 * this is not a performance path and napi_schedule()
3401 * can deal with rescheduling.
3402 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003403 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003404 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003405 }
3406
3407 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3408 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3409 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08003410 i40e_debug(&pf->hw, I40E_DEBUG_NVM, "AdminQ event\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003411 }
3412
3413 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3414 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3415 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3416 }
3417
3418 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3419 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3420 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3421 }
3422
3423 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3424 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3425 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3426 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3427 val = rd32(hw, I40E_GLGEN_RSTAT);
3428 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3429 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003430 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003431 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003432 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003433 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003434 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003435 pf->empr_count++;
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00003436 set_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003437 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003438 }
3439
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003440 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3441 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3442 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
Anjali Singhai Jain25fc0e62015-03-31 00:45:01 -07003443 dev_info(&pf->pdev->dev, "HMC error info 0x%x, HMC error data 0x%x\n",
3444 rd32(hw, I40E_PFHMC_ERRORINFO),
3445 rd32(hw, I40E_PFHMC_ERRORDATA));
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003446 }
3447
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003448 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3449 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3450
3451 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003452 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003453 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003454 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003455 }
3456
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003457 /* If a critical error is pending we have no choice but to reset the
3458 * device.
3459 * Report and mask out any remaining unexpected interrupts.
3460 */
3461 icr0_remaining = icr0 & ena_mask;
3462 if (icr0_remaining) {
3463 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3464 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003465 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003466 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003467 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003468 dev_info(&pf->pdev->dev, "device will be reset\n");
3469 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3470 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003471 }
3472 ena_mask &= ~icr0_remaining;
3473 }
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003474 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003475
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003476enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003477 /* re-enable interrupt causes */
3478 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003479 if (!test_bit(__I40E_DOWN, &pf->state)) {
3480 i40e_service_event_schedule(pf);
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003481 i40e_irq_dynamic_enable_icr0(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003482 }
3483
Anjali Singhai Jain5e8230662013-12-18 13:45:49 +00003484 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003485}
3486
3487/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003488 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3489 * @tx_ring: tx ring to clean
3490 * @budget: how many cleans we're allowed
3491 *
3492 * Returns true if there's any budget left (e.g. the clean is finished)
3493 **/
3494static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3495{
3496 struct i40e_vsi *vsi = tx_ring->vsi;
3497 u16 i = tx_ring->next_to_clean;
3498 struct i40e_tx_buffer *tx_buf;
3499 struct i40e_tx_desc *tx_desc;
3500
3501 tx_buf = &tx_ring->tx_bi[i];
3502 tx_desc = I40E_TX_DESC(tx_ring, i);
3503 i -= tx_ring->count;
3504
3505 do {
3506 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3507
3508 /* if next_to_watch is not set then there is no work pending */
3509 if (!eop_desc)
3510 break;
3511
3512 /* prevent any other reads prior to eop_desc */
3513 read_barrier_depends();
3514
3515 /* if the descriptor isn't done, no work yet to do */
3516 if (!(eop_desc->cmd_type_offset_bsz &
3517 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3518 break;
3519
3520 /* clear next_to_watch to prevent false hangs */
3521 tx_buf->next_to_watch = NULL;
3522
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003523 tx_desc->buffer_addr = 0;
3524 tx_desc->cmd_type_offset_bsz = 0;
3525 /* move past filter desc */
3526 tx_buf++;
3527 tx_desc++;
3528 i++;
3529 if (unlikely(!i)) {
3530 i -= tx_ring->count;
3531 tx_buf = tx_ring->tx_bi;
3532 tx_desc = I40E_TX_DESC(tx_ring, 0);
3533 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003534 /* unmap skb header data */
3535 dma_unmap_single(tx_ring->dev,
3536 dma_unmap_addr(tx_buf, dma),
3537 dma_unmap_len(tx_buf, len),
3538 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003539 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3540 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003541
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003542 tx_buf->raw_buf = NULL;
3543 tx_buf->tx_flags = 0;
3544 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003545 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003546 tx_desc->buffer_addr = 0;
3547 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003548
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003549 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003550 tx_buf++;
3551 tx_desc++;
3552 i++;
3553 if (unlikely(!i)) {
3554 i -= tx_ring->count;
3555 tx_buf = tx_ring->tx_bi;
3556 tx_desc = I40E_TX_DESC(tx_ring, 0);
3557 }
3558
3559 /* update budget accounting */
3560 budget--;
3561 } while (likely(budget));
3562
3563 i += tx_ring->count;
3564 tx_ring->next_to_clean = i;
3565
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003566 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED)
Jesse Brandeburg78455482015-07-23 16:54:41 -04003567 i40e_irq_dynamic_enable(vsi, tx_ring->q_vector->v_idx);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003568
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003569 return budget > 0;
3570}
3571
3572/**
3573 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3574 * @irq: interrupt number
3575 * @data: pointer to a q_vector
3576 **/
3577static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3578{
3579 struct i40e_q_vector *q_vector = data;
3580 struct i40e_vsi *vsi;
3581
3582 if (!q_vector->tx.ring)
3583 return IRQ_HANDLED;
3584
3585 vsi = q_vector->tx.ring->vsi;
3586 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3587
3588 return IRQ_HANDLED;
3589}
3590
3591/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003592 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003593 * @vsi: the VSI being configured
3594 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003595 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003596 **/
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003597static void i40e_map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003598{
Alexander Duyck493fb302013-09-28 07:01:44 +00003599 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e152013-09-28 06:00:58 +00003600 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3601 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003602
3603 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003604 tx_ring->next = q_vector->tx.ring;
3605 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003606 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003607
3608 rx_ring->q_vector = q_vector;
3609 rx_ring->next = q_vector->rx.ring;
3610 q_vector->rx.ring = rx_ring;
3611 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003612}
3613
3614/**
3615 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3616 * @vsi: the VSI being configured
3617 *
3618 * This function maps descriptor rings to the queue-specific vectors
3619 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3620 * one vector per queue pair, but on a constrained vector budget, we
3621 * group the queue pairs as "efficiently" as possible.
3622 **/
3623static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3624{
3625 int qp_remaining = vsi->num_queue_pairs;
3626 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003627 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003628 int v_start = 0;
3629 int qp_idx = 0;
3630
3631 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3632 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003633 * It is also important to go through all the vectors available to be
3634 * sure that if we don't use all the vectors, that the remaining vectors
3635 * are cleared. This is especially important when decreasing the
3636 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003637 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003638 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003639 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3640
3641 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3642
3643 q_vector->num_ringpairs = num_ringpairs;
3644
3645 q_vector->rx.count = 0;
3646 q_vector->tx.count = 0;
3647 q_vector->rx.ring = NULL;
3648 q_vector->tx.ring = NULL;
3649
3650 while (num_ringpairs--) {
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003651 i40e_map_vector_to_qp(vsi, v_start, qp_idx);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003652 qp_idx++;
3653 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003654 }
3655 }
3656}
3657
3658/**
3659 * i40e_vsi_request_irq - Request IRQ from the OS
3660 * @vsi: the VSI being configured
3661 * @basename: name for the vector
3662 **/
3663static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3664{
3665 struct i40e_pf *pf = vsi->back;
3666 int err;
3667
3668 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3669 err = i40e_vsi_request_irq_msix(vsi, basename);
3670 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3671 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003672 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003673 else
3674 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003675 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003676
3677 if (err)
3678 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3679
3680 return err;
3681}
3682
3683#ifdef CONFIG_NET_POLL_CONTROLLER
3684/**
Jesse Brandeburgd89d9672016-01-04 10:33:02 -08003685 * i40e_netpoll - A Polling 'interrupt' handler
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003686 * @netdev: network interface device structure
3687 *
3688 * This is used by netconsole to send skbs without having to re-enable
3689 * interrupts. It's not called while the normal interrupt routine is executing.
3690 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003691#ifdef I40E_FCOE
3692void i40e_netpoll(struct net_device *netdev)
3693#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003694static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003695#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003696{
3697 struct i40e_netdev_priv *np = netdev_priv(netdev);
3698 struct i40e_vsi *vsi = np->vsi;
3699 struct i40e_pf *pf = vsi->back;
3700 int i;
3701
3702 /* if interface is down do nothing */
3703 if (test_bit(__I40E_DOWN, &vsi->state))
3704 return;
3705
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003706 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3707 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003708 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003709 } else {
3710 i40e_intr(pf->pdev->irq, netdev);
3711 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003712}
3713#endif
3714
3715/**
Neerav Parikh23527302014-06-03 23:50:15 +00003716 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3717 * @pf: the PF being configured
3718 * @pf_q: the PF queue
3719 * @enable: enable or disable state of the queue
3720 *
3721 * This routine will wait for the given Tx queue of the PF to reach the
3722 * enabled or disabled state.
3723 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3724 * multiple retries; else will return 0 in case of success.
3725 **/
3726static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3727{
3728 int i;
3729 u32 tx_reg;
3730
3731 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3732 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3733 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3734 break;
3735
Neerav Parikhf98a2002014-09-13 07:40:44 +00003736 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003737 }
3738 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3739 return -ETIMEDOUT;
3740
3741 return 0;
3742}
3743
3744/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003745 * i40e_vsi_control_tx - Start or stop a VSI's rings
3746 * @vsi: the VSI being configured
3747 * @enable: start or stop the rings
3748 **/
3749static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3750{
3751 struct i40e_pf *pf = vsi->back;
3752 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003753 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003754 u32 tx_reg;
3755
3756 pf_q = vsi->base_queue;
3757 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499ab2014-04-23 04:50:03 +00003758
3759 /* warn the TX unit of coming changes */
3760 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3761 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003762 usleep_range(10, 20);
Matt Jared351499ab2014-04-23 04:50:03 +00003763
Mitch Williams6c5ef622014-02-20 19:29:16 -08003764 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003765 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003766 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3767 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3768 break;
3769 usleep_range(1000, 2000);
3770 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003771 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c1220072014-03-14 07:32:29 +00003772 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003773 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003774
3775 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003776 if (enable) {
3777 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003778 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003779 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003780 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003781 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003782
3783 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003784 /* No waiting for the Tx queue to disable */
3785 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3786 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003787
3788 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003789 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3790 if (ret) {
3791 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003792 "VSI seid %d Tx ring %d %sable timeout\n",
3793 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003794 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003795 }
3796 }
3797
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003798 if (hw->revision_id == 0)
3799 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003800 return ret;
3801}
3802
3803/**
3804 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3805 * @pf: the PF being configured
3806 * @pf_q: the PF queue
3807 * @enable: enable or disable state of the queue
3808 *
3809 * This routine will wait for the given Rx queue of the PF to reach the
3810 * enabled or disabled state.
3811 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3812 * multiple retries; else will return 0 in case of success.
3813 **/
3814static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3815{
3816 int i;
3817 u32 rx_reg;
3818
3819 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3820 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3821 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3822 break;
3823
Neerav Parikhf98a2002014-09-13 07:40:44 +00003824 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003825 }
3826 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3827 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003828
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003829 return 0;
3830}
3831
3832/**
3833 * i40e_vsi_control_rx - Start or stop a VSI's rings
3834 * @vsi: the VSI being configured
3835 * @enable: start or stop the rings
3836 **/
3837static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3838{
3839 struct i40e_pf *pf = vsi->back;
3840 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003841 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003842 u32 rx_reg;
3843
3844 pf_q = vsi->base_queue;
3845 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003846 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003847 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003848 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3849 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3850 break;
3851 usleep_range(1000, 2000);
3852 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003853
Catherine Sullivan7c1220072014-03-14 07:32:29 +00003854 /* Skip if the queue is already in the requested state */
3855 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3856 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003857
3858 /* turn on/off the queue */
3859 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003860 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003861 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003862 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003863 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
Neerav Parikh3fe06f42016-02-17 16:12:15 -08003864 /* No waiting for the Tx queue to disable */
3865 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3866 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003867
3868 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003869 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3870 if (ret) {
3871 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003872 "VSI seid %d Rx ring %d %sable timeout\n",
3873 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003874 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003875 }
3876 }
3877
Neerav Parikh23527302014-06-03 23:50:15 +00003878 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003879}
3880
3881/**
3882 * i40e_vsi_control_rings - Start or stop a VSI's rings
3883 * @vsi: the VSI being configured
3884 * @enable: start or stop the rings
3885 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003886int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003887{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003888 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003889
3890 /* do rx first for enable and last for disable */
3891 if (request) {
3892 ret = i40e_vsi_control_rx(vsi, request);
3893 if (ret)
3894 return ret;
3895 ret = i40e_vsi_control_tx(vsi, request);
3896 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003897 /* Ignore return value, we need to shutdown whatever we can */
3898 i40e_vsi_control_tx(vsi, request);
3899 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003900 }
3901
3902 return ret;
3903}
3904
3905/**
3906 * i40e_vsi_free_irq - Free the irq association with the OS
3907 * @vsi: the VSI being configured
3908 **/
3909static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3910{
3911 struct i40e_pf *pf = vsi->back;
3912 struct i40e_hw *hw = &pf->hw;
3913 int base = vsi->base_vector;
3914 u32 val, qp;
3915 int i;
3916
3917 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3918 if (!vsi->q_vectors)
3919 return;
3920
Shannon Nelson63741842014-04-23 04:50:16 +00003921 if (!vsi->irqs_ready)
3922 return;
3923
3924 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003925 for (i = 0; i < vsi->num_q_vectors; i++) {
Alan Brady96db7762016-09-14 16:24:38 -07003926 int irq_num;
3927 u16 vector;
3928
3929 vector = i + base;
3930 irq_num = pf->msix_entries[vector].vector;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003931
3932 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003933 if (!vsi->q_vectors[i] ||
3934 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003935 continue;
3936
Alan Brady96db7762016-09-14 16:24:38 -07003937 /* clear the affinity notifier in the IRQ descriptor */
3938 irq_set_affinity_notifier(irq_num, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003939 /* clear the affinity_mask in the IRQ descriptor */
Alan Brady96db7762016-09-14 16:24:38 -07003940 irq_set_affinity_hint(irq_num, NULL);
3941 synchronize_irq(irq_num);
3942 free_irq(irq_num, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003943
3944 /* Tear down the interrupt queue link list
3945 *
3946 * We know that they come in pairs and always
3947 * the Rx first, then the Tx. To clear the
3948 * link list, stick the EOL value into the
3949 * next_q field of the registers.
3950 */
3951 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3952 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3953 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3954 val |= I40E_QUEUE_END_OF_LIST
3955 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3956 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3957
3958 while (qp != I40E_QUEUE_END_OF_LIST) {
3959 u32 next;
3960
3961 val = rd32(hw, I40E_QINT_RQCTL(qp));
3962
3963 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3964 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3965 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3966 I40E_QINT_RQCTL_INTEVENT_MASK);
3967
3968 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3969 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3970
3971 wr32(hw, I40E_QINT_RQCTL(qp), val);
3972
3973 val = rd32(hw, I40E_QINT_TQCTL(qp));
3974
3975 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3976 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3977
3978 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3979 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3980 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3981 I40E_QINT_TQCTL_INTEVENT_MASK);
3982
3983 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3984 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3985
3986 wr32(hw, I40E_QINT_TQCTL(qp), val);
3987 qp = next;
3988 }
3989 }
3990 } else {
3991 free_irq(pf->pdev->irq, pf);
3992
3993 val = rd32(hw, I40E_PFINT_LNKLST0);
3994 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3995 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3996 val |= I40E_QUEUE_END_OF_LIST
3997 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
3998 wr32(hw, I40E_PFINT_LNKLST0, val);
3999
4000 val = rd32(hw, I40E_QINT_RQCTL(qp));
4001 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4002 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4003 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4004 I40E_QINT_RQCTL_INTEVENT_MASK);
4005
4006 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4007 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4008
4009 wr32(hw, I40E_QINT_RQCTL(qp), val);
4010
4011 val = rd32(hw, I40E_QINT_TQCTL(qp));
4012
4013 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4014 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4015 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4016 I40E_QINT_TQCTL_INTEVENT_MASK);
4017
4018 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4019 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4020
4021 wr32(hw, I40E_QINT_TQCTL(qp), val);
4022 }
4023}
4024
4025/**
Alexander Duyck493fb302013-09-28 07:01:44 +00004026 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
4027 * @vsi: the VSI being configured
4028 * @v_idx: Index of vector to be freed
4029 *
4030 * This function frees the memory allocated to the q_vector. In addition if
4031 * NAPI is enabled it will delete any references to the NAPI struct prior
4032 * to freeing the q_vector.
4033 **/
4034static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
4035{
4036 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004037 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00004038
4039 if (!q_vector)
4040 return;
4041
4042 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004043 i40e_for_each_ring(ring, q_vector->tx)
4044 ring->q_vector = NULL;
4045
4046 i40e_for_each_ring(ring, q_vector->rx)
4047 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00004048
4049 /* only VSI w/ an associated netdev is set up w/ NAPI */
4050 if (vsi->netdev)
4051 netif_napi_del(&q_vector->napi);
4052
4053 vsi->q_vectors[v_idx] = NULL;
4054
4055 kfree_rcu(q_vector, rcu);
4056}
4057
4058/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004059 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
4060 * @vsi: the VSI being un-configured
4061 *
4062 * This frees the memory allocated to the q_vectors and
4063 * deletes references to the NAPI struct.
4064 **/
4065static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
4066{
4067 int v_idx;
4068
Alexander Duyck493fb302013-09-28 07:01:44 +00004069 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
4070 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004071}
4072
4073/**
4074 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
4075 * @pf: board private structure
4076 **/
4077static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
4078{
4079 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
4080 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4081 pci_disable_msix(pf->pdev);
4082 kfree(pf->msix_entries);
4083 pf->msix_entries = NULL;
Shannon Nelson3b444392015-02-26 16:15:57 +00004084 kfree(pf->irq_pile);
4085 pf->irq_pile = NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004086 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
4087 pci_disable_msi(pf->pdev);
4088 }
4089 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
4090}
4091
4092/**
4093 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
4094 * @pf: board private structure
4095 *
4096 * We go through and clear interrupt specific resources and reset the structure
4097 * to pre-load conditions
4098 **/
4099static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
4100{
4101 int i;
4102
Shannon Nelsone1477582015-02-21 06:44:33 +00004103 i40e_stop_misc_vector(pf);
Shannon Nelson69278392016-03-10 14:59:43 -08004104 if (pf->flags & I40E_FLAG_MSIX_ENABLED && pf->msix_entries) {
Shannon Nelsone1477582015-02-21 06:44:33 +00004105 synchronize_irq(pf->msix_entries[0].vector);
4106 free_irq(pf->msix_entries[0].vector, pf);
4107 }
4108
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004109 i40e_put_lump(pf->irq_pile, pf->iwarp_base_vector,
4110 I40E_IWARP_IRQ_PILE_ID);
4111
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004112 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00004113 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004114 if (pf->vsi[i])
4115 i40e_vsi_free_q_vectors(pf->vsi[i]);
4116 i40e_reset_interrupt_capability(pf);
4117}
4118
4119/**
4120 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
4121 * @vsi: the VSI being configured
4122 **/
4123static void i40e_napi_enable_all(struct i40e_vsi *vsi)
4124{
4125 int q_idx;
4126
4127 if (!vsi->netdev)
4128 return;
4129
4130 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004131 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004132}
4133
4134/**
4135 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
4136 * @vsi: the VSI being configured
4137 **/
4138static void i40e_napi_disable_all(struct i40e_vsi *vsi)
4139{
4140 int q_idx;
4141
4142 if (!vsi->netdev)
4143 return;
4144
4145 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004146 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004147}
4148
4149/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004150 * i40e_vsi_close - Shut down a VSI
4151 * @vsi: the vsi to be quelled
4152 **/
4153static void i40e_vsi_close(struct i40e_vsi *vsi)
4154{
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004155 bool reset = false;
4156
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004157 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
4158 i40e_down(vsi);
4159 i40e_vsi_free_irq(vsi);
4160 i40e_vsi_free_tx_resources(vsi);
4161 i40e_vsi_free_rx_resources(vsi);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04004162 vsi->current_netdev_flags = 0;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004163 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4164 reset = true;
4165 i40e_notify_client_of_netdev_close(vsi, reset);
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004166}
4167
4168/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004169 * i40e_quiesce_vsi - Pause a given VSI
4170 * @vsi: the VSI being paused
4171 **/
4172static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
4173{
4174 if (test_bit(__I40E_DOWN, &vsi->state))
4175 return;
4176
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004177 /* No need to disable FCoE VSI when Tx suspended */
4178 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
4179 vsi->type == I40E_VSI_FCOE) {
4180 dev_dbg(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004181 "VSI seid %d skipping FCoE VSI disable\n", vsi->seid);
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004182 return;
4183 }
4184
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004185 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004186 if (vsi->netdev && netif_running(vsi->netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004187 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004188 else
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004189 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004190}
4191
4192/**
4193 * i40e_unquiesce_vsi - Resume a given VSI
4194 * @vsi: the VSI being resumed
4195 **/
4196static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
4197{
4198 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
4199 return;
4200
4201 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
4202 if (vsi->netdev && netif_running(vsi->netdev))
4203 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
4204 else
Shannon Nelson8276f752014-03-14 07:32:27 +00004205 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004206}
4207
4208/**
4209 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
4210 * @pf: the PF
4211 **/
4212static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
4213{
4214 int v;
4215
Mitch Williams505682c2014-05-20 08:01:37 +00004216 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004217 if (pf->vsi[v])
4218 i40e_quiesce_vsi(pf->vsi[v]);
4219 }
4220}
4221
4222/**
4223 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
4224 * @pf: the PF
4225 **/
4226static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
4227{
4228 int v;
4229
Mitch Williams505682c2014-05-20 08:01:37 +00004230 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004231 if (pf->vsi[v])
4232 i40e_unquiesce_vsi(pf->vsi[v]);
4233 }
4234}
4235
Neerav Parikh69129dc2014-11-12 00:18:46 +00004236#ifdef CONFIG_I40E_DCB
4237/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004238 * i40e_vsi_wait_queues_disabled - Wait for VSI's queues to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004239 * @vsi: the VSI being configured
4240 *
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004241 * This function waits for the given VSI's queues to be disabled.
Neerav Parikh69129dc2014-11-12 00:18:46 +00004242 **/
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004243static int i40e_vsi_wait_queues_disabled(struct i40e_vsi *vsi)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004244{
4245 struct i40e_pf *pf = vsi->back;
4246 int i, pf_q, ret;
4247
4248 pf_q = vsi->base_queue;
4249 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4250 /* Check and wait for the disable status of the queue */
4251 ret = i40e_pf_txq_wait(pf, pf_q, false);
4252 if (ret) {
4253 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004254 "VSI seid %d Tx ring %d disable timeout\n",
4255 vsi->seid, pf_q);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004256 return ret;
4257 }
4258 }
4259
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004260 pf_q = vsi->base_queue;
4261 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4262 /* Check and wait for the disable status of the queue */
4263 ret = i40e_pf_rxq_wait(pf, pf_q, false);
4264 if (ret) {
4265 dev_info(&pf->pdev->dev,
4266 "VSI seid %d Rx ring %d disable timeout\n",
4267 vsi->seid, pf_q);
4268 return ret;
4269 }
4270 }
4271
Neerav Parikh69129dc2014-11-12 00:18:46 +00004272 return 0;
4273}
4274
4275/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004276 * i40e_pf_wait_queues_disabled - Wait for all queues of PF VSIs to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004277 * @pf: the PF
4278 *
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004279 * This function waits for the queues to be in disabled state for all the
Neerav Parikh69129dc2014-11-12 00:18:46 +00004280 * VSIs that are managed by this PF.
4281 **/
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004282static int i40e_pf_wait_queues_disabled(struct i40e_pf *pf)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004283{
4284 int v, ret = 0;
4285
4286 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004287 /* No need to wait for FCoE VSI queues */
4288 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004289 ret = i40e_vsi_wait_queues_disabled(pf->vsi[v]);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004290 if (ret)
4291 break;
4292 }
4293 }
4294
4295 return ret;
4296}
4297
4298#endif
Kiran Patilb03a8c12015-09-24 18:13:15 -04004299
4300/**
4301 * i40e_detect_recover_hung_queue - Function to detect and recover hung_queue
4302 * @q_idx: TX queue number
4303 * @vsi: Pointer to VSI struct
4304 *
4305 * This function checks specified queue for given VSI. Detects hung condition.
4306 * Sets hung bit since it is two step process. Before next run of service task
4307 * if napi_poll runs, it reset 'hung' bit for respective q_vector. If not,
4308 * hung condition remain unchanged and during subsequent run, this function
4309 * issues SW interrupt to recover from hung condition.
4310 **/
4311static void i40e_detect_recover_hung_queue(int q_idx, struct i40e_vsi *vsi)
4312{
4313 struct i40e_ring *tx_ring = NULL;
4314 struct i40e_pf *pf;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004315 u32 head, val, tx_pending_hw;
Kiran Patilb03a8c12015-09-24 18:13:15 -04004316 int i;
4317
4318 pf = vsi->back;
4319
4320 /* now that we have an index, find the tx_ring struct */
4321 for (i = 0; i < vsi->num_queue_pairs; i++) {
4322 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
4323 if (q_idx == vsi->tx_rings[i]->queue_index) {
4324 tx_ring = vsi->tx_rings[i];
4325 break;
4326 }
4327 }
4328 }
4329
4330 if (!tx_ring)
4331 return;
4332
4333 /* Read interrupt register */
4334 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4335 val = rd32(&pf->hw,
4336 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
4337 tx_ring->vsi->base_vector - 1));
4338 else
4339 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
4340
4341 head = i40e_get_head(tx_ring);
4342
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004343 tx_pending_hw = i40e_get_tx_pending(tx_ring, false);
Kiran Patilb03a8c12015-09-24 18:13:15 -04004344
Kiran Patil9c6c1252015-11-06 15:26:02 -08004345 /* HW is done executing descriptors, updated HEAD write back,
4346 * but SW hasn't processed those descriptors. If interrupt is
4347 * not generated from this point ON, it could result into
4348 * dev_watchdog detecting timeout on those netdev_queue,
4349 * hence proactively trigger SW interrupt.
Kiran Patilb03a8c12015-09-24 18:13:15 -04004350 */
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004351 if (tx_pending_hw && (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK))) {
Kiran Patil9c6c1252015-11-06 15:26:02 -08004352 /* NAPI Poll didn't run and clear since it was set */
4353 if (test_and_clear_bit(I40E_Q_VECTOR_HUNG_DETECT,
4354 &tx_ring->q_vector->hung_detected)) {
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004355 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",
4356 vsi->seid, q_idx, tx_pending_hw,
Kiran Patil9c6c1252015-11-06 15:26:02 -08004357 tx_ring->next_to_clean, head,
4358 tx_ring->next_to_use,
4359 readl(tx_ring->tail));
4360 netdev_info(vsi->netdev, "VSI_seid %d, Issuing force_wb for TX queue %d, Interrupt Reg: 0x%x\n",
4361 vsi->seid, q_idx, val);
4362 i40e_force_wb(vsi, tx_ring->q_vector);
4363 } else {
4364 /* First Chance - detected possible hung */
4365 set_bit(I40E_Q_VECTOR_HUNG_DETECT,
4366 &tx_ring->q_vector->hung_detected);
4367 }
4368 }
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004369
4370 /* This is the case where we have interrupts missing,
4371 * so the tx_pending in HW will most likely be 0, but we
4372 * will have tx_pending in SW since the WB happened but the
4373 * interrupt got lost.
4374 */
4375 if ((!tx_pending_hw) && i40e_get_tx_pending(tx_ring, true) &&
4376 (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK))) {
4377 if (napi_reschedule(&tx_ring->q_vector->napi))
4378 tx_ring->tx_stats.tx_lost_interrupt++;
4379 }
Kiran Patilb03a8c12015-09-24 18:13:15 -04004380}
4381
4382/**
4383 * i40e_detect_recover_hung - Function to detect and recover hung_queues
4384 * @pf: pointer to PF struct
4385 *
4386 * LAN VSI has netdev and netdev has TX queues. This function is to check
4387 * each of those TX queues if they are hung, trigger recovery by issuing
4388 * SW interrupt.
4389 **/
4390static void i40e_detect_recover_hung(struct i40e_pf *pf)
4391{
4392 struct net_device *netdev;
4393 struct i40e_vsi *vsi;
4394 int i;
4395
4396 /* Only for LAN VSI */
4397 vsi = pf->vsi[pf->lan_vsi];
4398
4399 if (!vsi)
4400 return;
4401
4402 /* Make sure, VSI state is not DOWN/RECOVERY_PENDING */
4403 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
4404 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4405 return;
4406
4407 /* Make sure type is MAIN VSI */
4408 if (vsi->type != I40E_VSI_MAIN)
4409 return;
4410
4411 netdev = vsi->netdev;
4412 if (!netdev)
4413 return;
4414
4415 /* Bail out if netif_carrier is not OK */
4416 if (!netif_carrier_ok(netdev))
4417 return;
4418
4419 /* Go thru' TX queues for netdev */
4420 for (i = 0; i < netdev->num_tx_queues; i++) {
4421 struct netdev_queue *q;
4422
4423 q = netdev_get_tx_queue(netdev, i);
4424 if (q)
4425 i40e_detect_recover_hung_queue(i, vsi);
4426 }
4427}
4428
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004429/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004430 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00004431 * @pf: pointer to PF
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004432 *
4433 * Get TC map for ISCSI PF type that will include iSCSI TC
4434 * and LAN TC.
4435 **/
4436static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4437{
4438 struct i40e_dcb_app_priority_table app;
4439 struct i40e_hw *hw = &pf->hw;
4440 u8 enabled_tc = 1; /* TC0 is always enabled */
4441 u8 tc, i;
4442 /* Get the iSCSI APP TLV */
4443 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4444
4445 for (i = 0; i < dcbcfg->numapps; i++) {
4446 app = dcbcfg->app[i];
4447 if (app.selector == I40E_APP_SEL_TCPIP &&
4448 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4449 tc = dcbcfg->etscfg.prioritytable[app.priority];
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004450 enabled_tc |= BIT(tc);
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004451 break;
4452 }
4453 }
4454
4455 return enabled_tc;
4456}
4457
4458/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004459 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4460 * @dcbcfg: the corresponding DCBx configuration structure
4461 *
4462 * Return the number of TCs from given DCBx configuration
4463 **/
4464static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4465{
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004466 int i, tc_unused = 0;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004467 u8 num_tc = 0;
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004468 u8 ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004469
4470 /* Scan the ETS Config Priority Table to find
4471 * traffic class enabled for a given priority
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004472 * and create a bitmask of enabled TCs
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004473 */
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004474 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++)
4475 num_tc |= BIT(dcbcfg->etscfg.prioritytable[i]);
4476
4477 /* Now scan the bitmask to check for
4478 * contiguous TCs starting with TC0
4479 */
4480 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4481 if (num_tc & BIT(i)) {
4482 if (!tc_unused) {
4483 ret++;
4484 } else {
4485 pr_err("Non-contiguous TC - Disabling DCB\n");
4486 return 1;
4487 }
4488 } else {
4489 tc_unused = 1;
4490 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004491 }
4492
Dave Ertmanfbfe12c2016-08-12 09:56:32 -07004493 /* There is always at least TC0 */
4494 if (!ret)
4495 ret = 1;
4496
4497 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004498}
4499
4500/**
4501 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4502 * @dcbcfg: the corresponding DCBx configuration structure
4503 *
4504 * Query the current DCB configuration and return the number of
4505 * traffic classes enabled from the given DCBX config
4506 **/
4507static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4508{
4509 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4510 u8 enabled_tc = 1;
4511 u8 i;
4512
4513 for (i = 0; i < num_tc; i++)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004514 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004515
4516 return enabled_tc;
4517}
4518
4519/**
4520 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4521 * @pf: PF being queried
4522 *
4523 * Return number of traffic classes enabled for the given PF
4524 **/
4525static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4526{
4527 struct i40e_hw *hw = &pf->hw;
Dave Ertman52a08ca2016-07-27 12:02:34 -07004528 u8 i, enabled_tc = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004529 u8 num_tc = 0;
4530 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4531
4532 /* If DCB is not enabled then always in single TC */
4533 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4534 return 1;
4535
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004536 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004537 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4538 return i40e_dcb_get_num_tc(dcbcfg);
4539
4540 /* MFP mode return count of enabled TCs for this PF */
4541 if (pf->hw.func_caps.iscsi)
4542 enabled_tc = i40e_get_iscsi_tc_map(pf);
4543 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004544 return 1; /* Only TC0 */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004545
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004546 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004547 if (enabled_tc & BIT(i))
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004548 num_tc++;
4549 }
4550 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004551}
4552
4553/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004554 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4555 * @pf: PF being queried
4556 *
4557 * Return a bitmap for enabled traffic classes for this PF.
4558 **/
4559static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4560{
4561 /* If DCB is not enabled for this PF then just return default TC */
4562 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
David Ertmanea6acb72016-09-20 07:10:50 -07004563 return I40E_DEFAULT_TRAFFIC_CLASS;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004564
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004565 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004566 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4567 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4568
Neerav Parikhfc51de92015-02-24 06:58:53 +00004569 /* MFP enabled and iSCSI PF type */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004570 if (pf->hw.func_caps.iscsi)
4571 return i40e_get_iscsi_tc_map(pf);
4572 else
David Ertmanea6acb72016-09-20 07:10:50 -07004573 return I40E_DEFAULT_TRAFFIC_CLASS;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004574}
4575
4576/**
4577 * i40e_vsi_get_bw_info - Query VSI BW Information
4578 * @vsi: the VSI being queried
4579 *
4580 * Returns 0 on success, negative value on failure
4581 **/
4582static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4583{
4584 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4585 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4586 struct i40e_pf *pf = vsi->back;
4587 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004588 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004589 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004590 int i;
4591
4592 /* Get the VSI level BW configuration */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004593 ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4594 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004595 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004596 "couldn't get PF vsi bw config, err %s aq_err %s\n",
4597 i40e_stat_str(&pf->hw, ret),
4598 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004599 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004600 }
4601
4602 /* Get the VSI level BW configuration per TC */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004603 ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
4604 NULL);
4605 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004606 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004607 "couldn't get PF vsi ets bw config, err %s aq_err %s\n",
4608 i40e_stat_str(&pf->hw, ret),
4609 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004610 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004611 }
4612
4613 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4614 dev_info(&pf->pdev->dev,
4615 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4616 bw_config.tc_valid_bits,
4617 bw_ets_config.tc_valid_bits);
4618 /* Still continuing */
4619 }
4620
4621 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4622 vsi->bw_max_quanta = bw_config.max_bw;
4623 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4624 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4625 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4626 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4627 vsi->bw_ets_limit_credits[i] =
4628 le16_to_cpu(bw_ets_config.credits[i]);
4629 /* 3 bits out of 4 for each TC */
4630 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4631 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004632
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004633 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004634}
4635
4636/**
4637 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4638 * @vsi: the VSI being configured
4639 * @enabled_tc: TC bitmap
4640 * @bw_credits: BW shared credits per TC
4641 *
4642 * Returns 0 on success, negative value on failure
4643 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004644static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004645 u8 *bw_share)
4646{
4647 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004648 i40e_status ret;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004649 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004650
4651 bw_data.tc_valid_bits = enabled_tc;
4652 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4653 bw_data.tc_bw_credits[i] = bw_share[i];
4654
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004655 ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4656 NULL);
4657 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004658 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004659 "AQ command Config VSI BW allocation per TC failed = %d\n",
4660 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004661 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004662 }
4663
4664 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4665 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4666
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004667 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004668}
4669
4670/**
4671 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4672 * @vsi: the VSI being configured
4673 * @enabled_tc: TC map to be enabled
4674 *
4675 **/
4676static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4677{
4678 struct net_device *netdev = vsi->netdev;
4679 struct i40e_pf *pf = vsi->back;
4680 struct i40e_hw *hw = &pf->hw;
4681 u8 netdev_tc = 0;
4682 int i;
4683 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4684
4685 if (!netdev)
4686 return;
4687
4688 if (!enabled_tc) {
4689 netdev_reset_tc(netdev);
4690 return;
4691 }
4692
4693 /* Set up actual enabled TCs on the VSI */
4694 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4695 return;
4696
4697 /* set per TC queues for the VSI */
4698 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4699 /* Only set TC queues for enabled tcs
4700 *
4701 * e.g. For a VSI that has TC0 and TC3 enabled the
4702 * enabled_tc bitmap would be 0x00001001; the driver
4703 * will set the numtc for netdev as 2 that will be
4704 * referenced by the netdev layer as TC 0 and 1.
4705 */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004706 if (vsi->tc_config.enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004707 netdev_set_tc_queue(netdev,
4708 vsi->tc_config.tc_info[i].netdev_tc,
4709 vsi->tc_config.tc_info[i].qcount,
4710 vsi->tc_config.tc_info[i].qoffset);
4711 }
4712
4713 /* Assign UP2TC map for the VSI */
4714 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4715 /* Get the actual TC# for the UP */
4716 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4717 /* Get the mapped netdev TC# for the UP */
4718 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4719 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4720 }
4721}
4722
4723/**
4724 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4725 * @vsi: the VSI being configured
4726 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4727 **/
4728static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4729 struct i40e_vsi_context *ctxt)
4730{
4731 /* copy just the sections touched not the entire info
4732 * since not all sections are valid as returned by
4733 * update vsi params
4734 */
4735 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4736 memcpy(&vsi->info.queue_mapping,
4737 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4738 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4739 sizeof(vsi->info.tc_mapping));
4740}
4741
4742/**
4743 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4744 * @vsi: VSI to be configured
4745 * @enabled_tc: TC bitmap
4746 *
4747 * This configures a particular VSI for TCs that are mapped to the
4748 * given TC bitmap. It uses default bandwidth share for TCs across
4749 * VSIs to configure TC for a particular VSI.
4750 *
4751 * NOTE:
4752 * It is expected that the VSI queues have been quisced before calling
4753 * this function.
4754 **/
4755static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4756{
4757 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4758 struct i40e_vsi_context ctxt;
4759 int ret = 0;
4760 int i;
4761
4762 /* Check if enabled_tc is same as existing or new TCs */
4763 if (vsi->tc_config.enabled_tc == enabled_tc)
4764 return ret;
4765
4766 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4767 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004768 if (enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004769 bw_share[i] = 1;
4770 }
4771
4772 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4773 if (ret) {
4774 dev_info(&vsi->back->pdev->dev,
4775 "Failed configuring TC map %d for VSI %d\n",
4776 enabled_tc, vsi->seid);
4777 goto out;
4778 }
4779
4780 /* Update Queue Pairs Mapping for currently enabled UPs */
4781 ctxt.seid = vsi->seid;
4782 ctxt.pf_num = vsi->back->hw.pf_id;
4783 ctxt.vf_num = 0;
4784 ctxt.uplink_seid = vsi->uplink_seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07004785 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004786 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4787
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004788 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
4789 ctxt.info.valid_sections |=
4790 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
4791 ctxt.info.queueing_opt_flags |= I40E_AQ_VSI_QUE_OPT_TCP_ENA;
4792 }
4793
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004794 /* Update the VSI after updating the VSI queue-mapping information */
4795 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4796 if (ret) {
4797 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004798 "Update vsi tc config failed, err %s aq_err %s\n",
4799 i40e_stat_str(&vsi->back->hw, ret),
4800 i40e_aq_str(&vsi->back->hw,
4801 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004802 goto out;
4803 }
4804 /* update the local VSI info with updated queue map */
4805 i40e_vsi_update_queue_map(vsi, &ctxt);
4806 vsi->info.valid_sections = 0;
4807
4808 /* Update current VSI BW information */
4809 ret = i40e_vsi_get_bw_info(vsi);
4810 if (ret) {
4811 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004812 "Failed updating vsi bw info, err %s aq_err %s\n",
4813 i40e_stat_str(&vsi->back->hw, ret),
4814 i40e_aq_str(&vsi->back->hw,
4815 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004816 goto out;
4817 }
4818
4819 /* Update the netdev TC setup */
4820 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4821out:
4822 return ret;
4823}
4824
4825/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004826 * i40e_veb_config_tc - Configure TCs for given VEB
4827 * @veb: given VEB
4828 * @enabled_tc: TC bitmap
4829 *
4830 * Configures given TC bitmap for VEB (switching) element
4831 **/
4832int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4833{
4834 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4835 struct i40e_pf *pf = veb->pf;
4836 int ret = 0;
4837 int i;
4838
4839 /* No TCs or already enabled TCs just return */
4840 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4841 return ret;
4842
4843 bw_data.tc_valid_bits = enabled_tc;
4844 /* bw_data.absolute_credits is not set (relative) */
4845
4846 /* Enable ETS TCs with equal BW Share for now */
4847 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004848 if (enabled_tc & BIT(i))
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004849 bw_data.tc_bw_share_credits[i] = 1;
4850 }
4851
4852 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4853 &bw_data, NULL);
4854 if (ret) {
4855 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004856 "VEB bw config failed, err %s aq_err %s\n",
4857 i40e_stat_str(&pf->hw, ret),
4858 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004859 goto out;
4860 }
4861
4862 /* Update the BW information */
4863 ret = i40e_veb_get_bw_info(veb);
4864 if (ret) {
4865 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004866 "Failed getting veb bw config, err %s aq_err %s\n",
4867 i40e_stat_str(&pf->hw, ret),
4868 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004869 }
4870
4871out:
4872 return ret;
4873}
4874
4875#ifdef CONFIG_I40E_DCB
4876/**
4877 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4878 * @pf: PF struct
4879 *
4880 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4881 * the caller would've quiesce all the VSIs before calling
4882 * this function
4883 **/
4884static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4885{
4886 u8 tc_map = 0;
4887 int ret;
4888 u8 v;
4889
4890 /* Enable the TCs available on PF to all VEBs */
4891 tc_map = i40e_pf_get_tc_map(pf);
4892 for (v = 0; v < I40E_MAX_VEB; v++) {
4893 if (!pf->veb[v])
4894 continue;
4895 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4896 if (ret) {
4897 dev_info(&pf->pdev->dev,
4898 "Failed configuring TC for VEB seid=%d\n",
4899 pf->veb[v]->seid);
4900 /* Will try to configure as many components */
4901 }
4902 }
4903
4904 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004905 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004906 if (!pf->vsi[v])
4907 continue;
4908
4909 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004910#ifdef I40E_FCOE
4911 * - For FCoE VSI only enable the TC configured
4912 * as per the APP TLV
4913#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004914 * - For all others keep them at TC0 for now
4915 */
4916 if (v == pf->lan_vsi)
4917 tc_map = i40e_pf_get_tc_map(pf);
4918 else
David Ertmanea6acb72016-09-20 07:10:50 -07004919 tc_map = I40E_DEFAULT_TRAFFIC_CLASS;
Vasu Dev38e00432014-08-01 13:27:03 -07004920#ifdef I40E_FCOE
4921 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4922 tc_map = i40e_get_fcoe_tc_map(pf);
4923#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004924
4925 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4926 if (ret) {
4927 dev_info(&pf->pdev->dev,
4928 "Failed configuring TC for VSI seid=%d\n",
4929 pf->vsi[v]->seid);
4930 /* Will try to configure as many components */
4931 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004932 /* Re-configure VSI vectors based on updated TC map */
4933 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004934 if (pf->vsi[v]->netdev)
4935 i40e_dcbnl_set_all(pf->vsi[v]);
4936 }
4937 }
4938}
4939
4940/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004941 * i40e_resume_port_tx - Resume port Tx
4942 * @pf: PF struct
4943 *
4944 * Resume a port's Tx and issue a PF reset in case of failure to
4945 * resume.
4946 **/
4947static int i40e_resume_port_tx(struct i40e_pf *pf)
4948{
4949 struct i40e_hw *hw = &pf->hw;
4950 int ret;
4951
4952 ret = i40e_aq_resume_port_tx(hw, NULL);
4953 if (ret) {
4954 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004955 "Resume Port Tx failed, err %s aq_err %s\n",
4956 i40e_stat_str(&pf->hw, ret),
4957 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004958 /* Schedule PF reset to recover */
4959 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4960 i40e_service_event_schedule(pf);
4961 }
4962
4963 return ret;
4964}
4965
4966/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004967 * i40e_init_pf_dcb - Initialize DCB configuration
4968 * @pf: PF being configured
4969 *
4970 * Query the current DCB configuration and cache it
4971 * in the hardware structure
4972 **/
4973static int i40e_init_pf_dcb(struct i40e_pf *pf)
4974{
4975 struct i40e_hw *hw = &pf->hw;
4976 int err = 0;
4977
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00004978 /* Do not enable DCB for SW1 and SW2 images even if the FW is capable */
Neerav Parikhf1bbad32016-01-13 16:51:39 -08004979 if (pf->flags & I40E_FLAG_NO_DCB_SUPPORT)
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00004980 goto out;
4981
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004982 /* Get the initial DCB configuration */
4983 err = i40e_init_dcb(hw);
4984 if (!err) {
4985 /* Device/Function is not DCBX capable */
4986 if ((!hw->func_caps.dcb) ||
4987 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4988 dev_info(&pf->pdev->dev,
4989 "DCBX offload is not supported or is disabled for this PF.\n");
4990
4991 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4992 goto out;
4993
4994 } else {
4995 /* When status is not DISABLED then DCBX in FW */
4996 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
4997 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00004998
4999 pf->flags |= I40E_FLAG_DCB_CAPABLE;
Dave Ertmana0362442016-08-29 17:38:26 -07005000 /* Enable DCB tagging only when more than one TC
5001 * or explicitly disable if only one TC
5002 */
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005003 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
5004 pf->flags |= I40E_FLAG_DCB_ENABLED;
Dave Ertmana0362442016-08-29 17:38:26 -07005005 else
5006 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005007 dev_dbg(&pf->pdev->dev,
5008 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005009 }
Neerav Parikh014269f2014-04-01 07:11:48 +00005010 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00005011 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005012 "Query for DCB configuration failed, err %s aq_err %s\n",
5013 i40e_stat_str(&pf->hw, err),
5014 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005015 }
5016
5017out:
5018 return err;
5019}
5020#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005021#define SPEED_SIZE 14
5022#define FC_SIZE 8
5023/**
5024 * i40e_print_link_message - print link up or down
5025 * @vsi: the VSI for which link needs a message
5026 */
Matt Jaredc156f852015-08-27 11:42:39 -04005027void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005028{
Shannon Nelsona9165492015-09-03 17:19:00 -04005029 char *speed = "Unknown";
5030 char *fc = "Unknown";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005031
Matt Jaredc156f852015-08-27 11:42:39 -04005032 if (vsi->current_isup == isup)
5033 return;
5034 vsi->current_isup = isup;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005035 if (!isup) {
5036 netdev_info(vsi->netdev, "NIC Link is Down\n");
5037 return;
5038 }
5039
Greg Rose148c2d82014-12-11 07:06:27 +00005040 /* Warn user if link speed on NPAR enabled partition is not at
5041 * least 10GB
5042 */
5043 if (vsi->back->hw.func_caps.npar_enable &&
5044 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
5045 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
5046 netdev_warn(vsi->netdev,
5047 "The partition detected link speed that is less than 10Gbps\n");
5048
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005049 switch (vsi->back->hw.phy.link_info.link_speed) {
5050 case I40E_LINK_SPEED_40GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005051 speed = "40 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005052 break;
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005053 case I40E_LINK_SPEED_20GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005054 speed = "20 G";
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005055 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005056 case I40E_LINK_SPEED_10GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005057 speed = "10 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005058 break;
5059 case I40E_LINK_SPEED_1GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005060 speed = "1000 M";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005061 break;
Mitch Williams5960d332014-09-13 07:40:47 +00005062 case I40E_LINK_SPEED_100MB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005063 speed = "100 M";
Mitch Williams5960d332014-09-13 07:40:47 +00005064 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005065 default:
5066 break;
5067 }
5068
5069 switch (vsi->back->hw.fc.current_mode) {
5070 case I40E_FC_FULL:
Shannon Nelsona9165492015-09-03 17:19:00 -04005071 fc = "RX/TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005072 break;
5073 case I40E_FC_TX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005074 fc = "TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005075 break;
5076 case I40E_FC_RX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005077 fc = "RX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005078 break;
5079 default:
Shannon Nelsona9165492015-09-03 17:19:00 -04005080 fc = "None";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005081 break;
5082 }
5083
Shannon Nelsona9165492015-09-03 17:19:00 -04005084 netdev_info(vsi->netdev, "NIC Link is Up %sbps Full Duplex, Flow Control: %s\n",
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005085 speed, fc);
5086}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005087
5088/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005089 * i40e_up_complete - Finish the last steps of bringing up a connection
5090 * @vsi: the VSI being configured
5091 **/
5092static int i40e_up_complete(struct i40e_vsi *vsi)
5093{
5094 struct i40e_pf *pf = vsi->back;
5095 int err;
5096
5097 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5098 i40e_vsi_configure_msix(vsi);
5099 else
5100 i40e_configure_msi_and_legacy(vsi);
5101
5102 /* start rings */
5103 err = i40e_vsi_control_rings(vsi, true);
5104 if (err)
5105 return err;
5106
5107 clear_bit(__I40E_DOWN, &vsi->state);
5108 i40e_napi_enable_all(vsi);
5109 i40e_vsi_enable_irq(vsi);
5110
5111 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
5112 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005113 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005114 netif_tx_start_all_queues(vsi->netdev);
5115 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00005116 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005117 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005118 /* need to check for qualified module here*/
5119 if ((pf->hw.phy.link_info.link_info &
5120 I40E_AQ_MEDIA_AVAILABLE) &&
5121 (!(pf->hw.phy.link_info.an_info &
5122 I40E_AQ_QUALIFIED_MODULE)))
5123 netdev_err(vsi->netdev,
5124 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005125 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005126
5127 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005128 if (vsi->type == I40E_VSI_FDIR) {
5129 /* reset fd counters */
5130 pf->fd_add_err = pf->fd_atr_cnt = 0;
5131 if (pf->fd_tcp_rule > 0) {
Jacob Keller234dc4e2016-09-06 18:05:09 -07005132 pf->auto_disable_flags |= I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005133 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5134 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005135 pf->fd_tcp_rule = 0;
5136 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005137 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005138 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005139
5140 /* On the next run of the service_task, notify any clients of the new
5141 * opened netdev
5142 */
5143 pf->flags |= I40E_FLAG_SERVICE_CLIENT_REQUESTED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005144 i40e_service_event_schedule(pf);
5145
5146 return 0;
5147}
5148
5149/**
5150 * i40e_vsi_reinit_locked - Reset the VSI
5151 * @vsi: the VSI being configured
5152 *
5153 * Rebuild the ring structs after some configuration
5154 * has changed, e.g. MTU size.
5155 **/
5156static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
5157{
5158 struct i40e_pf *pf = vsi->back;
5159
5160 WARN_ON(in_interrupt());
5161 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
5162 usleep_range(1000, 2000);
5163 i40e_down(vsi);
5164
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005165 i40e_up(vsi);
5166 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
5167}
5168
5169/**
5170 * i40e_up - Bring the connection back up after being down
5171 * @vsi: the VSI being configured
5172 **/
5173int i40e_up(struct i40e_vsi *vsi)
5174{
5175 int err;
5176
5177 err = i40e_vsi_configure(vsi);
5178 if (!err)
5179 err = i40e_up_complete(vsi);
5180
5181 return err;
5182}
5183
5184/**
5185 * i40e_down - Shutdown the connection processing
5186 * @vsi: the VSI being stopped
5187 **/
5188void i40e_down(struct i40e_vsi *vsi)
5189{
5190 int i;
5191
5192 /* It is assumed that the caller of this function
5193 * sets the vsi->state __I40E_DOWN bit.
5194 */
5195 if (vsi->netdev) {
5196 netif_carrier_off(vsi->netdev);
5197 netif_tx_disable(vsi->netdev);
5198 }
5199 i40e_vsi_disable_irq(vsi);
5200 i40e_vsi_control_rings(vsi, false);
5201 i40e_napi_disable_all(vsi);
5202
5203 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00005204 i40e_clean_tx_ring(vsi->tx_rings[i]);
5205 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005206 }
Catherine Sullivanf980d442016-05-16 10:26:34 -07005207
5208 i40e_notify_client_of_netdev_close(vsi, false);
5209
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005210}
5211
5212/**
5213 * i40e_setup_tc - configure multiple traffic classes
5214 * @netdev: net device to configure
5215 * @tc: number of traffic classes to enable
5216 **/
5217static int i40e_setup_tc(struct net_device *netdev, u8 tc)
5218{
5219 struct i40e_netdev_priv *np = netdev_priv(netdev);
5220 struct i40e_vsi *vsi = np->vsi;
5221 struct i40e_pf *pf = vsi->back;
5222 u8 enabled_tc = 0;
5223 int ret = -EINVAL;
5224 int i;
5225
5226 /* Check if DCB enabled to continue */
5227 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
5228 netdev_info(netdev, "DCB is not enabled for adapter\n");
5229 goto exit;
5230 }
5231
5232 /* Check if MFP enabled */
5233 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
5234 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
5235 goto exit;
5236 }
5237
5238 /* Check whether tc count is within enabled limit */
5239 if (tc > i40e_pf_get_num_tc(pf)) {
5240 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
5241 goto exit;
5242 }
5243
5244 /* Generate TC map for number of tc requested */
5245 for (i = 0; i < tc; i++)
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005246 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005247
5248 /* Requesting same TC configuration as already enabled */
5249 if (enabled_tc == vsi->tc_config.enabled_tc)
5250 return 0;
5251
5252 /* Quiesce VSI queues */
5253 i40e_quiesce_vsi(vsi);
5254
5255 /* Configure VSI for enabled TCs */
5256 ret = i40e_vsi_config_tc(vsi, enabled_tc);
5257 if (ret) {
5258 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
5259 vsi->seid);
5260 goto exit;
5261 }
5262
5263 /* Unquiesce VSI */
5264 i40e_unquiesce_vsi(vsi);
5265
5266exit:
5267 return ret;
5268}
5269
John Fastabende4c67342016-02-16 21:16:15 -08005270#ifdef I40E_FCOE
John Fastabend16e5cc62016-02-16 21:16:43 -08005271int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto,
5272 struct tc_to_netdev *tc)
John Fastabende4c67342016-02-16 21:16:15 -08005273#else
John Fastabend16e5cc62016-02-16 21:16:43 -08005274static int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto,
5275 struct tc_to_netdev *tc)
John Fastabende4c67342016-02-16 21:16:15 -08005276#endif
5277{
John Fastabend16e5cc62016-02-16 21:16:43 -08005278 if (handle != TC_H_ROOT || tc->type != TC_SETUP_MQPRIO)
John Fastabende4c67342016-02-16 21:16:15 -08005279 return -EINVAL;
John Fastabend16e5cc62016-02-16 21:16:43 -08005280 return i40e_setup_tc(netdev, tc->tc);
John Fastabende4c67342016-02-16 21:16:15 -08005281}
5282
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005283/**
5284 * i40e_open - Called when a network interface is made active
5285 * @netdev: network interface device structure
5286 *
5287 * The open entry point is called when a network interface is made
5288 * active by the system (IFF_UP). At this point all resources needed
5289 * for transmit and receive operations are allocated, the interrupt
5290 * handler is registered with the OS, the netdev watchdog subtask is
5291 * enabled, and the stack is notified that the interface is ready.
5292 *
5293 * Returns 0 on success, negative value on failure
5294 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005295int i40e_open(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005296{
5297 struct i40e_netdev_priv *np = netdev_priv(netdev);
5298 struct i40e_vsi *vsi = np->vsi;
5299 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005300 int err;
5301
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005302 /* disallow open during test or if eeprom is broken */
5303 if (test_bit(__I40E_TESTING, &pf->state) ||
5304 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005305 return -EBUSY;
5306
5307 netif_carrier_off(netdev);
5308
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005309 err = i40e_vsi_open(vsi);
5310 if (err)
5311 return err;
5312
Jesse Brandeburg059dab62014-04-01 09:07:20 +00005313 /* configure global TSO hardware offload settings */
5314 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
5315 TCP_FLAG_FIN) >> 16);
5316 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
5317 TCP_FLAG_FIN |
5318 TCP_FLAG_CWR) >> 16);
5319 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
5320
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07005321 udp_tunnel_get_rx_info(netdev);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005322
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005323 return 0;
5324}
5325
5326/**
5327 * i40e_vsi_open -
5328 * @vsi: the VSI to open
5329 *
5330 * Finish initialization of the VSI.
5331 *
5332 * Returns 0 on success, negative value on failure
5333 **/
5334int i40e_vsi_open(struct i40e_vsi *vsi)
5335{
5336 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00005337 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005338 int err;
5339
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005340 /* allocate descriptors */
5341 err = i40e_vsi_setup_tx_resources(vsi);
5342 if (err)
5343 goto err_setup_tx;
5344 err = i40e_vsi_setup_rx_resources(vsi);
5345 if (err)
5346 goto err_setup_rx;
5347
5348 err = i40e_vsi_configure(vsi);
5349 if (err)
5350 goto err_setup_rx;
5351
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005352 if (vsi->netdev) {
5353 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
5354 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
5355 err = i40e_vsi_request_irq(vsi, int_name);
5356 if (err)
5357 goto err_setup_rx;
5358
5359 /* Notify the stack of the actual queue counts. */
5360 err = netif_set_real_num_tx_queues(vsi->netdev,
5361 vsi->num_queue_pairs);
5362 if (err)
5363 goto err_set_queues;
5364
5365 err = netif_set_real_num_rx_queues(vsi->netdev,
5366 vsi->num_queue_pairs);
5367 if (err)
5368 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005369
5370 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00005371 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005372 dev_driver_string(&pf->pdev->dev),
5373 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005374 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005375
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005376 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00005377 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005378 goto err_setup_rx;
5379 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005380
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005381 err = i40e_up_complete(vsi);
5382 if (err)
5383 goto err_up_complete;
5384
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005385 return 0;
5386
5387err_up_complete:
5388 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005389err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005390 i40e_vsi_free_irq(vsi);
5391err_setup_rx:
5392 i40e_vsi_free_rx_resources(vsi);
5393err_setup_tx:
5394 i40e_vsi_free_tx_resources(vsi);
5395 if (vsi == pf->vsi[pf->lan_vsi])
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005396 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005397
5398 return err;
5399}
5400
5401/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005402 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00005403 * @pf: Pointer to PF
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005404 *
5405 * This function destroys the hlist where all the Flow Director
5406 * filters were saved.
5407 **/
5408static void i40e_fdir_filter_exit(struct i40e_pf *pf)
5409{
5410 struct i40e_fdir_filter *filter;
5411 struct hlist_node *node2;
5412
5413 hlist_for_each_entry_safe(filter, node2,
5414 &pf->fdir_filter_list, fdir_node) {
5415 hlist_del(&filter->fdir_node);
5416 kfree(filter);
5417 }
5418 pf->fdir_pf_active_filters = 0;
5419}
5420
5421/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005422 * i40e_close - Disables a network interface
5423 * @netdev: network interface device structure
5424 *
5425 * The close entry point is called when an interface is de-activated
5426 * by the OS. The hardware is still under the driver's control, but
5427 * this netdev interface is disabled.
5428 *
5429 * Returns 0, this is not allowed to fail
5430 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005431int i40e_close(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005432{
5433 struct i40e_netdev_priv *np = netdev_priv(netdev);
5434 struct i40e_vsi *vsi = np->vsi;
5435
Shannon Nelson90ef8d42014-03-14 07:32:26 +00005436 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005437
5438 return 0;
5439}
5440
5441/**
5442 * i40e_do_reset - Start a PF or Core Reset sequence
5443 * @pf: board private structure
5444 * @reset_flags: which reset is requested
5445 *
5446 * The essential difference in resets is that the PF Reset
5447 * doesn't clear the packet buffers, doesn't reset the PE
5448 * firmware, and doesn't bother the other PFs on the chip.
5449 **/
5450void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5451{
5452 u32 val;
5453
5454 WARN_ON(in_interrupt());
5455
Mitch Williams263fc482014-04-23 04:50:11 +00005456
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005457 /* do the biggest reset indicated */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005458 if (reset_flags & BIT_ULL(__I40E_GLOBAL_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005459
5460 /* Request a Global Reset
5461 *
5462 * This will start the chip's countdown to the actual full
5463 * chip reset event, and a warning interrupt to be sent
5464 * to all PFs, including the requestor. Our handler
5465 * for the warning interrupt will deal with the shutdown
5466 * and recovery of the switch setup.
5467 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005468 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005469 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5470 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5471 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5472
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005473 } else if (reset_flags & BIT_ULL(__I40E_CORE_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005474
5475 /* Request a Core Reset
5476 *
5477 * Same as Global Reset, except does *not* include the MAC/PHY
5478 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005479 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005480 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5481 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5482 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5483 i40e_flush(&pf->hw);
5484
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005485 } else if (reset_flags & BIT_ULL(__I40E_PF_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005486
5487 /* Request a PF Reset
5488 *
5489 * Resets only the PF-specific registers
5490 *
5491 * This goes directly to the tear-down and rebuild of
5492 * the switch, since we need to do all the recovery as
5493 * for the Core Reset.
5494 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005495 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005496 i40e_handle_reset_warning(pf);
5497
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005498 } else if (reset_flags & BIT_ULL(__I40E_REINIT_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005499 int v;
5500
5501 /* Find the VSI(s) that requested a re-init */
5502 dev_info(&pf->pdev->dev,
5503 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005504 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005505 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005506
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005507 if (vsi != NULL &&
5508 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5509 i40e_vsi_reinit_locked(pf->vsi[v]);
5510 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5511 }
5512 }
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005513 } else if (reset_flags & BIT_ULL(__I40E_DOWN_REQUESTED)) {
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005514 int v;
5515
5516 /* Find the VSI(s) that needs to be brought down */
5517 dev_info(&pf->pdev->dev, "VSI down requested\n");
5518 for (v = 0; v < pf->num_alloc_vsi; v++) {
5519 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005520
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005521 if (vsi != NULL &&
5522 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5523 set_bit(__I40E_DOWN, &vsi->state);
5524 i40e_down(vsi);
5525 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5526 }
5527 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005528 } else {
5529 dev_info(&pf->pdev->dev,
5530 "bad reset request 0x%08x\n", reset_flags);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005531 }
5532}
5533
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005534#ifdef CONFIG_I40E_DCB
5535/**
5536 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5537 * @pf: board private structure
5538 * @old_cfg: current DCB config
5539 * @new_cfg: new DCB config
5540 **/
5541bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5542 struct i40e_dcbx_config *old_cfg,
5543 struct i40e_dcbx_config *new_cfg)
5544{
5545 bool need_reconfig = false;
5546
5547 /* Check if ETS configuration has changed */
5548 if (memcmp(&new_cfg->etscfg,
5549 &old_cfg->etscfg,
5550 sizeof(new_cfg->etscfg))) {
5551 /* If Priority Table has changed reconfig is needed */
5552 if (memcmp(&new_cfg->etscfg.prioritytable,
5553 &old_cfg->etscfg.prioritytable,
5554 sizeof(new_cfg->etscfg.prioritytable))) {
5555 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005556 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005557 }
5558
5559 if (memcmp(&new_cfg->etscfg.tcbwtable,
5560 &old_cfg->etscfg.tcbwtable,
5561 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005562 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005563
5564 if (memcmp(&new_cfg->etscfg.tsatable,
5565 &old_cfg->etscfg.tsatable,
5566 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005567 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005568 }
5569
5570 /* Check if PFC configuration has changed */
5571 if (memcmp(&new_cfg->pfc,
5572 &old_cfg->pfc,
5573 sizeof(new_cfg->pfc))) {
5574 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005575 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005576 }
5577
5578 /* Check if APP Table has changed */
5579 if (memcmp(&new_cfg->app,
5580 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005581 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005582 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005583 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005584 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005585
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005586 dev_dbg(&pf->pdev->dev, "dcb need_reconfig=%d\n", need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005587 return need_reconfig;
5588}
5589
5590/**
5591 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5592 * @pf: board private structure
5593 * @e: event info posted on ARQ
5594 **/
5595static int i40e_handle_lldp_event(struct i40e_pf *pf,
5596 struct i40e_arq_event_info *e)
5597{
5598 struct i40e_aqc_lldp_get_mib *mib =
5599 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5600 struct i40e_hw *hw = &pf->hw;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005601 struct i40e_dcbx_config tmp_dcbx_cfg;
5602 bool need_reconfig = false;
5603 int ret = 0;
5604 u8 type;
5605
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005606 /* Not DCB capable or capability disabled */
David Ertmanea6acb72016-09-20 07:10:50 -07005607 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005608 return ret;
5609
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005610 /* Ignore if event is not for Nearest Bridge */
5611 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5612 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005613 dev_dbg(&pf->pdev->dev, "LLDP event mib bridge type 0x%x\n", type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005614 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5615 return ret;
5616
5617 /* Check MIB Type and return if event for Remote MIB update */
5618 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005619 dev_dbg(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005620 "LLDP event mib type %s\n", type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005621 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5622 /* Update the remote cached instance and return */
5623 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5624 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5625 &hw->remote_dcbx_config);
5626 goto exit;
5627 }
5628
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005629 /* Store the old configuration */
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07005630 tmp_dcbx_cfg = hw->local_dcbx_config;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005631
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005632 /* Reset the old DCBx configuration data */
5633 memset(&hw->local_dcbx_config, 0, sizeof(hw->local_dcbx_config));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005634 /* Get updated DCBX data from firmware */
5635 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005636 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005637 dev_info(&pf->pdev->dev,
5638 "Failed querying DCB configuration data from firmware, err %s aq_err %s\n",
5639 i40e_stat_str(&pf->hw, ret),
5640 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005641 goto exit;
5642 }
5643
5644 /* No change detected in DCBX configs */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005645 if (!memcmp(&tmp_dcbx_cfg, &hw->local_dcbx_config,
5646 sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005647 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005648 goto exit;
5649 }
5650
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005651 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg,
5652 &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005653
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005654 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg, &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005655
5656 if (!need_reconfig)
5657 goto exit;
5658
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005659 /* Enable DCB tagging only when more than one TC */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005660 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005661 pf->flags |= I40E_FLAG_DCB_ENABLED;
5662 else
5663 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5664
Neerav Parikh69129dc2014-11-12 00:18:46 +00005665 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005666 /* Reconfiguration needed quiesce all VSIs */
5667 i40e_pf_quiesce_all_vsi(pf);
5668
5669 /* Changes in configuration update VEB/VSI */
5670 i40e_dcb_reconfigure(pf);
5671
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005672 ret = i40e_resume_port_tx(pf);
5673
Neerav Parikh69129dc2014-11-12 00:18:46 +00005674 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005675 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005676 if (ret)
5677 goto exit;
5678
Neerav Parikh3fe06f42016-02-17 16:12:15 -08005679 /* Wait for the PF's queues to be disabled */
5680 ret = i40e_pf_wait_queues_disabled(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005681 if (ret) {
5682 /* Schedule PF reset to recover */
5683 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5684 i40e_service_event_schedule(pf);
5685 } else {
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005686 i40e_pf_unquiesce_all_vsi(pf);
Neerav Parikh85a1aab2016-06-07 09:14:55 -07005687 /* Notify the client for the DCB changes */
5688 i40e_notify_client_of_l2_param_changes(pf->vsi[pf->lan_vsi]);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005689 }
5690
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005691exit:
5692 return ret;
5693}
5694#endif /* CONFIG_I40E_DCB */
5695
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005696/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005697 * i40e_do_reset_safe - Protected reset path for userland calls.
5698 * @pf: board private structure
5699 * @reset_flags: which reset is requested
5700 *
5701 **/
5702void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5703{
5704 rtnl_lock();
5705 i40e_do_reset(pf, reset_flags);
5706 rtnl_unlock();
5707}
5708
5709/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005710 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5711 * @pf: board private structure
5712 * @e: event info posted on ARQ
5713 *
5714 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5715 * and VF queues
5716 **/
5717static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5718 struct i40e_arq_event_info *e)
5719{
5720 struct i40e_aqc_lan_overflow *data =
5721 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5722 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5723 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5724 struct i40e_hw *hw = &pf->hw;
5725 struct i40e_vf *vf;
5726 u16 vf_id;
5727
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005728 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5729 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005730
5731 /* Queue belongs to VF, find the VF and issue VF reset */
5732 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5733 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5734 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5735 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5736 vf_id -= hw->func_caps.vf_base_id;
5737 vf = &pf->vf[vf_id];
5738 i40e_vc_notify_vf_reset(vf);
5739 /* Allow VF to process pending reset notification */
5740 msleep(20);
5741 i40e_reset_vf(vf, false);
5742 }
5743}
5744
5745/**
5746 * i40e_service_event_complete - Finish up the service event
5747 * @pf: board private structure
5748 **/
5749static void i40e_service_event_complete(struct i40e_pf *pf)
5750{
Shannon Nelsonb875f992015-10-21 19:47:03 -04005751 WARN_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005752
5753 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005754 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005755 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5756}
5757
5758/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005759 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5760 * @pf: board private structure
5761 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005762u32 i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005763{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005764 u32 val, fcnt_prog;
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005765
5766 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5767 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5768 return fcnt_prog;
5769}
5770
5771/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005772 * i40e_get_current_fd_count - Get total FD filters programmed for this PF
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005773 * @pf: board private structure
5774 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005775u32 i40e_get_current_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005776{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005777 u32 val, fcnt_prog;
5778
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005779 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5780 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5781 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5782 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5783 return fcnt_prog;
5784}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005785
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005786/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005787 * i40e_get_global_fd_count - Get total FD filters programmed on device
5788 * @pf: board private structure
5789 **/
5790u32 i40e_get_global_fd_count(struct i40e_pf *pf)
5791{
5792 u32 val, fcnt_prog;
5793
5794 val = rd32(&pf->hw, I40E_GLQF_FDCNT_0);
5795 fcnt_prog = (val & I40E_GLQF_FDCNT_0_GUARANT_CNT_MASK) +
5796 ((val & I40E_GLQF_FDCNT_0_BESTCNT_MASK) >>
5797 I40E_GLQF_FDCNT_0_BESTCNT_SHIFT);
5798 return fcnt_prog;
5799}
5800
5801/**
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005802 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5803 * @pf: board private structure
5804 **/
5805void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5806{
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005807 struct i40e_fdir_filter *filter;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005808 u32 fcnt_prog, fcnt_avail;
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005809 struct hlist_node *node;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005810
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005811 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5812 return;
5813
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005814 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5815 * to re-enable
5816 */
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005817 fcnt_prog = i40e_get_global_fd_count(pf);
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005818 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005819 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5820 (pf->fd_add_err == 0) ||
5821 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005822 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5823 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5824 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005825 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5826 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 +00005827 }
5828 }
Jacob Kellera3417d22016-09-06 18:05:10 -07005829
5830 /* Wait for some more space to be available to turn on ATR. We also
5831 * must check that no existing ntuple rules for TCP are in effect
5832 */
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005833 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5834 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
Jacob Kellera3417d22016-09-06 18:05:10 -07005835 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED) &&
5836 (pf->fd_tcp_rule == 0)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005837 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005838 if (I40E_DEBUG_FD & pf->hw.debug_mask)
Jacob Kellera3417d22016-09-06 18:05:10 -07005839 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table and there are no conflicting ntuple rules\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005840 }
5841 }
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005842
5843 /* if hw had a problem adding a filter, delete it */
5844 if (pf->fd_inv > 0) {
5845 hlist_for_each_entry_safe(filter, node,
5846 &pf->fdir_filter_list, fdir_node) {
5847 if (filter->fd_id == pf->fd_inv) {
5848 hlist_del(&filter->fdir_node);
5849 kfree(filter);
5850 pf->fdir_pf_active_filters--;
5851 }
5852 }
5853 }
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005854}
5855
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005856#define I40E_MIN_FD_FLUSH_INTERVAL 10
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005857#define I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE 30
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005858/**
5859 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5860 * @pf: board private structure
5861 **/
5862static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5863{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005864 unsigned long min_flush_time;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005865 int flush_wait_retry = 50;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005866 bool disable_atr = false;
5867 int fd_room;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005868 int reg;
5869
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005870 if (!time_after(jiffies, pf->fd_flush_timestamp +
5871 (I40E_MIN_FD_FLUSH_INTERVAL * HZ)))
5872 return;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005873
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005874 /* If the flush is happening too quick and we have mostly SB rules we
5875 * should not re-enable ATR for some time.
5876 */
5877 min_flush_time = pf->fd_flush_timestamp +
5878 (I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE * HZ);
5879 fd_room = pf->fdir_pf_filter_count - pf->fdir_pf_active_filters;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005880
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005881 if (!(time_after(jiffies, min_flush_time)) &&
5882 (fd_room < I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) {
5883 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5884 dev_info(&pf->pdev->dev, "ATR disabled, not enough FD filter space.\n");
5885 disable_atr = true;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005886 }
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005887
5888 pf->fd_flush_timestamp = jiffies;
Jacob Keller234dc4e2016-09-06 18:05:09 -07005889 pf->auto_disable_flags |= I40E_FLAG_FD_ATR_ENABLED;
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005890 /* flush all filters */
5891 wr32(&pf->hw, I40E_PFQF_CTL_1,
5892 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5893 i40e_flush(&pf->hw);
5894 pf->fd_flush_cnt++;
5895 pf->fd_add_err = 0;
5896 do {
5897 /* Check FD flush status every 5-6msec */
5898 usleep_range(5000, 6000);
5899 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5900 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5901 break;
5902 } while (flush_wait_retry--);
5903 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5904 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5905 } else {
5906 /* replay sideband filters */
5907 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5908 if (!disable_atr)
Jacob Keller234dc4e2016-09-06 18:05:09 -07005909 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005910 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5911 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5912 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5913 }
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005914}
5915
5916/**
5917 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5918 * @pf: board private structure
5919 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005920u32 i40e_get_current_atr_cnt(struct i40e_pf *pf)
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005921{
5922 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5923}
5924
5925/* We can see up to 256 filter programming desc in transit if the filters are
5926 * being applied really fast; before we see the first
5927 * filter miss error on Rx queue 0. Accumulating enough error messages before
5928 * reacting will make sure we don't cause flush too often.
5929 */
5930#define I40E_MAX_FD_PROGRAM_ERROR 256
5931
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005932/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005933 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5934 * @pf: board private structure
5935 **/
5936static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5937{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005938
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005939 /* if interface is down do nothing */
5940 if (test_bit(__I40E_DOWN, &pf->state))
5941 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005942
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005943 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005944 i40e_fdir_flush_and_replay(pf);
5945
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005946 i40e_fdir_check_and_reenable(pf);
5947
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005948}
5949
5950/**
5951 * i40e_vsi_link_event - notify VSI of a link event
5952 * @vsi: vsi to be notified
5953 * @link_up: link up or down
5954 **/
5955static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5956{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005957 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005958 return;
5959
5960 switch (vsi->type) {
5961 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005962#ifdef I40E_FCOE
5963 case I40E_VSI_FCOE:
5964#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005965 if (!vsi->netdev || !vsi->netdev_registered)
5966 break;
5967
5968 if (link_up) {
5969 netif_carrier_on(vsi->netdev);
5970 netif_tx_wake_all_queues(vsi->netdev);
5971 } else {
5972 netif_carrier_off(vsi->netdev);
5973 netif_tx_stop_all_queues(vsi->netdev);
5974 }
5975 break;
5976
5977 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005978 case I40E_VSI_VMDQ2:
5979 case I40E_VSI_CTRL:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005980 case I40E_VSI_IWARP:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005981 case I40E_VSI_MIRROR:
5982 default:
5983 /* there is no notification for other VSIs */
5984 break;
5985 }
5986}
5987
5988/**
5989 * i40e_veb_link_event - notify elements on the veb of a link event
5990 * @veb: veb to be notified
5991 * @link_up: link up or down
5992 **/
5993static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5994{
5995 struct i40e_pf *pf;
5996 int i;
5997
5998 if (!veb || !veb->pf)
5999 return;
6000 pf = veb->pf;
6001
6002 /* depth first... */
6003 for (i = 0; i < I40E_MAX_VEB; i++)
6004 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
6005 i40e_veb_link_event(pf->veb[i], link_up);
6006
6007 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00006008 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006009 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
6010 i40e_vsi_link_event(pf->vsi[i], link_up);
6011}
6012
6013/**
6014 * i40e_link_event - Update netif_carrier status
6015 * @pf: board private structure
6016 **/
6017static void i40e_link_event(struct i40e_pf *pf)
6018{
Mitch Williams320684c2014-10-17 03:14:43 +00006019 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006020 u8 new_link_speed, old_link_speed;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006021 i40e_status status;
6022 bool new_link, old_link;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006023
Catherine Sullivan1f9610e2015-10-21 19:47:09 -04006024 /* save off old link status information */
6025 pf->hw.phy.link_info_old = pf->hw.phy.link_info;
6026
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006027 /* set this to force the get_link_status call to refresh state */
6028 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006029
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006030 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006031
6032 status = i40e_get_link_status(&pf->hw, &new_link);
6033 if (status) {
6034 dev_dbg(&pf->pdev->dev, "couldn't get link state, status: %d\n",
6035 status);
6036 return;
6037 }
6038
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006039 old_link_speed = pf->hw.phy.link_info_old.link_speed;
6040 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006041
6042 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006043 new_link_speed == old_link_speed &&
Mitch Williams320684c2014-10-17 03:14:43 +00006044 (test_bit(__I40E_DOWN, &vsi->state) ||
6045 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006046 return;
Mitch Williams320684c2014-10-17 03:14:43 +00006047
6048 if (!test_bit(__I40E_DOWN, &vsi->state))
6049 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006050
6051 /* Notify the base of the switch tree connected to
6052 * the link. Floating VEBs are not notified.
6053 */
6054 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
6055 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
6056 else
Mitch Williams320684c2014-10-17 03:14:43 +00006057 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006058
6059 if (pf->vf)
6060 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006061
6062 if (pf->flags & I40E_FLAG_PTP)
6063 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006064}
6065
6066/**
Shannon Nelson21536712014-10-25 10:35:25 +00006067 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006068 * @pf: board private structure
6069 **/
6070static void i40e_watchdog_subtask(struct i40e_pf *pf)
6071{
6072 int i;
6073
6074 /* if interface is down do nothing */
6075 if (test_bit(__I40E_DOWN, &pf->state) ||
6076 test_bit(__I40E_CONFIG_BUSY, &pf->state))
6077 return;
6078
Shannon Nelson21536712014-10-25 10:35:25 +00006079 /* make sure we don't do these things too often */
6080 if (time_before(jiffies, (pf->service_timer_previous +
6081 pf->service_timer_period)))
6082 return;
6083 pf->service_timer_previous = jiffies;
6084
Shannon Nelson9ac77262015-08-27 11:42:40 -04006085 if (pf->flags & I40E_FLAG_LINK_POLLING_ENABLED)
6086 i40e_link_event(pf);
Shannon Nelson21536712014-10-25 10:35:25 +00006087
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006088 /* Update the stats for active netdevs so the network stack
6089 * can look at updated numbers whenever it cares to
6090 */
Mitch Williams505682c2014-05-20 08:01:37 +00006091 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006092 if (pf->vsi[i] && pf->vsi[i]->netdev)
6093 i40e_update_stats(pf->vsi[i]);
6094
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04006095 if (pf->flags & I40E_FLAG_VEB_STATS_ENABLED) {
6096 /* Update the stats for the active switching components */
6097 for (i = 0; i < I40E_MAX_VEB; i++)
6098 if (pf->veb[i])
6099 i40e_update_veb_stats(pf->veb[i]);
6100 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006101
6102 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006103}
6104
6105/**
6106 * i40e_reset_subtask - Set up for resetting the device and driver
6107 * @pf: board private structure
6108 **/
6109static void i40e_reset_subtask(struct i40e_pf *pf)
6110{
6111 u32 reset_flags = 0;
6112
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006113 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006114 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006115 reset_flags |= BIT(__I40E_REINIT_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006116 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
6117 }
6118 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006119 reset_flags |= BIT(__I40E_PF_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006120 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6121 }
6122 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006123 reset_flags |= BIT(__I40E_CORE_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006124 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
6125 }
6126 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006127 reset_flags |= BIT(__I40E_GLOBAL_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006128 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
6129 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006130 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006131 reset_flags |= BIT(__I40E_DOWN_REQUESTED);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006132 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
6133 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006134
6135 /* If there's a recovery already waiting, it takes
6136 * precedence before starting a new reset sequence.
6137 */
6138 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
6139 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006140 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006141 }
6142
6143 /* If we're already down or resetting, just bail */
6144 if (reset_flags &&
6145 !test_bit(__I40E_DOWN, &pf->state) &&
6146 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
6147 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006148
6149unlock:
6150 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006151}
6152
6153/**
6154 * i40e_handle_link_event - Handle link event
6155 * @pf: board private structure
6156 * @e: event info posted on ARQ
6157 **/
6158static void i40e_handle_link_event(struct i40e_pf *pf,
6159 struct i40e_arq_event_info *e)
6160{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006161 struct i40e_aqc_get_link_status *status =
6162 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006163
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006164 /* Do a new status request to re-enable LSE reporting
6165 * and load new status information into the hw struct
6166 * This completely ignores any state information
6167 * in the ARQ event info, instead choosing to always
6168 * issue the AQ update link status command.
6169 */
6170 i40e_link_event(pf);
6171
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00006172 /* check for unqualified module, if link is down */
6173 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
6174 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
6175 (!(status->link_info & I40E_AQ_LINK_UP)))
6176 dev_err(&pf->pdev->dev,
6177 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006178}
6179
6180/**
6181 * i40e_clean_adminq_subtask - Clean the AdminQ rings
6182 * @pf: board private structure
6183 **/
6184static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
6185{
6186 struct i40e_arq_event_info event;
6187 struct i40e_hw *hw = &pf->hw;
6188 u16 pending, i = 0;
6189 i40e_status ret;
6190 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00006191 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006192 u32 val;
6193
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006194 /* Do not run clean AQ when PF reset fails */
6195 if (test_bit(__I40E_RESET_FAILED, &pf->state))
6196 return;
6197
Shannon Nelson86df2422014-05-20 08:01:35 +00006198 /* check for error indications */
6199 val = rd32(&pf->hw, pf->hw.aq.arq.len);
6200 oldval = val;
6201 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006202 if (hw->debug_mask & I40E_DEBUG_AQ)
6203 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006204 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
6205 }
6206 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006207 if (hw->debug_mask & I40E_DEBUG_AQ)
6208 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006209 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
Mitch Williams1d0a4ad2015-12-23 12:05:48 -08006210 pf->arq_overflows++;
Shannon Nelson86df2422014-05-20 08:01:35 +00006211 }
6212 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006213 if (hw->debug_mask & I40E_DEBUG_AQ)
6214 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006215 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
6216 }
6217 if (oldval != val)
6218 wr32(&pf->hw, pf->hw.aq.arq.len, val);
6219
6220 val = rd32(&pf->hw, pf->hw.aq.asq.len);
6221 oldval = val;
6222 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006223 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6224 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006225 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
6226 }
6227 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006228 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6229 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006230 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
6231 }
6232 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006233 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6234 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006235 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
6236 }
6237 if (oldval != val)
6238 wr32(&pf->hw, pf->hw.aq.asq.len, val);
6239
Mitch Williams1001dc32014-11-11 20:02:19 +00006240 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
6241 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006242 if (!event.msg_buf)
6243 return;
6244
6245 do {
6246 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00006247 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006248 break;
Mitch Williams56497972014-06-04 08:45:18 +00006249 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006250 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
6251 break;
6252 }
6253
6254 opcode = le16_to_cpu(event.desc.opcode);
6255 switch (opcode) {
6256
6257 case i40e_aqc_opc_get_link_status:
6258 i40e_handle_link_event(pf, &event);
6259 break;
6260 case i40e_aqc_opc_send_msg_to_pf:
6261 ret = i40e_vc_process_vf_msg(pf,
6262 le16_to_cpu(event.desc.retval),
6263 le32_to_cpu(event.desc.cookie_high),
6264 le32_to_cpu(event.desc.cookie_low),
6265 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00006266 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006267 break;
6268 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006269 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006270#ifdef CONFIG_I40E_DCB
6271 rtnl_lock();
6272 ret = i40e_handle_lldp_event(pf, &event);
6273 rtnl_unlock();
6274#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006275 break;
6276 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006277 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006278 i40e_handle_lan_overflow_event(pf, &event);
6279 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00006280 case i40e_aqc_opc_send_msg_to_peer:
6281 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
6282 break;
Shannon Nelson91a0f932015-03-19 14:32:01 -07006283 case i40e_aqc_opc_nvm_erase:
6284 case i40e_aqc_opc_nvm_update:
Michal Kosiarz00ada502015-11-19 11:34:20 -08006285 case i40e_aqc_opc_oem_post_update:
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08006286 i40e_debug(&pf->hw, I40E_DEBUG_NVM,
6287 "ARQ NVM operation 0x%04x completed\n",
6288 opcode);
Shannon Nelson91a0f932015-03-19 14:32:01 -07006289 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006290 default:
6291 dev_info(&pf->pdev->dev,
Shannon Nelson56e5ca62016-03-10 14:59:48 -08006292 "ARQ: Unknown event 0x%04x ignored\n",
Shannon Nelson0467bc92013-12-18 13:45:58 +00006293 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006294 break;
6295 }
6296 } while (pending && (i++ < pf->adminq_work_limit));
6297
6298 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
6299 /* re-enable Admin queue interrupt cause */
6300 val = rd32(hw, I40E_PFINT_ICR0_ENA);
6301 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
6302 wr32(hw, I40E_PFINT_ICR0_ENA, val);
6303 i40e_flush(hw);
6304
6305 kfree(event.msg_buf);
6306}
6307
6308/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006309 * i40e_verify_eeprom - make sure eeprom is good to use
6310 * @pf: board private structure
6311 **/
6312static void i40e_verify_eeprom(struct i40e_pf *pf)
6313{
6314 int err;
6315
6316 err = i40e_diag_eeprom_test(&pf->hw);
6317 if (err) {
6318 /* retry in case of garbage read */
6319 err = i40e_diag_eeprom_test(&pf->hw);
6320 if (err) {
6321 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
6322 err);
6323 set_bit(__I40E_BAD_EEPROM, &pf->state);
6324 }
6325 }
6326
6327 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
6328 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
6329 clear_bit(__I40E_BAD_EEPROM, &pf->state);
6330 }
6331}
6332
6333/**
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006334 * i40e_enable_pf_switch_lb
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006335 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006336 *
6337 * enable switch loop back or die - no point in a return value
6338 **/
6339static void i40e_enable_pf_switch_lb(struct i40e_pf *pf)
6340{
6341 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6342 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006343 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006344
6345 ctxt.seid = pf->main_vsi_seid;
6346 ctxt.pf_num = pf->hw.pf_id;
6347 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006348 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6349 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006350 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006351 "couldn't get PF vsi config, err %s aq_err %s\n",
6352 i40e_stat_str(&pf->hw, ret),
6353 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006354 return;
6355 }
6356 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6357 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6358 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6359
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006360 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6361 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006362 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006363 "update vsi switch failed, err %s aq_err %s\n",
6364 i40e_stat_str(&pf->hw, ret),
6365 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006366 }
6367}
6368
6369/**
6370 * i40e_disable_pf_switch_lb
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006371 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006372 *
6373 * disable switch loop back or die - no point in a return value
6374 **/
6375static void i40e_disable_pf_switch_lb(struct i40e_pf *pf)
6376{
6377 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6378 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006379 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006380
6381 ctxt.seid = pf->main_vsi_seid;
6382 ctxt.pf_num = pf->hw.pf_id;
6383 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006384 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6385 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006386 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006387 "couldn't get PF vsi config, err %s aq_err %s\n",
6388 i40e_stat_str(&pf->hw, ret),
6389 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006390 return;
6391 }
6392 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6393 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6394 ctxt.info.switch_id &= ~cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6395
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006396 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6397 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006398 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006399 "update vsi switch failed, err %s aq_err %s\n",
6400 i40e_stat_str(&pf->hw, ret),
6401 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006402 }
6403}
6404
6405/**
Neerav Parikh51616012015-02-06 08:52:14 +00006406 * i40e_config_bridge_mode - Configure the HW bridge mode
6407 * @veb: pointer to the bridge instance
6408 *
6409 * Configure the loop back mode for the LAN VSI that is downlink to the
6410 * specified HW bridge instance. It is expected this function is called
6411 * when a new HW bridge is instantiated.
6412 **/
6413static void i40e_config_bridge_mode(struct i40e_veb *veb)
6414{
6415 struct i40e_pf *pf = veb->pf;
6416
Shannon Nelson6dec1012015-09-28 14:12:30 -04006417 if (pf->hw.debug_mask & I40E_DEBUG_LAN)
6418 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
6419 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
Neerav Parikh51616012015-02-06 08:52:14 +00006420 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
6421 i40e_disable_pf_switch_lb(pf);
6422 else
6423 i40e_enable_pf_switch_lb(pf);
6424}
6425
6426/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006427 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
6428 * @veb: pointer to the VEB instance
6429 *
6430 * This is a recursive function that first builds the attached VSIs then
6431 * recurses in to build the next layer of VEB. We track the connections
6432 * through our own index numbers because the seid's from the HW could
6433 * change across the reset.
6434 **/
6435static int i40e_reconstitute_veb(struct i40e_veb *veb)
6436{
6437 struct i40e_vsi *ctl_vsi = NULL;
6438 struct i40e_pf *pf = veb->pf;
6439 int v, veb_idx;
6440 int ret;
6441
6442 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006443 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006444 if (pf->vsi[v] &&
6445 pf->vsi[v]->veb_idx == veb->idx &&
6446 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
6447 ctl_vsi = pf->vsi[v];
6448 break;
6449 }
6450 }
6451 if (!ctl_vsi) {
6452 dev_info(&pf->pdev->dev,
6453 "missing owner VSI for veb_idx %d\n", veb->idx);
6454 ret = -ENOENT;
6455 goto end_reconstitute;
6456 }
6457 if (ctl_vsi != pf->vsi[pf->lan_vsi])
6458 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
6459 ret = i40e_add_vsi(ctl_vsi);
6460 if (ret) {
6461 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006462 "rebuild of veb_idx %d owner VSI failed: %d\n",
6463 veb->idx, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006464 goto end_reconstitute;
6465 }
6466 i40e_vsi_reset_stats(ctl_vsi);
6467
6468 /* create the VEB in the switch and move the VSI onto the VEB */
6469 ret = i40e_add_veb(veb, ctl_vsi);
6470 if (ret)
6471 goto end_reconstitute;
6472
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07006473 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
6474 veb->bridge_mode = BRIDGE_MODE_VEB;
6475 else
6476 veb->bridge_mode = BRIDGE_MODE_VEPA;
Neerav Parikh51616012015-02-06 08:52:14 +00006477 i40e_config_bridge_mode(veb);
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00006478
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006479 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006480 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006481 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
6482 continue;
6483
6484 if (pf->vsi[v]->veb_idx == veb->idx) {
6485 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04006486
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006487 vsi->uplink_seid = veb->seid;
6488 ret = i40e_add_vsi(vsi);
6489 if (ret) {
6490 dev_info(&pf->pdev->dev,
6491 "rebuild of vsi_idx %d failed: %d\n",
6492 v, ret);
6493 goto end_reconstitute;
6494 }
6495 i40e_vsi_reset_stats(vsi);
6496 }
6497 }
6498
6499 /* create any VEBs attached to this VEB - RECURSION */
6500 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
6501 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
6502 pf->veb[veb_idx]->uplink_seid = veb->seid;
6503 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
6504 if (ret)
6505 break;
6506 }
6507 }
6508
6509end_reconstitute:
6510 return ret;
6511}
6512
6513/**
6514 * i40e_get_capabilities - get info about the HW
6515 * @pf: the PF struct
6516 **/
6517static int i40e_get_capabilities(struct i40e_pf *pf)
6518{
6519 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
6520 u16 data_size;
6521 int buf_len;
6522 int err;
6523
6524 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6525 do {
6526 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6527 if (!cap_buf)
6528 return -ENOMEM;
6529
6530 /* this loads the data into the hw struct for us */
6531 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6532 &data_size,
6533 i40e_aqc_opc_list_func_capabilities,
6534 NULL);
6535 /* data loaded, buffer no longer needed */
6536 kfree(cap_buf);
6537
6538 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6539 /* retry with a larger buffer */
6540 buf_len = data_size;
6541 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6542 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006543 "capability discovery failed, err %s aq_err %s\n",
6544 i40e_stat_str(&pf->hw, err),
6545 i40e_aq_str(&pf->hw,
6546 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006547 return -ENODEV;
6548 }
6549 } while (err);
6550
6551 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6552 dev_info(&pf->pdev->dev,
6553 "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",
6554 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6555 pf->hw.func_caps.num_msix_vectors,
6556 pf->hw.func_caps.num_msix_vectors_vf,
6557 pf->hw.func_caps.fd_filters_guaranteed,
6558 pf->hw.func_caps.fd_filters_best_effort,
6559 pf->hw.func_caps.num_tx_qp,
6560 pf->hw.func_caps.num_vsis);
6561
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006562#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6563 + pf->hw.func_caps.num_vfs)
6564 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6565 dev_info(&pf->pdev->dev,
6566 "got num_vsis %d, setting num_vsis to %d\n",
6567 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6568 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6569 }
6570
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006571 return 0;
6572}
6573
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006574static int i40e_vsi_clear(struct i40e_vsi *vsi);
6575
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006576/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006577 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006578 * @pf: board private structure
6579 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006580static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006581{
6582 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006583 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006584
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006585 /* quick workaround for an NVM issue that leaves a critical register
6586 * uninitialized
6587 */
6588 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6589 static const u32 hkey[] = {
6590 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6591 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6592 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6593 0x95b3a76d};
6594
6595 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6596 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6597 }
6598
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006599 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006600 return;
6601
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006602 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006603 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006604 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006605 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006606 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006607 break;
6608 }
6609 }
6610
6611 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006612 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006613 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6614 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006615 if (!vsi) {
6616 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006617 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6618 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006619 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006620 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006621
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006622 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006623}
6624
6625/**
6626 * i40e_fdir_teardown - release the Flow Director resources
6627 * @pf: board private structure
6628 **/
6629static void i40e_fdir_teardown(struct i40e_pf *pf)
6630{
6631 int i;
6632
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006633 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006634 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006635 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6636 i40e_vsi_release(pf->vsi[i]);
6637 break;
6638 }
6639 }
6640}
6641
6642/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006643 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006644 * @pf: board private structure
6645 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006646 * Close up the VFs and other things in prep for PF Reset.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006647 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006648static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006649{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006650 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006651 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006652 u32 v;
6653
6654 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6655 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006656 return;
Mitch Williamsd3ce57342016-03-10 14:59:46 -08006657 if (i40e_check_asq_alive(&pf->hw))
6658 i40e_vc_notify_reset(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006659
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006660 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006661
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006662 /* quiesce the VSIs and their queues that are not already DOWN */
6663 i40e_pf_quiesce_all_vsi(pf);
6664
Mitch Williams505682c2014-05-20 08:01:37 +00006665 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006666 if (pf->vsi[v])
6667 pf->vsi[v]->seid = 0;
6668 }
6669
6670 i40e_shutdown_adminq(&pf->hw);
6671
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006672 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006673 if (hw->hmc.hmc_obj) {
6674 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006675 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006676 dev_warn(&pf->pdev->dev,
6677 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006678 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006679}
6680
6681/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006682 * i40e_send_version - update firmware with driver version
6683 * @pf: PF struct
6684 */
6685static void i40e_send_version(struct i40e_pf *pf)
6686{
6687 struct i40e_driver_version dv;
6688
6689 dv.major_version = DRV_VERSION_MAJOR;
6690 dv.minor_version = DRV_VERSION_MINOR;
6691 dv.build_version = DRV_VERSION_BUILD;
6692 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006693 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006694 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6695}
6696
6697/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006698 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006699 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006700 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006701 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006702static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006703{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006704 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006705 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006706 i40e_status ret;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006707 u32 val;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006708 u32 v;
6709
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006710 /* Now we wait for GRST to settle out.
6711 * We don't have to delete the VEBs or VSIs from the hw switch
6712 * because the reset will make them disappear.
6713 */
6714 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006715 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006716 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006717 set_bit(__I40E_RESET_FAILED, &pf->state);
6718 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006719 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006720 pf->pfr_count++;
6721
6722 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006723 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006724 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006725
6726 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6727 ret = i40e_init_adminq(&pf->hw);
6728 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006729 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, err %s aq_err %s\n",
6730 i40e_stat_str(&pf->hw, ret),
6731 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006732 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006733 }
6734
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006735 /* re-verify the eeprom if we just had an EMP reset */
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00006736 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state))
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006737 i40e_verify_eeprom(pf);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006738
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006739 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006740 ret = i40e_get_capabilities(pf);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006741 if (ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006742 goto end_core_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006743
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006744 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6745 hw->func_caps.num_rx_qp,
6746 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6747 if (ret) {
6748 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6749 goto end_core_reset;
6750 }
6751 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6752 if (ret) {
6753 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6754 goto end_core_reset;
6755 }
6756
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006757#ifdef CONFIG_I40E_DCB
6758 ret = i40e_init_pf_dcb(pf);
6759 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00006760 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6761 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6762 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006763 }
6764#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006765#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04006766 i40e_init_pf_fcoe(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006767
Vasu Dev38e00432014-08-01 13:27:03 -07006768#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006769 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006770 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006771 if (ret)
6772 goto end_core_reset;
6773
Shannon Nelson2f0aff42016-01-04 10:33:08 -08006774 /* The driver only wants link up/down and module qualification
6775 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006776 */
6777 ret = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -08006778 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -07006779 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -08006780 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006781 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006782 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
6783 i40e_stat_str(&pf->hw, ret),
6784 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006785
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006786 /* make sure our flow control settings are restored */
6787 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6788 if (ret)
Neerav Parikh8279e492015-09-03 17:18:50 -04006789 dev_dbg(&pf->pdev->dev, "setting flow control: ret = %s last_status = %s\n",
6790 i40e_stat_str(&pf->hw, ret),
6791 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006792
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006793 /* Rebuild the VSIs and VEBs that existed before reset.
6794 * They are still in our local switch element arrays, so only
6795 * need to rebuild the switch model in the HW.
6796 *
6797 * If there were VEBs but the reconstitution failed, we'll try
6798 * try to recover minimal use by getting the basic PF VSI working.
6799 */
6800 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006801 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006802 /* find the one VEB connected to the MAC, and find orphans */
6803 for (v = 0; v < I40E_MAX_VEB; v++) {
6804 if (!pf->veb[v])
6805 continue;
6806
6807 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6808 pf->veb[v]->uplink_seid == 0) {
6809 ret = i40e_reconstitute_veb(pf->veb[v]);
6810
6811 if (!ret)
6812 continue;
6813
6814 /* If Main VEB failed, we're in deep doodoo,
6815 * so give up rebuilding the switch and set up
6816 * for minimal rebuild of PF VSI.
6817 * If orphan failed, we'll report the error
6818 * but try to keep going.
6819 */
6820 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6821 dev_info(&pf->pdev->dev,
6822 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6823 ret);
6824 pf->vsi[pf->lan_vsi]->uplink_seid
6825 = pf->mac_seid;
6826 break;
6827 } else if (pf->veb[v]->uplink_seid == 0) {
6828 dev_info(&pf->pdev->dev,
6829 "rebuild of orphan VEB failed: %d\n",
6830 ret);
6831 }
6832 }
6833 }
6834 }
6835
6836 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006837 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006838 /* no VEB, so rebuild only the Main VSI */
6839 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6840 if (ret) {
6841 dev_info(&pf->pdev->dev,
6842 "rebuild of Main VSI failed: %d\n", ret);
6843 goto end_core_reset;
6844 }
6845 }
6846
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006847 /* Reconfigure hardware for allowing smaller MSS in the case
6848 * of TSO, so that we avoid the MDD being fired and causing
6849 * a reset in the case of small MSS+TSO.
6850 */
6851#define I40E_REG_MSS 0x000E64DC
6852#define I40E_REG_MSS_MIN_MASK 0x3FF0000
6853#define I40E_64BYTE_MSS 0x400000
6854 val = rd32(hw, I40E_REG_MSS);
6855 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
6856 val &= ~I40E_REG_MSS_MIN_MASK;
6857 val |= I40E_64BYTE_MSS;
6858 wr32(hw, I40E_REG_MSS, val);
6859 }
6860
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08006861 if (pf->flags & I40E_FLAG_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00006862 msleep(75);
6863 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6864 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006865 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
6866 i40e_stat_str(&pf->hw, ret),
6867 i40e_aq_str(&pf->hw,
6868 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006869 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006870 /* reinit the misc interrupt */
6871 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6872 ret = i40e_setup_misc_vector(pf);
6873
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04006874 /* Add a filter to drop all Flow control frames from any VSI from being
6875 * transmitted. By doing so we stop a malicious VF from sending out
6876 * PAUSE or PFC frames and potentially controlling traffic for other
6877 * PF/VF VSIs.
6878 * The FW can still send Flow control frames if enabled.
6879 */
6880 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
6881 pf->main_vsi_seid);
6882
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006883 /* restart the VSIs that were rebuilt and running before the reset */
6884 i40e_pf_unquiesce_all_vsi(pf);
6885
Mitch Williams69f64b22014-02-13 03:48:46 -08006886 if (pf->num_alloc_vfs) {
6887 for (v = 0; v < pf->num_alloc_vfs; v++)
6888 i40e_reset_vf(&pf->vf[v], true);
6889 }
6890
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006891 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006892 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006893
6894end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006895 clear_bit(__I40E_RESET_FAILED, &pf->state);
6896clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006897 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6898}
6899
6900/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006901 * i40e_handle_reset_warning - prep for the PF to reset, reset and rebuild
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006902 * @pf: board private structure
6903 *
6904 * Close up the VFs and other things in prep for a Core Reset,
6905 * then get ready to rebuild the world.
6906 **/
6907static void i40e_handle_reset_warning(struct i40e_pf *pf)
6908{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006909 i40e_prep_for_reset(pf);
6910 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006911}
6912
6913/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006914 * i40e_handle_mdd_event
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006915 * @pf: pointer to the PF structure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006916 *
6917 * Called from the MDD irq handler to identify possibly malicious vfs
6918 **/
6919static void i40e_handle_mdd_event(struct i40e_pf *pf)
6920{
6921 struct i40e_hw *hw = &pf->hw;
6922 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006923 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006924 struct i40e_vf *vf;
6925 u32 reg;
6926 int i;
6927
6928 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6929 return;
6930
6931 /* find what triggered the MDD event */
6932 reg = rd32(hw, I40E_GL_MDET_TX);
6933 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006934 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6935 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006936 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006937 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006938 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006939 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006940 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6941 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6942 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006943 if (netif_msg_tx_err(pf))
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006944 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 +00006945 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006946 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6947 mdd_detected = true;
6948 }
6949 reg = rd32(hw, I40E_GL_MDET_RX);
6950 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006951 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6952 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006953 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006954 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006955 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6956 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6957 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006958 if (netif_msg_rx_err(pf))
6959 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6960 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006961 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6962 mdd_detected = true;
6963 }
6964
Neerav Parikhdf430b12014-06-04 01:23:15 +00006965 if (mdd_detected) {
6966 reg = rd32(hw, I40E_PF_MDET_TX);
6967 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6968 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006969 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006970 pf_mdd_detected = true;
6971 }
6972 reg = rd32(hw, I40E_PF_MDET_RX);
6973 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6974 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006975 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006976 pf_mdd_detected = true;
6977 }
6978 /* Queue belongs to the PF, initiate a reset */
6979 if (pf_mdd_detected) {
6980 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6981 i40e_service_event_schedule(pf);
6982 }
6983 }
6984
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006985 /* see if one of the VFs needs its hand slapped */
6986 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6987 vf = &(pf->vf[i]);
6988 reg = rd32(hw, I40E_VP_MDET_TX(i));
6989 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6990 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6991 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006992 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
6993 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006994 }
6995
6996 reg = rd32(hw, I40E_VP_MDET_RX(i));
6997 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6998 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6999 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007000 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
7001 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007002 }
7003
7004 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
7005 dev_info(&pf->pdev->dev,
7006 "Too many MDD events on VF %d, disabled\n", i);
7007 dev_info(&pf->pdev->dev,
7008 "Use PF Control I/F to re-enable the VF\n");
7009 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
7010 }
7011 }
7012
7013 /* re-enable mdd interrupt cause */
7014 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
7015 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
7016 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
7017 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
7018 i40e_flush(hw);
7019}
7020
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007021/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08007022 * i40e_sync_udp_filters_subtask - Sync the VSI filter list with HW
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007023 * @pf: board private structure
7024 **/
Singhai, Anjali6a899022015-12-14 12:21:18 -08007025static void i40e_sync_udp_filters_subtask(struct i40e_pf *pf)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007026{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007027 struct i40e_hw *hw = &pf->hw;
7028 i40e_status ret;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007029 __be16 port;
7030 int i;
7031
Singhai, Anjali6a899022015-12-14 12:21:18 -08007032 if (!(pf->flags & I40E_FLAG_UDP_FILTER_SYNC))
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007033 return;
7034
Singhai, Anjali6a899022015-12-14 12:21:18 -08007035 pf->flags &= ~I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007036
7037 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Singhai, Anjali6a899022015-12-14 12:21:18 -08007038 if (pf->pending_udp_bitmap & BIT_ULL(i)) {
7039 pf->pending_udp_bitmap &= ~BIT_ULL(i);
7040 port = pf->udp_ports[i].index;
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007041 if (port)
Carolyn Wybornyb3f5c7b2016-08-24 11:33:51 -07007042 ret = i40e_aq_add_udp_tunnel(hw, port,
7043 pf->udp_ports[i].type,
7044 NULL, NULL);
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007045 else
7046 ret = i40e_aq_del_udp_tunnel(hw, i, NULL);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007047
7048 if (ret) {
Carolyn Wyborny730a8f82016-02-17 16:12:16 -08007049 dev_dbg(&pf->pdev->dev,
7050 "%s %s port %d, index %d failed, err %s aq_err %s\n",
7051 pf->udp_ports[i].type ? "vxlan" : "geneve",
7052 port ? "add" : "delete",
7053 ntohs(port), i,
7054 i40e_stat_str(&pf->hw, ret),
7055 i40e_aq_str(&pf->hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007056 pf->hw.aq.asq_last_status));
Singhai, Anjali6a899022015-12-14 12:21:18 -08007057 pf->udp_ports[i].index = 0;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007058 }
7059 }
7060 }
7061}
7062
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007063/**
7064 * i40e_service_task - Run the driver's async subtasks
7065 * @work: pointer to work_struct containing our data
7066 **/
7067static void i40e_service_task(struct work_struct *work)
7068{
7069 struct i40e_pf *pf = container_of(work,
7070 struct i40e_pf,
7071 service_task);
7072 unsigned long start_time = jiffies;
7073
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007074 /* don't bother with service tasks if a reset is in progress */
7075 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7076 i40e_service_event_complete(pf);
7077 return;
7078 }
7079
Kiran Patilb03a8c12015-09-24 18:13:15 -04007080 i40e_detect_recover_hung(pf);
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08007081 i40e_sync_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007082 i40e_reset_subtask(pf);
7083 i40e_handle_mdd_event(pf);
7084 i40e_vc_process_vflr_event(pf);
7085 i40e_watchdog_subtask(pf);
7086 i40e_fdir_reinit_subtask(pf);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007087 i40e_client_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007088 i40e_sync_filters_subtask(pf);
Singhai, Anjali6a899022015-12-14 12:21:18 -08007089 i40e_sync_udp_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007090 i40e_clean_adminq_subtask(pf);
7091
7092 i40e_service_event_complete(pf);
7093
7094 /* If the tasks have taken longer than one timer cycle or there
7095 * is more work to be done, reschedule the service task now
7096 * rather than wait for the timer to tick again.
7097 */
7098 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
7099 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
7100 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
7101 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
7102 i40e_service_event_schedule(pf);
7103}
7104
7105/**
7106 * i40e_service_timer - timer callback
7107 * @data: pointer to PF struct
7108 **/
7109static void i40e_service_timer(unsigned long data)
7110{
7111 struct i40e_pf *pf = (struct i40e_pf *)data;
7112
7113 mod_timer(&pf->service_timer,
7114 round_jiffies(jiffies + pf->service_timer_period));
7115 i40e_service_event_schedule(pf);
7116}
7117
7118/**
7119 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
7120 * @vsi: the VSI being configured
7121 **/
7122static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
7123{
7124 struct i40e_pf *pf = vsi->back;
7125
7126 switch (vsi->type) {
7127 case I40E_VSI_MAIN:
7128 vsi->alloc_queue_pairs = pf->num_lan_qps;
7129 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7130 I40E_REQ_DESCRIPTOR_MULTIPLE);
7131 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7132 vsi->num_q_vectors = pf->num_lan_msix;
7133 else
7134 vsi->num_q_vectors = 1;
7135
7136 break;
7137
7138 case I40E_VSI_FDIR:
7139 vsi->alloc_queue_pairs = 1;
7140 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
7141 I40E_REQ_DESCRIPTOR_MULTIPLE);
Tushar Davea70e4072016-05-16 12:40:53 -07007142 vsi->num_q_vectors = pf->num_fdsb_msix;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007143 break;
7144
7145 case I40E_VSI_VMDQ2:
7146 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
7147 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7148 I40E_REQ_DESCRIPTOR_MULTIPLE);
7149 vsi->num_q_vectors = pf->num_vmdq_msix;
7150 break;
7151
7152 case I40E_VSI_SRIOV:
7153 vsi->alloc_queue_pairs = pf->num_vf_qps;
7154 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7155 I40E_REQ_DESCRIPTOR_MULTIPLE);
7156 break;
7157
Vasu Dev38e00432014-08-01 13:27:03 -07007158#ifdef I40E_FCOE
7159 case I40E_VSI_FCOE:
7160 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
7161 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7162 I40E_REQ_DESCRIPTOR_MULTIPLE);
7163 vsi->num_q_vectors = pf->num_fcoe_msix;
7164 break;
7165
7166#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007167 default:
7168 WARN_ON(1);
7169 return -ENODATA;
7170 }
7171
7172 return 0;
7173}
7174
7175/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007176 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
7177 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007178 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007179 *
7180 * On error: returns error code (negative)
7181 * On success: returns 0
7182 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007183static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007184{
7185 int size;
7186 int ret = 0;
7187
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007188 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007189 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
7190 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
7191 if (!vsi->tx_rings)
7192 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007193 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
7194
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007195 if (alloc_qvectors) {
7196 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00007197 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007198 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
7199 if (!vsi->q_vectors) {
7200 ret = -ENOMEM;
7201 goto err_vectors;
7202 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007203 }
7204 return ret;
7205
7206err_vectors:
7207 kfree(vsi->tx_rings);
7208 return ret;
7209}
7210
7211/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007212 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
7213 * @pf: board private structure
7214 * @type: type of VSI
7215 *
7216 * On error: returns error code (negative)
7217 * On success: returns vsi index in PF (positive)
7218 **/
7219static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
7220{
7221 int ret = -ENODEV;
7222 struct i40e_vsi *vsi;
7223 int vsi_idx;
7224 int i;
7225
7226 /* Need to protect the allocation of the VSIs at the PF level */
7227 mutex_lock(&pf->switch_mutex);
7228
7229 /* VSI list may be fragmented if VSI creation/destruction has
7230 * been happening. We can afford to do a quick scan to look
7231 * for any free VSIs in the list.
7232 *
7233 * find next empty vsi slot, looping back around if necessary
7234 */
7235 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00007236 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007237 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00007238 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007239 i = 0;
7240 while (i < pf->next_vsi && pf->vsi[i])
7241 i++;
7242 }
7243
Mitch Williams505682c2014-05-20 08:01:37 +00007244 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007245 vsi_idx = i; /* Found one! */
7246 } else {
7247 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00007248 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007249 }
7250 pf->next_vsi = ++i;
7251
7252 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
7253 if (!vsi) {
7254 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00007255 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007256 }
7257 vsi->type = type;
7258 vsi->back = pf;
7259 set_bit(__I40E_DOWN, &vsi->state);
7260 vsi->flags = 0;
7261 vsi->idx = vsi_idx;
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04007262 vsi->int_rate_limit = 0;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00007263 vsi->rss_table_size = (vsi->type == I40E_VSI_MAIN) ?
7264 pf->rss_table_size : 64;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007265 vsi->netdev_registered = false;
7266 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
7267 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00007268 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007269
Alexander Duyck9f65e152013-09-28 06:00:58 +00007270 ret = i40e_set_num_rings_in_vsi(vsi);
7271 if (ret)
7272 goto err_rings;
7273
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007274 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007275 if (ret)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007276 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00007277
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007278 /* Setup default MSIX irq handler for VSI */
7279 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
7280
Kiran Patil21659032015-09-30 14:09:03 -04007281 /* Initialize VSI lock */
7282 spin_lock_init(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007283 pf->vsi[vsi_idx] = vsi;
7284 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00007285 goto unlock_pf;
7286
Alexander Duyck9f65e152013-09-28 06:00:58 +00007287err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00007288 pf->next_vsi = i - 1;
7289 kfree(vsi);
7290unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007291 mutex_unlock(&pf->switch_mutex);
7292 return ret;
7293}
7294
7295/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007296 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
7297 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007298 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007299 *
7300 * On error: returns error code (negative)
7301 * On success: returns 0
7302 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007303static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007304{
7305 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007306 if (free_qvectors) {
7307 kfree(vsi->q_vectors);
7308 vsi->q_vectors = NULL;
7309 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007310 kfree(vsi->tx_rings);
7311 vsi->tx_rings = NULL;
7312 vsi->rx_rings = NULL;
7313}
7314
7315/**
Helin Zhang28c58692015-10-26 19:44:27 -04007316 * i40e_clear_rss_config_user - clear the user configured RSS hash keys
7317 * and lookup table
7318 * @vsi: Pointer to VSI structure
7319 */
7320static void i40e_clear_rss_config_user(struct i40e_vsi *vsi)
7321{
7322 if (!vsi)
7323 return;
7324
7325 kfree(vsi->rss_hkey_user);
7326 vsi->rss_hkey_user = NULL;
7327
7328 kfree(vsi->rss_lut_user);
7329 vsi->rss_lut_user = NULL;
7330}
7331
7332/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007333 * i40e_vsi_clear - Deallocate the VSI provided
7334 * @vsi: the VSI being un-configured
7335 **/
7336static int i40e_vsi_clear(struct i40e_vsi *vsi)
7337{
7338 struct i40e_pf *pf;
7339
7340 if (!vsi)
7341 return 0;
7342
7343 if (!vsi->back)
7344 goto free_vsi;
7345 pf = vsi->back;
7346
7347 mutex_lock(&pf->switch_mutex);
7348 if (!pf->vsi[vsi->idx]) {
7349 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
7350 vsi->idx, vsi->idx, vsi, vsi->type);
7351 goto unlock_vsi;
7352 }
7353
7354 if (pf->vsi[vsi->idx] != vsi) {
7355 dev_err(&pf->pdev->dev,
7356 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
7357 pf->vsi[vsi->idx]->idx,
7358 pf->vsi[vsi->idx],
7359 pf->vsi[vsi->idx]->type,
7360 vsi->idx, vsi, vsi->type);
7361 goto unlock_vsi;
7362 }
7363
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00007364 /* updates the PF for this cleared vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007365 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7366 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
7367
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007368 i40e_vsi_free_arrays(vsi, true);
Helin Zhang28c58692015-10-26 19:44:27 -04007369 i40e_clear_rss_config_user(vsi);
Alexander Duyck493fb302013-09-28 07:01:44 +00007370
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007371 pf->vsi[vsi->idx] = NULL;
7372 if (vsi->idx < pf->next_vsi)
7373 pf->next_vsi = vsi->idx;
7374
7375unlock_vsi:
7376 mutex_unlock(&pf->switch_mutex);
7377free_vsi:
7378 kfree(vsi);
7379
7380 return 0;
7381}
7382
7383/**
Alexander Duyck9f65e152013-09-28 06:00:58 +00007384 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
7385 * @vsi: the VSI being cleaned
7386 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007387static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007388{
7389 int i;
7390
Greg Rose8e9dca52013-12-18 13:45:53 +00007391 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00007392 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00007393 kfree_rcu(vsi->tx_rings[i], rcu);
7394 vsi->tx_rings[i] = NULL;
7395 vsi->rx_rings[i] = NULL;
7396 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007397 }
Alexander Duyck9f65e152013-09-28 06:00:58 +00007398}
7399
7400/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007401 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
7402 * @vsi: the VSI being configured
7403 **/
7404static int i40e_alloc_rings(struct i40e_vsi *vsi)
7405{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00007406 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007407 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007408 int i;
7409
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007410 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00007411 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007412 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e152013-09-28 06:00:58 +00007413 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
7414 if (!tx_ring)
7415 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007416
7417 tx_ring->queue_index = i;
7418 tx_ring->reg_idx = vsi->base_queue + i;
7419 tx_ring->ring_active = false;
7420 tx_ring->vsi = vsi;
7421 tx_ring->netdev = vsi->netdev;
7422 tx_ring->dev = &pf->pdev->dev;
7423 tx_ring->count = vsi->num_desc;
7424 tx_ring->size = 0;
7425 tx_ring->dcb_tc = 0;
Anjali Singhai Jain8e0764b2015-06-05 12:20:30 -04007426 if (vsi->back->flags & I40E_FLAG_WB_ON_ITR_CAPABLE)
7427 tx_ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
Kan Lianga75e8002016-02-19 09:24:04 -05007428 tx_ring->tx_itr_setting = pf->tx_itr_default;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007429 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007430
Alexander Duyck9f65e152013-09-28 06:00:58 +00007431 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007432 rx_ring->queue_index = i;
7433 rx_ring->reg_idx = vsi->base_queue + i;
7434 rx_ring->ring_active = false;
7435 rx_ring->vsi = vsi;
7436 rx_ring->netdev = vsi->netdev;
7437 rx_ring->dev = &pf->pdev->dev;
7438 rx_ring->count = vsi->num_desc;
7439 rx_ring->size = 0;
7440 rx_ring->dcb_tc = 0;
Kan Lianga75e8002016-02-19 09:24:04 -05007441 rx_ring->rx_itr_setting = pf->rx_itr_default;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007442 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007443 }
7444
7445 return 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007446
7447err_out:
7448 i40e_vsi_clear_rings(vsi);
7449 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007450}
7451
7452/**
7453 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
7454 * @pf: board private structure
7455 * @vectors: the number of MSI-X vectors to request
7456 *
7457 * Returns the number of vectors reserved, or error
7458 **/
7459static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
7460{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007461 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
7462 I40E_MIN_MSIX, vectors);
7463 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007464 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007465 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007466 vectors = 0;
7467 }
7468
7469 return vectors;
7470}
7471
7472/**
7473 * i40e_init_msix - Setup the MSIX capability
7474 * @pf: board private structure
7475 *
7476 * Work with the OS to set up the MSIX vectors needed.
7477 *
Shannon Nelson3b444392015-02-26 16:15:57 +00007478 * Returns the number of vectors reserved or negative on failure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007479 **/
7480static int i40e_init_msix(struct i40e_pf *pf)
7481{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007482 struct i40e_hw *hw = &pf->hw;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007483 int vectors_left;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007484 int v_budget, i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007485 int v_actual;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007486 int iwarp_requested = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007487
7488 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
7489 return -ENODEV;
7490
7491 /* The number of vectors we'll request will be comprised of:
7492 * - Add 1 for "other" cause for Admin Queue events, etc.
7493 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007494 * - Queues being used for RSS.
7495 * We don't need as many as max_rss_size vectors.
7496 * use rss_size instead in the calculation since that
7497 * is governed by number of cpus in the system.
7498 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007499 * - The number of VMDq pairs
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007500 * - The CPU count within the NUMA node if iWARP is enabled
Vasu Dev38e00432014-08-01 13:27:03 -07007501#ifdef I40E_FCOE
7502 * - The number of FCOE qps.
7503#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007504 * Once we count this up, try the request.
7505 *
7506 * If we can't get what we want, we'll simplify to nearly nothing
7507 * and try again. If that still fails, we punt.
7508 */
Shannon Nelson1e200e42015-02-27 09:15:24 +00007509 vectors_left = hw->func_caps.num_msix_vectors;
7510 v_budget = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007511
Shannon Nelson1e200e42015-02-27 09:15:24 +00007512 /* reserve one vector for miscellaneous handler */
7513 if (vectors_left) {
7514 v_budget++;
7515 vectors_left--;
7516 }
7517
7518 /* reserve vectors for the main PF traffic queues */
7519 pf->num_lan_msix = min_t(int, num_online_cpus(), vectors_left);
7520 vectors_left -= pf->num_lan_msix;
7521 v_budget += pf->num_lan_msix;
7522
7523 /* reserve one vector for sideband flow director */
7524 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7525 if (vectors_left) {
Tushar Davea70e4072016-05-16 12:40:53 -07007526 pf->num_fdsb_msix = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007527 v_budget++;
7528 vectors_left--;
7529 } else {
Tushar Davea70e4072016-05-16 12:40:53 -07007530 pf->num_fdsb_msix = 0;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007531 }
7532 }
John W Linville83840e42015-01-14 03:06:28 +00007533
Vasu Dev38e00432014-08-01 13:27:03 -07007534#ifdef I40E_FCOE
Shannon Nelson1e200e42015-02-27 09:15:24 +00007535 /* can we reserve enough for FCoE? */
Vasu Dev38e00432014-08-01 13:27:03 -07007536 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
Shannon Nelson1e200e42015-02-27 09:15:24 +00007537 if (!vectors_left)
7538 pf->num_fcoe_msix = 0;
7539 else if (vectors_left >= pf->num_fcoe_qps)
7540 pf->num_fcoe_msix = pf->num_fcoe_qps;
7541 else
7542 pf->num_fcoe_msix = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07007543 v_budget += pf->num_fcoe_msix;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007544 vectors_left -= pf->num_fcoe_msix;
Vasu Dev38e00432014-08-01 13:27:03 -07007545 }
Shannon Nelson1e200e42015-02-27 09:15:24 +00007546
Vasu Dev38e00432014-08-01 13:27:03 -07007547#endif
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007548 /* can we reserve enough for iWARP? */
7549 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02007550 iwarp_requested = pf->num_iwarp_msix;
7551
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007552 if (!vectors_left)
7553 pf->num_iwarp_msix = 0;
7554 else if (vectors_left < pf->num_iwarp_msix)
7555 pf->num_iwarp_msix = 1;
7556 v_budget += pf->num_iwarp_msix;
7557 vectors_left -= pf->num_iwarp_msix;
7558 }
7559
Shannon Nelson1e200e42015-02-27 09:15:24 +00007560 /* any vectors left over go for VMDq support */
7561 if (pf->flags & I40E_FLAG_VMDQ_ENABLED) {
7562 int vmdq_vecs_wanted = pf->num_vmdq_vsis * pf->num_vmdq_qps;
7563 int vmdq_vecs = min_t(int, vectors_left, vmdq_vecs_wanted);
7564
Stefan Assmann9ca57e92016-09-19 13:37:49 +02007565 if (!vectors_left) {
7566 pf->num_vmdq_msix = 0;
7567 pf->num_vmdq_qps = 0;
7568 } else {
7569 /* if we're short on vectors for what's desired, we limit
7570 * the queues per vmdq. If this is still more than are
7571 * available, the user will need to change the number of
7572 * queues/vectors used by the PF later with the ethtool
7573 * channels command
7574 */
7575 if (vmdq_vecs < vmdq_vecs_wanted)
7576 pf->num_vmdq_qps = 1;
7577 pf->num_vmdq_msix = pf->num_vmdq_qps;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007578
Stefan Assmann9ca57e92016-09-19 13:37:49 +02007579 v_budget += vmdq_vecs;
7580 vectors_left -= vmdq_vecs;
7581 }
Shannon Nelson1e200e42015-02-27 09:15:24 +00007582 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007583
7584 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
7585 GFP_KERNEL);
7586 if (!pf->msix_entries)
7587 return -ENOMEM;
7588
7589 for (i = 0; i < v_budget; i++)
7590 pf->msix_entries[i].entry = i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007591 v_actual = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007592
Shannon Nelson3b444392015-02-26 16:15:57 +00007593 if (v_actual < I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007594 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
7595 kfree(pf->msix_entries);
7596 pf->msix_entries = NULL;
Guilherme G Piccoli4c95aa52016-09-22 10:03:58 -03007597 pci_disable_msix(pf->pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007598 return -ENODEV;
7599
Shannon Nelson3b444392015-02-26 16:15:57 +00007600 } else if (v_actual == I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007601 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007602 pf->num_vmdq_vsis = 0;
7603 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007604 pf->num_lan_qps = 1;
7605 pf->num_lan_msix = 1;
7606
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02007607 } else if (!vectors_left) {
7608 /* If we have limited resources, we will start with no vectors
7609 * for the special features and then allocate vectors to some
7610 * of these features based on the policy and at the end disable
7611 * the features that did not get any vectors.
7612 */
Shannon Nelson3b444392015-02-26 16:15:57 +00007613 int vec;
7614
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02007615 dev_info(&pf->pdev->dev,
7616 "MSI-X vector limit reached, attempting to redistribute vectors\n");
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007617 /* reserve the misc vector */
Shannon Nelson3b444392015-02-26 16:15:57 +00007618 vec = v_actual - 1;
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007619
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007620 /* Scale vector usage down */
7621 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007622 pf->num_vmdq_vsis = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007623 pf->num_vmdq_qps = 1;
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02007624#ifdef I40E_FCOE
7625 pf->num_fcoe_qps = 0;
7626 pf->num_fcoe_msix = 0;
7627#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007628
7629 /* partition out the remaining vectors */
7630 switch (vec) {
7631 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007632 pf->num_lan_msix = 1;
7633 break;
7634 case 3:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007635 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7636 pf->num_lan_msix = 1;
7637 pf->num_iwarp_msix = 1;
7638 } else {
7639 pf->num_lan_msix = 2;
7640 }
Vasu Dev38e00432014-08-01 13:27:03 -07007641#ifdef I40E_FCOE
7642 /* give one vector to FCoE */
7643 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7644 pf->num_lan_msix = 1;
7645 pf->num_fcoe_msix = 1;
7646 }
Vasu Dev38e00432014-08-01 13:27:03 -07007647#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007648 break;
7649 default:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007650 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7651 pf->num_iwarp_msix = min_t(int, (vec / 3),
7652 iwarp_requested);
7653 pf->num_vmdq_vsis = min_t(int, (vec / 3),
7654 I40E_DEFAULT_NUM_VMDQ_VSI);
7655 } else {
7656 pf->num_vmdq_vsis = min_t(int, (vec / 2),
7657 I40E_DEFAULT_NUM_VMDQ_VSI);
7658 }
Stefan Assmannabd97a92016-09-19 13:37:51 +02007659 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7660 pf->num_fdsb_msix = 1;
7661 vec--;
7662 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007663 pf->num_lan_msix = min_t(int,
7664 (vec - (pf->num_iwarp_msix + pf->num_vmdq_vsis)),
7665 pf->num_lan_msix);
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02007666 pf->num_lan_qps = pf->num_lan_msix;
Vasu Dev38e00432014-08-01 13:27:03 -07007667#ifdef I40E_FCOE
7668 /* give one vector to FCoE */
7669 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7670 pf->num_fcoe_msix = 1;
7671 vec--;
7672 }
7673#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007674 break;
7675 }
7676 }
7677
Stefan Assmannabd97a92016-09-19 13:37:51 +02007678 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
7679 (pf->num_fdsb_msix == 0)) {
7680 dev_info(&pf->pdev->dev, "Sideband Flowdir disabled, not enough MSI-X vectors\n");
7681 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
7682 }
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007683 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7684 (pf->num_vmdq_msix == 0)) {
7685 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7686 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7687 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007688
7689 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
7690 (pf->num_iwarp_msix == 0)) {
7691 dev_info(&pf->pdev->dev, "IWARP disabled, not enough MSI-X vectors\n");
7692 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
7693 }
Vasu Dev38e00432014-08-01 13:27:03 -07007694#ifdef I40E_FCOE
7695
7696 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7697 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7698 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7699 }
7700#endif
Stefan Assmann4ce20ab2016-09-19 13:37:50 +02007701 i40e_debug(&pf->hw, I40E_DEBUG_INIT,
7702 "MSI-X vector distribution: PF %d, VMDq %d, FDSB %d, iWARP %d\n",
7703 pf->num_lan_msix,
7704 pf->num_vmdq_msix * pf->num_vmdq_vsis,
7705 pf->num_fdsb_msix,
7706 pf->num_iwarp_msix);
7707
Shannon Nelson3b444392015-02-26 16:15:57 +00007708 return v_actual;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007709}
7710
7711/**
Greg Rose90e04072014-03-06 08:59:57 +00007712 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00007713 * @vsi: the VSI being configured
7714 * @v_idx: index of the vector in the vsi struct
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007715 * @cpu: cpu to be used on affinity_mask
Alexander Duyck493fb302013-09-28 07:01:44 +00007716 *
7717 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7718 **/
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007719static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx, int cpu)
Alexander Duyck493fb302013-09-28 07:01:44 +00007720{
7721 struct i40e_q_vector *q_vector;
7722
7723 /* allocate q_vector */
7724 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7725 if (!q_vector)
7726 return -ENOMEM;
7727
7728 q_vector->vsi = vsi;
7729 q_vector->v_idx = v_idx;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007730 cpumask_set_cpu(cpu, &q_vector->affinity_mask);
7731
Alexander Duyck493fb302013-09-28 07:01:44 +00007732 if (vsi->netdev)
7733 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00007734 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007735
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007736 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7737 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7738
Alexander Duyck493fb302013-09-28 07:01:44 +00007739 /* tie q_vector and vsi together */
7740 vsi->q_vectors[v_idx] = q_vector;
7741
7742 return 0;
7743}
7744
7745/**
Greg Rose90e04072014-03-06 08:59:57 +00007746 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007747 * @vsi: the VSI being configured
7748 *
7749 * We allocate one q_vector per queue interrupt. If allocation fails we
7750 * return -ENOMEM.
7751 **/
Greg Rose90e04072014-03-06 08:59:57 +00007752static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007753{
7754 struct i40e_pf *pf = vsi->back;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007755 int err, v_idx, num_q_vectors, current_cpu;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007756
7757 /* if not MSIX, give the one vector only to the LAN VSI */
7758 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7759 num_q_vectors = vsi->num_q_vectors;
7760 else if (vsi == pf->vsi[pf->lan_vsi])
7761 num_q_vectors = 1;
7762 else
7763 return -EINVAL;
7764
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007765 current_cpu = cpumask_first(cpu_online_mask);
7766
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007767 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007768 err = i40e_vsi_alloc_q_vector(vsi, v_idx, current_cpu);
Alexander Duyck493fb302013-09-28 07:01:44 +00007769 if (err)
7770 goto err_out;
Guilherme G. Piccoli7f6c5532016-06-27 12:16:43 -03007771 current_cpu = cpumask_next(current_cpu, cpu_online_mask);
7772 if (unlikely(current_cpu >= nr_cpu_ids))
7773 current_cpu = cpumask_first(cpu_online_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007774 }
7775
7776 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007777
7778err_out:
7779 while (v_idx--)
7780 i40e_free_q_vector(vsi, v_idx);
7781
7782 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007783}
7784
7785/**
7786 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7787 * @pf: board private structure to initialize
7788 **/
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007789static int i40e_init_interrupt_scheme(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007790{
Shannon Nelson3b444392015-02-26 16:15:57 +00007791 int vectors = 0;
7792 ssize_t size;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007793
7794 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Shannon Nelson3b444392015-02-26 16:15:57 +00007795 vectors = i40e_init_msix(pf);
7796 if (vectors < 0) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007797 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007798 I40E_FLAG_IWARP_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007799#ifdef I40E_FCOE
7800 I40E_FLAG_FCOE_ENABLED |
7801#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007802 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007803 I40E_FLAG_DCB_CAPABLE |
Dave Ertmana0362442016-08-29 17:38:26 -07007804 I40E_FLAG_DCB_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007805 I40E_FLAG_SRIOV_ENABLED |
7806 I40E_FLAG_FD_SB_ENABLED |
7807 I40E_FLAG_FD_ATR_ENABLED |
7808 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007809
7810 /* rework the queue expectations without MSIX */
7811 i40e_determine_queue_usage(pf);
7812 }
7813 }
7814
7815 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7816 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007817 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Shannon Nelson3b444392015-02-26 16:15:57 +00007818 vectors = pci_enable_msi(pf->pdev);
7819 if (vectors < 0) {
7820 dev_info(&pf->pdev->dev, "MSI init failed - %d\n",
7821 vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007822 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7823 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007824 vectors = 1; /* one MSI or Legacy vector */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007825 }
7826
Shannon Nelson958a3e32013-09-28 07:13:28 +00007827 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007828 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007829
Shannon Nelson3b444392015-02-26 16:15:57 +00007830 /* set up vector assignment tracking */
7831 size = sizeof(struct i40e_lump_tracking) + (sizeof(u16) * vectors);
7832 pf->irq_pile = kzalloc(size, GFP_KERNEL);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007833 if (!pf->irq_pile) {
7834 dev_err(&pf->pdev->dev, "error allocating irq_pile memory\n");
7835 return -ENOMEM;
7836 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007837 pf->irq_pile->num_entries = vectors;
7838 pf->irq_pile->search_hint = 0;
7839
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007840 /* track first vector for misc interrupts, ignore return */
Shannon Nelson3b444392015-02-26 16:15:57 +00007841 (void)i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT - 1);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007842
7843 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007844}
7845
7846/**
7847 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7848 * @pf: board private structure
7849 *
7850 * This sets up the handler for MSIX 0, which is used to manage the
7851 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7852 * when in MSI or Legacy interrupt mode.
7853 **/
7854static int i40e_setup_misc_vector(struct i40e_pf *pf)
7855{
7856 struct i40e_hw *hw = &pf->hw;
7857 int err = 0;
7858
7859 /* Only request the irq if this is the first time through, and
7860 * not when we're rebuilding after a Reset
7861 */
7862 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7863 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007864 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007865 if (err) {
7866 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007867 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007868 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007869 return -EFAULT;
7870 }
7871 }
7872
Jacob Kellerab437b52014-12-14 01:55:08 +00007873 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007874
7875 /* associate no queues to the misc vector */
7876 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7877 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7878
7879 i40e_flush(hw);
7880
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08007881 i40e_irq_dynamic_enable_icr0(pf, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007882
7883 return err;
7884}
7885
7886/**
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007887 * i40e_config_rss_aq - Prepare for RSS using AQ commands
7888 * @vsi: vsi structure
7889 * @seed: RSS hash seed
7890 **/
Helin Zhange69ff812015-10-21 19:56:22 -04007891static int i40e_config_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
7892 u8 *lut, u16 lut_size)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007893{
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007894 struct i40e_pf *pf = vsi->back;
7895 struct i40e_hw *hw = &pf->hw;
Jacob Keller776b2e12016-07-19 16:23:30 -07007896 int ret = 0;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007897
Jacob Keller776b2e12016-07-19 16:23:30 -07007898 if (seed) {
7899 struct i40e_aqc_get_set_rss_key_data *seed_dw =
7900 (struct i40e_aqc_get_set_rss_key_data *)seed;
7901 ret = i40e_aq_set_rss_key(hw, vsi->id, seed_dw);
7902 if (ret) {
7903 dev_info(&pf->pdev->dev,
7904 "Cannot set RSS key, err %s aq_err %s\n",
7905 i40e_stat_str(hw, ret),
7906 i40e_aq_str(hw, hw->aq.asq_last_status));
7907 return ret;
7908 }
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007909 }
Jacob Keller776b2e12016-07-19 16:23:30 -07007910 if (lut) {
7911 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007912
Jacob Keller776b2e12016-07-19 16:23:30 -07007913 ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
7914 if (ret) {
7915 dev_info(&pf->pdev->dev,
7916 "Cannot set RSS lut, err %s aq_err %s\n",
7917 i40e_stat_str(hw, ret),
7918 i40e_aq_str(hw, hw->aq.asq_last_status));
7919 return ret;
7920 }
7921 }
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007922 return ret;
7923}
7924
7925/**
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08007926 * i40e_get_rss_aq - Get RSS keys and lut by using AQ commands
7927 * @vsi: Pointer to vsi structure
7928 * @seed: Buffter to store the hash keys
7929 * @lut: Buffer to store the lookup table entries
7930 * @lut_size: Size of buffer to store the lookup table entries
7931 *
7932 * Return 0 on success, negative on failure
7933 */
7934static int i40e_get_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
7935 u8 *lut, u16 lut_size)
7936{
7937 struct i40e_pf *pf = vsi->back;
7938 struct i40e_hw *hw = &pf->hw;
7939 int ret = 0;
7940
7941 if (seed) {
7942 ret = i40e_aq_get_rss_key(hw, vsi->id,
7943 (struct i40e_aqc_get_set_rss_key_data *)seed);
7944 if (ret) {
7945 dev_info(&pf->pdev->dev,
7946 "Cannot get RSS key, err %s aq_err %s\n",
7947 i40e_stat_str(&pf->hw, ret),
7948 i40e_aq_str(&pf->hw,
7949 pf->hw.aq.asq_last_status));
7950 return ret;
7951 }
7952 }
7953
7954 if (lut) {
7955 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
7956
7957 ret = i40e_aq_get_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
7958 if (ret) {
7959 dev_info(&pf->pdev->dev,
7960 "Cannot get RSS lut, err %s aq_err %s\n",
7961 i40e_stat_str(&pf->hw, ret),
7962 i40e_aq_str(&pf->hw,
7963 pf->hw.aq.asq_last_status));
7964 return ret;
7965 }
7966 }
7967
7968 return ret;
7969}
7970
7971/**
Jacob Keller0582b962016-07-19 16:23:29 -07007972 * i40e_vsi_config_rss - Prepare for VSI(VMDq) RSS if used
7973 * @vsi: VSI structure
7974 **/
7975static int i40e_vsi_config_rss(struct i40e_vsi *vsi)
7976{
7977 u8 seed[I40E_HKEY_ARRAY_SIZE];
7978 struct i40e_pf *pf = vsi->back;
7979 u8 *lut;
7980 int ret;
7981
7982 if (!(pf->flags & I40E_FLAG_RSS_AQ_CAPABLE))
7983 return 0;
7984
Jacob Keller552b9962016-07-19 16:23:31 -07007985 if (!vsi->rss_size)
7986 vsi->rss_size = min_t(int, pf->alloc_rss_size,
7987 vsi->num_queue_pairs);
7988 if (!vsi->rss_size)
7989 return -EINVAL;
7990
Jacob Keller0582b962016-07-19 16:23:29 -07007991 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
7992 if (!lut)
7993 return -ENOMEM;
Jacob Keller552b9962016-07-19 16:23:31 -07007994 /* Use the user configured hash keys and lookup table if there is one,
7995 * otherwise use default
7996 */
7997 if (vsi->rss_lut_user)
7998 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
7999 else
8000 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
8001 if (vsi->rss_hkey_user)
8002 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8003 else
8004 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Jacob Keller0582b962016-07-19 16:23:29 -07008005 ret = i40e_config_rss_aq(vsi, seed, lut, vsi->rss_table_size);
8006 kfree(lut);
8007
8008 return ret;
8009}
8010
8011/**
Helin Zhang043dd652015-10-21 19:56:23 -04008012 * i40e_config_rss_reg - Configure RSS keys and lut by writing registers
Helin Zhange69ff812015-10-21 19:56:22 -04008013 * @vsi: Pointer to vsi structure
8014 * @seed: RSS hash seed
8015 * @lut: Lookup table
8016 * @lut_size: Lookup table size
8017 *
8018 * Returns 0 on success, negative on failure
8019 **/
8020static int i40e_config_rss_reg(struct i40e_vsi *vsi, const u8 *seed,
8021 const u8 *lut, u16 lut_size)
8022{
8023 struct i40e_pf *pf = vsi->back;
8024 struct i40e_hw *hw = &pf->hw;
Mitch Williamsc4e18682016-04-12 08:30:40 -07008025 u16 vf_id = vsi->vf_id;
Helin Zhange69ff812015-10-21 19:56:22 -04008026 u8 i;
8027
8028 /* Fill out hash function seed */
8029 if (seed) {
8030 u32 *seed_dw = (u32 *)seed;
8031
Mitch Williamsc4e18682016-04-12 08:30:40 -07008032 if (vsi->type == I40E_VSI_MAIN) {
8033 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
8034 i40e_write_rx_ctl(hw, I40E_PFQF_HKEY(i),
8035 seed_dw[i]);
8036 } else if (vsi->type == I40E_VSI_SRIOV) {
8037 for (i = 0; i <= I40E_VFQF_HKEY1_MAX_INDEX; i++)
8038 i40e_write_rx_ctl(hw,
8039 I40E_VFQF_HKEY1(i, vf_id),
8040 seed_dw[i]);
8041 } else {
8042 dev_err(&pf->pdev->dev, "Cannot set RSS seed - invalid VSI type\n");
8043 }
Helin Zhange69ff812015-10-21 19:56:22 -04008044 }
8045
8046 if (lut) {
8047 u32 *lut_dw = (u32 *)lut;
8048
Mitch Williamsc4e18682016-04-12 08:30:40 -07008049 if (vsi->type == I40E_VSI_MAIN) {
8050 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8051 return -EINVAL;
8052 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8053 wr32(hw, I40E_PFQF_HLUT(i), lut_dw[i]);
8054 } else if (vsi->type == I40E_VSI_SRIOV) {
8055 if (lut_size != I40E_VF_HLUT_ARRAY_SIZE)
8056 return -EINVAL;
8057 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
8058 i40e_write_rx_ctl(hw,
8059 I40E_VFQF_HLUT1(i, vf_id),
8060 lut_dw[i]);
8061 } else {
8062 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
8063 }
Helin Zhange69ff812015-10-21 19:56:22 -04008064 }
8065 i40e_flush(hw);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008066
8067 return 0;
8068}
8069
8070/**
Helin Zhang043dd652015-10-21 19:56:23 -04008071 * i40e_get_rss_reg - Get the RSS keys and lut by reading registers
8072 * @vsi: Pointer to VSI structure
8073 * @seed: Buffer to store the keys
8074 * @lut: Buffer to store the lookup table entries
8075 * @lut_size: Size of buffer to store the lookup table entries
8076 *
8077 * Returns 0 on success, negative on failure
8078 */
8079static int i40e_get_rss_reg(struct i40e_vsi *vsi, u8 *seed,
8080 u8 *lut, u16 lut_size)
8081{
8082 struct i40e_pf *pf = vsi->back;
8083 struct i40e_hw *hw = &pf->hw;
8084 u16 i;
8085
8086 if (seed) {
8087 u32 *seed_dw = (u32 *)seed;
8088
8089 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008090 seed_dw[i] = i40e_read_rx_ctl(hw, I40E_PFQF_HKEY(i));
Helin Zhang043dd652015-10-21 19:56:23 -04008091 }
8092 if (lut) {
8093 u32 *lut_dw = (u32 *)lut;
8094
8095 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8096 return -EINVAL;
8097 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8098 lut_dw[i] = rd32(hw, I40E_PFQF_HLUT(i));
8099 }
8100
8101 return 0;
8102}
8103
8104/**
8105 * i40e_config_rss - Configure RSS keys and lut
8106 * @vsi: Pointer to VSI structure
8107 * @seed: RSS hash seed
8108 * @lut: Lookup table
8109 * @lut_size: Lookup table size
8110 *
8111 * Returns 0 on success, negative on failure
8112 */
8113int i40e_config_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8114{
8115 struct i40e_pf *pf = vsi->back;
8116
8117 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
8118 return i40e_config_rss_aq(vsi, seed, lut, lut_size);
8119 else
8120 return i40e_config_rss_reg(vsi, seed, lut, lut_size);
8121}
8122
8123/**
8124 * i40e_get_rss - Get RSS keys and lut
8125 * @vsi: Pointer to VSI structure
8126 * @seed: Buffer to store the keys
8127 * @lut: Buffer to store the lookup table entries
8128 * lut_size: Size of buffer to store the lookup table entries
8129 *
8130 * Returns 0 on success, negative on failure
8131 */
8132int i40e_get_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8133{
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008134 struct i40e_pf *pf = vsi->back;
8135
8136 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
8137 return i40e_get_rss_aq(vsi, seed, lut, lut_size);
8138 else
8139 return i40e_get_rss_reg(vsi, seed, lut, lut_size);
Helin Zhang043dd652015-10-21 19:56:23 -04008140}
8141
8142/**
Helin Zhange69ff812015-10-21 19:56:22 -04008143 * i40e_fill_rss_lut - Fill the RSS lookup table with default values
8144 * @pf: Pointer to board private structure
8145 * @lut: Lookup table
8146 * @rss_table_size: Lookup table size
8147 * @rss_size: Range of queue number for hashing
8148 */
Alan Bradyf1582352016-08-24 11:33:46 -07008149void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
8150 u16 rss_table_size, u16 rss_size)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008151{
Helin Zhange69ff812015-10-21 19:56:22 -04008152 u16 i;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008153
Helin Zhange69ff812015-10-21 19:56:22 -04008154 for (i = 0; i < rss_table_size; i++)
8155 lut[i] = i % rss_size;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008156}
8157
8158/**
Helin Zhang043dd652015-10-21 19:56:23 -04008159 * i40e_pf_config_rss - Prepare for RSS if used
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008160 * @pf: board private structure
8161 **/
Helin Zhang043dd652015-10-21 19:56:23 -04008162static int i40e_pf_config_rss(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008163{
Anjali Singhai Jain66ddcff2015-02-24 06:58:50 +00008164 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008165 u8 seed[I40E_HKEY_ARRAY_SIZE];
Helin Zhange69ff812015-10-21 19:56:22 -04008166 u8 *lut;
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00008167 struct i40e_hw *hw = &pf->hw;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008168 u32 reg_val;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008169 u64 hena;
Helin Zhange69ff812015-10-21 19:56:22 -04008170 int ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008171
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008172 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008173 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
8174 ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008175 hena |= i40e_pf_get_default_rss_hena(pf);
8176
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008177 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena);
8178 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008179
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008180 /* Determine the RSS table size based on the hardware capabilities */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008181 reg_val = i40e_read_rx_ctl(hw, I40E_PFQF_CTL_0);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008182 reg_val = (pf->rss_table_size == 512) ?
8183 (reg_val | I40E_PFQF_CTL_0_HASHLUTSIZE_512) :
8184 (reg_val & ~I40E_PFQF_CTL_0_HASHLUTSIZE_512);
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008185 i40e_write_rx_ctl(hw, I40E_PFQF_CTL_0, reg_val);
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008186
Helin Zhang28c58692015-10-26 19:44:27 -04008187 /* Determine the RSS size of the VSI */
8188 if (!vsi->rss_size)
Helin Zhangacd65442015-10-26 19:44:28 -04008189 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8190 vsi->num_queue_pairs);
Mitch Williamsa4fa59c2016-09-12 14:18:43 -07008191 if (!vsi->rss_size)
8192 return -EINVAL;
Helin Zhang28c58692015-10-26 19:44:27 -04008193
Helin Zhange69ff812015-10-21 19:56:22 -04008194 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8195 if (!lut)
8196 return -ENOMEM;
8197
Helin Zhang28c58692015-10-26 19:44:27 -04008198 /* Use user configured lut if there is one, otherwise use default */
8199 if (vsi->rss_lut_user)
8200 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8201 else
8202 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008203
Helin Zhang28c58692015-10-26 19:44:27 -04008204 /* Use user configured hash key if there is one, otherwise
8205 * use default.
8206 */
8207 if (vsi->rss_hkey_user)
8208 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8209 else
8210 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhang043dd652015-10-21 19:56:23 -04008211 ret = i40e_config_rss(vsi, seed, lut, vsi->rss_table_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008212 kfree(lut);
8213
8214 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008215}
8216
8217/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008218 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
8219 * @pf: board private structure
8220 * @queue_count: the requested queue count for rss.
8221 *
8222 * returns 0 if rss is not enabled, if enabled returns the final rss queue
8223 * count which may be different from the requested queue count.
8224 **/
8225int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
8226{
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008227 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
8228 int new_rss_size;
8229
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008230 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
8231 return 0;
8232
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008233 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008234
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008235 if (queue_count != vsi->num_queue_pairs) {
8236 vsi->req_queue_pairs = queue_count;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008237 i40e_prep_for_reset(pf);
8238
Helin Zhangacd65442015-10-26 19:44:28 -04008239 pf->alloc_rss_size = new_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008240
8241 i40e_reset_and_rebuild(pf, true);
Helin Zhang28c58692015-10-26 19:44:27 -04008242
8243 /* Discard the user configured hash keys and lut, if less
8244 * queues are enabled.
8245 */
8246 if (queue_count < vsi->rss_size) {
8247 i40e_clear_rss_config_user(vsi);
8248 dev_dbg(&pf->pdev->dev,
8249 "discard user configured hash keys and lut\n");
8250 }
8251
8252 /* Reset vsi->rss_size, as number of enabled queues changed */
Helin Zhangacd65442015-10-26 19:44:28 -04008253 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8254 vsi->num_queue_pairs);
Helin Zhang28c58692015-10-26 19:44:27 -04008255
Helin Zhang043dd652015-10-21 19:56:23 -04008256 i40e_pf_config_rss(pf);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008257 }
Lihong Yang12815052016-09-27 11:28:48 -07008258 dev_info(&pf->pdev->dev, "User requested queue count/HW max RSS count: %d/%d\n",
8259 vsi->req_queue_pairs, pf->rss_size_max);
Helin Zhangacd65442015-10-26 19:44:28 -04008260 return pf->alloc_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008261}
8262
8263/**
Greg Rosef4492db2015-02-06 08:52:12 +00008264 * i40e_get_npar_bw_setting - Retrieve BW settings for this PF partition
8265 * @pf: board private structure
8266 **/
8267i40e_status i40e_get_npar_bw_setting(struct i40e_pf *pf)
8268{
8269 i40e_status status;
8270 bool min_valid, max_valid;
8271 u32 max_bw, min_bw;
8272
8273 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
8274 &min_valid, &max_valid);
8275
8276 if (!status) {
8277 if (min_valid)
8278 pf->npar_min_bw = min_bw;
8279 if (max_valid)
8280 pf->npar_max_bw = max_bw;
8281 }
8282
8283 return status;
8284}
8285
8286/**
8287 * i40e_set_npar_bw_setting - Set BW settings for this PF partition
8288 * @pf: board private structure
8289 **/
8290i40e_status i40e_set_npar_bw_setting(struct i40e_pf *pf)
8291{
8292 struct i40e_aqc_configure_partition_bw_data bw_data;
8293 i40e_status status;
8294
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00008295 /* Set the valid bit for this PF */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008296 bw_data.pf_valid_bits = cpu_to_le16(BIT(pf->hw.pf_id));
Greg Rosef4492db2015-02-06 08:52:12 +00008297 bw_data.max_bw[pf->hw.pf_id] = pf->npar_max_bw & I40E_ALT_BW_VALUE_MASK;
8298 bw_data.min_bw[pf->hw.pf_id] = pf->npar_min_bw & I40E_ALT_BW_VALUE_MASK;
8299
8300 /* Set the new bandwidths */
8301 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
8302
8303 return status;
8304}
8305
8306/**
8307 * i40e_commit_npar_bw_setting - Commit BW settings for this PF partition
8308 * @pf: board private structure
8309 **/
8310i40e_status i40e_commit_npar_bw_setting(struct i40e_pf *pf)
8311{
8312 /* Commit temporary BW setting to permanent NVM image */
8313 enum i40e_admin_queue_err last_aq_status;
8314 i40e_status ret;
8315 u16 nvm_word;
8316
8317 if (pf->hw.partition_id != 1) {
8318 dev_info(&pf->pdev->dev,
8319 "Commit BW only works on partition 1! This is partition %d",
8320 pf->hw.partition_id);
8321 ret = I40E_NOT_SUPPORTED;
8322 goto bw_commit_out;
8323 }
8324
8325 /* Acquire NVM for read access */
8326 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
8327 last_aq_status = pf->hw.aq.asq_last_status;
8328 if (ret) {
8329 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008330 "Cannot acquire NVM for read access, err %s aq_err %s\n",
8331 i40e_stat_str(&pf->hw, ret),
8332 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008333 goto bw_commit_out;
8334 }
8335
8336 /* Read word 0x10 of NVM - SW compatibility word 1 */
8337 ret = i40e_aq_read_nvm(&pf->hw,
8338 I40E_SR_NVM_CONTROL_WORD,
8339 0x10, sizeof(nvm_word), &nvm_word,
8340 false, NULL);
8341 /* Save off last admin queue command status before releasing
8342 * the NVM
8343 */
8344 last_aq_status = pf->hw.aq.asq_last_status;
8345 i40e_release_nvm(&pf->hw);
8346 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008347 dev_info(&pf->pdev->dev, "NVM read error, err %s aq_err %s\n",
8348 i40e_stat_str(&pf->hw, ret),
8349 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008350 goto bw_commit_out;
8351 }
8352
8353 /* Wait a bit for NVM release to complete */
8354 msleep(50);
8355
8356 /* Acquire NVM for write access */
8357 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
8358 last_aq_status = pf->hw.aq.asq_last_status;
8359 if (ret) {
8360 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008361 "Cannot acquire NVM for write access, err %s aq_err %s\n",
8362 i40e_stat_str(&pf->hw, ret),
8363 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008364 goto bw_commit_out;
8365 }
8366 /* Write it back out unchanged to initiate update NVM,
8367 * which will force a write of the shadow (alt) RAM to
8368 * the NVM - thus storing the bandwidth values permanently.
8369 */
8370 ret = i40e_aq_update_nvm(&pf->hw,
8371 I40E_SR_NVM_CONTROL_WORD,
8372 0x10, sizeof(nvm_word),
8373 &nvm_word, true, NULL);
8374 /* Save off last admin queue command status before releasing
8375 * the NVM
8376 */
8377 last_aq_status = pf->hw.aq.asq_last_status;
8378 i40e_release_nvm(&pf->hw);
8379 if (ret)
8380 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008381 "BW settings NOT SAVED, err %s aq_err %s\n",
8382 i40e_stat_str(&pf->hw, ret),
8383 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008384bw_commit_out:
8385
8386 return ret;
8387}
8388
8389/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008390 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
8391 * @pf: board private structure to initialize
8392 *
8393 * i40e_sw_init initializes the Adapter private data structure.
8394 * Fields are initialized based on PCI device information and
8395 * OS network device settings (MTU size).
8396 **/
8397static int i40e_sw_init(struct i40e_pf *pf)
8398{
8399 int err = 0;
8400 int size;
8401
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008402 /* Set default capability flags */
8403 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
8404 I40E_FLAG_MSI_ENABLED |
Mitch Williams2bc7ee82015-02-06 08:52:11 +00008405 I40E_FLAG_MSIX_ENABLED;
8406
Mitch Williamsca99eb92014-04-04 04:43:07 +00008407 /* Set default ITR */
8408 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
8409 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
8410
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008411 /* Depending on PF configurations, it is possible that the RSS
8412 * maximum might end up larger than the available queues
8413 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008414 pf->rss_size_max = BIT(pf->hw.func_caps.rss_table_entry_width);
Helin Zhangacd65442015-10-26 19:44:28 -04008415 pf->alloc_rss_size = 1;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00008416 pf->rss_table_size = pf->hw.func_caps.rss_table_size;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008417 pf->rss_size_max = min_t(int, pf->rss_size_max,
8418 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008419 if (pf->hw.func_caps.rss) {
8420 pf->flags |= I40E_FLAG_RSS_ENABLED;
Helin Zhangacd65442015-10-26 19:44:28 -04008421 pf->alloc_rss_size = min_t(int, pf->rss_size_max,
8422 num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008423 }
8424
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008425 /* MFP mode enabled */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04008426 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.flex10_enable) {
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008427 pf->flags |= I40E_FLAG_MFP_ENABLED;
8428 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
Greg Rosef4492db2015-02-06 08:52:12 +00008429 if (i40e_get_npar_bw_setting(pf))
8430 dev_warn(&pf->pdev->dev,
8431 "Could not get NPAR bw settings\n");
8432 else
8433 dev_info(&pf->pdev->dev,
8434 "Min BW = %8.8x, Max BW = %8.8x\n",
8435 pf->npar_min_bw, pf->npar_max_bw);
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008436 }
8437
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008438 /* FW/NVM is not yet fixed in this regard */
8439 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
8440 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
8441 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
8442 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008443 if (pf->flags & I40E_FLAG_MFP_ENABLED &&
8444 pf->hw.num_partitions > 1)
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008445 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00008446 "Flow Director Sideband mode Disabled in MFP mode\n");
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008447 else
8448 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008449 pf->fdir_pf_filter_count =
8450 pf->hw.func_caps.fd_filters_guaranteed;
8451 pf->hw.fdir_shared_filter_count =
8452 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008453 }
8454
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008455 if (i40e_is_mac_710(&pf->hw) &&
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008456 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008457 (pf->hw.aq.fw_maj_ver < 4))) {
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008458 pf->flags |= I40E_FLAG_RESTART_AUTONEG;
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008459 /* No DCB support for FW < v4.33 */
8460 pf->flags |= I40E_FLAG_NO_DCB_SUPPORT;
8461 }
8462
8463 /* Disable FW LLDP if FW < v4.3 */
8464 if (i40e_is_mac_710(&pf->hw) &&
8465 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
8466 (pf->hw.aq.fw_maj_ver < 4)))
8467 pf->flags |= I40E_FLAG_STOP_FW_LLDP;
8468
8469 /* Use the FW Set LLDP MIB API if FW > v4.40 */
8470 if (i40e_is_mac_710(&pf->hw) &&
8471 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver >= 40)) ||
8472 (pf->hw.aq.fw_maj_ver >= 5)))
8473 pf->flags |= I40E_FLAG_USE_SET_LLDP_MIB;
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008474
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008475 if (pf->hw.func_caps.vmdq) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008476 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008477 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
Jesse Brandeburge9e53662015-10-02 17:57:21 -07008478 pf->num_vmdq_qps = i40e_default_queues_per_vmdq(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008479 }
8480
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008481 if (pf->hw.func_caps.iwarp) {
8482 pf->flags |= I40E_FLAG_IWARP_ENABLED;
8483 /* IWARP needs one extra vector for CQP just like MISC.*/
8484 pf->num_iwarp_msix = (int)num_online_cpus() + 1;
8485 }
8486
Vasu Dev38e00432014-08-01 13:27:03 -07008487#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04008488 i40e_init_pf_fcoe(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07008489
8490#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008491#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f132014-12-11 07:06:34 +00008492 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008493 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
8494 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
8495 pf->num_req_vfs = min_t(int,
8496 pf->hw.func_caps.num_vfs,
8497 I40E_MAX_VF_COUNT);
8498 }
8499#endif /* CONFIG_PCI_IOV */
Anjali Singhai Jaind502ce02015-06-05 12:20:26 -04008500 if (pf->hw.mac.type == I40E_MAC_X722) {
8501 pf->flags |= I40E_FLAG_RSS_AQ_CAPABLE |
8502 I40E_FLAG_128_QP_RSS_CAPABLE |
8503 I40E_FLAG_HW_ATR_EVICT_CAPABLE |
8504 I40E_FLAG_OUTER_UDP_CSUM_CAPABLE |
8505 I40E_FLAG_WB_ON_ITR_CAPABLE |
Singhai, Anjali6a899022015-12-14 12:21:18 -08008506 I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE |
Jesse Brandeburg8e2cc0e2016-02-29 11:00:24 -08008507 I40E_FLAG_NO_PCI_LINK_CHECK |
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008508 I40E_FLAG_USE_SET_LLDP_MIB |
Singhai, Anjali6a899022015-12-14 12:21:18 -08008509 I40E_FLAG_GENEVE_OFFLOAD_CAPABLE;
Anjali Singhaia340c782016-01-06 11:49:28 -08008510 } else if ((pf->hw.aq.api_maj_ver > 1) ||
8511 ((pf->hw.aq.api_maj_ver == 1) &&
8512 (pf->hw.aq.api_min_ver > 4))) {
8513 /* Supported in FW API version higher than 1.4 */
8514 pf->flags |= I40E_FLAG_GENEVE_OFFLOAD_CAPABLE;
Anjali Singhai Jain72b74862016-01-08 17:50:21 -08008515 pf->auto_disable_flags = I40E_FLAG_HW_ATR_EVICT_CAPABLE;
8516 } else {
8517 pf->auto_disable_flags = I40E_FLAG_HW_ATR_EVICT_CAPABLE;
Anjali Singhai Jaind502ce02015-06-05 12:20:26 -04008518 }
Anjali Singhaia340c782016-01-06 11:49:28 -08008519
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008520 pf->eeprom_version = 0xDEAD;
8521 pf->lan_veb = I40E_NO_VEB;
8522 pf->lan_vsi = I40E_NO_VSI;
8523
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04008524 /* By default FW has this off for performance reasons */
8525 pf->flags &= ~I40E_FLAG_VEB_STATS_ENABLED;
8526
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008527 /* set up queue assignment tracking */
8528 size = sizeof(struct i40e_lump_tracking)
8529 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
8530 pf->qp_pile = kzalloc(size, GFP_KERNEL);
8531 if (!pf->qp_pile) {
8532 err = -ENOMEM;
8533 goto sw_init_done;
8534 }
8535 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
8536 pf->qp_pile->search_hint = 0;
8537
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00008538 pf->tx_timeout_recovery_level = 1;
8539
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008540 mutex_init(&pf->switch_mutex);
8541
Greg Rosec668a122015-02-26 16:10:39 +00008542 /* If NPAR is enabled nudge the Tx scheduler */
8543 if (pf->hw.func_caps.npar_enable && (!i40e_get_npar_bw_setting(pf)))
8544 i40e_set_npar_bw_setting(pf);
8545
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008546sw_init_done:
8547 return err;
8548}
8549
8550/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008551 * i40e_set_ntuple - set the ntuple feature flag and take action
8552 * @pf: board private structure to initialize
8553 * @features: the feature set that the stack is suggesting
8554 *
8555 * returns a bool to indicate if reset needs to happen
8556 **/
8557bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
8558{
8559 bool need_reset = false;
8560
8561 /* Check if Flow Director n-tuple support was enabled or disabled. If
8562 * the state changed, we need to reset.
8563 */
8564 if (features & NETIF_F_NTUPLE) {
8565 /* Enable filters and mark for reset */
8566 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
8567 need_reset = true;
Tushar Davea70e4072016-05-16 12:40:53 -07008568 /* enable FD_SB only if there is MSI-X vector */
8569 if (pf->num_fdsb_msix > 0)
8570 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008571 } else {
8572 /* turn off filters, mark for reset and clear SW filter list */
8573 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8574 need_reset = true;
8575 i40e_fdir_filter_exit(pf);
8576 }
8577 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008578 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00008579 /* reset fd counters */
8580 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
8581 pf->fdir_pf_active_filters = 0;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008582 /* if ATR was auto disabled it can be re-enabled. */
8583 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
Jacob Keller234dc4e2016-09-06 18:05:09 -07008584 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008585 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Jacob Keller234dc4e2016-09-06 18:05:09 -07008586 if (I40E_DEBUG_FD & pf->hw.debug_mask)
8587 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
8588 }
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008589 }
8590 return need_reset;
8591}
8592
8593/**
Alan Bradyd8ec9862016-07-27 12:02:38 -07008594 * i40e_clear_rss_lut - clear the rx hash lookup table
8595 * @vsi: the VSI being configured
8596 **/
8597static void i40e_clear_rss_lut(struct i40e_vsi *vsi)
8598{
8599 struct i40e_pf *pf = vsi->back;
8600 struct i40e_hw *hw = &pf->hw;
8601 u16 vf_id = vsi->vf_id;
8602 u8 i;
8603
8604 if (vsi->type == I40E_VSI_MAIN) {
8605 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8606 wr32(hw, I40E_PFQF_HLUT(i), 0);
8607 } else if (vsi->type == I40E_VSI_SRIOV) {
8608 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
8609 i40e_write_rx_ctl(hw, I40E_VFQF_HLUT1(i, vf_id), 0);
8610 } else {
8611 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
8612 }
8613}
8614
8615/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008616 * i40e_set_features - set the netdev feature flags
8617 * @netdev: ptr to the netdev being adjusted
8618 * @features: the feature set that the stack is suggesting
8619 **/
8620static int i40e_set_features(struct net_device *netdev,
8621 netdev_features_t features)
8622{
8623 struct i40e_netdev_priv *np = netdev_priv(netdev);
8624 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008625 struct i40e_pf *pf = vsi->back;
8626 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008627
Alan Bradyd8ec9862016-07-27 12:02:38 -07008628 if (features & NETIF_F_RXHASH && !(netdev->features & NETIF_F_RXHASH))
8629 i40e_pf_config_rss(pf);
8630 else if (!(features & NETIF_F_RXHASH) &&
8631 netdev->features & NETIF_F_RXHASH)
8632 i40e_clear_rss_lut(vsi);
8633
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008634 if (features & NETIF_F_HW_VLAN_CTAG_RX)
8635 i40e_vlan_stripping_enable(vsi);
8636 else
8637 i40e_vlan_stripping_disable(vsi);
8638
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008639 need_reset = i40e_set_ntuple(pf, features);
8640
8641 if (need_reset)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008642 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008643
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008644 return 0;
8645}
8646
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008647/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08008648 * i40e_get_udp_port_idx - Lookup a possibly offloaded for Rx UDP port
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008649 * @pf: board private structure
8650 * @port: The UDP port to look up
8651 *
8652 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
8653 **/
Singhai, Anjali6a899022015-12-14 12:21:18 -08008654static u8 i40e_get_udp_port_idx(struct i40e_pf *pf, __be16 port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008655{
8656 u8 i;
8657
8658 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Singhai, Anjali6a899022015-12-14 12:21:18 -08008659 if (pf->udp_ports[i].index == port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008660 return i;
8661 }
8662
8663 return i;
8664}
8665
8666/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008667 * i40e_udp_tunnel_add - Get notifications about UDP tunnel ports that come up
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008668 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008669 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008670 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008671static void i40e_udp_tunnel_add(struct net_device *netdev,
8672 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008673{
8674 struct i40e_netdev_priv *np = netdev_priv(netdev);
8675 struct i40e_vsi *vsi = np->vsi;
8676 struct i40e_pf *pf = vsi->back;
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008677 __be16 port = ti->port;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008678 u8 next_idx;
8679 u8 idx;
8680
Singhai, Anjali6a899022015-12-14 12:21:18 -08008681 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008682
8683 /* Check if port already exists */
8684 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008685 netdev_info(netdev, "port %d already offloaded\n",
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07008686 ntohs(port));
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008687 return;
8688 }
8689
8690 /* Now check if there is space to add the new port */
Singhai, Anjali6a899022015-12-14 12:21:18 -08008691 next_idx = i40e_get_udp_port_idx(pf, 0);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008692
8693 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008694 netdev_info(netdev, "maximum number of offloaded UDP ports reached, not adding port %d\n",
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008695 ntohs(port));
8696 return;
8697 }
8698
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008699 switch (ti->type) {
8700 case UDP_TUNNEL_TYPE_VXLAN:
8701 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_VXLAN;
8702 break;
8703 case UDP_TUNNEL_TYPE_GENEVE:
8704 if (!(pf->flags & I40E_FLAG_GENEVE_OFFLOAD_CAPABLE))
8705 return;
8706 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_NGE;
8707 break;
8708 default:
8709 return;
8710 }
8711
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008712 /* New port: add it and mark its index in the bitmap */
Singhai, Anjali6a899022015-12-14 12:21:18 -08008713 pf->udp_ports[next_idx].index = port;
Singhai, Anjali6a899022015-12-14 12:21:18 -08008714 pf->pending_udp_bitmap |= BIT_ULL(next_idx);
8715 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008716}
8717
8718/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008719 * i40e_udp_tunnel_del - Get notifications about UDP tunnel ports that go away
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008720 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008721 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008722 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008723static void i40e_udp_tunnel_del(struct net_device *netdev,
8724 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008725{
8726 struct i40e_netdev_priv *np = netdev_priv(netdev);
8727 struct i40e_vsi *vsi = np->vsi;
8728 struct i40e_pf *pf = vsi->back;
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008729 __be16 port = ti->port;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008730 u8 idx;
8731
Singhai, Anjali6a899022015-12-14 12:21:18 -08008732 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008733
8734 /* Check if port already exists */
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008735 if (idx >= I40E_MAX_PF_UDP_OFFLOAD_PORTS)
8736 goto not_found;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008737
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008738 switch (ti->type) {
8739 case UDP_TUNNEL_TYPE_VXLAN:
8740 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_VXLAN)
8741 goto not_found;
8742 break;
8743 case UDP_TUNNEL_TYPE_GENEVE:
8744 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_NGE)
8745 goto not_found;
8746 break;
8747 default:
8748 goto not_found;
Singhai, Anjali6a899022015-12-14 12:21:18 -08008749 }
8750
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008751 /* if port exists, set it to 0 (mark for deletion)
8752 * and make it pending
8753 */
8754 pf->udp_ports[idx].index = 0;
8755 pf->pending_udp_bitmap |= BIT_ULL(idx);
Singhai, Anjali6a899022015-12-14 12:21:18 -08008756 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
8757
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008758 return;
8759not_found:
8760 netdev_warn(netdev, "UDP port %d was not found, not deleting\n",
8761 ntohs(port));
Singhai, Anjali6a899022015-12-14 12:21:18 -08008762}
8763
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008764static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01008765 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008766{
8767 struct i40e_netdev_priv *np = netdev_priv(netdev);
8768 struct i40e_pf *pf = np->vsi->back;
8769 struct i40e_hw *hw = &pf->hw;
8770
8771 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
8772 return -EOPNOTSUPP;
8773
8774 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
8775 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
8776
8777 return 0;
8778}
8779
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08008780/**
8781 * i40e_ndo_fdb_add - add an entry to the hardware database
8782 * @ndm: the input from the stack
8783 * @tb: pointer to array of nladdr (unused)
8784 * @dev: the net device pointer
8785 * @addr: the MAC address entry being added
8786 * @flags: instructions from stack about fdb operation
8787 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00008788static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
8789 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01008790 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00008791 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00008792{
8793 struct i40e_netdev_priv *np = netdev_priv(dev);
8794 struct i40e_pf *pf = np->vsi->back;
8795 int err = 0;
8796
8797 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
8798 return -EOPNOTSUPP;
8799
Or Gerlitz65891fe2014-12-14 18:19:05 +02008800 if (vid) {
8801 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
8802 return -EINVAL;
8803 }
8804
Greg Rose4ba0dea2014-03-06 08:59:55 +00008805 /* Hardware does not support aging addresses so if a
8806 * ndm_state is given only allow permanent addresses
8807 */
8808 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
8809 netdev_info(dev, "FDB only supports static addresses\n");
8810 return -EINVAL;
8811 }
8812
8813 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
8814 err = dev_uc_add_excl(dev, addr);
8815 else if (is_multicast_ether_addr(addr))
8816 err = dev_mc_add_excl(dev, addr);
8817 else
8818 err = -EINVAL;
8819
8820 /* Only return duplicate errors if NLM_F_EXCL is set */
8821 if (err == -EEXIST && !(flags & NLM_F_EXCL))
8822 err = 0;
8823
8824 return err;
8825}
8826
Neerav Parikh51616012015-02-06 08:52:14 +00008827/**
8828 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
8829 * @dev: the netdev being configured
8830 * @nlh: RTNL message
8831 *
8832 * Inserts a new hardware bridge if not already created and
8833 * enables the bridging mode requested (VEB or VEPA). If the
8834 * hardware bridge has already been inserted and the request
8835 * is to change the mode then that requires a PF reset to
8836 * allow rebuild of the components with required hardware
8837 * bridge mode enabled.
8838 **/
8839static int i40e_ndo_bridge_setlink(struct net_device *dev,
Carolyn Wyborny9df70b62015-04-27 14:57:11 -04008840 struct nlmsghdr *nlh,
8841 u16 flags)
Neerav Parikh51616012015-02-06 08:52:14 +00008842{
8843 struct i40e_netdev_priv *np = netdev_priv(dev);
8844 struct i40e_vsi *vsi = np->vsi;
8845 struct i40e_pf *pf = vsi->back;
8846 struct i40e_veb *veb = NULL;
8847 struct nlattr *attr, *br_spec;
8848 int i, rem;
8849
8850 /* Only for PF VSI for now */
8851 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8852 return -EOPNOTSUPP;
8853
8854 /* Find the HW bridge for PF VSI */
8855 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8856 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8857 veb = pf->veb[i];
8858 }
8859
8860 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
8861
8862 nla_for_each_nested(attr, br_spec, rem) {
8863 __u16 mode;
8864
8865 if (nla_type(attr) != IFLA_BRIDGE_MODE)
8866 continue;
8867
8868 mode = nla_get_u16(attr);
8869 if ((mode != BRIDGE_MODE_VEPA) &&
8870 (mode != BRIDGE_MODE_VEB))
8871 return -EINVAL;
8872
8873 /* Insert a new HW bridge */
8874 if (!veb) {
8875 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8876 vsi->tc_config.enabled_tc);
8877 if (veb) {
8878 veb->bridge_mode = mode;
8879 i40e_config_bridge_mode(veb);
8880 } else {
8881 /* No Bridge HW offload available */
8882 return -ENOENT;
8883 }
8884 break;
8885 } else if (mode != veb->bridge_mode) {
8886 /* Existing HW bridge but different mode needs reset */
8887 veb->bridge_mode = mode;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07008888 /* TODO: If no VFs or VMDq VSIs, disallow VEB mode */
8889 if (mode == BRIDGE_MODE_VEB)
8890 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
8891 else
8892 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
8893 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Neerav Parikh51616012015-02-06 08:52:14 +00008894 break;
8895 }
8896 }
8897
8898 return 0;
8899}
8900
8901/**
8902 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
8903 * @skb: skb buff
8904 * @pid: process id
8905 * @seq: RTNL message seq #
8906 * @dev: the netdev being configured
8907 * @filter_mask: unused
Jesse Brandeburgd4b2f9f2015-09-03 17:18:48 -04008908 * @nlflags: netlink flags passed in
Neerav Parikh51616012015-02-06 08:52:14 +00008909 *
8910 * Return the mode in which the hardware bridge is operating in
8911 * i.e VEB or VEPA.
8912 **/
Neerav Parikh51616012015-02-06 08:52:14 +00008913static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
8914 struct net_device *dev,
Carolyn Wyborny9f4ffc42015-08-31 19:54:42 -04008915 u32 __always_unused filter_mask,
8916 int nlflags)
Neerav Parikh51616012015-02-06 08:52:14 +00008917{
8918 struct i40e_netdev_priv *np = netdev_priv(dev);
8919 struct i40e_vsi *vsi = np->vsi;
8920 struct i40e_pf *pf = vsi->back;
8921 struct i40e_veb *veb = NULL;
8922 int i;
8923
8924 /* Only for PF VSI for now */
8925 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8926 return -EOPNOTSUPP;
8927
8928 /* Find the HW bridge for the PF VSI */
8929 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8930 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8931 veb = pf->veb[i];
8932 }
8933
8934 if (!veb)
8935 return 0;
8936
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02008937 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
Huaibin Wang599b0762016-09-26 09:51:18 +02008938 0, 0, nlflags, filter_mask, NULL);
Neerav Parikh51616012015-02-06 08:52:14 +00008939}
Neerav Parikh51616012015-02-06 08:52:14 +00008940
Singhai, Anjali6a899022015-12-14 12:21:18 -08008941/* Hardware supports L4 tunnel length of 128B (=2^7) which includes
8942 * inner mac plus all inner ethertypes.
8943 */
8944#define I40E_MAX_TUNNEL_HDR_LEN 128
Joe Stringerf44a75e2015-04-14 17:09:14 -07008945/**
8946 * i40e_features_check - Validate encapsulated packet conforms to limits
8947 * @skb: skb buff
Jean Sacren2bc11c62015-09-19 05:08:43 -06008948 * @dev: This physical port's netdev
Joe Stringerf44a75e2015-04-14 17:09:14 -07008949 * @features: Offload features that the stack believes apply
8950 **/
8951static netdev_features_t i40e_features_check(struct sk_buff *skb,
8952 struct net_device *dev,
8953 netdev_features_t features)
8954{
8955 if (skb->encapsulation &&
Singhai, Anjali6a899022015-12-14 12:21:18 -08008956 ((skb_inner_network_header(skb) - skb_transport_header(skb)) >
Joe Stringerf44a75e2015-04-14 17:09:14 -07008957 I40E_MAX_TUNNEL_HDR_LEN))
Tom Herberta1882222015-12-14 11:19:43 -08008958 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Joe Stringerf44a75e2015-04-14 17:09:14 -07008959
8960 return features;
8961}
8962
Shannon Nelson37a29732015-02-27 09:15:19 +00008963static const struct net_device_ops i40e_netdev_ops = {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008964 .ndo_open = i40e_open,
8965 .ndo_stop = i40e_close,
8966 .ndo_start_xmit = i40e_lan_xmit_frame,
8967 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
8968 .ndo_set_rx_mode = i40e_set_rx_mode,
8969 .ndo_validate_addr = eth_validate_addr,
8970 .ndo_set_mac_address = i40e_set_mac,
8971 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008972 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008973 .ndo_tx_timeout = i40e_tx_timeout,
8974 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
8975 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
8976#ifdef CONFIG_NET_POLL_CONTROLLER
8977 .ndo_poll_controller = i40e_netpoll,
8978#endif
John Fastabende4c67342016-02-16 21:16:15 -08008979 .ndo_setup_tc = __i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07008980#ifdef I40E_FCOE
8981 .ndo_fcoe_enable = i40e_fcoe_enable,
8982 .ndo_fcoe_disable = i40e_fcoe_disable,
8983#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008984 .ndo_set_features = i40e_set_features,
8985 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
8986 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04008987 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008988 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00008989 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00008990 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Anjali Singhai Jainc3bbbd22016-04-01 03:56:07 -07008991 .ndo_set_vf_trust = i40e_ndo_set_vf_trust,
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008992 .ndo_udp_tunnel_add = i40e_udp_tunnel_add,
8993 .ndo_udp_tunnel_del = i40e_udp_tunnel_del,
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008994 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00008995 .ndo_fdb_add = i40e_ndo_fdb_add,
Joe Stringerf44a75e2015-04-14 17:09:14 -07008996 .ndo_features_check = i40e_features_check,
Neerav Parikh51616012015-02-06 08:52:14 +00008997 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
8998 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008999};
9000
9001/**
9002 * i40e_config_netdev - Setup the netdev flags
9003 * @vsi: the VSI being configured
9004 *
9005 * Returns 0 on success, negative value on failure
9006 **/
9007static int i40e_config_netdev(struct i40e_vsi *vsi)
9008{
9009 struct i40e_pf *pf = vsi->back;
9010 struct i40e_hw *hw = &pf->hw;
9011 struct i40e_netdev_priv *np;
9012 struct net_device *netdev;
9013 u8 mac_addr[ETH_ALEN];
9014 int etherdev_size;
9015
9016 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00009017 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009018 if (!netdev)
9019 return -ENOMEM;
9020
9021 vsi->netdev = netdev;
9022 np = netdev_priv(netdev);
9023 np->vsi = vsi;
9024
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009025 netdev->hw_enc_features |= NETIF_F_SG |
9026 NETIF_F_IP_CSUM |
9027 NETIF_F_IPV6_CSUM |
9028 NETIF_F_HIGHDMA |
9029 NETIF_F_SOFT_FEATURES |
9030 NETIF_F_TSO |
9031 NETIF_F_TSO_ECN |
9032 NETIF_F_TSO6 |
9033 NETIF_F_GSO_GRE |
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009034 NETIF_F_GSO_GRE_CSUM |
Tom Herbert7e133182016-05-18 09:06:10 -07009035 NETIF_F_GSO_IPXIP4 |
Alexander Duyckbf2d1df2016-05-18 10:44:53 -07009036 NETIF_F_GSO_IPXIP6 |
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009037 NETIF_F_GSO_UDP_TUNNEL |
9038 NETIF_F_GSO_UDP_TUNNEL_CSUM |
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009039 NETIF_F_GSO_PARTIAL |
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009040 NETIF_F_SCTP_CRC |
9041 NETIF_F_RXHASH |
9042 NETIF_F_RXCSUM |
Jesse Brandeburg5afdaaa2015-12-10 11:38:50 -08009043 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009044
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009045 if (!(pf->flags & I40E_FLAG_OUTER_UDP_CSUM_CAPABLE))
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009046 netdev->gso_partial_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
9047
9048 netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009049
9050 /* record features VLANs can make use of */
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009051 netdev->vlan_features |= netdev->hw_enc_features |
9052 NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009053
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009054 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009055 netdev->hw_features |= NETIF_F_NTUPLE;
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009056
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009057 netdev->hw_features |= netdev->hw_enc_features |
9058 NETIF_F_HW_VLAN_CTAG_TX |
9059 NETIF_F_HW_VLAN_CTAG_RX;
9060
9061 netdev->features |= netdev->hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009062 netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009063
9064 if (vsi->type == I40E_VSI_MAIN) {
9065 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00009066 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009067 spin_lock_bh(&vsi->mac_filter_list_lock);
Jacob Keller1bc87e82016-10-05 09:30:31 -07009068 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY);
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009069 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009070 } else {
9071 /* relate the VSI_VMDQ name to the VSI_MAIN name */
9072 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
9073 pf->vsi[pf->lan_vsi]->netdev->name);
9074 random_ether_addr(mac_addr);
Kiran Patil21659032015-09-30 14:09:03 -04009075
9076 spin_lock_bh(&vsi->mac_filter_list_lock);
Jacob Keller1bc87e82016-10-05 09:30:31 -07009077 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY);
Kiran Patil21659032015-09-30 14:09:03 -04009078 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009079 }
Kiran Patil21659032015-09-30 14:09:03 -04009080
Greg Rose9a173902014-05-22 06:32:02 +00009081 ether_addr_copy(netdev->dev_addr, mac_addr);
9082 ether_addr_copy(netdev->perm_addr, mac_addr);
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009083
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009084 netdev->priv_flags |= IFF_UNICAST_FLT;
9085 netdev->priv_flags |= IFF_SUPP_NOFCS;
9086 /* Setup netdev TC information */
9087 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
9088
9089 netdev->netdev_ops = &i40e_netdev_ops;
9090 netdev->watchdog_timeo = 5 * HZ;
9091 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07009092#ifdef I40E_FCOE
9093 i40e_fcoe_config_netdev(netdev, vsi);
9094#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009095
Jarod Wilson91c527a2016-10-17 15:54:05 -04009096 /* MTU range: 68 - 9706 */
9097 netdev->min_mtu = ETH_MIN_MTU;
9098 netdev->max_mtu = I40E_MAX_RXBUFFER -
9099 (ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
9100
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009101 return 0;
9102}
9103
9104/**
9105 * i40e_vsi_delete - Delete a VSI from the switch
9106 * @vsi: the VSI being removed
9107 *
9108 * Returns 0 on success, negative value on failure
9109 **/
9110static void i40e_vsi_delete(struct i40e_vsi *vsi)
9111{
9112 /* remove default VSI is not allowed */
9113 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
9114 return;
9115
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009116 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009117}
9118
9119/**
Neerav Parikh51616012015-02-06 08:52:14 +00009120 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
9121 * @vsi: the VSI being queried
9122 *
9123 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
9124 **/
9125int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
9126{
9127 struct i40e_veb *veb;
9128 struct i40e_pf *pf = vsi->back;
9129
9130 /* Uplink is not a bridge so default to VEB */
9131 if (vsi->veb_idx == I40E_NO_VEB)
9132 return 1;
9133
9134 veb = pf->veb[vsi->veb_idx];
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009135 if (!veb) {
9136 dev_info(&pf->pdev->dev,
9137 "There is no veb associated with the bridge\n");
9138 return -ENOENT;
9139 }
Neerav Parikh51616012015-02-06 08:52:14 +00009140
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009141 /* Uplink is a bridge in VEPA mode */
9142 if (veb->bridge_mode & BRIDGE_MODE_VEPA) {
9143 return 0;
9144 } else {
9145 /* Uplink is a bridge in VEB mode */
9146 return 1;
9147 }
9148
9149 /* VEPA is now default bridge, so return 0 */
9150 return 0;
Neerav Parikh51616012015-02-06 08:52:14 +00009151}
9152
9153/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009154 * i40e_add_vsi - Add a VSI to the switch
9155 * @vsi: the VSI being configured
9156 *
9157 * This initializes a VSI context depending on the VSI type to be added and
9158 * passes it down to the add_vsi aq command.
9159 **/
9160static int i40e_add_vsi(struct i40e_vsi *vsi)
9161{
9162 int ret = -ENODEV;
Kiran Patilf6bd0962016-06-20 09:10:34 -07009163 i40e_status aq_ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009164 struct i40e_pf *pf = vsi->back;
9165 struct i40e_hw *hw = &pf->hw;
9166 struct i40e_vsi_context ctxt;
Kiran Patil21659032015-09-30 14:09:03 -04009167 struct i40e_mac_filter *f, *ftmp;
9168
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009169 u8 enabled_tc = 0x1; /* TC0 enabled */
9170 int f_count = 0;
9171
9172 memset(&ctxt, 0, sizeof(ctxt));
9173 switch (vsi->type) {
9174 case I40E_VSI_MAIN:
9175 /* The PF's main VSI is already setup as part of the
9176 * device initialization, so we'll not bother with
9177 * the add_vsi call, but we will retrieve the current
9178 * VSI context.
9179 */
9180 ctxt.seid = pf->main_vsi_seid;
9181 ctxt.pf_num = pf->hw.pf_id;
9182 ctxt.vf_num = 0;
9183 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
9184 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
9185 if (ret) {
9186 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009187 "couldn't get PF vsi config, err %s aq_err %s\n",
9188 i40e_stat_str(&pf->hw, ret),
9189 i40e_aq_str(&pf->hw,
9190 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009191 return -ENOENT;
9192 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009193 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009194 vsi->info.valid_sections = 0;
9195
9196 vsi->seid = ctxt.seid;
9197 vsi->id = ctxt.vsi_number;
9198
9199 enabled_tc = i40e_pf_get_tc_map(pf);
9200
9201 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009202 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
9203 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009204 memset(&ctxt, 0, sizeof(ctxt));
9205 ctxt.seid = pf->main_vsi_seid;
9206 ctxt.pf_num = pf->hw.pf_id;
9207 ctxt.vf_num = 0;
9208 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
9209 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
9210 if (ret) {
9211 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009212 "update vsi failed, err %s aq_err %s\n",
9213 i40e_stat_str(&pf->hw, ret),
9214 i40e_aq_str(&pf->hw,
9215 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009216 ret = -ENOENT;
9217 goto err;
9218 }
9219 /* update the local VSI info queue map */
9220 i40e_vsi_update_queue_map(vsi, &ctxt);
9221 vsi->info.valid_sections = 0;
9222 } else {
9223 /* Default/Main VSI is only enabled for TC0
9224 * reconfigure it to enable all TCs that are
9225 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009226 * For MFP case the iSCSI PF would use this
9227 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009228 */
9229 ret = i40e_vsi_config_tc(vsi, enabled_tc);
9230 if (ret) {
9231 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009232 "failed to configure TCs for main VSI tc_map 0x%08x, err %s aq_err %s\n",
9233 enabled_tc,
9234 i40e_stat_str(&pf->hw, ret),
9235 i40e_aq_str(&pf->hw,
9236 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009237 ret = -ENOENT;
9238 }
9239 }
9240 break;
9241
9242 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009243 ctxt.pf_num = hw->pf_id;
9244 ctxt.vf_num = 0;
9245 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009246 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009247 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009248 if ((pf->flags & I40E_FLAG_VEB_MODE_ENABLED) &&
9249 (i40e_is_vsi_uplink_mode_veb(vsi))) {
Neerav Parikh51616012015-02-06 08:52:14 +00009250 ctxt.info.valid_sections |=
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009251 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
Neerav Parikh51616012015-02-06 08:52:14 +00009252 ctxt.info.switch_id =
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009253 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Neerav Parikh51616012015-02-06 08:52:14 +00009254 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009255 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009256 break;
9257
9258 case I40E_VSI_VMDQ2:
9259 ctxt.pf_num = hw->pf_id;
9260 ctxt.vf_num = 0;
9261 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009262 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009263 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
9264
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009265 /* This VSI is connected to VEB so the switch_id
9266 * should be set to zero by default.
9267 */
Neerav Parikh51616012015-02-06 08:52:14 +00009268 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9269 ctxt.info.valid_sections |=
9270 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9271 ctxt.info.switch_id =
9272 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9273 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009274
9275 /* Setup the VSI tx/rx queue map for TC0 only for now */
9276 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9277 break;
9278
9279 case I40E_VSI_SRIOV:
9280 ctxt.pf_num = hw->pf_id;
9281 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
9282 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009283 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009284 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
9285
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009286 /* This VSI is connected to VEB so the switch_id
9287 * should be set to zero by default.
9288 */
Neerav Parikh51616012015-02-06 08:52:14 +00009289 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9290 ctxt.info.valid_sections |=
9291 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9292 ctxt.info.switch_id =
9293 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9294 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009295
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009296 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
9297 ctxt.info.valid_sections |=
9298 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
9299 ctxt.info.queueing_opt_flags |=
Ashish Shah4b28cdb2016-05-03 15:13:17 -07009300 (I40E_AQ_VSI_QUE_OPT_TCP_ENA |
9301 I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009302 }
9303
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009304 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
9305 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00009306 if (pf->vf[vsi->vf_id].spoofchk) {
9307 ctxt.info.valid_sections |=
9308 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
9309 ctxt.info.sec_flags |=
9310 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
9311 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
9312 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009313 /* Setup the VSI tx/rx queue map for TC0 only for now */
9314 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9315 break;
9316
Vasu Dev38e00432014-08-01 13:27:03 -07009317#ifdef I40E_FCOE
9318 case I40E_VSI_FCOE:
9319 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
9320 if (ret) {
9321 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
9322 return ret;
9323 }
9324 break;
9325
9326#endif /* I40E_FCOE */
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009327 case I40E_VSI_IWARP:
9328 /* send down message to iWARP */
9329 break;
9330
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009331 default:
9332 return -ENODEV;
9333 }
9334
9335 if (vsi->type != I40E_VSI_MAIN) {
9336 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
9337 if (ret) {
9338 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009339 "add vsi failed, err %s aq_err %s\n",
9340 i40e_stat_str(&pf->hw, ret),
9341 i40e_aq_str(&pf->hw,
9342 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009343 ret = -ENOENT;
9344 goto err;
9345 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009346 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009347 vsi->info.valid_sections = 0;
9348 vsi->seid = ctxt.seid;
9349 vsi->id = ctxt.vsi_number;
9350 }
Kiran Patilf6bd0962016-06-20 09:10:34 -07009351 /* Except FDIR VSI, for all othet VSI set the broadcast filter */
9352 if (vsi->type != I40E_VSI_FDIR) {
9353 aq_ret = i40e_aq_set_vsi_broadcast(hw, vsi->seid, true, NULL);
9354 if (aq_ret) {
9355 ret = i40e_aq_rc_to_posix(aq_ret,
9356 hw->aq.asq_last_status);
9357 dev_info(&pf->pdev->dev,
9358 "set brdcast promisc failed, err %s, aq_err %s\n",
9359 i40e_stat_str(hw, aq_ret),
9360 i40e_aq_str(hw, hw->aq.asq_last_status));
9361 }
9362 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009363
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009364 vsi->active_filters = 0;
9365 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
Kiran Patil21659032015-09-30 14:09:03 -04009366 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009367 /* If macvlan filters already exist, force them to get loaded */
9368 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Mitch Williamsc3c7ea22016-06-20 09:10:38 -07009369 f->state = I40E_FILTER_NEW;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009370 f_count++;
9371 }
Kiran Patil21659032015-09-30 14:09:03 -04009372 spin_unlock_bh(&vsi->mac_filter_list_lock);
9373
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009374 if (f_count) {
9375 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
9376 pf->flags |= I40E_FLAG_FILTER_SYNC;
9377 }
9378
9379 /* Update VSI BW information */
9380 ret = i40e_vsi_get_bw_info(vsi);
9381 if (ret) {
9382 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009383 "couldn't get vsi bw info, err %s aq_err %s\n",
9384 i40e_stat_str(&pf->hw, ret),
9385 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009386 /* VSI is already added so not tearing that up */
9387 ret = 0;
9388 }
9389
9390err:
9391 return ret;
9392}
9393
9394/**
9395 * i40e_vsi_release - Delete a VSI and free its resources
9396 * @vsi: the VSI being removed
9397 *
9398 * Returns 0 on success or < 0 on error
9399 **/
9400int i40e_vsi_release(struct i40e_vsi *vsi)
9401{
9402 struct i40e_mac_filter *f, *ftmp;
9403 struct i40e_veb *veb = NULL;
9404 struct i40e_pf *pf;
9405 u16 uplink_seid;
9406 int i, n;
9407
9408 pf = vsi->back;
9409
9410 /* release of a VEB-owner or last VSI is not allowed */
9411 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
9412 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
9413 vsi->seid, vsi->uplink_seid);
9414 return -ENODEV;
9415 }
9416 if (vsi == pf->vsi[pf->lan_vsi] &&
9417 !test_bit(__I40E_DOWN, &pf->state)) {
9418 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
9419 return -ENODEV;
9420 }
9421
9422 uplink_seid = vsi->uplink_seid;
9423 if (vsi->type != I40E_VSI_SRIOV) {
9424 if (vsi->netdev_registered) {
9425 vsi->netdev_registered = false;
9426 if (vsi->netdev) {
9427 /* results in a call to i40e_close() */
9428 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009429 }
9430 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00009431 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009432 }
9433 i40e_vsi_disable_irq(vsi);
9434 }
9435
Kiran Patil21659032015-09-30 14:09:03 -04009436 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009437 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
Jacob Keller1bc87e82016-10-05 09:30:31 -07009438 i40e_del_filter(vsi, f->macaddr, f->vlan);
Kiran Patil21659032015-09-30 14:09:03 -04009439 spin_unlock_bh(&vsi->mac_filter_list_lock);
9440
Jesse Brandeburg17652c62015-11-05 17:01:02 -08009441 i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009442
9443 i40e_vsi_delete(vsi);
9444 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00009445 if (vsi->netdev) {
9446 free_netdev(vsi->netdev);
9447 vsi->netdev = NULL;
9448 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009449 i40e_vsi_clear_rings(vsi);
9450 i40e_vsi_clear(vsi);
9451
9452 /* If this was the last thing on the VEB, except for the
9453 * controlling VSI, remove the VEB, which puts the controlling
9454 * VSI onto the next level down in the switch.
9455 *
9456 * Well, okay, there's one more exception here: don't remove
9457 * the orphan VEBs yet. We'll wait for an explicit remove request
9458 * from up the network stack.
9459 */
Mitch Williams505682c2014-05-20 08:01:37 +00009460 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009461 if (pf->vsi[i] &&
9462 pf->vsi[i]->uplink_seid == uplink_seid &&
9463 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9464 n++; /* count the VSIs */
9465 }
9466 }
9467 for (i = 0; i < I40E_MAX_VEB; i++) {
9468 if (!pf->veb[i])
9469 continue;
9470 if (pf->veb[i]->uplink_seid == uplink_seid)
9471 n++; /* count the VEBs */
9472 if (pf->veb[i]->seid == uplink_seid)
9473 veb = pf->veb[i];
9474 }
9475 if (n == 0 && veb && veb->uplink_seid != 0)
9476 i40e_veb_release(veb);
9477
9478 return 0;
9479}
9480
9481/**
9482 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
9483 * @vsi: ptr to the VSI
9484 *
9485 * This should only be called after i40e_vsi_mem_alloc() which allocates the
9486 * corresponding SW VSI structure and initializes num_queue_pairs for the
9487 * newly allocated VSI.
9488 *
9489 * Returns 0 on success or negative on failure
9490 **/
9491static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
9492{
9493 int ret = -ENOENT;
9494 struct i40e_pf *pf = vsi->back;
9495
Alexander Duyck493fb302013-09-28 07:01:44 +00009496 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009497 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
9498 vsi->seid);
9499 return -EEXIST;
9500 }
9501
9502 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00009503 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009504 vsi->seid, vsi->base_vector);
9505 return -EEXIST;
9506 }
9507
Greg Rose90e04072014-03-06 08:59:57 +00009508 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009509 if (ret) {
9510 dev_info(&pf->pdev->dev,
9511 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
9512 vsi->num_q_vectors, vsi->seid, ret);
9513 vsi->num_q_vectors = 0;
9514 goto vector_setup_out;
9515 }
9516
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04009517 /* In Legacy mode, we do not have to get any other vector since we
9518 * piggyback on the misc/ICR0 for queue interrupts.
9519 */
9520 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
9521 return ret;
Shannon Nelson958a3e32013-09-28 07:13:28 +00009522 if (vsi->num_q_vectors)
9523 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
9524 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009525 if (vsi->base_vector < 0) {
9526 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00009527 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
9528 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009529 i40e_vsi_free_q_vectors(vsi);
9530 ret = -ENOENT;
9531 goto vector_setup_out;
9532 }
9533
9534vector_setup_out:
9535 return ret;
9536}
9537
9538/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009539 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
9540 * @vsi: pointer to the vsi.
9541 *
9542 * This re-allocates a vsi's queue resources.
9543 *
9544 * Returns pointer to the successfully allocated and configured VSI sw struct
9545 * on success, otherwise returns NULL on failure.
9546 **/
9547static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
9548{
John Underwoodf5340392016-02-18 09:19:24 -08009549 struct i40e_pf *pf;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009550 u8 enabled_tc;
9551 int ret;
9552
John Underwoodf5340392016-02-18 09:19:24 -08009553 if (!vsi)
9554 return NULL;
9555
9556 pf = vsi->back;
9557
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009558 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
9559 i40e_vsi_clear_rings(vsi);
9560
9561 i40e_vsi_free_arrays(vsi, false);
9562 i40e_set_num_rings_in_vsi(vsi);
9563 ret = i40e_vsi_alloc_arrays(vsi, false);
9564 if (ret)
9565 goto err_vsi;
9566
9567 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
9568 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009569 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009570 "failed to get tracking for %d queues for VSI %d err %d\n",
Shannon Nelson049a2be2014-10-17 03:14:50 +00009571 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009572 goto err_vsi;
9573 }
9574 vsi->base_queue = ret;
9575
9576 /* Update the FW view of the VSI. Force a reset of TC and queue
9577 * layout configurations.
9578 */
9579 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
9580 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
9581 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
9582 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
9583
9584 /* assign it some queues */
9585 ret = i40e_alloc_rings(vsi);
9586 if (ret)
9587 goto err_rings;
9588
9589 /* map all of the rings to the q_vectors */
9590 i40e_vsi_map_rings_to_vectors(vsi);
9591 return vsi;
9592
9593err_rings:
9594 i40e_vsi_free_q_vectors(vsi);
9595 if (vsi->netdev_registered) {
9596 vsi->netdev_registered = false;
9597 unregister_netdev(vsi->netdev);
9598 free_netdev(vsi->netdev);
9599 vsi->netdev = NULL;
9600 }
9601 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9602err_vsi:
9603 i40e_vsi_clear(vsi);
9604 return NULL;
9605}
9606
9607/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009608 * i40e_vsi_setup - Set up a VSI by a given type
9609 * @pf: board private structure
9610 * @type: VSI type
9611 * @uplink_seid: the switch element to link to
9612 * @param1: usage depends upon VSI type. For VF types, indicates VF id
9613 *
9614 * This allocates the sw VSI structure and its queue resources, then add a VSI
9615 * to the identified VEB.
9616 *
9617 * Returns pointer to the successfully allocated and configure VSI sw struct on
9618 * success, otherwise returns NULL on failure.
9619 **/
9620struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
9621 u16 uplink_seid, u32 param1)
9622{
9623 struct i40e_vsi *vsi = NULL;
9624 struct i40e_veb *veb = NULL;
9625 int ret, i;
9626 int v_idx;
9627
9628 /* The requested uplink_seid must be either
9629 * - the PF's port seid
9630 * no VEB is needed because this is the PF
9631 * or this is a Flow Director special case VSI
9632 * - seid of an existing VEB
9633 * - seid of a VSI that owns an existing VEB
9634 * - seid of a VSI that doesn't own a VEB
9635 * a new VEB is created and the VSI becomes the owner
9636 * - seid of the PF VSI, which is what creates the first VEB
9637 * this is a special case of the previous
9638 *
9639 * Find which uplink_seid we were given and create a new VEB if needed
9640 */
9641 for (i = 0; i < I40E_MAX_VEB; i++) {
9642 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
9643 veb = pf->veb[i];
9644 break;
9645 }
9646 }
9647
9648 if (!veb && uplink_seid != pf->mac_seid) {
9649
Mitch Williams505682c2014-05-20 08:01:37 +00009650 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009651 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
9652 vsi = pf->vsi[i];
9653 break;
9654 }
9655 }
9656 if (!vsi) {
9657 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
9658 uplink_seid);
9659 return NULL;
9660 }
9661
9662 if (vsi->uplink_seid == pf->mac_seid)
9663 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
9664 vsi->tc_config.enabled_tc);
9665 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
9666 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
9667 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009668 if (veb) {
9669 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
9670 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04009671 "New VSI creation error, uplink seid of LAN VSI expected.\n");
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009672 return NULL;
9673 }
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -04009674 /* We come up by default in VEPA mode if SRIOV is not
9675 * already enabled, in which case we can't force VEPA
9676 * mode.
9677 */
9678 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
9679 veb->bridge_mode = BRIDGE_MODE_VEPA;
9680 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
9681 }
Neerav Parikh51616012015-02-06 08:52:14 +00009682 i40e_config_bridge_mode(veb);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009683 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009684 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9685 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9686 veb = pf->veb[i];
9687 }
9688 if (!veb) {
9689 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
9690 return NULL;
9691 }
9692
9693 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
9694 uplink_seid = veb->seid;
9695 }
9696
9697 /* get vsi sw struct */
9698 v_idx = i40e_vsi_mem_alloc(pf, type);
9699 if (v_idx < 0)
9700 goto err_alloc;
9701 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009702 if (!vsi)
9703 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009704 vsi->type = type;
9705 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
9706
9707 if (type == I40E_VSI_MAIN)
9708 pf->lan_vsi = v_idx;
9709 else if (type == I40E_VSI_SRIOV)
9710 vsi->vf_id = param1;
9711 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009712 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
9713 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009714 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009715 dev_info(&pf->pdev->dev,
9716 "failed to get tracking for %d queues for VSI %d err=%d\n",
9717 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009718 goto err_vsi;
9719 }
9720 vsi->base_queue = ret;
9721
9722 /* get a VSI from the hardware */
9723 vsi->uplink_seid = uplink_seid;
9724 ret = i40e_add_vsi(vsi);
9725 if (ret)
9726 goto err_vsi;
9727
9728 switch (vsi->type) {
9729 /* setup the netdev if needed */
9730 case I40E_VSI_MAIN:
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -05009731 /* Apply relevant filters if a platform-specific mac
9732 * address was selected.
9733 */
9734 if (!!(pf->flags & I40E_FLAG_PF_MAC)) {
9735 ret = i40e_macaddr_init(vsi, pf->hw.mac.addr);
9736 if (ret) {
9737 dev_warn(&pf->pdev->dev,
9738 "could not set up macaddr; err %d\n",
9739 ret);
9740 }
9741 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009742 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07009743 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009744 ret = i40e_config_netdev(vsi);
9745 if (ret)
9746 goto err_netdev;
9747 ret = register_netdev(vsi->netdev);
9748 if (ret)
9749 goto err_netdev;
9750 vsi->netdev_registered = true;
9751 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009752#ifdef CONFIG_I40E_DCB
9753 /* Setup DCB netlink interface */
9754 i40e_dcbnl_setup(vsi);
9755#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009756 /* fall through */
9757
9758 case I40E_VSI_FDIR:
9759 /* set up vectors and rings if needed */
9760 ret = i40e_vsi_setup_vectors(vsi);
9761 if (ret)
9762 goto err_msix;
9763
9764 ret = i40e_alloc_rings(vsi);
9765 if (ret)
9766 goto err_rings;
9767
9768 /* map all of the rings to the q_vectors */
9769 i40e_vsi_map_rings_to_vectors(vsi);
9770
9771 i40e_vsi_reset_stats(vsi);
9772 break;
9773
9774 default:
9775 /* no netdev or rings for the other VSI types */
9776 break;
9777 }
9778
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04009779 if ((pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) &&
9780 (vsi->type == I40E_VSI_VMDQ2)) {
9781 ret = i40e_vsi_config_rss(vsi);
9782 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009783 return vsi;
9784
9785err_rings:
9786 i40e_vsi_free_q_vectors(vsi);
9787err_msix:
9788 if (vsi->netdev_registered) {
9789 vsi->netdev_registered = false;
9790 unregister_netdev(vsi->netdev);
9791 free_netdev(vsi->netdev);
9792 vsi->netdev = NULL;
9793 }
9794err_netdev:
9795 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9796err_vsi:
9797 i40e_vsi_clear(vsi);
9798err_alloc:
9799 return NULL;
9800}
9801
9802/**
9803 * i40e_veb_get_bw_info - Query VEB BW information
9804 * @veb: the veb to query
9805 *
9806 * Query the Tx scheduler BW configuration data for given VEB
9807 **/
9808static int i40e_veb_get_bw_info(struct i40e_veb *veb)
9809{
9810 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
9811 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
9812 struct i40e_pf *pf = veb->pf;
9813 struct i40e_hw *hw = &pf->hw;
9814 u32 tc_bw_max;
9815 int ret = 0;
9816 int i;
9817
9818 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
9819 &bw_data, NULL);
9820 if (ret) {
9821 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009822 "query veb bw config failed, err %s aq_err %s\n",
9823 i40e_stat_str(&pf->hw, ret),
9824 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009825 goto out;
9826 }
9827
9828 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
9829 &ets_data, NULL);
9830 if (ret) {
9831 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009832 "query veb bw ets config failed, err %s aq_err %s\n",
9833 i40e_stat_str(&pf->hw, ret),
9834 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009835 goto out;
9836 }
9837
9838 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
9839 veb->bw_max_quanta = ets_data.tc_bw_max;
9840 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00009841 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009842 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
9843 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
9844 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
9845 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
9846 veb->bw_tc_limit_credits[i] =
9847 le16_to_cpu(bw_data.tc_bw_limits[i]);
9848 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
9849 }
9850
9851out:
9852 return ret;
9853}
9854
9855/**
9856 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
9857 * @pf: board private structure
9858 *
9859 * On error: returns error code (negative)
9860 * On success: returns vsi index in PF (positive)
9861 **/
9862static int i40e_veb_mem_alloc(struct i40e_pf *pf)
9863{
9864 int ret = -ENOENT;
9865 struct i40e_veb *veb;
9866 int i;
9867
9868 /* Need to protect the allocation of switch elements at the PF level */
9869 mutex_lock(&pf->switch_mutex);
9870
9871 /* VEB list may be fragmented if VEB creation/destruction has
9872 * been happening. We can afford to do a quick scan to look
9873 * for any free slots in the list.
9874 *
9875 * find next empty veb slot, looping back around if necessary
9876 */
9877 i = 0;
9878 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
9879 i++;
9880 if (i >= I40E_MAX_VEB) {
9881 ret = -ENOMEM;
9882 goto err_alloc_veb; /* out of VEB slots! */
9883 }
9884
9885 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
9886 if (!veb) {
9887 ret = -ENOMEM;
9888 goto err_alloc_veb;
9889 }
9890 veb->pf = pf;
9891 veb->idx = i;
9892 veb->enabled_tc = 1;
9893
9894 pf->veb[i] = veb;
9895 ret = i;
9896err_alloc_veb:
9897 mutex_unlock(&pf->switch_mutex);
9898 return ret;
9899}
9900
9901/**
9902 * i40e_switch_branch_release - Delete a branch of the switch tree
9903 * @branch: where to start deleting
9904 *
9905 * This uses recursion to find the tips of the branch to be
9906 * removed, deleting until we get back to and can delete this VEB.
9907 **/
9908static void i40e_switch_branch_release(struct i40e_veb *branch)
9909{
9910 struct i40e_pf *pf = branch->pf;
9911 u16 branch_seid = branch->seid;
9912 u16 veb_idx = branch->idx;
9913 int i;
9914
9915 /* release any VEBs on this VEB - RECURSION */
9916 for (i = 0; i < I40E_MAX_VEB; i++) {
9917 if (!pf->veb[i])
9918 continue;
9919 if (pf->veb[i]->uplink_seid == branch->seid)
9920 i40e_switch_branch_release(pf->veb[i]);
9921 }
9922
9923 /* Release the VSIs on this VEB, but not the owner VSI.
9924 *
9925 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
9926 * the VEB itself, so don't use (*branch) after this loop.
9927 */
Mitch Williams505682c2014-05-20 08:01:37 +00009928 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009929 if (!pf->vsi[i])
9930 continue;
9931 if (pf->vsi[i]->uplink_seid == branch_seid &&
9932 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9933 i40e_vsi_release(pf->vsi[i]);
9934 }
9935 }
9936
9937 /* There's one corner case where the VEB might not have been
9938 * removed, so double check it here and remove it if needed.
9939 * This case happens if the veb was created from the debugfs
9940 * commands and no VSIs were added to it.
9941 */
9942 if (pf->veb[veb_idx])
9943 i40e_veb_release(pf->veb[veb_idx]);
9944}
9945
9946/**
9947 * i40e_veb_clear - remove veb struct
9948 * @veb: the veb to remove
9949 **/
9950static void i40e_veb_clear(struct i40e_veb *veb)
9951{
9952 if (!veb)
9953 return;
9954
9955 if (veb->pf) {
9956 struct i40e_pf *pf = veb->pf;
9957
9958 mutex_lock(&pf->switch_mutex);
9959 if (pf->veb[veb->idx] == veb)
9960 pf->veb[veb->idx] = NULL;
9961 mutex_unlock(&pf->switch_mutex);
9962 }
9963
9964 kfree(veb);
9965}
9966
9967/**
9968 * i40e_veb_release - Delete a VEB and free its resources
9969 * @veb: the VEB being removed
9970 **/
9971void i40e_veb_release(struct i40e_veb *veb)
9972{
9973 struct i40e_vsi *vsi = NULL;
9974 struct i40e_pf *pf;
9975 int i, n = 0;
9976
9977 pf = veb->pf;
9978
9979 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00009980 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009981 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
9982 n++;
9983 vsi = pf->vsi[i];
9984 }
9985 }
9986 if (n != 1) {
9987 dev_info(&pf->pdev->dev,
9988 "can't remove VEB %d with %d VSIs left\n",
9989 veb->seid, n);
9990 return;
9991 }
9992
9993 /* move the remaining VSI to uplink veb */
9994 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
9995 if (veb->uplink_seid) {
9996 vsi->uplink_seid = veb->uplink_seid;
9997 if (veb->uplink_seid == pf->mac_seid)
9998 vsi->veb_idx = I40E_NO_VEB;
9999 else
10000 vsi->veb_idx = veb->veb_idx;
10001 } else {
10002 /* floating VEB */
10003 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
10004 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
10005 }
10006
10007 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
10008 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010009}
10010
10011/**
10012 * i40e_add_veb - create the VEB in the switch
10013 * @veb: the VEB to be instantiated
10014 * @vsi: the controlling VSI
10015 **/
10016static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
10017{
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010018 struct i40e_pf *pf = veb->pf;
Shannon Nelson66fc3602016-01-13 16:51:42 -080010019 bool enable_stats = !!(pf->flags & I40E_FLAG_VEB_STATS_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010020 int ret;
10021
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010022 ret = i40e_aq_add_veb(&pf->hw, veb->uplink_seid, vsi->seid,
Mitch Williams5bc16032016-05-16 10:26:43 -070010023 veb->enabled_tc, false,
Shannon Nelson66fc3602016-01-13 16:51:42 -080010024 &veb->seid, enable_stats, NULL);
Mitch Williams5bc16032016-05-16 10:26:43 -070010025
10026 /* get a VEB from the hardware */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010027 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010028 dev_info(&pf->pdev->dev,
10029 "couldn't add VEB, err %s aq_err %s\n",
10030 i40e_stat_str(&pf->hw, ret),
10031 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010032 return -EPERM;
10033 }
10034
10035 /* get statistics counter */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010036 ret = i40e_aq_get_veb_parameters(&pf->hw, veb->seid, NULL, NULL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010037 &veb->stats_idx, NULL, NULL, NULL);
10038 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010039 dev_info(&pf->pdev->dev,
10040 "couldn't get VEB statistics idx, err %s aq_err %s\n",
10041 i40e_stat_str(&pf->hw, ret),
10042 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010043 return -EPERM;
10044 }
10045 ret = i40e_veb_get_bw_info(veb);
10046 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010047 dev_info(&pf->pdev->dev,
10048 "couldn't get VEB bw info, err %s aq_err %s\n",
10049 i40e_stat_str(&pf->hw, ret),
10050 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
10051 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010052 return -ENOENT;
10053 }
10054
10055 vsi->uplink_seid = veb->seid;
10056 vsi->veb_idx = veb->idx;
10057 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
10058
10059 return 0;
10060}
10061
10062/**
10063 * i40e_veb_setup - Set up a VEB
10064 * @pf: board private structure
10065 * @flags: VEB setup flags
10066 * @uplink_seid: the switch element to link to
10067 * @vsi_seid: the initial VSI seid
10068 * @enabled_tc: Enabled TC bit-map
10069 *
10070 * This allocates the sw VEB structure and links it into the switch
10071 * It is possible and legal for this to be a duplicate of an already
10072 * existing VEB. It is also possible for both uplink and vsi seids
10073 * to be zero, in order to create a floating VEB.
10074 *
10075 * Returns pointer to the successfully allocated VEB sw struct on
10076 * success, otherwise returns NULL on failure.
10077 **/
10078struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
10079 u16 uplink_seid, u16 vsi_seid,
10080 u8 enabled_tc)
10081{
10082 struct i40e_veb *veb, *uplink_veb = NULL;
10083 int vsi_idx, veb_idx;
10084 int ret;
10085
10086 /* if one seid is 0, the other must be 0 to create a floating relay */
10087 if ((uplink_seid == 0 || vsi_seid == 0) &&
10088 (uplink_seid + vsi_seid != 0)) {
10089 dev_info(&pf->pdev->dev,
10090 "one, not both seid's are 0: uplink=%d vsi=%d\n",
10091 uplink_seid, vsi_seid);
10092 return NULL;
10093 }
10094
10095 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +000010096 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010097 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
10098 break;
Mitch Williams505682c2014-05-20 08:01:37 +000010099 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010100 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
10101 vsi_seid);
10102 return NULL;
10103 }
10104
10105 if (uplink_seid && uplink_seid != pf->mac_seid) {
10106 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
10107 if (pf->veb[veb_idx] &&
10108 pf->veb[veb_idx]->seid == uplink_seid) {
10109 uplink_veb = pf->veb[veb_idx];
10110 break;
10111 }
10112 }
10113 if (!uplink_veb) {
10114 dev_info(&pf->pdev->dev,
10115 "uplink seid %d not found\n", uplink_seid);
10116 return NULL;
10117 }
10118 }
10119
10120 /* get veb sw struct */
10121 veb_idx = i40e_veb_mem_alloc(pf);
10122 if (veb_idx < 0)
10123 goto err_alloc;
10124 veb = pf->veb[veb_idx];
10125 veb->flags = flags;
10126 veb->uplink_seid = uplink_seid;
10127 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
10128 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
10129
10130 /* create the VEB in the switch */
10131 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
10132 if (ret)
10133 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +000010134 if (vsi_idx == pf->lan_vsi)
10135 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010136
10137 return veb;
10138
10139err_veb:
10140 i40e_veb_clear(veb);
10141err_alloc:
10142 return NULL;
10143}
10144
10145/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010146 * i40e_setup_pf_switch_element - set PF vars based on switch type
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010147 * @pf: board private structure
10148 * @ele: element we are building info from
10149 * @num_reported: total number of elements
10150 * @printconfig: should we print the contents
10151 *
10152 * helper function to assist in extracting a few useful SEID values.
10153 **/
10154static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
10155 struct i40e_aqc_switch_config_element_resp *ele,
10156 u16 num_reported, bool printconfig)
10157{
10158 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
10159 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
10160 u8 element_type = ele->element_type;
10161 u16 seid = le16_to_cpu(ele->seid);
10162
10163 if (printconfig)
10164 dev_info(&pf->pdev->dev,
10165 "type=%d seid=%d uplink=%d downlink=%d\n",
10166 element_type, seid, uplink_seid, downlink_seid);
10167
10168 switch (element_type) {
10169 case I40E_SWITCH_ELEMENT_TYPE_MAC:
10170 pf->mac_seid = seid;
10171 break;
10172 case I40E_SWITCH_ELEMENT_TYPE_VEB:
10173 /* Main VEB? */
10174 if (uplink_seid != pf->mac_seid)
10175 break;
10176 if (pf->lan_veb == I40E_NO_VEB) {
10177 int v;
10178
10179 /* find existing or else empty VEB */
10180 for (v = 0; v < I40E_MAX_VEB; v++) {
10181 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
10182 pf->lan_veb = v;
10183 break;
10184 }
10185 }
10186 if (pf->lan_veb == I40E_NO_VEB) {
10187 v = i40e_veb_mem_alloc(pf);
10188 if (v < 0)
10189 break;
10190 pf->lan_veb = v;
10191 }
10192 }
10193
10194 pf->veb[pf->lan_veb]->seid = seid;
10195 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
10196 pf->veb[pf->lan_veb]->pf = pf;
10197 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
10198 break;
10199 case I40E_SWITCH_ELEMENT_TYPE_VSI:
10200 if (num_reported != 1)
10201 break;
10202 /* This is immediately after a reset so we can assume this is
10203 * the PF's VSI
10204 */
10205 pf->mac_seid = uplink_seid;
10206 pf->pf_seid = downlink_seid;
10207 pf->main_vsi_seid = seid;
10208 if (printconfig)
10209 dev_info(&pf->pdev->dev,
10210 "pf_seid=%d main_vsi_seid=%d\n",
10211 pf->pf_seid, pf->main_vsi_seid);
10212 break;
10213 case I40E_SWITCH_ELEMENT_TYPE_PF:
10214 case I40E_SWITCH_ELEMENT_TYPE_VF:
10215 case I40E_SWITCH_ELEMENT_TYPE_EMP:
10216 case I40E_SWITCH_ELEMENT_TYPE_BMC:
10217 case I40E_SWITCH_ELEMENT_TYPE_PE:
10218 case I40E_SWITCH_ELEMENT_TYPE_PA:
10219 /* ignore these for now */
10220 break;
10221 default:
10222 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
10223 element_type, seid);
10224 break;
10225 }
10226}
10227
10228/**
10229 * i40e_fetch_switch_configuration - Get switch config from firmware
10230 * @pf: board private structure
10231 * @printconfig: should we print the contents
10232 *
10233 * Get the current switch configuration from the device and
10234 * extract a few useful SEID values.
10235 **/
10236int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
10237{
10238 struct i40e_aqc_get_switch_config_resp *sw_config;
10239 u16 next_seid = 0;
10240 int ret = 0;
10241 u8 *aq_buf;
10242 int i;
10243
10244 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
10245 if (!aq_buf)
10246 return -ENOMEM;
10247
10248 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
10249 do {
10250 u16 num_reported, num_total;
10251
10252 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
10253 I40E_AQ_LARGE_BUF,
10254 &next_seid, NULL);
10255 if (ret) {
10256 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010257 "get switch config failed err %s aq_err %s\n",
10258 i40e_stat_str(&pf->hw, ret),
10259 i40e_aq_str(&pf->hw,
10260 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010261 kfree(aq_buf);
10262 return -ENOENT;
10263 }
10264
10265 num_reported = le16_to_cpu(sw_config->header.num_reported);
10266 num_total = le16_to_cpu(sw_config->header.num_total);
10267
10268 if (printconfig)
10269 dev_info(&pf->pdev->dev,
10270 "header: %d reported %d total\n",
10271 num_reported, num_total);
10272
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010273 for (i = 0; i < num_reported; i++) {
10274 struct i40e_aqc_switch_config_element_resp *ele =
10275 &sw_config->element[i];
10276
10277 i40e_setup_pf_switch_element(pf, ele, num_reported,
10278 printconfig);
10279 }
10280 } while (next_seid != 0);
10281
10282 kfree(aq_buf);
10283 return ret;
10284}
10285
10286/**
10287 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
10288 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010289 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010290 *
10291 * Returns 0 on success, negative value on failure
10292 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010293static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010294{
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070010295 u16 flags = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010296 int ret;
10297
10298 /* find out what's out there already */
10299 ret = i40e_fetch_switch_configuration(pf, false);
10300 if (ret) {
10301 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010302 "couldn't fetch switch config, err %s aq_err %s\n",
10303 i40e_stat_str(&pf->hw, ret),
10304 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010305 return ret;
10306 }
10307 i40e_pf_reset_stats(pf);
10308
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070010309 /* set the switch config bit for the whole device to
10310 * support limited promisc or true promisc
10311 * when user requests promisc. The default is limited
10312 * promisc.
10313 */
10314
10315 if ((pf->hw.pf_id == 0) &&
10316 !(pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT))
10317 flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10318
10319 if (pf->hw.pf_id == 0) {
10320 u16 valid_flags;
10321
10322 valid_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10323 ret = i40e_aq_set_switch_config(&pf->hw, flags, valid_flags,
10324 NULL);
10325 if (ret && pf->hw.aq.asq_last_status != I40E_AQ_RC_ESRCH) {
10326 dev_info(&pf->pdev->dev,
10327 "couldn't set switch config bits, err %s aq_err %s\n",
10328 i40e_stat_str(&pf->hw, ret),
10329 i40e_aq_str(&pf->hw,
10330 pf->hw.aq.asq_last_status));
10331 /* not a fatal problem, just keep going */
10332 }
10333 }
10334
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010335 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010336 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010337 struct i40e_vsi *vsi = NULL;
10338 u16 uplink_seid;
10339
10340 /* Set up the PF VSI associated with the PF's main VSI
10341 * that is already in the HW switch
10342 */
10343 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
10344 uplink_seid = pf->veb[pf->lan_veb]->seid;
10345 else
10346 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010347 if (pf->lan_vsi == I40E_NO_VSI)
10348 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
10349 else if (reinit)
10350 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010351 if (!vsi) {
10352 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
10353 i40e_fdir_teardown(pf);
10354 return -EAGAIN;
10355 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010356 } else {
10357 /* force a reset of TC and queue layout configurations */
10358 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -040010359
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010360 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
10361 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
10362 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
10363 }
10364 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
10365
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010366 i40e_fdir_sb_setup(pf);
10367
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010368 /* Setup static PF queue filter control settings */
10369 ret = i40e_setup_pf_filter_control(pf);
10370 if (ret) {
10371 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
10372 ret);
10373 /* Failure here should not stop continuing other steps */
10374 }
10375
10376 /* enable RSS in the HW, even for only one queue, as the stack can use
10377 * the hash
10378 */
10379 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
Helin Zhang043dd652015-10-21 19:56:23 -040010380 i40e_pf_config_rss(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010381
10382 /* fill in link information and enable LSE reporting */
Catherine Sullivan0a862b42015-08-31 19:54:53 -040010383 i40e_update_link_info(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010384 i40e_link_event(pf);
10385
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010386 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010387 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
10388 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010389
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000010390 i40e_ptp_init(pf);
10391
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010392 return ret;
10393}
10394
10395/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010396 * i40e_determine_queue_usage - Work out queue distribution
10397 * @pf: board private structure
10398 **/
10399static void i40e_determine_queue_usage(struct i40e_pf *pf)
10400{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010401 int queues_left;
10402
10403 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -070010404#ifdef I40E_FCOE
10405 pf->num_fcoe_qps = 0;
10406#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010407
10408 /* Find the max queues to be put into basic use. We'll always be
10409 * using TC0, whether or not DCB is running, and TC0 will get the
10410 * big RSS set.
10411 */
10412 queues_left = pf->hw.func_caps.num_tx_qp;
10413
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010414 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +000010415 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010416 /* one qp for PF, no queues for anything else */
10417 queues_left = 0;
Helin Zhangacd65442015-10-26 19:44:28 -040010418 pf->alloc_rss_size = pf->num_lan_qps = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010419
10420 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010421 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060010422 I40E_FLAG_IWARP_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010423#ifdef I40E_FCOE
10424 I40E_FLAG_FCOE_ENABLED |
10425#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010426 I40E_FLAG_FD_SB_ENABLED |
10427 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010428 I40E_FLAG_DCB_CAPABLE |
Dave Ertmana0362442016-08-29 17:38:26 -070010429 I40E_FLAG_DCB_ENABLED |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010430 I40E_FLAG_SRIOV_ENABLED |
10431 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +000010432 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
10433 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +000010434 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010435 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +000010436 /* one qp for PF */
Helin Zhangacd65442015-10-26 19:44:28 -040010437 pf->alloc_rss_size = pf->num_lan_qps = 1;
Frank Zhang9aa7e932014-05-20 08:01:42 +000010438 queues_left -= pf->num_lan_qps;
10439
10440 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060010441 I40E_FLAG_IWARP_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010442#ifdef I40E_FCOE
10443 I40E_FLAG_FCOE_ENABLED |
10444#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +000010445 I40E_FLAG_FD_SB_ENABLED |
10446 I40E_FLAG_FD_ATR_ENABLED |
10447 I40E_FLAG_DCB_ENABLED |
10448 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010449 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010450 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010451 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010452 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Dave Ertmana0362442016-08-29 17:38:26 -070010453 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE |
10454 I40E_FLAG_DCB_ENABLED);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010455 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
10456 }
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +000010457 pf->num_lan_qps = max_t(int, pf->rss_size_max,
10458 num_online_cpus());
10459 pf->num_lan_qps = min_t(int, pf->num_lan_qps,
10460 pf->hw.func_caps.num_tx_qp);
10461
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010462 queues_left -= pf->num_lan_qps;
10463 }
10464
Vasu Dev38e00432014-08-01 13:27:03 -070010465#ifdef I40E_FCOE
10466 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
10467 if (I40E_DEFAULT_FCOE <= queues_left) {
10468 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
10469 } else if (I40E_MINIMUM_FCOE <= queues_left) {
10470 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
10471 } else {
10472 pf->num_fcoe_qps = 0;
10473 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
10474 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
10475 }
10476
10477 queues_left -= pf->num_fcoe_qps;
10478 }
10479
10480#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010481 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
10482 if (queues_left > 1) {
10483 queues_left -= 1; /* save 1 queue for FD */
10484 } else {
10485 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
10486 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
10487 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010488 }
10489
10490 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10491 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010492 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
10493 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010494 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
10495 }
10496
10497 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
10498 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
10499 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
10500 (queues_left / pf->num_vmdq_qps));
10501 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
10502 }
10503
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +000010504 pf->queues_left = queues_left;
Neerav Parikh8279e492015-09-03 17:18:50 -040010505 dev_dbg(&pf->pdev->dev,
10506 "qs_avail=%d FD SB=%d lan_qs=%d lan_tc0=%d vf=%d*%d vmdq=%d*%d, remaining=%d\n",
10507 pf->hw.func_caps.num_tx_qp,
10508 !!(pf->flags & I40E_FLAG_FD_SB_ENABLED),
Helin Zhangacd65442015-10-26 19:44:28 -040010509 pf->num_lan_qps, pf->alloc_rss_size, pf->num_req_vfs,
10510 pf->num_vf_qps, pf->num_vmdq_vsis, pf->num_vmdq_qps,
10511 queues_left);
Vasu Dev38e00432014-08-01 13:27:03 -070010512#ifdef I40E_FCOE
Neerav Parikh8279e492015-09-03 17:18:50 -040010513 dev_dbg(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
Vasu Dev38e00432014-08-01 13:27:03 -070010514#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010515}
10516
10517/**
10518 * i40e_setup_pf_filter_control - Setup PF static filter control
10519 * @pf: PF to be setup
10520 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010521 * i40e_setup_pf_filter_control sets up a PF's initial filter control
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010522 * settings. If PE/FCoE are enabled then it will also set the per PF
10523 * based filter sizes required for them. It also enables Flow director,
10524 * ethertype and macvlan type filter settings for the pf.
10525 *
10526 * Returns 0 on success, negative on failure
10527 **/
10528static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
10529{
10530 struct i40e_filter_control_settings *settings = &pf->filter_settings;
10531
10532 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
10533
10534 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010535 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010536 settings->enable_fdir = true;
10537
10538 /* Ethtype and MACVLAN filters enabled for PF */
10539 settings->enable_ethtype = true;
10540 settings->enable_macvlan = true;
10541
10542 if (i40e_set_filter_control(&pf->hw, settings))
10543 return -ENOENT;
10544
10545 return 0;
10546}
10547
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010548#define INFO_STRING_LEN 255
Shannon Nelson7fd89542015-10-21 19:47:04 -040010549#define REMAIN(__x) (INFO_STRING_LEN - (__x))
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010550static void i40e_print_features(struct i40e_pf *pf)
10551{
10552 struct i40e_hw *hw = &pf->hw;
Joe Perches3b195842015-12-03 04:20:57 -080010553 char *buf;
10554 int i;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010555
Joe Perches3b195842015-12-03 04:20:57 -080010556 buf = kmalloc(INFO_STRING_LEN, GFP_KERNEL);
10557 if (!buf)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010558 return;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010559
Joe Perches3b195842015-12-03 04:20:57 -080010560 i = snprintf(buf, INFO_STRING_LEN, "Features: PF-id[%d]", hw->pf_id);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010561#ifdef CONFIG_PCI_IOV
Joe Perches3b195842015-12-03 04:20:57 -080010562 i += snprintf(&buf[i], REMAIN(i), " VFs: %d", pf->num_req_vfs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010563#endif
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070010564 i += snprintf(&buf[i], REMAIN(i), " VSIs: %d QP: %d",
Shannon Nelson7fd89542015-10-21 19:47:04 -040010565 pf->hw.func_caps.num_vsis,
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070010566 pf->vsi[pf->lan_vsi]->num_queue_pairs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010567 if (pf->flags & I40E_FLAG_RSS_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010568 i += snprintf(&buf[i], REMAIN(i), " RSS");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010569 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010570 i += snprintf(&buf[i], REMAIN(i), " FD_ATR");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010571 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
Joe Perches3b195842015-12-03 04:20:57 -080010572 i += snprintf(&buf[i], REMAIN(i), " FD_SB");
10573 i += snprintf(&buf[i], REMAIN(i), " NTUPLE");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010574 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010575 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Joe Perches3b195842015-12-03 04:20:57 -080010576 i += snprintf(&buf[i], REMAIN(i), " DCB");
Joe Perches3b195842015-12-03 04:20:57 -080010577 i += snprintf(&buf[i], REMAIN(i), " VxLAN");
Singhai, Anjali6a899022015-12-14 12:21:18 -080010578 i += snprintf(&buf[i], REMAIN(i), " Geneve");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010579 if (pf->flags & I40E_FLAG_PTP)
Joe Perches3b195842015-12-03 04:20:57 -080010580 i += snprintf(&buf[i], REMAIN(i), " PTP");
Vasu Dev38e00432014-08-01 13:27:03 -070010581#ifdef I40E_FCOE
10582 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010583 i += snprintf(&buf[i], REMAIN(i), " FCOE");
Vasu Dev38e00432014-08-01 13:27:03 -070010584#endif
Shannon Nelson6dec1012015-09-28 14:12:30 -040010585 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010586 i += snprintf(&buf[i], REMAIN(i), " VEB");
Shannon Nelson6dec1012015-09-28 14:12:30 -040010587 else
Joe Perches3b195842015-12-03 04:20:57 -080010588 i += snprintf(&buf[i], REMAIN(i), " VEPA");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010589
Joe Perches3b195842015-12-03 04:20:57 -080010590 dev_info(&pf->pdev->dev, "%s\n", buf);
10591 kfree(buf);
Shannon Nelson7fd89542015-10-21 19:47:04 -040010592 WARN_ON(i > INFO_STRING_LEN);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010593}
10594
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010595/**
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010596 * i40e_get_platform_mac_addr - get platform-specific MAC address
10597 *
10598 * @pdev: PCI device information struct
10599 * @pf: board private structure
10600 *
10601 * Look up the MAC address in Open Firmware on systems that support it,
10602 * and use IDPROM on SPARC if no OF address is found. On return, the
10603 * I40E_FLAG_PF_MAC will be wset in pf->flags if a platform-specific value
10604 * has been selected.
10605 **/
10606static void i40e_get_platform_mac_addr(struct pci_dev *pdev, struct i40e_pf *pf)
10607{
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010608 pf->flags &= ~I40E_FLAG_PF_MAC;
Sowmini Varadhanba942722016-01-12 19:32:31 -080010609 if (!eth_platform_get_mac_address(&pdev->dev, pf->hw.mac.addr))
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010610 pf->flags |= I40E_FLAG_PF_MAC;
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010611}
10612
10613/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010614 * i40e_probe - Device initialization routine
10615 * @pdev: PCI device information struct
10616 * @ent: entry in i40e_pci_tbl
10617 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010618 * i40e_probe initializes a PF identified by a pci_dev structure.
10619 * The OS initialization, configuring of the PF private structure,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010620 * and a hardware reset occur.
10621 *
10622 * Returns 0 on success, negative on failure
10623 **/
10624static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
10625{
Catherine Sullivane8278452015-02-06 08:52:08 +000010626 struct i40e_aq_get_phy_abilities_resp abilities;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010627 struct i40e_pf *pf;
10628 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010629 static u16 pfs_found;
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010630 u16 wol_nvm_bits;
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010631 u16 link_status;
Jean Sacren6f66a482015-09-19 05:08:45 -060010632 int err;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040010633 u32 val;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010634 u32 i;
Helin Zhang58fc3262015-10-01 14:37:38 -040010635 u8 set_fc_aq_fail;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010636
10637 err = pci_enable_device_mem(pdev);
10638 if (err)
10639 return err;
10640
10641 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +000010642 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +000010643 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +000010644 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
10645 if (err) {
10646 dev_err(&pdev->dev,
10647 "DMA configuration failed: 0x%x\n", err);
10648 goto err_dma;
10649 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010650 }
10651
10652 /* set up pci connections */
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020010653 err = pci_request_mem_regions(pdev, i40e_driver_name);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010654 if (err) {
10655 dev_info(&pdev->dev,
10656 "pci_request_selected_regions failed %d\n", err);
10657 goto err_pci_reg;
10658 }
10659
10660 pci_enable_pcie_error_reporting(pdev);
10661 pci_set_master(pdev);
10662
10663 /* Now that we have a PCI connection, we need to do the
10664 * low level device setup. This is primarily setting up
10665 * the Admin Queue structures and then querying for the
10666 * device's current profile information.
10667 */
10668 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
10669 if (!pf) {
10670 err = -ENOMEM;
10671 goto err_pf_alloc;
10672 }
10673 pf->next_vsi = 0;
10674 pf->pdev = pdev;
10675 set_bit(__I40E_DOWN, &pf->state);
10676
10677 hw = &pf->hw;
10678 hw->back = pf;
Anjali Singhai232f4702015-02-26 16:15:39 +000010679
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010680 pf->ioremap_len = min_t(int, pci_resource_len(pdev, 0),
10681 I40E_MAX_CSR_SPACE);
Anjali Singhai232f4702015-02-26 16:15:39 +000010682
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010683 hw->hw_addr = ioremap(pci_resource_start(pdev, 0), pf->ioremap_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010684 if (!hw->hw_addr) {
10685 err = -EIO;
10686 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
10687 (unsigned int)pci_resource_start(pdev, 0),
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010688 pf->ioremap_len, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010689 goto err_ioremap;
10690 }
10691 hw->vendor_id = pdev->vendor;
10692 hw->device_id = pdev->device;
10693 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
10694 hw->subsystem_vendor_id = pdev->subsystem_vendor;
10695 hw->subsystem_device_id = pdev->subsystem_device;
10696 hw->bus.device = PCI_SLOT(pdev->devfn);
10697 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010698 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010699
Shannon Nelsonde03d2b2016-03-10 14:59:44 -080010700 /* set up the locks for the AQ, do this only once in probe
10701 * and destroy them only once in remove
10702 */
10703 mutex_init(&hw->aq.asq_mutex);
10704 mutex_init(&hw->aq.arq_mutex);
10705
Alexander Duyck5d4ca232016-09-30 08:21:46 -040010706 pf->msg_enable = netif_msg_init(debug,
10707 NETIF_MSG_DRV |
10708 NETIF_MSG_PROBE |
10709 NETIF_MSG_LINK);
10710 if (debug < -1)
10711 pf->hw.debug_mask = debug;
Shannon Nelson5b5faa42014-10-17 03:14:51 +000010712
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +000010713 /* do a special CORER for clearing PXE mode once at init */
10714 if (hw->revision_id == 0 &&
10715 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
10716 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
10717 i40e_flush(hw);
10718 msleep(200);
10719 pf->corer_count++;
10720
10721 i40e_clear_pxe_mode(hw);
10722 }
10723
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010724 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +000010725 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010726 err = i40e_pf_reset(hw);
10727 if (err) {
10728 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
10729 goto err_pf_reset;
10730 }
10731 pf->pfr_count++;
10732
10733 hw->aq.num_arq_entries = I40E_AQ_LEN;
10734 hw->aq.num_asq_entries = I40E_AQ_LEN;
10735 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10736 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10737 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010738
Carolyn Wybornyb294ac72014-12-11 07:06:39 +000010739 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010740 "%s-%s:misc",
10741 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010742
10743 err = i40e_init_shared_code(hw);
10744 if (err) {
Anjali Singhai Jainb2a75c52015-04-27 14:57:20 -040010745 dev_warn(&pdev->dev, "unidentified MAC or BLANK NVM: %d\n",
10746 err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010747 goto err_pf_reset;
10748 }
10749
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010750 /* set up a default setting for link flow control */
10751 pf->hw.fc.requested_mode = I40E_FC_NONE;
10752
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010753 err = i40e_init_adminq(hw);
Carolyn Wyborny2b2426a762015-10-26 19:44:35 -040010754 if (err) {
10755 if (err == I40E_ERR_FIRMWARE_API_VERSION)
10756 dev_info(&pdev->dev,
10757 "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");
10758 else
10759 dev_info(&pdev->dev,
10760 "The driver for the device stopped because the device firmware failed to init. Try updating your NVM image.\n");
10761
10762 goto err_pf_reset;
10763 }
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010764
Shannon Nelson6dec1012015-09-28 14:12:30 -040010765 /* provide nvm, fw, api versions */
10766 dev_info(&pdev->dev, "fw %d.%d.%05d api %d.%d nvm %s\n",
10767 hw->aq.fw_maj_ver, hw->aq.fw_min_ver, hw->aq.fw_build,
10768 hw->aq.api_maj_ver, hw->aq.api_min_ver,
10769 i40e_nvm_version_str(hw));
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010770
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010771 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
10772 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +000010773 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010774 "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");
10775 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
10776 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +000010777 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010778 "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 +000010779
Shannon Nelson4eb3f762014-03-06 08:59:58 +000010780 i40e_verify_eeprom(pf);
10781
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +000010782 /* Rev 0 hardware was never productized */
10783 if (hw->revision_id < 1)
10784 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");
10785
Shannon Nelson6ff4ef82013-12-21 05:44:49 +000010786 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010787 err = i40e_get_capabilities(pf);
10788 if (err)
10789 goto err_adminq_setup;
10790
10791 err = i40e_sw_init(pf);
10792 if (err) {
10793 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
10794 goto err_sw_init;
10795 }
10796
10797 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
10798 hw->func_caps.num_rx_qp,
10799 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
10800 if (err) {
10801 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
10802 goto err_init_lan_hmc;
10803 }
10804
10805 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
10806 if (err) {
10807 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
10808 err = -ENOENT;
10809 goto err_configure_lan_hmc;
10810 }
10811
Neerav Parikhb686ece2014-12-14 01:55:11 +000010812 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
10813 * Ignore error return codes because if it was already disabled via
10814 * hardware settings this will fail
10815 */
Neerav Parikhf1bbad32016-01-13 16:51:39 -080010816 if (pf->flags & I40E_FLAG_STOP_FW_LLDP) {
Neerav Parikhb686ece2014-12-14 01:55:11 +000010817 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
10818 i40e_aq_stop_lldp(hw, true, NULL);
10819 }
10820
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010821 i40e_get_mac_addr(hw, hw->mac.addr);
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010822 /* allow a platform config to override the HW addr */
10823 i40e_get_platform_mac_addr(pdev, pf);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +000010824 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010825 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
10826 err = -EIO;
10827 goto err_mac_addr;
10828 }
10829 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +000010830 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +000010831 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
10832 if (is_valid_ether_addr(hw->mac.port_addr))
10833 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -070010834#ifdef I40E_FCOE
10835 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
10836 if (err)
10837 dev_info(&pdev->dev,
10838 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
10839 if (!is_valid_ether_addr(hw->mac.san_addr)) {
10840 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
10841 hw->mac.san_addr);
10842 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
10843 }
10844 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
10845#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010846
10847 pci_set_drvdata(pdev, pf);
10848 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010849#ifdef CONFIG_I40E_DCB
10850 err = i40e_init_pf_dcb(pf);
10851 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +000010852 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
David Ertmanc17ef432016-09-30 01:36:21 -070010853 pf->flags &= ~(I40E_FLAG_DCB_CAPABLE | I40E_FLAG_DCB_ENABLED);
Neerav Parikh014269f2014-04-01 07:11:48 +000010854 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010855 }
10856#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010857
10858 /* set up periodic task facility */
10859 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
10860 pf->service_timer_period = HZ;
10861
10862 INIT_WORK(&pf->service_task, i40e_service_task);
10863 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
10864 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010865
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010866 /* NVM bit on means WoL disabled for the port */
10867 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -080010868 if (BIT (hw->port) & wol_nvm_bits || hw->partition_id != 1)
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010869 pf->wol_en = false;
10870 else
10871 pf->wol_en = true;
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010872 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
10873
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010874 /* set up the main switch operations */
10875 i40e_determine_queue_usage(pf);
Jesse Brandeburgc11472802015-04-07 19:45:39 -040010876 err = i40e_init_interrupt_scheme(pf);
10877 if (err)
10878 goto err_switch_setup;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010879
Mitch Williams505682c2014-05-20 08:01:37 +000010880 /* The number of VSIs reported by the FW is the minimum guaranteed
10881 * to us; HW supports far more and we share the remaining pool with
10882 * the other PFs. We allocate space for more than the guarantee with
10883 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010884 */
Mitch Williams505682c2014-05-20 08:01:37 +000010885 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
10886 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
10887 else
10888 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
10889
10890 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
Jesse Brandeburgd17038d2015-12-23 12:05:55 -080010891 pf->vsi = kcalloc(pf->num_alloc_vsi, sizeof(struct i40e_vsi *),
10892 GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +000010893 if (!pf->vsi) {
10894 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010895 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +000010896 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010897
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040010898#ifdef CONFIG_PCI_IOV
10899 /* prep for VF support */
10900 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10901 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
10902 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
10903 if (pci_num_vf(pdev))
10904 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
10905 }
10906#endif
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010907 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010908 if (err) {
10909 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
10910 goto err_vsis;
10911 }
Helin Zhang58fc3262015-10-01 14:37:38 -040010912
10913 /* Make sure flow control is set according to current settings */
10914 err = i40e_set_fc(hw, &set_fc_aq_fail, true);
10915 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_GET)
10916 dev_dbg(&pf->pdev->dev,
10917 "Set fc with err %s aq_err %s on get_phy_cap\n",
10918 i40e_stat_str(hw, err),
10919 i40e_aq_str(hw, hw->aq.asq_last_status));
10920 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_SET)
10921 dev_dbg(&pf->pdev->dev,
10922 "Set fc with err %s aq_err %s on set_phy_config\n",
10923 i40e_stat_str(hw, err),
10924 i40e_aq_str(hw, hw->aq.asq_last_status));
10925 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_UPDATE)
10926 dev_dbg(&pf->pdev->dev,
10927 "Set fc with err %s aq_err %s on get_link_info\n",
10928 i40e_stat_str(hw, err),
10929 i40e_aq_str(hw, hw->aq.asq_last_status));
10930
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010931 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +000010932 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010933 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
10934 i40e_vsi_open(pf->vsi[i]);
10935 break;
10936 }
10937 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010938
Shannon Nelson2f0aff42016-01-04 10:33:08 -080010939 /* The driver only wants link up/down and module qualification
10940 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010941 */
10942 err = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -080010943 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -070010944 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -080010945 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010946 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010947 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
10948 i40e_stat_str(&pf->hw, err),
10949 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010950
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040010951 /* Reconfigure hardware for allowing smaller MSS in the case
10952 * of TSO, so that we avoid the MDD being fired and causing
10953 * a reset in the case of small MSS+TSO.
10954 */
10955 val = rd32(hw, I40E_REG_MSS);
10956 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
10957 val &= ~I40E_REG_MSS_MIN_MASK;
10958 val |= I40E_64BYTE_MSS;
10959 wr32(hw, I40E_REG_MSS, val);
10960 }
10961
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -080010962 if (pf->flags & I40E_FLAG_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +000010963 msleep(75);
10964 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
10965 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010966 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
10967 i40e_stat_str(&pf->hw, err),
10968 i40e_aq_str(&pf->hw,
10969 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +000010970 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010971 /* The main driver is (mostly) up and happy. We need to set this state
10972 * before setting up the misc vector or we get a race and the vector
10973 * ends up disabled forever.
10974 */
10975 clear_bit(__I40E_DOWN, &pf->state);
10976
10977 /* In case of MSIX we are going to setup the misc vector right here
10978 * to handle admin queue events etc. In case of legacy and MSI
10979 * the misc functionality and queue processing is combined in
10980 * the same vector and that gets setup at open.
10981 */
10982 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
10983 err = i40e_setup_misc_vector(pf);
10984 if (err) {
10985 dev_info(&pdev->dev,
10986 "setup of misc vector failed: %d\n", err);
10987 goto err_vsis;
10988 }
10989 }
10990
Greg Rosedf805f62014-04-04 04:43:16 +000010991#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010992 /* prep for VF support */
10993 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +000010994 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
10995 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010996 /* disable link interrupts for VFs */
10997 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
10998 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
10999 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
11000 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -080011001
11002 if (pci_num_vf(pdev)) {
11003 dev_info(&pdev->dev,
11004 "Active VFs found, allocating resources.\n");
11005 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
11006 if (err)
11007 dev_info(&pdev->dev,
11008 "Error %d allocating resources for existing VFs\n",
11009 err);
11010 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011011 }
Greg Rosedf805f62014-04-04 04:43:16 +000011012#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011013
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011014 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11015 pf->iwarp_base_vector = i40e_get_lump(pf, pf->irq_pile,
11016 pf->num_iwarp_msix,
11017 I40E_IWARP_IRQ_PILE_ID);
11018 if (pf->iwarp_base_vector < 0) {
11019 dev_info(&pdev->dev,
11020 "failed to get tracking for %d vectors for IWARP err=%d\n",
11021 pf->num_iwarp_msix, pf->iwarp_base_vector);
11022 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
11023 }
11024 }
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000011025
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011026 i40e_dbg_pf_init(pf);
11027
11028 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +000011029 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011030
11031 /* since everything's happy, start the service_task timer */
11032 mod_timer(&pf->service_timer,
11033 round_jiffies(jiffies + pf->service_timer_period));
11034
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011035 /* add this PF to client device list and launch a client service task */
11036 err = i40e_lan_add_device(pf);
11037 if (err)
11038 dev_info(&pdev->dev, "Failed to add PF to client API service list: %d\n",
11039 err);
11040
Vasu Dev38e00432014-08-01 13:27:03 -070011041#ifdef I40E_FCOE
11042 /* create FCoE interface */
11043 i40e_fcoe_vsi_setup(pf);
11044
11045#endif
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011046#define PCI_SPEED_SIZE 8
11047#define PCI_WIDTH_SIZE 8
11048 /* Devices on the IOSF bus do not have this information
11049 * and will report PCI Gen 1 x 1 by default so don't bother
11050 * checking them.
11051 */
11052 if (!(pf->flags & I40E_FLAG_NO_PCI_LINK_CHECK)) {
11053 char speed[PCI_SPEED_SIZE] = "Unknown";
11054 char width[PCI_WIDTH_SIZE] = "Unknown";
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011055
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011056 /* Get the negotiated link width and speed from PCI config
11057 * space
11058 */
11059 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA,
11060 &link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011061
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011062 i40e_set_pci_config_data(hw, link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011063
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011064 switch (hw->bus.speed) {
11065 case i40e_bus_speed_8000:
11066 strncpy(speed, "8.0", PCI_SPEED_SIZE); break;
11067 case i40e_bus_speed_5000:
11068 strncpy(speed, "5.0", PCI_SPEED_SIZE); break;
11069 case i40e_bus_speed_2500:
11070 strncpy(speed, "2.5", PCI_SPEED_SIZE); break;
11071 default:
11072 break;
11073 }
11074 switch (hw->bus.width) {
11075 case i40e_bus_width_pcie_x8:
11076 strncpy(width, "8", PCI_WIDTH_SIZE); break;
11077 case i40e_bus_width_pcie_x4:
11078 strncpy(width, "4", PCI_WIDTH_SIZE); break;
11079 case i40e_bus_width_pcie_x2:
11080 strncpy(width, "2", PCI_WIDTH_SIZE); break;
11081 case i40e_bus_width_pcie_x1:
11082 strncpy(width, "1", PCI_WIDTH_SIZE); break;
11083 default:
11084 break;
11085 }
11086
11087 dev_info(&pdev->dev, "PCI-Express: Speed %sGT/s Width x%s\n",
11088 speed, width);
11089
11090 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
11091 hw->bus.speed < i40e_bus_speed_8000) {
11092 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
11093 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
11094 }
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011095 }
11096
Catherine Sullivane8278452015-02-06 08:52:08 +000011097 /* get the requested speeds from the fw */
11098 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
11099 if (err)
Neerav Parikh8279e492015-09-03 17:18:50 -040011100 dev_dbg(&pf->pdev->dev, "get requested speeds ret = %s last_status = %s\n",
11101 i40e_stat_str(&pf->hw, err),
11102 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Catherine Sullivane8278452015-02-06 08:52:08 +000011103 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
11104
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -040011105 /* get the supported phy types from the fw */
11106 err = i40e_aq_get_phy_capabilities(hw, false, true, &abilities, NULL);
11107 if (err)
11108 dev_dbg(&pf->pdev->dev, "get supported phy types ret = %s last_status = %s\n",
11109 i40e_stat_str(&pf->hw, err),
11110 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
11111 pf->hw.phy.phy_types = le32_to_cpu(abilities.phy_type);
11112
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -040011113 /* Add a filter to drop all Flow control frames from any VSI from being
11114 * transmitted. By doing so we stop a malicious VF from sending out
11115 * PAUSE or PFC frames and potentially controlling traffic for other
11116 * PF/VF VSIs.
11117 * The FW can still send Flow control frames if enabled.
11118 */
11119 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
11120 pf->main_vsi_seid);
11121
Carolyn Wyborny31b606d2016-02-17 16:12:12 -080011122 if ((pf->hw.device_id == I40E_DEV_ID_10G_BASE_T) ||
11123 (pf->hw.device_id == I40E_DEV_ID_10G_BASE_T4))
11124 pf->flags |= I40E_FLAG_HAVE_10GBASET_PHY;
11125
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011126 /* print a string summarizing features */
11127 i40e_print_features(pf);
11128
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011129 return 0;
11130
11131 /* Unwind what we've done if something failed in the setup */
11132err_vsis:
11133 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011134 i40e_clear_interrupt_scheme(pf);
11135 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +000011136err_switch_setup:
11137 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011138 del_timer_sync(&pf->service_timer);
11139err_mac_addr:
11140err_configure_lan_hmc:
11141 (void)i40e_shutdown_lan_hmc(hw);
11142err_init_lan_hmc:
11143 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011144err_sw_init:
11145err_adminq_setup:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011146err_pf_reset:
11147 iounmap(hw->hw_addr);
11148err_ioremap:
11149 kfree(pf);
11150err_pf_alloc:
11151 pci_disable_pcie_error_reporting(pdev);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011152 pci_release_mem_regions(pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011153err_pci_reg:
11154err_dma:
11155 pci_disable_device(pdev);
11156 return err;
11157}
11158
11159/**
11160 * i40e_remove - Device removal routine
11161 * @pdev: PCI device information struct
11162 *
11163 * i40e_remove is called by the PCI subsystem to alert the driver
11164 * that is should release a PCI device. This could be caused by a
11165 * Hot-Plug event, or because the driver is going to be removed from
11166 * memory.
11167 **/
11168static void i40e_remove(struct pci_dev *pdev)
11169{
11170 struct i40e_pf *pf = pci_get_drvdata(pdev);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011171 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011172 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011173 int i;
11174
11175 i40e_dbg_pf_exit(pf);
11176
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000011177 i40e_ptp_stop(pf);
11178
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011179 /* Disable RSS in hw */
Shannon Nelson272cdaf22016-02-17 16:12:21 -080011180 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), 0);
11181 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), 0);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011182
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011183 /* no more scheduling of any task */
Pandi Kumar Maharajana4618ec2016-02-18 09:19:25 -080011184 set_bit(__I40E_SUSPENDED, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011185 set_bit(__I40E_DOWN, &pf->state);
Shannon Nelsonc99abb42016-03-10 14:59:45 -080011186 if (pf->service_timer.data)
11187 del_timer_sync(&pf->service_timer);
11188 if (pf->service_task.func)
11189 cancel_work_sync(&pf->service_task);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011190
Mitch Williamseb2d80b2014-02-13 03:48:48 -080011191 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
11192 i40e_free_vfs(pf);
11193 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
11194 }
11195
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011196 i40e_fdir_teardown(pf);
11197
11198 /* If there is a switch structure or any orphans, remove them.
11199 * This will leave only the PF's VSI remaining.
11200 */
11201 for (i = 0; i < I40E_MAX_VEB; i++) {
11202 if (!pf->veb[i])
11203 continue;
11204
11205 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
11206 pf->veb[i]->uplink_seid == 0)
11207 i40e_switch_branch_release(pf->veb[i]);
11208 }
11209
11210 /* Now we can shutdown the PF's VSI, just before we kill
11211 * adminq and hmc.
11212 */
11213 if (pf->vsi[pf->lan_vsi])
11214 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
11215
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011216 /* remove attached clients */
11217 ret_code = i40e_lan_del_device(pf);
11218 if (ret_code) {
11219 dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
11220 ret_code);
11221 }
11222
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011223 /* shutdown and destroy the HMC */
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011224 if (hw->hmc.hmc_obj) {
11225 ret_code = i40e_shutdown_lan_hmc(hw);
Shannon Nelson60442de2014-04-23 04:50:13 +000011226 if (ret_code)
11227 dev_warn(&pdev->dev,
11228 "Failed to destroy the HMC resources: %d\n",
11229 ret_code);
11230 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011231
11232 /* shutdown the adminq */
Henry Tiemanac9c5c62016-09-06 18:05:11 -070011233 i40e_shutdown_adminq(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011234
Jesse Brandeburg8ddb3322015-11-18 15:47:06 -080011235 /* destroy the locks only once, here */
11236 mutex_destroy(&hw->aq.arq_mutex);
11237 mutex_destroy(&hw->aq.asq_mutex);
11238
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011239 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
11240 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +000011241 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011242 if (pf->vsi[i]) {
11243 i40e_vsi_clear_rings(pf->vsi[i]);
11244 i40e_vsi_clear(pf->vsi[i]);
11245 pf->vsi[i] = NULL;
11246 }
11247 }
11248
11249 for (i = 0; i < I40E_MAX_VEB; i++) {
11250 kfree(pf->veb[i]);
11251 pf->veb[i] = NULL;
11252 }
11253
11254 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011255 kfree(pf->vsi);
11256
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011257 iounmap(hw->hw_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011258 kfree(pf);
Johannes Thumshirn56d766d2016-06-07 09:44:05 +020011259 pci_release_mem_regions(pdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011260
11261 pci_disable_pcie_error_reporting(pdev);
11262 pci_disable_device(pdev);
11263}
11264
11265/**
11266 * i40e_pci_error_detected - warning that something funky happened in PCI land
11267 * @pdev: PCI device information struct
11268 *
11269 * Called to warn that something happened and the error handling steps
11270 * are in progress. Allows the driver to quiesce things, be ready for
11271 * remediation.
11272 **/
11273static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
11274 enum pci_channel_state error)
11275{
11276 struct i40e_pf *pf = pci_get_drvdata(pdev);
11277
11278 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
11279
Guilherme G Piccoliedfc23ee2016-10-03 00:31:12 -070011280 if (!pf) {
11281 dev_info(&pdev->dev,
11282 "Cannot recover - error happened during device probe\n");
11283 return PCI_ERS_RESULT_DISCONNECT;
11284 }
11285
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011286 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011287 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
11288 rtnl_lock();
11289 i40e_prep_for_reset(pf);
11290 rtnl_unlock();
11291 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011292
11293 /* Request a slot reset */
11294 return PCI_ERS_RESULT_NEED_RESET;
11295}
11296
11297/**
11298 * i40e_pci_error_slot_reset - a PCI slot reset just happened
11299 * @pdev: PCI device information struct
11300 *
11301 * Called to find if the driver can work with the device now that
11302 * the pci slot has been reset. If a basic connection seems good
11303 * (registers are readable and have sane content) then return a
11304 * happy little PCI_ERS_RESULT_xxx.
11305 **/
11306static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
11307{
11308 struct i40e_pf *pf = pci_get_drvdata(pdev);
11309 pci_ers_result_t result;
11310 int err;
11311 u32 reg;
11312
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011313 dev_dbg(&pdev->dev, "%s\n", __func__);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011314 if (pci_enable_device_mem(pdev)) {
11315 dev_info(&pdev->dev,
11316 "Cannot re-enable PCI device after reset.\n");
11317 result = PCI_ERS_RESULT_DISCONNECT;
11318 } else {
11319 pci_set_master(pdev);
11320 pci_restore_state(pdev);
11321 pci_save_state(pdev);
11322 pci_wake_from_d3(pdev, false);
11323
11324 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
11325 if (reg == 0)
11326 result = PCI_ERS_RESULT_RECOVERED;
11327 else
11328 result = PCI_ERS_RESULT_DISCONNECT;
11329 }
11330
11331 err = pci_cleanup_aer_uncorrect_error_status(pdev);
11332 if (err) {
11333 dev_info(&pdev->dev,
11334 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
11335 err);
11336 /* non-fatal, continue */
11337 }
11338
11339 return result;
11340}
11341
11342/**
11343 * i40e_pci_error_resume - restart operations after PCI error recovery
11344 * @pdev: PCI device information struct
11345 *
11346 * Called to allow the driver to bring things back up after PCI error
11347 * and/or reset recovery has finished.
11348 **/
11349static void i40e_pci_error_resume(struct pci_dev *pdev)
11350{
11351 struct i40e_pf *pf = pci_get_drvdata(pdev);
11352
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011353 dev_dbg(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011354 if (test_bit(__I40E_SUSPENDED, &pf->state))
11355 return;
11356
11357 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011358 i40e_handle_reset_warning(pf);
Vasily Averin4c4935a2015-07-08 15:04:26 +030011359 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011360}
11361
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011362/**
11363 * i40e_shutdown - PCI callback for shutting down
11364 * @pdev: PCI device information struct
11365 **/
11366static void i40e_shutdown(struct pci_dev *pdev)
11367{
11368 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011369 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011370
11371 set_bit(__I40E_SUSPENDED, &pf->state);
11372 set_bit(__I40E_DOWN, &pf->state);
11373 rtnl_lock();
11374 i40e_prep_for_reset(pf);
11375 rtnl_unlock();
11376
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011377 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11378 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11379
Catherine Sullivan02b42492015-07-10 19:35:59 -040011380 del_timer_sync(&pf->service_timer);
11381 cancel_work_sync(&pf->service_task);
11382 i40e_fdir_teardown(pf);
11383
11384 rtnl_lock();
11385 i40e_prep_for_reset(pf);
11386 rtnl_unlock();
11387
11388 wr32(hw, I40E_PFPM_APM,
11389 (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11390 wr32(hw, I40E_PFPM_WUFC,
11391 (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11392
Shannon Nelsone1477582015-02-21 06:44:33 +000011393 i40e_clear_interrupt_scheme(pf);
11394
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011395 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011396 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011397 pci_set_power_state(pdev, PCI_D3hot);
11398 }
11399}
11400
11401#ifdef CONFIG_PM
11402/**
11403 * i40e_suspend - PCI callback for moving to D3
11404 * @pdev: PCI device information struct
11405 **/
11406static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
11407{
11408 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011409 struct i40e_hw *hw = &pf->hw;
Greg Rose059ff692016-05-16 10:26:38 -070011410 int retval = 0;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011411
11412 set_bit(__I40E_SUSPENDED, &pf->state);
11413 set_bit(__I40E_DOWN, &pf->state);
Mitch Williams3932dbf2015-03-31 00:45:04 -070011414
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011415 rtnl_lock();
11416 i40e_prep_for_reset(pf);
11417 rtnl_unlock();
11418
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011419 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11420 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11421
Greg Roseb33d3b72016-05-16 10:26:37 -070011422 i40e_stop_misc_vector(pf);
11423
Greg Rose059ff692016-05-16 10:26:38 -070011424 retval = pci_save_state(pdev);
11425 if (retval)
11426 return retval;
11427
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011428 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011429 pci_set_power_state(pdev, PCI_D3hot);
11430
Greg Rose059ff692016-05-16 10:26:38 -070011431 return retval;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011432}
11433
11434/**
11435 * i40e_resume - PCI callback for waking up from D3
11436 * @pdev: PCI device information struct
11437 **/
11438static int i40e_resume(struct pci_dev *pdev)
11439{
11440 struct i40e_pf *pf = pci_get_drvdata(pdev);
11441 u32 err;
11442
11443 pci_set_power_state(pdev, PCI_D0);
11444 pci_restore_state(pdev);
11445 /* pci_restore_state() clears dev->state_saves, so
11446 * call pci_save_state() again to restore it.
11447 */
11448 pci_save_state(pdev);
11449
11450 err = pci_enable_device_mem(pdev);
11451 if (err) {
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011452 dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n");
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011453 return err;
11454 }
11455 pci_set_master(pdev);
11456
11457 /* no wakeup events while running */
11458 pci_wake_from_d3(pdev, false);
11459
11460 /* handling the reset will rebuild the device state */
11461 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
11462 clear_bit(__I40E_DOWN, &pf->state);
11463 rtnl_lock();
11464 i40e_reset_and_rebuild(pf, false);
11465 rtnl_unlock();
11466 }
11467
11468 return 0;
11469}
11470
11471#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011472static const struct pci_error_handlers i40e_err_handler = {
11473 .error_detected = i40e_pci_error_detected,
11474 .slot_reset = i40e_pci_error_slot_reset,
11475 .resume = i40e_pci_error_resume,
11476};
11477
11478static struct pci_driver i40e_driver = {
11479 .name = i40e_driver_name,
11480 .id_table = i40e_pci_tbl,
11481 .probe = i40e_probe,
11482 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011483#ifdef CONFIG_PM
11484 .suspend = i40e_suspend,
11485 .resume = i40e_resume,
11486#endif
11487 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011488 .err_handler = &i40e_err_handler,
11489 .sriov_configure = i40e_pci_sriov_configure,
11490};
11491
11492/**
11493 * i40e_init_module - Driver registration routine
11494 *
11495 * i40e_init_module is the first routine called when the driver is
11496 * loaded. All it does is register with the PCI subsystem.
11497 **/
11498static int __init i40e_init_module(void)
11499{
11500 pr_info("%s: %s - version %s\n", i40e_driver_name,
11501 i40e_driver_string, i40e_driver_version_str);
11502 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
Greg Rose96664482015-02-06 08:52:13 +000011503
Jesse Brandeburg2803b162015-12-22 14:25:08 -080011504 /* we will see if single thread per module is enough for now,
11505 * it can't be any worse than using the system workqueue which
11506 * was already single threaded
11507 */
Jacob Keller6992a6c2016-08-04 11:37:01 -070011508 i40e_wq = alloc_workqueue("%s", WQ_UNBOUND | WQ_MEM_RECLAIM, 1,
11509 i40e_driver_name);
Jesse Brandeburg2803b162015-12-22 14:25:08 -080011510 if (!i40e_wq) {
11511 pr_err("%s: Failed to create workqueue\n", i40e_driver_name);
11512 return -ENOMEM;
11513 }
11514
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011515 i40e_dbg_init();
11516 return pci_register_driver(&i40e_driver);
11517}
11518module_init(i40e_init_module);
11519
11520/**
11521 * i40e_exit_module - Driver exit cleanup routine
11522 *
11523 * i40e_exit_module is called just before the driver is removed
11524 * from memory.
11525 **/
11526static void __exit i40e_exit_module(void)
11527{
11528 pci_unregister_driver(&i40e_driver);
Jesse Brandeburg2803b162015-12-22 14:25:08 -080011529 destroy_workqueue(i40e_wq);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011530 i40e_dbg_exit();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011531}
11532module_exit(i40e_exit_module);