blob: 734cba693d16cbc63712c084465a8a914a0ad262 [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
Catherine Sullivan50f26a52016-03-10 14:59:51 -080043#define DRV_VERSION_MINOR 5
Bimmy Pujaric74dff12016-05-03 15:13:20 -070044#define DRV_VERSION_BUILD 16
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);
Helin Zhange69ff812015-10-21 19:56:22 -040060static void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
61 u16 rss_table_size, u16 rss_size);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080062static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080063static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000064
65/* i40e_pci_tbl - PCI Device ID Table
66 *
67 * Last entry must be all 0s
68 *
69 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
70 * Class, Class Mask, private data (not used) }
71 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020072static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080073 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080074 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080075 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
76 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080077 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
78 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
79 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Mitch Williams5960d332014-09-13 07:40:47 +000080 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
Shannon Nelsonbc5166b92015-08-26 15:14:10 -040081 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T4), 0},
Jesse Brandeburgae24b402015-03-27 00:12:09 -070082 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
Anjali Singhai Jain35dae512015-12-22 14:25:03 -080083 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_X722), 0},
84 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_X722), 0},
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -040085 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_X722), 0},
86 {PCI_VDEVICE(INTEL, I40E_DEV_ID_1G_BASE_T_X722), 0},
87 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T_X722), 0},
Catherine Sullivand6bf58c2016-03-18 12:18:08 -070088 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_I_X722), 0},
Catherine Sullivana3aa5032016-04-13 03:08:31 -070089 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_I_X722), 0},
Shannon Nelson48a3b512015-07-23 16:54:39 -040090 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
91 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2_A), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000092 /* required last entry */
93 {0, }
94};
95MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
96
97#define I40E_MAX_VF_COUNT 128
98static int debug = -1;
99module_param(debug, int, 0);
100MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
101
102MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
103MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
104MODULE_LICENSE("GPL");
105MODULE_VERSION(DRV_VERSION);
106
Jesse Brandeburg2803b162015-12-22 14:25:08 -0800107static struct workqueue_struct *i40e_wq;
108
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000109/**
110 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
111 * @hw: pointer to the HW structure
112 * @mem: ptr to mem struct to fill out
113 * @size: size of memory requested
114 * @alignment: what to align the allocation to
115 **/
116int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
117 u64 size, u32 alignment)
118{
119 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
120
121 mem->size = ALIGN(size, alignment);
122 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
123 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000124 if (!mem->va)
125 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000126
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000127 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000128}
129
130/**
131 * i40e_free_dma_mem_d - OS specific memory free for shared code
132 * @hw: pointer to the HW structure
133 * @mem: ptr to mem struct to free
134 **/
135int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
136{
137 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
138
139 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
140 mem->va = NULL;
141 mem->pa = 0;
142 mem->size = 0;
143
144 return 0;
145}
146
147/**
148 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
149 * @hw: pointer to the HW structure
150 * @mem: ptr to mem struct to fill out
151 * @size: size of memory requested
152 **/
153int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
154 u32 size)
155{
156 mem->size = size;
157 mem->va = kzalloc(size, GFP_KERNEL);
158
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000159 if (!mem->va)
160 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000161
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000162 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000163}
164
165/**
166 * i40e_free_virt_mem_d - OS specific memory free for shared code
167 * @hw: pointer to the HW structure
168 * @mem: ptr to mem struct to free
169 **/
170int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
171{
172 /* it's ok to kfree a NULL pointer */
173 kfree(mem->va);
174 mem->va = NULL;
175 mem->size = 0;
176
177 return 0;
178}
179
180/**
181 * i40e_get_lump - find a lump of free generic resource
182 * @pf: board private structure
183 * @pile: the pile of resource to search
184 * @needed: the number of items needed
185 * @id: an owner id to stick on the items assigned
186 *
187 * Returns the base item index of the lump, or negative for error
188 *
189 * The search_hint trick and lack of advanced fit-finding only work
190 * because we're highly likely to have all the same size lump requests.
191 * Linear search time and any fragmentation should be minimal.
192 **/
193static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
194 u16 needed, u16 id)
195{
196 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000197 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000198
199 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
200 dev_info(&pf->pdev->dev,
201 "param err: pile=%p needed=%d id=0x%04x\n",
202 pile, needed, id);
203 return -EINVAL;
204 }
205
206 /* start the linear search with an imperfect hint */
207 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000208 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000209 /* skip already allocated entries */
210 if (pile->list[i] & I40E_PILE_VALID_BIT) {
211 i++;
212 continue;
213 }
214
215 /* do we have enough in this lump? */
216 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
217 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
218 break;
219 }
220
221 if (j == needed) {
222 /* there was enough, so assign it to the requestor */
223 for (j = 0; j < needed; j++)
224 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
225 ret = i;
226 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000227 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000228 }
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400229
230 /* not enough, so skip over it and continue looking */
231 i += j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000232 }
233
234 return ret;
235}
236
237/**
238 * i40e_put_lump - return a lump of generic resource
239 * @pile: the pile of resource to search
240 * @index: the base item index
241 * @id: the owner id of the items assigned
242 *
243 * Returns the count of items in the lump
244 **/
245static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
246{
247 int valid_id = (id | I40E_PILE_VALID_BIT);
248 int count = 0;
249 int i;
250
251 if (!pile || index >= pile->num_entries)
252 return -EINVAL;
253
254 for (i = index;
255 i < pile->num_entries && pile->list[i] == valid_id;
256 i++) {
257 pile->list[i] = 0;
258 count++;
259 }
260
261 if (count && index < pile->search_hint)
262 pile->search_hint = index;
263
264 return count;
265}
266
267/**
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700268 * i40e_find_vsi_from_id - searches for the vsi with the given id
269 * @pf - the pf structure to search for the vsi
270 * @id - id of the vsi it is searching for
271 **/
272struct i40e_vsi *i40e_find_vsi_from_id(struct i40e_pf *pf, u16 id)
273{
274 int i;
275
276 for (i = 0; i < pf->num_alloc_vsi; i++)
277 if (pf->vsi[i] && (pf->vsi[i]->id == id))
278 return pf->vsi[i];
279
280 return NULL;
281}
282
283/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000284 * i40e_service_event_schedule - Schedule the service task to wake up
285 * @pf: board private structure
286 *
287 * If not already scheduled, this puts the task into the work queue
288 **/
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -0600289void i40e_service_event_schedule(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000290{
291 if (!test_bit(__I40E_DOWN, &pf->state) &&
292 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
293 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
Jesse Brandeburg2803b162015-12-22 14:25:08 -0800294 queue_work(i40e_wq, &pf->service_task);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000295}
296
297/**
298 * i40e_tx_timeout - Respond to a Tx Hang
299 * @netdev: network interface device structure
300 *
301 * If any port has noticed a Tx timeout, it is likely that the whole
302 * device is munged, not just the one netdev port, so go for the full
303 * reset.
304 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700305#ifdef I40E_FCOE
306void i40e_tx_timeout(struct net_device *netdev)
307#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000308static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700309#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000310{
311 struct i40e_netdev_priv *np = netdev_priv(netdev);
312 struct i40e_vsi *vsi = np->vsi;
313 struct i40e_pf *pf = vsi->back;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400314 struct i40e_ring *tx_ring = NULL;
315 unsigned int i, hung_queue = 0;
316 u32 head, val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000317
318 pf->tx_timeout_count++;
319
Kiran Patilb03a8c12015-09-24 18:13:15 -0400320 /* find the stopped queue the same way the stack does */
321 for (i = 0; i < netdev->num_tx_queues; i++) {
322 struct netdev_queue *q;
323 unsigned long trans_start;
324
325 q = netdev_get_tx_queue(netdev, i);
Florian Westphal9b366272016-05-03 16:33:14 +0200326 trans_start = q->trans_start;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400327 if (netif_xmit_stopped(q) &&
328 time_after(jiffies,
329 (trans_start + netdev->watchdog_timeo))) {
330 hung_queue = i;
331 break;
332 }
333 }
334
335 if (i == netdev->num_tx_queues) {
336 netdev_info(netdev, "tx_timeout: no netdev hung queue found\n");
337 } else {
338 /* now that we have an index, find the tx_ring struct */
339 for (i = 0; i < vsi->num_queue_pairs; i++) {
340 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
341 if (hung_queue ==
342 vsi->tx_rings[i]->queue_index) {
343 tx_ring = vsi->tx_rings[i];
344 break;
345 }
346 }
347 }
348 }
349
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000350 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Kiran Patilb03a8c12015-09-24 18:13:15 -0400351 pf->tx_timeout_recovery_level = 1; /* reset after some time */
352 else if (time_before(jiffies,
353 (pf->tx_timeout_last_recovery + netdev->watchdog_timeo)))
354 return; /* don't do any new action before the next timeout */
355
356 if (tx_ring) {
357 head = i40e_get_head(tx_ring);
358 /* Read interrupt register */
359 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
360 val = rd32(&pf->hw,
361 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
362 tx_ring->vsi->base_vector - 1));
363 else
364 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
365
366 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",
367 vsi->seid, hung_queue, tx_ring->next_to_clean,
368 head, tx_ring->next_to_use,
369 readl(tx_ring->tail), val);
370 }
371
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000372 pf->tx_timeout_last_recovery = jiffies;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400373 netdev_info(netdev, "tx_timeout recovery level %d, hung_queue %d\n",
374 pf->tx_timeout_recovery_level, hung_queue);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000375
376 switch (pf->tx_timeout_recovery_level) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000377 case 1:
378 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
379 break;
380 case 2:
381 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
382 break;
383 case 3:
384 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
385 break;
386 default:
387 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000388 break;
389 }
Kiran Patilb03a8c12015-09-24 18:13:15 -0400390
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000391 i40e_service_event_schedule(pf);
392 pf->tx_timeout_recovery_level++;
393}
394
395/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000396 * i40e_get_vsi_stats_struct - Get System Network Statistics
397 * @vsi: the VSI we care about
398 *
399 * Returns the address of the device statistics structure.
400 * The statistics are actually updated from the service task.
401 **/
402struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
403{
404 return &vsi->net_stats;
405}
406
407/**
408 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
409 * @netdev: network interface device structure
410 *
411 * Returns the address of the device statistics structure.
412 * The statistics are actually updated from the service task.
413 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700414#ifdef I40E_FCOE
415struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
416 struct net_device *netdev,
417 struct rtnl_link_stats64 *stats)
418#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000419static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
420 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000421 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700422#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000423{
424 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000425 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000426 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000427 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
428 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000429
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000430 if (test_bit(__I40E_DOWN, &vsi->state))
431 return stats;
432
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800433 if (!vsi->tx_rings)
434 return stats;
435
Alexander Duyck980e9b12013-09-28 06:01:03 +0000436 rcu_read_lock();
437 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000438 u64 bytes, packets;
439 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000440
Alexander Duyck980e9b12013-09-28 06:01:03 +0000441 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
442 if (!tx_ring)
443 continue;
444
445 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700446 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000447 packets = tx_ring->stats.packets;
448 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700449 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000450
451 stats->tx_packets += packets;
452 stats->tx_bytes += bytes;
453 rx_ring = &tx_ring[1];
454
455 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700456 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000457 packets = rx_ring->stats.packets;
458 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700459 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000460
461 stats->rx_packets += packets;
462 stats->rx_bytes += bytes;
463 }
464 rcu_read_unlock();
465
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000466 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000467 stats->multicast = vsi_stats->multicast;
468 stats->tx_errors = vsi_stats->tx_errors;
469 stats->tx_dropped = vsi_stats->tx_dropped;
470 stats->rx_errors = vsi_stats->rx_errors;
Jesse Brandeburgd8201e22015-07-23 16:54:35 -0400471 stats->rx_dropped = vsi_stats->rx_dropped;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000472 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
473 stats->rx_length_errors = vsi_stats->rx_length_errors;
474
475 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000476}
477
478/**
479 * i40e_vsi_reset_stats - Resets all stats of the given vsi
480 * @vsi: the VSI to have its stats reset
481 **/
482void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
483{
484 struct rtnl_link_stats64 *ns;
485 int i;
486
487 if (!vsi)
488 return;
489
490 ns = i40e_get_vsi_stats_struct(vsi);
491 memset(ns, 0, sizeof(*ns));
492 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
493 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
494 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000495 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000496 for (i = 0; i < vsi->num_queue_pairs; i++) {
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400497 memset(&vsi->rx_rings[i]->stats, 0,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000498 sizeof(vsi->rx_rings[i]->stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400499 memset(&vsi->rx_rings[i]->rx_stats, 0,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000500 sizeof(vsi->rx_rings[i]->rx_stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400501 memset(&vsi->tx_rings[i]->stats, 0,
Alexander Duyck9f65e15b2013-09-28 06:00:58 +0000502 sizeof(vsi->tx_rings[i]->stats));
503 memset(&vsi->tx_rings[i]->tx_stats, 0,
504 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000505 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000506 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000507 vsi->stat_offsets_loaded = false;
508}
509
510/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000511 * i40e_pf_reset_stats - Reset all of the stats for the given PF
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000512 * @pf: the PF to be reset
513 **/
514void i40e_pf_reset_stats(struct i40e_pf *pf)
515{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000516 int i;
517
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000518 memset(&pf->stats, 0, sizeof(pf->stats));
519 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
520 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000521
522 for (i = 0; i < I40E_MAX_VEB; i++) {
523 if (pf->veb[i]) {
524 memset(&pf->veb[i]->stats, 0,
525 sizeof(pf->veb[i]->stats));
526 memset(&pf->veb[i]->stats_offsets, 0,
527 sizeof(pf->veb[i]->stats_offsets));
528 pf->veb[i]->stat_offsets_loaded = false;
529 }
530 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000531}
532
533/**
534 * i40e_stat_update48 - read and update a 48 bit stat from the chip
535 * @hw: ptr to the hardware info
536 * @hireg: the high 32 bit reg to read
537 * @loreg: the low 32 bit reg to read
538 * @offset_loaded: has the initial offset been loaded yet
539 * @offset: ptr to current offset value
540 * @stat: ptr to the stat
541 *
542 * Since the device stats are not reset at PFReset, they likely will not
543 * be zeroed when the driver starts. We'll save the first values read
544 * and use them as offsets to be subtracted from the raw values in order
545 * to report stats that count from zero. In the process, we also manage
546 * the potential roll-over.
547 **/
548static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
549 bool offset_loaded, u64 *offset, u64 *stat)
550{
551 u64 new_data;
552
Shannon Nelsonab600852014-01-17 15:36:39 -0800553 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000554 new_data = rd32(hw, loreg);
555 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
556 } else {
557 new_data = rd64(hw, loreg);
558 }
559 if (!offset_loaded)
560 *offset = new_data;
561 if (likely(new_data >= *offset))
562 *stat = new_data - *offset;
563 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400564 *stat = (new_data + BIT_ULL(48)) - *offset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000565 *stat &= 0xFFFFFFFFFFFFULL;
566}
567
568/**
569 * i40e_stat_update32 - read and update a 32 bit stat from the chip
570 * @hw: ptr to the hardware info
571 * @reg: the hw reg to read
572 * @offset_loaded: has the initial offset been loaded yet
573 * @offset: ptr to current offset value
574 * @stat: ptr to the stat
575 **/
576static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
577 bool offset_loaded, u64 *offset, u64 *stat)
578{
579 u32 new_data;
580
581 new_data = rd32(hw, reg);
582 if (!offset_loaded)
583 *offset = new_data;
584 if (likely(new_data >= *offset))
585 *stat = (u32)(new_data - *offset);
586 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400587 *stat = (u32)((new_data + BIT_ULL(32)) - *offset);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000588}
589
590/**
591 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
592 * @vsi: the VSI to be updated
593 **/
594void i40e_update_eth_stats(struct i40e_vsi *vsi)
595{
596 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
597 struct i40e_pf *pf = vsi->back;
598 struct i40e_hw *hw = &pf->hw;
599 struct i40e_eth_stats *oes;
600 struct i40e_eth_stats *es; /* device's eth stats */
601
602 es = &vsi->eth_stats;
603 oes = &vsi->eth_stats_offsets;
604
605 /* Gather up the stats that the hw collects */
606 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
607 vsi->stat_offsets_loaded,
608 &oes->tx_errors, &es->tx_errors);
609 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
610 vsi->stat_offsets_loaded,
611 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000612 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
613 vsi->stat_offsets_loaded,
614 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
615 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
616 vsi->stat_offsets_loaded,
617 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000618
619 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
620 I40E_GLV_GORCL(stat_idx),
621 vsi->stat_offsets_loaded,
622 &oes->rx_bytes, &es->rx_bytes);
623 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
624 I40E_GLV_UPRCL(stat_idx),
625 vsi->stat_offsets_loaded,
626 &oes->rx_unicast, &es->rx_unicast);
627 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
628 I40E_GLV_MPRCL(stat_idx),
629 vsi->stat_offsets_loaded,
630 &oes->rx_multicast, &es->rx_multicast);
631 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
632 I40E_GLV_BPRCL(stat_idx),
633 vsi->stat_offsets_loaded,
634 &oes->rx_broadcast, &es->rx_broadcast);
635
636 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
637 I40E_GLV_GOTCL(stat_idx),
638 vsi->stat_offsets_loaded,
639 &oes->tx_bytes, &es->tx_bytes);
640 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
641 I40E_GLV_UPTCL(stat_idx),
642 vsi->stat_offsets_loaded,
643 &oes->tx_unicast, &es->tx_unicast);
644 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
645 I40E_GLV_MPTCL(stat_idx),
646 vsi->stat_offsets_loaded,
647 &oes->tx_multicast, &es->tx_multicast);
648 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
649 I40E_GLV_BPTCL(stat_idx),
650 vsi->stat_offsets_loaded,
651 &oes->tx_broadcast, &es->tx_broadcast);
652 vsi->stat_offsets_loaded = true;
653}
654
655/**
656 * i40e_update_veb_stats - Update Switch component statistics
657 * @veb: the VEB being updated
658 **/
659static void i40e_update_veb_stats(struct i40e_veb *veb)
660{
661 struct i40e_pf *pf = veb->pf;
662 struct i40e_hw *hw = &pf->hw;
663 struct i40e_eth_stats *oes;
664 struct i40e_eth_stats *es; /* device's eth stats */
Neerav Parikhfe860af2015-07-10 19:36:02 -0400665 struct i40e_veb_tc_stats *veb_oes;
666 struct i40e_veb_tc_stats *veb_es;
667 int i, idx = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000668
669 idx = veb->stats_idx;
670 es = &veb->stats;
671 oes = &veb->stats_offsets;
Neerav Parikhfe860af2015-07-10 19:36:02 -0400672 veb_es = &veb->tc_stats;
673 veb_oes = &veb->tc_stats_offsets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000674
675 /* Gather up the stats that the hw collects */
676 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
677 veb->stat_offsets_loaded,
678 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000679 if (hw->revision_id > 0)
680 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
681 veb->stat_offsets_loaded,
682 &oes->rx_unknown_protocol,
683 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000684 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
685 veb->stat_offsets_loaded,
686 &oes->rx_bytes, &es->rx_bytes);
687 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
688 veb->stat_offsets_loaded,
689 &oes->rx_unicast, &es->rx_unicast);
690 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
691 veb->stat_offsets_loaded,
692 &oes->rx_multicast, &es->rx_multicast);
693 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
694 veb->stat_offsets_loaded,
695 &oes->rx_broadcast, &es->rx_broadcast);
696
697 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
698 veb->stat_offsets_loaded,
699 &oes->tx_bytes, &es->tx_bytes);
700 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
701 veb->stat_offsets_loaded,
702 &oes->tx_unicast, &es->tx_unicast);
703 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
704 veb->stat_offsets_loaded,
705 &oes->tx_multicast, &es->tx_multicast);
706 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
707 veb->stat_offsets_loaded,
708 &oes->tx_broadcast, &es->tx_broadcast);
Neerav Parikhfe860af2015-07-10 19:36:02 -0400709 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
710 i40e_stat_update48(hw, I40E_GLVEBTC_RPCH(i, idx),
711 I40E_GLVEBTC_RPCL(i, idx),
712 veb->stat_offsets_loaded,
713 &veb_oes->tc_rx_packets[i],
714 &veb_es->tc_rx_packets[i]);
715 i40e_stat_update48(hw, I40E_GLVEBTC_RBCH(i, idx),
716 I40E_GLVEBTC_RBCL(i, idx),
717 veb->stat_offsets_loaded,
718 &veb_oes->tc_rx_bytes[i],
719 &veb_es->tc_rx_bytes[i]);
720 i40e_stat_update48(hw, I40E_GLVEBTC_TPCH(i, idx),
721 I40E_GLVEBTC_TPCL(i, idx),
722 veb->stat_offsets_loaded,
723 &veb_oes->tc_tx_packets[i],
724 &veb_es->tc_tx_packets[i]);
725 i40e_stat_update48(hw, I40E_GLVEBTC_TBCH(i, idx),
726 I40E_GLVEBTC_TBCL(i, idx),
727 veb->stat_offsets_loaded,
728 &veb_oes->tc_tx_bytes[i],
729 &veb_es->tc_tx_bytes[i]);
730 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000731 veb->stat_offsets_loaded = true;
732}
733
Vasu Dev38e00432014-08-01 13:27:03 -0700734#ifdef I40E_FCOE
735/**
736 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
737 * @vsi: the VSI that is capable of doing FCoE
738 **/
739static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
740{
741 struct i40e_pf *pf = vsi->back;
742 struct i40e_hw *hw = &pf->hw;
743 struct i40e_fcoe_stats *ofs;
744 struct i40e_fcoe_stats *fs; /* device's eth stats */
745 int idx;
746
747 if (vsi->type != I40E_VSI_FCOE)
748 return;
749
Kiran Patil4147e2c2016-01-15 14:33:14 -0800750 idx = hw->pf_id + I40E_FCOE_PF_STAT_OFFSET;
Vasu Dev38e00432014-08-01 13:27:03 -0700751 fs = &vsi->fcoe_stats;
752 ofs = &vsi->fcoe_stats_offsets;
753
754 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
755 vsi->fcoe_stat_offsets_loaded,
756 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
757 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
758 vsi->fcoe_stat_offsets_loaded,
759 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
760 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
761 vsi->fcoe_stat_offsets_loaded,
762 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
763 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
764 vsi->fcoe_stat_offsets_loaded,
765 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
766 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
767 vsi->fcoe_stat_offsets_loaded,
768 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
769 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
770 vsi->fcoe_stat_offsets_loaded,
771 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
772 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
773 vsi->fcoe_stat_offsets_loaded,
774 &ofs->fcoe_last_error, &fs->fcoe_last_error);
775 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
776 vsi->fcoe_stat_offsets_loaded,
777 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
778
779 vsi->fcoe_stat_offsets_loaded = true;
780}
781
782#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000783/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000784 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000785 * @vsi: the VSI to be updated
786 *
787 * There are a few instances where we store the same stat in a
788 * couple of different structs. This is partly because we have
789 * the netdev stats that need to be filled out, which is slightly
790 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000791 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000792 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000793static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000794{
795 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000796 struct rtnl_link_stats64 *ons;
797 struct rtnl_link_stats64 *ns; /* netdev stats */
798 struct i40e_eth_stats *oes;
799 struct i40e_eth_stats *es; /* device's eth stats */
800 u32 tx_restart, tx_busy;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800801 u64 tx_lost_interrupt;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000802 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000803 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000804 u64 bytes, packets;
805 unsigned int start;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400806 u64 tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400807 u64 tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000808 u64 rx_p, rx_b;
809 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000810 u16 q;
811
812 if (test_bit(__I40E_DOWN, &vsi->state) ||
813 test_bit(__I40E_CONFIG_BUSY, &pf->state))
814 return;
815
816 ns = i40e_get_vsi_stats_struct(vsi);
817 ons = &vsi->net_stats_offsets;
818 es = &vsi->eth_stats;
819 oes = &vsi->eth_stats_offsets;
820
821 /* Gather up the netdev and vsi stats that the driver collects
822 * on the fly during packet processing
823 */
824 rx_b = rx_p = 0;
825 tx_b = tx_p = 0;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400826 tx_restart = tx_busy = tx_linearize = tx_force_wb = 0;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800827 tx_lost_interrupt = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000828 rx_page = 0;
829 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000830 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000831 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000832 /* locate Tx ring */
833 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000834
Alexander Duyck980e9b12013-09-28 06:01:03 +0000835 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700836 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000837 packets = p->stats.packets;
838 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700839 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000840 tx_b += bytes;
841 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000842 tx_restart += p->tx_stats.restart_queue;
843 tx_busy += p->tx_stats.tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400844 tx_linearize += p->tx_stats.tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400845 tx_force_wb += p->tx_stats.tx_force_wb;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800846 tx_lost_interrupt += p->tx_stats.tx_lost_interrupt;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000847
848 /* Rx queue is part of the same block as Tx queue */
849 p = &p[1];
850 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700851 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000852 packets = p->stats.packets;
853 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700854 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000855 rx_b += bytes;
856 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000857 rx_buf += p->rx_stats.alloc_buff_failed;
858 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000859 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000860 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000861 vsi->tx_restart = tx_restart;
862 vsi->tx_busy = tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400863 vsi->tx_linearize = tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400864 vsi->tx_force_wb = tx_force_wb;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800865 vsi->tx_lost_interrupt = tx_lost_interrupt;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000866 vsi->rx_page_failed = rx_page;
867 vsi->rx_buf_failed = rx_buf;
868
869 ns->rx_packets = rx_p;
870 ns->rx_bytes = rx_b;
871 ns->tx_packets = tx_p;
872 ns->tx_bytes = tx_b;
873
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000874 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000875 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000876 ons->tx_errors = oes->tx_errors;
877 ns->tx_errors = es->tx_errors;
878 ons->multicast = oes->rx_multicast;
879 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000880 ons->rx_dropped = oes->rx_discards;
881 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000882 ons->tx_dropped = oes->tx_discards;
883 ns->tx_dropped = es->tx_discards;
884
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000885 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000886 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000887 ns->rx_crc_errors = pf->stats.crc_errors;
888 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
889 ns->rx_length_errors = pf->stats.rx_length_errors;
890 }
891}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000892
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000893/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +0000894 * i40e_update_pf_stats - Update the PF statistics counters.
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000895 * @pf: the PF to be updated
896 **/
897static void i40e_update_pf_stats(struct i40e_pf *pf)
898{
899 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
900 struct i40e_hw_port_stats *nsd = &pf->stats;
901 struct i40e_hw *hw = &pf->hw;
902 u32 val;
903 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000904
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000905 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
906 I40E_GLPRT_GORCL(hw->port),
907 pf->stat_offsets_loaded,
908 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
909 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
910 I40E_GLPRT_GOTCL(hw->port),
911 pf->stat_offsets_loaded,
912 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
913 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
914 pf->stat_offsets_loaded,
915 &osd->eth.rx_discards,
916 &nsd->eth.rx_discards);
Shannon Nelson532d2832014-04-23 04:50:09 +0000917 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
918 I40E_GLPRT_UPRCL(hw->port),
919 pf->stat_offsets_loaded,
920 &osd->eth.rx_unicast,
921 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000922 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
923 I40E_GLPRT_MPRCL(hw->port),
924 pf->stat_offsets_loaded,
925 &osd->eth.rx_multicast,
926 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +0000927 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
928 I40E_GLPRT_BPRCL(hw->port),
929 pf->stat_offsets_loaded,
930 &osd->eth.rx_broadcast,
931 &nsd->eth.rx_broadcast);
932 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
933 I40E_GLPRT_UPTCL(hw->port),
934 pf->stat_offsets_loaded,
935 &osd->eth.tx_unicast,
936 &nsd->eth.tx_unicast);
937 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
938 I40E_GLPRT_MPTCL(hw->port),
939 pf->stat_offsets_loaded,
940 &osd->eth.tx_multicast,
941 &nsd->eth.tx_multicast);
942 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
943 I40E_GLPRT_BPTCL(hw->port),
944 pf->stat_offsets_loaded,
945 &osd->eth.tx_broadcast,
946 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000947
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000948 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
949 pf->stat_offsets_loaded,
950 &osd->tx_dropped_link_down,
951 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000952
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000953 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
954 pf->stat_offsets_loaded,
955 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000956
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000957 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
958 pf->stat_offsets_loaded,
959 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000960
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000961 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
962 pf->stat_offsets_loaded,
963 &osd->mac_local_faults,
964 &nsd->mac_local_faults);
965 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
966 pf->stat_offsets_loaded,
967 &osd->mac_remote_faults,
968 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000969
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000970 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
971 pf->stat_offsets_loaded,
972 &osd->rx_length_errors,
973 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000974
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000975 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
976 pf->stat_offsets_loaded,
977 &osd->link_xon_rx, &nsd->link_xon_rx);
978 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
979 pf->stat_offsets_loaded,
980 &osd->link_xon_tx, &nsd->link_xon_tx);
Neerav Parikh95db2392015-11-06 15:26:09 -0800981 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
982 pf->stat_offsets_loaded,
983 &osd->link_xoff_rx, &nsd->link_xoff_rx);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000984 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
985 pf->stat_offsets_loaded,
986 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000987
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000988 for (i = 0; i < 8; i++) {
Neerav Parikh95db2392015-11-06 15:26:09 -0800989 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
990 pf->stat_offsets_loaded,
991 &osd->priority_xoff_rx[i],
992 &nsd->priority_xoff_rx[i]);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000993 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000994 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000995 &osd->priority_xon_rx[i],
996 &nsd->priority_xon_rx[i]);
997 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000998 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000999 &osd->priority_xon_tx[i],
1000 &nsd->priority_xon_tx[i]);
1001 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001002 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001003 &osd->priority_xoff_tx[i],
1004 &nsd->priority_xoff_tx[i]);
1005 i40e_stat_update32(hw,
1006 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001007 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001008 &osd->priority_xon_2_xoff[i],
1009 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001010 }
1011
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001012 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1013 I40E_GLPRT_PRC64L(hw->port),
1014 pf->stat_offsets_loaded,
1015 &osd->rx_size_64, &nsd->rx_size_64);
1016 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1017 I40E_GLPRT_PRC127L(hw->port),
1018 pf->stat_offsets_loaded,
1019 &osd->rx_size_127, &nsd->rx_size_127);
1020 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1021 I40E_GLPRT_PRC255L(hw->port),
1022 pf->stat_offsets_loaded,
1023 &osd->rx_size_255, &nsd->rx_size_255);
1024 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1025 I40E_GLPRT_PRC511L(hw->port),
1026 pf->stat_offsets_loaded,
1027 &osd->rx_size_511, &nsd->rx_size_511);
1028 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1029 I40E_GLPRT_PRC1023L(hw->port),
1030 pf->stat_offsets_loaded,
1031 &osd->rx_size_1023, &nsd->rx_size_1023);
1032 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1033 I40E_GLPRT_PRC1522L(hw->port),
1034 pf->stat_offsets_loaded,
1035 &osd->rx_size_1522, &nsd->rx_size_1522);
1036 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1037 I40E_GLPRT_PRC9522L(hw->port),
1038 pf->stat_offsets_loaded,
1039 &osd->rx_size_big, &nsd->rx_size_big);
1040
1041 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1042 I40E_GLPRT_PTC64L(hw->port),
1043 pf->stat_offsets_loaded,
1044 &osd->tx_size_64, &nsd->tx_size_64);
1045 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1046 I40E_GLPRT_PTC127L(hw->port),
1047 pf->stat_offsets_loaded,
1048 &osd->tx_size_127, &nsd->tx_size_127);
1049 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1050 I40E_GLPRT_PTC255L(hw->port),
1051 pf->stat_offsets_loaded,
1052 &osd->tx_size_255, &nsd->tx_size_255);
1053 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1054 I40E_GLPRT_PTC511L(hw->port),
1055 pf->stat_offsets_loaded,
1056 &osd->tx_size_511, &nsd->tx_size_511);
1057 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1058 I40E_GLPRT_PTC1023L(hw->port),
1059 pf->stat_offsets_loaded,
1060 &osd->tx_size_1023, &nsd->tx_size_1023);
1061 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1062 I40E_GLPRT_PTC1522L(hw->port),
1063 pf->stat_offsets_loaded,
1064 &osd->tx_size_1522, &nsd->tx_size_1522);
1065 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1066 I40E_GLPRT_PTC9522L(hw->port),
1067 pf->stat_offsets_loaded,
1068 &osd->tx_size_big, &nsd->tx_size_big);
1069
1070 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1071 pf->stat_offsets_loaded,
1072 &osd->rx_undersize, &nsd->rx_undersize);
1073 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1074 pf->stat_offsets_loaded,
1075 &osd->rx_fragments, &nsd->rx_fragments);
1076 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1077 pf->stat_offsets_loaded,
1078 &osd->rx_oversize, &nsd->rx_oversize);
1079 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1080 pf->stat_offsets_loaded,
1081 &osd->rx_jabber, &nsd->rx_jabber);
1082
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001083 /* FDIR stats */
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001084 i40e_stat_update32(hw,
1085 I40E_GLQF_PCNT(I40E_FD_ATR_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001086 pf->stat_offsets_loaded,
1087 &osd->fd_atr_match, &nsd->fd_atr_match);
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001088 i40e_stat_update32(hw,
1089 I40E_GLQF_PCNT(I40E_FD_SB_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001090 pf->stat_offsets_loaded,
1091 &osd->fd_sb_match, &nsd->fd_sb_match);
Anjali Singhai Jain60ccd452015-04-16 20:06:01 -04001092 i40e_stat_update32(hw,
1093 I40E_GLQF_PCNT(I40E_FD_ATR_TUNNEL_STAT_IDX(pf->hw.pf_id)),
1094 pf->stat_offsets_loaded,
1095 &osd->fd_atr_tunnel_match, &nsd->fd_atr_tunnel_match);
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001096
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001097 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1098 nsd->tx_lpi_status =
1099 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1100 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1101 nsd->rx_lpi_status =
1102 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1103 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1104 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1105 pf->stat_offsets_loaded,
1106 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1107 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1108 pf->stat_offsets_loaded,
1109 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1110
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001111 if (pf->flags & I40E_FLAG_FD_SB_ENABLED &&
1112 !(pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED))
1113 nsd->fd_sb_status = true;
1114 else
1115 nsd->fd_sb_status = false;
1116
1117 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED &&
1118 !(pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
1119 nsd->fd_atr_status = true;
1120 else
1121 nsd->fd_atr_status = false;
1122
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001123 pf->stat_offsets_loaded = true;
1124}
1125
1126/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001127 * i40e_update_stats - Update the various statistics counters.
1128 * @vsi: the VSI to be updated
1129 *
1130 * Update the various stats for this VSI and its related entities.
1131 **/
1132void i40e_update_stats(struct i40e_vsi *vsi)
1133{
1134 struct i40e_pf *pf = vsi->back;
1135
1136 if (vsi == pf->vsi[pf->lan_vsi])
1137 i40e_update_pf_stats(pf);
1138
1139 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001140#ifdef I40E_FCOE
1141 i40e_update_fcoe_stats(vsi);
1142#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001143}
1144
1145/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001146 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1147 * @vsi: the VSI to be searched
1148 * @macaddr: the MAC address
1149 * @vlan: the vlan
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001150 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001151 * @is_netdev: make sure its a netdev filter, else doesn't matter
1152 *
1153 * Returns ptr to the filter object or NULL
1154 **/
1155static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1156 u8 *macaddr, s16 vlan,
1157 bool is_vf, bool is_netdev)
1158{
1159 struct i40e_mac_filter *f;
1160
1161 if (!vsi || !macaddr)
1162 return NULL;
1163
1164 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1165 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1166 (vlan == f->vlan) &&
1167 (!is_vf || f->is_vf) &&
1168 (!is_netdev || f->is_netdev))
1169 return f;
1170 }
1171 return NULL;
1172}
1173
1174/**
1175 * i40e_find_mac - Find a mac addr in the macvlan filters list
1176 * @vsi: the VSI to be searched
1177 * @macaddr: the MAC address we are searching for
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001178 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001179 * @is_netdev: make sure its a netdev filter, else doesn't matter
1180 *
1181 * Returns the first filter with the provided MAC address or NULL if
1182 * MAC address was not found
1183 **/
1184struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1185 bool is_vf, bool is_netdev)
1186{
1187 struct i40e_mac_filter *f;
1188
1189 if (!vsi || !macaddr)
1190 return NULL;
1191
1192 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1193 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1194 (!is_vf || f->is_vf) &&
1195 (!is_netdev || f->is_netdev))
1196 return f;
1197 }
1198 return NULL;
1199}
1200
1201/**
1202 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1203 * @vsi: the VSI to be searched
1204 *
1205 * Returns true if VSI is in vlan mode or false otherwise
1206 **/
1207bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1208{
1209 struct i40e_mac_filter *f;
1210
1211 /* Only -1 for all the filters denotes not in vlan mode
1212 * so we have to go through all the list in order to make sure
1213 */
1214 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Greg Rosed9b68f82015-07-23 16:54:31 -04001215 if (f->vlan >= 0 || vsi->info.pvid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001216 return true;
1217 }
1218
1219 return false;
1220}
1221
1222/**
1223 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1224 * @vsi: the VSI to be searched
1225 * @macaddr: the mac address to be filtered
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001226 * @is_vf: true if it is a VF
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001227 * @is_netdev: true if it is a netdev
1228 *
1229 * Goes through all the macvlan filters and adds a
1230 * macvlan filter for each unique vlan that already exists
1231 *
1232 * Returns first filter found on success, else NULL
1233 **/
1234struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1235 bool is_vf, bool is_netdev)
1236{
1237 struct i40e_mac_filter *f;
1238
1239 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Mitch Williamsecbb44e2015-07-10 19:35:56 -04001240 if (vsi->info.pvid)
1241 f->vlan = le16_to_cpu(vsi->info.pvid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001242 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1243 is_vf, is_netdev)) {
1244 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001245 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001246 return NULL;
1247 }
1248 }
1249
1250 return list_first_entry_or_null(&vsi->mac_filter_list,
1251 struct i40e_mac_filter, list);
1252}
1253
1254/**
Mitch Williamsb36e9ab2015-11-19 11:34:16 -08001255 * i40e_del_mac_all_vlan - Remove a MAC filter from all VLANS
1256 * @vsi: the VSI to be searched
1257 * @macaddr: the mac address to be removed
1258 * @is_vf: true if it is a VF
1259 * @is_netdev: true if it is a netdev
1260 *
1261 * Removes a given MAC address from a VSI, regardless of VLAN
1262 *
1263 * Returns 0 for success, or error
1264 **/
1265int i40e_del_mac_all_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1266 bool is_vf, bool is_netdev)
1267{
1268 struct i40e_mac_filter *f = NULL;
1269 int changed = 0;
1270
1271 WARN(!spin_is_locked(&vsi->mac_filter_list_lock),
1272 "Missing mac_filter_list_lock\n");
1273 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1274 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1275 (is_vf == f->is_vf) &&
1276 (is_netdev == f->is_netdev)) {
1277 f->counter--;
1278 f->changed = true;
1279 changed = 1;
1280 }
1281 }
1282 if (changed) {
1283 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1284 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1285 return 0;
1286 }
1287 return -ENOENT;
1288}
1289
1290/**
Greg Rose8c27d422014-05-22 06:31:56 +00001291 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1292 * @vsi: the PF Main VSI - inappropriate for any other VSI
1293 * @macaddr: the MAC address
Shannon Nelson30650cc2014-07-29 04:01:50 +00001294 *
1295 * Some older firmware configurations set up a default promiscuous VLAN
1296 * filter that needs to be removed.
Greg Rose8c27d422014-05-22 06:31:56 +00001297 **/
Shannon Nelson30650cc2014-07-29 04:01:50 +00001298static int i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
Greg Rose8c27d422014-05-22 06:31:56 +00001299{
1300 struct i40e_aqc_remove_macvlan_element_data element;
1301 struct i40e_pf *pf = vsi->back;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001302 i40e_status ret;
Greg Rose8c27d422014-05-22 06:31:56 +00001303
1304 /* Only appropriate for the PF main VSI */
1305 if (vsi->type != I40E_VSI_MAIN)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001306 return -EINVAL;
Greg Rose8c27d422014-05-22 06:31:56 +00001307
Shannon Nelson30650cc2014-07-29 04:01:50 +00001308 memset(&element, 0, sizeof(element));
Greg Rose8c27d422014-05-22 06:31:56 +00001309 ether_addr_copy(element.mac_addr, macaddr);
1310 element.vlan_tag = 0;
1311 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1312 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001313 ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1314 if (ret)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001315 return -ENOENT;
1316
1317 return 0;
Greg Rose8c27d422014-05-22 06:31:56 +00001318}
1319
1320/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001321 * i40e_add_filter - Add a mac/vlan filter to the VSI
1322 * @vsi: the VSI to be searched
1323 * @macaddr: the MAC address
1324 * @vlan: the vlan
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001325 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001326 * @is_netdev: make sure its a netdev filter, else doesn't matter
1327 *
1328 * Returns ptr to the filter object or NULL when no memory available.
Kiran Patil21659032015-09-30 14:09:03 -04001329 *
1330 * NOTE: This function is expected to be called with mac_filter_list_lock
1331 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001332 **/
1333struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1334 u8 *macaddr, s16 vlan,
1335 bool is_vf, bool is_netdev)
1336{
1337 struct i40e_mac_filter *f;
1338
1339 if (!vsi || !macaddr)
1340 return NULL;
1341
1342 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1343 if (!f) {
1344 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1345 if (!f)
1346 goto add_filter_out;
1347
Greg Rose9a173902014-05-22 06:32:02 +00001348 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001349 f->vlan = vlan;
1350 f->changed = true;
1351
1352 INIT_LIST_HEAD(&f->list);
Kiran Patil04d5a212015-12-09 15:50:23 -08001353 list_add_tail(&f->list, &vsi->mac_filter_list);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001354 }
1355
1356 /* increment counter and add a new flag if needed */
1357 if (is_vf) {
1358 if (!f->is_vf) {
1359 f->is_vf = true;
1360 f->counter++;
1361 }
1362 } else if (is_netdev) {
1363 if (!f->is_netdev) {
1364 f->is_netdev = true;
1365 f->counter++;
1366 }
1367 } else {
1368 f->counter++;
1369 }
1370
1371 /* changed tells sync_filters_subtask to
1372 * push the filter down to the firmware
1373 */
1374 if (f->changed) {
1375 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1376 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1377 }
1378
1379add_filter_out:
1380 return f;
1381}
1382
1383/**
1384 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1385 * @vsi: the VSI to be searched
1386 * @macaddr: the MAC address
1387 * @vlan: the vlan
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001388 * @is_vf: make sure it's a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001389 * @is_netdev: make sure it's a netdev filter, else doesn't matter
Kiran Patil21659032015-09-30 14:09:03 -04001390 *
1391 * NOTE: This function is expected to be called with mac_filter_list_lock
1392 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001393 **/
1394void i40e_del_filter(struct i40e_vsi *vsi,
1395 u8 *macaddr, s16 vlan,
1396 bool is_vf, bool is_netdev)
1397{
1398 struct i40e_mac_filter *f;
1399
1400 if (!vsi || !macaddr)
1401 return;
1402
1403 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1404 if (!f || f->counter == 0)
1405 return;
1406
1407 if (is_vf) {
1408 if (f->is_vf) {
1409 f->is_vf = false;
1410 f->counter--;
1411 }
1412 } else if (is_netdev) {
1413 if (f->is_netdev) {
1414 f->is_netdev = false;
1415 f->counter--;
1416 }
1417 } else {
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00001418 /* make sure we don't remove a filter in use by VF or netdev */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001419 int min_f = 0;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001420
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001421 min_f += (f->is_vf ? 1 : 0);
1422 min_f += (f->is_netdev ? 1 : 0);
1423
1424 if (f->counter > min_f)
1425 f->counter--;
1426 }
1427
1428 /* counter == 0 tells sync_filters_subtask to
1429 * remove the filter from the firmware's list
1430 */
1431 if (f->counter == 0) {
1432 f->changed = true;
1433 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1434 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1435 }
1436}
1437
1438/**
1439 * i40e_set_mac - NDO callback to set mac address
1440 * @netdev: network interface device structure
1441 * @p: pointer to an address structure
1442 *
1443 * Returns 0 on success, negative on failure
1444 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001445#ifdef I40E_FCOE
1446int i40e_set_mac(struct net_device *netdev, void *p)
1447#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001448static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001449#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001450{
1451 struct i40e_netdev_priv *np = netdev_priv(netdev);
1452 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001453 struct i40e_pf *pf = vsi->back;
1454 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001455 struct sockaddr *addr = p;
1456 struct i40e_mac_filter *f;
1457
1458 if (!is_valid_ether_addr(addr->sa_data))
1459 return -EADDRNOTAVAIL;
1460
Shannon Nelson30650cc2014-07-29 04:01:50 +00001461 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1462 netdev_info(netdev, "already using mac address %pM\n",
1463 addr->sa_data);
1464 return 0;
1465 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001466
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001467 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1468 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1469 return -EADDRNOTAVAIL;
1470
Shannon Nelson30650cc2014-07-29 04:01:50 +00001471 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1472 netdev_info(netdev, "returning to hw mac address %pM\n",
1473 hw->mac.addr);
1474 else
1475 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1476
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001477 if (vsi->type == I40E_VSI_MAIN) {
1478 i40e_status ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001479
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001480 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001481 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001482 addr->sa_data, NULL);
1483 if (ret) {
1484 netdev_info(netdev,
1485 "Addr change for Main VSI failed: %d\n",
1486 ret);
1487 return -EADDRNOTAVAIL;
1488 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001489 }
1490
Shannon Nelson30650cc2014-07-29 04:01:50 +00001491 if (ether_addr_equal(netdev->dev_addr, hw->mac.addr)) {
1492 struct i40e_aqc_remove_macvlan_element_data element;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001493
Shannon Nelson30650cc2014-07-29 04:01:50 +00001494 memset(&element, 0, sizeof(element));
1495 ether_addr_copy(element.mac_addr, netdev->dev_addr);
1496 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1497 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1498 } else {
Kiran Patil21659032015-09-30 14:09:03 -04001499 spin_lock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001500 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1501 false, false);
Kiran Patil21659032015-09-30 14:09:03 -04001502 spin_unlock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001503 }
1504
Shannon Nelson30650cc2014-07-29 04:01:50 +00001505 if (ether_addr_equal(addr->sa_data, hw->mac.addr)) {
1506 struct i40e_aqc_add_macvlan_element_data element;
1507
1508 memset(&element, 0, sizeof(element));
1509 ether_addr_copy(element.mac_addr, hw->mac.addr);
1510 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
1511 i40e_aq_add_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1512 } else {
Kiran Patil21659032015-09-30 14:09:03 -04001513 spin_lock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson30650cc2014-07-29 04:01:50 +00001514 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1515 false, false);
1516 if (f)
1517 f->is_laa = true;
Kiran Patil21659032015-09-30 14:09:03 -04001518 spin_unlock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson30650cc2014-07-29 04:01:50 +00001519 }
1520
Shannon Nelson30650cc2014-07-29 04:01:50 +00001521 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Mitch Williamsea02e902015-11-09 15:35:50 -08001522
Jesse Brandeburgc53934c2016-01-04 10:33:06 -08001523 /* schedule our worker thread which will take care of
1524 * applying the new filter changes
1525 */
1526 i40e_service_event_schedule(vsi->back);
1527 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001528}
1529
1530/**
1531 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1532 * @vsi: the VSI being setup
1533 * @ctxt: VSI context structure
1534 * @enabled_tc: Enabled TCs bitmap
1535 * @is_add: True if called before Add VSI
1536 *
1537 * Setup VSI queue mapping for enabled traffic classes.
1538 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001539#ifdef I40E_FCOE
1540void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1541 struct i40e_vsi_context *ctxt,
1542 u8 enabled_tc,
1543 bool is_add)
1544#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001545static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1546 struct i40e_vsi_context *ctxt,
1547 u8 enabled_tc,
1548 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001549#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001550{
1551 struct i40e_pf *pf = vsi->back;
1552 u16 sections = 0;
1553 u8 netdev_tc = 0;
1554 u16 numtc = 0;
1555 u16 qcount;
1556 u8 offset;
1557 u16 qmap;
1558 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001559 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001560
1561 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1562 offset = 0;
1563
1564 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1565 /* Find numtc from enabled TC bitmap */
1566 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001567 if (enabled_tc & BIT(i)) /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001568 numtc++;
1569 }
1570 if (!numtc) {
1571 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1572 numtc = 1;
1573 }
1574 } else {
1575 /* At least TC0 is enabled in case of non-DCB case */
1576 numtc = 1;
1577 }
1578
1579 vsi->tc_config.numtc = numtc;
1580 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001581 /* Number of queues per enabled TC */
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001582 /* In MFP case we can have a much lower count of MSIx
1583 * vectors available and so we need to lower the used
1584 * q count.
1585 */
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001586 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
1587 qcount = min_t(int, vsi->alloc_queue_pairs, pf->num_lan_msix);
1588 else
1589 qcount = vsi->alloc_queue_pairs;
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001590 num_tc_qps = qcount / numtc;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04001591 num_tc_qps = min_t(int, num_tc_qps, i40e_pf_get_max_q_per_tc(pf));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001592
1593 /* Setup queue offset/count for all TCs for given VSI */
1594 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1595 /* See if the given TC is enabled for the given VSI */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08001596 if (vsi->tc_config.enabled_tc & BIT(i)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001597 /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001598 int pow, num_qps;
1599
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001600 switch (vsi->type) {
1601 case I40E_VSI_MAIN:
Helin Zhangacd65442015-10-26 19:44:28 -04001602 qcount = min_t(int, pf->alloc_rss_size,
1603 num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001604 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001605#ifdef I40E_FCOE
1606 case I40E_VSI_FCOE:
1607 qcount = num_tc_qps;
1608 break;
1609#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001610 case I40E_VSI_FDIR:
1611 case I40E_VSI_SRIOV:
1612 case I40E_VSI_VMDQ2:
1613 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001614 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001615 WARN_ON(i != 0);
1616 break;
1617 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001618 vsi->tc_config.tc_info[i].qoffset = offset;
1619 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001620
Shannon Nelson1e200e42015-02-27 09:15:24 +00001621 /* find the next higher power-of-2 of num queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001622 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001623 pow = 0;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001624 while (num_qps && (BIT_ULL(pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001625 pow++;
1626 num_qps >>= 1;
1627 }
1628
1629 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1630 qmap =
1631 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1632 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1633
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001634 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001635 } else {
1636 /* TC is not enabled so set the offset to
1637 * default queue and allocate one queue
1638 * for the given TC.
1639 */
1640 vsi->tc_config.tc_info[i].qoffset = 0;
1641 vsi->tc_config.tc_info[i].qcount = 1;
1642 vsi->tc_config.tc_info[i].netdev_tc = 0;
1643
1644 qmap = 0;
1645 }
1646 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1647 }
1648
1649 /* Set actual Tx/Rx queue pairs */
1650 vsi->num_queue_pairs = offset;
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001651 if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) {
1652 if (vsi->req_queue_pairs > 0)
1653 vsi->num_queue_pairs = vsi->req_queue_pairs;
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001654 else if (pf->flags & I40E_FLAG_MSIX_ENABLED)
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001655 vsi->num_queue_pairs = pf->num_lan_msix;
1656 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001657
1658 /* Scheduler section valid can only be set for ADD VSI */
1659 if (is_add) {
1660 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1661
1662 ctxt->info.up_enable_bits = enabled_tc;
1663 }
1664 if (vsi->type == I40E_VSI_SRIOV) {
1665 ctxt->info.mapping_flags |=
1666 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1667 for (i = 0; i < vsi->num_queue_pairs; i++)
1668 ctxt->info.queue_mapping[i] =
1669 cpu_to_le16(vsi->base_queue + i);
1670 } else {
1671 ctxt->info.mapping_flags |=
1672 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1673 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1674 }
1675 ctxt->info.valid_sections |= cpu_to_le16(sections);
1676}
1677
1678/**
1679 * i40e_set_rx_mode - NDO callback to set the netdev filters
1680 * @netdev: network interface device structure
1681 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001682#ifdef I40E_FCOE
1683void i40e_set_rx_mode(struct net_device *netdev)
1684#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001685static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001686#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001687{
1688 struct i40e_netdev_priv *np = netdev_priv(netdev);
1689 struct i40e_mac_filter *f, *ftmp;
1690 struct i40e_vsi *vsi = np->vsi;
1691 struct netdev_hw_addr *uca;
1692 struct netdev_hw_addr *mca;
1693 struct netdev_hw_addr *ha;
1694
Kiran Patil21659032015-09-30 14:09:03 -04001695 spin_lock_bh(&vsi->mac_filter_list_lock);
1696
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001697 /* add addr if not already in the filter list */
1698 netdev_for_each_uc_addr(uca, netdev) {
1699 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1700 if (i40e_is_vsi_in_vlan(vsi))
1701 i40e_put_mac_in_vlan(vsi, uca->addr,
1702 false, true);
1703 else
1704 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1705 false, true);
1706 }
1707 }
1708
1709 netdev_for_each_mc_addr(mca, netdev) {
1710 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1711 if (i40e_is_vsi_in_vlan(vsi))
1712 i40e_put_mac_in_vlan(vsi, mca->addr,
1713 false, true);
1714 else
1715 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1716 false, true);
1717 }
1718 }
1719
1720 /* remove filter if not in netdev list */
1721 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001722
1723 if (!f->is_netdev)
1724 continue;
1725
Shannon Nelson2f41f332015-08-26 15:14:20 -04001726 netdev_for_each_mc_addr(mca, netdev)
1727 if (ether_addr_equal(mca->addr, f->macaddr))
1728 goto bottom_of_search_loop;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001729
Shannon Nelson2f41f332015-08-26 15:14:20 -04001730 netdev_for_each_uc_addr(uca, netdev)
1731 if (ether_addr_equal(uca->addr, f->macaddr))
1732 goto bottom_of_search_loop;
1733
1734 for_each_dev_addr(netdev, ha)
1735 if (ether_addr_equal(ha->addr, f->macaddr))
1736 goto bottom_of_search_loop;
1737
1738 /* f->macaddr wasn't found in uc, mc, or ha list so delete it */
1739 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1740
1741bottom_of_search_loop:
1742 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001743 }
Kiran Patil21659032015-09-30 14:09:03 -04001744 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001745
1746 /* check for other flag changes */
1747 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1748 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1749 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1750 }
Jesse Brandeburgc53934c2016-01-04 10:33:06 -08001751
1752 /* schedule our worker thread which will take care of
1753 * applying the new filter changes
1754 */
1755 i40e_service_event_schedule(vsi->back);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001756}
1757
1758/**
Kiran Patil21659032015-09-30 14:09:03 -04001759 * i40e_mac_filter_entry_clone - Clones a MAC filter entry
1760 * @src: source MAC filter entry to be clones
1761 *
1762 * Returns the pointer to newly cloned MAC filter entry or NULL
1763 * in case of error
1764 **/
1765static struct i40e_mac_filter *i40e_mac_filter_entry_clone(
1766 struct i40e_mac_filter *src)
1767{
1768 struct i40e_mac_filter *f;
1769
1770 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1771 if (!f)
1772 return NULL;
1773 *f = *src;
1774
1775 INIT_LIST_HEAD(&f->list);
1776
1777 return f;
1778}
1779
1780/**
1781 * i40e_undo_del_filter_entries - Undo the changes made to MAC filter entries
1782 * @vsi: pointer to vsi struct
1783 * @from: Pointer to list which contains MAC filter entries - changes to
1784 * those entries needs to be undone.
1785 *
1786 * MAC filter entries from list were slated to be removed from device.
1787 **/
1788static void i40e_undo_del_filter_entries(struct i40e_vsi *vsi,
1789 struct list_head *from)
1790{
1791 struct i40e_mac_filter *f, *ftmp;
1792
1793 list_for_each_entry_safe(f, ftmp, from, list) {
1794 f->changed = true;
1795 /* Move the element back into MAC filter list*/
1796 list_move_tail(&f->list, &vsi->mac_filter_list);
1797 }
1798}
1799
1800/**
1801 * i40e_undo_add_filter_entries - Undo the changes made to MAC filter entries
1802 * @vsi: pointer to vsi struct
1803 *
1804 * MAC filter entries from list were slated to be added from device.
1805 **/
1806static void i40e_undo_add_filter_entries(struct i40e_vsi *vsi)
1807{
1808 struct i40e_mac_filter *f, *ftmp;
1809
1810 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1811 if (!f->changed && f->counter)
1812 f->changed = true;
1813 }
1814}
1815
1816/**
1817 * i40e_cleanup_add_list - Deletes the element from add list and release
1818 * memory
1819 * @add_list: Pointer to list which contains MAC filter entries
1820 **/
1821static void i40e_cleanup_add_list(struct list_head *add_list)
1822{
1823 struct i40e_mac_filter *f, *ftmp;
1824
1825 list_for_each_entry_safe(f, ftmp, add_list, list) {
1826 list_del(&f->list);
1827 kfree(f);
1828 }
1829}
1830
1831/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001832 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1833 * @vsi: ptr to the VSI
1834 *
1835 * Push any outstanding VSI filter changes through the AdminQ.
1836 *
1837 * Returns 0 or error value
1838 **/
Jesse Brandeburg17652c62015-11-05 17:01:02 -08001839int i40e_sync_vsi_filters(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001840{
Kiran Patil21659032015-09-30 14:09:03 -04001841 struct list_head tmp_del_list, tmp_add_list;
1842 struct i40e_mac_filter *f, *ftmp, *fclone;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001843 bool promisc_forced_on = false;
1844 bool add_happened = false;
1845 int filter_list_len = 0;
1846 u32 changed_flags = 0;
Mitch Williamsea02e902015-11-09 15:35:50 -08001847 i40e_status aq_ret = 0;
Kiran Patil21659032015-09-30 14:09:03 -04001848 bool err_cond = false;
Mitch Williamsea02e902015-11-09 15:35:50 -08001849 int retval = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001850 struct i40e_pf *pf;
1851 int num_add = 0;
1852 int num_del = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001853 int aq_err = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001854 u16 cmd_flags;
1855
1856 /* empty array typed pointers, kcalloc later */
1857 struct i40e_aqc_add_macvlan_element_data *add_list;
1858 struct i40e_aqc_remove_macvlan_element_data *del_list;
1859
1860 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1861 usleep_range(1000, 2000);
1862 pf = vsi->back;
1863
1864 if (vsi->netdev) {
1865 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1866 vsi->current_netdev_flags = vsi->netdev->flags;
1867 }
1868
Kiran Patil21659032015-09-30 14:09:03 -04001869 INIT_LIST_HEAD(&tmp_del_list);
1870 INIT_LIST_HEAD(&tmp_add_list);
1871
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001872 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1873 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1874
Kiran Patil21659032015-09-30 14:09:03 -04001875 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001876 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1877 if (!f->changed)
1878 continue;
1879
1880 if (f->counter != 0)
1881 continue;
1882 f->changed = false;
Kiran Patil21659032015-09-30 14:09:03 -04001883
1884 /* Move the element into temporary del_list */
1885 list_move_tail(&f->list, &tmp_del_list);
1886 }
1887
1888 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1889 if (!f->changed)
1890 continue;
1891
1892 if (f->counter == 0)
1893 continue;
1894 f->changed = false;
1895
1896 /* Clone MAC filter entry and add into temporary list */
1897 fclone = i40e_mac_filter_entry_clone(f);
1898 if (!fclone) {
1899 err_cond = true;
1900 break;
1901 }
1902 list_add_tail(&fclone->list, &tmp_add_list);
1903 }
1904
1905 /* if failed to clone MAC filter entry - undo */
1906 if (err_cond) {
1907 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
1908 i40e_undo_add_filter_entries(vsi);
1909 }
1910 spin_unlock_bh(&vsi->mac_filter_list_lock);
1911
Mitch Williamsea02e902015-11-09 15:35:50 -08001912 if (err_cond) {
Kiran Patil21659032015-09-30 14:09:03 -04001913 i40e_cleanup_add_list(&tmp_add_list);
Mitch Williamsea02e902015-11-09 15:35:50 -08001914 retval = -ENOMEM;
1915 goto out;
1916 }
Kiran Patil21659032015-09-30 14:09:03 -04001917 }
1918
1919 /* Now process 'del_list' outside the lock */
1920 if (!list_empty(&tmp_del_list)) {
Shannon Nelsonf1199992015-11-19 11:34:23 -08001921 int del_list_size;
1922
Kiran Patil21659032015-09-30 14:09:03 -04001923 filter_list_len = pf->hw.aq.asq_buf_size /
1924 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Shannon Nelsonf1199992015-11-19 11:34:23 -08001925 del_list_size = filter_list_len *
1926 sizeof(struct i40e_aqc_remove_macvlan_element_data);
Jesse Brandeburg38c3cec2016-01-04 10:33:05 -08001927 del_list = kzalloc(del_list_size, GFP_ATOMIC);
Kiran Patil21659032015-09-30 14:09:03 -04001928 if (!del_list) {
1929 i40e_cleanup_add_list(&tmp_add_list);
1930
1931 /* Undo VSI's MAC filter entry element updates */
1932 spin_lock_bh(&vsi->mac_filter_list_lock);
1933 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
1934 i40e_undo_add_filter_entries(vsi);
1935 spin_unlock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsea02e902015-11-09 15:35:50 -08001936 retval = -ENOMEM;
1937 goto out;
Kiran Patil21659032015-09-30 14:09:03 -04001938 }
1939
1940 list_for_each_entry_safe(f, ftmp, &tmp_del_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001941 cmd_flags = 0;
1942
1943 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001944 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001945 del_list[num_del].vlan_tag =
1946 cpu_to_le16((u16)(f->vlan ==
1947 I40E_VLAN_ANY ? 0 : f->vlan));
1948
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001949 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1950 del_list[num_del].flags = cmd_flags;
1951 num_del++;
1952
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001953 /* flush a full buffer */
1954 if (num_del == filter_list_len) {
Mitch Williamsea02e902015-11-09 15:35:50 -08001955 aq_ret = i40e_aq_remove_macvlan(&pf->hw,
1956 vsi->seid,
1957 del_list,
1958 num_del,
1959 NULL);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001960 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001961 num_del = 0;
Shannon Nelsonf1199992015-11-19 11:34:23 -08001962 memset(del_list, 0, del_list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001963
Mitch Williamsea02e902015-11-09 15:35:50 -08001964 if (aq_ret && aq_err != I40E_AQ_RC_ENOENT) {
1965 retval = -EIO;
Kiran Patil21659032015-09-30 14:09:03 -04001966 dev_err(&pf->pdev->dev,
1967 "ignoring delete macvlan error, err %s, aq_err %s while flushing a full buffer\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08001968 i40e_stat_str(&pf->hw, aq_ret),
Kiran Patil21659032015-09-30 14:09:03 -04001969 i40e_aq_str(&pf->hw, aq_err));
Mitch Williamsea02e902015-11-09 15:35:50 -08001970 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001971 }
Kiran Patil21659032015-09-30 14:09:03 -04001972 /* Release memory for MAC filter entries which were
1973 * synced up with HW.
1974 */
1975 list_del(&f->list);
1976 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001977 }
Kiran Patil21659032015-09-30 14:09:03 -04001978
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001979 if (num_del) {
Mitch Williamsea02e902015-11-09 15:35:50 -08001980 aq_ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
1981 del_list, num_del,
1982 NULL);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001983 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001984 num_del = 0;
1985
Mitch Williamsea02e902015-11-09 15:35:50 -08001986 if (aq_ret && aq_err != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001987 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001988 "ignoring delete macvlan error, err %s aq_err %s\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08001989 i40e_stat_str(&pf->hw, aq_ret),
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001990 i40e_aq_str(&pf->hw, aq_err));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001991 }
1992
1993 kfree(del_list);
1994 del_list = NULL;
Kiran Patil21659032015-09-30 14:09:03 -04001995 }
1996
1997 if (!list_empty(&tmp_add_list)) {
Shannon Nelsonf1199992015-11-19 11:34:23 -08001998 int add_list_size;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001999
2000 /* do all the adds now */
2001 filter_list_len = pf->hw.aq.asq_buf_size /
2002 sizeof(struct i40e_aqc_add_macvlan_element_data),
Shannon Nelsonf1199992015-11-19 11:34:23 -08002003 add_list_size = filter_list_len *
2004 sizeof(struct i40e_aqc_add_macvlan_element_data);
Jesse Brandeburg38c3cec2016-01-04 10:33:05 -08002005 add_list = kzalloc(add_list_size, GFP_ATOMIC);
Kiran Patil21659032015-09-30 14:09:03 -04002006 if (!add_list) {
2007 /* Purge element from temporary lists */
2008 i40e_cleanup_add_list(&tmp_add_list);
2009
2010 /* Undo add filter entries from VSI MAC filter list */
2011 spin_lock_bh(&vsi->mac_filter_list_lock);
2012 i40e_undo_add_filter_entries(vsi);
2013 spin_unlock_bh(&vsi->mac_filter_list_lock);
Mitch Williamsea02e902015-11-09 15:35:50 -08002014 retval = -ENOMEM;
2015 goto out;
Kiran Patil21659032015-09-30 14:09:03 -04002016 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002017
Kiran Patil21659032015-09-30 14:09:03 -04002018 list_for_each_entry_safe(f, ftmp, &tmp_add_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002019
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002020 add_happened = true;
2021 cmd_flags = 0;
2022
2023 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00002024 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002025 add_list[num_add].vlan_tag =
2026 cpu_to_le16(
2027 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
2028 add_list[num_add].queue_number = 0;
2029
2030 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002031 add_list[num_add].flags = cpu_to_le16(cmd_flags);
2032 num_add++;
2033
2034 /* flush a full buffer */
2035 if (num_add == filter_list_len) {
Mitch Williamsea02e902015-11-09 15:35:50 -08002036 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
2037 add_list, num_add,
2038 NULL);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002039 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002040 num_add = 0;
2041
Mitch Williamsea02e902015-11-09 15:35:50 -08002042 if (aq_ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002043 break;
Shannon Nelsonf1199992015-11-19 11:34:23 -08002044 memset(add_list, 0, add_list_size);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002045 }
Kiran Patil21659032015-09-30 14:09:03 -04002046 /* Entries from tmp_add_list were cloned from MAC
2047 * filter list, hence clean those cloned entries
2048 */
2049 list_del(&f->list);
2050 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002051 }
Kiran Patil21659032015-09-30 14:09:03 -04002052
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002053 if (num_add) {
Mitch Williamsea02e902015-11-09 15:35:50 -08002054 aq_ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
2055 add_list, num_add, NULL);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002056 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002057 num_add = 0;
2058 }
2059 kfree(add_list);
2060 add_list = NULL;
2061
Mitch Williamsea02e902015-11-09 15:35:50 -08002062 if (add_happened && aq_ret && aq_err != I40E_AQ_RC_EINVAL) {
2063 retval = i40e_aq_rc_to_posix(aq_ret, aq_err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002064 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002065 "add filter failed, err %s aq_err %s\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002066 i40e_stat_str(&pf->hw, aq_ret),
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002067 i40e_aq_str(&pf->hw, aq_err));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002068 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
2069 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2070 &vsi->state)) {
2071 promisc_forced_on = true;
2072 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2073 &vsi->state);
2074 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
2075 }
2076 }
2077 }
2078
Anjali Singhai Jaina856b5c2016-04-13 03:08:23 -07002079 /* if the VF is not trusted do not do promisc */
2080 if ((vsi->type == I40E_VSI_SRIOV) && !pf->vf[vsi->vf_id].trusted) {
2081 clear_bit(__I40E_FILTER_OVERFLOW_PROMISC, &vsi->state);
2082 goto out;
2083 }
2084
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002085 /* check for changes in promiscuous modes */
2086 if (changed_flags & IFF_ALLMULTI) {
2087 bool cur_multipromisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002088
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002089 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Mitch Williamsea02e902015-11-09 15:35:50 -08002090 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
2091 vsi->seid,
2092 cur_multipromisc,
2093 NULL);
2094 if (aq_ret) {
2095 retval = i40e_aq_rc_to_posix(aq_ret,
2096 pf->hw.aq.asq_last_status);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002097 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002098 "set multi promisc failed, err %s aq_err %s\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002099 i40e_stat_str(&pf->hw, aq_ret),
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002100 i40e_aq_str(&pf->hw,
2101 pf->hw.aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002102 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002103 }
2104 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
2105 bool cur_promisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002106
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002107 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
2108 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2109 &vsi->state));
Anjali Singhai Jain6784ed52016-01-15 14:33:13 -08002110 if ((vsi->type == I40E_VSI_MAIN) &&
2111 (pf->lan_veb != I40E_NO_VEB) &&
2112 !(pf->flags & I40E_FLAG_MFP_ENABLED)) {
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002113 /* set defport ON for Main VSI instead of true promisc
2114 * this way we will get all unicast/multicast and VLAN
2115 * promisc behavior but will not get VF or VMDq traffic
2116 * replicated on the Main VSI.
2117 */
2118 if (pf->cur_promisc != cur_promisc) {
2119 pf->cur_promisc = cur_promisc;
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002120 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002121 }
2122 } else {
Mitch Williamsea02e902015-11-09 15:35:50 -08002123 aq_ret = i40e_aq_set_vsi_unicast_promiscuous(
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002124 &vsi->back->hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002125 vsi->seid,
Anjali Singhai Jainb5569892016-05-03 15:13:12 -07002126 cur_promisc, NULL,
2127 true);
Mitch Williamsea02e902015-11-09 15:35:50 -08002128 if (aq_ret) {
2129 retval =
2130 i40e_aq_rc_to_posix(aq_ret,
2131 pf->hw.aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002132 dev_info(&pf->pdev->dev,
2133 "set unicast promisc failed, err %d, aq_err %d\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002134 aq_ret, pf->hw.aq.asq_last_status);
2135 }
2136 aq_ret = i40e_aq_set_vsi_multicast_promiscuous(
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002137 &vsi->back->hw,
2138 vsi->seid,
2139 cur_promisc, NULL);
Mitch Williamsea02e902015-11-09 15:35:50 -08002140 if (aq_ret) {
2141 retval =
2142 i40e_aq_rc_to_posix(aq_ret,
2143 pf->hw.aq.asq_last_status);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002144 dev_info(&pf->pdev->dev,
2145 "set multicast promisc failed, err %d, aq_err %d\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002146 aq_ret, pf->hw.aq.asq_last_status);
2147 }
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002148 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002149 aq_ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
2150 vsi->seid,
2151 cur_promisc, NULL);
2152 if (aq_ret) {
2153 retval = i40e_aq_rc_to_posix(aq_ret,
2154 pf->hw.aq.asq_last_status);
Greg Rose1a103702013-11-28 06:42:39 +00002155 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002156 "set brdcast promisc failed, err %s, aq_err %s\n",
Mitch Williamsea02e902015-11-09 15:35:50 -08002157 i40e_stat_str(&pf->hw, aq_ret),
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002158 i40e_aq_str(&pf->hw,
2159 pf->hw.aq.asq_last_status));
Mitch Williamsea02e902015-11-09 15:35:50 -08002160 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002161 }
Mitch Williamsea02e902015-11-09 15:35:50 -08002162out:
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08002163 /* if something went wrong then set the changed flag so we try again */
2164 if (retval)
2165 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
2166
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002167 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
Mitch Williamsea02e902015-11-09 15:35:50 -08002168 return retval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002169}
2170
2171/**
2172 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
2173 * @pf: board private structure
2174 **/
2175static void i40e_sync_filters_subtask(struct i40e_pf *pf)
2176{
2177 int v;
2178
2179 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
2180 return;
2181 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
2182
Mitch Williams505682c2014-05-20 08:01:37 +00002183 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002184 if (pf->vsi[v] &&
Jesse Brandeburg17652c62015-11-05 17:01:02 -08002185 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) {
2186 int ret = i40e_sync_vsi_filters(pf->vsi[v]);
2187
2188 if (ret) {
2189 /* come back and try again later */
2190 pf->flags |= I40E_FLAG_FILTER_SYNC;
2191 break;
2192 }
2193 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002194 }
2195}
2196
2197/**
2198 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
2199 * @netdev: network interface device structure
2200 * @new_mtu: new value for maximum frame size
2201 *
2202 * Returns 0 on success, negative on failure
2203 **/
2204static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
2205{
2206 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00002207 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002208 struct i40e_vsi *vsi = np->vsi;
2209
2210 /* MTU < 68 is an error and causes problems on some kernels */
2211 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
2212 return -EINVAL;
2213
2214 netdev_info(netdev, "changing MTU from %d to %d\n",
2215 netdev->mtu, new_mtu);
2216 netdev->mtu = new_mtu;
2217 if (netif_running(netdev))
2218 i40e_vsi_reinit_locked(vsi);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06002219 i40e_notify_client_of_l2_param_changes(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002220 return 0;
2221}
2222
2223/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002224 * i40e_ioctl - Access the hwtstamp interface
2225 * @netdev: network interface device structure
2226 * @ifr: interface request data
2227 * @cmd: ioctl command
2228 **/
2229int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2230{
2231 struct i40e_netdev_priv *np = netdev_priv(netdev);
2232 struct i40e_pf *pf = np->vsi->back;
2233
2234 switch (cmd) {
2235 case SIOCGHWTSTAMP:
2236 return i40e_ptp_get_ts_config(pf, ifr);
2237 case SIOCSHWTSTAMP:
2238 return i40e_ptp_set_ts_config(pf, ifr);
2239 default:
2240 return -EOPNOTSUPP;
2241 }
2242}
2243
2244/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002245 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
2246 * @vsi: the vsi being adjusted
2247 **/
2248void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
2249{
2250 struct i40e_vsi_context ctxt;
2251 i40e_status ret;
2252
2253 if ((vsi->info.valid_sections &
2254 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2255 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
2256 return; /* already enabled */
2257
2258 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2259 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2260 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
2261
2262 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002263 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002264 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2265 if (ret) {
2266 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002267 "update vlan stripping failed, err %s aq_err %s\n",
2268 i40e_stat_str(&vsi->back->hw, ret),
2269 i40e_aq_str(&vsi->back->hw,
2270 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002271 }
2272}
2273
2274/**
2275 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
2276 * @vsi: the vsi being adjusted
2277 **/
2278void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
2279{
2280 struct i40e_vsi_context ctxt;
2281 i40e_status ret;
2282
2283 if ((vsi->info.valid_sections &
2284 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2285 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
2286 I40E_AQ_VSI_PVLAN_EMOD_MASK))
2287 return; /* already disabled */
2288
2289 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2290 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2291 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
2292
2293 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002294 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002295 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2296 if (ret) {
2297 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002298 "update vlan stripping failed, err %s aq_err %s\n",
2299 i40e_stat_str(&vsi->back->hw, ret),
2300 i40e_aq_str(&vsi->back->hw,
2301 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002302 }
2303}
2304
2305/**
2306 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2307 * @netdev: network interface to be adjusted
2308 * @features: netdev features to test if VLAN offload is enabled or not
2309 **/
2310static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2311{
2312 struct i40e_netdev_priv *np = netdev_priv(netdev);
2313 struct i40e_vsi *vsi = np->vsi;
2314
2315 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2316 i40e_vlan_stripping_enable(vsi);
2317 else
2318 i40e_vlan_stripping_disable(vsi);
2319}
2320
2321/**
2322 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2323 * @vsi: the vsi being configured
2324 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2325 **/
2326int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2327{
2328 struct i40e_mac_filter *f, *add_f;
2329 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002330
2331 is_vf = (vsi->type == I40E_VSI_SRIOV);
2332 is_netdev = !!(vsi->netdev);
2333
Kiran Patil21659032015-09-30 14:09:03 -04002334 /* Locked once because all functions invoked below iterates list*/
2335 spin_lock_bh(&vsi->mac_filter_list_lock);
2336
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002337 if (is_netdev) {
2338 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2339 is_vf, is_netdev);
2340 if (!add_f) {
2341 dev_info(&vsi->back->pdev->dev,
2342 "Could not add vlan filter %d for %pM\n",
2343 vid, vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002344 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002345 return -ENOMEM;
2346 }
2347 }
2348
2349 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2350 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2351 if (!add_f) {
2352 dev_info(&vsi->back->pdev->dev,
2353 "Could not add vlan filter %d for %pM\n",
2354 vid, f->macaddr);
Kiran Patil21659032015-09-30 14:09:03 -04002355 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002356 return -ENOMEM;
2357 }
2358 }
2359
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002360 /* Now if we add a vlan tag, make sure to check if it is the first
2361 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2362 * with 0, so we now accept untagged and specified tagged traffic
2363 * (and not any taged and untagged)
2364 */
2365 if (vid > 0) {
2366 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2367 I40E_VLAN_ANY,
2368 is_vf, is_netdev)) {
2369 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2370 I40E_VLAN_ANY, is_vf, is_netdev);
2371 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2372 is_vf, is_netdev);
2373 if (!add_f) {
2374 dev_info(&vsi->back->pdev->dev,
2375 "Could not add filter 0 for %pM\n",
2376 vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002377 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002378 return -ENOMEM;
2379 }
2380 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002381 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002382
Greg Rose8d82a7c2014-01-13 16:13:04 -08002383 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2384 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002385 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Kiran Patil21659032015-09-30 14:09:03 -04002386 if (!i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2387 is_vf, is_netdev))
2388 continue;
2389 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2390 is_vf, is_netdev);
2391 add_f = i40e_add_filter(vsi, f->macaddr,
2392 0, is_vf, is_netdev);
2393 if (!add_f) {
2394 dev_info(&vsi->back->pdev->dev,
2395 "Could not add filter 0 for %pM\n",
2396 f->macaddr);
2397 spin_unlock_bh(&vsi->mac_filter_list_lock);
2398 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002399 }
2400 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002401 }
2402
Kiran Patil21659032015-09-30 14:09:03 -04002403 spin_unlock_bh(&vsi->mac_filter_list_lock);
2404
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002405 /* schedule our worker thread which will take care of
2406 * applying the new filter changes
2407 */
2408 i40e_service_event_schedule(vsi->back);
2409 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002410}
2411
2412/**
2413 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2414 * @vsi: the vsi being configured
2415 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002416 *
2417 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002418 **/
2419int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2420{
2421 struct net_device *netdev = vsi->netdev;
2422 struct i40e_mac_filter *f, *add_f;
2423 bool is_vf, is_netdev;
2424 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002425
2426 is_vf = (vsi->type == I40E_VSI_SRIOV);
2427 is_netdev = !!(netdev);
2428
Kiran Patil21659032015-09-30 14:09:03 -04002429 /* Locked once because all functions invoked below iterates list */
2430 spin_lock_bh(&vsi->mac_filter_list_lock);
2431
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002432 if (is_netdev)
2433 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2434
2435 list_for_each_entry(f, &vsi->mac_filter_list, list)
2436 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2437
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002438 /* go through all the filters for this VSI and if there is only
2439 * vid == 0 it means there are no other filters, so vid 0 must
2440 * be replaced with -1. This signifies that we should from now
2441 * on accept any traffic (with any tag present, or untagged)
2442 */
2443 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2444 if (is_netdev) {
2445 if (f->vlan &&
2446 ether_addr_equal(netdev->dev_addr, f->macaddr))
2447 filter_count++;
2448 }
2449
2450 if (f->vlan)
2451 filter_count++;
2452 }
2453
2454 if (!filter_count && is_netdev) {
2455 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2456 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2457 is_vf, is_netdev);
2458 if (!f) {
2459 dev_info(&vsi->back->pdev->dev,
2460 "Could not add filter %d for %pM\n",
2461 I40E_VLAN_ANY, netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002462 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002463 return -ENOMEM;
2464 }
2465 }
2466
2467 if (!filter_count) {
2468 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2469 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2470 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
Kiran Patil21659032015-09-30 14:09:03 -04002471 is_vf, is_netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002472 if (!add_f) {
2473 dev_info(&vsi->back->pdev->dev,
2474 "Could not add filter %d for %pM\n",
2475 I40E_VLAN_ANY, f->macaddr);
Kiran Patil21659032015-09-30 14:09:03 -04002476 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002477 return -ENOMEM;
2478 }
2479 }
2480 }
2481
Kiran Patil21659032015-09-30 14:09:03 -04002482 spin_unlock_bh(&vsi->mac_filter_list_lock);
2483
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002484 /* schedule our worker thread which will take care of
2485 * applying the new filter changes
2486 */
2487 i40e_service_event_schedule(vsi->back);
2488 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002489}
2490
2491/**
2492 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2493 * @netdev: network interface to be adjusted
2494 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002495 *
2496 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002497 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002498#ifdef I40E_FCOE
2499int i40e_vlan_rx_add_vid(struct net_device *netdev,
2500 __always_unused __be16 proto, u16 vid)
2501#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002502static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2503 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002504#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002505{
2506 struct i40e_netdev_priv *np = netdev_priv(netdev);
2507 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002508 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002509
2510 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002511 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002512
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002513 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2514
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002515 /* If the network stack called us with vid = 0 then
2516 * it is asking to receive priority tagged packets with
2517 * vlan id 0. Our HW receives them by default when configured
2518 * to receive untagged packets so there is no need to add an
2519 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002520 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002521 if (vid)
2522 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002523
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002524 if (!ret && (vid < VLAN_N_VID))
2525 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002526
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002527 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002528}
2529
2530/**
2531 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2532 * @netdev: network interface to be adjusted
2533 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002534 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002535 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002536 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002537#ifdef I40E_FCOE
2538int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2539 __always_unused __be16 proto, u16 vid)
2540#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002541static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2542 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002543#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002544{
2545 struct i40e_netdev_priv *np = netdev_priv(netdev);
2546 struct i40e_vsi *vsi = np->vsi;
2547
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002548 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2549
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002550 /* return code is ignored as there is nothing a user
2551 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002552 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002553 */
2554 i40e_vsi_kill_vlan(vsi, vid);
2555
2556 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002557
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002558 return 0;
2559}
2560
2561/**
2562 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2563 * @vsi: the vsi being brought back up
2564 **/
2565static void i40e_restore_vlan(struct i40e_vsi *vsi)
2566{
2567 u16 vid;
2568
2569 if (!vsi->netdev)
2570 return;
2571
2572 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2573
2574 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2575 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2576 vid);
2577}
2578
2579/**
2580 * i40e_vsi_add_pvid - Add pvid for the VSI
2581 * @vsi: the vsi being adjusted
2582 * @vid: the vlan id to set as a PVID
2583 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002584int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002585{
2586 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002587 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002588
2589 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2590 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002591 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2592 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002593 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002594
2595 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002596 ctxt.info = vsi->info;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002597 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2598 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002599 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002600 "add pvid failed, err %s aq_err %s\n",
2601 i40e_stat_str(&vsi->back->hw, ret),
2602 i40e_aq_str(&vsi->back->hw,
2603 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002604 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002605 }
2606
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002607 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002608}
2609
2610/**
2611 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2612 * @vsi: the vsi being adjusted
2613 *
2614 * Just use the vlan_rx_register() service to put it back to normal
2615 **/
2616void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2617{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002618 i40e_vlan_stripping_disable(vsi);
2619
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002620 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002621}
2622
2623/**
2624 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2625 * @vsi: ptr to the VSI
2626 *
2627 * If this function returns with an error, then it's possible one or
2628 * more of the rings is populated (while the rest are not). It is the
2629 * callers duty to clean those orphaned rings.
2630 *
2631 * Return 0 on success, negative on failure
2632 **/
2633static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2634{
2635 int i, err = 0;
2636
2637 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002638 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002639
2640 return err;
2641}
2642
2643/**
2644 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2645 * @vsi: ptr to the VSI
2646 *
2647 * Free VSI's transmit software resources
2648 **/
2649static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2650{
2651 int i;
2652
Greg Rose8e9dca52013-12-18 13:45:53 +00002653 if (!vsi->tx_rings)
2654 return;
2655
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002656 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002657 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002658 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002659}
2660
2661/**
2662 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2663 * @vsi: ptr to the VSI
2664 *
2665 * If this function returns with an error, then it's possible one or
2666 * more of the rings is populated (while the rest are not). It is the
2667 * callers duty to clean those orphaned rings.
2668 *
2669 * Return 0 on success, negative on failure
2670 **/
2671static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2672{
2673 int i, err = 0;
2674
2675 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002676 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002677#ifdef I40E_FCOE
2678 i40e_fcoe_setup_ddp_resources(vsi);
2679#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002680 return err;
2681}
2682
2683/**
2684 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2685 * @vsi: ptr to the VSI
2686 *
2687 * Free all receive software resources
2688 **/
2689static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2690{
2691 int i;
2692
Greg Rose8e9dca52013-12-18 13:45:53 +00002693 if (!vsi->rx_rings)
2694 return;
2695
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002696 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002697 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002698 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002699#ifdef I40E_FCOE
2700 i40e_fcoe_free_ddp_resources(vsi);
2701#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002702}
2703
2704/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002705 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2706 * @ring: The Tx ring to configure
2707 *
2708 * This enables/disables XPS for a given Tx descriptor ring
2709 * based on the TCs enabled for the VSI that ring belongs to.
2710 **/
2711static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2712{
2713 struct i40e_vsi *vsi = ring->vsi;
2714 cpumask_var_t mask;
2715
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002716 if (!ring->q_vector || !ring->netdev)
2717 return;
2718
2719 /* Single TC mode enable XPS */
2720 if (vsi->tc_config.numtc <= 1) {
2721 if (!test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002722 netif_set_xps_queue(ring->netdev,
2723 &ring->q_vector->affinity_mask,
2724 ring->queue_index);
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002725 } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) {
2726 /* Disable XPS to allow selection based on TC */
2727 bitmap_zero(cpumask_bits(mask), nr_cpumask_bits);
2728 netif_set_xps_queue(ring->netdev, mask, ring->queue_index);
2729 free_cpumask_var(mask);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002730 }
Jesse Brandeburg0e4425e2015-11-05 17:01:01 -08002731
2732 /* schedule our worker thread which will take care of
2733 * applying the new filter changes
2734 */
2735 i40e_service_event_schedule(vsi->back);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002736}
2737
2738/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002739 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2740 * @ring: The Tx ring to configure
2741 *
2742 * Configure the Tx descriptor ring in the HMC context.
2743 **/
2744static int i40e_configure_tx_ring(struct i40e_ring *ring)
2745{
2746 struct i40e_vsi *vsi = ring->vsi;
2747 u16 pf_q = vsi->base_queue + ring->queue_index;
2748 struct i40e_hw *hw = &vsi->back->hw;
2749 struct i40e_hmc_obj_txq tx_ctx;
2750 i40e_status err = 0;
2751 u32 qtx_ctl = 0;
2752
2753 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002754 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002755 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2756 ring->atr_count = 0;
2757 } else {
2758 ring->atr_sample_rate = 0;
2759 }
2760
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002761 /* configure XPS */
2762 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002763
2764 /* clear the context structure first */
2765 memset(&tx_ctx, 0, sizeof(tx_ctx));
2766
2767 tx_ctx.new_context = 1;
2768 tx_ctx.base = (ring->dma / 128);
2769 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002770 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2771 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002772#ifdef I40E_FCOE
2773 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2774#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002775 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002776 /* FDIR VSI tx ring can still use RS bit and writebacks */
2777 if (vsi->type != I40E_VSI_FDIR)
2778 tx_ctx.head_wb_ena = 1;
2779 tx_ctx.head_wb_addr = ring->dma +
2780 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002781
2782 /* As part of VSI creation/update, FW allocates certain
2783 * Tx arbitration queue sets for each TC enabled for
2784 * the VSI. The FW returns the handles to these queue
2785 * sets as part of the response buffer to Add VSI,
2786 * Update VSI, etc. AQ commands. It is expected that
2787 * these queue set handles be associated with the Tx
2788 * queues by the driver as part of the TX queue context
2789 * initialization. This has to be done regardless of
2790 * DCB as by default everything is mapped to TC0.
2791 */
2792 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2793 tx_ctx.rdylist_act = 0;
2794
2795 /* clear the context in the HMC */
2796 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2797 if (err) {
2798 dev_info(&vsi->back->pdev->dev,
2799 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2800 ring->queue_index, pf_q, err);
2801 return -ENOMEM;
2802 }
2803
2804 /* set the context in the HMC */
2805 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2806 if (err) {
2807 dev_info(&vsi->back->pdev->dev,
2808 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2809 ring->queue_index, pf_q, err);
2810 return -ENOMEM;
2811 }
2812
2813 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002814 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002815 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002816 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2817 I40E_QTX_CTL_VFVM_INDX_MASK;
2818 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002819 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002820 }
2821
Shannon Nelson13fd9772013-09-28 07:14:19 +00002822 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2823 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002824 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2825 i40e_flush(hw);
2826
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002827 /* cache tail off for easier writes later */
2828 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2829
2830 return 0;
2831}
2832
2833/**
2834 * i40e_configure_rx_ring - Configure a receive ring context
2835 * @ring: The Rx ring to configure
2836 *
2837 * Configure the Rx descriptor ring in the HMC context.
2838 **/
2839static int i40e_configure_rx_ring(struct i40e_ring *ring)
2840{
2841 struct i40e_vsi *vsi = ring->vsi;
2842 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2843 u16 pf_q = vsi->base_queue + ring->queue_index;
2844 struct i40e_hw *hw = &vsi->back->hw;
2845 struct i40e_hmc_obj_rxq rx_ctx;
2846 i40e_status err = 0;
2847
2848 ring->state = 0;
2849
2850 /* clear the context structure first */
2851 memset(&rx_ctx, 0, sizeof(rx_ctx));
2852
2853 ring->rx_buf_len = vsi->rx_buf_len;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002854
2855 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002856
2857 rx_ctx.base = (ring->dma / 128);
2858 rx_ctx.qlen = ring->count;
2859
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07002860 /* use 32 byte descriptors */
2861 rx_ctx.dsize = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002862
Jesse Brandeburgbec60fc2016-04-18 11:33:47 -07002863 /* descriptor type is always zero
2864 * rx_ctx.dtype = 0;
2865 */
Jesse Brandeburgb32bfa12016-04-18 11:33:42 -07002866 rx_ctx.hsplit_0 = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002867
Jesse Brandeburgb32bfa12016-04-18 11:33:42 -07002868 rx_ctx.rxmax = min_t(u16, vsi->max_frame, chain_len * ring->rx_buf_len);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002869 if (hw->revision_id == 0)
2870 rx_ctx.lrxqthresh = 0;
2871 else
2872 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002873 rx_ctx.crcstrip = 1;
2874 rx_ctx.l2tsel = 1;
Jesse Brandeburgc4bbac32015-09-28 11:21:48 -07002875 /* this controls whether VLAN is stripped from inner headers */
2876 rx_ctx.showiv = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07002877#ifdef I40E_FCOE
2878 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2879#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002880 /* set the prefena field to 1 because the manual says to */
2881 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002882
2883 /* clear the context in the HMC */
2884 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2885 if (err) {
2886 dev_info(&vsi->back->pdev->dev,
2887 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2888 ring->queue_index, pf_q, err);
2889 return -ENOMEM;
2890 }
2891
2892 /* set the context in the HMC */
2893 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2894 if (err) {
2895 dev_info(&vsi->back->pdev->dev,
2896 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2897 ring->queue_index, pf_q, err);
2898 return -ENOMEM;
2899 }
2900
2901 /* cache tail for quicker writes, and clear the reg before use */
2902 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2903 writel(0, ring->tail);
2904
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -07002905 i40e_alloc_rx_buffers(ring, I40E_DESC_UNUSED(ring));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002906
2907 return 0;
2908}
2909
2910/**
2911 * i40e_vsi_configure_tx - Configure the VSI for Tx
2912 * @vsi: VSI structure describing this set of rings and resources
2913 *
2914 * Configure the Tx VSI for operation.
2915 **/
2916static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2917{
2918 int err = 0;
2919 u16 i;
2920
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002921 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2922 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002923
2924 return err;
2925}
2926
2927/**
2928 * i40e_vsi_configure_rx - Configure the VSI for Rx
2929 * @vsi: the VSI being configured
2930 *
2931 * Configure the Rx VSI for operation.
2932 **/
2933static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2934{
2935 int err = 0;
2936 u16 i;
2937
2938 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2939 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2940 + ETH_FCS_LEN + VLAN_HLEN;
2941 else
2942 vsi->max_frame = I40E_RXBUFFER_2048;
2943
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -07002944 vsi->rx_buf_len = I40E_RXBUFFER_2048;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002945
Vasu Dev38e00432014-08-01 13:27:03 -07002946#ifdef I40E_FCOE
2947 /* setup rx buffer for FCoE */
2948 if ((vsi->type == I40E_VSI_FCOE) &&
2949 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
Vasu Dev38e00432014-08-01 13:27:03 -07002950 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2951 vsi->max_frame = I40E_RXBUFFER_3072;
Vasu Dev38e00432014-08-01 13:27:03 -07002952 }
2953
2954#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002955 /* round up for the chip's needs */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002956 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002957 BIT_ULL(I40E_RXQ_CTX_DBUFF_SHIFT));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002958
2959 /* set up individual rings */
2960 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002961 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002962
2963 return err;
2964}
2965
2966/**
2967 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2968 * @vsi: ptr to the VSI
2969 **/
2970static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2971{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002972 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002973 u16 qoffset, qcount;
2974 int i, n;
2975
Parikh, Neeravcd238a32015-02-21 06:43:37 +00002976 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
2977 /* Reset the TC information */
2978 for (i = 0; i < vsi->num_queue_pairs; i++) {
2979 rx_ring = vsi->rx_rings[i];
2980 tx_ring = vsi->tx_rings[i];
2981 rx_ring->dcb_tc = 0;
2982 tx_ring->dcb_tc = 0;
2983 }
2984 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002985
2986 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002987 if (!(vsi->tc_config.enabled_tc & BIT_ULL(n)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002988 continue;
2989
2990 qoffset = vsi->tc_config.tc_info[n].qoffset;
2991 qcount = vsi->tc_config.tc_info[n].qcount;
2992 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002993 rx_ring = vsi->rx_rings[i];
2994 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002995 rx_ring->dcb_tc = n;
2996 tx_ring->dcb_tc = n;
2997 }
2998 }
2999}
3000
3001/**
3002 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
3003 * @vsi: ptr to the VSI
3004 **/
3005static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
3006{
3007 if (vsi->netdev)
3008 i40e_set_rx_mode(vsi->netdev);
3009}
3010
3011/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003012 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
3013 * @vsi: Pointer to the targeted VSI
3014 *
3015 * This function replays the hlist on the hw where all the SB Flow Director
3016 * filters were saved.
3017 **/
3018static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
3019{
3020 struct i40e_fdir_filter *filter;
3021 struct i40e_pf *pf = vsi->back;
3022 struct hlist_node *node;
3023
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003024 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
3025 return;
3026
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003027 hlist_for_each_entry_safe(filter, node,
3028 &pf->fdir_filter_list, fdir_node) {
3029 i40e_add_del_fdir(vsi, filter, true);
3030 }
3031}
3032
3033/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003034 * i40e_vsi_configure - Set up the VSI for action
3035 * @vsi: the VSI being configured
3036 **/
3037static int i40e_vsi_configure(struct i40e_vsi *vsi)
3038{
3039 int err;
3040
3041 i40e_set_vsi_rx_mode(vsi);
3042 i40e_restore_vlan(vsi);
3043 i40e_vsi_config_dcb_rings(vsi);
3044 err = i40e_vsi_configure_tx(vsi);
3045 if (!err)
3046 err = i40e_vsi_configure_rx(vsi);
3047
3048 return err;
3049}
3050
3051/**
3052 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
3053 * @vsi: the VSI being configured
3054 **/
3055static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
3056{
3057 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003058 struct i40e_hw *hw = &pf->hw;
3059 u16 vector;
3060 int i, q;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003061 u32 qp;
3062
3063 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
3064 * and PFINT_LNKLSTn registers, e.g.:
3065 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
3066 */
3067 qp = vsi->base_queue;
3068 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00003069 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003070 struct i40e_q_vector *q_vector = vsi->q_vectors[i];
3071
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003072 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003073 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[i]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003074 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3075 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
3076 q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003077 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[i]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003078 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3079 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
3080 q_vector->tx.itr);
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003081 wr32(hw, I40E_PFINT_RATEN(vector - 1),
3082 INTRL_USEC_TO_REG(vsi->int_rate_limit));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003083
3084 /* Linked list for the queuepairs assigned to this vector */
3085 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
3086 for (q = 0; q < q_vector->num_ringpairs; q++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003087 u32 val;
3088
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003089 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3090 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3091 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
3092 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
3093 (I40E_QUEUE_TYPE_TX
3094 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
3095
3096 wr32(hw, I40E_QINT_RQCTL(qp), val);
3097
3098 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3099 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3100 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3101 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
3102 (I40E_QUEUE_TYPE_RX
3103 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3104
3105 /* Terminate the linked list */
3106 if (q == (q_vector->num_ringpairs - 1))
3107 val |= (I40E_QUEUE_END_OF_LIST
3108 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3109
3110 wr32(hw, I40E_QINT_TQCTL(qp), val);
3111 qp++;
3112 }
3113 }
3114
3115 i40e_flush(hw);
3116}
3117
3118/**
3119 * i40e_enable_misc_int_causes - enable the non-queue interrupts
3120 * @hw: ptr to the hardware info
3121 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00003122static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003123{
Jacob Kellerab437b52014-12-14 01:55:08 +00003124 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003125 u32 val;
3126
3127 /* clear things first */
3128 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
3129 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
3130
3131 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
3132 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
3133 I40E_PFINT_ICR0_ENA_GRST_MASK |
3134 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
3135 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003136 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
3137 I40E_PFINT_ICR0_ENA_VFLR_MASK |
3138 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3139
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003140 if (pf->flags & I40E_FLAG_IWARP_ENABLED)
3141 val |= I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3142
Jacob Kellerab437b52014-12-14 01:55:08 +00003143 if (pf->flags & I40E_FLAG_PTP)
3144 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
3145
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003146 wr32(hw, I40E_PFINT_ICR0_ENA, val);
3147
3148 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00003149 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
3150 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003151
3152 /* OTHER_ITR_IDX = 0 */
3153 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
3154}
3155
3156/**
3157 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
3158 * @vsi: the VSI being configured
3159 **/
3160static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
3161{
Alexander Duyck493fb302013-09-28 07:01:44 +00003162 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003163 struct i40e_pf *pf = vsi->back;
3164 struct i40e_hw *hw = &pf->hw;
3165 u32 val;
3166
3167 /* set the ITR configuration */
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003168 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Kan Lianga75e8002016-02-19 09:24:04 -05003169 q_vector->rx.itr = ITR_TO_REG(vsi->rx_rings[0]->rx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003170 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3171 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
Kan Lianga75e8002016-02-19 09:24:04 -05003172 q_vector->tx.itr = ITR_TO_REG(vsi->tx_rings[0]->tx_itr_setting);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003173 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3174 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
3175
Jacob Kellerab437b52014-12-14 01:55:08 +00003176 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003177
3178 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
3179 wr32(hw, I40E_PFINT_LNKLST0, 0);
3180
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00003181 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003182 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3183 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3184 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3185
3186 wr32(hw, I40E_QINT_RQCTL(0), val);
3187
3188 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3189 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3190 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3191
3192 wr32(hw, I40E_QINT_TQCTL(0), val);
3193 i40e_flush(hw);
3194}
3195
3196/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00003197 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
3198 * @pf: board private structure
3199 **/
3200void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
3201{
3202 struct i40e_hw *hw = &pf->hw;
3203
3204 wr32(hw, I40E_PFINT_DYN_CTL0,
3205 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
3206 i40e_flush(hw);
3207}
3208
3209/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003210 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
3211 * @pf: board private structure
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003212 * @clearpba: true when all pending interrupt events should be cleared
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003213 **/
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003214void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf, bool clearpba)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003215{
3216 struct i40e_hw *hw = &pf->hw;
3217 u32 val;
3218
3219 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003220 (clearpba ? I40E_PFINT_DYN_CTL0_CLEARPBA_MASK : 0) |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003221 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
3222
3223 wr32(hw, I40E_PFINT_DYN_CTL0, val);
3224 i40e_flush(hw);
3225}
3226
3227/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003228 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
3229 * @irq: interrupt number
3230 * @data: pointer to a q_vector
3231 **/
3232static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
3233{
3234 struct i40e_q_vector *q_vector = data;
3235
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003236 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003237 return IRQ_HANDLED;
3238
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003239 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003240
3241 return IRQ_HANDLED;
3242}
3243
3244/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003245 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
3246 * @vsi: the VSI being configured
3247 * @basename: name for the vector
3248 *
3249 * Allocates MSI-X vectors and requests interrupts from the kernel.
3250 **/
3251static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
3252{
3253 int q_vectors = vsi->num_q_vectors;
3254 struct i40e_pf *pf = vsi->back;
3255 int base = vsi->base_vector;
3256 int rx_int_idx = 0;
3257 int tx_int_idx = 0;
3258 int vector, err;
3259
3260 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00003261 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003262
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003263 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003264 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3265 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3266 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003267 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003268 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3269 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003270 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003271 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3272 "%s-%s-%d", basename, "tx", tx_int_idx++);
3273 } else {
3274 /* skip this unused q_vector */
3275 continue;
3276 }
3277 err = request_irq(pf->msix_entries[base + vector].vector,
3278 vsi->irq_handler,
3279 0,
3280 q_vector->name,
3281 q_vector);
3282 if (err) {
3283 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003284 "MSIX request_irq failed, error: %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003285 goto free_queue_irqs;
3286 }
3287 /* assign the mask for this irq */
3288 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3289 &q_vector->affinity_mask);
3290 }
3291
Shannon Nelson63741842014-04-23 04:50:16 +00003292 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003293 return 0;
3294
3295free_queue_irqs:
3296 while (vector) {
3297 vector--;
3298 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3299 NULL);
3300 free_irq(pf->msix_entries[base + vector].vector,
3301 &(vsi->q_vectors[vector]));
3302 }
3303 return err;
3304}
3305
3306/**
3307 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3308 * @vsi: the VSI being un-configured
3309 **/
3310static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3311{
3312 struct i40e_pf *pf = vsi->back;
3313 struct i40e_hw *hw = &pf->hw;
3314 int base = vsi->base_vector;
3315 int i;
3316
3317 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003318 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3319 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003320 }
3321
3322 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3323 for (i = vsi->base_vector;
3324 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3325 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3326
3327 i40e_flush(hw);
3328 for (i = 0; i < vsi->num_q_vectors; i++)
3329 synchronize_irq(pf->msix_entries[i + base].vector);
3330 } else {
3331 /* Legacy and MSI mode - this stops all interrupt handling */
3332 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3333 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3334 i40e_flush(hw);
3335 synchronize_irq(pf->pdev->irq);
3336 }
3337}
3338
3339/**
3340 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3341 * @vsi: the VSI being configured
3342 **/
3343static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3344{
3345 struct i40e_pf *pf = vsi->back;
3346 int i;
3347
3348 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Jesse Brandeburg78455482015-07-23 16:54:41 -04003349 for (i = 0; i < vsi->num_q_vectors; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003350 i40e_irq_dynamic_enable(vsi, i);
3351 } else {
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003352 i40e_irq_dynamic_enable_icr0(pf, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003353 }
3354
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003355 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003356 return 0;
3357}
3358
3359/**
3360 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3361 * @pf: board private structure
3362 **/
3363static void i40e_stop_misc_vector(struct i40e_pf *pf)
3364{
3365 /* Disable ICR 0 */
3366 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3367 i40e_flush(&pf->hw);
3368}
3369
3370/**
3371 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3372 * @irq: interrupt number
3373 * @data: pointer to a q_vector
3374 *
3375 * This is the handler used for all MSI/Legacy interrupts, and deals
3376 * with both queue and non-queue interrupts. This is also used in
3377 * MSIX mode to handle the non-queue interrupts.
3378 **/
3379static irqreturn_t i40e_intr(int irq, void *data)
3380{
3381 struct i40e_pf *pf = (struct i40e_pf *)data;
3382 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003383 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003384 u32 icr0, icr0_remaining;
3385 u32 val, ena_mask;
3386
3387 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003388 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003389
Shannon Nelson116a57d2013-09-28 07:13:59 +00003390 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3391 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003392 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003393
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003394 /* if interrupt but no bits showing, must be SWINT */
3395 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3396 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3397 pf->sw_int_count++;
3398
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003399 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
3400 (ena_mask & I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK)) {
3401 ena_mask &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3402 icr0 &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3403 dev_info(&pf->pdev->dev, "cleared PE_CRITERR\n");
3404 }
3405
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003406 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3407 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003408 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
3409 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003410
Anjali Singhai Jaina16ae2d2016-01-15 14:33:16 -08003411 /* We do not have a way to disarm Queue causes while leaving
3412 * interrupt enabled for all other causes, ideally
3413 * interrupt should be disabled while we are in NAPI but
3414 * this is not a performance path and napi_schedule()
3415 * can deal with rescheduling.
3416 */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003417 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003418 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003419 }
3420
3421 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3422 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3423 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08003424 i40e_debug(&pf->hw, I40E_DEBUG_NVM, "AdminQ event\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003425 }
3426
3427 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3428 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3429 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3430 }
3431
3432 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3433 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3434 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3435 }
3436
3437 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3438 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3439 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3440 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3441 val = rd32(hw, I40E_GLGEN_RSTAT);
3442 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3443 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003444 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003445 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003446 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003447 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003448 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003449 pf->empr_count++;
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00003450 set_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003451 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003452 }
3453
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003454 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3455 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3456 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
Anjali Singhai Jain25fc0e62015-03-31 00:45:01 -07003457 dev_info(&pf->pdev->dev, "HMC error info 0x%x, HMC error data 0x%x\n",
3458 rd32(hw, I40E_PFHMC_ERRORINFO),
3459 rd32(hw, I40E_PFHMC_ERRORDATA));
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003460 }
3461
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003462 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3463 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3464
3465 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003466 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003467 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003468 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003469 }
3470
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003471 /* If a critical error is pending we have no choice but to reset the
3472 * device.
3473 * Report and mask out any remaining unexpected interrupts.
3474 */
3475 icr0_remaining = icr0 & ena_mask;
3476 if (icr0_remaining) {
3477 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3478 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003479 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003480 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003481 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003482 dev_info(&pf->pdev->dev, "device will be reset\n");
3483 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3484 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003485 }
3486 ena_mask &= ~icr0_remaining;
3487 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003488 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003489
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003490enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003491 /* re-enable interrupt causes */
3492 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003493 if (!test_bit(__I40E_DOWN, &pf->state)) {
3494 i40e_service_event_schedule(pf);
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08003495 i40e_irq_dynamic_enable_icr0(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003496 }
3497
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003498 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003499}
3500
3501/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003502 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3503 * @tx_ring: tx ring to clean
3504 * @budget: how many cleans we're allowed
3505 *
3506 * Returns true if there's any budget left (e.g. the clean is finished)
3507 **/
3508static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3509{
3510 struct i40e_vsi *vsi = tx_ring->vsi;
3511 u16 i = tx_ring->next_to_clean;
3512 struct i40e_tx_buffer *tx_buf;
3513 struct i40e_tx_desc *tx_desc;
3514
3515 tx_buf = &tx_ring->tx_bi[i];
3516 tx_desc = I40E_TX_DESC(tx_ring, i);
3517 i -= tx_ring->count;
3518
3519 do {
3520 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3521
3522 /* if next_to_watch is not set then there is no work pending */
3523 if (!eop_desc)
3524 break;
3525
3526 /* prevent any other reads prior to eop_desc */
3527 read_barrier_depends();
3528
3529 /* if the descriptor isn't done, no work yet to do */
3530 if (!(eop_desc->cmd_type_offset_bsz &
3531 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3532 break;
3533
3534 /* clear next_to_watch to prevent false hangs */
3535 tx_buf->next_to_watch = NULL;
3536
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003537 tx_desc->buffer_addr = 0;
3538 tx_desc->cmd_type_offset_bsz = 0;
3539 /* move past filter desc */
3540 tx_buf++;
3541 tx_desc++;
3542 i++;
3543 if (unlikely(!i)) {
3544 i -= tx_ring->count;
3545 tx_buf = tx_ring->tx_bi;
3546 tx_desc = I40E_TX_DESC(tx_ring, 0);
3547 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003548 /* unmap skb header data */
3549 dma_unmap_single(tx_ring->dev,
3550 dma_unmap_addr(tx_buf, dma),
3551 dma_unmap_len(tx_buf, len),
3552 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003553 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3554 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003555
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003556 tx_buf->raw_buf = NULL;
3557 tx_buf->tx_flags = 0;
3558 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003559 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003560 tx_desc->buffer_addr = 0;
3561 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003562
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003563 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003564 tx_buf++;
3565 tx_desc++;
3566 i++;
3567 if (unlikely(!i)) {
3568 i -= tx_ring->count;
3569 tx_buf = tx_ring->tx_bi;
3570 tx_desc = I40E_TX_DESC(tx_ring, 0);
3571 }
3572
3573 /* update budget accounting */
3574 budget--;
3575 } while (likely(budget));
3576
3577 i += tx_ring->count;
3578 tx_ring->next_to_clean = i;
3579
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003580 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED)
Jesse Brandeburg78455482015-07-23 16:54:41 -04003581 i40e_irq_dynamic_enable(vsi, tx_ring->q_vector->v_idx);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003582
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003583 return budget > 0;
3584}
3585
3586/**
3587 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3588 * @irq: interrupt number
3589 * @data: pointer to a q_vector
3590 **/
3591static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3592{
3593 struct i40e_q_vector *q_vector = data;
3594 struct i40e_vsi *vsi;
3595
3596 if (!q_vector->tx.ring)
3597 return IRQ_HANDLED;
3598
3599 vsi = q_vector->tx.ring->vsi;
3600 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3601
3602 return IRQ_HANDLED;
3603}
3604
3605/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003606 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003607 * @vsi: the VSI being configured
3608 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003609 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003610 **/
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003611static void i40e_map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003612{
Alexander Duyck493fb302013-09-28 07:01:44 +00003613 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00003614 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3615 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003616
3617 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003618 tx_ring->next = q_vector->tx.ring;
3619 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003620 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003621
3622 rx_ring->q_vector = q_vector;
3623 rx_ring->next = q_vector->rx.ring;
3624 q_vector->rx.ring = rx_ring;
3625 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003626}
3627
3628/**
3629 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3630 * @vsi: the VSI being configured
3631 *
3632 * This function maps descriptor rings to the queue-specific vectors
3633 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3634 * one vector per queue pair, but on a constrained vector budget, we
3635 * group the queue pairs as "efficiently" as possible.
3636 **/
3637static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3638{
3639 int qp_remaining = vsi->num_queue_pairs;
3640 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003641 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003642 int v_start = 0;
3643 int qp_idx = 0;
3644
3645 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3646 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003647 * It is also important to go through all the vectors available to be
3648 * sure that if we don't use all the vectors, that the remaining vectors
3649 * are cleared. This is especially important when decreasing the
3650 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003651 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003652 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003653 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3654
3655 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3656
3657 q_vector->num_ringpairs = num_ringpairs;
3658
3659 q_vector->rx.count = 0;
3660 q_vector->tx.count = 0;
3661 q_vector->rx.ring = NULL;
3662 q_vector->tx.ring = NULL;
3663
3664 while (num_ringpairs--) {
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003665 i40e_map_vector_to_qp(vsi, v_start, qp_idx);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003666 qp_idx++;
3667 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003668 }
3669 }
3670}
3671
3672/**
3673 * i40e_vsi_request_irq - Request IRQ from the OS
3674 * @vsi: the VSI being configured
3675 * @basename: name for the vector
3676 **/
3677static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3678{
3679 struct i40e_pf *pf = vsi->back;
3680 int err;
3681
3682 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3683 err = i40e_vsi_request_irq_msix(vsi, basename);
3684 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3685 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003686 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003687 else
3688 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003689 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003690
3691 if (err)
3692 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3693
3694 return err;
3695}
3696
3697#ifdef CONFIG_NET_POLL_CONTROLLER
3698/**
Jesse Brandeburgd89d9672016-01-04 10:33:02 -08003699 * i40e_netpoll - A Polling 'interrupt' handler
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003700 * @netdev: network interface device structure
3701 *
3702 * This is used by netconsole to send skbs without having to re-enable
3703 * interrupts. It's not called while the normal interrupt routine is executing.
3704 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003705#ifdef I40E_FCOE
3706void i40e_netpoll(struct net_device *netdev)
3707#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003708static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003709#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003710{
3711 struct i40e_netdev_priv *np = netdev_priv(netdev);
3712 struct i40e_vsi *vsi = np->vsi;
3713 struct i40e_pf *pf = vsi->back;
3714 int i;
3715
3716 /* if interface is down do nothing */
3717 if (test_bit(__I40E_DOWN, &vsi->state))
3718 return;
3719
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003720 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3721 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003722 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003723 } else {
3724 i40e_intr(pf->pdev->irq, netdev);
3725 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003726}
3727#endif
3728
3729/**
Neerav Parikh23527302014-06-03 23:50:15 +00003730 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3731 * @pf: the PF being configured
3732 * @pf_q: the PF queue
3733 * @enable: enable or disable state of the queue
3734 *
3735 * This routine will wait for the given Tx queue of the PF to reach the
3736 * enabled or disabled state.
3737 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3738 * multiple retries; else will return 0 in case of success.
3739 **/
3740static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3741{
3742 int i;
3743 u32 tx_reg;
3744
3745 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3746 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3747 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3748 break;
3749
Neerav Parikhf98a2002014-09-13 07:40:44 +00003750 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003751 }
3752 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3753 return -ETIMEDOUT;
3754
3755 return 0;
3756}
3757
3758/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003759 * i40e_vsi_control_tx - Start or stop a VSI's rings
3760 * @vsi: the VSI being configured
3761 * @enable: start or stop the rings
3762 **/
3763static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3764{
3765 struct i40e_pf *pf = vsi->back;
3766 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003767 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003768 u32 tx_reg;
3769
3770 pf_q = vsi->base_queue;
3771 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499a2014-04-23 04:50:03 +00003772
3773 /* warn the TX unit of coming changes */
3774 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3775 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003776 usleep_range(10, 20);
Matt Jared351499a2014-04-23 04:50:03 +00003777
Mitch Williams6c5ef622014-02-20 19:29:16 -08003778 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003779 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003780 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3781 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3782 break;
3783 usleep_range(1000, 2000);
3784 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003785 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003786 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003787 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003788
3789 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003790 if (enable) {
3791 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003792 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003793 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003794 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003795 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003796
3797 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003798 /* No waiting for the Tx queue to disable */
3799 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3800 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003801
3802 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003803 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3804 if (ret) {
3805 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003806 "VSI seid %d Tx ring %d %sable timeout\n",
3807 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003808 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003809 }
3810 }
3811
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003812 if (hw->revision_id == 0)
3813 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003814 return ret;
3815}
3816
3817/**
3818 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3819 * @pf: the PF being configured
3820 * @pf_q: the PF queue
3821 * @enable: enable or disable state of the queue
3822 *
3823 * This routine will wait for the given Rx queue of the PF to reach the
3824 * enabled or disabled state.
3825 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3826 * multiple retries; else will return 0 in case of success.
3827 **/
3828static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3829{
3830 int i;
3831 u32 rx_reg;
3832
3833 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3834 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3835 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3836 break;
3837
Neerav Parikhf98a2002014-09-13 07:40:44 +00003838 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003839 }
3840 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3841 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003842
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003843 return 0;
3844}
3845
3846/**
3847 * i40e_vsi_control_rx - Start or stop a VSI's rings
3848 * @vsi: the VSI being configured
3849 * @enable: start or stop the rings
3850 **/
3851static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3852{
3853 struct i40e_pf *pf = vsi->back;
3854 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003855 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003856 u32 rx_reg;
3857
3858 pf_q = vsi->base_queue;
3859 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003860 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003861 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003862 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3863 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3864 break;
3865 usleep_range(1000, 2000);
3866 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003867
Catherine Sullivan7c122002014-03-14 07:32:29 +00003868 /* Skip if the queue is already in the requested state */
3869 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3870 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003871
3872 /* turn on/off the queue */
3873 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003874 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003875 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003876 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003877 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
Neerav Parikh3fe06f42016-02-17 16:12:15 -08003878 /* No waiting for the Tx queue to disable */
3879 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3880 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003881
3882 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003883 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3884 if (ret) {
3885 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003886 "VSI seid %d Rx ring %d %sable timeout\n",
3887 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003888 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003889 }
3890 }
3891
Neerav Parikh23527302014-06-03 23:50:15 +00003892 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003893}
3894
3895/**
3896 * i40e_vsi_control_rings - Start or stop a VSI's rings
3897 * @vsi: the VSI being configured
3898 * @enable: start or stop the rings
3899 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003900int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003901{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003902 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003903
3904 /* do rx first for enable and last for disable */
3905 if (request) {
3906 ret = i40e_vsi_control_rx(vsi, request);
3907 if (ret)
3908 return ret;
3909 ret = i40e_vsi_control_tx(vsi, request);
3910 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003911 /* Ignore return value, we need to shutdown whatever we can */
3912 i40e_vsi_control_tx(vsi, request);
3913 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003914 }
3915
3916 return ret;
3917}
3918
3919/**
3920 * i40e_vsi_free_irq - Free the irq association with the OS
3921 * @vsi: the VSI being configured
3922 **/
3923static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3924{
3925 struct i40e_pf *pf = vsi->back;
3926 struct i40e_hw *hw = &pf->hw;
3927 int base = vsi->base_vector;
3928 u32 val, qp;
3929 int i;
3930
3931 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3932 if (!vsi->q_vectors)
3933 return;
3934
Shannon Nelson63741842014-04-23 04:50:16 +00003935 if (!vsi->irqs_ready)
3936 return;
3937
3938 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003939 for (i = 0; i < vsi->num_q_vectors; i++) {
3940 u16 vector = i + base;
3941
3942 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003943 if (!vsi->q_vectors[i] ||
3944 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003945 continue;
3946
3947 /* clear the affinity_mask in the IRQ descriptor */
3948 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3949 NULL);
3950 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003951 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003952
3953 /* Tear down the interrupt queue link list
3954 *
3955 * We know that they come in pairs and always
3956 * the Rx first, then the Tx. To clear the
3957 * link list, stick the EOL value into the
3958 * next_q field of the registers.
3959 */
3960 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
3961 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
3962 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3963 val |= I40E_QUEUE_END_OF_LIST
3964 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
3965 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
3966
3967 while (qp != I40E_QUEUE_END_OF_LIST) {
3968 u32 next;
3969
3970 val = rd32(hw, I40E_QINT_RQCTL(qp));
3971
3972 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
3973 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
3974 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3975 I40E_QINT_RQCTL_INTEVENT_MASK);
3976
3977 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
3978 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
3979
3980 wr32(hw, I40E_QINT_RQCTL(qp), val);
3981
3982 val = rd32(hw, I40E_QINT_TQCTL(qp));
3983
3984 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
3985 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
3986
3987 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
3988 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
3989 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3990 I40E_QINT_TQCTL_INTEVENT_MASK);
3991
3992 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
3993 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
3994
3995 wr32(hw, I40E_QINT_TQCTL(qp), val);
3996 qp = next;
3997 }
3998 }
3999 } else {
4000 free_irq(pf->pdev->irq, pf);
4001
4002 val = rd32(hw, I40E_PFINT_LNKLST0);
4003 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4004 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4005 val |= I40E_QUEUE_END_OF_LIST
4006 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
4007 wr32(hw, I40E_PFINT_LNKLST0, val);
4008
4009 val = rd32(hw, I40E_QINT_RQCTL(qp));
4010 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4011 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4012 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4013 I40E_QINT_RQCTL_INTEVENT_MASK);
4014
4015 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4016 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4017
4018 wr32(hw, I40E_QINT_RQCTL(qp), val);
4019
4020 val = rd32(hw, I40E_QINT_TQCTL(qp));
4021
4022 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4023 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4024 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4025 I40E_QINT_TQCTL_INTEVENT_MASK);
4026
4027 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4028 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4029
4030 wr32(hw, I40E_QINT_TQCTL(qp), val);
4031 }
4032}
4033
4034/**
Alexander Duyck493fb302013-09-28 07:01:44 +00004035 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
4036 * @vsi: the VSI being configured
4037 * @v_idx: Index of vector to be freed
4038 *
4039 * This function frees the memory allocated to the q_vector. In addition if
4040 * NAPI is enabled it will delete any references to the NAPI struct prior
4041 * to freeing the q_vector.
4042 **/
4043static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
4044{
4045 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004046 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00004047
4048 if (!q_vector)
4049 return;
4050
4051 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004052 i40e_for_each_ring(ring, q_vector->tx)
4053 ring->q_vector = NULL;
4054
4055 i40e_for_each_ring(ring, q_vector->rx)
4056 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00004057
4058 /* only VSI w/ an associated netdev is set up w/ NAPI */
4059 if (vsi->netdev)
4060 netif_napi_del(&q_vector->napi);
4061
4062 vsi->q_vectors[v_idx] = NULL;
4063
4064 kfree_rcu(q_vector, rcu);
4065}
4066
4067/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004068 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
4069 * @vsi: the VSI being un-configured
4070 *
4071 * This frees the memory allocated to the q_vectors and
4072 * deletes references to the NAPI struct.
4073 **/
4074static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
4075{
4076 int v_idx;
4077
Alexander Duyck493fb302013-09-28 07:01:44 +00004078 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
4079 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004080}
4081
4082/**
4083 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
4084 * @pf: board private structure
4085 **/
4086static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
4087{
4088 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
4089 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4090 pci_disable_msix(pf->pdev);
4091 kfree(pf->msix_entries);
4092 pf->msix_entries = NULL;
Shannon Nelson3b444392015-02-26 16:15:57 +00004093 kfree(pf->irq_pile);
4094 pf->irq_pile = NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004095 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
4096 pci_disable_msi(pf->pdev);
4097 }
4098 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
4099}
4100
4101/**
4102 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
4103 * @pf: board private structure
4104 *
4105 * We go through and clear interrupt specific resources and reset the structure
4106 * to pre-load conditions
4107 **/
4108static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
4109{
4110 int i;
4111
Shannon Nelsone1477582015-02-21 06:44:33 +00004112 i40e_stop_misc_vector(pf);
Shannon Nelson69278392016-03-10 14:59:43 -08004113 if (pf->flags & I40E_FLAG_MSIX_ENABLED && pf->msix_entries) {
Shannon Nelsone1477582015-02-21 06:44:33 +00004114 synchronize_irq(pf->msix_entries[0].vector);
4115 free_irq(pf->msix_entries[0].vector, pf);
4116 }
4117
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004118 i40e_put_lump(pf->irq_pile, pf->iwarp_base_vector,
4119 I40E_IWARP_IRQ_PILE_ID);
4120
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004121 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00004122 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004123 if (pf->vsi[i])
4124 i40e_vsi_free_q_vectors(pf->vsi[i]);
4125 i40e_reset_interrupt_capability(pf);
4126}
4127
4128/**
4129 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
4130 * @vsi: the VSI being configured
4131 **/
4132static void i40e_napi_enable_all(struct i40e_vsi *vsi)
4133{
4134 int q_idx;
4135
4136 if (!vsi->netdev)
4137 return;
4138
4139 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004140 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004141}
4142
4143/**
4144 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
4145 * @vsi: the VSI being configured
4146 **/
4147static void i40e_napi_disable_all(struct i40e_vsi *vsi)
4148{
4149 int q_idx;
4150
4151 if (!vsi->netdev)
4152 return;
4153
4154 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004155 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004156}
4157
4158/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004159 * i40e_vsi_close - Shut down a VSI
4160 * @vsi: the vsi to be quelled
4161 **/
4162static void i40e_vsi_close(struct i40e_vsi *vsi)
4163{
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004164 bool reset = false;
4165
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004166 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
4167 i40e_down(vsi);
4168 i40e_vsi_free_irq(vsi);
4169 i40e_vsi_free_tx_resources(vsi);
4170 i40e_vsi_free_rx_resources(vsi);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04004171 vsi->current_netdev_flags = 0;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004172 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4173 reset = true;
4174 i40e_notify_client_of_netdev_close(vsi, reset);
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004175}
4176
4177/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004178 * i40e_quiesce_vsi - Pause a given VSI
4179 * @vsi: the VSI being paused
4180 **/
4181static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
4182{
4183 if (test_bit(__I40E_DOWN, &vsi->state))
4184 return;
4185
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004186 /* No need to disable FCoE VSI when Tx suspended */
4187 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
4188 vsi->type == I40E_VSI_FCOE) {
4189 dev_dbg(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004190 "VSI seid %d skipping FCoE VSI disable\n", vsi->seid);
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004191 return;
4192 }
4193
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004194 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004195 if (vsi->netdev && netif_running(vsi->netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004196 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004197 else
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004198 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004199}
4200
4201/**
4202 * i40e_unquiesce_vsi - Resume a given VSI
4203 * @vsi: the VSI being resumed
4204 **/
4205static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
4206{
4207 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
4208 return;
4209
4210 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
4211 if (vsi->netdev && netif_running(vsi->netdev))
4212 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
4213 else
Shannon Nelson8276f752014-03-14 07:32:27 +00004214 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004215}
4216
4217/**
4218 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
4219 * @pf: the PF
4220 **/
4221static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
4222{
4223 int v;
4224
Mitch Williams505682c2014-05-20 08:01:37 +00004225 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004226 if (pf->vsi[v])
4227 i40e_quiesce_vsi(pf->vsi[v]);
4228 }
4229}
4230
4231/**
4232 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
4233 * @pf: the PF
4234 **/
4235static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
4236{
4237 int v;
4238
Mitch Williams505682c2014-05-20 08:01:37 +00004239 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004240 if (pf->vsi[v])
4241 i40e_unquiesce_vsi(pf->vsi[v]);
4242 }
4243}
4244
Neerav Parikh69129dc2014-11-12 00:18:46 +00004245#ifdef CONFIG_I40E_DCB
4246/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004247 * i40e_vsi_wait_queues_disabled - Wait for VSI's queues to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004248 * @vsi: the VSI being configured
4249 *
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004250 * This function waits for the given VSI's queues to be disabled.
Neerav Parikh69129dc2014-11-12 00:18:46 +00004251 **/
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004252static int i40e_vsi_wait_queues_disabled(struct i40e_vsi *vsi)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004253{
4254 struct i40e_pf *pf = vsi->back;
4255 int i, pf_q, ret;
4256
4257 pf_q = vsi->base_queue;
4258 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4259 /* Check and wait for the disable status of the queue */
4260 ret = i40e_pf_txq_wait(pf, pf_q, false);
4261 if (ret) {
4262 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004263 "VSI seid %d Tx ring %d disable timeout\n",
4264 vsi->seid, pf_q);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004265 return ret;
4266 }
4267 }
4268
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004269 pf_q = vsi->base_queue;
4270 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4271 /* Check and wait for the disable status of the queue */
4272 ret = i40e_pf_rxq_wait(pf, pf_q, false);
4273 if (ret) {
4274 dev_info(&pf->pdev->dev,
4275 "VSI seid %d Rx ring %d disable timeout\n",
4276 vsi->seid, pf_q);
4277 return ret;
4278 }
4279 }
4280
Neerav Parikh69129dc2014-11-12 00:18:46 +00004281 return 0;
4282}
4283
4284/**
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004285 * i40e_pf_wait_queues_disabled - Wait for all queues of PF VSIs to be disabled
Neerav Parikh69129dc2014-11-12 00:18:46 +00004286 * @pf: the PF
4287 *
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004288 * This function waits for the queues to be in disabled state for all the
Neerav Parikh69129dc2014-11-12 00:18:46 +00004289 * VSIs that are managed by this PF.
4290 **/
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004291static int i40e_pf_wait_queues_disabled(struct i40e_pf *pf)
Neerav Parikh69129dc2014-11-12 00:18:46 +00004292{
4293 int v, ret = 0;
4294
4295 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004296 /* No need to wait for FCoE VSI queues */
4297 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh3fe06f42016-02-17 16:12:15 -08004298 ret = i40e_vsi_wait_queues_disabled(pf->vsi[v]);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004299 if (ret)
4300 break;
4301 }
4302 }
4303
4304 return ret;
4305}
4306
4307#endif
Kiran Patilb03a8c12015-09-24 18:13:15 -04004308
4309/**
4310 * i40e_detect_recover_hung_queue - Function to detect and recover hung_queue
4311 * @q_idx: TX queue number
4312 * @vsi: Pointer to VSI struct
4313 *
4314 * This function checks specified queue for given VSI. Detects hung condition.
4315 * Sets hung bit since it is two step process. Before next run of service task
4316 * if napi_poll runs, it reset 'hung' bit for respective q_vector. If not,
4317 * hung condition remain unchanged and during subsequent run, this function
4318 * issues SW interrupt to recover from hung condition.
4319 **/
4320static void i40e_detect_recover_hung_queue(int q_idx, struct i40e_vsi *vsi)
4321{
4322 struct i40e_ring *tx_ring = NULL;
4323 struct i40e_pf *pf;
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004324 u32 head, val, tx_pending_hw;
Kiran Patilb03a8c12015-09-24 18:13:15 -04004325 int i;
4326
4327 pf = vsi->back;
4328
4329 /* now that we have an index, find the tx_ring struct */
4330 for (i = 0; i < vsi->num_queue_pairs; i++) {
4331 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
4332 if (q_idx == vsi->tx_rings[i]->queue_index) {
4333 tx_ring = vsi->tx_rings[i];
4334 break;
4335 }
4336 }
4337 }
4338
4339 if (!tx_ring)
4340 return;
4341
4342 /* Read interrupt register */
4343 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4344 val = rd32(&pf->hw,
4345 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
4346 tx_ring->vsi->base_vector - 1));
4347 else
4348 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
4349
4350 head = i40e_get_head(tx_ring);
4351
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004352 tx_pending_hw = i40e_get_tx_pending(tx_ring, false);
Kiran Patilb03a8c12015-09-24 18:13:15 -04004353
Kiran Patil9c6c1252015-11-06 15:26:02 -08004354 /* HW is done executing descriptors, updated HEAD write back,
4355 * but SW hasn't processed those descriptors. If interrupt is
4356 * not generated from this point ON, it could result into
4357 * dev_watchdog detecting timeout on those netdev_queue,
4358 * hence proactively trigger SW interrupt.
Kiran Patilb03a8c12015-09-24 18:13:15 -04004359 */
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004360 if (tx_pending_hw && (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK))) {
Kiran Patil9c6c1252015-11-06 15:26:02 -08004361 /* NAPI Poll didn't run and clear since it was set */
4362 if (test_and_clear_bit(I40E_Q_VECTOR_HUNG_DETECT,
4363 &tx_ring->q_vector->hung_detected)) {
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004364 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",
4365 vsi->seid, q_idx, tx_pending_hw,
Kiran Patil9c6c1252015-11-06 15:26:02 -08004366 tx_ring->next_to_clean, head,
4367 tx_ring->next_to_use,
4368 readl(tx_ring->tail));
4369 netdev_info(vsi->netdev, "VSI_seid %d, Issuing force_wb for TX queue %d, Interrupt Reg: 0x%x\n",
4370 vsi->seid, q_idx, val);
4371 i40e_force_wb(vsi, tx_ring->q_vector);
4372 } else {
4373 /* First Chance - detected possible hung */
4374 set_bit(I40E_Q_VECTOR_HUNG_DETECT,
4375 &tx_ring->q_vector->hung_detected);
4376 }
4377 }
Anjali Singhai Jaindd353102016-01-15 14:33:12 -08004378
4379 /* This is the case where we have interrupts missing,
4380 * so the tx_pending in HW will most likely be 0, but we
4381 * will have tx_pending in SW since the WB happened but the
4382 * interrupt got lost.
4383 */
4384 if ((!tx_pending_hw) && i40e_get_tx_pending(tx_ring, true) &&
4385 (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK))) {
4386 if (napi_reschedule(&tx_ring->q_vector->napi))
4387 tx_ring->tx_stats.tx_lost_interrupt++;
4388 }
Kiran Patilb03a8c12015-09-24 18:13:15 -04004389}
4390
4391/**
4392 * i40e_detect_recover_hung - Function to detect and recover hung_queues
4393 * @pf: pointer to PF struct
4394 *
4395 * LAN VSI has netdev and netdev has TX queues. This function is to check
4396 * each of those TX queues if they are hung, trigger recovery by issuing
4397 * SW interrupt.
4398 **/
4399static void i40e_detect_recover_hung(struct i40e_pf *pf)
4400{
4401 struct net_device *netdev;
4402 struct i40e_vsi *vsi;
4403 int i;
4404
4405 /* Only for LAN VSI */
4406 vsi = pf->vsi[pf->lan_vsi];
4407
4408 if (!vsi)
4409 return;
4410
4411 /* Make sure, VSI state is not DOWN/RECOVERY_PENDING */
4412 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
4413 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4414 return;
4415
4416 /* Make sure type is MAIN VSI */
4417 if (vsi->type != I40E_VSI_MAIN)
4418 return;
4419
4420 netdev = vsi->netdev;
4421 if (!netdev)
4422 return;
4423
4424 /* Bail out if netif_carrier is not OK */
4425 if (!netif_carrier_ok(netdev))
4426 return;
4427
4428 /* Go thru' TX queues for netdev */
4429 for (i = 0; i < netdev->num_tx_queues; i++) {
4430 struct netdev_queue *q;
4431
4432 q = netdev_get_tx_queue(netdev, i);
4433 if (q)
4434 i40e_detect_recover_hung_queue(i, vsi);
4435 }
4436}
4437
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004438/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004439 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00004440 * @pf: pointer to PF
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004441 *
4442 * Get TC map for ISCSI PF type that will include iSCSI TC
4443 * and LAN TC.
4444 **/
4445static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4446{
4447 struct i40e_dcb_app_priority_table app;
4448 struct i40e_hw *hw = &pf->hw;
4449 u8 enabled_tc = 1; /* TC0 is always enabled */
4450 u8 tc, i;
4451 /* Get the iSCSI APP TLV */
4452 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4453
4454 for (i = 0; i < dcbcfg->numapps; i++) {
4455 app = dcbcfg->app[i];
4456 if (app.selector == I40E_APP_SEL_TCPIP &&
4457 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4458 tc = dcbcfg->etscfg.prioritytable[app.priority];
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004459 enabled_tc |= BIT(tc);
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004460 break;
4461 }
4462 }
4463
4464 return enabled_tc;
4465}
4466
4467/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004468 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4469 * @dcbcfg: the corresponding DCBx configuration structure
4470 *
4471 * Return the number of TCs from given DCBx configuration
4472 **/
4473static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4474{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004475 u8 num_tc = 0;
4476 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004477
4478 /* Scan the ETS Config Priority Table to find
4479 * traffic class enabled for a given priority
4480 * and use the traffic class index to get the
4481 * number of traffic classes enabled
4482 */
4483 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4484 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
4485 num_tc = dcbcfg->etscfg.prioritytable[i];
4486 }
4487
4488 /* Traffic class index starts from zero so
4489 * increment to return the actual count
4490 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004491 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004492}
4493
4494/**
4495 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4496 * @dcbcfg: the corresponding DCBx configuration structure
4497 *
4498 * Query the current DCB configuration and return the number of
4499 * traffic classes enabled from the given DCBX config
4500 **/
4501static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4502{
4503 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4504 u8 enabled_tc = 1;
4505 u8 i;
4506
4507 for (i = 0; i < num_tc; i++)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004508 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004509
4510 return enabled_tc;
4511}
4512
4513/**
4514 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4515 * @pf: PF being queried
4516 *
4517 * Return number of traffic classes enabled for the given PF
4518 **/
4519static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4520{
4521 struct i40e_hw *hw = &pf->hw;
4522 u8 i, enabled_tc;
4523 u8 num_tc = 0;
4524 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4525
4526 /* If DCB is not enabled then always in single TC */
4527 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4528 return 1;
4529
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004530 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004531 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4532 return i40e_dcb_get_num_tc(dcbcfg);
4533
4534 /* MFP mode return count of enabled TCs for this PF */
4535 if (pf->hw.func_caps.iscsi)
4536 enabled_tc = i40e_get_iscsi_tc_map(pf);
4537 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004538 return 1; /* Only TC0 */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004539
4540 /* At least have TC0 */
4541 enabled_tc = (enabled_tc ? enabled_tc : 0x1);
4542 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004543 if (enabled_tc & BIT(i))
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004544 num_tc++;
4545 }
4546 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004547}
4548
4549/**
4550 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
4551 * @pf: PF being queried
4552 *
4553 * Return a bitmap for first enabled traffic class for this PF.
4554 **/
4555static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
4556{
4557 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4558 u8 i = 0;
4559
4560 if (!enabled_tc)
4561 return 0x1; /* TC0 */
4562
4563 /* Find the first enabled TC */
4564 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004565 if (enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004566 break;
4567 }
4568
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004569 return BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004570}
4571
4572/**
4573 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4574 * @pf: PF being queried
4575 *
4576 * Return a bitmap for enabled traffic classes for this PF.
4577 **/
4578static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4579{
4580 /* If DCB is not enabled for this PF then just return default TC */
4581 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4582 return i40e_pf_get_default_tc(pf);
4583
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004584 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004585 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4586 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4587
Neerav Parikhfc51de92015-02-24 06:58:53 +00004588 /* MFP enabled and iSCSI PF type */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004589 if (pf->hw.func_caps.iscsi)
4590 return i40e_get_iscsi_tc_map(pf);
4591 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004592 return i40e_pf_get_default_tc(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004593}
4594
4595/**
4596 * i40e_vsi_get_bw_info - Query VSI BW Information
4597 * @vsi: the VSI being queried
4598 *
4599 * Returns 0 on success, negative value on failure
4600 **/
4601static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4602{
4603 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4604 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4605 struct i40e_pf *pf = vsi->back;
4606 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004607 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004608 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004609 int i;
4610
4611 /* Get the VSI level BW configuration */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004612 ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4613 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004614 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004615 "couldn't get PF vsi bw config, err %s aq_err %s\n",
4616 i40e_stat_str(&pf->hw, ret),
4617 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004618 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004619 }
4620
4621 /* Get the VSI level BW configuration per TC */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004622 ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
4623 NULL);
4624 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004625 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004626 "couldn't get PF vsi ets bw config, err %s aq_err %s\n",
4627 i40e_stat_str(&pf->hw, ret),
4628 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004629 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004630 }
4631
4632 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4633 dev_info(&pf->pdev->dev,
4634 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4635 bw_config.tc_valid_bits,
4636 bw_ets_config.tc_valid_bits);
4637 /* Still continuing */
4638 }
4639
4640 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4641 vsi->bw_max_quanta = bw_config.max_bw;
4642 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4643 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4644 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4645 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4646 vsi->bw_ets_limit_credits[i] =
4647 le16_to_cpu(bw_ets_config.credits[i]);
4648 /* 3 bits out of 4 for each TC */
4649 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4650 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004651
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004652 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004653}
4654
4655/**
4656 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4657 * @vsi: the VSI being configured
4658 * @enabled_tc: TC bitmap
4659 * @bw_credits: BW shared credits per TC
4660 *
4661 * Returns 0 on success, negative value on failure
4662 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004663static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004664 u8 *bw_share)
4665{
4666 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004667 i40e_status ret;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004668 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004669
4670 bw_data.tc_valid_bits = enabled_tc;
4671 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4672 bw_data.tc_bw_credits[i] = bw_share[i];
4673
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004674 ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4675 NULL);
4676 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004677 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004678 "AQ command Config VSI BW allocation per TC failed = %d\n",
4679 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004680 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004681 }
4682
4683 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4684 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4685
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004686 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004687}
4688
4689/**
4690 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4691 * @vsi: the VSI being configured
4692 * @enabled_tc: TC map to be enabled
4693 *
4694 **/
4695static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4696{
4697 struct net_device *netdev = vsi->netdev;
4698 struct i40e_pf *pf = vsi->back;
4699 struct i40e_hw *hw = &pf->hw;
4700 u8 netdev_tc = 0;
4701 int i;
4702 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4703
4704 if (!netdev)
4705 return;
4706
4707 if (!enabled_tc) {
4708 netdev_reset_tc(netdev);
4709 return;
4710 }
4711
4712 /* Set up actual enabled TCs on the VSI */
4713 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4714 return;
4715
4716 /* set per TC queues for the VSI */
4717 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4718 /* Only set TC queues for enabled tcs
4719 *
4720 * e.g. For a VSI that has TC0 and TC3 enabled the
4721 * enabled_tc bitmap would be 0x00001001; the driver
4722 * will set the numtc for netdev as 2 that will be
4723 * referenced by the netdev layer as TC 0 and 1.
4724 */
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004725 if (vsi->tc_config.enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004726 netdev_set_tc_queue(netdev,
4727 vsi->tc_config.tc_info[i].netdev_tc,
4728 vsi->tc_config.tc_info[i].qcount,
4729 vsi->tc_config.tc_info[i].qoffset);
4730 }
4731
4732 /* Assign UP2TC map for the VSI */
4733 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4734 /* Get the actual TC# for the UP */
4735 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4736 /* Get the mapped netdev TC# for the UP */
4737 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4738 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4739 }
4740}
4741
4742/**
4743 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4744 * @vsi: the VSI being configured
4745 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4746 **/
4747static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4748 struct i40e_vsi_context *ctxt)
4749{
4750 /* copy just the sections touched not the entire info
4751 * since not all sections are valid as returned by
4752 * update vsi params
4753 */
4754 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4755 memcpy(&vsi->info.queue_mapping,
4756 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4757 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4758 sizeof(vsi->info.tc_mapping));
4759}
4760
4761/**
4762 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4763 * @vsi: VSI to be configured
4764 * @enabled_tc: TC bitmap
4765 *
4766 * This configures a particular VSI for TCs that are mapped to the
4767 * given TC bitmap. It uses default bandwidth share for TCs across
4768 * VSIs to configure TC for a particular VSI.
4769 *
4770 * NOTE:
4771 * It is expected that the VSI queues have been quisced before calling
4772 * this function.
4773 **/
4774static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4775{
4776 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4777 struct i40e_vsi_context ctxt;
4778 int ret = 0;
4779 int i;
4780
4781 /* Check if enabled_tc is same as existing or new TCs */
4782 if (vsi->tc_config.enabled_tc == enabled_tc)
4783 return ret;
4784
4785 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4786 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004787 if (enabled_tc & BIT(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004788 bw_share[i] = 1;
4789 }
4790
4791 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4792 if (ret) {
4793 dev_info(&vsi->back->pdev->dev,
4794 "Failed configuring TC map %d for VSI %d\n",
4795 enabled_tc, vsi->seid);
4796 goto out;
4797 }
4798
4799 /* Update Queue Pairs Mapping for currently enabled UPs */
4800 ctxt.seid = vsi->seid;
4801 ctxt.pf_num = vsi->back->hw.pf_id;
4802 ctxt.vf_num = 0;
4803 ctxt.uplink_seid = vsi->uplink_seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07004804 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004805 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4806
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004807 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
4808 ctxt.info.valid_sections |=
4809 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
4810 ctxt.info.queueing_opt_flags |= I40E_AQ_VSI_QUE_OPT_TCP_ENA;
4811 }
4812
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004813 /* Update the VSI after updating the VSI queue-mapping information */
4814 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4815 if (ret) {
4816 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004817 "Update vsi tc config failed, err %s aq_err %s\n",
4818 i40e_stat_str(&vsi->back->hw, ret),
4819 i40e_aq_str(&vsi->back->hw,
4820 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004821 goto out;
4822 }
4823 /* update the local VSI info with updated queue map */
4824 i40e_vsi_update_queue_map(vsi, &ctxt);
4825 vsi->info.valid_sections = 0;
4826
4827 /* Update current VSI BW information */
4828 ret = i40e_vsi_get_bw_info(vsi);
4829 if (ret) {
4830 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004831 "Failed updating vsi bw info, err %s aq_err %s\n",
4832 i40e_stat_str(&vsi->back->hw, ret),
4833 i40e_aq_str(&vsi->back->hw,
4834 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004835 goto out;
4836 }
4837
4838 /* Update the netdev TC setup */
4839 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4840out:
4841 return ret;
4842}
4843
4844/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004845 * i40e_veb_config_tc - Configure TCs for given VEB
4846 * @veb: given VEB
4847 * @enabled_tc: TC bitmap
4848 *
4849 * Configures given TC bitmap for VEB (switching) element
4850 **/
4851int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4852{
4853 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4854 struct i40e_pf *pf = veb->pf;
4855 int ret = 0;
4856 int i;
4857
4858 /* No TCs or already enabled TCs just return */
4859 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4860 return ret;
4861
4862 bw_data.tc_valid_bits = enabled_tc;
4863 /* bw_data.absolute_credits is not set (relative) */
4864
4865 /* Enable ETS TCs with equal BW Share for now */
4866 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08004867 if (enabled_tc & BIT(i))
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004868 bw_data.tc_bw_share_credits[i] = 1;
4869 }
4870
4871 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4872 &bw_data, NULL);
4873 if (ret) {
4874 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004875 "VEB bw config failed, err %s aq_err %s\n",
4876 i40e_stat_str(&pf->hw, ret),
4877 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004878 goto out;
4879 }
4880
4881 /* Update the BW information */
4882 ret = i40e_veb_get_bw_info(veb);
4883 if (ret) {
4884 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004885 "Failed getting veb bw config, err %s aq_err %s\n",
4886 i40e_stat_str(&pf->hw, ret),
4887 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004888 }
4889
4890out:
4891 return ret;
4892}
4893
4894#ifdef CONFIG_I40E_DCB
4895/**
4896 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4897 * @pf: PF struct
4898 *
4899 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4900 * the caller would've quiesce all the VSIs before calling
4901 * this function
4902 **/
4903static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4904{
4905 u8 tc_map = 0;
4906 int ret;
4907 u8 v;
4908
4909 /* Enable the TCs available on PF to all VEBs */
4910 tc_map = i40e_pf_get_tc_map(pf);
4911 for (v = 0; v < I40E_MAX_VEB; v++) {
4912 if (!pf->veb[v])
4913 continue;
4914 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4915 if (ret) {
4916 dev_info(&pf->pdev->dev,
4917 "Failed configuring TC for VEB seid=%d\n",
4918 pf->veb[v]->seid);
4919 /* Will try to configure as many components */
4920 }
4921 }
4922
4923 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004924 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004925 if (!pf->vsi[v])
4926 continue;
4927
4928 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004929#ifdef I40E_FCOE
4930 * - For FCoE VSI only enable the TC configured
4931 * as per the APP TLV
4932#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004933 * - For all others keep them at TC0 for now
4934 */
4935 if (v == pf->lan_vsi)
4936 tc_map = i40e_pf_get_tc_map(pf);
4937 else
4938 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004939#ifdef I40E_FCOE
4940 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4941 tc_map = i40e_get_fcoe_tc_map(pf);
4942#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004943
4944 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4945 if (ret) {
4946 dev_info(&pf->pdev->dev,
4947 "Failed configuring TC for VSI seid=%d\n",
4948 pf->vsi[v]->seid);
4949 /* Will try to configure as many components */
4950 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004951 /* Re-configure VSI vectors based on updated TC map */
4952 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004953 if (pf->vsi[v]->netdev)
4954 i40e_dcbnl_set_all(pf->vsi[v]);
4955 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06004956 i40e_notify_client_of_l2_param_changes(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004957 }
4958}
4959
4960/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004961 * i40e_resume_port_tx - Resume port Tx
4962 * @pf: PF struct
4963 *
4964 * Resume a port's Tx and issue a PF reset in case of failure to
4965 * resume.
4966 **/
4967static int i40e_resume_port_tx(struct i40e_pf *pf)
4968{
4969 struct i40e_hw *hw = &pf->hw;
4970 int ret;
4971
4972 ret = i40e_aq_resume_port_tx(hw, NULL);
4973 if (ret) {
4974 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004975 "Resume Port Tx failed, err %s aq_err %s\n",
4976 i40e_stat_str(&pf->hw, ret),
4977 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004978 /* Schedule PF reset to recover */
4979 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4980 i40e_service_event_schedule(pf);
4981 }
4982
4983 return ret;
4984}
4985
4986/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004987 * i40e_init_pf_dcb - Initialize DCB configuration
4988 * @pf: PF being configured
4989 *
4990 * Query the current DCB configuration and cache it
4991 * in the hardware structure
4992 **/
4993static int i40e_init_pf_dcb(struct i40e_pf *pf)
4994{
4995 struct i40e_hw *hw = &pf->hw;
4996 int err = 0;
4997
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00004998 /* Do not enable DCB for SW1 and SW2 images even if the FW is capable */
Neerav Parikhf1bbad32016-01-13 16:51:39 -08004999 if (pf->flags & I40E_FLAG_NO_DCB_SUPPORT)
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00005000 goto out;
5001
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005002 /* Get the initial DCB configuration */
5003 err = i40e_init_dcb(hw);
5004 if (!err) {
5005 /* Device/Function is not DCBX capable */
5006 if ((!hw->func_caps.dcb) ||
5007 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
5008 dev_info(&pf->pdev->dev,
5009 "DCBX offload is not supported or is disabled for this PF.\n");
5010
5011 if (pf->flags & I40E_FLAG_MFP_ENABLED)
5012 goto out;
5013
5014 } else {
5015 /* When status is not DISABLED then DCBX in FW */
5016 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
5017 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005018
5019 pf->flags |= I40E_FLAG_DCB_CAPABLE;
5020 /* Enable DCB tagging only when more than one TC */
5021 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
5022 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005023 dev_dbg(&pf->pdev->dev,
5024 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005025 }
Neerav Parikh014269f2014-04-01 07:11:48 +00005026 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00005027 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005028 "Query for DCB configuration failed, err %s aq_err %s\n",
5029 i40e_stat_str(&pf->hw, err),
5030 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005031 }
5032
5033out:
5034 return err;
5035}
5036#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005037#define SPEED_SIZE 14
5038#define FC_SIZE 8
5039/**
5040 * i40e_print_link_message - print link up or down
5041 * @vsi: the VSI for which link needs a message
5042 */
Matt Jaredc156f852015-08-27 11:42:39 -04005043void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005044{
Shannon Nelsona9165492015-09-03 17:19:00 -04005045 char *speed = "Unknown";
5046 char *fc = "Unknown";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005047
Matt Jaredc156f852015-08-27 11:42:39 -04005048 if (vsi->current_isup == isup)
5049 return;
5050 vsi->current_isup = isup;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005051 if (!isup) {
5052 netdev_info(vsi->netdev, "NIC Link is Down\n");
5053 return;
5054 }
5055
Greg Rose148c2d82014-12-11 07:06:27 +00005056 /* Warn user if link speed on NPAR enabled partition is not at
5057 * least 10GB
5058 */
5059 if (vsi->back->hw.func_caps.npar_enable &&
5060 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
5061 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
5062 netdev_warn(vsi->netdev,
5063 "The partition detected link speed that is less than 10Gbps\n");
5064
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005065 switch (vsi->back->hw.phy.link_info.link_speed) {
5066 case I40E_LINK_SPEED_40GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005067 speed = "40 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005068 break;
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005069 case I40E_LINK_SPEED_20GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005070 speed = "20 G";
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005071 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005072 case I40E_LINK_SPEED_10GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005073 speed = "10 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005074 break;
5075 case I40E_LINK_SPEED_1GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005076 speed = "1000 M";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005077 break;
Mitch Williams5960d332014-09-13 07:40:47 +00005078 case I40E_LINK_SPEED_100MB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005079 speed = "100 M";
Mitch Williams5960d332014-09-13 07:40:47 +00005080 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005081 default:
5082 break;
5083 }
5084
5085 switch (vsi->back->hw.fc.current_mode) {
5086 case I40E_FC_FULL:
Shannon Nelsona9165492015-09-03 17:19:00 -04005087 fc = "RX/TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005088 break;
5089 case I40E_FC_TX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005090 fc = "TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005091 break;
5092 case I40E_FC_RX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005093 fc = "RX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005094 break;
5095 default:
Shannon Nelsona9165492015-09-03 17:19:00 -04005096 fc = "None";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005097 break;
5098 }
5099
Shannon Nelsona9165492015-09-03 17:19:00 -04005100 netdev_info(vsi->netdev, "NIC Link is Up %sbps Full Duplex, Flow Control: %s\n",
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005101 speed, fc);
5102}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005103
5104/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005105 * i40e_up_complete - Finish the last steps of bringing up a connection
5106 * @vsi: the VSI being configured
5107 **/
5108static int i40e_up_complete(struct i40e_vsi *vsi)
5109{
5110 struct i40e_pf *pf = vsi->back;
5111 int err;
5112
5113 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5114 i40e_vsi_configure_msix(vsi);
5115 else
5116 i40e_configure_msi_and_legacy(vsi);
5117
5118 /* start rings */
5119 err = i40e_vsi_control_rings(vsi, true);
5120 if (err)
5121 return err;
5122
5123 clear_bit(__I40E_DOWN, &vsi->state);
5124 i40e_napi_enable_all(vsi);
5125 i40e_vsi_enable_irq(vsi);
5126
5127 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
5128 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005129 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005130 netif_tx_start_all_queues(vsi->netdev);
5131 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00005132 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005133 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005134 /* need to check for qualified module here*/
5135 if ((pf->hw.phy.link_info.link_info &
5136 I40E_AQ_MEDIA_AVAILABLE) &&
5137 (!(pf->hw.phy.link_info.an_info &
5138 I40E_AQ_QUALIFIED_MODULE)))
5139 netdev_err(vsi->netdev,
5140 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005141 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005142
5143 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005144 if (vsi->type == I40E_VSI_FDIR) {
5145 /* reset fd counters */
5146 pf->fd_add_err = pf->fd_atr_cnt = 0;
5147 if (pf->fd_tcp_rule > 0) {
5148 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005149 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5150 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005151 pf->fd_tcp_rule = 0;
5152 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005153 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005154 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005155
5156 /* On the next run of the service_task, notify any clients of the new
5157 * opened netdev
5158 */
5159 pf->flags |= I40E_FLAG_SERVICE_CLIENT_REQUESTED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005160 i40e_service_event_schedule(pf);
5161
5162 return 0;
5163}
5164
5165/**
5166 * i40e_vsi_reinit_locked - Reset the VSI
5167 * @vsi: the VSI being configured
5168 *
5169 * Rebuild the ring structs after some configuration
5170 * has changed, e.g. MTU size.
5171 **/
5172static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
5173{
5174 struct i40e_pf *pf = vsi->back;
5175
5176 WARN_ON(in_interrupt());
5177 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
5178 usleep_range(1000, 2000);
5179 i40e_down(vsi);
5180
5181 /* Give a VF some time to respond to the reset. The
5182 * two second wait is based upon the watchdog cycle in
5183 * the VF driver.
5184 */
5185 if (vsi->type == I40E_VSI_SRIOV)
5186 msleep(2000);
5187 i40e_up(vsi);
5188 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
5189}
5190
5191/**
5192 * i40e_up - Bring the connection back up after being down
5193 * @vsi: the VSI being configured
5194 **/
5195int i40e_up(struct i40e_vsi *vsi)
5196{
5197 int err;
5198
5199 err = i40e_vsi_configure(vsi);
5200 if (!err)
5201 err = i40e_up_complete(vsi);
5202
5203 return err;
5204}
5205
5206/**
5207 * i40e_down - Shutdown the connection processing
5208 * @vsi: the VSI being stopped
5209 **/
5210void i40e_down(struct i40e_vsi *vsi)
5211{
5212 int i;
5213
5214 /* It is assumed that the caller of this function
5215 * sets the vsi->state __I40E_DOWN bit.
5216 */
5217 if (vsi->netdev) {
5218 netif_carrier_off(vsi->netdev);
5219 netif_tx_disable(vsi->netdev);
5220 }
5221 i40e_vsi_disable_irq(vsi);
5222 i40e_vsi_control_rings(vsi, false);
5223 i40e_napi_disable_all(vsi);
5224
5225 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00005226 i40e_clean_tx_ring(vsi->tx_rings[i]);
5227 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005228 }
5229}
5230
5231/**
5232 * i40e_setup_tc - configure multiple traffic classes
5233 * @netdev: net device to configure
5234 * @tc: number of traffic classes to enable
5235 **/
5236static int i40e_setup_tc(struct net_device *netdev, u8 tc)
5237{
5238 struct i40e_netdev_priv *np = netdev_priv(netdev);
5239 struct i40e_vsi *vsi = np->vsi;
5240 struct i40e_pf *pf = vsi->back;
5241 u8 enabled_tc = 0;
5242 int ret = -EINVAL;
5243 int i;
5244
5245 /* Check if DCB enabled to continue */
5246 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
5247 netdev_info(netdev, "DCB is not enabled for adapter\n");
5248 goto exit;
5249 }
5250
5251 /* Check if MFP enabled */
5252 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
5253 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
5254 goto exit;
5255 }
5256
5257 /* Check whether tc count is within enabled limit */
5258 if (tc > i40e_pf_get_num_tc(pf)) {
5259 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
5260 goto exit;
5261 }
5262
5263 /* Generate TC map for number of tc requested */
5264 for (i = 0; i < tc; i++)
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08005265 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005266
5267 /* Requesting same TC configuration as already enabled */
5268 if (enabled_tc == vsi->tc_config.enabled_tc)
5269 return 0;
5270
5271 /* Quiesce VSI queues */
5272 i40e_quiesce_vsi(vsi);
5273
5274 /* Configure VSI for enabled TCs */
5275 ret = i40e_vsi_config_tc(vsi, enabled_tc);
5276 if (ret) {
5277 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
5278 vsi->seid);
5279 goto exit;
5280 }
5281
5282 /* Unquiesce VSI */
5283 i40e_unquiesce_vsi(vsi);
5284
5285exit:
5286 return ret;
5287}
5288
John Fastabende4c67342016-02-16 21:16:15 -08005289#ifdef I40E_FCOE
John Fastabend16e5cc62016-02-16 21:16:43 -08005290int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto,
5291 struct tc_to_netdev *tc)
John Fastabende4c67342016-02-16 21:16:15 -08005292#else
John Fastabend16e5cc62016-02-16 21:16:43 -08005293static int __i40e_setup_tc(struct net_device *netdev, u32 handle, __be16 proto,
5294 struct tc_to_netdev *tc)
John Fastabende4c67342016-02-16 21:16:15 -08005295#endif
5296{
John Fastabend16e5cc62016-02-16 21:16:43 -08005297 if (handle != TC_H_ROOT || tc->type != TC_SETUP_MQPRIO)
John Fastabende4c67342016-02-16 21:16:15 -08005298 return -EINVAL;
John Fastabend16e5cc62016-02-16 21:16:43 -08005299 return i40e_setup_tc(netdev, tc->tc);
John Fastabende4c67342016-02-16 21:16:15 -08005300}
5301
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005302/**
5303 * i40e_open - Called when a network interface is made active
5304 * @netdev: network interface device structure
5305 *
5306 * The open entry point is called when a network interface is made
5307 * active by the system (IFF_UP). At this point all resources needed
5308 * for transmit and receive operations are allocated, the interrupt
5309 * handler is registered with the OS, the netdev watchdog subtask is
5310 * enabled, and the stack is notified that the interface is ready.
5311 *
5312 * Returns 0 on success, negative value on failure
5313 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005314int i40e_open(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005315{
5316 struct i40e_netdev_priv *np = netdev_priv(netdev);
5317 struct i40e_vsi *vsi = np->vsi;
5318 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005319 int err;
5320
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005321 /* disallow open during test or if eeprom is broken */
5322 if (test_bit(__I40E_TESTING, &pf->state) ||
5323 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005324 return -EBUSY;
5325
5326 netif_carrier_off(netdev);
5327
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005328 err = i40e_vsi_open(vsi);
5329 if (err)
5330 return err;
5331
Jesse Brandeburg059dab62014-04-01 09:07:20 +00005332 /* configure global TSO hardware offload settings */
5333 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
5334 TCP_FLAG_FIN) >> 16);
5335 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
5336 TCP_FLAG_FIN |
5337 TCP_FLAG_CWR) >> 16);
5338 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
5339
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07005340 udp_tunnel_get_rx_info(netdev);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06005341 i40e_notify_client_of_netdev_open(vsi);
5342
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005343 return 0;
5344}
5345
5346/**
5347 * i40e_vsi_open -
5348 * @vsi: the VSI to open
5349 *
5350 * Finish initialization of the VSI.
5351 *
5352 * Returns 0 on success, negative value on failure
5353 **/
5354int i40e_vsi_open(struct i40e_vsi *vsi)
5355{
5356 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00005357 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005358 int err;
5359
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005360 /* allocate descriptors */
5361 err = i40e_vsi_setup_tx_resources(vsi);
5362 if (err)
5363 goto err_setup_tx;
5364 err = i40e_vsi_setup_rx_resources(vsi);
5365 if (err)
5366 goto err_setup_rx;
5367
5368 err = i40e_vsi_configure(vsi);
5369 if (err)
5370 goto err_setup_rx;
5371
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005372 if (vsi->netdev) {
5373 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
5374 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
5375 err = i40e_vsi_request_irq(vsi, int_name);
5376 if (err)
5377 goto err_setup_rx;
5378
5379 /* Notify the stack of the actual queue counts. */
5380 err = netif_set_real_num_tx_queues(vsi->netdev,
5381 vsi->num_queue_pairs);
5382 if (err)
5383 goto err_set_queues;
5384
5385 err = netif_set_real_num_rx_queues(vsi->netdev,
5386 vsi->num_queue_pairs);
5387 if (err)
5388 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005389
5390 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00005391 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005392 dev_driver_string(&pf->pdev->dev),
5393 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005394 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005395
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005396 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00005397 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005398 goto err_setup_rx;
5399 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005400
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005401 err = i40e_up_complete(vsi);
5402 if (err)
5403 goto err_up_complete;
5404
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005405 return 0;
5406
5407err_up_complete:
5408 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005409err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005410 i40e_vsi_free_irq(vsi);
5411err_setup_rx:
5412 i40e_vsi_free_rx_resources(vsi);
5413err_setup_tx:
5414 i40e_vsi_free_tx_resources(vsi);
5415 if (vsi == pf->vsi[pf->lan_vsi])
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005416 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005417
5418 return err;
5419}
5420
5421/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005422 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00005423 * @pf: Pointer to PF
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005424 *
5425 * This function destroys the hlist where all the Flow Director
5426 * filters were saved.
5427 **/
5428static void i40e_fdir_filter_exit(struct i40e_pf *pf)
5429{
5430 struct i40e_fdir_filter *filter;
5431 struct hlist_node *node2;
5432
5433 hlist_for_each_entry_safe(filter, node2,
5434 &pf->fdir_filter_list, fdir_node) {
5435 hlist_del(&filter->fdir_node);
5436 kfree(filter);
5437 }
5438 pf->fdir_pf_active_filters = 0;
5439}
5440
5441/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005442 * i40e_close - Disables a network interface
5443 * @netdev: network interface device structure
5444 *
5445 * The close entry point is called when an interface is de-activated
5446 * by the OS. The hardware is still under the driver's control, but
5447 * this netdev interface is disabled.
5448 *
5449 * Returns 0, this is not allowed to fail
5450 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005451int i40e_close(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005452{
5453 struct i40e_netdev_priv *np = netdev_priv(netdev);
5454 struct i40e_vsi *vsi = np->vsi;
5455
Shannon Nelson90ef8d42014-03-14 07:32:26 +00005456 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005457
5458 return 0;
5459}
5460
5461/**
5462 * i40e_do_reset - Start a PF or Core Reset sequence
5463 * @pf: board private structure
5464 * @reset_flags: which reset is requested
5465 *
5466 * The essential difference in resets is that the PF Reset
5467 * doesn't clear the packet buffers, doesn't reset the PE
5468 * firmware, and doesn't bother the other PFs on the chip.
5469 **/
5470void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5471{
5472 u32 val;
5473
5474 WARN_ON(in_interrupt());
5475
Mitch Williams263fc482014-04-23 04:50:11 +00005476
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005477 /* do the biggest reset indicated */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005478 if (reset_flags & BIT_ULL(__I40E_GLOBAL_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005479
5480 /* Request a Global Reset
5481 *
5482 * This will start the chip's countdown to the actual full
5483 * chip reset event, and a warning interrupt to be sent
5484 * to all PFs, including the requestor. Our handler
5485 * for the warning interrupt will deal with the shutdown
5486 * and recovery of the switch setup.
5487 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005488 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005489 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5490 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5491 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5492
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005493 } else if (reset_flags & BIT_ULL(__I40E_CORE_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005494
5495 /* Request a Core Reset
5496 *
5497 * Same as Global Reset, except does *not* include the MAC/PHY
5498 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005499 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005500 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5501 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5502 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5503 i40e_flush(&pf->hw);
5504
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005505 } else if (reset_flags & BIT_ULL(__I40E_PF_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005506
5507 /* Request a PF Reset
5508 *
5509 * Resets only the PF-specific registers
5510 *
5511 * This goes directly to the tear-down and rebuild of
5512 * the switch, since we need to do all the recovery as
5513 * for the Core Reset.
5514 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005515 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005516 i40e_handle_reset_warning(pf);
5517
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005518 } else if (reset_flags & BIT_ULL(__I40E_REINIT_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005519 int v;
5520
5521 /* Find the VSI(s) that requested a re-init */
5522 dev_info(&pf->pdev->dev,
5523 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005524 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005525 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005526
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005527 if (vsi != NULL &&
5528 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5529 i40e_vsi_reinit_locked(pf->vsi[v]);
5530 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5531 }
5532 }
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005533 } else if (reset_flags & BIT_ULL(__I40E_DOWN_REQUESTED)) {
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005534 int v;
5535
5536 /* Find the VSI(s) that needs to be brought down */
5537 dev_info(&pf->pdev->dev, "VSI down requested\n");
5538 for (v = 0; v < pf->num_alloc_vsi; v++) {
5539 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005540
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005541 if (vsi != NULL &&
5542 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5543 set_bit(__I40E_DOWN, &vsi->state);
5544 i40e_down(vsi);
5545 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5546 }
5547 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005548 } else {
5549 dev_info(&pf->pdev->dev,
5550 "bad reset request 0x%08x\n", reset_flags);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005551 }
5552}
5553
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005554#ifdef CONFIG_I40E_DCB
5555/**
5556 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5557 * @pf: board private structure
5558 * @old_cfg: current DCB config
5559 * @new_cfg: new DCB config
5560 **/
5561bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5562 struct i40e_dcbx_config *old_cfg,
5563 struct i40e_dcbx_config *new_cfg)
5564{
5565 bool need_reconfig = false;
5566
5567 /* Check if ETS configuration has changed */
5568 if (memcmp(&new_cfg->etscfg,
5569 &old_cfg->etscfg,
5570 sizeof(new_cfg->etscfg))) {
5571 /* If Priority Table has changed reconfig is needed */
5572 if (memcmp(&new_cfg->etscfg.prioritytable,
5573 &old_cfg->etscfg.prioritytable,
5574 sizeof(new_cfg->etscfg.prioritytable))) {
5575 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005576 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005577 }
5578
5579 if (memcmp(&new_cfg->etscfg.tcbwtable,
5580 &old_cfg->etscfg.tcbwtable,
5581 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005582 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005583
5584 if (memcmp(&new_cfg->etscfg.tsatable,
5585 &old_cfg->etscfg.tsatable,
5586 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005587 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005588 }
5589
5590 /* Check if PFC configuration has changed */
5591 if (memcmp(&new_cfg->pfc,
5592 &old_cfg->pfc,
5593 sizeof(new_cfg->pfc))) {
5594 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005595 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005596 }
5597
5598 /* Check if APP Table has changed */
5599 if (memcmp(&new_cfg->app,
5600 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005601 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005602 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005603 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005604 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005605
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005606 dev_dbg(&pf->pdev->dev, "dcb need_reconfig=%d\n", need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005607 return need_reconfig;
5608}
5609
5610/**
5611 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5612 * @pf: board private structure
5613 * @e: event info posted on ARQ
5614 **/
5615static int i40e_handle_lldp_event(struct i40e_pf *pf,
5616 struct i40e_arq_event_info *e)
5617{
5618 struct i40e_aqc_lldp_get_mib *mib =
5619 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5620 struct i40e_hw *hw = &pf->hw;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005621 struct i40e_dcbx_config tmp_dcbx_cfg;
5622 bool need_reconfig = false;
5623 int ret = 0;
5624 u8 type;
5625
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005626 /* Not DCB capable or capability disabled */
5627 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5628 return ret;
5629
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005630 /* Ignore if event is not for Nearest Bridge */
5631 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5632 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005633 dev_dbg(&pf->pdev->dev, "LLDP event mib bridge type 0x%x\n", type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005634 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5635 return ret;
5636
5637 /* Check MIB Type and return if event for Remote MIB update */
5638 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005639 dev_dbg(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005640 "LLDP event mib type %s\n", type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005641 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5642 /* Update the remote cached instance and return */
5643 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5644 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5645 &hw->remote_dcbx_config);
5646 goto exit;
5647 }
5648
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005649 /* Store the old configuration */
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07005650 tmp_dcbx_cfg = hw->local_dcbx_config;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005651
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005652 /* Reset the old DCBx configuration data */
5653 memset(&hw->local_dcbx_config, 0, sizeof(hw->local_dcbx_config));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005654 /* Get updated DCBX data from firmware */
5655 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005656 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005657 dev_info(&pf->pdev->dev,
5658 "Failed querying DCB configuration data from firmware, err %s aq_err %s\n",
5659 i40e_stat_str(&pf->hw, ret),
5660 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005661 goto exit;
5662 }
5663
5664 /* No change detected in DCBX configs */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005665 if (!memcmp(&tmp_dcbx_cfg, &hw->local_dcbx_config,
5666 sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005667 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005668 goto exit;
5669 }
5670
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005671 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg,
5672 &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005673
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005674 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg, &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005675
5676 if (!need_reconfig)
5677 goto exit;
5678
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005679 /* Enable DCB tagging only when more than one TC */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005680 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005681 pf->flags |= I40E_FLAG_DCB_ENABLED;
5682 else
5683 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5684
Neerav Parikh69129dc2014-11-12 00:18:46 +00005685 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005686 /* Reconfiguration needed quiesce all VSIs */
5687 i40e_pf_quiesce_all_vsi(pf);
5688
5689 /* Changes in configuration update VEB/VSI */
5690 i40e_dcb_reconfigure(pf);
5691
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005692 ret = i40e_resume_port_tx(pf);
5693
Neerav Parikh69129dc2014-11-12 00:18:46 +00005694 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005695 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005696 if (ret)
5697 goto exit;
5698
Neerav Parikh3fe06f42016-02-17 16:12:15 -08005699 /* Wait for the PF's queues to be disabled */
5700 ret = i40e_pf_wait_queues_disabled(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005701 if (ret) {
5702 /* Schedule PF reset to recover */
5703 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5704 i40e_service_event_schedule(pf);
5705 } else {
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005706 i40e_pf_unquiesce_all_vsi(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005707 }
5708
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005709exit:
5710 return ret;
5711}
5712#endif /* CONFIG_I40E_DCB */
5713
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005714/**
Anjali Singhai Jain23326182013-11-26 10:49:22 +00005715 * i40e_do_reset_safe - Protected reset path for userland calls.
5716 * @pf: board private structure
5717 * @reset_flags: which reset is requested
5718 *
5719 **/
5720void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5721{
5722 rtnl_lock();
5723 i40e_do_reset(pf, reset_flags);
5724 rtnl_unlock();
5725}
5726
5727/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005728 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5729 * @pf: board private structure
5730 * @e: event info posted on ARQ
5731 *
5732 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5733 * and VF queues
5734 **/
5735static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5736 struct i40e_arq_event_info *e)
5737{
5738 struct i40e_aqc_lan_overflow *data =
5739 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5740 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5741 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5742 struct i40e_hw *hw = &pf->hw;
5743 struct i40e_vf *vf;
5744 u16 vf_id;
5745
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005746 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5747 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005748
5749 /* Queue belongs to VF, find the VF and issue VF reset */
5750 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5751 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5752 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5753 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5754 vf_id -= hw->func_caps.vf_base_id;
5755 vf = &pf->vf[vf_id];
5756 i40e_vc_notify_vf_reset(vf);
5757 /* Allow VF to process pending reset notification */
5758 msleep(20);
5759 i40e_reset_vf(vf, false);
5760 }
5761}
5762
5763/**
5764 * i40e_service_event_complete - Finish up the service event
5765 * @pf: board private structure
5766 **/
5767static void i40e_service_event_complete(struct i40e_pf *pf)
5768{
Shannon Nelsonb875f992015-10-21 19:47:03 -04005769 WARN_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005770
5771 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005772 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005773 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5774}
5775
5776/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005777 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5778 * @pf: board private structure
5779 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005780u32 i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005781{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005782 u32 val, fcnt_prog;
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005783
5784 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5785 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5786 return fcnt_prog;
5787}
5788
5789/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005790 * i40e_get_current_fd_count - Get total FD filters programmed for this PF
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005791 * @pf: board private structure
5792 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005793u32 i40e_get_current_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005794{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005795 u32 val, fcnt_prog;
5796
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005797 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5798 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5799 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5800 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5801 return fcnt_prog;
5802}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005803
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005804/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005805 * i40e_get_global_fd_count - Get total FD filters programmed on device
5806 * @pf: board private structure
5807 **/
5808u32 i40e_get_global_fd_count(struct i40e_pf *pf)
5809{
5810 u32 val, fcnt_prog;
5811
5812 val = rd32(&pf->hw, I40E_GLQF_FDCNT_0);
5813 fcnt_prog = (val & I40E_GLQF_FDCNT_0_GUARANT_CNT_MASK) +
5814 ((val & I40E_GLQF_FDCNT_0_BESTCNT_MASK) >>
5815 I40E_GLQF_FDCNT_0_BESTCNT_SHIFT);
5816 return fcnt_prog;
5817}
5818
5819/**
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005820 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5821 * @pf: board private structure
5822 **/
5823void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5824{
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005825 struct i40e_fdir_filter *filter;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005826 u32 fcnt_prog, fcnt_avail;
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005827 struct hlist_node *node;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005828
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005829 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5830 return;
5831
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005832 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5833 * to re-enable
5834 */
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005835 fcnt_prog = i40e_get_global_fd_count(pf);
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005836 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005837 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5838 (pf->fd_add_err == 0) ||
5839 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005840 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5841 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5842 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005843 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5844 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 +00005845 }
5846 }
5847 /* Wait for some more space to be available to turn on ATR */
5848 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5849 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5850 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5851 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005852 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5853 dev_info(&pf->pdev->dev, "ATR is being enabled since we have space in the table now\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005854 }
5855 }
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005856
5857 /* if hw had a problem adding a filter, delete it */
5858 if (pf->fd_inv > 0) {
5859 hlist_for_each_entry_safe(filter, node,
5860 &pf->fdir_filter_list, fdir_node) {
5861 if (filter->fd_id == pf->fd_inv) {
5862 hlist_del(&filter->fdir_node);
5863 kfree(filter);
5864 pf->fdir_pf_active_filters--;
5865 }
5866 }
5867 }
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005868}
5869
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005870#define I40E_MIN_FD_FLUSH_INTERVAL 10
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005871#define I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE 30
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005872/**
5873 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5874 * @pf: board private structure
5875 **/
5876static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5877{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005878 unsigned long min_flush_time;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005879 int flush_wait_retry = 50;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005880 bool disable_atr = false;
5881 int fd_room;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005882 int reg;
5883
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005884 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5885 return;
5886
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005887 if (!time_after(jiffies, pf->fd_flush_timestamp +
5888 (I40E_MIN_FD_FLUSH_INTERVAL * HZ)))
5889 return;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005890
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005891 /* If the flush is happening too quick and we have mostly SB rules we
5892 * should not re-enable ATR for some time.
5893 */
5894 min_flush_time = pf->fd_flush_timestamp +
5895 (I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE * HZ);
5896 fd_room = pf->fdir_pf_filter_count - pf->fdir_pf_active_filters;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005897
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005898 if (!(time_after(jiffies, min_flush_time)) &&
5899 (fd_room < I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) {
5900 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5901 dev_info(&pf->pdev->dev, "ATR disabled, not enough FD filter space.\n");
5902 disable_atr = true;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005903 }
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005904
5905 pf->fd_flush_timestamp = jiffies;
5906 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5907 /* flush all filters */
5908 wr32(&pf->hw, I40E_PFQF_CTL_1,
5909 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5910 i40e_flush(&pf->hw);
5911 pf->fd_flush_cnt++;
5912 pf->fd_add_err = 0;
5913 do {
5914 /* Check FD flush status every 5-6msec */
5915 usleep_range(5000, 6000);
5916 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5917 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5918 break;
5919 } while (flush_wait_retry--);
5920 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5921 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5922 } else {
5923 /* replay sideband filters */
5924 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5925 if (!disable_atr)
5926 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5927 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5928 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5929 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5930 }
5931
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005932}
5933
5934/**
5935 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5936 * @pf: board private structure
5937 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005938u32 i40e_get_current_atr_cnt(struct i40e_pf *pf)
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005939{
5940 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5941}
5942
5943/* We can see up to 256 filter programming desc in transit if the filters are
5944 * being applied really fast; before we see the first
5945 * filter miss error on Rx queue 0. Accumulating enough error messages before
5946 * reacting will make sure we don't cause flush too often.
5947 */
5948#define I40E_MAX_FD_PROGRAM_ERROR 256
5949
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005950/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005951 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5952 * @pf: board private structure
5953 **/
5954static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5955{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005956
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005957 /* if interface is down do nothing */
5958 if (test_bit(__I40E_DOWN, &pf->state))
5959 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005960
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005961 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5962 return;
5963
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005964 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005965 i40e_fdir_flush_and_replay(pf);
5966
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005967 i40e_fdir_check_and_reenable(pf);
5968
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005969}
5970
5971/**
5972 * i40e_vsi_link_event - notify VSI of a link event
5973 * @vsi: vsi to be notified
5974 * @link_up: link up or down
5975 **/
5976static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5977{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005978 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005979 return;
5980
5981 switch (vsi->type) {
5982 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005983#ifdef I40E_FCOE
5984 case I40E_VSI_FCOE:
5985#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005986 if (!vsi->netdev || !vsi->netdev_registered)
5987 break;
5988
5989 if (link_up) {
5990 netif_carrier_on(vsi->netdev);
5991 netif_tx_wake_all_queues(vsi->netdev);
5992 } else {
5993 netif_carrier_off(vsi->netdev);
5994 netif_tx_stop_all_queues(vsi->netdev);
5995 }
5996 break;
5997
5998 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005999 case I40E_VSI_VMDQ2:
6000 case I40E_VSI_CTRL:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06006001 case I40E_VSI_IWARP:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006002 case I40E_VSI_MIRROR:
6003 default:
6004 /* there is no notification for other VSIs */
6005 break;
6006 }
6007}
6008
6009/**
6010 * i40e_veb_link_event - notify elements on the veb of a link event
6011 * @veb: veb to be notified
6012 * @link_up: link up or down
6013 **/
6014static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
6015{
6016 struct i40e_pf *pf;
6017 int i;
6018
6019 if (!veb || !veb->pf)
6020 return;
6021 pf = veb->pf;
6022
6023 /* depth first... */
6024 for (i = 0; i < I40E_MAX_VEB; i++)
6025 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
6026 i40e_veb_link_event(pf->veb[i], link_up);
6027
6028 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00006029 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006030 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
6031 i40e_vsi_link_event(pf->vsi[i], link_up);
6032}
6033
6034/**
6035 * i40e_link_event - Update netif_carrier status
6036 * @pf: board private structure
6037 **/
6038static void i40e_link_event(struct i40e_pf *pf)
6039{
Mitch Williams320684c2014-10-17 03:14:43 +00006040 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006041 u8 new_link_speed, old_link_speed;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006042 i40e_status status;
6043 bool new_link, old_link;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006044
Catherine Sullivan1f9610e2015-10-21 19:47:09 -04006045 /* save off old link status information */
6046 pf->hw.phy.link_info_old = pf->hw.phy.link_info;
6047
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006048 /* set this to force the get_link_status call to refresh state */
6049 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006050
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006051 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006052
6053 status = i40e_get_link_status(&pf->hw, &new_link);
6054 if (status) {
6055 dev_dbg(&pf->pdev->dev, "couldn't get link state, status: %d\n",
6056 status);
6057 return;
6058 }
6059
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006060 old_link_speed = pf->hw.phy.link_info_old.link_speed;
6061 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006062
6063 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006064 new_link_speed == old_link_speed &&
Mitch Williams320684c2014-10-17 03:14:43 +00006065 (test_bit(__I40E_DOWN, &vsi->state) ||
6066 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006067 return;
Mitch Williams320684c2014-10-17 03:14:43 +00006068
6069 if (!test_bit(__I40E_DOWN, &vsi->state))
6070 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006071
6072 /* Notify the base of the switch tree connected to
6073 * the link. Floating VEBs are not notified.
6074 */
6075 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
6076 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
6077 else
Mitch Williams320684c2014-10-17 03:14:43 +00006078 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006079
6080 if (pf->vf)
6081 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006082
6083 if (pf->flags & I40E_FLAG_PTP)
6084 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006085}
6086
6087/**
Shannon Nelson21536712014-10-25 10:35:25 +00006088 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006089 * @pf: board private structure
6090 **/
6091static void i40e_watchdog_subtask(struct i40e_pf *pf)
6092{
6093 int i;
6094
6095 /* if interface is down do nothing */
6096 if (test_bit(__I40E_DOWN, &pf->state) ||
6097 test_bit(__I40E_CONFIG_BUSY, &pf->state))
6098 return;
6099
Shannon Nelson21536712014-10-25 10:35:25 +00006100 /* make sure we don't do these things too often */
6101 if (time_before(jiffies, (pf->service_timer_previous +
6102 pf->service_timer_period)))
6103 return;
6104 pf->service_timer_previous = jiffies;
6105
Shannon Nelson9ac77262015-08-27 11:42:40 -04006106 if (pf->flags & I40E_FLAG_LINK_POLLING_ENABLED)
6107 i40e_link_event(pf);
Shannon Nelson21536712014-10-25 10:35:25 +00006108
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006109 /* Update the stats for active netdevs so the network stack
6110 * can look at updated numbers whenever it cares to
6111 */
Mitch Williams505682c2014-05-20 08:01:37 +00006112 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006113 if (pf->vsi[i] && pf->vsi[i]->netdev)
6114 i40e_update_stats(pf->vsi[i]);
6115
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04006116 if (pf->flags & I40E_FLAG_VEB_STATS_ENABLED) {
6117 /* Update the stats for the active switching components */
6118 for (i = 0; i < I40E_MAX_VEB; i++)
6119 if (pf->veb[i])
6120 i40e_update_veb_stats(pf->veb[i]);
6121 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006122
6123 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006124}
6125
6126/**
6127 * i40e_reset_subtask - Set up for resetting the device and driver
6128 * @pf: board private structure
6129 **/
6130static void i40e_reset_subtask(struct i40e_pf *pf)
6131{
6132 u32 reset_flags = 0;
6133
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006134 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006135 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006136 reset_flags |= BIT(__I40E_REINIT_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006137 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
6138 }
6139 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006140 reset_flags |= BIT(__I40E_PF_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006141 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6142 }
6143 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006144 reset_flags |= BIT(__I40E_CORE_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006145 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
6146 }
6147 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006148 reset_flags |= BIT(__I40E_GLOBAL_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006149 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
6150 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006151 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -08006152 reset_flags |= BIT(__I40E_DOWN_REQUESTED);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006153 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
6154 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006155
6156 /* If there's a recovery already waiting, it takes
6157 * precedence before starting a new reset sequence.
6158 */
6159 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
6160 i40e_handle_reset_warning(pf);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006161 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006162 }
6163
6164 /* If we're already down or resetting, just bail */
6165 if (reset_flags &&
6166 !test_bit(__I40E_DOWN, &pf->state) &&
6167 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
6168 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain23326182013-11-26 10:49:22 +00006169
6170unlock:
6171 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006172}
6173
6174/**
6175 * i40e_handle_link_event - Handle link event
6176 * @pf: board private structure
6177 * @e: event info posted on ARQ
6178 **/
6179static void i40e_handle_link_event(struct i40e_pf *pf,
6180 struct i40e_arq_event_info *e)
6181{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006182 struct i40e_aqc_get_link_status *status =
6183 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006184
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006185 /* Do a new status request to re-enable LSE reporting
6186 * and load new status information into the hw struct
6187 * This completely ignores any state information
6188 * in the ARQ event info, instead choosing to always
6189 * issue the AQ update link status command.
6190 */
6191 i40e_link_event(pf);
6192
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00006193 /* check for unqualified module, if link is down */
6194 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
6195 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
6196 (!(status->link_info & I40E_AQ_LINK_UP)))
6197 dev_err(&pf->pdev->dev,
6198 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006199}
6200
6201/**
6202 * i40e_clean_adminq_subtask - Clean the AdminQ rings
6203 * @pf: board private structure
6204 **/
6205static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
6206{
6207 struct i40e_arq_event_info event;
6208 struct i40e_hw *hw = &pf->hw;
6209 u16 pending, i = 0;
6210 i40e_status ret;
6211 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00006212 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006213 u32 val;
6214
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006215 /* Do not run clean AQ when PF reset fails */
6216 if (test_bit(__I40E_RESET_FAILED, &pf->state))
6217 return;
6218
Shannon Nelson86df2422014-05-20 08:01:35 +00006219 /* check for error indications */
6220 val = rd32(&pf->hw, pf->hw.aq.arq.len);
6221 oldval = val;
6222 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006223 if (hw->debug_mask & I40E_DEBUG_AQ)
6224 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006225 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
6226 }
6227 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006228 if (hw->debug_mask & I40E_DEBUG_AQ)
6229 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006230 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
Mitch Williams1d0a4ad2015-12-23 12:05:48 -08006231 pf->arq_overflows++;
Shannon Nelson86df2422014-05-20 08:01:35 +00006232 }
6233 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006234 if (hw->debug_mask & I40E_DEBUG_AQ)
6235 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006236 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
6237 }
6238 if (oldval != val)
6239 wr32(&pf->hw, pf->hw.aq.arq.len, val);
6240
6241 val = rd32(&pf->hw, pf->hw.aq.asq.len);
6242 oldval = val;
6243 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006244 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6245 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006246 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
6247 }
6248 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006249 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6250 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006251 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
6252 }
6253 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
Mitch Williams75eb73c2015-11-19 11:34:21 -08006254 if (pf->hw.debug_mask & I40E_DEBUG_AQ)
6255 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
Shannon Nelson86df2422014-05-20 08:01:35 +00006256 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
6257 }
6258 if (oldval != val)
6259 wr32(&pf->hw, pf->hw.aq.asq.len, val);
6260
Mitch Williams1001dc32014-11-11 20:02:19 +00006261 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
6262 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006263 if (!event.msg_buf)
6264 return;
6265
6266 do {
6267 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00006268 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006269 break;
Mitch Williams56497972014-06-04 08:45:18 +00006270 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006271 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
6272 break;
6273 }
6274
6275 opcode = le16_to_cpu(event.desc.opcode);
6276 switch (opcode) {
6277
6278 case i40e_aqc_opc_get_link_status:
6279 i40e_handle_link_event(pf, &event);
6280 break;
6281 case i40e_aqc_opc_send_msg_to_pf:
6282 ret = i40e_vc_process_vf_msg(pf,
6283 le16_to_cpu(event.desc.retval),
6284 le32_to_cpu(event.desc.cookie_high),
6285 le32_to_cpu(event.desc.cookie_low),
6286 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00006287 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006288 break;
6289 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006290 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006291#ifdef CONFIG_I40E_DCB
6292 rtnl_lock();
6293 ret = i40e_handle_lldp_event(pf, &event);
6294 rtnl_unlock();
6295#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006296 break;
6297 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006298 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006299 i40e_handle_lan_overflow_event(pf, &event);
6300 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00006301 case i40e_aqc_opc_send_msg_to_peer:
6302 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
6303 break;
Shannon Nelson91a0f932015-03-19 14:32:01 -07006304 case i40e_aqc_opc_nvm_erase:
6305 case i40e_aqc_opc_nvm_update:
Michal Kosiarz00ada502015-11-19 11:34:20 -08006306 case i40e_aqc_opc_oem_post_update:
Shannon Nelson6e93d0c2016-01-15 14:33:18 -08006307 i40e_debug(&pf->hw, I40E_DEBUG_NVM,
6308 "ARQ NVM operation 0x%04x completed\n",
6309 opcode);
Shannon Nelson91a0f932015-03-19 14:32:01 -07006310 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006311 default:
6312 dev_info(&pf->pdev->dev,
Shannon Nelson56e5ca62016-03-10 14:59:48 -08006313 "ARQ: Unknown event 0x%04x ignored\n",
Shannon Nelson0467bc92013-12-18 13:45:58 +00006314 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006315 break;
6316 }
6317 } while (pending && (i++ < pf->adminq_work_limit));
6318
6319 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
6320 /* re-enable Admin queue interrupt cause */
6321 val = rd32(hw, I40E_PFINT_ICR0_ENA);
6322 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
6323 wr32(hw, I40E_PFINT_ICR0_ENA, val);
6324 i40e_flush(hw);
6325
6326 kfree(event.msg_buf);
6327}
6328
6329/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006330 * i40e_verify_eeprom - make sure eeprom is good to use
6331 * @pf: board private structure
6332 **/
6333static void i40e_verify_eeprom(struct i40e_pf *pf)
6334{
6335 int err;
6336
6337 err = i40e_diag_eeprom_test(&pf->hw);
6338 if (err) {
6339 /* retry in case of garbage read */
6340 err = i40e_diag_eeprom_test(&pf->hw);
6341 if (err) {
6342 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
6343 err);
6344 set_bit(__I40E_BAD_EEPROM, &pf->state);
6345 }
6346 }
6347
6348 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
6349 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
6350 clear_bit(__I40E_BAD_EEPROM, &pf->state);
6351 }
6352}
6353
6354/**
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006355 * i40e_enable_pf_switch_lb
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006356 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006357 *
6358 * enable switch loop back or die - no point in a return value
6359 **/
6360static void i40e_enable_pf_switch_lb(struct i40e_pf *pf)
6361{
6362 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6363 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006364 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006365
6366 ctxt.seid = pf->main_vsi_seid;
6367 ctxt.pf_num = pf->hw.pf_id;
6368 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006369 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6370 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006371 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006372 "couldn't get PF vsi config, err %s aq_err %s\n",
6373 i40e_stat_str(&pf->hw, ret),
6374 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006375 return;
6376 }
6377 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6378 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6379 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6380
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006381 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6382 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006383 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006384 "update vsi switch failed, err %s aq_err %s\n",
6385 i40e_stat_str(&pf->hw, ret),
6386 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006387 }
6388}
6389
6390/**
6391 * i40e_disable_pf_switch_lb
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006392 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006393 *
6394 * disable switch loop back or die - no point in a return value
6395 **/
6396static void i40e_disable_pf_switch_lb(struct i40e_pf *pf)
6397{
6398 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6399 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006400 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006401
6402 ctxt.seid = pf->main_vsi_seid;
6403 ctxt.pf_num = pf->hw.pf_id;
6404 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006405 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6406 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006407 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006408 "couldn't get PF vsi config, err %s aq_err %s\n",
6409 i40e_stat_str(&pf->hw, ret),
6410 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006411 return;
6412 }
6413 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6414 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6415 ctxt.info.switch_id &= ~cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6416
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006417 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6418 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006419 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006420 "update vsi switch failed, err %s aq_err %s\n",
6421 i40e_stat_str(&pf->hw, ret),
6422 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006423 }
6424}
6425
6426/**
Neerav Parikh51616012015-02-06 08:52:14 +00006427 * i40e_config_bridge_mode - Configure the HW bridge mode
6428 * @veb: pointer to the bridge instance
6429 *
6430 * Configure the loop back mode for the LAN VSI that is downlink to the
6431 * specified HW bridge instance. It is expected this function is called
6432 * when a new HW bridge is instantiated.
6433 **/
6434static void i40e_config_bridge_mode(struct i40e_veb *veb)
6435{
6436 struct i40e_pf *pf = veb->pf;
6437
Shannon Nelson6dec1012015-09-28 14:12:30 -04006438 if (pf->hw.debug_mask & I40E_DEBUG_LAN)
6439 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
6440 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
Neerav Parikh51616012015-02-06 08:52:14 +00006441 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
6442 i40e_disable_pf_switch_lb(pf);
6443 else
6444 i40e_enable_pf_switch_lb(pf);
6445}
6446
6447/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006448 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
6449 * @veb: pointer to the VEB instance
6450 *
6451 * This is a recursive function that first builds the attached VSIs then
6452 * recurses in to build the next layer of VEB. We track the connections
6453 * through our own index numbers because the seid's from the HW could
6454 * change across the reset.
6455 **/
6456static int i40e_reconstitute_veb(struct i40e_veb *veb)
6457{
6458 struct i40e_vsi *ctl_vsi = NULL;
6459 struct i40e_pf *pf = veb->pf;
6460 int v, veb_idx;
6461 int ret;
6462
6463 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006464 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006465 if (pf->vsi[v] &&
6466 pf->vsi[v]->veb_idx == veb->idx &&
6467 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
6468 ctl_vsi = pf->vsi[v];
6469 break;
6470 }
6471 }
6472 if (!ctl_vsi) {
6473 dev_info(&pf->pdev->dev,
6474 "missing owner VSI for veb_idx %d\n", veb->idx);
6475 ret = -ENOENT;
6476 goto end_reconstitute;
6477 }
6478 if (ctl_vsi != pf->vsi[pf->lan_vsi])
6479 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
6480 ret = i40e_add_vsi(ctl_vsi);
6481 if (ret) {
6482 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006483 "rebuild of veb_idx %d owner VSI failed: %d\n",
6484 veb->idx, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006485 goto end_reconstitute;
6486 }
6487 i40e_vsi_reset_stats(ctl_vsi);
6488
6489 /* create the VEB in the switch and move the VSI onto the VEB */
6490 ret = i40e_add_veb(veb, ctl_vsi);
6491 if (ret)
6492 goto end_reconstitute;
6493
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07006494 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
6495 veb->bridge_mode = BRIDGE_MODE_VEB;
6496 else
6497 veb->bridge_mode = BRIDGE_MODE_VEPA;
Neerav Parikh51616012015-02-06 08:52:14 +00006498 i40e_config_bridge_mode(veb);
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00006499
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006500 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006501 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006502 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
6503 continue;
6504
6505 if (pf->vsi[v]->veb_idx == veb->idx) {
6506 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04006507
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006508 vsi->uplink_seid = veb->seid;
6509 ret = i40e_add_vsi(vsi);
6510 if (ret) {
6511 dev_info(&pf->pdev->dev,
6512 "rebuild of vsi_idx %d failed: %d\n",
6513 v, ret);
6514 goto end_reconstitute;
6515 }
6516 i40e_vsi_reset_stats(vsi);
6517 }
6518 }
6519
6520 /* create any VEBs attached to this VEB - RECURSION */
6521 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
6522 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
6523 pf->veb[veb_idx]->uplink_seid = veb->seid;
6524 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
6525 if (ret)
6526 break;
6527 }
6528 }
6529
6530end_reconstitute:
6531 return ret;
6532}
6533
6534/**
6535 * i40e_get_capabilities - get info about the HW
6536 * @pf: the PF struct
6537 **/
6538static int i40e_get_capabilities(struct i40e_pf *pf)
6539{
6540 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
6541 u16 data_size;
6542 int buf_len;
6543 int err;
6544
6545 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6546 do {
6547 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6548 if (!cap_buf)
6549 return -ENOMEM;
6550
6551 /* this loads the data into the hw struct for us */
6552 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6553 &data_size,
6554 i40e_aqc_opc_list_func_capabilities,
6555 NULL);
6556 /* data loaded, buffer no longer needed */
6557 kfree(cap_buf);
6558
6559 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6560 /* retry with a larger buffer */
6561 buf_len = data_size;
6562 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6563 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006564 "capability discovery failed, err %s aq_err %s\n",
6565 i40e_stat_str(&pf->hw, err),
6566 i40e_aq_str(&pf->hw,
6567 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006568 return -ENODEV;
6569 }
6570 } while (err);
6571
6572 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6573 dev_info(&pf->pdev->dev,
6574 "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",
6575 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6576 pf->hw.func_caps.num_msix_vectors,
6577 pf->hw.func_caps.num_msix_vectors_vf,
6578 pf->hw.func_caps.fd_filters_guaranteed,
6579 pf->hw.func_caps.fd_filters_best_effort,
6580 pf->hw.func_caps.num_tx_qp,
6581 pf->hw.func_caps.num_vsis);
6582
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006583#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6584 + pf->hw.func_caps.num_vfs)
6585 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6586 dev_info(&pf->pdev->dev,
6587 "got num_vsis %d, setting num_vsis to %d\n",
6588 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6589 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6590 }
6591
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006592 return 0;
6593}
6594
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006595static int i40e_vsi_clear(struct i40e_vsi *vsi);
6596
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006597/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006598 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006599 * @pf: board private structure
6600 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006601static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006602{
6603 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006604 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006605
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006606 /* quick workaround for an NVM issue that leaves a critical register
6607 * uninitialized
6608 */
6609 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6610 static const u32 hkey[] = {
6611 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6612 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6613 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6614 0x95b3a76d};
6615
6616 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6617 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6618 }
6619
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006620 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006621 return;
6622
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006623 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006624 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006625 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006626 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006627 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006628 break;
6629 }
6630 }
6631
6632 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006633 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006634 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6635 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006636 if (!vsi) {
6637 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006638 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6639 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006640 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006641 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006642
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006643 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006644}
6645
6646/**
6647 * i40e_fdir_teardown - release the Flow Director resources
6648 * @pf: board private structure
6649 **/
6650static void i40e_fdir_teardown(struct i40e_pf *pf)
6651{
6652 int i;
6653
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006654 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006655 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006656 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6657 i40e_vsi_release(pf->vsi[i]);
6658 break;
6659 }
6660 }
6661}
6662
6663/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006664 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006665 * @pf: board private structure
6666 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006667 * Close up the VFs and other things in prep for PF Reset.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006668 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006669static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006670{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006671 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006672 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006673 u32 v;
6674
6675 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6676 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006677 return;
Mitch Williamsd3ce57342016-03-10 14:59:46 -08006678 if (i40e_check_asq_alive(&pf->hw))
6679 i40e_vc_notify_reset(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006680
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006681 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006682
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006683 /* quiesce the VSIs and their queues that are not already DOWN */
6684 i40e_pf_quiesce_all_vsi(pf);
6685
Mitch Williams505682c2014-05-20 08:01:37 +00006686 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006687 if (pf->vsi[v])
6688 pf->vsi[v]->seid = 0;
6689 }
6690
6691 i40e_shutdown_adminq(&pf->hw);
6692
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006693 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006694 if (hw->hmc.hmc_obj) {
6695 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006696 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006697 dev_warn(&pf->pdev->dev,
6698 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006699 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006700}
6701
6702/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006703 * i40e_send_version - update firmware with driver version
6704 * @pf: PF struct
6705 */
6706static void i40e_send_version(struct i40e_pf *pf)
6707{
6708 struct i40e_driver_version dv;
6709
6710 dv.major_version = DRV_VERSION_MAJOR;
6711 dv.minor_version = DRV_VERSION_MINOR;
6712 dv.build_version = DRV_VERSION_BUILD;
6713 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006714 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006715 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6716}
6717
6718/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006719 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006720 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006721 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006722 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006723static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006724{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006725 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006726 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006727 i40e_status ret;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006728 u32 val;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006729 u32 v;
6730
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006731 /* Now we wait for GRST to settle out.
6732 * We don't have to delete the VEBs or VSIs from the hw switch
6733 * because the reset will make them disappear.
6734 */
6735 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006736 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006737 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006738 set_bit(__I40E_RESET_FAILED, &pf->state);
6739 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006740 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006741 pf->pfr_count++;
6742
6743 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006744 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006745 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006746
6747 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6748 ret = i40e_init_adminq(&pf->hw);
6749 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006750 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, err %s aq_err %s\n",
6751 i40e_stat_str(&pf->hw, ret),
6752 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006753 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006754 }
6755
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006756 /* re-verify the eeprom if we just had an EMP reset */
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00006757 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state))
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006758 i40e_verify_eeprom(pf);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006759
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006760 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006761 ret = i40e_get_capabilities(pf);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006762 if (ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006763 goto end_core_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006764
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006765 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6766 hw->func_caps.num_rx_qp,
6767 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6768 if (ret) {
6769 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6770 goto end_core_reset;
6771 }
6772 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6773 if (ret) {
6774 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6775 goto end_core_reset;
6776 }
6777
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006778#ifdef CONFIG_I40E_DCB
6779 ret = i40e_init_pf_dcb(pf);
6780 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00006781 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6782 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6783 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006784 }
6785#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006786#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04006787 i40e_init_pf_fcoe(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006788
Vasu Dev38e00432014-08-01 13:27:03 -07006789#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006790 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006791 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006792 if (ret)
6793 goto end_core_reset;
6794
Shannon Nelson2f0aff42016-01-04 10:33:08 -08006795 /* The driver only wants link up/down and module qualification
6796 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006797 */
6798 ret = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -08006799 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -07006800 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -08006801 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006802 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006803 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
6804 i40e_stat_str(&pf->hw, ret),
6805 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006806
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006807 /* make sure our flow control settings are restored */
6808 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6809 if (ret)
Neerav Parikh8279e492015-09-03 17:18:50 -04006810 dev_dbg(&pf->pdev->dev, "setting flow control: ret = %s last_status = %s\n",
6811 i40e_stat_str(&pf->hw, ret),
6812 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006813
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006814 /* Rebuild the VSIs and VEBs that existed before reset.
6815 * They are still in our local switch element arrays, so only
6816 * need to rebuild the switch model in the HW.
6817 *
6818 * If there were VEBs but the reconstitution failed, we'll try
6819 * try to recover minimal use by getting the basic PF VSI working.
6820 */
6821 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006822 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006823 /* find the one VEB connected to the MAC, and find orphans */
6824 for (v = 0; v < I40E_MAX_VEB; v++) {
6825 if (!pf->veb[v])
6826 continue;
6827
6828 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6829 pf->veb[v]->uplink_seid == 0) {
6830 ret = i40e_reconstitute_veb(pf->veb[v]);
6831
6832 if (!ret)
6833 continue;
6834
6835 /* If Main VEB failed, we're in deep doodoo,
6836 * so give up rebuilding the switch and set up
6837 * for minimal rebuild of PF VSI.
6838 * If orphan failed, we'll report the error
6839 * but try to keep going.
6840 */
6841 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6842 dev_info(&pf->pdev->dev,
6843 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6844 ret);
6845 pf->vsi[pf->lan_vsi]->uplink_seid
6846 = pf->mac_seid;
6847 break;
6848 } else if (pf->veb[v]->uplink_seid == 0) {
6849 dev_info(&pf->pdev->dev,
6850 "rebuild of orphan VEB failed: %d\n",
6851 ret);
6852 }
6853 }
6854 }
6855 }
6856
6857 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006858 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006859 /* no VEB, so rebuild only the Main VSI */
6860 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6861 if (ret) {
6862 dev_info(&pf->pdev->dev,
6863 "rebuild of Main VSI failed: %d\n", ret);
6864 goto end_core_reset;
6865 }
6866 }
6867
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006868 /* Reconfigure hardware for allowing smaller MSS in the case
6869 * of TSO, so that we avoid the MDD being fired and causing
6870 * a reset in the case of small MSS+TSO.
6871 */
6872#define I40E_REG_MSS 0x000E64DC
6873#define I40E_REG_MSS_MIN_MASK 0x3FF0000
6874#define I40E_64BYTE_MSS 0x400000
6875 val = rd32(hw, I40E_REG_MSS);
6876 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
6877 val &= ~I40E_REG_MSS_MIN_MASK;
6878 val |= I40E_64BYTE_MSS;
6879 wr32(hw, I40E_REG_MSS, val);
6880 }
6881
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08006882 if (pf->flags & I40E_FLAG_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00006883 msleep(75);
6884 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6885 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006886 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
6887 i40e_stat_str(&pf->hw, ret),
6888 i40e_aq_str(&pf->hw,
6889 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006890 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006891 /* reinit the misc interrupt */
6892 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6893 ret = i40e_setup_misc_vector(pf);
6894
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04006895 /* Add a filter to drop all Flow control frames from any VSI from being
6896 * transmitted. By doing so we stop a malicious VF from sending out
6897 * PAUSE or PFC frames and potentially controlling traffic for other
6898 * PF/VF VSIs.
6899 * The FW can still send Flow control frames if enabled.
6900 */
6901 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
6902 pf->main_vsi_seid);
6903
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006904 /* restart the VSIs that were rebuilt and running before the reset */
6905 i40e_pf_unquiesce_all_vsi(pf);
6906
Mitch Williams69f64b22014-02-13 03:48:46 -08006907 if (pf->num_alloc_vfs) {
6908 for (v = 0; v < pf->num_alloc_vfs; v++)
6909 i40e_reset_vf(&pf->vf[v], true);
6910 }
6911
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006912 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006913 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006914
6915end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006916 clear_bit(__I40E_RESET_FAILED, &pf->state);
6917clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006918 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6919}
6920
6921/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006922 * i40e_handle_reset_warning - prep for the PF to reset, reset and rebuild
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006923 * @pf: board private structure
6924 *
6925 * Close up the VFs and other things in prep for a Core Reset,
6926 * then get ready to rebuild the world.
6927 **/
6928static void i40e_handle_reset_warning(struct i40e_pf *pf)
6929{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006930 i40e_prep_for_reset(pf);
6931 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006932}
6933
6934/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006935 * i40e_handle_mdd_event
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006936 * @pf: pointer to the PF structure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006937 *
6938 * Called from the MDD irq handler to identify possibly malicious vfs
6939 **/
6940static void i40e_handle_mdd_event(struct i40e_pf *pf)
6941{
6942 struct i40e_hw *hw = &pf->hw;
6943 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006944 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006945 struct i40e_vf *vf;
6946 u32 reg;
6947 int i;
6948
6949 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6950 return;
6951
6952 /* find what triggered the MDD event */
6953 reg = rd32(hw, I40E_GL_MDET_TX);
6954 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006955 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6956 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006957 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006958 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006959 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006960 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006961 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6962 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6963 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006964 if (netif_msg_tx_err(pf))
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00006965 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 +00006966 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006967 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6968 mdd_detected = true;
6969 }
6970 reg = rd32(hw, I40E_GL_MDET_RX);
6971 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006972 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6973 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006974 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006975 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006976 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6977 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6978 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006979 if (netif_msg_rx_err(pf))
6980 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6981 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006982 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6983 mdd_detected = true;
6984 }
6985
Neerav Parikhdf430b12014-06-04 01:23:15 +00006986 if (mdd_detected) {
6987 reg = rd32(hw, I40E_PF_MDET_TX);
6988 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6989 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006990 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006991 pf_mdd_detected = true;
6992 }
6993 reg = rd32(hw, I40E_PF_MDET_RX);
6994 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6995 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006996 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006997 pf_mdd_detected = true;
6998 }
6999 /* Queue belongs to the PF, initiate a reset */
7000 if (pf_mdd_detected) {
7001 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
7002 i40e_service_event_schedule(pf);
7003 }
7004 }
7005
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007006 /* see if one of the VFs needs its hand slapped */
7007 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
7008 vf = &(pf->vf[i]);
7009 reg = rd32(hw, I40E_VP_MDET_TX(i));
7010 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
7011 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
7012 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007013 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
7014 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007015 }
7016
7017 reg = rd32(hw, I40E_VP_MDET_RX(i));
7018 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
7019 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
7020 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00007021 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
7022 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007023 }
7024
7025 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
7026 dev_info(&pf->pdev->dev,
7027 "Too many MDD events on VF %d, disabled\n", i);
7028 dev_info(&pf->pdev->dev,
7029 "Use PF Control I/F to re-enable the VF\n");
7030 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
7031 }
7032 }
7033
7034 /* re-enable mdd interrupt cause */
7035 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
7036 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
7037 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
7038 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
7039 i40e_flush(hw);
7040}
7041
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007042/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08007043 * i40e_sync_udp_filters_subtask - Sync the VSI filter list with HW
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007044 * @pf: board private structure
7045 **/
Singhai, Anjali6a899022015-12-14 12:21:18 -08007046static void i40e_sync_udp_filters_subtask(struct i40e_pf *pf)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007047{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007048 struct i40e_hw *hw = &pf->hw;
7049 i40e_status ret;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007050 __be16 port;
7051 int i;
7052
Singhai, Anjali6a899022015-12-14 12:21:18 -08007053 if (!(pf->flags & I40E_FLAG_UDP_FILTER_SYNC))
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007054 return;
7055
Singhai, Anjali6a899022015-12-14 12:21:18 -08007056 pf->flags &= ~I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007057
7058 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Singhai, Anjali6a899022015-12-14 12:21:18 -08007059 if (pf->pending_udp_bitmap & BIT_ULL(i)) {
7060 pf->pending_udp_bitmap &= ~BIT_ULL(i);
7061 port = pf->udp_ports[i].index;
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007062 if (port)
7063 ret = i40e_aq_add_udp_tunnel(hw, ntohs(port),
Singhai, Anjali6a899022015-12-14 12:21:18 -08007064 pf->udp_ports[i].type,
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007065 NULL, NULL);
7066 else
7067 ret = i40e_aq_del_udp_tunnel(hw, i, NULL);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007068
7069 if (ret) {
Carolyn Wyborny730a8f82016-02-17 16:12:16 -08007070 dev_dbg(&pf->pdev->dev,
7071 "%s %s port %d, index %d failed, err %s aq_err %s\n",
7072 pf->udp_ports[i].type ? "vxlan" : "geneve",
7073 port ? "add" : "delete",
7074 ntohs(port), i,
7075 i40e_stat_str(&pf->hw, ret),
7076 i40e_aq_str(&pf->hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007077 pf->hw.aq.asq_last_status));
Singhai, Anjali6a899022015-12-14 12:21:18 -08007078 pf->udp_ports[i].index = 0;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007079 }
7080 }
7081 }
7082}
7083
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007084/**
7085 * i40e_service_task - Run the driver's async subtasks
7086 * @work: pointer to work_struct containing our data
7087 **/
7088static void i40e_service_task(struct work_struct *work)
7089{
7090 struct i40e_pf *pf = container_of(work,
7091 struct i40e_pf,
7092 service_task);
7093 unsigned long start_time = jiffies;
7094
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007095 /* don't bother with service tasks if a reset is in progress */
7096 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7097 i40e_service_event_complete(pf);
7098 return;
7099 }
7100
Kiran Patilb03a8c12015-09-24 18:13:15 -04007101 i40e_detect_recover_hung(pf);
Jesse Brandeburg2818ccd2016-01-13 16:51:38 -08007102 i40e_sync_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007103 i40e_reset_subtask(pf);
7104 i40e_handle_mdd_event(pf);
7105 i40e_vc_process_vflr_event(pf);
7106 i40e_watchdog_subtask(pf);
7107 i40e_fdir_reinit_subtask(pf);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007108 i40e_client_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007109 i40e_sync_filters_subtask(pf);
Singhai, Anjali6a899022015-12-14 12:21:18 -08007110 i40e_sync_udp_filters_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007111 i40e_clean_adminq_subtask(pf);
7112
7113 i40e_service_event_complete(pf);
7114
7115 /* If the tasks have taken longer than one timer cycle or there
7116 * is more work to be done, reschedule the service task now
7117 * rather than wait for the timer to tick again.
7118 */
7119 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
7120 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
7121 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
7122 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
7123 i40e_service_event_schedule(pf);
7124}
7125
7126/**
7127 * i40e_service_timer - timer callback
7128 * @data: pointer to PF struct
7129 **/
7130static void i40e_service_timer(unsigned long data)
7131{
7132 struct i40e_pf *pf = (struct i40e_pf *)data;
7133
7134 mod_timer(&pf->service_timer,
7135 round_jiffies(jiffies + pf->service_timer_period));
7136 i40e_service_event_schedule(pf);
7137}
7138
7139/**
7140 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
7141 * @vsi: the VSI being configured
7142 **/
7143static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
7144{
7145 struct i40e_pf *pf = vsi->back;
7146
7147 switch (vsi->type) {
7148 case I40E_VSI_MAIN:
7149 vsi->alloc_queue_pairs = pf->num_lan_qps;
7150 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7151 I40E_REQ_DESCRIPTOR_MULTIPLE);
7152 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7153 vsi->num_q_vectors = pf->num_lan_msix;
7154 else
7155 vsi->num_q_vectors = 1;
7156
7157 break;
7158
7159 case I40E_VSI_FDIR:
7160 vsi->alloc_queue_pairs = 1;
7161 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
7162 I40E_REQ_DESCRIPTOR_MULTIPLE);
7163 vsi->num_q_vectors = 1;
7164 break;
7165
7166 case I40E_VSI_VMDQ2:
7167 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
7168 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7169 I40E_REQ_DESCRIPTOR_MULTIPLE);
7170 vsi->num_q_vectors = pf->num_vmdq_msix;
7171 break;
7172
7173 case I40E_VSI_SRIOV:
7174 vsi->alloc_queue_pairs = pf->num_vf_qps;
7175 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7176 I40E_REQ_DESCRIPTOR_MULTIPLE);
7177 break;
7178
Vasu Dev38e00432014-08-01 13:27:03 -07007179#ifdef I40E_FCOE
7180 case I40E_VSI_FCOE:
7181 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
7182 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7183 I40E_REQ_DESCRIPTOR_MULTIPLE);
7184 vsi->num_q_vectors = pf->num_fcoe_msix;
7185 break;
7186
7187#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007188 default:
7189 WARN_ON(1);
7190 return -ENODATA;
7191 }
7192
7193 return 0;
7194}
7195
7196/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007197 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
7198 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007199 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007200 *
7201 * On error: returns error code (negative)
7202 * On success: returns 0
7203 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007204static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007205{
7206 int size;
7207 int ret = 0;
7208
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007209 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007210 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
7211 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
7212 if (!vsi->tx_rings)
7213 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007214 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
7215
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007216 if (alloc_qvectors) {
7217 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00007218 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007219 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
7220 if (!vsi->q_vectors) {
7221 ret = -ENOMEM;
7222 goto err_vectors;
7223 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007224 }
7225 return ret;
7226
7227err_vectors:
7228 kfree(vsi->tx_rings);
7229 return ret;
7230}
7231
7232/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007233 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
7234 * @pf: board private structure
7235 * @type: type of VSI
7236 *
7237 * On error: returns error code (negative)
7238 * On success: returns vsi index in PF (positive)
7239 **/
7240static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
7241{
7242 int ret = -ENODEV;
7243 struct i40e_vsi *vsi;
7244 int vsi_idx;
7245 int i;
7246
7247 /* Need to protect the allocation of the VSIs at the PF level */
7248 mutex_lock(&pf->switch_mutex);
7249
7250 /* VSI list may be fragmented if VSI creation/destruction has
7251 * been happening. We can afford to do a quick scan to look
7252 * for any free VSIs in the list.
7253 *
7254 * find next empty vsi slot, looping back around if necessary
7255 */
7256 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00007257 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007258 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00007259 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007260 i = 0;
7261 while (i < pf->next_vsi && pf->vsi[i])
7262 i++;
7263 }
7264
Mitch Williams505682c2014-05-20 08:01:37 +00007265 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007266 vsi_idx = i; /* Found one! */
7267 } else {
7268 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00007269 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007270 }
7271 pf->next_vsi = ++i;
7272
7273 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
7274 if (!vsi) {
7275 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00007276 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007277 }
7278 vsi->type = type;
7279 vsi->back = pf;
7280 set_bit(__I40E_DOWN, &vsi->state);
7281 vsi->flags = 0;
7282 vsi->idx = vsi_idx;
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04007283 vsi->int_rate_limit = 0;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00007284 vsi->rss_table_size = (vsi->type == I40E_VSI_MAIN) ?
7285 pf->rss_table_size : 64;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007286 vsi->netdev_registered = false;
7287 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
7288 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00007289 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007290
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007291 ret = i40e_set_num_rings_in_vsi(vsi);
7292 if (ret)
7293 goto err_rings;
7294
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007295 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007296 if (ret)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007297 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00007298
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007299 /* Setup default MSIX irq handler for VSI */
7300 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
7301
Kiran Patil21659032015-09-30 14:09:03 -04007302 /* Initialize VSI lock */
7303 spin_lock_init(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007304 pf->vsi[vsi_idx] = vsi;
7305 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00007306 goto unlock_pf;
7307
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007308err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00007309 pf->next_vsi = i - 1;
7310 kfree(vsi);
7311unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007312 mutex_unlock(&pf->switch_mutex);
7313 return ret;
7314}
7315
7316/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007317 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
7318 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007319 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007320 *
7321 * On error: returns error code (negative)
7322 * On success: returns 0
7323 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007324static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007325{
7326 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007327 if (free_qvectors) {
7328 kfree(vsi->q_vectors);
7329 vsi->q_vectors = NULL;
7330 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007331 kfree(vsi->tx_rings);
7332 vsi->tx_rings = NULL;
7333 vsi->rx_rings = NULL;
7334}
7335
7336/**
Helin Zhang28c58692015-10-26 19:44:27 -04007337 * i40e_clear_rss_config_user - clear the user configured RSS hash keys
7338 * and lookup table
7339 * @vsi: Pointer to VSI structure
7340 */
7341static void i40e_clear_rss_config_user(struct i40e_vsi *vsi)
7342{
7343 if (!vsi)
7344 return;
7345
7346 kfree(vsi->rss_hkey_user);
7347 vsi->rss_hkey_user = NULL;
7348
7349 kfree(vsi->rss_lut_user);
7350 vsi->rss_lut_user = NULL;
7351}
7352
7353/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007354 * i40e_vsi_clear - Deallocate the VSI provided
7355 * @vsi: the VSI being un-configured
7356 **/
7357static int i40e_vsi_clear(struct i40e_vsi *vsi)
7358{
7359 struct i40e_pf *pf;
7360
7361 if (!vsi)
7362 return 0;
7363
7364 if (!vsi->back)
7365 goto free_vsi;
7366 pf = vsi->back;
7367
7368 mutex_lock(&pf->switch_mutex);
7369 if (!pf->vsi[vsi->idx]) {
7370 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
7371 vsi->idx, vsi->idx, vsi, vsi->type);
7372 goto unlock_vsi;
7373 }
7374
7375 if (pf->vsi[vsi->idx] != vsi) {
7376 dev_err(&pf->pdev->dev,
7377 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
7378 pf->vsi[vsi->idx]->idx,
7379 pf->vsi[vsi->idx],
7380 pf->vsi[vsi->idx]->type,
7381 vsi->idx, vsi, vsi->type);
7382 goto unlock_vsi;
7383 }
7384
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00007385 /* updates the PF for this cleared vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007386 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7387 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
7388
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007389 i40e_vsi_free_arrays(vsi, true);
Helin Zhang28c58692015-10-26 19:44:27 -04007390 i40e_clear_rss_config_user(vsi);
Alexander Duyck493fb302013-09-28 07:01:44 +00007391
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007392 pf->vsi[vsi->idx] = NULL;
7393 if (vsi->idx < pf->next_vsi)
7394 pf->next_vsi = vsi->idx;
7395
7396unlock_vsi:
7397 mutex_unlock(&pf->switch_mutex);
7398free_vsi:
7399 kfree(vsi);
7400
7401 return 0;
7402}
7403
7404/**
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007405 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
7406 * @vsi: the VSI being cleaned
7407 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007408static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007409{
7410 int i;
7411
Greg Rose8e9dca52013-12-18 13:45:53 +00007412 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00007413 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00007414 kfree_rcu(vsi->tx_rings[i], rcu);
7415 vsi->tx_rings[i] = NULL;
7416 vsi->rx_rings[i] = NULL;
7417 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007418 }
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007419}
7420
7421/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007422 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
7423 * @vsi: the VSI being configured
7424 **/
7425static int i40e_alloc_rings(struct i40e_vsi *vsi)
7426{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00007427 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007428 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007429 int i;
7430
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007431 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00007432 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007433 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007434 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
7435 if (!tx_ring)
7436 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007437
7438 tx_ring->queue_index = i;
7439 tx_ring->reg_idx = vsi->base_queue + i;
7440 tx_ring->ring_active = false;
7441 tx_ring->vsi = vsi;
7442 tx_ring->netdev = vsi->netdev;
7443 tx_ring->dev = &pf->pdev->dev;
7444 tx_ring->count = vsi->num_desc;
7445 tx_ring->size = 0;
7446 tx_ring->dcb_tc = 0;
Anjali Singhai Jain8e0764b2015-06-05 12:20:30 -04007447 if (vsi->back->flags & I40E_FLAG_WB_ON_ITR_CAPABLE)
7448 tx_ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
Kan Lianga75e8002016-02-19 09:24:04 -05007449 tx_ring->tx_itr_setting = pf->tx_itr_default;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007450 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007451
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007452 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007453 rx_ring->queue_index = i;
7454 rx_ring->reg_idx = vsi->base_queue + i;
7455 rx_ring->ring_active = false;
7456 rx_ring->vsi = vsi;
7457 rx_ring->netdev = vsi->netdev;
7458 rx_ring->dev = &pf->pdev->dev;
7459 rx_ring->count = vsi->num_desc;
7460 rx_ring->size = 0;
7461 rx_ring->dcb_tc = 0;
Kan Lianga75e8002016-02-19 09:24:04 -05007462 rx_ring->rx_itr_setting = pf->rx_itr_default;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007463 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007464 }
7465
7466 return 0;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00007467
7468err_out:
7469 i40e_vsi_clear_rings(vsi);
7470 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007471}
7472
7473/**
7474 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
7475 * @pf: board private structure
7476 * @vectors: the number of MSI-X vectors to request
7477 *
7478 * Returns the number of vectors reserved, or error
7479 **/
7480static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
7481{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007482 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
7483 I40E_MIN_MSIX, vectors);
7484 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007485 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007486 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007487 vectors = 0;
7488 }
7489
7490 return vectors;
7491}
7492
7493/**
7494 * i40e_init_msix - Setup the MSIX capability
7495 * @pf: board private structure
7496 *
7497 * Work with the OS to set up the MSIX vectors needed.
7498 *
Shannon Nelson3b444392015-02-26 16:15:57 +00007499 * Returns the number of vectors reserved or negative on failure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007500 **/
7501static int i40e_init_msix(struct i40e_pf *pf)
7502{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007503 struct i40e_hw *hw = &pf->hw;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007504 int vectors_left;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007505 int v_budget, i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007506 int v_actual;
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007507 int iwarp_requested = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007508
7509 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
7510 return -ENODEV;
7511
7512 /* The number of vectors we'll request will be comprised of:
7513 * - Add 1 for "other" cause for Admin Queue events, etc.
7514 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007515 * - Queues being used for RSS.
7516 * We don't need as many as max_rss_size vectors.
7517 * use rss_size instead in the calculation since that
7518 * is governed by number of cpus in the system.
7519 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007520 * - The number of VMDq pairs
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007521 * - The CPU count within the NUMA node if iWARP is enabled
Vasu Dev38e00432014-08-01 13:27:03 -07007522#ifdef I40E_FCOE
7523 * - The number of FCOE qps.
7524#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007525 * Once we count this up, try the request.
7526 *
7527 * If we can't get what we want, we'll simplify to nearly nothing
7528 * and try again. If that still fails, we punt.
7529 */
Shannon Nelson1e200e42015-02-27 09:15:24 +00007530 vectors_left = hw->func_caps.num_msix_vectors;
7531 v_budget = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007532
Shannon Nelson1e200e42015-02-27 09:15:24 +00007533 /* reserve one vector for miscellaneous handler */
7534 if (vectors_left) {
7535 v_budget++;
7536 vectors_left--;
7537 }
7538
7539 /* reserve vectors for the main PF traffic queues */
7540 pf->num_lan_msix = min_t(int, num_online_cpus(), vectors_left);
7541 vectors_left -= pf->num_lan_msix;
7542 v_budget += pf->num_lan_msix;
7543
7544 /* reserve one vector for sideband flow director */
7545 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7546 if (vectors_left) {
7547 v_budget++;
7548 vectors_left--;
7549 } else {
7550 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
7551 }
7552 }
John W Linville83840e42015-01-14 03:06:28 +00007553
Vasu Dev38e00432014-08-01 13:27:03 -07007554#ifdef I40E_FCOE
Shannon Nelson1e200e42015-02-27 09:15:24 +00007555 /* can we reserve enough for FCoE? */
Vasu Dev38e00432014-08-01 13:27:03 -07007556 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
Shannon Nelson1e200e42015-02-27 09:15:24 +00007557 if (!vectors_left)
7558 pf->num_fcoe_msix = 0;
7559 else if (vectors_left >= pf->num_fcoe_qps)
7560 pf->num_fcoe_msix = pf->num_fcoe_qps;
7561 else
7562 pf->num_fcoe_msix = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07007563 v_budget += pf->num_fcoe_msix;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007564 vectors_left -= pf->num_fcoe_msix;
Vasu Dev38e00432014-08-01 13:27:03 -07007565 }
Shannon Nelson1e200e42015-02-27 09:15:24 +00007566
Vasu Dev38e00432014-08-01 13:27:03 -07007567#endif
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007568 /* can we reserve enough for iWARP? */
7569 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7570 if (!vectors_left)
7571 pf->num_iwarp_msix = 0;
7572 else if (vectors_left < pf->num_iwarp_msix)
7573 pf->num_iwarp_msix = 1;
7574 v_budget += pf->num_iwarp_msix;
7575 vectors_left -= pf->num_iwarp_msix;
7576 }
7577
Shannon Nelson1e200e42015-02-27 09:15:24 +00007578 /* any vectors left over go for VMDq support */
7579 if (pf->flags & I40E_FLAG_VMDQ_ENABLED) {
7580 int vmdq_vecs_wanted = pf->num_vmdq_vsis * pf->num_vmdq_qps;
7581 int vmdq_vecs = min_t(int, vectors_left, vmdq_vecs_wanted);
7582
7583 /* if we're short on vectors for what's desired, we limit
7584 * the queues per vmdq. If this is still more than are
7585 * available, the user will need to change the number of
7586 * queues/vectors used by the PF later with the ethtool
7587 * channels command
7588 */
7589 if (vmdq_vecs < vmdq_vecs_wanted)
7590 pf->num_vmdq_qps = 1;
7591 pf->num_vmdq_msix = pf->num_vmdq_qps;
7592
7593 v_budget += vmdq_vecs;
7594 vectors_left -= vmdq_vecs;
7595 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007596
7597 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
7598 GFP_KERNEL);
7599 if (!pf->msix_entries)
7600 return -ENOMEM;
7601
7602 for (i = 0; i < v_budget; i++)
7603 pf->msix_entries[i].entry = i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007604 v_actual = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007605
Shannon Nelson3b444392015-02-26 16:15:57 +00007606 if (v_actual != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007607 /* If we have limited resources, we will start with no vectors
7608 * for the special features and then allocate vectors to some
7609 * of these features based on the policy and at the end disable
7610 * the features that did not get any vectors.
7611 */
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007612 iwarp_requested = pf->num_iwarp_msix;
7613 pf->num_iwarp_msix = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07007614#ifdef I40E_FCOE
7615 pf->num_fcoe_qps = 0;
7616 pf->num_fcoe_msix = 0;
7617#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007618 pf->num_vmdq_msix = 0;
7619 }
7620
Shannon Nelson3b444392015-02-26 16:15:57 +00007621 if (v_actual < I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007622 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
7623 kfree(pf->msix_entries);
7624 pf->msix_entries = NULL;
7625 return -ENODEV;
7626
Shannon Nelson3b444392015-02-26 16:15:57 +00007627 } else if (v_actual == I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007628 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007629 pf->num_vmdq_vsis = 0;
7630 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007631 pf->num_lan_qps = 1;
7632 pf->num_lan_msix = 1;
7633
Shannon Nelson3b444392015-02-26 16:15:57 +00007634 } else if (v_actual != v_budget) {
7635 int vec;
7636
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007637 /* reserve the misc vector */
Shannon Nelson3b444392015-02-26 16:15:57 +00007638 vec = v_actual - 1;
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007639
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007640 /* Scale vector usage down */
7641 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007642 pf->num_vmdq_vsis = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007643 pf->num_vmdq_qps = 1;
7644 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007645
7646 /* partition out the remaining vectors */
7647 switch (vec) {
7648 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007649 pf->num_lan_msix = 1;
7650 break;
7651 case 3:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007652 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7653 pf->num_lan_msix = 1;
7654 pf->num_iwarp_msix = 1;
7655 } else {
7656 pf->num_lan_msix = 2;
7657 }
Vasu Dev38e00432014-08-01 13:27:03 -07007658#ifdef I40E_FCOE
7659 /* give one vector to FCoE */
7660 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7661 pf->num_lan_msix = 1;
7662 pf->num_fcoe_msix = 1;
7663 }
Vasu Dev38e00432014-08-01 13:27:03 -07007664#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007665 break;
7666 default:
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007667 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
7668 pf->num_iwarp_msix = min_t(int, (vec / 3),
7669 iwarp_requested);
7670 pf->num_vmdq_vsis = min_t(int, (vec / 3),
7671 I40E_DEFAULT_NUM_VMDQ_VSI);
7672 } else {
7673 pf->num_vmdq_vsis = min_t(int, (vec / 2),
7674 I40E_DEFAULT_NUM_VMDQ_VSI);
7675 }
7676 pf->num_lan_msix = min_t(int,
7677 (vec - (pf->num_iwarp_msix + pf->num_vmdq_vsis)),
7678 pf->num_lan_msix);
Vasu Dev38e00432014-08-01 13:27:03 -07007679#ifdef I40E_FCOE
7680 /* give one vector to FCoE */
7681 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7682 pf->num_fcoe_msix = 1;
7683 vec--;
7684 }
7685#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007686 break;
7687 }
7688 }
7689
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007690 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7691 (pf->num_vmdq_msix == 0)) {
7692 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7693 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7694 }
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007695
7696 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
7697 (pf->num_iwarp_msix == 0)) {
7698 dev_info(&pf->pdev->dev, "IWARP disabled, not enough MSI-X vectors\n");
7699 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
7700 }
Vasu Dev38e00432014-08-01 13:27:03 -07007701#ifdef I40E_FCOE
7702
7703 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7704 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7705 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7706 }
7707#endif
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
7715 *
7716 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7717 **/
Greg Rose90e04072014-03-06 08:59:57 +00007718static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00007719{
7720 struct i40e_q_vector *q_vector;
7721
7722 /* allocate q_vector */
7723 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7724 if (!q_vector)
7725 return -ENOMEM;
7726
7727 q_vector->vsi = vsi;
7728 q_vector->v_idx = v_idx;
7729 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
7730 if (vsi->netdev)
7731 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00007732 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007733
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007734 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7735 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7736
Alexander Duyck493fb302013-09-28 07:01:44 +00007737 /* tie q_vector and vsi together */
7738 vsi->q_vectors[v_idx] = q_vector;
7739
7740 return 0;
7741}
7742
7743/**
Greg Rose90e04072014-03-06 08:59:57 +00007744 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007745 * @vsi: the VSI being configured
7746 *
7747 * We allocate one q_vector per queue interrupt. If allocation fails we
7748 * return -ENOMEM.
7749 **/
Greg Rose90e04072014-03-06 08:59:57 +00007750static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007751{
7752 struct i40e_pf *pf = vsi->back;
7753 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00007754 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007755
7756 /* if not MSIX, give the one vector only to the LAN VSI */
7757 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7758 num_q_vectors = vsi->num_q_vectors;
7759 else if (vsi == pf->vsi[pf->lan_vsi])
7760 num_q_vectors = 1;
7761 else
7762 return -EINVAL;
7763
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007764 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00007765 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00007766 if (err)
7767 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007768 }
7769
7770 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007771
7772err_out:
7773 while (v_idx--)
7774 i40e_free_q_vector(vsi, v_idx);
7775
7776 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007777}
7778
7779/**
7780 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7781 * @pf: board private structure to initialize
7782 **/
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007783static int i40e_init_interrupt_scheme(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007784{
Shannon Nelson3b444392015-02-26 16:15:57 +00007785 int vectors = 0;
7786 ssize_t size;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007787
7788 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Shannon Nelson3b444392015-02-26 16:15:57 +00007789 vectors = i40e_init_msix(pf);
7790 if (vectors < 0) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007791 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06007792 I40E_FLAG_IWARP_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007793#ifdef I40E_FCOE
7794 I40E_FLAG_FCOE_ENABLED |
7795#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007796 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007797 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007798 I40E_FLAG_SRIOV_ENABLED |
7799 I40E_FLAG_FD_SB_ENABLED |
7800 I40E_FLAG_FD_ATR_ENABLED |
7801 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007802
7803 /* rework the queue expectations without MSIX */
7804 i40e_determine_queue_usage(pf);
7805 }
7806 }
7807
7808 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7809 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007810 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Shannon Nelson3b444392015-02-26 16:15:57 +00007811 vectors = pci_enable_msi(pf->pdev);
7812 if (vectors < 0) {
7813 dev_info(&pf->pdev->dev, "MSI init failed - %d\n",
7814 vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007815 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7816 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007817 vectors = 1; /* one MSI or Legacy vector */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007818 }
7819
Shannon Nelson958a3e32013-09-28 07:13:28 +00007820 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007821 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007822
Shannon Nelson3b444392015-02-26 16:15:57 +00007823 /* set up vector assignment tracking */
7824 size = sizeof(struct i40e_lump_tracking) + (sizeof(u16) * vectors);
7825 pf->irq_pile = kzalloc(size, GFP_KERNEL);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007826 if (!pf->irq_pile) {
7827 dev_err(&pf->pdev->dev, "error allocating irq_pile memory\n");
7828 return -ENOMEM;
7829 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007830 pf->irq_pile->num_entries = vectors;
7831 pf->irq_pile->search_hint = 0;
7832
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007833 /* track first vector for misc interrupts, ignore return */
Shannon Nelson3b444392015-02-26 16:15:57 +00007834 (void)i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT - 1);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007835
7836 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007837}
7838
7839/**
7840 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7841 * @pf: board private structure
7842 *
7843 * This sets up the handler for MSIX 0, which is used to manage the
7844 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7845 * when in MSI or Legacy interrupt mode.
7846 **/
7847static int i40e_setup_misc_vector(struct i40e_pf *pf)
7848{
7849 struct i40e_hw *hw = &pf->hw;
7850 int err = 0;
7851
7852 /* Only request the irq if this is the first time through, and
7853 * not when we're rebuilding after a Reset
7854 */
7855 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7856 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007857 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007858 if (err) {
7859 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007860 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007861 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007862 return -EFAULT;
7863 }
7864 }
7865
Jacob Kellerab437b52014-12-14 01:55:08 +00007866 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007867
7868 /* associate no queues to the misc vector */
7869 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7870 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7871
7872 i40e_flush(hw);
7873
Jesse Brandeburg40d72a52016-01-13 16:51:45 -08007874 i40e_irq_dynamic_enable_icr0(pf, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007875
7876 return err;
7877}
7878
7879/**
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007880 * i40e_config_rss_aq - Prepare for RSS using AQ commands
7881 * @vsi: vsi structure
7882 * @seed: RSS hash seed
7883 **/
Helin Zhange69ff812015-10-21 19:56:22 -04007884static int i40e_config_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
7885 u8 *lut, u16 lut_size)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007886{
7887 struct i40e_aqc_get_set_rss_key_data rss_key;
7888 struct i40e_pf *pf = vsi->back;
7889 struct i40e_hw *hw = &pf->hw;
7890 bool pf_lut = false;
7891 u8 *rss_lut;
7892 int ret, i;
7893
7894 memset(&rss_key, 0, sizeof(rss_key));
7895 memcpy(&rss_key, seed, sizeof(rss_key));
7896
7897 rss_lut = kzalloc(pf->rss_table_size, GFP_KERNEL);
7898 if (!rss_lut)
7899 return -ENOMEM;
7900
7901 /* Populate the LUT with max no. of queues in round robin fashion */
7902 for (i = 0; i < vsi->rss_table_size; i++)
7903 rss_lut[i] = i % vsi->rss_size;
7904
7905 ret = i40e_aq_set_rss_key(hw, vsi->id, &rss_key);
7906 if (ret) {
7907 dev_info(&pf->pdev->dev,
7908 "Cannot set RSS key, err %s aq_err %s\n",
7909 i40e_stat_str(&pf->hw, ret),
7910 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai126b63d2015-08-24 13:26:53 -07007911 goto config_rss_aq_out;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007912 }
7913
7914 if (vsi->type == I40E_VSI_MAIN)
7915 pf_lut = true;
7916
7917 ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, rss_lut,
7918 vsi->rss_table_size);
7919 if (ret)
7920 dev_info(&pf->pdev->dev,
7921 "Cannot set RSS lut, err %s aq_err %s\n",
7922 i40e_stat_str(&pf->hw, ret),
7923 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
7924
Anjali Singhai126b63d2015-08-24 13:26:53 -07007925config_rss_aq_out:
7926 kfree(rss_lut);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007927 return ret;
7928}
7929
7930/**
7931 * i40e_vsi_config_rss - Prepare for VSI(VMDq) RSS if used
7932 * @vsi: VSI structure
7933 **/
7934static int i40e_vsi_config_rss(struct i40e_vsi *vsi)
7935{
7936 u8 seed[I40E_HKEY_ARRAY_SIZE];
7937 struct i40e_pf *pf = vsi->back;
Helin Zhange69ff812015-10-21 19:56:22 -04007938 u8 *lut;
7939 int ret;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007940
Helin Zhange69ff812015-10-21 19:56:22 -04007941 if (!(pf->flags & I40E_FLAG_RSS_AQ_CAPABLE))
7942 return 0;
7943
7944 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
7945 if (!lut)
7946 return -ENOMEM;
7947
7948 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007949 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhangacd65442015-10-26 19:44:28 -04007950 vsi->rss_size = min_t(int, pf->alloc_rss_size, vsi->num_queue_pairs);
Helin Zhange69ff812015-10-21 19:56:22 -04007951 ret = i40e_config_rss_aq(vsi, seed, lut, vsi->rss_table_size);
7952 kfree(lut);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04007953
Helin Zhange69ff812015-10-21 19:56:22 -04007954 return ret;
7955}
7956
7957/**
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08007958 * i40e_get_rss_aq - Get RSS keys and lut by using AQ commands
7959 * @vsi: Pointer to vsi structure
7960 * @seed: Buffter to store the hash keys
7961 * @lut: Buffer to store the lookup table entries
7962 * @lut_size: Size of buffer to store the lookup table entries
7963 *
7964 * Return 0 on success, negative on failure
7965 */
7966static int i40e_get_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
7967 u8 *lut, u16 lut_size)
7968{
7969 struct i40e_pf *pf = vsi->back;
7970 struct i40e_hw *hw = &pf->hw;
7971 int ret = 0;
7972
7973 if (seed) {
7974 ret = i40e_aq_get_rss_key(hw, vsi->id,
7975 (struct i40e_aqc_get_set_rss_key_data *)seed);
7976 if (ret) {
7977 dev_info(&pf->pdev->dev,
7978 "Cannot get RSS key, err %s aq_err %s\n",
7979 i40e_stat_str(&pf->hw, ret),
7980 i40e_aq_str(&pf->hw,
7981 pf->hw.aq.asq_last_status));
7982 return ret;
7983 }
7984 }
7985
7986 if (lut) {
7987 bool pf_lut = vsi->type == I40E_VSI_MAIN ? true : false;
7988
7989 ret = i40e_aq_get_rss_lut(hw, vsi->id, pf_lut, lut, lut_size);
7990 if (ret) {
7991 dev_info(&pf->pdev->dev,
7992 "Cannot get RSS lut, err %s aq_err %s\n",
7993 i40e_stat_str(&pf->hw, ret),
7994 i40e_aq_str(&pf->hw,
7995 pf->hw.aq.asq_last_status));
7996 return ret;
7997 }
7998 }
7999
8000 return ret;
8001}
8002
8003/**
Helin Zhang043dd652015-10-21 19:56:23 -04008004 * i40e_config_rss_reg - Configure RSS keys and lut by writing registers
Helin Zhange69ff812015-10-21 19:56:22 -04008005 * @vsi: Pointer to vsi structure
8006 * @seed: RSS hash seed
8007 * @lut: Lookup table
8008 * @lut_size: Lookup table size
8009 *
8010 * Returns 0 on success, negative on failure
8011 **/
8012static int i40e_config_rss_reg(struct i40e_vsi *vsi, const u8 *seed,
8013 const u8 *lut, u16 lut_size)
8014{
8015 struct i40e_pf *pf = vsi->back;
8016 struct i40e_hw *hw = &pf->hw;
Mitch Williamsc4e18682016-04-12 08:30:40 -07008017 u16 vf_id = vsi->vf_id;
Helin Zhange69ff812015-10-21 19:56:22 -04008018 u8 i;
8019
8020 /* Fill out hash function seed */
8021 if (seed) {
8022 u32 *seed_dw = (u32 *)seed;
8023
Mitch Williamsc4e18682016-04-12 08:30:40 -07008024 if (vsi->type == I40E_VSI_MAIN) {
8025 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
8026 i40e_write_rx_ctl(hw, I40E_PFQF_HKEY(i),
8027 seed_dw[i]);
8028 } else if (vsi->type == I40E_VSI_SRIOV) {
8029 for (i = 0; i <= I40E_VFQF_HKEY1_MAX_INDEX; i++)
8030 i40e_write_rx_ctl(hw,
8031 I40E_VFQF_HKEY1(i, vf_id),
8032 seed_dw[i]);
8033 } else {
8034 dev_err(&pf->pdev->dev, "Cannot set RSS seed - invalid VSI type\n");
8035 }
Helin Zhange69ff812015-10-21 19:56:22 -04008036 }
8037
8038 if (lut) {
8039 u32 *lut_dw = (u32 *)lut;
8040
Mitch Williamsc4e18682016-04-12 08:30:40 -07008041 if (vsi->type == I40E_VSI_MAIN) {
8042 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8043 return -EINVAL;
8044 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8045 wr32(hw, I40E_PFQF_HLUT(i), lut_dw[i]);
8046 } else if (vsi->type == I40E_VSI_SRIOV) {
8047 if (lut_size != I40E_VF_HLUT_ARRAY_SIZE)
8048 return -EINVAL;
8049 for (i = 0; i <= I40E_VFQF_HLUT_MAX_INDEX; i++)
8050 i40e_write_rx_ctl(hw,
8051 I40E_VFQF_HLUT1(i, vf_id),
8052 lut_dw[i]);
8053 } else {
8054 dev_err(&pf->pdev->dev, "Cannot set RSS LUT - invalid VSI type\n");
8055 }
Helin Zhange69ff812015-10-21 19:56:22 -04008056 }
8057 i40e_flush(hw);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008058
8059 return 0;
8060}
8061
8062/**
Helin Zhang043dd652015-10-21 19:56:23 -04008063 * i40e_get_rss_reg - Get the RSS keys and lut by reading registers
8064 * @vsi: Pointer to VSI structure
8065 * @seed: Buffer to store the keys
8066 * @lut: Buffer to store the lookup table entries
8067 * @lut_size: Size of buffer to store the lookup table entries
8068 *
8069 * Returns 0 on success, negative on failure
8070 */
8071static int i40e_get_rss_reg(struct i40e_vsi *vsi, u8 *seed,
8072 u8 *lut, u16 lut_size)
8073{
8074 struct i40e_pf *pf = vsi->back;
8075 struct i40e_hw *hw = &pf->hw;
8076 u16 i;
8077
8078 if (seed) {
8079 u32 *seed_dw = (u32 *)seed;
8080
8081 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008082 seed_dw[i] = i40e_read_rx_ctl(hw, I40E_PFQF_HKEY(i));
Helin Zhang043dd652015-10-21 19:56:23 -04008083 }
8084 if (lut) {
8085 u32 *lut_dw = (u32 *)lut;
8086
8087 if (lut_size != I40E_HLUT_ARRAY_SIZE)
8088 return -EINVAL;
8089 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
8090 lut_dw[i] = rd32(hw, I40E_PFQF_HLUT(i));
8091 }
8092
8093 return 0;
8094}
8095
8096/**
8097 * i40e_config_rss - Configure RSS keys and lut
8098 * @vsi: Pointer to VSI structure
8099 * @seed: RSS hash seed
8100 * @lut: Lookup table
8101 * @lut_size: Lookup table size
8102 *
8103 * Returns 0 on success, negative on failure
8104 */
8105int i40e_config_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8106{
8107 struct i40e_pf *pf = vsi->back;
8108
8109 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
8110 return i40e_config_rss_aq(vsi, seed, lut, lut_size);
8111 else
8112 return i40e_config_rss_reg(vsi, seed, lut, lut_size);
8113}
8114
8115/**
8116 * i40e_get_rss - Get RSS keys and lut
8117 * @vsi: Pointer to VSI structure
8118 * @seed: Buffer to store the keys
8119 * @lut: Buffer to store the lookup table entries
8120 * lut_size: Size of buffer to store the lookup table entries
8121 *
8122 * Returns 0 on success, negative on failure
8123 */
8124int i40e_get_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
8125{
Anjali Singhai Jain95a73782015-12-22 14:25:04 -08008126 struct i40e_pf *pf = vsi->back;
8127
8128 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
8129 return i40e_get_rss_aq(vsi, seed, lut, lut_size);
8130 else
8131 return i40e_get_rss_reg(vsi, seed, lut, lut_size);
Helin Zhang043dd652015-10-21 19:56:23 -04008132}
8133
8134/**
Helin Zhange69ff812015-10-21 19:56:22 -04008135 * i40e_fill_rss_lut - Fill the RSS lookup table with default values
8136 * @pf: Pointer to board private structure
8137 * @lut: Lookup table
8138 * @rss_table_size: Lookup table size
8139 * @rss_size: Range of queue number for hashing
8140 */
8141static void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
8142 u16 rss_table_size, u16 rss_size)
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008143{
Helin Zhange69ff812015-10-21 19:56:22 -04008144 u16 i;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008145
Helin Zhange69ff812015-10-21 19:56:22 -04008146 for (i = 0; i < rss_table_size; i++)
8147 lut[i] = i % rss_size;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008148}
8149
8150/**
Helin Zhang043dd652015-10-21 19:56:23 -04008151 * i40e_pf_config_rss - Prepare for RSS if used
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008152 * @pf: board private structure
8153 **/
Helin Zhang043dd652015-10-21 19:56:23 -04008154static int i40e_pf_config_rss(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008155{
Anjali Singhai Jain66ddcff2015-02-24 06:58:50 +00008156 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008157 u8 seed[I40E_HKEY_ARRAY_SIZE];
Helin Zhange69ff812015-10-21 19:56:22 -04008158 u8 *lut;
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00008159 struct i40e_hw *hw = &pf->hw;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008160 u32 reg_val;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008161 u64 hena;
Helin Zhange69ff812015-10-21 19:56:22 -04008162 int ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008163
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008164 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008165 hena = (u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(0)) |
8166 ((u64)i40e_read_rx_ctl(hw, I40E_PFQF_HENA(1)) << 32);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008167 hena |= i40e_pf_get_default_rss_hena(pf);
8168
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008169 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), (u32)hena);
8170 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008171
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008172 /* Determine the RSS table size based on the hardware capabilities */
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008173 reg_val = i40e_read_rx_ctl(hw, I40E_PFQF_CTL_0);
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008174 reg_val = (pf->rss_table_size == 512) ?
8175 (reg_val | I40E_PFQF_CTL_0_HASHLUTSIZE_512) :
8176 (reg_val & ~I40E_PFQF_CTL_0_HASHLUTSIZE_512);
Shannon Nelson272cdaf22016-02-17 16:12:21 -08008177 i40e_write_rx_ctl(hw, I40E_PFQF_CTL_0, reg_val);
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008178
Helin Zhang28c58692015-10-26 19:44:27 -04008179 /* Determine the RSS size of the VSI */
8180 if (!vsi->rss_size)
Helin Zhangacd65442015-10-26 19:44:28 -04008181 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8182 vsi->num_queue_pairs);
Helin Zhang28c58692015-10-26 19:44:27 -04008183
Helin Zhange69ff812015-10-21 19:56:22 -04008184 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8185 if (!lut)
8186 return -ENOMEM;
8187
Helin Zhang28c58692015-10-26 19:44:27 -04008188 /* Use user configured lut if there is one, otherwise use default */
8189 if (vsi->rss_lut_user)
8190 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8191 else
8192 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008193
Helin Zhang28c58692015-10-26 19:44:27 -04008194 /* Use user configured hash key if there is one, otherwise
8195 * use default.
8196 */
8197 if (vsi->rss_hkey_user)
8198 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8199 else
8200 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhang043dd652015-10-21 19:56:23 -04008201 ret = i40e_config_rss(vsi, seed, lut, vsi->rss_table_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008202 kfree(lut);
8203
8204 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008205}
8206
8207/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008208 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
8209 * @pf: board private structure
8210 * @queue_count: the requested queue count for rss.
8211 *
8212 * returns 0 if rss is not enabled, if enabled returns the final rss queue
8213 * count which may be different from the requested queue count.
8214 **/
8215int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
8216{
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008217 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
8218 int new_rss_size;
8219
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008220 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
8221 return 0;
8222
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008223 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008224
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008225 if (queue_count != vsi->num_queue_pairs) {
8226 vsi->req_queue_pairs = queue_count;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008227 i40e_prep_for_reset(pf);
8228
Helin Zhangacd65442015-10-26 19:44:28 -04008229 pf->alloc_rss_size = new_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008230
8231 i40e_reset_and_rebuild(pf, true);
Helin Zhang28c58692015-10-26 19:44:27 -04008232
8233 /* Discard the user configured hash keys and lut, if less
8234 * queues are enabled.
8235 */
8236 if (queue_count < vsi->rss_size) {
8237 i40e_clear_rss_config_user(vsi);
8238 dev_dbg(&pf->pdev->dev,
8239 "discard user configured hash keys and lut\n");
8240 }
8241
8242 /* Reset vsi->rss_size, as number of enabled queues changed */
Helin Zhangacd65442015-10-26 19:44:28 -04008243 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8244 vsi->num_queue_pairs);
Helin Zhang28c58692015-10-26 19:44:27 -04008245
Helin Zhang043dd652015-10-21 19:56:23 -04008246 i40e_pf_config_rss(pf);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008247 }
Helin Zhange36b0b12015-10-26 19:44:36 -04008248 dev_info(&pf->pdev->dev, "RSS count/HW max RSS count: %d/%d\n",
8249 pf->alloc_rss_size, pf->rss_size_max);
Helin Zhangacd65442015-10-26 19:44:28 -04008250 return pf->alloc_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008251}
8252
8253/**
Greg Rosef4492db2015-02-06 08:52:12 +00008254 * i40e_get_npar_bw_setting - Retrieve BW settings for this PF partition
8255 * @pf: board private structure
8256 **/
8257i40e_status i40e_get_npar_bw_setting(struct i40e_pf *pf)
8258{
8259 i40e_status status;
8260 bool min_valid, max_valid;
8261 u32 max_bw, min_bw;
8262
8263 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
8264 &min_valid, &max_valid);
8265
8266 if (!status) {
8267 if (min_valid)
8268 pf->npar_min_bw = min_bw;
8269 if (max_valid)
8270 pf->npar_max_bw = max_bw;
8271 }
8272
8273 return status;
8274}
8275
8276/**
8277 * i40e_set_npar_bw_setting - Set BW settings for this PF partition
8278 * @pf: board private structure
8279 **/
8280i40e_status i40e_set_npar_bw_setting(struct i40e_pf *pf)
8281{
8282 struct i40e_aqc_configure_partition_bw_data bw_data;
8283 i40e_status status;
8284
Jeff Kirsherb40c82e2015-02-27 09:18:34 +00008285 /* Set the valid bit for this PF */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008286 bw_data.pf_valid_bits = cpu_to_le16(BIT(pf->hw.pf_id));
Greg Rosef4492db2015-02-06 08:52:12 +00008287 bw_data.max_bw[pf->hw.pf_id] = pf->npar_max_bw & I40E_ALT_BW_VALUE_MASK;
8288 bw_data.min_bw[pf->hw.pf_id] = pf->npar_min_bw & I40E_ALT_BW_VALUE_MASK;
8289
8290 /* Set the new bandwidths */
8291 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
8292
8293 return status;
8294}
8295
8296/**
8297 * i40e_commit_npar_bw_setting - Commit BW settings for this PF partition
8298 * @pf: board private structure
8299 **/
8300i40e_status i40e_commit_npar_bw_setting(struct i40e_pf *pf)
8301{
8302 /* Commit temporary BW setting to permanent NVM image */
8303 enum i40e_admin_queue_err last_aq_status;
8304 i40e_status ret;
8305 u16 nvm_word;
8306
8307 if (pf->hw.partition_id != 1) {
8308 dev_info(&pf->pdev->dev,
8309 "Commit BW only works on partition 1! This is partition %d",
8310 pf->hw.partition_id);
8311 ret = I40E_NOT_SUPPORTED;
8312 goto bw_commit_out;
8313 }
8314
8315 /* Acquire NVM for read access */
8316 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
8317 last_aq_status = pf->hw.aq.asq_last_status;
8318 if (ret) {
8319 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008320 "Cannot acquire NVM for read access, err %s aq_err %s\n",
8321 i40e_stat_str(&pf->hw, ret),
8322 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008323 goto bw_commit_out;
8324 }
8325
8326 /* Read word 0x10 of NVM - SW compatibility word 1 */
8327 ret = i40e_aq_read_nvm(&pf->hw,
8328 I40E_SR_NVM_CONTROL_WORD,
8329 0x10, sizeof(nvm_word), &nvm_word,
8330 false, NULL);
8331 /* Save off last admin queue command status before releasing
8332 * the NVM
8333 */
8334 last_aq_status = pf->hw.aq.asq_last_status;
8335 i40e_release_nvm(&pf->hw);
8336 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008337 dev_info(&pf->pdev->dev, "NVM read error, err %s aq_err %s\n",
8338 i40e_stat_str(&pf->hw, ret),
8339 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008340 goto bw_commit_out;
8341 }
8342
8343 /* Wait a bit for NVM release to complete */
8344 msleep(50);
8345
8346 /* Acquire NVM for write access */
8347 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
8348 last_aq_status = pf->hw.aq.asq_last_status;
8349 if (ret) {
8350 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008351 "Cannot acquire NVM for write access, err %s aq_err %s\n",
8352 i40e_stat_str(&pf->hw, ret),
8353 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008354 goto bw_commit_out;
8355 }
8356 /* Write it back out unchanged to initiate update NVM,
8357 * which will force a write of the shadow (alt) RAM to
8358 * the NVM - thus storing the bandwidth values permanently.
8359 */
8360 ret = i40e_aq_update_nvm(&pf->hw,
8361 I40E_SR_NVM_CONTROL_WORD,
8362 0x10, sizeof(nvm_word),
8363 &nvm_word, true, NULL);
8364 /* Save off last admin queue command status before releasing
8365 * the NVM
8366 */
8367 last_aq_status = pf->hw.aq.asq_last_status;
8368 i40e_release_nvm(&pf->hw);
8369 if (ret)
8370 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008371 "BW settings NOT SAVED, err %s aq_err %s\n",
8372 i40e_stat_str(&pf->hw, ret),
8373 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008374bw_commit_out:
8375
8376 return ret;
8377}
8378
8379/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008380 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
8381 * @pf: board private structure to initialize
8382 *
8383 * i40e_sw_init initializes the Adapter private data structure.
8384 * Fields are initialized based on PCI device information and
8385 * OS network device settings (MTU size).
8386 **/
8387static int i40e_sw_init(struct i40e_pf *pf)
8388{
8389 int err = 0;
8390 int size;
8391
8392 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
8393 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
8394 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
8395 if (I40E_DEBUG_USER & debug)
8396 pf->hw.debug_mask = debug;
8397 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
8398 I40E_DEFAULT_MSG_ENABLE);
8399 }
8400
8401 /* Set default capability flags */
8402 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
8403 I40E_FLAG_MSI_ENABLED |
Mitch Williams2bc7ee82015-02-06 08:52:11 +00008404 I40E_FLAG_MSIX_ENABLED;
8405
Mitch Williamsca99eb92014-04-04 04:43:07 +00008406 /* Set default ITR */
8407 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
8408 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
8409
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008410 /* Depending on PF configurations, it is possible that the RSS
8411 * maximum might end up larger than the available queues
8412 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008413 pf->rss_size_max = BIT(pf->hw.func_caps.rss_table_entry_width);
Helin Zhangacd65442015-10-26 19:44:28 -04008414 pf->alloc_rss_size = 1;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00008415 pf->rss_table_size = pf->hw.func_caps.rss_table_size;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008416 pf->rss_size_max = min_t(int, pf->rss_size_max,
8417 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008418 if (pf->hw.func_caps.rss) {
8419 pf->flags |= I40E_FLAG_RSS_ENABLED;
Helin Zhangacd65442015-10-26 19:44:28 -04008420 pf->alloc_rss_size = min_t(int, pf->rss_size_max,
8421 num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008422 }
8423
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008424 /* MFP mode enabled */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04008425 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.flex10_enable) {
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008426 pf->flags |= I40E_FLAG_MFP_ENABLED;
8427 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
Greg Rosef4492db2015-02-06 08:52:12 +00008428 if (i40e_get_npar_bw_setting(pf))
8429 dev_warn(&pf->pdev->dev,
8430 "Could not get NPAR bw settings\n");
8431 else
8432 dev_info(&pf->pdev->dev,
8433 "Min BW = %8.8x, Max BW = %8.8x\n",
8434 pf->npar_min_bw, pf->npar_max_bw);
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008435 }
8436
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008437 /* FW/NVM is not yet fixed in this regard */
8438 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
8439 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
8440 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
8441 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008442 if (pf->flags & I40E_FLAG_MFP_ENABLED &&
8443 pf->hw.num_partitions > 1)
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008444 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00008445 "Flow Director Sideband mode Disabled in MFP mode\n");
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008446 else
8447 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008448 pf->fdir_pf_filter_count =
8449 pf->hw.func_caps.fd_filters_guaranteed;
8450 pf->hw.fdir_shared_filter_count =
8451 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008452 }
8453
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008454 if (i40e_is_mac_710(&pf->hw) &&
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008455 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008456 (pf->hw.aq.fw_maj_ver < 4))) {
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008457 pf->flags |= I40E_FLAG_RESTART_AUTONEG;
Neerav Parikhf1bbad32016-01-13 16:51:39 -08008458 /* No DCB support for FW < v4.33 */
8459 pf->flags |= I40E_FLAG_NO_DCB_SUPPORT;
8460 }
8461
8462 /* Disable FW LLDP if FW < v4.3 */
8463 if (i40e_is_mac_710(&pf->hw) &&
8464 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
8465 (pf->hw.aq.fw_maj_ver < 4)))
8466 pf->flags |= I40E_FLAG_STOP_FW_LLDP;
8467
8468 /* Use the FW Set LLDP MIB API if FW > v4.40 */
8469 if (i40e_is_mac_710(&pf->hw) &&
8470 (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver >= 40)) ||
8471 (pf->hw.aq.fw_maj_ver >= 5)))
8472 pf->flags |= I40E_FLAG_USE_SET_LLDP_MIB;
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -08008473
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008474 if (pf->hw.func_caps.vmdq) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008475 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04008476 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
Jesse Brandeburge9e53662015-10-02 17:57:21 -07008477 pf->num_vmdq_qps = i40e_default_queues_per_vmdq(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008478 }
8479
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06008480 if (pf->hw.func_caps.iwarp) {
8481 pf->flags |= I40E_FLAG_IWARP_ENABLED;
8482 /* IWARP needs one extra vector for CQP just like MISC.*/
8483 pf->num_iwarp_msix = (int)num_online_cpus() + 1;
8484 }
8485
Vasu Dev38e00432014-08-01 13:27:03 -07008486#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04008487 i40e_init_pf_fcoe(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07008488
8489#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008490#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f12014-12-11 07:06:34 +00008491 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008492 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
8493 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
8494 pf->num_req_vfs = min_t(int,
8495 pf->hw.func_caps.num_vfs,
8496 I40E_MAX_VF_COUNT);
8497 }
8498#endif /* CONFIG_PCI_IOV */
Anjali Singhai Jaind502ce02015-06-05 12:20:26 -04008499 if (pf->hw.mac.type == I40E_MAC_X722) {
8500 pf->flags |= I40E_FLAG_RSS_AQ_CAPABLE |
8501 I40E_FLAG_128_QP_RSS_CAPABLE |
8502 I40E_FLAG_HW_ATR_EVICT_CAPABLE |
8503 I40E_FLAG_OUTER_UDP_CSUM_CAPABLE |
8504 I40E_FLAG_WB_ON_ITR_CAPABLE |
Singhai, Anjali6a899022015-12-14 12:21:18 -08008505 I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE |
Jesse Brandeburg8e2cc0e2016-02-29 11:00:24 -08008506 I40E_FLAG_NO_PCI_LINK_CHECK |
Catherine Sullivanf8db54cc2015-12-22 14:25:14 -08008507 I40E_FLAG_100M_SGMII_CAPABLE |
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;
8568 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
8569 } else {
8570 /* turn off filters, mark for reset and clear SW filter list */
8571 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8572 need_reset = true;
8573 i40e_fdir_filter_exit(pf);
8574 }
8575 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008576 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00008577 /* reset fd counters */
8578 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
8579 pf->fdir_pf_active_filters = 0;
8580 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04008581 if (I40E_DEBUG_FD & pf->hw.debug_mask)
8582 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008583 /* if ATR was auto disabled it can be re-enabled. */
8584 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
8585 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
8586 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008587 }
8588 return need_reset;
8589}
8590
8591/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008592 * i40e_set_features - set the netdev feature flags
8593 * @netdev: ptr to the netdev being adjusted
8594 * @features: the feature set that the stack is suggesting
8595 **/
8596static int i40e_set_features(struct net_device *netdev,
8597 netdev_features_t features)
8598{
8599 struct i40e_netdev_priv *np = netdev_priv(netdev);
8600 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008601 struct i40e_pf *pf = vsi->back;
8602 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008603
8604 if (features & NETIF_F_HW_VLAN_CTAG_RX)
8605 i40e_vlan_stripping_enable(vsi);
8606 else
8607 i40e_vlan_stripping_disable(vsi);
8608
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008609 need_reset = i40e_set_ntuple(pf, features);
8610
8611 if (need_reset)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008612 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008613
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008614 return 0;
8615}
8616
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008617/**
Singhai, Anjali6a899022015-12-14 12:21:18 -08008618 * i40e_get_udp_port_idx - Lookup a possibly offloaded for Rx UDP port
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008619 * @pf: board private structure
8620 * @port: The UDP port to look up
8621 *
8622 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
8623 **/
Singhai, Anjali6a899022015-12-14 12:21:18 -08008624static u8 i40e_get_udp_port_idx(struct i40e_pf *pf, __be16 port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008625{
8626 u8 i;
8627
8628 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Singhai, Anjali6a899022015-12-14 12:21:18 -08008629 if (pf->udp_ports[i].index == port)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008630 return i;
8631 }
8632
8633 return i;
8634}
8635
8636/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008637 * i40e_udp_tunnel_add - Get notifications about UDP tunnel ports that come up
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008638 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008639 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008640 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008641static void i40e_udp_tunnel_add(struct net_device *netdev,
8642 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008643{
8644 struct i40e_netdev_priv *np = netdev_priv(netdev);
8645 struct i40e_vsi *vsi = np->vsi;
8646 struct i40e_pf *pf = vsi->back;
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008647 __be16 port = ti->port;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008648 u8 next_idx;
8649 u8 idx;
8650
Singhai, Anjali6a899022015-12-14 12:21:18 -08008651 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008652
8653 /* Check if port already exists */
8654 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008655 netdev_info(netdev, "port %d already offloaded\n",
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07008656 ntohs(port));
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008657 return;
8658 }
8659
8660 /* Now check if there is space to add the new port */
Singhai, Anjali6a899022015-12-14 12:21:18 -08008661 next_idx = i40e_get_udp_port_idx(pf, 0);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008662
8663 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008664 netdev_info(netdev, "maximum number of offloaded UDP ports reached, not adding port %d\n",
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008665 ntohs(port));
8666 return;
8667 }
8668
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008669 switch (ti->type) {
8670 case UDP_TUNNEL_TYPE_VXLAN:
8671 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_VXLAN;
8672 break;
8673 case UDP_TUNNEL_TYPE_GENEVE:
8674 if (!(pf->flags & I40E_FLAG_GENEVE_OFFLOAD_CAPABLE))
8675 return;
8676 pf->udp_ports[next_idx].type = I40E_AQC_TUNNEL_TYPE_NGE;
8677 break;
8678 default:
8679 return;
8680 }
8681
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008682 /* New port: add it and mark its index in the bitmap */
Singhai, Anjali6a899022015-12-14 12:21:18 -08008683 pf->udp_ports[next_idx].index = port;
Singhai, Anjali6a899022015-12-14 12:21:18 -08008684 pf->pending_udp_bitmap |= BIT_ULL(next_idx);
8685 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008686}
8687
8688/**
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008689 * i40e_udp_tunnel_del - Get notifications about UDP tunnel ports that go away
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008690 * @netdev: This physical port's netdev
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008691 * @ti: Tunnel endpoint information
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008692 **/
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008693static void i40e_udp_tunnel_del(struct net_device *netdev,
8694 struct udp_tunnel_info *ti)
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008695{
8696 struct i40e_netdev_priv *np = netdev_priv(netdev);
8697 struct i40e_vsi *vsi = np->vsi;
8698 struct i40e_pf *pf = vsi->back;
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008699 __be16 port = ti->port;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008700 u8 idx;
8701
Singhai, Anjali6a899022015-12-14 12:21:18 -08008702 idx = i40e_get_udp_port_idx(pf, port);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008703
8704 /* Check if port already exists */
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008705 if (idx >= I40E_MAX_PF_UDP_OFFLOAD_PORTS)
8706 goto not_found;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008707
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008708 switch (ti->type) {
8709 case UDP_TUNNEL_TYPE_VXLAN:
8710 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_VXLAN)
8711 goto not_found;
8712 break;
8713 case UDP_TUNNEL_TYPE_GENEVE:
8714 if (pf->udp_ports[idx].type != I40E_AQC_TUNNEL_TYPE_NGE)
8715 goto not_found;
8716 break;
8717 default:
8718 goto not_found;
Singhai, Anjali6a899022015-12-14 12:21:18 -08008719 }
8720
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008721 /* if port exists, set it to 0 (mark for deletion)
8722 * and make it pending
8723 */
8724 pf->udp_ports[idx].index = 0;
8725 pf->pending_udp_bitmap |= BIT_ULL(idx);
Singhai, Anjali6a899022015-12-14 12:21:18 -08008726 pf->flags |= I40E_FLAG_UDP_FILTER_SYNC;
8727
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008728 return;
8729not_found:
8730 netdev_warn(netdev, "UDP port %d was not found, not deleting\n",
8731 ntohs(port));
Singhai, Anjali6a899022015-12-14 12:21:18 -08008732}
8733
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008734static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01008735 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008736{
8737 struct i40e_netdev_priv *np = netdev_priv(netdev);
8738 struct i40e_pf *pf = np->vsi->back;
8739 struct i40e_hw *hw = &pf->hw;
8740
8741 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
8742 return -EOPNOTSUPP;
8743
8744 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
8745 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
8746
8747 return 0;
8748}
8749
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08008750/**
8751 * i40e_ndo_fdb_add - add an entry to the hardware database
8752 * @ndm: the input from the stack
8753 * @tb: pointer to array of nladdr (unused)
8754 * @dev: the net device pointer
8755 * @addr: the MAC address entry being added
8756 * @flags: instructions from stack about fdb operation
8757 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00008758static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
8759 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01008760 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00008761 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00008762{
8763 struct i40e_netdev_priv *np = netdev_priv(dev);
8764 struct i40e_pf *pf = np->vsi->back;
8765 int err = 0;
8766
8767 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
8768 return -EOPNOTSUPP;
8769
Or Gerlitz65891fe2014-12-14 18:19:05 +02008770 if (vid) {
8771 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
8772 return -EINVAL;
8773 }
8774
Greg Rose4ba0dea2014-03-06 08:59:55 +00008775 /* Hardware does not support aging addresses so if a
8776 * ndm_state is given only allow permanent addresses
8777 */
8778 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
8779 netdev_info(dev, "FDB only supports static addresses\n");
8780 return -EINVAL;
8781 }
8782
8783 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
8784 err = dev_uc_add_excl(dev, addr);
8785 else if (is_multicast_ether_addr(addr))
8786 err = dev_mc_add_excl(dev, addr);
8787 else
8788 err = -EINVAL;
8789
8790 /* Only return duplicate errors if NLM_F_EXCL is set */
8791 if (err == -EEXIST && !(flags & NLM_F_EXCL))
8792 err = 0;
8793
8794 return err;
8795}
8796
Neerav Parikh51616012015-02-06 08:52:14 +00008797/**
8798 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
8799 * @dev: the netdev being configured
8800 * @nlh: RTNL message
8801 *
8802 * Inserts a new hardware bridge if not already created and
8803 * enables the bridging mode requested (VEB or VEPA). If the
8804 * hardware bridge has already been inserted and the request
8805 * is to change the mode then that requires a PF reset to
8806 * allow rebuild of the components with required hardware
8807 * bridge mode enabled.
8808 **/
8809static int i40e_ndo_bridge_setlink(struct net_device *dev,
Carolyn Wyborny9df70b62015-04-27 14:57:11 -04008810 struct nlmsghdr *nlh,
8811 u16 flags)
Neerav Parikh51616012015-02-06 08:52:14 +00008812{
8813 struct i40e_netdev_priv *np = netdev_priv(dev);
8814 struct i40e_vsi *vsi = np->vsi;
8815 struct i40e_pf *pf = vsi->back;
8816 struct i40e_veb *veb = NULL;
8817 struct nlattr *attr, *br_spec;
8818 int i, rem;
8819
8820 /* Only for PF VSI for now */
8821 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8822 return -EOPNOTSUPP;
8823
8824 /* Find the HW bridge for PF VSI */
8825 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8826 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8827 veb = pf->veb[i];
8828 }
8829
8830 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
8831
8832 nla_for_each_nested(attr, br_spec, rem) {
8833 __u16 mode;
8834
8835 if (nla_type(attr) != IFLA_BRIDGE_MODE)
8836 continue;
8837
8838 mode = nla_get_u16(attr);
8839 if ((mode != BRIDGE_MODE_VEPA) &&
8840 (mode != BRIDGE_MODE_VEB))
8841 return -EINVAL;
8842
8843 /* Insert a new HW bridge */
8844 if (!veb) {
8845 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8846 vsi->tc_config.enabled_tc);
8847 if (veb) {
8848 veb->bridge_mode = mode;
8849 i40e_config_bridge_mode(veb);
8850 } else {
8851 /* No Bridge HW offload available */
8852 return -ENOENT;
8853 }
8854 break;
8855 } else if (mode != veb->bridge_mode) {
8856 /* Existing HW bridge but different mode needs reset */
8857 veb->bridge_mode = mode;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07008858 /* TODO: If no VFs or VMDq VSIs, disallow VEB mode */
8859 if (mode == BRIDGE_MODE_VEB)
8860 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
8861 else
8862 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
8863 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Neerav Parikh51616012015-02-06 08:52:14 +00008864 break;
8865 }
8866 }
8867
8868 return 0;
8869}
8870
8871/**
8872 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
8873 * @skb: skb buff
8874 * @pid: process id
8875 * @seq: RTNL message seq #
8876 * @dev: the netdev being configured
8877 * @filter_mask: unused
Jesse Brandeburgd4b2f9f2015-09-03 17:18:48 -04008878 * @nlflags: netlink flags passed in
Neerav Parikh51616012015-02-06 08:52:14 +00008879 *
8880 * Return the mode in which the hardware bridge is operating in
8881 * i.e VEB or VEPA.
8882 **/
Neerav Parikh51616012015-02-06 08:52:14 +00008883static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
8884 struct net_device *dev,
Carolyn Wyborny9f4ffc42015-08-31 19:54:42 -04008885 u32 __always_unused filter_mask,
8886 int nlflags)
Neerav Parikh51616012015-02-06 08:52:14 +00008887{
8888 struct i40e_netdev_priv *np = netdev_priv(dev);
8889 struct i40e_vsi *vsi = np->vsi;
8890 struct i40e_pf *pf = vsi->back;
8891 struct i40e_veb *veb = NULL;
8892 int i;
8893
8894 /* Only for PF VSI for now */
8895 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8896 return -EOPNOTSUPP;
8897
8898 /* Find the HW bridge for the PF VSI */
8899 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8900 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8901 veb = pf->veb[i];
8902 }
8903
8904 if (!veb)
8905 return 0;
8906
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02008907 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
Scott Feldman7d4f8d82015-06-22 00:27:17 -07008908 nlflags, 0, 0, filter_mask, NULL);
Neerav Parikh51616012015-02-06 08:52:14 +00008909}
Neerav Parikh51616012015-02-06 08:52:14 +00008910
Singhai, Anjali6a899022015-12-14 12:21:18 -08008911/* Hardware supports L4 tunnel length of 128B (=2^7) which includes
8912 * inner mac plus all inner ethertypes.
8913 */
8914#define I40E_MAX_TUNNEL_HDR_LEN 128
Joe Stringerf44a75e2015-04-14 17:09:14 -07008915/**
8916 * i40e_features_check - Validate encapsulated packet conforms to limits
8917 * @skb: skb buff
Jean Sacren2bc11c62015-09-19 05:08:43 -06008918 * @dev: This physical port's netdev
Joe Stringerf44a75e2015-04-14 17:09:14 -07008919 * @features: Offload features that the stack believes apply
8920 **/
8921static netdev_features_t i40e_features_check(struct sk_buff *skb,
8922 struct net_device *dev,
8923 netdev_features_t features)
8924{
8925 if (skb->encapsulation &&
Singhai, Anjali6a899022015-12-14 12:21:18 -08008926 ((skb_inner_network_header(skb) - skb_transport_header(skb)) >
Joe Stringerf44a75e2015-04-14 17:09:14 -07008927 I40E_MAX_TUNNEL_HDR_LEN))
Tom Herberta1882222015-12-14 11:19:43 -08008928 return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Joe Stringerf44a75e2015-04-14 17:09:14 -07008929
8930 return features;
8931}
8932
Shannon Nelson37a29732015-02-27 09:15:19 +00008933static const struct net_device_ops i40e_netdev_ops = {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008934 .ndo_open = i40e_open,
8935 .ndo_stop = i40e_close,
8936 .ndo_start_xmit = i40e_lan_xmit_frame,
8937 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
8938 .ndo_set_rx_mode = i40e_set_rx_mode,
8939 .ndo_validate_addr = eth_validate_addr,
8940 .ndo_set_mac_address = i40e_set_mac,
8941 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008942 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008943 .ndo_tx_timeout = i40e_tx_timeout,
8944 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
8945 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
8946#ifdef CONFIG_NET_POLL_CONTROLLER
8947 .ndo_poll_controller = i40e_netpoll,
8948#endif
John Fastabende4c67342016-02-16 21:16:15 -08008949 .ndo_setup_tc = __i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07008950#ifdef I40E_FCOE
8951 .ndo_fcoe_enable = i40e_fcoe_enable,
8952 .ndo_fcoe_disable = i40e_fcoe_disable,
8953#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008954 .ndo_set_features = i40e_set_features,
8955 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
8956 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04008957 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008958 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00008959 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00008960 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Anjali Singhai Jainc3bbbd22016-04-01 03:56:07 -07008961 .ndo_set_vf_trust = i40e_ndo_set_vf_trust,
Alexander Duyck06a5f7f2016-06-16 12:22:06 -07008962 .ndo_udp_tunnel_add = i40e_udp_tunnel_add,
8963 .ndo_udp_tunnel_del = i40e_udp_tunnel_del,
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008964 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00008965 .ndo_fdb_add = i40e_ndo_fdb_add,
Joe Stringerf44a75e2015-04-14 17:09:14 -07008966 .ndo_features_check = i40e_features_check,
Neerav Parikh51616012015-02-06 08:52:14 +00008967 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
8968 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008969};
8970
8971/**
8972 * i40e_config_netdev - Setup the netdev flags
8973 * @vsi: the VSI being configured
8974 *
8975 * Returns 0 on success, negative value on failure
8976 **/
8977static int i40e_config_netdev(struct i40e_vsi *vsi)
8978{
Greg Rose1a103702013-11-28 06:42:39 +00008979 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008980 struct i40e_pf *pf = vsi->back;
8981 struct i40e_hw *hw = &pf->hw;
8982 struct i40e_netdev_priv *np;
8983 struct net_device *netdev;
8984 u8 mac_addr[ETH_ALEN];
8985 int etherdev_size;
8986
8987 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008988 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008989 if (!netdev)
8990 return -ENOMEM;
8991
8992 vsi->netdev = netdev;
8993 np = netdev_priv(netdev);
8994 np->vsi = vsi;
8995
Alexander Duyckb0fe3302016-04-02 00:05:14 -07008996 netdev->hw_enc_features |= NETIF_F_SG |
8997 NETIF_F_IP_CSUM |
8998 NETIF_F_IPV6_CSUM |
8999 NETIF_F_HIGHDMA |
9000 NETIF_F_SOFT_FEATURES |
9001 NETIF_F_TSO |
9002 NETIF_F_TSO_ECN |
9003 NETIF_F_TSO6 |
9004 NETIF_F_GSO_GRE |
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009005 NETIF_F_GSO_GRE_CSUM |
Tom Herbert7e133182016-05-18 09:06:10 -07009006 NETIF_F_GSO_IPXIP4 |
Alexander Duyckbf2d1df2016-05-18 10:44:53 -07009007 NETIF_F_GSO_IPXIP6 |
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009008 NETIF_F_GSO_UDP_TUNNEL |
9009 NETIF_F_GSO_UDP_TUNNEL_CSUM |
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009010 NETIF_F_GSO_PARTIAL |
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009011 NETIF_F_SCTP_CRC |
9012 NETIF_F_RXHASH |
9013 NETIF_F_RXCSUM |
Jesse Brandeburg5afdaaa2015-12-10 11:38:50 -08009014 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009015
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009016 if (!(pf->flags & I40E_FLAG_OUTER_UDP_CSUM_CAPABLE))
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009017 netdev->gso_partial_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
9018
9019 netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM;
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009020
9021 /* record features VLANs can make use of */
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009022 netdev->vlan_features |= netdev->hw_enc_features |
9023 NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009024
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009025 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009026 netdev->hw_features |= NETIF_F_NTUPLE;
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00009027
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009028 netdev->hw_features |= netdev->hw_enc_features |
9029 NETIF_F_HW_VLAN_CTAG_TX |
9030 NETIF_F_HW_VLAN_CTAG_RX;
9031
9032 netdev->features |= netdev->hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04009033 netdev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009034
9035 if (vsi->type == I40E_VSI_MAIN) {
9036 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00009037 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00009038 /* The following steps are necessary to prevent reception
9039 * of tagged packets - some older NVM configurations load a
9040 * default a MAC-VLAN filter that accepts any tagged packet
9041 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00009042 */
Kiran Patil21659032015-09-30 14:09:03 -04009043 if (!i40e_rm_default_mac_filter(vsi, mac_addr)) {
9044 spin_lock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson30650cc2014-07-29 04:01:50 +00009045 i40e_add_filter(vsi, mac_addr,
9046 I40E_VLAN_ANY, false, true);
Kiran Patil21659032015-09-30 14:09:03 -04009047 spin_unlock_bh(&vsi->mac_filter_list_lock);
9048 }
Anjali Singhai Jain3845cce2016-03-18 12:18:05 -07009049 } else if ((pf->hw.aq.api_maj_ver > 1) ||
9050 ((pf->hw.aq.api_maj_ver == 1) &&
9051 (pf->hw.aq.api_min_ver > 4))) {
9052 /* Supported in FW API version higher than 1.4 */
9053 pf->flags |= I40E_FLAG_GENEVE_OFFLOAD_CAPABLE;
9054 pf->auto_disable_flags = I40E_FLAG_HW_ATR_EVICT_CAPABLE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009055 } else {
9056 /* relate the VSI_VMDQ name to the VSI_MAIN name */
9057 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
9058 pf->vsi[pf->lan_vsi]->netdev->name);
9059 random_ether_addr(mac_addr);
Kiran Patil21659032015-09-30 14:09:03 -04009060
9061 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009062 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
Kiran Patil21659032015-09-30 14:09:03 -04009063 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009064 }
Kiran Patil21659032015-09-30 14:09:03 -04009065
9066 spin_lock_bh(&vsi->mac_filter_list_lock);
Greg Rose1a103702013-11-28 06:42:39 +00009067 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Kiran Patil21659032015-09-30 14:09:03 -04009068 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009069
Greg Rose9a173902014-05-22 06:32:02 +00009070 ether_addr_copy(netdev->dev_addr, mac_addr);
9071 ether_addr_copy(netdev->perm_addr, mac_addr);
Alexander Duyckb0fe3302016-04-02 00:05:14 -07009072
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009073 netdev->priv_flags |= IFF_UNICAST_FLT;
9074 netdev->priv_flags |= IFF_SUPP_NOFCS;
9075 /* Setup netdev TC information */
9076 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
9077
9078 netdev->netdev_ops = &i40e_netdev_ops;
9079 netdev->watchdog_timeo = 5 * HZ;
9080 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07009081#ifdef I40E_FCOE
9082 i40e_fcoe_config_netdev(netdev, vsi);
9083#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009084
9085 return 0;
9086}
9087
9088/**
9089 * i40e_vsi_delete - Delete a VSI from the switch
9090 * @vsi: the VSI being removed
9091 *
9092 * Returns 0 on success, negative value on failure
9093 **/
9094static void i40e_vsi_delete(struct i40e_vsi *vsi)
9095{
9096 /* remove default VSI is not allowed */
9097 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
9098 return;
9099
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009100 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009101}
9102
9103/**
Neerav Parikh51616012015-02-06 08:52:14 +00009104 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
9105 * @vsi: the VSI being queried
9106 *
9107 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
9108 **/
9109int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
9110{
9111 struct i40e_veb *veb;
9112 struct i40e_pf *pf = vsi->back;
9113
9114 /* Uplink is not a bridge so default to VEB */
9115 if (vsi->veb_idx == I40E_NO_VEB)
9116 return 1;
9117
9118 veb = pf->veb[vsi->veb_idx];
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009119 if (!veb) {
9120 dev_info(&pf->pdev->dev,
9121 "There is no veb associated with the bridge\n");
9122 return -ENOENT;
9123 }
Neerav Parikh51616012015-02-06 08:52:14 +00009124
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04009125 /* Uplink is a bridge in VEPA mode */
9126 if (veb->bridge_mode & BRIDGE_MODE_VEPA) {
9127 return 0;
9128 } else {
9129 /* Uplink is a bridge in VEB mode */
9130 return 1;
9131 }
9132
9133 /* VEPA is now default bridge, so return 0 */
9134 return 0;
Neerav Parikh51616012015-02-06 08:52:14 +00009135}
9136
9137/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009138 * i40e_add_vsi - Add a VSI to the switch
9139 * @vsi: the VSI being configured
9140 *
9141 * This initializes a VSI context depending on the VSI type to be added and
9142 * passes it down to the add_vsi aq command.
9143 **/
9144static int i40e_add_vsi(struct i40e_vsi *vsi)
9145{
9146 int ret = -ENODEV;
Kiran Patil21659032015-09-30 14:09:03 -04009147 u8 laa_macaddr[ETH_ALEN];
9148 bool found_laa_mac_filter = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009149 struct i40e_pf *pf = vsi->back;
9150 struct i40e_hw *hw = &pf->hw;
9151 struct i40e_vsi_context ctxt;
Kiran Patil21659032015-09-30 14:09:03 -04009152 struct i40e_mac_filter *f, *ftmp;
9153
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009154 u8 enabled_tc = 0x1; /* TC0 enabled */
9155 int f_count = 0;
9156
9157 memset(&ctxt, 0, sizeof(ctxt));
9158 switch (vsi->type) {
9159 case I40E_VSI_MAIN:
9160 /* The PF's main VSI is already setup as part of the
9161 * device initialization, so we'll not bother with
9162 * the add_vsi call, but we will retrieve the current
9163 * VSI context.
9164 */
9165 ctxt.seid = pf->main_vsi_seid;
9166 ctxt.pf_num = pf->hw.pf_id;
9167 ctxt.vf_num = 0;
9168 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
9169 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
9170 if (ret) {
9171 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009172 "couldn't get PF vsi config, err %s aq_err %s\n",
9173 i40e_stat_str(&pf->hw, ret),
9174 i40e_aq_str(&pf->hw,
9175 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009176 return -ENOENT;
9177 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009178 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009179 vsi->info.valid_sections = 0;
9180
9181 vsi->seid = ctxt.seid;
9182 vsi->id = ctxt.vsi_number;
9183
9184 enabled_tc = i40e_pf_get_tc_map(pf);
9185
9186 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009187 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
9188 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009189 memset(&ctxt, 0, sizeof(ctxt));
9190 ctxt.seid = pf->main_vsi_seid;
9191 ctxt.pf_num = pf->hw.pf_id;
9192 ctxt.vf_num = 0;
9193 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
9194 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
9195 if (ret) {
9196 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009197 "update vsi failed, err %s aq_err %s\n",
9198 i40e_stat_str(&pf->hw, ret),
9199 i40e_aq_str(&pf->hw,
9200 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009201 ret = -ENOENT;
9202 goto err;
9203 }
9204 /* update the local VSI info queue map */
9205 i40e_vsi_update_queue_map(vsi, &ctxt);
9206 vsi->info.valid_sections = 0;
9207 } else {
9208 /* Default/Main VSI is only enabled for TC0
9209 * reconfigure it to enable all TCs that are
9210 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009211 * For MFP case the iSCSI PF would use this
9212 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009213 */
9214 ret = i40e_vsi_config_tc(vsi, enabled_tc);
9215 if (ret) {
9216 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009217 "failed to configure TCs for main VSI tc_map 0x%08x, err %s aq_err %s\n",
9218 enabled_tc,
9219 i40e_stat_str(&pf->hw, ret),
9220 i40e_aq_str(&pf->hw,
9221 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009222 ret = -ENOENT;
9223 }
9224 }
9225 break;
9226
9227 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009228 ctxt.pf_num = hw->pf_id;
9229 ctxt.vf_num = 0;
9230 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009231 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009232 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009233 if ((pf->flags & I40E_FLAG_VEB_MODE_ENABLED) &&
9234 (i40e_is_vsi_uplink_mode_veb(vsi))) {
Neerav Parikh51616012015-02-06 08:52:14 +00009235 ctxt.info.valid_sections |=
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009236 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
Neerav Parikh51616012015-02-06 08:52:14 +00009237 ctxt.info.switch_id =
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009238 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Neerav Parikh51616012015-02-06 08:52:14 +00009239 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009240 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009241 break;
9242
9243 case I40E_VSI_VMDQ2:
9244 ctxt.pf_num = hw->pf_id;
9245 ctxt.vf_num = 0;
9246 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009247 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009248 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
9249
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009250 /* This VSI is connected to VEB so the switch_id
9251 * should be set to zero by default.
9252 */
Neerav Parikh51616012015-02-06 08:52:14 +00009253 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9254 ctxt.info.valid_sections |=
9255 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9256 ctxt.info.switch_id =
9257 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9258 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009259
9260 /* Setup the VSI tx/rx queue map for TC0 only for now */
9261 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9262 break;
9263
9264 case I40E_VSI_SRIOV:
9265 ctxt.pf_num = hw->pf_id;
9266 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
9267 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009268 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009269 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
9270
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009271 /* This VSI is connected to VEB so the switch_id
9272 * should be set to zero by default.
9273 */
Neerav Parikh51616012015-02-06 08:52:14 +00009274 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9275 ctxt.info.valid_sections |=
9276 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9277 ctxt.info.switch_id =
9278 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9279 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009280
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009281 if (vsi->back->flags & I40E_FLAG_IWARP_ENABLED) {
9282 ctxt.info.valid_sections |=
9283 cpu_to_le16(I40E_AQ_VSI_PROP_QUEUE_OPT_VALID);
9284 ctxt.info.queueing_opt_flags |=
Ashish Shah4b28cdb2016-05-03 15:13:17 -07009285 (I40E_AQ_VSI_QUE_OPT_TCP_ENA |
9286 I40E_AQ_VSI_QUE_OPT_RSS_LUT_VSI);
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009287 }
9288
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009289 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
9290 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00009291 if (pf->vf[vsi->vf_id].spoofchk) {
9292 ctxt.info.valid_sections |=
9293 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
9294 ctxt.info.sec_flags |=
9295 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
9296 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
9297 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009298 /* Setup the VSI tx/rx queue map for TC0 only for now */
9299 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9300 break;
9301
Vasu Dev38e00432014-08-01 13:27:03 -07009302#ifdef I40E_FCOE
9303 case I40E_VSI_FCOE:
9304 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
9305 if (ret) {
9306 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
9307 return ret;
9308 }
9309 break;
9310
9311#endif /* I40E_FCOE */
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -06009312 case I40E_VSI_IWARP:
9313 /* send down message to iWARP */
9314 break;
9315
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009316 default:
9317 return -ENODEV;
9318 }
9319
9320 if (vsi->type != I40E_VSI_MAIN) {
9321 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
9322 if (ret) {
9323 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009324 "add vsi failed, err %s aq_err %s\n",
9325 i40e_stat_str(&pf->hw, ret),
9326 i40e_aq_str(&pf->hw,
9327 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009328 ret = -ENOENT;
9329 goto err;
9330 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009331 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009332 vsi->info.valid_sections = 0;
9333 vsi->seid = ctxt.seid;
9334 vsi->id = ctxt.vsi_number;
9335 }
9336
Kiran Patil21659032015-09-30 14:09:03 -04009337 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009338 /* If macvlan filters already exist, force them to get loaded */
9339 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
9340 f->changed = true;
9341 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00009342
Kiran Patil21659032015-09-30 14:09:03 -04009343 /* Expected to have only one MAC filter entry for LAA in list */
Shannon Nelson6252c7e2014-06-04 01:23:23 +00009344 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Kiran Patil21659032015-09-30 14:09:03 -04009345 ether_addr_copy(laa_macaddr, f->macaddr);
9346 found_laa_mac_filter = true;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00009347 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009348 }
Kiran Patil21659032015-09-30 14:09:03 -04009349 spin_unlock_bh(&vsi->mac_filter_list_lock);
9350
9351 if (found_laa_mac_filter) {
9352 struct i40e_aqc_remove_macvlan_element_data element;
9353
9354 memset(&element, 0, sizeof(element));
9355 ether_addr_copy(element.mac_addr, laa_macaddr);
9356 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
9357 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
9358 &element, 1, NULL);
9359 if (ret) {
9360 /* some older FW has a different default */
9361 element.flags |=
9362 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
9363 i40e_aq_remove_macvlan(hw, vsi->seid,
9364 &element, 1, NULL);
9365 }
9366
9367 i40e_aq_mac_address_write(hw,
9368 I40E_AQC_WRITE_TYPE_LAA_WOL,
9369 laa_macaddr, NULL);
9370 }
9371
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009372 if (f_count) {
9373 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
9374 pf->flags |= I40E_FLAG_FILTER_SYNC;
9375 }
9376
9377 /* Update VSI BW information */
9378 ret = i40e_vsi_get_bw_info(vsi);
9379 if (ret) {
9380 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009381 "couldn't get vsi bw info, err %s aq_err %s\n",
9382 i40e_stat_str(&pf->hw, ret),
9383 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009384 /* VSI is already added so not tearing that up */
9385 ret = 0;
9386 }
9387
9388err:
9389 return ret;
9390}
9391
9392/**
9393 * i40e_vsi_release - Delete a VSI and free its resources
9394 * @vsi: the VSI being removed
9395 *
9396 * Returns 0 on success or < 0 on error
9397 **/
9398int i40e_vsi_release(struct i40e_vsi *vsi)
9399{
9400 struct i40e_mac_filter *f, *ftmp;
9401 struct i40e_veb *veb = NULL;
9402 struct i40e_pf *pf;
9403 u16 uplink_seid;
9404 int i, n;
9405
9406 pf = vsi->back;
9407
9408 /* release of a VEB-owner or last VSI is not allowed */
9409 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
9410 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
9411 vsi->seid, vsi->uplink_seid);
9412 return -ENODEV;
9413 }
9414 if (vsi == pf->vsi[pf->lan_vsi] &&
9415 !test_bit(__I40E_DOWN, &pf->state)) {
9416 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
9417 return -ENODEV;
9418 }
9419
9420 uplink_seid = vsi->uplink_seid;
9421 if (vsi->type != I40E_VSI_SRIOV) {
9422 if (vsi->netdev_registered) {
9423 vsi->netdev_registered = false;
9424 if (vsi->netdev) {
9425 /* results in a call to i40e_close() */
9426 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009427 }
9428 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00009429 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009430 }
9431 i40e_vsi_disable_irq(vsi);
9432 }
9433
Kiran Patil21659032015-09-30 14:09:03 -04009434 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009435 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
9436 i40e_del_filter(vsi, f->macaddr, f->vlan,
9437 f->is_vf, f->is_netdev);
Kiran Patil21659032015-09-30 14:09:03 -04009438 spin_unlock_bh(&vsi->mac_filter_list_lock);
9439
Jesse Brandeburg17652c62015-11-05 17:01:02 -08009440 i40e_sync_vsi_filters(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009441
9442 i40e_vsi_delete(vsi);
9443 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00009444 if (vsi->netdev) {
9445 free_netdev(vsi->netdev);
9446 vsi->netdev = NULL;
9447 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009448 i40e_vsi_clear_rings(vsi);
9449 i40e_vsi_clear(vsi);
9450
9451 /* If this was the last thing on the VEB, except for the
9452 * controlling VSI, remove the VEB, which puts the controlling
9453 * VSI onto the next level down in the switch.
9454 *
9455 * Well, okay, there's one more exception here: don't remove
9456 * the orphan VEBs yet. We'll wait for an explicit remove request
9457 * from up the network stack.
9458 */
Mitch Williams505682c2014-05-20 08:01:37 +00009459 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009460 if (pf->vsi[i] &&
9461 pf->vsi[i]->uplink_seid == uplink_seid &&
9462 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9463 n++; /* count the VSIs */
9464 }
9465 }
9466 for (i = 0; i < I40E_MAX_VEB; i++) {
9467 if (!pf->veb[i])
9468 continue;
9469 if (pf->veb[i]->uplink_seid == uplink_seid)
9470 n++; /* count the VEBs */
9471 if (pf->veb[i]->seid == uplink_seid)
9472 veb = pf->veb[i];
9473 }
9474 if (n == 0 && veb && veb->uplink_seid != 0)
9475 i40e_veb_release(veb);
9476
9477 return 0;
9478}
9479
9480/**
9481 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
9482 * @vsi: ptr to the VSI
9483 *
9484 * This should only be called after i40e_vsi_mem_alloc() which allocates the
9485 * corresponding SW VSI structure and initializes num_queue_pairs for the
9486 * newly allocated VSI.
9487 *
9488 * Returns 0 on success or negative on failure
9489 **/
9490static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
9491{
9492 int ret = -ENOENT;
9493 struct i40e_pf *pf = vsi->back;
9494
Alexander Duyck493fb302013-09-28 07:01:44 +00009495 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009496 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
9497 vsi->seid);
9498 return -EEXIST;
9499 }
9500
9501 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00009502 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009503 vsi->seid, vsi->base_vector);
9504 return -EEXIST;
9505 }
9506
Greg Rose90e04072014-03-06 08:59:57 +00009507 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009508 if (ret) {
9509 dev_info(&pf->pdev->dev,
9510 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
9511 vsi->num_q_vectors, vsi->seid, ret);
9512 vsi->num_q_vectors = 0;
9513 goto vector_setup_out;
9514 }
9515
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04009516 /* In Legacy mode, we do not have to get any other vector since we
9517 * piggyback on the misc/ICR0 for queue interrupts.
9518 */
9519 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
9520 return ret;
Shannon Nelson958a3e32013-09-28 07:13:28 +00009521 if (vsi->num_q_vectors)
9522 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
9523 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009524 if (vsi->base_vector < 0) {
9525 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00009526 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
9527 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009528 i40e_vsi_free_q_vectors(vsi);
9529 ret = -ENOENT;
9530 goto vector_setup_out;
9531 }
9532
9533vector_setup_out:
9534 return ret;
9535}
9536
9537/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009538 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
9539 * @vsi: pointer to the vsi.
9540 *
9541 * This re-allocates a vsi's queue resources.
9542 *
9543 * Returns pointer to the successfully allocated and configured VSI sw struct
9544 * on success, otherwise returns NULL on failure.
9545 **/
9546static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
9547{
John Underwoodf5340392016-02-18 09:19:24 -08009548 struct i40e_pf *pf;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009549 u8 enabled_tc;
9550 int ret;
9551
John Underwoodf5340392016-02-18 09:19:24 -08009552 if (!vsi)
9553 return NULL;
9554
9555 pf = vsi->back;
9556
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009557 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
9558 i40e_vsi_clear_rings(vsi);
9559
9560 i40e_vsi_free_arrays(vsi, false);
9561 i40e_set_num_rings_in_vsi(vsi);
9562 ret = i40e_vsi_alloc_arrays(vsi, false);
9563 if (ret)
9564 goto err_vsi;
9565
9566 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
9567 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009568 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009569 "failed to get tracking for %d queues for VSI %d err %d\n",
Shannon Nelson049a2be2014-10-17 03:14:50 +00009570 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009571 goto err_vsi;
9572 }
9573 vsi->base_queue = ret;
9574
9575 /* Update the FW view of the VSI. Force a reset of TC and queue
9576 * layout configurations.
9577 */
9578 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
9579 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
9580 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
9581 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
9582
9583 /* assign it some queues */
9584 ret = i40e_alloc_rings(vsi);
9585 if (ret)
9586 goto err_rings;
9587
9588 /* map all of the rings to the q_vectors */
9589 i40e_vsi_map_rings_to_vectors(vsi);
9590 return vsi;
9591
9592err_rings:
9593 i40e_vsi_free_q_vectors(vsi);
9594 if (vsi->netdev_registered) {
9595 vsi->netdev_registered = false;
9596 unregister_netdev(vsi->netdev);
9597 free_netdev(vsi->netdev);
9598 vsi->netdev = NULL;
9599 }
9600 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9601err_vsi:
9602 i40e_vsi_clear(vsi);
9603 return NULL;
9604}
9605
9606/**
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -05009607 * i40e_macaddr_init - explicitly write the mac address filters.
9608 *
9609 * @vsi: pointer to the vsi.
9610 * @macaddr: the MAC address
9611 *
9612 * This is needed when the macaddr has been obtained by other
9613 * means than the default, e.g., from Open Firmware or IDPROM.
9614 * Returns 0 on success, negative on failure
9615 **/
9616static int i40e_macaddr_init(struct i40e_vsi *vsi, u8 *macaddr)
9617{
9618 int ret;
9619 struct i40e_aqc_add_macvlan_element_data element;
9620
9621 ret = i40e_aq_mac_address_write(&vsi->back->hw,
9622 I40E_AQC_WRITE_TYPE_LAA_WOL,
9623 macaddr, NULL);
9624 if (ret) {
9625 dev_info(&vsi->back->pdev->dev,
9626 "Addr change for VSI failed: %d\n", ret);
9627 return -EADDRNOTAVAIL;
9628 }
9629
9630 memset(&element, 0, sizeof(element));
9631 ether_addr_copy(element.mac_addr, macaddr);
9632 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
9633 ret = i40e_aq_add_macvlan(&vsi->back->hw, vsi->seid, &element, 1, NULL);
9634 if (ret) {
9635 dev_info(&vsi->back->pdev->dev,
9636 "add filter failed err %s aq_err %s\n",
9637 i40e_stat_str(&vsi->back->hw, ret),
9638 i40e_aq_str(&vsi->back->hw,
9639 vsi->back->hw.aq.asq_last_status));
9640 }
9641 return ret;
9642}
9643
9644/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009645 * i40e_vsi_setup - Set up a VSI by a given type
9646 * @pf: board private structure
9647 * @type: VSI type
9648 * @uplink_seid: the switch element to link to
9649 * @param1: usage depends upon VSI type. For VF types, indicates VF id
9650 *
9651 * This allocates the sw VSI structure and its queue resources, then add a VSI
9652 * to the identified VEB.
9653 *
9654 * Returns pointer to the successfully allocated and configure VSI sw struct on
9655 * success, otherwise returns NULL on failure.
9656 **/
9657struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
9658 u16 uplink_seid, u32 param1)
9659{
9660 struct i40e_vsi *vsi = NULL;
9661 struct i40e_veb *veb = NULL;
9662 int ret, i;
9663 int v_idx;
9664
9665 /* The requested uplink_seid must be either
9666 * - the PF's port seid
9667 * no VEB is needed because this is the PF
9668 * or this is a Flow Director special case VSI
9669 * - seid of an existing VEB
9670 * - seid of a VSI that owns an existing VEB
9671 * - seid of a VSI that doesn't own a VEB
9672 * a new VEB is created and the VSI becomes the owner
9673 * - seid of the PF VSI, which is what creates the first VEB
9674 * this is a special case of the previous
9675 *
9676 * Find which uplink_seid we were given and create a new VEB if needed
9677 */
9678 for (i = 0; i < I40E_MAX_VEB; i++) {
9679 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
9680 veb = pf->veb[i];
9681 break;
9682 }
9683 }
9684
9685 if (!veb && uplink_seid != pf->mac_seid) {
9686
Mitch Williams505682c2014-05-20 08:01:37 +00009687 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009688 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
9689 vsi = pf->vsi[i];
9690 break;
9691 }
9692 }
9693 if (!vsi) {
9694 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
9695 uplink_seid);
9696 return NULL;
9697 }
9698
9699 if (vsi->uplink_seid == pf->mac_seid)
9700 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
9701 vsi->tc_config.enabled_tc);
9702 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
9703 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
9704 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009705 if (veb) {
9706 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
9707 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04009708 "New VSI creation error, uplink seid of LAN VSI expected.\n");
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009709 return NULL;
9710 }
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -04009711 /* We come up by default in VEPA mode if SRIOV is not
9712 * already enabled, in which case we can't force VEPA
9713 * mode.
9714 */
9715 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
9716 veb->bridge_mode = BRIDGE_MODE_VEPA;
9717 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
9718 }
Neerav Parikh51616012015-02-06 08:52:14 +00009719 i40e_config_bridge_mode(veb);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009720 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009721 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9722 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9723 veb = pf->veb[i];
9724 }
9725 if (!veb) {
9726 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
9727 return NULL;
9728 }
9729
9730 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
9731 uplink_seid = veb->seid;
9732 }
9733
9734 /* get vsi sw struct */
9735 v_idx = i40e_vsi_mem_alloc(pf, type);
9736 if (v_idx < 0)
9737 goto err_alloc;
9738 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009739 if (!vsi)
9740 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009741 vsi->type = type;
9742 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
9743
9744 if (type == I40E_VSI_MAIN)
9745 pf->lan_vsi = v_idx;
9746 else if (type == I40E_VSI_SRIOV)
9747 vsi->vf_id = param1;
9748 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009749 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
9750 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009751 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009752 dev_info(&pf->pdev->dev,
9753 "failed to get tracking for %d queues for VSI %d err=%d\n",
9754 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009755 goto err_vsi;
9756 }
9757 vsi->base_queue = ret;
9758
9759 /* get a VSI from the hardware */
9760 vsi->uplink_seid = uplink_seid;
9761 ret = i40e_add_vsi(vsi);
9762 if (ret)
9763 goto err_vsi;
9764
9765 switch (vsi->type) {
9766 /* setup the netdev if needed */
9767 case I40E_VSI_MAIN:
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -05009768 /* Apply relevant filters if a platform-specific mac
9769 * address was selected.
9770 */
9771 if (!!(pf->flags & I40E_FLAG_PF_MAC)) {
9772 ret = i40e_macaddr_init(vsi, pf->hw.mac.addr);
9773 if (ret) {
9774 dev_warn(&pf->pdev->dev,
9775 "could not set up macaddr; err %d\n",
9776 ret);
9777 }
9778 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009779 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07009780 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009781 ret = i40e_config_netdev(vsi);
9782 if (ret)
9783 goto err_netdev;
9784 ret = register_netdev(vsi->netdev);
9785 if (ret)
9786 goto err_netdev;
9787 vsi->netdev_registered = true;
9788 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009789#ifdef CONFIG_I40E_DCB
9790 /* Setup DCB netlink interface */
9791 i40e_dcbnl_setup(vsi);
9792#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009793 /* fall through */
9794
9795 case I40E_VSI_FDIR:
9796 /* set up vectors and rings if needed */
9797 ret = i40e_vsi_setup_vectors(vsi);
9798 if (ret)
9799 goto err_msix;
9800
9801 ret = i40e_alloc_rings(vsi);
9802 if (ret)
9803 goto err_rings;
9804
9805 /* map all of the rings to the q_vectors */
9806 i40e_vsi_map_rings_to_vectors(vsi);
9807
9808 i40e_vsi_reset_stats(vsi);
9809 break;
9810
9811 default:
9812 /* no netdev or rings for the other VSI types */
9813 break;
9814 }
9815
Anjali Singhai Jaine25d00b2015-06-23 19:00:04 -04009816 if ((pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) &&
9817 (vsi->type == I40E_VSI_VMDQ2)) {
9818 ret = i40e_vsi_config_rss(vsi);
9819 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009820 return vsi;
9821
9822err_rings:
9823 i40e_vsi_free_q_vectors(vsi);
9824err_msix:
9825 if (vsi->netdev_registered) {
9826 vsi->netdev_registered = false;
9827 unregister_netdev(vsi->netdev);
9828 free_netdev(vsi->netdev);
9829 vsi->netdev = NULL;
9830 }
9831err_netdev:
9832 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9833err_vsi:
9834 i40e_vsi_clear(vsi);
9835err_alloc:
9836 return NULL;
9837}
9838
9839/**
9840 * i40e_veb_get_bw_info - Query VEB BW information
9841 * @veb: the veb to query
9842 *
9843 * Query the Tx scheduler BW configuration data for given VEB
9844 **/
9845static int i40e_veb_get_bw_info(struct i40e_veb *veb)
9846{
9847 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
9848 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
9849 struct i40e_pf *pf = veb->pf;
9850 struct i40e_hw *hw = &pf->hw;
9851 u32 tc_bw_max;
9852 int ret = 0;
9853 int i;
9854
9855 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
9856 &bw_data, NULL);
9857 if (ret) {
9858 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009859 "query veb bw config failed, err %s aq_err %s\n",
9860 i40e_stat_str(&pf->hw, ret),
9861 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009862 goto out;
9863 }
9864
9865 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
9866 &ets_data, NULL);
9867 if (ret) {
9868 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009869 "query veb bw ets config failed, err %s aq_err %s\n",
9870 i40e_stat_str(&pf->hw, ret),
9871 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009872 goto out;
9873 }
9874
9875 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
9876 veb->bw_max_quanta = ets_data.tc_bw_max;
9877 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00009878 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009879 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
9880 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
9881 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
9882 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
9883 veb->bw_tc_limit_credits[i] =
9884 le16_to_cpu(bw_data.tc_bw_limits[i]);
9885 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
9886 }
9887
9888out:
9889 return ret;
9890}
9891
9892/**
9893 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
9894 * @pf: board private structure
9895 *
9896 * On error: returns error code (negative)
9897 * On success: returns vsi index in PF (positive)
9898 **/
9899static int i40e_veb_mem_alloc(struct i40e_pf *pf)
9900{
9901 int ret = -ENOENT;
9902 struct i40e_veb *veb;
9903 int i;
9904
9905 /* Need to protect the allocation of switch elements at the PF level */
9906 mutex_lock(&pf->switch_mutex);
9907
9908 /* VEB list may be fragmented if VEB creation/destruction has
9909 * been happening. We can afford to do a quick scan to look
9910 * for any free slots in the list.
9911 *
9912 * find next empty veb slot, looping back around if necessary
9913 */
9914 i = 0;
9915 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
9916 i++;
9917 if (i >= I40E_MAX_VEB) {
9918 ret = -ENOMEM;
9919 goto err_alloc_veb; /* out of VEB slots! */
9920 }
9921
9922 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
9923 if (!veb) {
9924 ret = -ENOMEM;
9925 goto err_alloc_veb;
9926 }
9927 veb->pf = pf;
9928 veb->idx = i;
9929 veb->enabled_tc = 1;
9930
9931 pf->veb[i] = veb;
9932 ret = i;
9933err_alloc_veb:
9934 mutex_unlock(&pf->switch_mutex);
9935 return ret;
9936}
9937
9938/**
9939 * i40e_switch_branch_release - Delete a branch of the switch tree
9940 * @branch: where to start deleting
9941 *
9942 * This uses recursion to find the tips of the branch to be
9943 * removed, deleting until we get back to and can delete this VEB.
9944 **/
9945static void i40e_switch_branch_release(struct i40e_veb *branch)
9946{
9947 struct i40e_pf *pf = branch->pf;
9948 u16 branch_seid = branch->seid;
9949 u16 veb_idx = branch->idx;
9950 int i;
9951
9952 /* release any VEBs on this VEB - RECURSION */
9953 for (i = 0; i < I40E_MAX_VEB; i++) {
9954 if (!pf->veb[i])
9955 continue;
9956 if (pf->veb[i]->uplink_seid == branch->seid)
9957 i40e_switch_branch_release(pf->veb[i]);
9958 }
9959
9960 /* Release the VSIs on this VEB, but not the owner VSI.
9961 *
9962 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
9963 * the VEB itself, so don't use (*branch) after this loop.
9964 */
Mitch Williams505682c2014-05-20 08:01:37 +00009965 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009966 if (!pf->vsi[i])
9967 continue;
9968 if (pf->vsi[i]->uplink_seid == branch_seid &&
9969 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9970 i40e_vsi_release(pf->vsi[i]);
9971 }
9972 }
9973
9974 /* There's one corner case where the VEB might not have been
9975 * removed, so double check it here and remove it if needed.
9976 * This case happens if the veb was created from the debugfs
9977 * commands and no VSIs were added to it.
9978 */
9979 if (pf->veb[veb_idx])
9980 i40e_veb_release(pf->veb[veb_idx]);
9981}
9982
9983/**
9984 * i40e_veb_clear - remove veb struct
9985 * @veb: the veb to remove
9986 **/
9987static void i40e_veb_clear(struct i40e_veb *veb)
9988{
9989 if (!veb)
9990 return;
9991
9992 if (veb->pf) {
9993 struct i40e_pf *pf = veb->pf;
9994
9995 mutex_lock(&pf->switch_mutex);
9996 if (pf->veb[veb->idx] == veb)
9997 pf->veb[veb->idx] = NULL;
9998 mutex_unlock(&pf->switch_mutex);
9999 }
10000
10001 kfree(veb);
10002}
10003
10004/**
10005 * i40e_veb_release - Delete a VEB and free its resources
10006 * @veb: the VEB being removed
10007 **/
10008void i40e_veb_release(struct i40e_veb *veb)
10009{
10010 struct i40e_vsi *vsi = NULL;
10011 struct i40e_pf *pf;
10012 int i, n = 0;
10013
10014 pf = veb->pf;
10015
10016 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +000010017 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010018 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
10019 n++;
10020 vsi = pf->vsi[i];
10021 }
10022 }
10023 if (n != 1) {
10024 dev_info(&pf->pdev->dev,
10025 "can't remove VEB %d with %d VSIs left\n",
10026 veb->seid, n);
10027 return;
10028 }
10029
10030 /* move the remaining VSI to uplink veb */
10031 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
10032 if (veb->uplink_seid) {
10033 vsi->uplink_seid = veb->uplink_seid;
10034 if (veb->uplink_seid == pf->mac_seid)
10035 vsi->veb_idx = I40E_NO_VEB;
10036 else
10037 vsi->veb_idx = veb->veb_idx;
10038 } else {
10039 /* floating VEB */
10040 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
10041 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
10042 }
10043
10044 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
10045 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010046}
10047
10048/**
10049 * i40e_add_veb - create the VEB in the switch
10050 * @veb: the VEB to be instantiated
10051 * @vsi: the controlling VSI
10052 **/
10053static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
10054{
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010055 struct i40e_pf *pf = veb->pf;
Anjali Singhai Jain92faef82015-07-28 13:02:00 -040010056 bool is_default = veb->pf->cur_promisc;
Shannon Nelson66fc3602016-01-13 16:51:42 -080010057 bool enable_stats = !!(pf->flags & I40E_FLAG_VEB_STATS_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010058 int ret;
10059
10060 /* get a VEB from the hardware */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010061 ret = i40e_aq_add_veb(&pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +000010062 veb->enabled_tc, is_default,
Shannon Nelson66fc3602016-01-13 16:51:42 -080010063 &veb->seid, enable_stats, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010064 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010065 dev_info(&pf->pdev->dev,
10066 "couldn't add VEB, err %s aq_err %s\n",
10067 i40e_stat_str(&pf->hw, ret),
10068 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010069 return -EPERM;
10070 }
10071
10072 /* get statistics counter */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010073 ret = i40e_aq_get_veb_parameters(&pf->hw, veb->seid, NULL, NULL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010074 &veb->stats_idx, NULL, NULL, NULL);
10075 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010076 dev_info(&pf->pdev->dev,
10077 "couldn't get VEB statistics idx, err %s aq_err %s\n",
10078 i40e_stat_str(&pf->hw, ret),
10079 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010080 return -EPERM;
10081 }
10082 ret = i40e_veb_get_bw_info(veb);
10083 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010084 dev_info(&pf->pdev->dev,
10085 "couldn't get VEB bw info, err %s aq_err %s\n",
10086 i40e_stat_str(&pf->hw, ret),
10087 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
10088 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010089 return -ENOENT;
10090 }
10091
10092 vsi->uplink_seid = veb->seid;
10093 vsi->veb_idx = veb->idx;
10094 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
10095
10096 return 0;
10097}
10098
10099/**
10100 * i40e_veb_setup - Set up a VEB
10101 * @pf: board private structure
10102 * @flags: VEB setup flags
10103 * @uplink_seid: the switch element to link to
10104 * @vsi_seid: the initial VSI seid
10105 * @enabled_tc: Enabled TC bit-map
10106 *
10107 * This allocates the sw VEB structure and links it into the switch
10108 * It is possible and legal for this to be a duplicate of an already
10109 * existing VEB. It is also possible for both uplink and vsi seids
10110 * to be zero, in order to create a floating VEB.
10111 *
10112 * Returns pointer to the successfully allocated VEB sw struct on
10113 * success, otherwise returns NULL on failure.
10114 **/
10115struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
10116 u16 uplink_seid, u16 vsi_seid,
10117 u8 enabled_tc)
10118{
10119 struct i40e_veb *veb, *uplink_veb = NULL;
10120 int vsi_idx, veb_idx;
10121 int ret;
10122
10123 /* if one seid is 0, the other must be 0 to create a floating relay */
10124 if ((uplink_seid == 0 || vsi_seid == 0) &&
10125 (uplink_seid + vsi_seid != 0)) {
10126 dev_info(&pf->pdev->dev,
10127 "one, not both seid's are 0: uplink=%d vsi=%d\n",
10128 uplink_seid, vsi_seid);
10129 return NULL;
10130 }
10131
10132 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +000010133 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010134 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
10135 break;
Mitch Williams505682c2014-05-20 08:01:37 +000010136 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010137 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
10138 vsi_seid);
10139 return NULL;
10140 }
10141
10142 if (uplink_seid && uplink_seid != pf->mac_seid) {
10143 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
10144 if (pf->veb[veb_idx] &&
10145 pf->veb[veb_idx]->seid == uplink_seid) {
10146 uplink_veb = pf->veb[veb_idx];
10147 break;
10148 }
10149 }
10150 if (!uplink_veb) {
10151 dev_info(&pf->pdev->dev,
10152 "uplink seid %d not found\n", uplink_seid);
10153 return NULL;
10154 }
10155 }
10156
10157 /* get veb sw struct */
10158 veb_idx = i40e_veb_mem_alloc(pf);
10159 if (veb_idx < 0)
10160 goto err_alloc;
10161 veb = pf->veb[veb_idx];
10162 veb->flags = flags;
10163 veb->uplink_seid = uplink_seid;
10164 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
10165 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
10166
10167 /* create the VEB in the switch */
10168 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
10169 if (ret)
10170 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +000010171 if (vsi_idx == pf->lan_vsi)
10172 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010173
10174 return veb;
10175
10176err_veb:
10177 i40e_veb_clear(veb);
10178err_alloc:
10179 return NULL;
10180}
10181
10182/**
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010183 * i40e_setup_pf_switch_element - set PF vars based on switch type
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010184 * @pf: board private structure
10185 * @ele: element we are building info from
10186 * @num_reported: total number of elements
10187 * @printconfig: should we print the contents
10188 *
10189 * helper function to assist in extracting a few useful SEID values.
10190 **/
10191static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
10192 struct i40e_aqc_switch_config_element_resp *ele,
10193 u16 num_reported, bool printconfig)
10194{
10195 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
10196 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
10197 u8 element_type = ele->element_type;
10198 u16 seid = le16_to_cpu(ele->seid);
10199
10200 if (printconfig)
10201 dev_info(&pf->pdev->dev,
10202 "type=%d seid=%d uplink=%d downlink=%d\n",
10203 element_type, seid, uplink_seid, downlink_seid);
10204
10205 switch (element_type) {
10206 case I40E_SWITCH_ELEMENT_TYPE_MAC:
10207 pf->mac_seid = seid;
10208 break;
10209 case I40E_SWITCH_ELEMENT_TYPE_VEB:
10210 /* Main VEB? */
10211 if (uplink_seid != pf->mac_seid)
10212 break;
10213 if (pf->lan_veb == I40E_NO_VEB) {
10214 int v;
10215
10216 /* find existing or else empty VEB */
10217 for (v = 0; v < I40E_MAX_VEB; v++) {
10218 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
10219 pf->lan_veb = v;
10220 break;
10221 }
10222 }
10223 if (pf->lan_veb == I40E_NO_VEB) {
10224 v = i40e_veb_mem_alloc(pf);
10225 if (v < 0)
10226 break;
10227 pf->lan_veb = v;
10228 }
10229 }
10230
10231 pf->veb[pf->lan_veb]->seid = seid;
10232 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
10233 pf->veb[pf->lan_veb]->pf = pf;
10234 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
10235 break;
10236 case I40E_SWITCH_ELEMENT_TYPE_VSI:
10237 if (num_reported != 1)
10238 break;
10239 /* This is immediately after a reset so we can assume this is
10240 * the PF's VSI
10241 */
10242 pf->mac_seid = uplink_seid;
10243 pf->pf_seid = downlink_seid;
10244 pf->main_vsi_seid = seid;
10245 if (printconfig)
10246 dev_info(&pf->pdev->dev,
10247 "pf_seid=%d main_vsi_seid=%d\n",
10248 pf->pf_seid, pf->main_vsi_seid);
10249 break;
10250 case I40E_SWITCH_ELEMENT_TYPE_PF:
10251 case I40E_SWITCH_ELEMENT_TYPE_VF:
10252 case I40E_SWITCH_ELEMENT_TYPE_EMP:
10253 case I40E_SWITCH_ELEMENT_TYPE_BMC:
10254 case I40E_SWITCH_ELEMENT_TYPE_PE:
10255 case I40E_SWITCH_ELEMENT_TYPE_PA:
10256 /* ignore these for now */
10257 break;
10258 default:
10259 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
10260 element_type, seid);
10261 break;
10262 }
10263}
10264
10265/**
10266 * i40e_fetch_switch_configuration - Get switch config from firmware
10267 * @pf: board private structure
10268 * @printconfig: should we print the contents
10269 *
10270 * Get the current switch configuration from the device and
10271 * extract a few useful SEID values.
10272 **/
10273int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
10274{
10275 struct i40e_aqc_get_switch_config_resp *sw_config;
10276 u16 next_seid = 0;
10277 int ret = 0;
10278 u8 *aq_buf;
10279 int i;
10280
10281 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
10282 if (!aq_buf)
10283 return -ENOMEM;
10284
10285 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
10286 do {
10287 u16 num_reported, num_total;
10288
10289 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
10290 I40E_AQ_LARGE_BUF,
10291 &next_seid, NULL);
10292 if (ret) {
10293 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010294 "get switch config failed err %s aq_err %s\n",
10295 i40e_stat_str(&pf->hw, ret),
10296 i40e_aq_str(&pf->hw,
10297 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010298 kfree(aq_buf);
10299 return -ENOENT;
10300 }
10301
10302 num_reported = le16_to_cpu(sw_config->header.num_reported);
10303 num_total = le16_to_cpu(sw_config->header.num_total);
10304
10305 if (printconfig)
10306 dev_info(&pf->pdev->dev,
10307 "header: %d reported %d total\n",
10308 num_reported, num_total);
10309
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010310 for (i = 0; i < num_reported; i++) {
10311 struct i40e_aqc_switch_config_element_resp *ele =
10312 &sw_config->element[i];
10313
10314 i40e_setup_pf_switch_element(pf, ele, num_reported,
10315 printconfig);
10316 }
10317 } while (next_seid != 0);
10318
10319 kfree(aq_buf);
10320 return ret;
10321}
10322
10323/**
10324 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
10325 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010326 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010327 *
10328 * Returns 0 on success, negative value on failure
10329 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010330static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010331{
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070010332 u16 flags = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010333 int ret;
10334
10335 /* find out what's out there already */
10336 ret = i40e_fetch_switch_configuration(pf, false);
10337 if (ret) {
10338 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010339 "couldn't fetch switch config, err %s aq_err %s\n",
10340 i40e_stat_str(&pf->hw, ret),
10341 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010342 return ret;
10343 }
10344 i40e_pf_reset_stats(pf);
10345
Anjali Singhai Jainb5569892016-05-03 15:13:12 -070010346 /* set the switch config bit for the whole device to
10347 * support limited promisc or true promisc
10348 * when user requests promisc. The default is limited
10349 * promisc.
10350 */
10351
10352 if ((pf->hw.pf_id == 0) &&
10353 !(pf->flags & I40E_FLAG_TRUE_PROMISC_SUPPORT))
10354 flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10355
10356 if (pf->hw.pf_id == 0) {
10357 u16 valid_flags;
10358
10359 valid_flags = I40E_AQ_SET_SWITCH_CFG_PROMISC;
10360 ret = i40e_aq_set_switch_config(&pf->hw, flags, valid_flags,
10361 NULL);
10362 if (ret && pf->hw.aq.asq_last_status != I40E_AQ_RC_ESRCH) {
10363 dev_info(&pf->pdev->dev,
10364 "couldn't set switch config bits, err %s aq_err %s\n",
10365 i40e_stat_str(&pf->hw, ret),
10366 i40e_aq_str(&pf->hw,
10367 pf->hw.aq.asq_last_status));
10368 /* not a fatal problem, just keep going */
10369 }
10370 }
10371
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010372 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010373 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010374 struct i40e_vsi *vsi = NULL;
10375 u16 uplink_seid;
10376
10377 /* Set up the PF VSI associated with the PF's main VSI
10378 * that is already in the HW switch
10379 */
10380 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
10381 uplink_seid = pf->veb[pf->lan_veb]->seid;
10382 else
10383 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010384 if (pf->lan_vsi == I40E_NO_VSI)
10385 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
10386 else if (reinit)
10387 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010388 if (!vsi) {
10389 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
10390 i40e_fdir_teardown(pf);
10391 return -EAGAIN;
10392 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010393 } else {
10394 /* force a reset of TC and queue layout configurations */
10395 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -040010396
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010397 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
10398 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
10399 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
10400 }
10401 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
10402
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010403 i40e_fdir_sb_setup(pf);
10404
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010405 /* Setup static PF queue filter control settings */
10406 ret = i40e_setup_pf_filter_control(pf);
10407 if (ret) {
10408 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
10409 ret);
10410 /* Failure here should not stop continuing other steps */
10411 }
10412
10413 /* enable RSS in the HW, even for only one queue, as the stack can use
10414 * the hash
10415 */
10416 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
Helin Zhang043dd652015-10-21 19:56:23 -040010417 i40e_pf_config_rss(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010418
10419 /* fill in link information and enable LSE reporting */
Catherine Sullivan0a862b42015-08-31 19:54:53 -040010420 i40e_update_link_info(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010421 i40e_link_event(pf);
10422
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010423 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010424 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
10425 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010426
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000010427 i40e_ptp_init(pf);
10428
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010429 return ret;
10430}
10431
10432/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010433 * i40e_determine_queue_usage - Work out queue distribution
10434 * @pf: board private structure
10435 **/
10436static void i40e_determine_queue_usage(struct i40e_pf *pf)
10437{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010438 int queues_left;
10439
10440 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -070010441#ifdef I40E_FCOE
10442 pf->num_fcoe_qps = 0;
10443#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010444
10445 /* Find the max queues to be put into basic use. We'll always be
10446 * using TC0, whether or not DCB is running, and TC0 will get the
10447 * big RSS set.
10448 */
10449 queues_left = pf->hw.func_caps.num_tx_qp;
10450
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010451 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +000010452 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010453 /* one qp for PF, no queues for anything else */
10454 queues_left = 0;
Helin Zhangacd65442015-10-26 19:44:28 -040010455 pf->alloc_rss_size = pf->num_lan_qps = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010456
10457 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010458 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060010459 I40E_FLAG_IWARP_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010460#ifdef I40E_FCOE
10461 I40E_FLAG_FCOE_ENABLED |
10462#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010463 I40E_FLAG_FD_SB_ENABLED |
10464 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010465 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010466 I40E_FLAG_SRIOV_ENABLED |
10467 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +000010468 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
10469 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +000010470 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010471 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +000010472 /* one qp for PF */
Helin Zhangacd65442015-10-26 19:44:28 -040010473 pf->alloc_rss_size = pf->num_lan_qps = 1;
Frank Zhang9aa7e932014-05-20 08:01:42 +000010474 queues_left -= pf->num_lan_qps;
10475
10476 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060010477 I40E_FLAG_IWARP_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010478#ifdef I40E_FCOE
10479 I40E_FLAG_FCOE_ENABLED |
10480#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +000010481 I40E_FLAG_FD_SB_ENABLED |
10482 I40E_FLAG_FD_ATR_ENABLED |
10483 I40E_FLAG_DCB_ENABLED |
10484 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010485 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010486 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010487 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010488 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010489 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010490 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
10491 }
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +000010492 pf->num_lan_qps = max_t(int, pf->rss_size_max,
10493 num_online_cpus());
10494 pf->num_lan_qps = min_t(int, pf->num_lan_qps,
10495 pf->hw.func_caps.num_tx_qp);
10496
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010497 queues_left -= pf->num_lan_qps;
10498 }
10499
Vasu Dev38e00432014-08-01 13:27:03 -070010500#ifdef I40E_FCOE
10501 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
10502 if (I40E_DEFAULT_FCOE <= queues_left) {
10503 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
10504 } else if (I40E_MINIMUM_FCOE <= queues_left) {
10505 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
10506 } else {
10507 pf->num_fcoe_qps = 0;
10508 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
10509 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
10510 }
10511
10512 queues_left -= pf->num_fcoe_qps;
10513 }
10514
10515#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010516 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
10517 if (queues_left > 1) {
10518 queues_left -= 1; /* save 1 queue for FD */
10519 } else {
10520 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
10521 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
10522 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010523 }
10524
10525 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10526 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010527 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
10528 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010529 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
10530 }
10531
10532 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
10533 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
10534 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
10535 (queues_left / pf->num_vmdq_qps));
10536 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
10537 }
10538
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +000010539 pf->queues_left = queues_left;
Neerav Parikh8279e492015-09-03 17:18:50 -040010540 dev_dbg(&pf->pdev->dev,
10541 "qs_avail=%d FD SB=%d lan_qs=%d lan_tc0=%d vf=%d*%d vmdq=%d*%d, remaining=%d\n",
10542 pf->hw.func_caps.num_tx_qp,
10543 !!(pf->flags & I40E_FLAG_FD_SB_ENABLED),
Helin Zhangacd65442015-10-26 19:44:28 -040010544 pf->num_lan_qps, pf->alloc_rss_size, pf->num_req_vfs,
10545 pf->num_vf_qps, pf->num_vmdq_vsis, pf->num_vmdq_qps,
10546 queues_left);
Vasu Dev38e00432014-08-01 13:27:03 -070010547#ifdef I40E_FCOE
Neerav Parikh8279e492015-09-03 17:18:50 -040010548 dev_dbg(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
Vasu Dev38e00432014-08-01 13:27:03 -070010549#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010550}
10551
10552/**
10553 * i40e_setup_pf_filter_control - Setup PF static filter control
10554 * @pf: PF to be setup
10555 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010556 * i40e_setup_pf_filter_control sets up a PF's initial filter control
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010557 * settings. If PE/FCoE are enabled then it will also set the per PF
10558 * based filter sizes required for them. It also enables Flow director,
10559 * ethertype and macvlan type filter settings for the pf.
10560 *
10561 * Returns 0 on success, negative on failure
10562 **/
10563static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
10564{
10565 struct i40e_filter_control_settings *settings = &pf->filter_settings;
10566
10567 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
10568
10569 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010570 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010571 settings->enable_fdir = true;
10572
10573 /* Ethtype and MACVLAN filters enabled for PF */
10574 settings->enable_ethtype = true;
10575 settings->enable_macvlan = true;
10576
10577 if (i40e_set_filter_control(&pf->hw, settings))
10578 return -ENOENT;
10579
10580 return 0;
10581}
10582
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010583#define INFO_STRING_LEN 255
Shannon Nelson7fd89542015-10-21 19:47:04 -040010584#define REMAIN(__x) (INFO_STRING_LEN - (__x))
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010585static void i40e_print_features(struct i40e_pf *pf)
10586{
10587 struct i40e_hw *hw = &pf->hw;
Joe Perches3b195842015-12-03 04:20:57 -080010588 char *buf;
10589 int i;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010590
Joe Perches3b195842015-12-03 04:20:57 -080010591 buf = kmalloc(INFO_STRING_LEN, GFP_KERNEL);
10592 if (!buf)
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010593 return;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010594
Joe Perches3b195842015-12-03 04:20:57 -080010595 i = snprintf(buf, INFO_STRING_LEN, "Features: PF-id[%d]", hw->pf_id);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010596#ifdef CONFIG_PCI_IOV
Joe Perches3b195842015-12-03 04:20:57 -080010597 i += snprintf(&buf[i], REMAIN(i), " VFs: %d", pf->num_req_vfs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010598#endif
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070010599 i += snprintf(&buf[i], REMAIN(i), " VSIs: %d QP: %d",
Shannon Nelson7fd89542015-10-21 19:47:04 -040010600 pf->hw.func_caps.num_vsis,
Jesse Brandeburg1a557afc2016-04-20 19:43:37 -070010601 pf->vsi[pf->lan_vsi]->num_queue_pairs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010602 if (pf->flags & I40E_FLAG_RSS_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010603 i += snprintf(&buf[i], REMAIN(i), " RSS");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010604 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010605 i += snprintf(&buf[i], REMAIN(i), " FD_ATR");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010606 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
Joe Perches3b195842015-12-03 04:20:57 -080010607 i += snprintf(&buf[i], REMAIN(i), " FD_SB");
10608 i += snprintf(&buf[i], REMAIN(i), " NTUPLE");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010609 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010610 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Joe Perches3b195842015-12-03 04:20:57 -080010611 i += snprintf(&buf[i], REMAIN(i), " DCB");
Joe Perches3b195842015-12-03 04:20:57 -080010612 i += snprintf(&buf[i], REMAIN(i), " VxLAN");
Singhai, Anjali6a899022015-12-14 12:21:18 -080010613 i += snprintf(&buf[i], REMAIN(i), " Geneve");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010614 if (pf->flags & I40E_FLAG_PTP)
Joe Perches3b195842015-12-03 04:20:57 -080010615 i += snprintf(&buf[i], REMAIN(i), " PTP");
Vasu Dev38e00432014-08-01 13:27:03 -070010616#ifdef I40E_FCOE
10617 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010618 i += snprintf(&buf[i], REMAIN(i), " FCOE");
Vasu Dev38e00432014-08-01 13:27:03 -070010619#endif
Shannon Nelson6dec1012015-09-28 14:12:30 -040010620 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
Joe Perches3b195842015-12-03 04:20:57 -080010621 i += snprintf(&buf[i], REMAIN(i), " VEB");
Shannon Nelson6dec1012015-09-28 14:12:30 -040010622 else
Joe Perches3b195842015-12-03 04:20:57 -080010623 i += snprintf(&buf[i], REMAIN(i), " VEPA");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010624
Joe Perches3b195842015-12-03 04:20:57 -080010625 dev_info(&pf->pdev->dev, "%s\n", buf);
10626 kfree(buf);
Shannon Nelson7fd89542015-10-21 19:47:04 -040010627 WARN_ON(i > INFO_STRING_LEN);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010628}
10629
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010630/**
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010631 * i40e_get_platform_mac_addr - get platform-specific MAC address
10632 *
10633 * @pdev: PCI device information struct
10634 * @pf: board private structure
10635 *
10636 * Look up the MAC address in Open Firmware on systems that support it,
10637 * and use IDPROM on SPARC if no OF address is found. On return, the
10638 * I40E_FLAG_PF_MAC will be wset in pf->flags if a platform-specific value
10639 * has been selected.
10640 **/
10641static void i40e_get_platform_mac_addr(struct pci_dev *pdev, struct i40e_pf *pf)
10642{
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010643 pf->flags &= ~I40E_FLAG_PF_MAC;
Sowmini Varadhanba942722016-01-12 19:32:31 -080010644 if (!eth_platform_get_mac_address(&pdev->dev, pf->hw.mac.addr))
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010645 pf->flags |= I40E_FLAG_PF_MAC;
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010646}
10647
10648/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010649 * i40e_probe - Device initialization routine
10650 * @pdev: PCI device information struct
10651 * @ent: entry in i40e_pci_tbl
10652 *
Jeff Kirsherb40c82e2015-02-27 09:18:34 +000010653 * i40e_probe initializes a PF identified by a pci_dev structure.
10654 * The OS initialization, configuring of the PF private structure,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010655 * and a hardware reset occur.
10656 *
10657 * Returns 0 on success, negative on failure
10658 **/
10659static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
10660{
Catherine Sullivane8278452015-02-06 08:52:08 +000010661 struct i40e_aq_get_phy_abilities_resp abilities;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010662 struct i40e_pf *pf;
10663 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010664 static u16 pfs_found;
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010665 u16 wol_nvm_bits;
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010666 u16 link_status;
Jean Sacren6f66a482015-09-19 05:08:45 -060010667 int err;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040010668 u32 val;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010669 u32 i;
Helin Zhang58fc3262015-10-01 14:37:38 -040010670 u8 set_fc_aq_fail;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010671
10672 err = pci_enable_device_mem(pdev);
10673 if (err)
10674 return err;
10675
10676 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +000010677 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +000010678 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +000010679 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
10680 if (err) {
10681 dev_err(&pdev->dev,
10682 "DMA configuration failed: 0x%x\n", err);
10683 goto err_dma;
10684 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010685 }
10686
10687 /* set up pci connections */
10688 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
10689 IORESOURCE_MEM), i40e_driver_name);
10690 if (err) {
10691 dev_info(&pdev->dev,
10692 "pci_request_selected_regions failed %d\n", err);
10693 goto err_pci_reg;
10694 }
10695
10696 pci_enable_pcie_error_reporting(pdev);
10697 pci_set_master(pdev);
10698
10699 /* Now that we have a PCI connection, we need to do the
10700 * low level device setup. This is primarily setting up
10701 * the Admin Queue structures and then querying for the
10702 * device's current profile information.
10703 */
10704 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
10705 if (!pf) {
10706 err = -ENOMEM;
10707 goto err_pf_alloc;
10708 }
10709 pf->next_vsi = 0;
10710 pf->pdev = pdev;
10711 set_bit(__I40E_DOWN, &pf->state);
10712
10713 hw = &pf->hw;
10714 hw->back = pf;
Anjali Singhai232f4702015-02-26 16:15:39 +000010715
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010716 pf->ioremap_len = min_t(int, pci_resource_len(pdev, 0),
10717 I40E_MAX_CSR_SPACE);
Anjali Singhai232f4702015-02-26 16:15:39 +000010718
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010719 hw->hw_addr = ioremap(pci_resource_start(pdev, 0), pf->ioremap_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010720 if (!hw->hw_addr) {
10721 err = -EIO;
10722 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
10723 (unsigned int)pci_resource_start(pdev, 0),
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010724 pf->ioremap_len, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010725 goto err_ioremap;
10726 }
10727 hw->vendor_id = pdev->vendor;
10728 hw->device_id = pdev->device;
10729 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
10730 hw->subsystem_vendor_id = pdev->subsystem_vendor;
10731 hw->subsystem_device_id = pdev->subsystem_device;
10732 hw->bus.device = PCI_SLOT(pdev->devfn);
10733 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010734 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010735
Shannon Nelsonde03d2b2016-03-10 14:59:44 -080010736 /* set up the locks for the AQ, do this only once in probe
10737 * and destroy them only once in remove
10738 */
10739 mutex_init(&hw->aq.asq_mutex);
10740 mutex_init(&hw->aq.arq_mutex);
10741
Shannon Nelson5b5faa42014-10-17 03:14:51 +000010742 if (debug != -1) {
10743 pf->msg_enable = pf->hw.debug_mask;
10744 pf->msg_enable = debug;
10745 }
10746
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +000010747 /* do a special CORER for clearing PXE mode once at init */
10748 if (hw->revision_id == 0 &&
10749 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
10750 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
10751 i40e_flush(hw);
10752 msleep(200);
10753 pf->corer_count++;
10754
10755 i40e_clear_pxe_mode(hw);
10756 }
10757
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010758 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +000010759 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010760 err = i40e_pf_reset(hw);
10761 if (err) {
10762 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
10763 goto err_pf_reset;
10764 }
10765 pf->pfr_count++;
10766
10767 hw->aq.num_arq_entries = I40E_AQ_LEN;
10768 hw->aq.num_asq_entries = I40E_AQ_LEN;
10769 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10770 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10771 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010772
Carolyn Wybornyb294ac72014-12-11 07:06:39 +000010773 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010774 "%s-%s:misc",
10775 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010776
10777 err = i40e_init_shared_code(hw);
10778 if (err) {
Anjali Singhai Jainb2a75c52015-04-27 14:57:20 -040010779 dev_warn(&pdev->dev, "unidentified MAC or BLANK NVM: %d\n",
10780 err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010781 goto err_pf_reset;
10782 }
10783
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010784 /* set up a default setting for link flow control */
10785 pf->hw.fc.requested_mode = I40E_FC_NONE;
10786
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010787 err = i40e_init_adminq(hw);
Carolyn Wyborny2b2426a2015-10-26 19:44:35 -040010788 if (err) {
10789 if (err == I40E_ERR_FIRMWARE_API_VERSION)
10790 dev_info(&pdev->dev,
10791 "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");
10792 else
10793 dev_info(&pdev->dev,
10794 "The driver for the device stopped because the device firmware failed to init. Try updating your NVM image.\n");
10795
10796 goto err_pf_reset;
10797 }
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010798
Shannon Nelson6dec1012015-09-28 14:12:30 -040010799 /* provide nvm, fw, api versions */
10800 dev_info(&pdev->dev, "fw %d.%d.%05d api %d.%d nvm %s\n",
10801 hw->aq.fw_maj_ver, hw->aq.fw_min_ver, hw->aq.fw_build,
10802 hw->aq.api_maj_ver, hw->aq.api_min_ver,
10803 i40e_nvm_version_str(hw));
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010804
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010805 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
10806 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +000010807 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010808 "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");
10809 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
10810 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +000010811 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010812 "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 +000010813
Shannon Nelson4eb3f762014-03-06 08:59:58 +000010814 i40e_verify_eeprom(pf);
10815
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +000010816 /* Rev 0 hardware was never productized */
10817 if (hw->revision_id < 1)
10818 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");
10819
Shannon Nelson6ff4ef82013-12-21 05:44:49 +000010820 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010821 err = i40e_get_capabilities(pf);
10822 if (err)
10823 goto err_adminq_setup;
10824
10825 err = i40e_sw_init(pf);
10826 if (err) {
10827 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
10828 goto err_sw_init;
10829 }
10830
10831 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
10832 hw->func_caps.num_rx_qp,
10833 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
10834 if (err) {
10835 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
10836 goto err_init_lan_hmc;
10837 }
10838
10839 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
10840 if (err) {
10841 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
10842 err = -ENOENT;
10843 goto err_configure_lan_hmc;
10844 }
10845
Neerav Parikhb686ece2014-12-14 01:55:11 +000010846 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
10847 * Ignore error return codes because if it was already disabled via
10848 * hardware settings this will fail
10849 */
Neerav Parikhf1bbad32016-01-13 16:51:39 -080010850 if (pf->flags & I40E_FLAG_STOP_FW_LLDP) {
Neerav Parikhb686ece2014-12-14 01:55:11 +000010851 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
10852 i40e_aq_stop_lldp(hw, true, NULL);
10853 }
10854
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010855 i40e_get_mac_addr(hw, hw->mac.addr);
Sowmini Varadhanb499ffb2015-12-07 15:06:34 -050010856 /* allow a platform config to override the HW addr */
10857 i40e_get_platform_mac_addr(pdev, pf);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +000010858 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010859 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
10860 err = -EIO;
10861 goto err_mac_addr;
10862 }
10863 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +000010864 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +000010865 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
10866 if (is_valid_ether_addr(hw->mac.port_addr))
10867 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -070010868#ifdef I40E_FCOE
10869 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
10870 if (err)
10871 dev_info(&pdev->dev,
10872 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
10873 if (!is_valid_ether_addr(hw->mac.san_addr)) {
10874 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
10875 hw->mac.san_addr);
10876 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
10877 }
10878 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
10879#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010880
10881 pci_set_drvdata(pdev, pf);
10882 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010883#ifdef CONFIG_I40E_DCB
10884 err = i40e_init_pf_dcb(pf);
10885 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +000010886 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010887 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +000010888 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010889 }
10890#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010891
10892 /* set up periodic task facility */
10893 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
10894 pf->service_timer_period = HZ;
10895
10896 INIT_WORK(&pf->service_task, i40e_service_task);
10897 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
10898 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010899
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010900 /* NVM bit on means WoL disabled for the port */
10901 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
Jesse Brandeburg75f5cea2015-11-19 11:34:14 -080010902 if (BIT (hw->port) & wol_nvm_bits || hw->partition_id != 1)
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010903 pf->wol_en = false;
10904 else
10905 pf->wol_en = true;
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010906 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
10907
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010908 /* set up the main switch operations */
10909 i40e_determine_queue_usage(pf);
Jesse Brandeburgc11472802015-04-07 19:45:39 -040010910 err = i40e_init_interrupt_scheme(pf);
10911 if (err)
10912 goto err_switch_setup;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010913
Mitch Williams505682c2014-05-20 08:01:37 +000010914 /* The number of VSIs reported by the FW is the minimum guaranteed
10915 * to us; HW supports far more and we share the remaining pool with
10916 * the other PFs. We allocate space for more than the guarantee with
10917 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010918 */
Mitch Williams505682c2014-05-20 08:01:37 +000010919 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
10920 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
10921 else
10922 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
10923
10924 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
Jesse Brandeburgd17038d2015-12-23 12:05:55 -080010925 pf->vsi = kcalloc(pf->num_alloc_vsi, sizeof(struct i40e_vsi *),
10926 GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +000010927 if (!pf->vsi) {
10928 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010929 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +000010930 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010931
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040010932#ifdef CONFIG_PCI_IOV
10933 /* prep for VF support */
10934 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10935 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
10936 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
10937 if (pci_num_vf(pdev))
10938 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
10939 }
10940#endif
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010941 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010942 if (err) {
10943 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
10944 goto err_vsis;
10945 }
Helin Zhang58fc3262015-10-01 14:37:38 -040010946
10947 /* Make sure flow control is set according to current settings */
10948 err = i40e_set_fc(hw, &set_fc_aq_fail, true);
10949 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_GET)
10950 dev_dbg(&pf->pdev->dev,
10951 "Set fc with err %s aq_err %s on get_phy_cap\n",
10952 i40e_stat_str(hw, err),
10953 i40e_aq_str(hw, hw->aq.asq_last_status));
10954 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_SET)
10955 dev_dbg(&pf->pdev->dev,
10956 "Set fc with err %s aq_err %s on set_phy_config\n",
10957 i40e_stat_str(hw, err),
10958 i40e_aq_str(hw, hw->aq.asq_last_status));
10959 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_UPDATE)
10960 dev_dbg(&pf->pdev->dev,
10961 "Set fc with err %s aq_err %s on get_link_info\n",
10962 i40e_stat_str(hw, err),
10963 i40e_aq_str(hw, hw->aq.asq_last_status));
10964
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010965 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +000010966 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010967 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
10968 i40e_vsi_open(pf->vsi[i]);
10969 break;
10970 }
10971 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010972
Shannon Nelson2f0aff42016-01-04 10:33:08 -080010973 /* The driver only wants link up/down and module qualification
10974 * reports from firmware. Note the negative logic.
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010975 */
10976 err = i40e_aq_set_phy_int_mask(&pf->hw,
Shannon Nelson2f0aff42016-01-04 10:33:08 -080010977 ~(I40E_AQ_EVENT_LINK_UPDOWN |
Shannon Nelson867a79e2016-03-18 12:18:15 -070010978 I40E_AQ_EVENT_MEDIA_NA |
Shannon Nelson2f0aff42016-01-04 10:33:08 -080010979 I40E_AQ_EVENT_MODULE_QUAL_FAIL), NULL);
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010980 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010981 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
10982 i40e_stat_str(&pf->hw, err),
10983 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010984
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040010985 /* Reconfigure hardware for allowing smaller MSS in the case
10986 * of TSO, so that we avoid the MDD being fired and causing
10987 * a reset in the case of small MSS+TSO.
10988 */
10989 val = rd32(hw, I40E_REG_MSS);
10990 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
10991 val &= ~I40E_REG_MSS_MIN_MASK;
10992 val |= I40E_64BYTE_MSS;
10993 wr32(hw, I40E_REG_MSS, val);
10994 }
10995
Anjali Singhai Jain8eed76f2015-12-09 15:50:31 -080010996 if (pf->flags & I40E_FLAG_RESTART_AUTONEG) {
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +000010997 msleep(75);
10998 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
10999 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040011000 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
11001 i40e_stat_str(&pf->hw, err),
11002 i40e_aq_str(&pf->hw,
11003 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +000011004 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011005 /* The main driver is (mostly) up and happy. We need to set this state
11006 * before setting up the misc vector or we get a race and the vector
11007 * ends up disabled forever.
11008 */
11009 clear_bit(__I40E_DOWN, &pf->state);
11010
11011 /* In case of MSIX we are going to setup the misc vector right here
11012 * to handle admin queue events etc. In case of legacy and MSI
11013 * the misc functionality and queue processing is combined in
11014 * the same vector and that gets setup at open.
11015 */
11016 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
11017 err = i40e_setup_misc_vector(pf);
11018 if (err) {
11019 dev_info(&pdev->dev,
11020 "setup of misc vector failed: %d\n", err);
11021 goto err_vsis;
11022 }
11023 }
11024
Greg Rosedf805f62014-04-04 04:43:16 +000011025#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011026 /* prep for VF support */
11027 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +000011028 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
11029 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011030 /* disable link interrupts for VFs */
11031 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
11032 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
11033 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
11034 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -080011035
11036 if (pci_num_vf(pdev)) {
11037 dev_info(&pdev->dev,
11038 "Active VFs found, allocating resources.\n");
11039 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
11040 if (err)
11041 dev_info(&pdev->dev,
11042 "Error %d allocating resources for existing VFs\n",
11043 err);
11044 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011045 }
Greg Rosedf805f62014-04-04 04:43:16 +000011046#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011047
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011048 if (pf->flags & I40E_FLAG_IWARP_ENABLED) {
11049 pf->iwarp_base_vector = i40e_get_lump(pf, pf->irq_pile,
11050 pf->num_iwarp_msix,
11051 I40E_IWARP_IRQ_PILE_ID);
11052 if (pf->iwarp_base_vector < 0) {
11053 dev_info(&pdev->dev,
11054 "failed to get tracking for %d vectors for IWARP err=%d\n",
11055 pf->num_iwarp_msix, pf->iwarp_base_vector);
11056 pf->flags &= ~I40E_FLAG_IWARP_ENABLED;
11057 }
11058 }
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000011059
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011060 i40e_dbg_pf_init(pf);
11061
11062 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +000011063 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011064
11065 /* since everything's happy, start the service_task timer */
11066 mod_timer(&pf->service_timer,
11067 round_jiffies(jiffies + pf->service_timer_period));
11068
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011069 /* add this PF to client device list and launch a client service task */
11070 err = i40e_lan_add_device(pf);
11071 if (err)
11072 dev_info(&pdev->dev, "Failed to add PF to client API service list: %d\n",
11073 err);
11074
Vasu Dev38e00432014-08-01 13:27:03 -070011075#ifdef I40E_FCOE
11076 /* create FCoE interface */
11077 i40e_fcoe_vsi_setup(pf);
11078
11079#endif
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011080#define PCI_SPEED_SIZE 8
11081#define PCI_WIDTH_SIZE 8
11082 /* Devices on the IOSF bus do not have this information
11083 * and will report PCI Gen 1 x 1 by default so don't bother
11084 * checking them.
11085 */
11086 if (!(pf->flags & I40E_FLAG_NO_PCI_LINK_CHECK)) {
11087 char speed[PCI_SPEED_SIZE] = "Unknown";
11088 char width[PCI_WIDTH_SIZE] = "Unknown";
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011089
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011090 /* Get the negotiated link width and speed from PCI config
11091 * space
11092 */
11093 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA,
11094 &link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011095
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011096 i40e_set_pci_config_data(hw, link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011097
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040011098 switch (hw->bus.speed) {
11099 case i40e_bus_speed_8000:
11100 strncpy(speed, "8.0", PCI_SPEED_SIZE); break;
11101 case i40e_bus_speed_5000:
11102 strncpy(speed, "5.0", PCI_SPEED_SIZE); break;
11103 case i40e_bus_speed_2500:
11104 strncpy(speed, "2.5", PCI_SPEED_SIZE); break;
11105 default:
11106 break;
11107 }
11108 switch (hw->bus.width) {
11109 case i40e_bus_width_pcie_x8:
11110 strncpy(width, "8", PCI_WIDTH_SIZE); break;
11111 case i40e_bus_width_pcie_x4:
11112 strncpy(width, "4", PCI_WIDTH_SIZE); break;
11113 case i40e_bus_width_pcie_x2:
11114 strncpy(width, "2", PCI_WIDTH_SIZE); break;
11115 case i40e_bus_width_pcie_x1:
11116 strncpy(width, "1", PCI_WIDTH_SIZE); break;
11117 default:
11118 break;
11119 }
11120
11121 dev_info(&pdev->dev, "PCI-Express: Speed %sGT/s Width x%s\n",
11122 speed, width);
11123
11124 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
11125 hw->bus.speed < i40e_bus_speed_8000) {
11126 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
11127 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
11128 }
Catherine Sullivand4dfb812013-11-28 06:39:21 +000011129 }
11130
Catherine Sullivane8278452015-02-06 08:52:08 +000011131 /* get the requested speeds from the fw */
11132 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
11133 if (err)
Neerav Parikh8279e492015-09-03 17:18:50 -040011134 dev_dbg(&pf->pdev->dev, "get requested speeds ret = %s last_status = %s\n",
11135 i40e_stat_str(&pf->hw, err),
11136 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Catherine Sullivane8278452015-02-06 08:52:08 +000011137 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
11138
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -040011139 /* get the supported phy types from the fw */
11140 err = i40e_aq_get_phy_capabilities(hw, false, true, &abilities, NULL);
11141 if (err)
11142 dev_dbg(&pf->pdev->dev, "get supported phy types ret = %s last_status = %s\n",
11143 i40e_stat_str(&pf->hw, err),
11144 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
11145 pf->hw.phy.phy_types = le32_to_cpu(abilities.phy_type);
11146
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -040011147 /* Add a filter to drop all Flow control frames from any VSI from being
11148 * transmitted. By doing so we stop a malicious VF from sending out
11149 * PAUSE or PFC frames and potentially controlling traffic for other
11150 * PF/VF VSIs.
11151 * The FW can still send Flow control frames if enabled.
11152 */
11153 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
11154 pf->main_vsi_seid);
11155
Carolyn Wyborny31b606d2016-02-17 16:12:12 -080011156 if ((pf->hw.device_id == I40E_DEV_ID_10G_BASE_T) ||
11157 (pf->hw.device_id == I40E_DEV_ID_10G_BASE_T4))
11158 pf->flags |= I40E_FLAG_HAVE_10GBASET_PHY;
11159
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000011160 /* print a string summarizing features */
11161 i40e_print_features(pf);
11162
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011163 return 0;
11164
11165 /* Unwind what we've done if something failed in the setup */
11166err_vsis:
11167 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011168 i40e_clear_interrupt_scheme(pf);
11169 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +000011170err_switch_setup:
11171 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011172 del_timer_sync(&pf->service_timer);
11173err_mac_addr:
11174err_configure_lan_hmc:
11175 (void)i40e_shutdown_lan_hmc(hw);
11176err_init_lan_hmc:
11177 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011178err_sw_init:
11179err_adminq_setup:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011180err_pf_reset:
11181 iounmap(hw->hw_addr);
11182err_ioremap:
11183 kfree(pf);
11184err_pf_alloc:
11185 pci_disable_pcie_error_reporting(pdev);
11186 pci_release_selected_regions(pdev,
11187 pci_select_bars(pdev, IORESOURCE_MEM));
11188err_pci_reg:
11189err_dma:
11190 pci_disable_device(pdev);
11191 return err;
11192}
11193
11194/**
11195 * i40e_remove - Device removal routine
11196 * @pdev: PCI device information struct
11197 *
11198 * i40e_remove is called by the PCI subsystem to alert the driver
11199 * that is should release a PCI device. This could be caused by a
11200 * Hot-Plug event, or because the driver is going to be removed from
11201 * memory.
11202 **/
11203static void i40e_remove(struct pci_dev *pdev)
11204{
11205 struct i40e_pf *pf = pci_get_drvdata(pdev);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011206 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011207 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011208 int i;
11209
11210 i40e_dbg_pf_exit(pf);
11211
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000011212 i40e_ptp_stop(pf);
11213
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011214 /* Disable RSS in hw */
Shannon Nelson272cdaf22016-02-17 16:12:21 -080011215 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(0), 0);
11216 i40e_write_rx_ctl(hw, I40E_PFQF_HENA(1), 0);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040011217
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011218 /* no more scheduling of any task */
Pandi Kumar Maharajana4618ec2016-02-18 09:19:25 -080011219 set_bit(__I40E_SUSPENDED, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011220 set_bit(__I40E_DOWN, &pf->state);
Shannon Nelsonc99abb42016-03-10 14:59:45 -080011221 if (pf->service_timer.data)
11222 del_timer_sync(&pf->service_timer);
11223 if (pf->service_task.func)
11224 cancel_work_sync(&pf->service_task);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011225
Mitch Williamseb2d80b2014-02-13 03:48:48 -080011226 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
11227 i40e_free_vfs(pf);
11228 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
11229 }
11230
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011231 i40e_fdir_teardown(pf);
11232
11233 /* If there is a switch structure or any orphans, remove them.
11234 * This will leave only the PF's VSI remaining.
11235 */
11236 for (i = 0; i < I40E_MAX_VEB; i++) {
11237 if (!pf->veb[i])
11238 continue;
11239
11240 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
11241 pf->veb[i]->uplink_seid == 0)
11242 i40e_switch_branch_release(pf->veb[i]);
11243 }
11244
11245 /* Now we can shutdown the PF's VSI, just before we kill
11246 * adminq and hmc.
11247 */
11248 if (pf->vsi[pf->lan_vsi])
11249 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
11250
Anjali Singhai Jaine3219ce2016-01-20 13:40:01 -060011251 /* remove attached clients */
11252 ret_code = i40e_lan_del_device(pf);
11253 if (ret_code) {
11254 dev_warn(&pdev->dev, "Failed to delete client device: %d\n",
11255 ret_code);
11256 }
11257
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011258 /* shutdown and destroy the HMC */
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011259 if (hw->hmc.hmc_obj) {
11260 ret_code = i40e_shutdown_lan_hmc(hw);
Shannon Nelson60442de2014-04-23 04:50:13 +000011261 if (ret_code)
11262 dev_warn(&pdev->dev,
11263 "Failed to destroy the HMC resources: %d\n",
11264 ret_code);
11265 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011266
11267 /* shutdown the adminq */
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011268 ret_code = i40e_shutdown_adminq(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011269 if (ret_code)
11270 dev_warn(&pdev->dev,
11271 "Failed to destroy the Admin Queue resources: %d\n",
11272 ret_code);
11273
Jesse Brandeburg8ddb3322015-11-18 15:47:06 -080011274 /* destroy the locks only once, here */
11275 mutex_destroy(&hw->aq.arq_mutex);
11276 mutex_destroy(&hw->aq.asq_mutex);
11277
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011278 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
11279 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +000011280 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011281 if (pf->vsi[i]) {
11282 i40e_vsi_clear_rings(pf->vsi[i]);
11283 i40e_vsi_clear(pf->vsi[i]);
11284 pf->vsi[i] = NULL;
11285 }
11286 }
11287
11288 for (i = 0; i < I40E_MAX_VEB; i++) {
11289 kfree(pf->veb[i]);
11290 pf->veb[i] = NULL;
11291 }
11292
11293 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011294 kfree(pf->vsi);
11295
Jesse Brandeburgf734dff2016-01-15 14:33:11 -080011296 iounmap(hw->hw_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011297 kfree(pf);
11298 pci_release_selected_regions(pdev,
11299 pci_select_bars(pdev, IORESOURCE_MEM));
11300
11301 pci_disable_pcie_error_reporting(pdev);
11302 pci_disable_device(pdev);
11303}
11304
11305/**
11306 * i40e_pci_error_detected - warning that something funky happened in PCI land
11307 * @pdev: PCI device information struct
11308 *
11309 * Called to warn that something happened and the error handling steps
11310 * are in progress. Allows the driver to quiesce things, be ready for
11311 * remediation.
11312 **/
11313static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
11314 enum pci_channel_state error)
11315{
11316 struct i40e_pf *pf = pci_get_drvdata(pdev);
11317
11318 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
11319
11320 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011321 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
11322 rtnl_lock();
11323 i40e_prep_for_reset(pf);
11324 rtnl_unlock();
11325 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011326
11327 /* Request a slot reset */
11328 return PCI_ERS_RESULT_NEED_RESET;
11329}
11330
11331/**
11332 * i40e_pci_error_slot_reset - a PCI slot reset just happened
11333 * @pdev: PCI device information struct
11334 *
11335 * Called to find if the driver can work with the device now that
11336 * the pci slot has been reset. If a basic connection seems good
11337 * (registers are readable and have sane content) then return a
11338 * happy little PCI_ERS_RESULT_xxx.
11339 **/
11340static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
11341{
11342 struct i40e_pf *pf = pci_get_drvdata(pdev);
11343 pci_ers_result_t result;
11344 int err;
11345 u32 reg;
11346
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011347 dev_dbg(&pdev->dev, "%s\n", __func__);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011348 if (pci_enable_device_mem(pdev)) {
11349 dev_info(&pdev->dev,
11350 "Cannot re-enable PCI device after reset.\n");
11351 result = PCI_ERS_RESULT_DISCONNECT;
11352 } else {
11353 pci_set_master(pdev);
11354 pci_restore_state(pdev);
11355 pci_save_state(pdev);
11356 pci_wake_from_d3(pdev, false);
11357
11358 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
11359 if (reg == 0)
11360 result = PCI_ERS_RESULT_RECOVERED;
11361 else
11362 result = PCI_ERS_RESULT_DISCONNECT;
11363 }
11364
11365 err = pci_cleanup_aer_uncorrect_error_status(pdev);
11366 if (err) {
11367 dev_info(&pdev->dev,
11368 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
11369 err);
11370 /* non-fatal, continue */
11371 }
11372
11373 return result;
11374}
11375
11376/**
11377 * i40e_pci_error_resume - restart operations after PCI error recovery
11378 * @pdev: PCI device information struct
11379 *
11380 * Called to allow the driver to bring things back up after PCI error
11381 * and/or reset recovery has finished.
11382 **/
11383static void i40e_pci_error_resume(struct pci_dev *pdev)
11384{
11385 struct i40e_pf *pf = pci_get_drvdata(pdev);
11386
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011387 dev_dbg(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011388 if (test_bit(__I40E_SUSPENDED, &pf->state))
11389 return;
11390
11391 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011392 i40e_handle_reset_warning(pf);
Vasily Averin4c4935a2015-07-08 15:04:26 +030011393 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011394}
11395
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011396/**
11397 * i40e_shutdown - PCI callback for shutting down
11398 * @pdev: PCI device information struct
11399 **/
11400static void i40e_shutdown(struct pci_dev *pdev)
11401{
11402 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011403 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011404
11405 set_bit(__I40E_SUSPENDED, &pf->state);
11406 set_bit(__I40E_DOWN, &pf->state);
11407 rtnl_lock();
11408 i40e_prep_for_reset(pf);
11409 rtnl_unlock();
11410
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011411 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11412 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11413
Catherine Sullivan02b42492015-07-10 19:35:59 -040011414 del_timer_sync(&pf->service_timer);
11415 cancel_work_sync(&pf->service_task);
11416 i40e_fdir_teardown(pf);
11417
11418 rtnl_lock();
11419 i40e_prep_for_reset(pf);
11420 rtnl_unlock();
11421
11422 wr32(hw, I40E_PFPM_APM,
11423 (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11424 wr32(hw, I40E_PFPM_WUFC,
11425 (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11426
Shannon Nelsone1477582015-02-21 06:44:33 +000011427 i40e_clear_interrupt_scheme(pf);
11428
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011429 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011430 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011431 pci_set_power_state(pdev, PCI_D3hot);
11432 }
11433}
11434
11435#ifdef CONFIG_PM
11436/**
11437 * i40e_suspend - PCI callback for moving to D3
11438 * @pdev: PCI device information struct
11439 **/
11440static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
11441{
11442 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011443 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011444
11445 set_bit(__I40E_SUSPENDED, &pf->state);
11446 set_bit(__I40E_DOWN, &pf->state);
Mitch Williams3932dbf2015-03-31 00:45:04 -070011447
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011448 rtnl_lock();
11449 i40e_prep_for_reset(pf);
11450 rtnl_unlock();
11451
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011452 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11453 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11454
11455 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011456 pci_set_power_state(pdev, PCI_D3hot);
11457
11458 return 0;
11459}
11460
11461/**
11462 * i40e_resume - PCI callback for waking up from D3
11463 * @pdev: PCI device information struct
11464 **/
11465static int i40e_resume(struct pci_dev *pdev)
11466{
11467 struct i40e_pf *pf = pci_get_drvdata(pdev);
11468 u32 err;
11469
11470 pci_set_power_state(pdev, PCI_D0);
11471 pci_restore_state(pdev);
11472 /* pci_restore_state() clears dev->state_saves, so
11473 * call pci_save_state() again to restore it.
11474 */
11475 pci_save_state(pdev);
11476
11477 err = pci_enable_device_mem(pdev);
11478 if (err) {
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011479 dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n");
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011480 return err;
11481 }
11482 pci_set_master(pdev);
11483
11484 /* no wakeup events while running */
11485 pci_wake_from_d3(pdev, false);
11486
11487 /* handling the reset will rebuild the device state */
11488 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
11489 clear_bit(__I40E_DOWN, &pf->state);
11490 rtnl_lock();
11491 i40e_reset_and_rebuild(pf, false);
11492 rtnl_unlock();
11493 }
11494
11495 return 0;
11496}
11497
11498#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011499static const struct pci_error_handlers i40e_err_handler = {
11500 .error_detected = i40e_pci_error_detected,
11501 .slot_reset = i40e_pci_error_slot_reset,
11502 .resume = i40e_pci_error_resume,
11503};
11504
11505static struct pci_driver i40e_driver = {
11506 .name = i40e_driver_name,
11507 .id_table = i40e_pci_tbl,
11508 .probe = i40e_probe,
11509 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011510#ifdef CONFIG_PM
11511 .suspend = i40e_suspend,
11512 .resume = i40e_resume,
11513#endif
11514 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011515 .err_handler = &i40e_err_handler,
11516 .sriov_configure = i40e_pci_sriov_configure,
11517};
11518
11519/**
11520 * i40e_init_module - Driver registration routine
11521 *
11522 * i40e_init_module is the first routine called when the driver is
11523 * loaded. All it does is register with the PCI subsystem.
11524 **/
11525static int __init i40e_init_module(void)
11526{
11527 pr_info("%s: %s - version %s\n", i40e_driver_name,
11528 i40e_driver_string, i40e_driver_version_str);
11529 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
Greg Rose96664482015-02-06 08:52:13 +000011530
Jesse Brandeburg2803b162015-12-22 14:25:08 -080011531 /* we will see if single thread per module is enough for now,
11532 * it can't be any worse than using the system workqueue which
11533 * was already single threaded
11534 */
11535 i40e_wq = create_singlethread_workqueue(i40e_driver_name);
11536 if (!i40e_wq) {
11537 pr_err("%s: Failed to create workqueue\n", i40e_driver_name);
11538 return -ENOMEM;
11539 }
11540
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011541 i40e_dbg_init();
11542 return pci_register_driver(&i40e_driver);
11543}
11544module_init(i40e_init_module);
11545
11546/**
11547 * i40e_exit_module - Driver exit cleanup routine
11548 *
11549 * i40e_exit_module is called just before the driver is removed
11550 * from memory.
11551 **/
11552static void __exit i40e_exit_module(void)
11553{
11554 pci_unregister_driver(&i40e_driver);
Jesse Brandeburg2803b162015-12-22 14:25:08 -080011555 destroy_workqueue(i40e_wq);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011556 i40e_dbg_exit();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011557}
11558module_exit(i40e_exit_module);