blob: 4e9d6e56486122110ad78f4cba8987b927db07d4 [file] [log] [blame]
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Catherine Sullivane8278452015-02-06 08:52:08 +00004 * Copyright(c) 2013 - 2015 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
27/* Local includes */
28#include "i40e.h"
Shannon Nelson4eb3f762014-03-06 08:59:58 +000029#include "i40e_diag.h"
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +000030#ifdef CONFIG_I40E_VXLAN
31#include <net/vxlan.h>
32#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000033
34const char i40e_driver_name[] = "i40e";
35static const char i40e_driver_string[] =
36 "Intel(R) Ethernet Connection XL710 Network Driver";
37
38#define DRV_KERN "-k"
39
Catherine Sullivane8e724d2014-07-10 07:58:26 +000040#define DRV_VERSION_MAJOR 1
Catherine Sullivan1c2df9e2015-10-21 19:56:24 -040041#define DRV_VERSION_MINOR 4
42#define DRV_VERSION_BUILD 2
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000043#define DRV_VERSION __stringify(DRV_VERSION_MAJOR) "." \
44 __stringify(DRV_VERSION_MINOR) "." \
45 __stringify(DRV_VERSION_BUILD) DRV_KERN
46const char i40e_driver_version_str[] = DRV_VERSION;
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -080047static const char i40e_copyright[] = "Copyright (c) 2013 - 2014 Intel Corporation.";
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000048
49/* a bit of forward declarations */
50static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi);
51static void i40e_handle_reset_warning(struct i40e_pf *pf);
52static int i40e_add_vsi(struct i40e_vsi *vsi);
53static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000054static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000055static int i40e_setup_misc_vector(struct i40e_pf *pf);
56static void i40e_determine_queue_usage(struct i40e_pf *pf);
57static int i40e_setup_pf_filter_control(struct i40e_pf *pf);
Helin Zhange69ff812015-10-21 19:56:22 -040058static void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
59 u16 rss_table_size, u16 rss_size);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080060static void i40e_fdir_sb_setup(struct i40e_pf *pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080061static int i40e_veb_get_bw_info(struct i40e_veb *veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000062
63/* i40e_pci_tbl - PCI Device ID Table
64 *
65 * Last entry must be all 0s
66 *
67 * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
68 * Class, Class Mask, private data (not used) }
69 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020070static const struct pci_device_id i40e_pci_tbl[] = {
Shannon Nelsonab600852014-01-17 15:36:39 -080071 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_XL710), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080072 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QEMU), 0},
73 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_A), 0},
74 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_B), 0},
75 {PCI_VDEVICE(INTEL, I40E_DEV_ID_KX_C), 0},
Shannon Nelsonab600852014-01-17 15:36:39 -080076 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_A), 0},
77 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_B), 0},
78 {PCI_VDEVICE(INTEL, I40E_DEV_ID_QSFP_C), 0},
Mitch Williams5960d332014-09-13 07:40:47 +000079 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T), 0},
Shannon Nelsonbc5166b92015-08-26 15:14:10 -040080 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T4), 0},
Jesse Brandeburgae24b402015-03-27 00:12:09 -070081 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
Anjali Singhai Jain87e6c1d2015-06-05 12:20:25 -040082 {PCI_VDEVICE(INTEL, I40E_DEV_ID_SFP_X722), 0},
83 {PCI_VDEVICE(INTEL, I40E_DEV_ID_1G_BASE_T_X722), 0},
84 {PCI_VDEVICE(INTEL, I40E_DEV_ID_10G_BASE_T_X722), 0},
Shannon Nelson48a3b512015-07-23 16:54:39 -040085 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2), 0},
86 {PCI_VDEVICE(INTEL, I40E_DEV_ID_20G_KR2_A), 0},
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000087 /* required last entry */
88 {0, }
89};
90MODULE_DEVICE_TABLE(pci, i40e_pci_tbl);
91
92#define I40E_MAX_VF_COUNT 128
93static int debug = -1;
94module_param(debug, int, 0);
95MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
96
97MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>");
98MODULE_DESCRIPTION("Intel(R) Ethernet Connection XL710 Network Driver");
99MODULE_LICENSE("GPL");
100MODULE_VERSION(DRV_VERSION);
101
102/**
103 * i40e_allocate_dma_mem_d - OS specific memory alloc for shared code
104 * @hw: pointer to the HW structure
105 * @mem: ptr to mem struct to fill out
106 * @size: size of memory requested
107 * @alignment: what to align the allocation to
108 **/
109int i40e_allocate_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem,
110 u64 size, u32 alignment)
111{
112 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
113
114 mem->size = ALIGN(size, alignment);
115 mem->va = dma_zalloc_coherent(&pf->pdev->dev, mem->size,
116 &mem->pa, GFP_KERNEL);
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000117 if (!mem->va)
118 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000119
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000120 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000121}
122
123/**
124 * i40e_free_dma_mem_d - OS specific memory free for shared code
125 * @hw: pointer to the HW structure
126 * @mem: ptr to mem struct to free
127 **/
128int i40e_free_dma_mem_d(struct i40e_hw *hw, struct i40e_dma_mem *mem)
129{
130 struct i40e_pf *pf = (struct i40e_pf *)hw->back;
131
132 dma_free_coherent(&pf->pdev->dev, mem->size, mem->va, mem->pa);
133 mem->va = NULL;
134 mem->pa = 0;
135 mem->size = 0;
136
137 return 0;
138}
139
140/**
141 * i40e_allocate_virt_mem_d - OS specific memory alloc for shared code
142 * @hw: pointer to the HW structure
143 * @mem: ptr to mem struct to fill out
144 * @size: size of memory requested
145 **/
146int i40e_allocate_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem,
147 u32 size)
148{
149 mem->size = size;
150 mem->va = kzalloc(size, GFP_KERNEL);
151
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000152 if (!mem->va)
153 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000154
Jesse Brandeburg93bc73b2013-09-13 08:23:18 +0000155 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000156}
157
158/**
159 * i40e_free_virt_mem_d - OS specific memory free for shared code
160 * @hw: pointer to the HW structure
161 * @mem: ptr to mem struct to free
162 **/
163int i40e_free_virt_mem_d(struct i40e_hw *hw, struct i40e_virt_mem *mem)
164{
165 /* it's ok to kfree a NULL pointer */
166 kfree(mem->va);
167 mem->va = NULL;
168 mem->size = 0;
169
170 return 0;
171}
172
173/**
174 * i40e_get_lump - find a lump of free generic resource
175 * @pf: board private structure
176 * @pile: the pile of resource to search
177 * @needed: the number of items needed
178 * @id: an owner id to stick on the items assigned
179 *
180 * Returns the base item index of the lump, or negative for error
181 *
182 * The search_hint trick and lack of advanced fit-finding only work
183 * because we're highly likely to have all the same size lump requests.
184 * Linear search time and any fragmentation should be minimal.
185 **/
186static int i40e_get_lump(struct i40e_pf *pf, struct i40e_lump_tracking *pile,
187 u16 needed, u16 id)
188{
189 int ret = -ENOMEM;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000190 int i, j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000191
192 if (!pile || needed == 0 || id >= I40E_PILE_VALID_BIT) {
193 dev_info(&pf->pdev->dev,
194 "param err: pile=%p needed=%d id=0x%04x\n",
195 pile, needed, id);
196 return -EINVAL;
197 }
198
199 /* start the linear search with an imperfect hint */
200 i = pile->search_hint;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000201 while (i < pile->num_entries) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000202 /* skip already allocated entries */
203 if (pile->list[i] & I40E_PILE_VALID_BIT) {
204 i++;
205 continue;
206 }
207
208 /* do we have enough in this lump? */
209 for (j = 0; (j < needed) && ((i+j) < pile->num_entries); j++) {
210 if (pile->list[i+j] & I40E_PILE_VALID_BIT)
211 break;
212 }
213
214 if (j == needed) {
215 /* there was enough, so assign it to the requestor */
216 for (j = 0; j < needed; j++)
217 pile->list[i+j] = id | I40E_PILE_VALID_BIT;
218 ret = i;
219 pile->search_hint = i + j;
Jesse Brandeburgddf434a2013-09-13 08:23:19 +0000220 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000221 }
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400222
223 /* not enough, so skip over it and continue looking */
224 i += j;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000225 }
226
227 return ret;
228}
229
230/**
231 * i40e_put_lump - return a lump of generic resource
232 * @pile: the pile of resource to search
233 * @index: the base item index
234 * @id: the owner id of the items assigned
235 *
236 * Returns the count of items in the lump
237 **/
238static int i40e_put_lump(struct i40e_lump_tracking *pile, u16 index, u16 id)
239{
240 int valid_id = (id | I40E_PILE_VALID_BIT);
241 int count = 0;
242 int i;
243
244 if (!pile || index >= pile->num_entries)
245 return -EINVAL;
246
247 for (i = index;
248 i < pile->num_entries && pile->list[i] == valid_id;
249 i++) {
250 pile->list[i] = 0;
251 count++;
252 }
253
254 if (count && index < pile->search_hint)
255 pile->search_hint = index;
256
257 return count;
258}
259
260/**
Anjali Singhai Jainfdf0e0b2015-03-31 00:45:05 -0700261 * i40e_find_vsi_from_id - searches for the vsi with the given id
262 * @pf - the pf structure to search for the vsi
263 * @id - id of the vsi it is searching for
264 **/
265struct i40e_vsi *i40e_find_vsi_from_id(struct i40e_pf *pf, u16 id)
266{
267 int i;
268
269 for (i = 0; i < pf->num_alloc_vsi; i++)
270 if (pf->vsi[i] && (pf->vsi[i]->id == id))
271 return pf->vsi[i];
272
273 return NULL;
274}
275
276/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000277 * i40e_service_event_schedule - Schedule the service task to wake up
278 * @pf: board private structure
279 *
280 * If not already scheduled, this puts the task into the work queue
281 **/
282static void i40e_service_event_schedule(struct i40e_pf *pf)
283{
284 if (!test_bit(__I40E_DOWN, &pf->state) &&
285 !test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state) &&
286 !test_and_set_bit(__I40E_SERVICE_SCHED, &pf->state))
287 schedule_work(&pf->service_task);
288}
289
290/**
291 * i40e_tx_timeout - Respond to a Tx Hang
292 * @netdev: network interface device structure
293 *
294 * If any port has noticed a Tx timeout, it is likely that the whole
295 * device is munged, not just the one netdev port, so go for the full
296 * reset.
297 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700298#ifdef I40E_FCOE
299void i40e_tx_timeout(struct net_device *netdev)
300#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000301static void i40e_tx_timeout(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -0700302#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000303{
304 struct i40e_netdev_priv *np = netdev_priv(netdev);
305 struct i40e_vsi *vsi = np->vsi;
306 struct i40e_pf *pf = vsi->back;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400307 struct i40e_ring *tx_ring = NULL;
308 unsigned int i, hung_queue = 0;
309 u32 head, val;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000310
311 pf->tx_timeout_count++;
312
Kiran Patilb03a8c12015-09-24 18:13:15 -0400313 /* find the stopped queue the same way the stack does */
314 for (i = 0; i < netdev->num_tx_queues; i++) {
315 struct netdev_queue *q;
316 unsigned long trans_start;
317
318 q = netdev_get_tx_queue(netdev, i);
319 trans_start = q->trans_start ? : netdev->trans_start;
320 if (netif_xmit_stopped(q) &&
321 time_after(jiffies,
322 (trans_start + netdev->watchdog_timeo))) {
323 hung_queue = i;
324 break;
325 }
326 }
327
328 if (i == netdev->num_tx_queues) {
329 netdev_info(netdev, "tx_timeout: no netdev hung queue found\n");
330 } else {
331 /* now that we have an index, find the tx_ring struct */
332 for (i = 0; i < vsi->num_queue_pairs; i++) {
333 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
334 if (hung_queue ==
335 vsi->tx_rings[i]->queue_index) {
336 tx_ring = vsi->tx_rings[i];
337 break;
338 }
339 }
340 }
341 }
342
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000343 if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ*20)))
Kiran Patilb03a8c12015-09-24 18:13:15 -0400344 pf->tx_timeout_recovery_level = 1; /* reset after some time */
345 else if (time_before(jiffies,
346 (pf->tx_timeout_last_recovery + netdev->watchdog_timeo)))
347 return; /* don't do any new action before the next timeout */
348
349 if (tx_ring) {
350 head = i40e_get_head(tx_ring);
351 /* Read interrupt register */
352 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
353 val = rd32(&pf->hw,
354 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
355 tx_ring->vsi->base_vector - 1));
356 else
357 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
358
359 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",
360 vsi->seid, hung_queue, tx_ring->next_to_clean,
361 head, tx_ring->next_to_use,
362 readl(tx_ring->tail), val);
363 }
364
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000365 pf->tx_timeout_last_recovery = jiffies;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400366 netdev_info(netdev, "tx_timeout recovery level %d, hung_queue %d\n",
367 pf->tx_timeout_recovery_level, hung_queue);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000368
369 switch (pf->tx_timeout_recovery_level) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000370 case 1:
371 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
372 break;
373 case 2:
374 set_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
375 break;
376 case 3:
377 set_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
378 break;
379 default:
380 netdev_err(netdev, "tx_timeout recovery unsuccessful\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000381 break;
382 }
Kiran Patilb03a8c12015-09-24 18:13:15 -0400383
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000384 i40e_service_event_schedule(pf);
385 pf->tx_timeout_recovery_level++;
386}
387
388/**
389 * i40e_release_rx_desc - Store the new tail and head values
390 * @rx_ring: ring to bump
391 * @val: new head index
392 **/
393static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
394{
395 rx_ring->next_to_use = val;
396
397 /* Force memory writes to complete before letting h/w
398 * know there are new descriptors to fetch. (Only
399 * applicable for weak-ordered memory model archs,
400 * such as IA-64).
401 */
402 wmb();
403 writel(val, rx_ring->tail);
404}
405
406/**
407 * i40e_get_vsi_stats_struct - Get System Network Statistics
408 * @vsi: the VSI we care about
409 *
410 * Returns the address of the device statistics structure.
411 * The statistics are actually updated from the service task.
412 **/
413struct rtnl_link_stats64 *i40e_get_vsi_stats_struct(struct i40e_vsi *vsi)
414{
415 return &vsi->net_stats;
416}
417
418/**
419 * i40e_get_netdev_stats_struct - Get statistics for netdev interface
420 * @netdev: network interface device structure
421 *
422 * Returns the address of the device statistics structure.
423 * The statistics are actually updated from the service task.
424 **/
Vasu Dev38e00432014-08-01 13:27:03 -0700425#ifdef I40E_FCOE
426struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
427 struct net_device *netdev,
428 struct rtnl_link_stats64 *stats)
429#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000430static struct rtnl_link_stats64 *i40e_get_netdev_stats_struct(
431 struct net_device *netdev,
Alexander Duyck980e9b12013-09-28 06:01:03 +0000432 struct rtnl_link_stats64 *stats)
Vasu Dev38e00432014-08-01 13:27:03 -0700433#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000434{
435 struct i40e_netdev_priv *np = netdev_priv(netdev);
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +0000436 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000437 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000438 struct rtnl_link_stats64 *vsi_stats = i40e_get_vsi_stats_struct(vsi);
439 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000440
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +0000441 if (test_bit(__I40E_DOWN, &vsi->state))
442 return stats;
443
Jesse Brandeburg3c325ce2013-12-14 03:26:45 -0800444 if (!vsi->tx_rings)
445 return stats;
446
Alexander Duyck980e9b12013-09-28 06:01:03 +0000447 rcu_read_lock();
448 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000449 u64 bytes, packets;
450 unsigned int start;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000451
Alexander Duyck980e9b12013-09-28 06:01:03 +0000452 tx_ring = ACCESS_ONCE(vsi->tx_rings[i]);
453 if (!tx_ring)
454 continue;
455
456 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700457 start = u64_stats_fetch_begin_irq(&tx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000458 packets = tx_ring->stats.packets;
459 bytes = tx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700460 } while (u64_stats_fetch_retry_irq(&tx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000461
462 stats->tx_packets += packets;
463 stats->tx_bytes += bytes;
464 rx_ring = &tx_ring[1];
465
466 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700467 start = u64_stats_fetch_begin_irq(&rx_ring->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000468 packets = rx_ring->stats.packets;
469 bytes = rx_ring->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700470 } while (u64_stats_fetch_retry_irq(&rx_ring->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000471
472 stats->rx_packets += packets;
473 stats->rx_bytes += bytes;
474 }
475 rcu_read_unlock();
476
Akeem G Abodunrina5282f42014-05-10 04:49:03 +0000477 /* following stats updated by i40e_watchdog_subtask() */
Alexander Duyck980e9b12013-09-28 06:01:03 +0000478 stats->multicast = vsi_stats->multicast;
479 stats->tx_errors = vsi_stats->tx_errors;
480 stats->tx_dropped = vsi_stats->tx_dropped;
481 stats->rx_errors = vsi_stats->rx_errors;
Jesse Brandeburgd8201e22015-07-23 16:54:35 -0400482 stats->rx_dropped = vsi_stats->rx_dropped;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000483 stats->rx_crc_errors = vsi_stats->rx_crc_errors;
484 stats->rx_length_errors = vsi_stats->rx_length_errors;
485
486 return stats;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000487}
488
489/**
490 * i40e_vsi_reset_stats - Resets all stats of the given vsi
491 * @vsi: the VSI to have its stats reset
492 **/
493void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
494{
495 struct rtnl_link_stats64 *ns;
496 int i;
497
498 if (!vsi)
499 return;
500
501 ns = i40e_get_vsi_stats_struct(vsi);
502 memset(ns, 0, sizeof(*ns));
503 memset(&vsi->net_stats_offsets, 0, sizeof(vsi->net_stats_offsets));
504 memset(&vsi->eth_stats, 0, sizeof(vsi->eth_stats));
505 memset(&vsi->eth_stats_offsets, 0, sizeof(vsi->eth_stats_offsets));
Greg Rose8e9dca52013-12-18 13:45:53 +0000506 if (vsi->rx_rings && vsi->rx_rings[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000507 for (i = 0; i < vsi->num_queue_pairs; i++) {
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400508 memset(&vsi->rx_rings[i]->stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000509 sizeof(vsi->rx_rings[i]->stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400510 memset(&vsi->rx_rings[i]->rx_stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000511 sizeof(vsi->rx_rings[i]->rx_stats));
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400512 memset(&vsi->tx_rings[i]->stats, 0,
Alexander Duyck9f65e152013-09-28 06:00:58 +0000513 sizeof(vsi->tx_rings[i]->stats));
514 memset(&vsi->tx_rings[i]->tx_stats, 0,
515 sizeof(vsi->tx_rings[i]->tx_stats));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000516 }
Greg Rose8e9dca52013-12-18 13:45:53 +0000517 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000518 vsi->stat_offsets_loaded = false;
519}
520
521/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +0000522 * i40e_pf_reset_stats - Reset all of the stats for the given PF
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000523 * @pf: the PF to be reset
524 **/
525void i40e_pf_reset_stats(struct i40e_pf *pf)
526{
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000527 int i;
528
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000529 memset(&pf->stats, 0, sizeof(pf->stats));
530 memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
531 pf->stat_offsets_loaded = false;
Shannon Nelsone91fdf72014-06-03 23:50:18 +0000532
533 for (i = 0; i < I40E_MAX_VEB; i++) {
534 if (pf->veb[i]) {
535 memset(&pf->veb[i]->stats, 0,
536 sizeof(pf->veb[i]->stats));
537 memset(&pf->veb[i]->stats_offsets, 0,
538 sizeof(pf->veb[i]->stats_offsets));
539 pf->veb[i]->stat_offsets_loaded = false;
540 }
541 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000542}
543
544/**
545 * i40e_stat_update48 - read and update a 48 bit stat from the chip
546 * @hw: ptr to the hardware info
547 * @hireg: the high 32 bit reg to read
548 * @loreg: the low 32 bit reg to read
549 * @offset_loaded: has the initial offset been loaded yet
550 * @offset: ptr to current offset value
551 * @stat: ptr to the stat
552 *
553 * Since the device stats are not reset at PFReset, they likely will not
554 * be zeroed when the driver starts. We'll save the first values read
555 * and use them as offsets to be subtracted from the raw values in order
556 * to report stats that count from zero. In the process, we also manage
557 * the potential roll-over.
558 **/
559static void i40e_stat_update48(struct i40e_hw *hw, u32 hireg, u32 loreg,
560 bool offset_loaded, u64 *offset, u64 *stat)
561{
562 u64 new_data;
563
Shannon Nelsonab600852014-01-17 15:36:39 -0800564 if (hw->device_id == I40E_DEV_ID_QEMU) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000565 new_data = rd32(hw, loreg);
566 new_data |= ((u64)(rd32(hw, hireg) & 0xFFFF)) << 32;
567 } else {
568 new_data = rd64(hw, loreg);
569 }
570 if (!offset_loaded)
571 *offset = new_data;
572 if (likely(new_data >= *offset))
573 *stat = new_data - *offset;
574 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400575 *stat = (new_data + BIT_ULL(48)) - *offset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000576 *stat &= 0xFFFFFFFFFFFFULL;
577}
578
579/**
580 * i40e_stat_update32 - read and update a 32 bit stat from the chip
581 * @hw: ptr to the hardware info
582 * @reg: the hw reg to read
583 * @offset_loaded: has the initial offset been loaded yet
584 * @offset: ptr to current offset value
585 * @stat: ptr to the stat
586 **/
587static void i40e_stat_update32(struct i40e_hw *hw, u32 reg,
588 bool offset_loaded, u64 *offset, u64 *stat)
589{
590 u32 new_data;
591
592 new_data = rd32(hw, reg);
593 if (!offset_loaded)
594 *offset = new_data;
595 if (likely(new_data >= *offset))
596 *stat = (u32)(new_data - *offset);
597 else
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400598 *stat = (u32)((new_data + BIT_ULL(32)) - *offset);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000599}
600
601/**
602 * i40e_update_eth_stats - Update VSI-specific ethernet statistics counters.
603 * @vsi: the VSI to be updated
604 **/
605void i40e_update_eth_stats(struct i40e_vsi *vsi)
606{
607 int stat_idx = le16_to_cpu(vsi->info.stat_counter_idx);
608 struct i40e_pf *pf = vsi->back;
609 struct i40e_hw *hw = &pf->hw;
610 struct i40e_eth_stats *oes;
611 struct i40e_eth_stats *es; /* device's eth stats */
612
613 es = &vsi->eth_stats;
614 oes = &vsi->eth_stats_offsets;
615
616 /* Gather up the stats that the hw collects */
617 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
618 vsi->stat_offsets_loaded,
619 &oes->tx_errors, &es->tx_errors);
620 i40e_stat_update32(hw, I40E_GLV_RDPC(stat_idx),
621 vsi->stat_offsets_loaded,
622 &oes->rx_discards, &es->rx_discards);
Shannon Nelson41a9e552014-04-23 04:50:20 +0000623 i40e_stat_update32(hw, I40E_GLV_RUPP(stat_idx),
624 vsi->stat_offsets_loaded,
625 &oes->rx_unknown_protocol, &es->rx_unknown_protocol);
626 i40e_stat_update32(hw, I40E_GLV_TEPC(stat_idx),
627 vsi->stat_offsets_loaded,
628 &oes->tx_errors, &es->tx_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000629
630 i40e_stat_update48(hw, I40E_GLV_GORCH(stat_idx),
631 I40E_GLV_GORCL(stat_idx),
632 vsi->stat_offsets_loaded,
633 &oes->rx_bytes, &es->rx_bytes);
634 i40e_stat_update48(hw, I40E_GLV_UPRCH(stat_idx),
635 I40E_GLV_UPRCL(stat_idx),
636 vsi->stat_offsets_loaded,
637 &oes->rx_unicast, &es->rx_unicast);
638 i40e_stat_update48(hw, I40E_GLV_MPRCH(stat_idx),
639 I40E_GLV_MPRCL(stat_idx),
640 vsi->stat_offsets_loaded,
641 &oes->rx_multicast, &es->rx_multicast);
642 i40e_stat_update48(hw, I40E_GLV_BPRCH(stat_idx),
643 I40E_GLV_BPRCL(stat_idx),
644 vsi->stat_offsets_loaded,
645 &oes->rx_broadcast, &es->rx_broadcast);
646
647 i40e_stat_update48(hw, I40E_GLV_GOTCH(stat_idx),
648 I40E_GLV_GOTCL(stat_idx),
649 vsi->stat_offsets_loaded,
650 &oes->tx_bytes, &es->tx_bytes);
651 i40e_stat_update48(hw, I40E_GLV_UPTCH(stat_idx),
652 I40E_GLV_UPTCL(stat_idx),
653 vsi->stat_offsets_loaded,
654 &oes->tx_unicast, &es->tx_unicast);
655 i40e_stat_update48(hw, I40E_GLV_MPTCH(stat_idx),
656 I40E_GLV_MPTCL(stat_idx),
657 vsi->stat_offsets_loaded,
658 &oes->tx_multicast, &es->tx_multicast);
659 i40e_stat_update48(hw, I40E_GLV_BPTCH(stat_idx),
660 I40E_GLV_BPTCL(stat_idx),
661 vsi->stat_offsets_loaded,
662 &oes->tx_broadcast, &es->tx_broadcast);
663 vsi->stat_offsets_loaded = true;
664}
665
666/**
667 * i40e_update_veb_stats - Update Switch component statistics
668 * @veb: the VEB being updated
669 **/
670static void i40e_update_veb_stats(struct i40e_veb *veb)
671{
672 struct i40e_pf *pf = veb->pf;
673 struct i40e_hw *hw = &pf->hw;
674 struct i40e_eth_stats *oes;
675 struct i40e_eth_stats *es; /* device's eth stats */
Neerav Parikhfe860af2015-07-10 19:36:02 -0400676 struct i40e_veb_tc_stats *veb_oes;
677 struct i40e_veb_tc_stats *veb_es;
678 int i, idx = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000679
680 idx = veb->stats_idx;
681 es = &veb->stats;
682 oes = &veb->stats_offsets;
Neerav Parikhfe860af2015-07-10 19:36:02 -0400683 veb_es = &veb->tc_stats;
684 veb_oes = &veb->tc_stats_offsets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000685
686 /* Gather up the stats that the hw collects */
687 i40e_stat_update32(hw, I40E_GLSW_TDPC(idx),
688 veb->stat_offsets_loaded,
689 &oes->tx_discards, &es->tx_discards);
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +0000690 if (hw->revision_id > 0)
691 i40e_stat_update32(hw, I40E_GLSW_RUPP(idx),
692 veb->stat_offsets_loaded,
693 &oes->rx_unknown_protocol,
694 &es->rx_unknown_protocol);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000695 i40e_stat_update48(hw, I40E_GLSW_GORCH(idx), I40E_GLSW_GORCL(idx),
696 veb->stat_offsets_loaded,
697 &oes->rx_bytes, &es->rx_bytes);
698 i40e_stat_update48(hw, I40E_GLSW_UPRCH(idx), I40E_GLSW_UPRCL(idx),
699 veb->stat_offsets_loaded,
700 &oes->rx_unicast, &es->rx_unicast);
701 i40e_stat_update48(hw, I40E_GLSW_MPRCH(idx), I40E_GLSW_MPRCL(idx),
702 veb->stat_offsets_loaded,
703 &oes->rx_multicast, &es->rx_multicast);
704 i40e_stat_update48(hw, I40E_GLSW_BPRCH(idx), I40E_GLSW_BPRCL(idx),
705 veb->stat_offsets_loaded,
706 &oes->rx_broadcast, &es->rx_broadcast);
707
708 i40e_stat_update48(hw, I40E_GLSW_GOTCH(idx), I40E_GLSW_GOTCL(idx),
709 veb->stat_offsets_loaded,
710 &oes->tx_bytes, &es->tx_bytes);
711 i40e_stat_update48(hw, I40E_GLSW_UPTCH(idx), I40E_GLSW_UPTCL(idx),
712 veb->stat_offsets_loaded,
713 &oes->tx_unicast, &es->tx_unicast);
714 i40e_stat_update48(hw, I40E_GLSW_MPTCH(idx), I40E_GLSW_MPTCL(idx),
715 veb->stat_offsets_loaded,
716 &oes->tx_multicast, &es->tx_multicast);
717 i40e_stat_update48(hw, I40E_GLSW_BPTCH(idx), I40E_GLSW_BPTCL(idx),
718 veb->stat_offsets_loaded,
719 &oes->tx_broadcast, &es->tx_broadcast);
Neerav Parikhfe860af2015-07-10 19:36:02 -0400720 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
721 i40e_stat_update48(hw, I40E_GLVEBTC_RPCH(i, idx),
722 I40E_GLVEBTC_RPCL(i, idx),
723 veb->stat_offsets_loaded,
724 &veb_oes->tc_rx_packets[i],
725 &veb_es->tc_rx_packets[i]);
726 i40e_stat_update48(hw, I40E_GLVEBTC_RBCH(i, idx),
727 I40E_GLVEBTC_RBCL(i, idx),
728 veb->stat_offsets_loaded,
729 &veb_oes->tc_rx_bytes[i],
730 &veb_es->tc_rx_bytes[i]);
731 i40e_stat_update48(hw, I40E_GLVEBTC_TPCH(i, idx),
732 I40E_GLVEBTC_TPCL(i, idx),
733 veb->stat_offsets_loaded,
734 &veb_oes->tc_tx_packets[i],
735 &veb_es->tc_tx_packets[i]);
736 i40e_stat_update48(hw, I40E_GLVEBTC_TBCH(i, idx),
737 I40E_GLVEBTC_TBCL(i, idx),
738 veb->stat_offsets_loaded,
739 &veb_oes->tc_tx_bytes[i],
740 &veb_es->tc_tx_bytes[i]);
741 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000742 veb->stat_offsets_loaded = true;
743}
744
Vasu Dev38e00432014-08-01 13:27:03 -0700745#ifdef I40E_FCOE
746/**
747 * i40e_update_fcoe_stats - Update FCoE-specific ethernet statistics counters.
748 * @vsi: the VSI that is capable of doing FCoE
749 **/
750static void i40e_update_fcoe_stats(struct i40e_vsi *vsi)
751{
752 struct i40e_pf *pf = vsi->back;
753 struct i40e_hw *hw = &pf->hw;
754 struct i40e_fcoe_stats *ofs;
755 struct i40e_fcoe_stats *fs; /* device's eth stats */
756 int idx;
757
758 if (vsi->type != I40E_VSI_FCOE)
759 return;
760
761 idx = (pf->pf_seid - I40E_BASE_PF_SEID) + I40E_FCOE_PF_STAT_OFFSET;
762 fs = &vsi->fcoe_stats;
763 ofs = &vsi->fcoe_stats_offsets;
764
765 i40e_stat_update32(hw, I40E_GL_FCOEPRC(idx),
766 vsi->fcoe_stat_offsets_loaded,
767 &ofs->rx_fcoe_packets, &fs->rx_fcoe_packets);
768 i40e_stat_update48(hw, I40E_GL_FCOEDWRCH(idx), I40E_GL_FCOEDWRCL(idx),
769 vsi->fcoe_stat_offsets_loaded,
770 &ofs->rx_fcoe_dwords, &fs->rx_fcoe_dwords);
771 i40e_stat_update32(hw, I40E_GL_FCOERPDC(idx),
772 vsi->fcoe_stat_offsets_loaded,
773 &ofs->rx_fcoe_dropped, &fs->rx_fcoe_dropped);
774 i40e_stat_update32(hw, I40E_GL_FCOEPTC(idx),
775 vsi->fcoe_stat_offsets_loaded,
776 &ofs->tx_fcoe_packets, &fs->tx_fcoe_packets);
777 i40e_stat_update48(hw, I40E_GL_FCOEDWTCH(idx), I40E_GL_FCOEDWTCL(idx),
778 vsi->fcoe_stat_offsets_loaded,
779 &ofs->tx_fcoe_dwords, &fs->tx_fcoe_dwords);
780 i40e_stat_update32(hw, I40E_GL_FCOECRC(idx),
781 vsi->fcoe_stat_offsets_loaded,
782 &ofs->fcoe_bad_fccrc, &fs->fcoe_bad_fccrc);
783 i40e_stat_update32(hw, I40E_GL_FCOELAST(idx),
784 vsi->fcoe_stat_offsets_loaded,
785 &ofs->fcoe_last_error, &fs->fcoe_last_error);
786 i40e_stat_update32(hw, I40E_GL_FCOEDDPC(idx),
787 vsi->fcoe_stat_offsets_loaded,
788 &ofs->fcoe_ddp_count, &fs->fcoe_ddp_count);
789
790 vsi->fcoe_stat_offsets_loaded = true;
791}
792
793#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000794/**
795 * i40e_update_link_xoff_rx - Update XOFF received in link flow control mode
796 * @pf: the corresponding PF
797 *
798 * Update the Rx XOFF counter (PAUSE frames) in link flow control mode
799 **/
800static void i40e_update_link_xoff_rx(struct i40e_pf *pf)
801{
802 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
803 struct i40e_hw_port_stats *nsd = &pf->stats;
804 struct i40e_hw *hw = &pf->hw;
805 u64 xoff = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000806
807 if ((hw->fc.current_mode != I40E_FC_FULL) &&
808 (hw->fc.current_mode != I40E_FC_RX_PAUSE))
809 return;
810
811 xoff = nsd->link_xoff_rx;
812 i40e_stat_update32(hw, I40E_GLPRT_LXOFFRXC(hw->port),
813 pf->stat_offsets_loaded,
814 &osd->link_xoff_rx, &nsd->link_xoff_rx);
815
816 /* No new LFC xoff rx */
817 if (!(nsd->link_xoff_rx - xoff))
818 return;
819
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000820}
821
822/**
823 * i40e_update_prio_xoff_rx - Update XOFF received in PFC mode
824 * @pf: the corresponding PF
825 *
826 * Update the Rx XOFF counter (PAUSE frames) in PFC mode
827 **/
828static void i40e_update_prio_xoff_rx(struct i40e_pf *pf)
829{
830 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
831 struct i40e_hw_port_stats *nsd = &pf->stats;
832 bool xoff[I40E_MAX_TRAFFIC_CLASS] = {false};
833 struct i40e_dcbx_config *dcb_cfg;
834 struct i40e_hw *hw = &pf->hw;
Kiran Patilb03a8c12015-09-24 18:13:15 -0400835 u16 i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000836 u8 tc;
837
838 dcb_cfg = &hw->local_dcbx_config;
839
Neerav Parikhe1208142015-04-16 20:05:58 -0400840 /* Collect Link XOFF stats when PFC is disabled */
841 if (!dcb_cfg->pfc.pfcenable) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000842 i40e_update_link_xoff_rx(pf);
843 return;
844 }
845
846 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
847 u64 prio_xoff = nsd->priority_xoff_rx[i];
Jesse Brandeburg6995b362015-08-28 17:55:54 -0400848
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000849 i40e_stat_update32(hw, I40E_GLPRT_PXOFFRXC(hw->port, i),
850 pf->stat_offsets_loaded,
851 &osd->priority_xoff_rx[i],
852 &nsd->priority_xoff_rx[i]);
853
854 /* No new PFC xoff rx */
855 if (!(nsd->priority_xoff_rx[i] - prio_xoff))
856 continue;
857 /* Get the TC for given priority */
858 tc = dcb_cfg->etscfg.prioritytable[i];
859 xoff[tc] = true;
860 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000861}
862
863/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000864 * i40e_update_vsi_stats - Update the vsi statistics counters.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000865 * @vsi: the VSI to be updated
866 *
867 * There are a few instances where we store the same stat in a
868 * couple of different structs. This is partly because we have
869 * the netdev stats that need to be filled out, which is slightly
870 * different from the "eth_stats" defined by the chip and used in
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000871 * VF communications. We sort it out here.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000872 **/
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000873static void i40e_update_vsi_stats(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000874{
875 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000876 struct rtnl_link_stats64 *ons;
877 struct rtnl_link_stats64 *ns; /* netdev stats */
878 struct i40e_eth_stats *oes;
879 struct i40e_eth_stats *es; /* device's eth stats */
880 u32 tx_restart, tx_busy;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000881 struct i40e_ring *p;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000882 u32 rx_page, rx_buf;
Akeem G Abodunrinbf00b372014-10-17 03:14:39 +0000883 u64 bytes, packets;
884 unsigned int start;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400885 u64 tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400886 u64 tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000887 u64 rx_p, rx_b;
888 u64 tx_p, tx_b;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000889 u16 q;
890
891 if (test_bit(__I40E_DOWN, &vsi->state) ||
892 test_bit(__I40E_CONFIG_BUSY, &pf->state))
893 return;
894
895 ns = i40e_get_vsi_stats_struct(vsi);
896 ons = &vsi->net_stats_offsets;
897 es = &vsi->eth_stats;
898 oes = &vsi->eth_stats_offsets;
899
900 /* Gather up the netdev and vsi stats that the driver collects
901 * on the fly during packet processing
902 */
903 rx_b = rx_p = 0;
904 tx_b = tx_p = 0;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400905 tx_restart = tx_busy = tx_linearize = tx_force_wb = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000906 rx_page = 0;
907 rx_buf = 0;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000908 rcu_read_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000909 for (q = 0; q < vsi->num_queue_pairs; q++) {
Alexander Duyck980e9b12013-09-28 06:01:03 +0000910 /* locate Tx ring */
911 p = ACCESS_ONCE(vsi->tx_rings[q]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000912
Alexander Duyck980e9b12013-09-28 06:01:03 +0000913 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700914 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000915 packets = p->stats.packets;
916 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700917 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000918 tx_b += bytes;
919 tx_p += packets;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000920 tx_restart += p->tx_stats.restart_queue;
921 tx_busy += p->tx_stats.tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400922 tx_linearize += p->tx_stats.tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400923 tx_force_wb += p->tx_stats.tx_force_wb;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000924
925 /* Rx queue is part of the same block as Tx queue */
926 p = &p[1];
927 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700928 start = u64_stats_fetch_begin_irq(&p->syncp);
Alexander Duyck980e9b12013-09-28 06:01:03 +0000929 packets = p->stats.packets;
930 bytes = p->stats.bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700931 } while (u64_stats_fetch_retry_irq(&p->syncp, start));
Alexander Duyck980e9b12013-09-28 06:01:03 +0000932 rx_b += bytes;
933 rx_p += packets;
Mitch Williams420136c2013-12-18 13:45:59 +0000934 rx_buf += p->rx_stats.alloc_buff_failed;
935 rx_page += p->rx_stats.alloc_page_failed;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000936 }
Alexander Duyck980e9b12013-09-28 06:01:03 +0000937 rcu_read_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000938 vsi->tx_restart = tx_restart;
939 vsi->tx_busy = tx_busy;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -0400940 vsi->tx_linearize = tx_linearize;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -0400941 vsi->tx_force_wb = tx_force_wb;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000942 vsi->rx_page_failed = rx_page;
943 vsi->rx_buf_failed = rx_buf;
944
945 ns->rx_packets = rx_p;
946 ns->rx_bytes = rx_b;
947 ns->tx_packets = tx_p;
948 ns->tx_bytes = tx_b;
949
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000950 /* update netdev stats from eth stats */
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000951 i40e_update_eth_stats(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000952 ons->tx_errors = oes->tx_errors;
953 ns->tx_errors = es->tx_errors;
954 ons->multicast = oes->rx_multicast;
955 ns->multicast = es->rx_multicast;
Shannon Nelson41a9e552014-04-23 04:50:20 +0000956 ons->rx_dropped = oes->rx_discards;
957 ns->rx_dropped = es->rx_discards;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000958 ons->tx_dropped = oes->tx_discards;
959 ns->tx_dropped = es->tx_discards;
960
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000961 /* pull in a couple PF stats if this is the main vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000962 if (vsi == pf->vsi[pf->lan_vsi]) {
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000963 ns->rx_crc_errors = pf->stats.crc_errors;
964 ns->rx_errors = pf->stats.crc_errors + pf->stats.illegal_bytes;
965 ns->rx_length_errors = pf->stats.rx_length_errors;
966 }
967}
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000968
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000969/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +0000970 * i40e_update_pf_stats - Update the PF statistics counters.
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000971 * @pf: the PF to be updated
972 **/
973static void i40e_update_pf_stats(struct i40e_pf *pf)
974{
975 struct i40e_hw_port_stats *osd = &pf->stats_offsets;
976 struct i40e_hw_port_stats *nsd = &pf->stats;
977 struct i40e_hw *hw = &pf->hw;
978 u32 val;
979 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +0000980
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000981 i40e_stat_update48(hw, I40E_GLPRT_GORCH(hw->port),
982 I40E_GLPRT_GORCL(hw->port),
983 pf->stat_offsets_loaded,
984 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
985 i40e_stat_update48(hw, I40E_GLPRT_GOTCH(hw->port),
986 I40E_GLPRT_GOTCL(hw->port),
987 pf->stat_offsets_loaded,
988 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
989 i40e_stat_update32(hw, I40E_GLPRT_RDPC(hw->port),
990 pf->stat_offsets_loaded,
991 &osd->eth.rx_discards,
992 &nsd->eth.rx_discards);
Shannon Nelson532d2832014-04-23 04:50:09 +0000993 i40e_stat_update48(hw, I40E_GLPRT_UPRCH(hw->port),
994 I40E_GLPRT_UPRCL(hw->port),
995 pf->stat_offsets_loaded,
996 &osd->eth.rx_unicast,
997 &nsd->eth.rx_unicast);
Shannon Nelson7812fdd2014-04-23 04:50:18 +0000998 i40e_stat_update48(hw, I40E_GLPRT_MPRCH(hw->port),
999 I40E_GLPRT_MPRCL(hw->port),
1000 pf->stat_offsets_loaded,
1001 &osd->eth.rx_multicast,
1002 &nsd->eth.rx_multicast);
Shannon Nelson532d2832014-04-23 04:50:09 +00001003 i40e_stat_update48(hw, I40E_GLPRT_BPRCH(hw->port),
1004 I40E_GLPRT_BPRCL(hw->port),
1005 pf->stat_offsets_loaded,
1006 &osd->eth.rx_broadcast,
1007 &nsd->eth.rx_broadcast);
1008 i40e_stat_update48(hw, I40E_GLPRT_UPTCH(hw->port),
1009 I40E_GLPRT_UPTCL(hw->port),
1010 pf->stat_offsets_loaded,
1011 &osd->eth.tx_unicast,
1012 &nsd->eth.tx_unicast);
1013 i40e_stat_update48(hw, I40E_GLPRT_MPTCH(hw->port),
1014 I40E_GLPRT_MPTCL(hw->port),
1015 pf->stat_offsets_loaded,
1016 &osd->eth.tx_multicast,
1017 &nsd->eth.tx_multicast);
1018 i40e_stat_update48(hw, I40E_GLPRT_BPTCH(hw->port),
1019 I40E_GLPRT_BPTCL(hw->port),
1020 pf->stat_offsets_loaded,
1021 &osd->eth.tx_broadcast,
1022 &nsd->eth.tx_broadcast);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001023
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001024 i40e_stat_update32(hw, I40E_GLPRT_TDOLD(hw->port),
1025 pf->stat_offsets_loaded,
1026 &osd->tx_dropped_link_down,
1027 &nsd->tx_dropped_link_down);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001028
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001029 i40e_stat_update32(hw, I40E_GLPRT_CRCERRS(hw->port),
1030 pf->stat_offsets_loaded,
1031 &osd->crc_errors, &nsd->crc_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001032
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001033 i40e_stat_update32(hw, I40E_GLPRT_ILLERRC(hw->port),
1034 pf->stat_offsets_loaded,
1035 &osd->illegal_bytes, &nsd->illegal_bytes);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001036
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001037 i40e_stat_update32(hw, I40E_GLPRT_MLFC(hw->port),
1038 pf->stat_offsets_loaded,
1039 &osd->mac_local_faults,
1040 &nsd->mac_local_faults);
1041 i40e_stat_update32(hw, I40E_GLPRT_MRFC(hw->port),
1042 pf->stat_offsets_loaded,
1043 &osd->mac_remote_faults,
1044 &nsd->mac_remote_faults);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001045
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001046 i40e_stat_update32(hw, I40E_GLPRT_RLEC(hw->port),
1047 pf->stat_offsets_loaded,
1048 &osd->rx_length_errors,
1049 &nsd->rx_length_errors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001050
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001051 i40e_stat_update32(hw, I40E_GLPRT_LXONRXC(hw->port),
1052 pf->stat_offsets_loaded,
1053 &osd->link_xon_rx, &nsd->link_xon_rx);
1054 i40e_stat_update32(hw, I40E_GLPRT_LXONTXC(hw->port),
1055 pf->stat_offsets_loaded,
1056 &osd->link_xon_tx, &nsd->link_xon_tx);
1057 i40e_update_prio_xoff_rx(pf); /* handles I40E_GLPRT_LXOFFRXC */
1058 i40e_stat_update32(hw, I40E_GLPRT_LXOFFTXC(hw->port),
1059 pf->stat_offsets_loaded,
1060 &osd->link_xoff_tx, &nsd->link_xoff_tx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001061
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001062 for (i = 0; i < 8; i++) {
1063 i40e_stat_update32(hw, I40E_GLPRT_PXONRXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001064 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001065 &osd->priority_xon_rx[i],
1066 &nsd->priority_xon_rx[i]);
1067 i40e_stat_update32(hw, I40E_GLPRT_PXONTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001068 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001069 &osd->priority_xon_tx[i],
1070 &nsd->priority_xon_tx[i]);
1071 i40e_stat_update32(hw, I40E_GLPRT_PXOFFTXC(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001072 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001073 &osd->priority_xoff_tx[i],
1074 &nsd->priority_xoff_tx[i]);
1075 i40e_stat_update32(hw,
1076 I40E_GLPRT_RXON2OFFCNT(hw->port, i),
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001077 pf->stat_offsets_loaded,
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001078 &osd->priority_xon_2_xoff[i],
1079 &nsd->priority_xon_2_xoff[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001080 }
1081
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001082 i40e_stat_update48(hw, I40E_GLPRT_PRC64H(hw->port),
1083 I40E_GLPRT_PRC64L(hw->port),
1084 pf->stat_offsets_loaded,
1085 &osd->rx_size_64, &nsd->rx_size_64);
1086 i40e_stat_update48(hw, I40E_GLPRT_PRC127H(hw->port),
1087 I40E_GLPRT_PRC127L(hw->port),
1088 pf->stat_offsets_loaded,
1089 &osd->rx_size_127, &nsd->rx_size_127);
1090 i40e_stat_update48(hw, I40E_GLPRT_PRC255H(hw->port),
1091 I40E_GLPRT_PRC255L(hw->port),
1092 pf->stat_offsets_loaded,
1093 &osd->rx_size_255, &nsd->rx_size_255);
1094 i40e_stat_update48(hw, I40E_GLPRT_PRC511H(hw->port),
1095 I40E_GLPRT_PRC511L(hw->port),
1096 pf->stat_offsets_loaded,
1097 &osd->rx_size_511, &nsd->rx_size_511);
1098 i40e_stat_update48(hw, I40E_GLPRT_PRC1023H(hw->port),
1099 I40E_GLPRT_PRC1023L(hw->port),
1100 pf->stat_offsets_loaded,
1101 &osd->rx_size_1023, &nsd->rx_size_1023);
1102 i40e_stat_update48(hw, I40E_GLPRT_PRC1522H(hw->port),
1103 I40E_GLPRT_PRC1522L(hw->port),
1104 pf->stat_offsets_loaded,
1105 &osd->rx_size_1522, &nsd->rx_size_1522);
1106 i40e_stat_update48(hw, I40E_GLPRT_PRC9522H(hw->port),
1107 I40E_GLPRT_PRC9522L(hw->port),
1108 pf->stat_offsets_loaded,
1109 &osd->rx_size_big, &nsd->rx_size_big);
1110
1111 i40e_stat_update48(hw, I40E_GLPRT_PTC64H(hw->port),
1112 I40E_GLPRT_PTC64L(hw->port),
1113 pf->stat_offsets_loaded,
1114 &osd->tx_size_64, &nsd->tx_size_64);
1115 i40e_stat_update48(hw, I40E_GLPRT_PTC127H(hw->port),
1116 I40E_GLPRT_PTC127L(hw->port),
1117 pf->stat_offsets_loaded,
1118 &osd->tx_size_127, &nsd->tx_size_127);
1119 i40e_stat_update48(hw, I40E_GLPRT_PTC255H(hw->port),
1120 I40E_GLPRT_PTC255L(hw->port),
1121 pf->stat_offsets_loaded,
1122 &osd->tx_size_255, &nsd->tx_size_255);
1123 i40e_stat_update48(hw, I40E_GLPRT_PTC511H(hw->port),
1124 I40E_GLPRT_PTC511L(hw->port),
1125 pf->stat_offsets_loaded,
1126 &osd->tx_size_511, &nsd->tx_size_511);
1127 i40e_stat_update48(hw, I40E_GLPRT_PTC1023H(hw->port),
1128 I40E_GLPRT_PTC1023L(hw->port),
1129 pf->stat_offsets_loaded,
1130 &osd->tx_size_1023, &nsd->tx_size_1023);
1131 i40e_stat_update48(hw, I40E_GLPRT_PTC1522H(hw->port),
1132 I40E_GLPRT_PTC1522L(hw->port),
1133 pf->stat_offsets_loaded,
1134 &osd->tx_size_1522, &nsd->tx_size_1522);
1135 i40e_stat_update48(hw, I40E_GLPRT_PTC9522H(hw->port),
1136 I40E_GLPRT_PTC9522L(hw->port),
1137 pf->stat_offsets_loaded,
1138 &osd->tx_size_big, &nsd->tx_size_big);
1139
1140 i40e_stat_update32(hw, I40E_GLPRT_RUC(hw->port),
1141 pf->stat_offsets_loaded,
1142 &osd->rx_undersize, &nsd->rx_undersize);
1143 i40e_stat_update32(hw, I40E_GLPRT_RFC(hw->port),
1144 pf->stat_offsets_loaded,
1145 &osd->rx_fragments, &nsd->rx_fragments);
1146 i40e_stat_update32(hw, I40E_GLPRT_ROC(hw->port),
1147 pf->stat_offsets_loaded,
1148 &osd->rx_oversize, &nsd->rx_oversize);
1149 i40e_stat_update32(hw, I40E_GLPRT_RJC(hw->port),
1150 pf->stat_offsets_loaded,
1151 &osd->rx_jabber, &nsd->rx_jabber);
1152
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001153 /* FDIR stats */
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001154 i40e_stat_update32(hw,
1155 I40E_GLQF_PCNT(I40E_FD_ATR_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001156 pf->stat_offsets_loaded,
1157 &osd->fd_atr_match, &nsd->fd_atr_match);
Anjali Singhai Jain0bf4b1b2015-04-16 20:06:02 -04001158 i40e_stat_update32(hw,
1159 I40E_GLQF_PCNT(I40E_FD_SB_STAT_IDX(pf->hw.pf_id)),
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001160 pf->stat_offsets_loaded,
1161 &osd->fd_sb_match, &nsd->fd_sb_match);
Anjali Singhai Jain60ccd452015-04-16 20:06:01 -04001162 i40e_stat_update32(hw,
1163 I40E_GLQF_PCNT(I40E_FD_ATR_TUNNEL_STAT_IDX(pf->hw.pf_id)),
1164 pf->stat_offsets_loaded,
1165 &osd->fd_atr_tunnel_match, &nsd->fd_atr_tunnel_match);
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001166
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001167 val = rd32(hw, I40E_PRTPM_EEE_STAT);
1168 nsd->tx_lpi_status =
1169 (val & I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_MASK) >>
1170 I40E_PRTPM_EEE_STAT_TX_LPI_STATUS_SHIFT;
1171 nsd->rx_lpi_status =
1172 (val & I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_MASK) >>
1173 I40E_PRTPM_EEE_STAT_RX_LPI_STATUS_SHIFT;
1174 i40e_stat_update32(hw, I40E_PRTPM_TLPIC,
1175 pf->stat_offsets_loaded,
1176 &osd->tx_lpi_count, &nsd->tx_lpi_count);
1177 i40e_stat_update32(hw, I40E_PRTPM_RLPIC,
1178 pf->stat_offsets_loaded,
1179 &osd->rx_lpi_count, &nsd->rx_lpi_count);
1180
Anjali Singhai Jaind0389e52015-04-22 19:34:05 -04001181 if (pf->flags & I40E_FLAG_FD_SB_ENABLED &&
1182 !(pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED))
1183 nsd->fd_sb_status = true;
1184 else
1185 nsd->fd_sb_status = false;
1186
1187 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED &&
1188 !(pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
1189 nsd->fd_atr_status = true;
1190 else
1191 nsd->fd_atr_status = false;
1192
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001193 pf->stat_offsets_loaded = true;
1194}
1195
1196/**
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001197 * i40e_update_stats - Update the various statistics counters.
1198 * @vsi: the VSI to be updated
1199 *
1200 * Update the various stats for this VSI and its related entities.
1201 **/
1202void i40e_update_stats(struct i40e_vsi *vsi)
1203{
1204 struct i40e_pf *pf = vsi->back;
1205
1206 if (vsi == pf->vsi[pf->lan_vsi])
1207 i40e_update_pf_stats(pf);
1208
1209 i40e_update_vsi_stats(vsi);
Vasu Dev38e00432014-08-01 13:27:03 -07001210#ifdef I40E_FCOE
1211 i40e_update_fcoe_stats(vsi);
1212#endif
Shannon Nelson7812fdd2014-04-23 04:50:18 +00001213}
1214
1215/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001216 * i40e_find_filter - Search VSI filter list for specific mac/vlan filter
1217 * @vsi: the VSI to be searched
1218 * @macaddr: the MAC address
1219 * @vlan: the vlan
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001220 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001221 * @is_netdev: make sure its a netdev filter, else doesn't matter
1222 *
1223 * Returns ptr to the filter object or NULL
1224 **/
1225static struct i40e_mac_filter *i40e_find_filter(struct i40e_vsi *vsi,
1226 u8 *macaddr, s16 vlan,
1227 bool is_vf, bool is_netdev)
1228{
1229 struct i40e_mac_filter *f;
1230
1231 if (!vsi || !macaddr)
1232 return NULL;
1233
1234 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1235 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1236 (vlan == f->vlan) &&
1237 (!is_vf || f->is_vf) &&
1238 (!is_netdev || f->is_netdev))
1239 return f;
1240 }
1241 return NULL;
1242}
1243
1244/**
1245 * i40e_find_mac - Find a mac addr in the macvlan filters list
1246 * @vsi: the VSI to be searched
1247 * @macaddr: the MAC address we are searching for
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001248 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001249 * @is_netdev: make sure its a netdev filter, else doesn't matter
1250 *
1251 * Returns the first filter with the provided MAC address or NULL if
1252 * MAC address was not found
1253 **/
1254struct i40e_mac_filter *i40e_find_mac(struct i40e_vsi *vsi, u8 *macaddr,
1255 bool is_vf, bool is_netdev)
1256{
1257 struct i40e_mac_filter *f;
1258
1259 if (!vsi || !macaddr)
1260 return NULL;
1261
1262 list_for_each_entry(f, &vsi->mac_filter_list, list) {
1263 if ((ether_addr_equal(macaddr, f->macaddr)) &&
1264 (!is_vf || f->is_vf) &&
1265 (!is_netdev || f->is_netdev))
1266 return f;
1267 }
1268 return NULL;
1269}
1270
1271/**
1272 * i40e_is_vsi_in_vlan - Check if VSI is in vlan mode
1273 * @vsi: the VSI to be searched
1274 *
1275 * Returns true if VSI is in vlan mode or false otherwise
1276 **/
1277bool i40e_is_vsi_in_vlan(struct i40e_vsi *vsi)
1278{
1279 struct i40e_mac_filter *f;
1280
1281 /* Only -1 for all the filters denotes not in vlan mode
1282 * so we have to go through all the list in order to make sure
1283 */
1284 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Greg Rosed9b68f82015-07-23 16:54:31 -04001285 if (f->vlan >= 0 || vsi->info.pvid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001286 return true;
1287 }
1288
1289 return false;
1290}
1291
1292/**
1293 * i40e_put_mac_in_vlan - Make macvlan filters from macaddrs and vlans
1294 * @vsi: the VSI to be searched
1295 * @macaddr: the mac address to be filtered
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001296 * @is_vf: true if it is a VF
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001297 * @is_netdev: true if it is a netdev
1298 *
1299 * Goes through all the macvlan filters and adds a
1300 * macvlan filter for each unique vlan that already exists
1301 *
1302 * Returns first filter found on success, else NULL
1303 **/
1304struct i40e_mac_filter *i40e_put_mac_in_vlan(struct i40e_vsi *vsi, u8 *macaddr,
1305 bool is_vf, bool is_netdev)
1306{
1307 struct i40e_mac_filter *f;
1308
1309 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Mitch Williamsecbb44e2015-07-10 19:35:56 -04001310 if (vsi->info.pvid)
1311 f->vlan = le16_to_cpu(vsi->info.pvid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001312 if (!i40e_find_filter(vsi, macaddr, f->vlan,
1313 is_vf, is_netdev)) {
1314 if (!i40e_add_filter(vsi, macaddr, f->vlan,
Jesse Brandeburg8fb905b2014-01-17 15:36:33 -08001315 is_vf, is_netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001316 return NULL;
1317 }
1318 }
1319
1320 return list_first_entry_or_null(&vsi->mac_filter_list,
1321 struct i40e_mac_filter, list);
1322}
1323
1324/**
Greg Rose8c27d422014-05-22 06:31:56 +00001325 * i40e_rm_default_mac_filter - Remove the default MAC filter set by NVM
1326 * @vsi: the PF Main VSI - inappropriate for any other VSI
1327 * @macaddr: the MAC address
Shannon Nelson30650cc2014-07-29 04:01:50 +00001328 *
1329 * Some older firmware configurations set up a default promiscuous VLAN
1330 * filter that needs to be removed.
Greg Rose8c27d422014-05-22 06:31:56 +00001331 **/
Shannon Nelson30650cc2014-07-29 04:01:50 +00001332static int i40e_rm_default_mac_filter(struct i40e_vsi *vsi, u8 *macaddr)
Greg Rose8c27d422014-05-22 06:31:56 +00001333{
1334 struct i40e_aqc_remove_macvlan_element_data element;
1335 struct i40e_pf *pf = vsi->back;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001336 i40e_status ret;
Greg Rose8c27d422014-05-22 06:31:56 +00001337
1338 /* Only appropriate for the PF main VSI */
1339 if (vsi->type != I40E_VSI_MAIN)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001340 return -EINVAL;
Greg Rose8c27d422014-05-22 06:31:56 +00001341
Shannon Nelson30650cc2014-07-29 04:01:50 +00001342 memset(&element, 0, sizeof(element));
Greg Rose8c27d422014-05-22 06:31:56 +00001343 ether_addr_copy(element.mac_addr, macaddr);
1344 element.vlan_tag = 0;
1345 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH |
1346 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001347 ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1348 if (ret)
Shannon Nelson30650cc2014-07-29 04:01:50 +00001349 return -ENOENT;
1350
1351 return 0;
Greg Rose8c27d422014-05-22 06:31:56 +00001352}
1353
1354/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001355 * i40e_add_filter - Add a mac/vlan filter to the VSI
1356 * @vsi: the VSI to be searched
1357 * @macaddr: the MAC address
1358 * @vlan: the vlan
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001359 * @is_vf: make sure its a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001360 * @is_netdev: make sure its a netdev filter, else doesn't matter
1361 *
1362 * Returns ptr to the filter object or NULL when no memory available.
Kiran Patil21659032015-09-30 14:09:03 -04001363 *
1364 * NOTE: This function is expected to be called with mac_filter_list_lock
1365 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001366 **/
1367struct i40e_mac_filter *i40e_add_filter(struct i40e_vsi *vsi,
1368 u8 *macaddr, s16 vlan,
1369 bool is_vf, bool is_netdev)
1370{
1371 struct i40e_mac_filter *f;
1372
1373 if (!vsi || !macaddr)
1374 return NULL;
1375
1376 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1377 if (!f) {
1378 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1379 if (!f)
1380 goto add_filter_out;
1381
Greg Rose9a173902014-05-22 06:32:02 +00001382 ether_addr_copy(f->macaddr, macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001383 f->vlan = vlan;
1384 f->changed = true;
1385
1386 INIT_LIST_HEAD(&f->list);
1387 list_add(&f->list, &vsi->mac_filter_list);
1388 }
1389
1390 /* increment counter and add a new flag if needed */
1391 if (is_vf) {
1392 if (!f->is_vf) {
1393 f->is_vf = true;
1394 f->counter++;
1395 }
1396 } else if (is_netdev) {
1397 if (!f->is_netdev) {
1398 f->is_netdev = true;
1399 f->counter++;
1400 }
1401 } else {
1402 f->counter++;
1403 }
1404
1405 /* changed tells sync_filters_subtask to
1406 * push the filter down to the firmware
1407 */
1408 if (f->changed) {
1409 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1410 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1411 }
1412
1413add_filter_out:
1414 return f;
1415}
1416
1417/**
1418 * i40e_del_filter - Remove a mac/vlan filter from the VSI
1419 * @vsi: the VSI to be searched
1420 * @macaddr: the MAC address
1421 * @vlan: the vlan
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001422 * @is_vf: make sure it's a VF filter, else doesn't matter
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001423 * @is_netdev: make sure it's a netdev filter, else doesn't matter
Kiran Patil21659032015-09-30 14:09:03 -04001424 *
1425 * NOTE: This function is expected to be called with mac_filter_list_lock
1426 * being held.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001427 **/
1428void i40e_del_filter(struct i40e_vsi *vsi,
1429 u8 *macaddr, s16 vlan,
1430 bool is_vf, bool is_netdev)
1431{
1432 struct i40e_mac_filter *f;
1433
1434 if (!vsi || !macaddr)
1435 return;
1436
1437 f = i40e_find_filter(vsi, macaddr, vlan, is_vf, is_netdev);
1438 if (!f || f->counter == 0)
1439 return;
1440
1441 if (is_vf) {
1442 if (f->is_vf) {
1443 f->is_vf = false;
1444 f->counter--;
1445 }
1446 } else if (is_netdev) {
1447 if (f->is_netdev) {
1448 f->is_netdev = false;
1449 f->counter--;
1450 }
1451 } else {
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00001452 /* make sure we don't remove a filter in use by VF or netdev */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001453 int min_f = 0;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001454
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001455 min_f += (f->is_vf ? 1 : 0);
1456 min_f += (f->is_netdev ? 1 : 0);
1457
1458 if (f->counter > min_f)
1459 f->counter--;
1460 }
1461
1462 /* counter == 0 tells sync_filters_subtask to
1463 * remove the filter from the firmware's list
1464 */
1465 if (f->counter == 0) {
1466 f->changed = true;
1467 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1468 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1469 }
1470}
1471
1472/**
1473 * i40e_set_mac - NDO callback to set mac address
1474 * @netdev: network interface device structure
1475 * @p: pointer to an address structure
1476 *
1477 * Returns 0 on success, negative on failure
1478 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001479#ifdef I40E_FCOE
1480int i40e_set_mac(struct net_device *netdev, void *p)
1481#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001482static int i40e_set_mac(struct net_device *netdev, void *p)
Vasu Dev38e00432014-08-01 13:27:03 -07001483#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001484{
1485 struct i40e_netdev_priv *np = netdev_priv(netdev);
1486 struct i40e_vsi *vsi = np->vsi;
Shannon Nelson30650cc2014-07-29 04:01:50 +00001487 struct i40e_pf *pf = vsi->back;
1488 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001489 struct sockaddr *addr = p;
1490 struct i40e_mac_filter *f;
1491
1492 if (!is_valid_ether_addr(addr->sa_data))
1493 return -EADDRNOTAVAIL;
1494
Shannon Nelson30650cc2014-07-29 04:01:50 +00001495 if (ether_addr_equal(netdev->dev_addr, addr->sa_data)) {
1496 netdev_info(netdev, "already using mac address %pM\n",
1497 addr->sa_data);
1498 return 0;
1499 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001500
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00001501 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
1502 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
1503 return -EADDRNOTAVAIL;
1504
Shannon Nelson30650cc2014-07-29 04:01:50 +00001505 if (ether_addr_equal(hw->mac.addr, addr->sa_data))
1506 netdev_info(netdev, "returning to hw mac address %pM\n",
1507 hw->mac.addr);
1508 else
1509 netdev_info(netdev, "set new mac address %pM\n", addr->sa_data);
1510
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001511 if (vsi->type == I40E_VSI_MAIN) {
1512 i40e_status ret;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001513
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001514 ret = i40e_aq_mac_address_write(&vsi->back->hw,
Shannon Nelsoncc412222014-06-04 01:23:21 +00001515 I40E_AQC_WRITE_TYPE_LAA_WOL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001516 addr->sa_data, NULL);
1517 if (ret) {
1518 netdev_info(netdev,
1519 "Addr change for Main VSI failed: %d\n",
1520 ret);
1521 return -EADDRNOTAVAIL;
1522 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001523 }
1524
Shannon Nelson30650cc2014-07-29 04:01:50 +00001525 if (ether_addr_equal(netdev->dev_addr, hw->mac.addr)) {
1526 struct i40e_aqc_remove_macvlan_element_data element;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001527
Shannon Nelson30650cc2014-07-29 04:01:50 +00001528 memset(&element, 0, sizeof(element));
1529 ether_addr_copy(element.mac_addr, netdev->dev_addr);
1530 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1531 i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1532 } else {
Kiran Patil21659032015-09-30 14:09:03 -04001533 spin_lock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001534 i40e_del_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
1535 false, false);
Kiran Patil21659032015-09-30 14:09:03 -04001536 spin_unlock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson6c8ad1b2014-06-04 01:23:22 +00001537 }
1538
Shannon Nelson30650cc2014-07-29 04:01:50 +00001539 if (ether_addr_equal(addr->sa_data, hw->mac.addr)) {
1540 struct i40e_aqc_add_macvlan_element_data element;
1541
1542 memset(&element, 0, sizeof(element));
1543 ether_addr_copy(element.mac_addr, hw->mac.addr);
1544 element.flags = cpu_to_le16(I40E_AQC_MACVLAN_ADD_PERFECT_MATCH);
1545 i40e_aq_add_macvlan(&pf->hw, vsi->seid, &element, 1, NULL);
1546 } else {
Kiran Patil21659032015-09-30 14:09:03 -04001547 spin_lock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson30650cc2014-07-29 04:01:50 +00001548 f = i40e_add_filter(vsi, addr->sa_data, I40E_VLAN_ANY,
1549 false, false);
1550 if (f)
1551 f->is_laa = true;
Kiran Patil21659032015-09-30 14:09:03 -04001552 spin_unlock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson30650cc2014-07-29 04:01:50 +00001553 }
1554
Anjali Singhai30e25612015-09-28 13:37:12 -07001555 i40e_sync_vsi_filters(vsi, false);
Shannon Nelson30650cc2014-07-29 04:01:50 +00001556 ether_addr_copy(netdev->dev_addr, addr->sa_data);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001557
1558 return 0;
1559}
1560
1561/**
1562 * i40e_vsi_setup_queue_map - Setup a VSI queue map based on enabled_tc
1563 * @vsi: the VSI being setup
1564 * @ctxt: VSI context structure
1565 * @enabled_tc: Enabled TCs bitmap
1566 * @is_add: True if called before Add VSI
1567 *
1568 * Setup VSI queue mapping for enabled traffic classes.
1569 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001570#ifdef I40E_FCOE
1571void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1572 struct i40e_vsi_context *ctxt,
1573 u8 enabled_tc,
1574 bool is_add)
1575#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001576static void i40e_vsi_setup_queue_map(struct i40e_vsi *vsi,
1577 struct i40e_vsi_context *ctxt,
1578 u8 enabled_tc,
1579 bool is_add)
Vasu Dev38e00432014-08-01 13:27:03 -07001580#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001581{
1582 struct i40e_pf *pf = vsi->back;
1583 u16 sections = 0;
1584 u8 netdev_tc = 0;
1585 u16 numtc = 0;
1586 u16 qcount;
1587 u8 offset;
1588 u16 qmap;
1589 int i;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001590 u16 num_tc_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001591
1592 sections = I40E_AQ_VSI_PROP_QUEUE_MAP_VALID;
1593 offset = 0;
1594
1595 if (enabled_tc && (vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
1596 /* Find numtc from enabled TC bitmap */
1597 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001598 if (enabled_tc & BIT_ULL(i)) /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001599 numtc++;
1600 }
1601 if (!numtc) {
1602 dev_warn(&pf->pdev->dev, "DCB is enabled but no TC enabled, forcing TC0\n");
1603 numtc = 1;
1604 }
1605 } else {
1606 /* At least TC0 is enabled in case of non-DCB case */
1607 numtc = 1;
1608 }
1609
1610 vsi->tc_config.numtc = numtc;
1611 vsi->tc_config.enabled_tc = enabled_tc ? enabled_tc : 1;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001612 /* Number of queues per enabled TC */
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001613 /* In MFP case we can have a much lower count of MSIx
1614 * vectors available and so we need to lower the used
1615 * q count.
1616 */
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001617 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
1618 qcount = min_t(int, vsi->alloc_queue_pairs, pf->num_lan_msix);
1619 else
1620 qcount = vsi->alloc_queue_pairs;
Anjali Singhai7f9ff472015-02-21 06:43:19 +00001621 num_tc_qps = qcount / numtc;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04001622 num_tc_qps = min_t(int, num_tc_qps, i40e_pf_get_max_q_per_tc(pf));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001623
1624 /* Setup queue offset/count for all TCs for given VSI */
1625 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
1626 /* See if the given TC is enabled for the given VSI */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001627 if (vsi->tc_config.enabled_tc & BIT_ULL(i)) {
1628 /* TC is enabled */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001629 int pow, num_qps;
1630
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001631 switch (vsi->type) {
1632 case I40E_VSI_MAIN:
Helin Zhangacd65442015-10-26 19:44:28 -04001633 qcount = min_t(int, pf->alloc_rss_size,
1634 num_tc_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001635 break;
Vasu Dev38e00432014-08-01 13:27:03 -07001636#ifdef I40E_FCOE
1637 case I40E_VSI_FCOE:
1638 qcount = num_tc_qps;
1639 break;
1640#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001641 case I40E_VSI_FDIR:
1642 case I40E_VSI_SRIOV:
1643 case I40E_VSI_VMDQ2:
1644 default:
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001645 qcount = num_tc_qps;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001646 WARN_ON(i != 0);
1647 break;
1648 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001649 vsi->tc_config.tc_info[i].qoffset = offset;
1650 vsi->tc_config.tc_info[i].qcount = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001651
Shannon Nelson1e200e42015-02-27 09:15:24 +00001652 /* find the next higher power-of-2 of num queue pairs */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001653 num_qps = qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001654 pow = 0;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001655 while (num_qps && (BIT_ULL(pow) < qcount)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001656 pow++;
1657 num_qps >>= 1;
1658 }
1659
1660 vsi->tc_config.tc_info[i].netdev_tc = netdev_tc++;
1661 qmap =
1662 (offset << I40E_AQ_VSI_TC_QUE_OFFSET_SHIFT) |
1663 (pow << I40E_AQ_VSI_TC_QUE_NUMBER_SHIFT);
1664
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08001665 offset += qcount;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001666 } else {
1667 /* TC is not enabled so set the offset to
1668 * default queue and allocate one queue
1669 * for the given TC.
1670 */
1671 vsi->tc_config.tc_info[i].qoffset = 0;
1672 vsi->tc_config.tc_info[i].qcount = 1;
1673 vsi->tc_config.tc_info[i].netdev_tc = 0;
1674
1675 qmap = 0;
1676 }
1677 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1678 }
1679
1680 /* Set actual Tx/Rx queue pairs */
1681 vsi->num_queue_pairs = offset;
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001682 if ((vsi->type == I40E_VSI_MAIN) && (numtc == 1)) {
1683 if (vsi->req_queue_pairs > 0)
1684 vsi->num_queue_pairs = vsi->req_queue_pairs;
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04001685 else if (pf->flags & I40E_FLAG_MSIX_ENABLED)
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00001686 vsi->num_queue_pairs = pf->num_lan_msix;
1687 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001688
1689 /* Scheduler section valid can only be set for ADD VSI */
1690 if (is_add) {
1691 sections |= I40E_AQ_VSI_PROP_SCHED_VALID;
1692
1693 ctxt->info.up_enable_bits = enabled_tc;
1694 }
1695 if (vsi->type == I40E_VSI_SRIOV) {
1696 ctxt->info.mapping_flags |=
1697 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_NONCONTIG);
1698 for (i = 0; i < vsi->num_queue_pairs; i++)
1699 ctxt->info.queue_mapping[i] =
1700 cpu_to_le16(vsi->base_queue + i);
1701 } else {
1702 ctxt->info.mapping_flags |=
1703 cpu_to_le16(I40E_AQ_VSI_QUE_MAP_CONTIG);
1704 ctxt->info.queue_mapping[0] = cpu_to_le16(vsi->base_queue);
1705 }
1706 ctxt->info.valid_sections |= cpu_to_le16(sections);
1707}
1708
1709/**
1710 * i40e_set_rx_mode - NDO callback to set the netdev filters
1711 * @netdev: network interface device structure
1712 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001713#ifdef I40E_FCOE
1714void i40e_set_rx_mode(struct net_device *netdev)
1715#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001716static void i40e_set_rx_mode(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07001717#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001718{
1719 struct i40e_netdev_priv *np = netdev_priv(netdev);
1720 struct i40e_mac_filter *f, *ftmp;
1721 struct i40e_vsi *vsi = np->vsi;
1722 struct netdev_hw_addr *uca;
1723 struct netdev_hw_addr *mca;
1724 struct netdev_hw_addr *ha;
1725
Kiran Patil21659032015-09-30 14:09:03 -04001726 spin_lock_bh(&vsi->mac_filter_list_lock);
1727
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001728 /* add addr if not already in the filter list */
1729 netdev_for_each_uc_addr(uca, netdev) {
1730 if (!i40e_find_mac(vsi, uca->addr, false, true)) {
1731 if (i40e_is_vsi_in_vlan(vsi))
1732 i40e_put_mac_in_vlan(vsi, uca->addr,
1733 false, true);
1734 else
1735 i40e_add_filter(vsi, uca->addr, I40E_VLAN_ANY,
1736 false, true);
1737 }
1738 }
1739
1740 netdev_for_each_mc_addr(mca, netdev) {
1741 if (!i40e_find_mac(vsi, mca->addr, false, true)) {
1742 if (i40e_is_vsi_in_vlan(vsi))
1743 i40e_put_mac_in_vlan(vsi, mca->addr,
1744 false, true);
1745 else
1746 i40e_add_filter(vsi, mca->addr, I40E_VLAN_ANY,
1747 false, true);
1748 }
1749 }
1750
1751 /* remove filter if not in netdev list */
1752 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001753
1754 if (!f->is_netdev)
1755 continue;
1756
Shannon Nelson2f41f332015-08-26 15:14:20 -04001757 netdev_for_each_mc_addr(mca, netdev)
1758 if (ether_addr_equal(mca->addr, f->macaddr))
1759 goto bottom_of_search_loop;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001760
Shannon Nelson2f41f332015-08-26 15:14:20 -04001761 netdev_for_each_uc_addr(uca, netdev)
1762 if (ether_addr_equal(uca->addr, f->macaddr))
1763 goto bottom_of_search_loop;
1764
1765 for_each_dev_addr(netdev, ha)
1766 if (ether_addr_equal(ha->addr, f->macaddr))
1767 goto bottom_of_search_loop;
1768
1769 /* f->macaddr wasn't found in uc, mc, or ha list so delete it */
1770 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY, false, true);
1771
1772bottom_of_search_loop:
1773 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001774 }
Kiran Patil21659032015-09-30 14:09:03 -04001775 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001776
1777 /* check for other flag changes */
1778 if (vsi->current_netdev_flags != vsi->netdev->flags) {
1779 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
1780 vsi->back->flags |= I40E_FLAG_FILTER_SYNC;
1781 }
1782}
1783
1784/**
Kiran Patil21659032015-09-30 14:09:03 -04001785 * i40e_mac_filter_entry_clone - Clones a MAC filter entry
1786 * @src: source MAC filter entry to be clones
1787 *
1788 * Returns the pointer to newly cloned MAC filter entry or NULL
1789 * in case of error
1790 **/
1791static struct i40e_mac_filter *i40e_mac_filter_entry_clone(
1792 struct i40e_mac_filter *src)
1793{
1794 struct i40e_mac_filter *f;
1795
1796 f = kzalloc(sizeof(*f), GFP_ATOMIC);
1797 if (!f)
1798 return NULL;
1799 *f = *src;
1800
1801 INIT_LIST_HEAD(&f->list);
1802
1803 return f;
1804}
1805
1806/**
1807 * i40e_undo_del_filter_entries - Undo the changes made to MAC filter entries
1808 * @vsi: pointer to vsi struct
1809 * @from: Pointer to list which contains MAC filter entries - changes to
1810 * those entries needs to be undone.
1811 *
1812 * MAC filter entries from list were slated to be removed from device.
1813 **/
1814static void i40e_undo_del_filter_entries(struct i40e_vsi *vsi,
1815 struct list_head *from)
1816{
1817 struct i40e_mac_filter *f, *ftmp;
1818
1819 list_for_each_entry_safe(f, ftmp, from, list) {
1820 f->changed = true;
1821 /* Move the element back into MAC filter list*/
1822 list_move_tail(&f->list, &vsi->mac_filter_list);
1823 }
1824}
1825
1826/**
1827 * i40e_undo_add_filter_entries - Undo the changes made to MAC filter entries
1828 * @vsi: pointer to vsi struct
1829 *
1830 * MAC filter entries from list were slated to be added from device.
1831 **/
1832static void i40e_undo_add_filter_entries(struct i40e_vsi *vsi)
1833{
1834 struct i40e_mac_filter *f, *ftmp;
1835
1836 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1837 if (!f->changed && f->counter)
1838 f->changed = true;
1839 }
1840}
1841
1842/**
1843 * i40e_cleanup_add_list - Deletes the element from add list and release
1844 * memory
1845 * @add_list: Pointer to list which contains MAC filter entries
1846 **/
1847static void i40e_cleanup_add_list(struct list_head *add_list)
1848{
1849 struct i40e_mac_filter *f, *ftmp;
1850
1851 list_for_each_entry_safe(f, ftmp, add_list, list) {
1852 list_del(&f->list);
1853 kfree(f);
1854 }
1855}
1856
1857/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001858 * i40e_sync_vsi_filters - Update the VSI filter list to the HW
1859 * @vsi: ptr to the VSI
Anjali Singhai30e25612015-09-28 13:37:12 -07001860 * @grab_rtnl: whether RTNL needs to be grabbed
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001861 *
1862 * Push any outstanding VSI filter changes through the AdminQ.
1863 *
1864 * Returns 0 or error value
1865 **/
Anjali Singhai30e25612015-09-28 13:37:12 -07001866int i40e_sync_vsi_filters(struct i40e_vsi *vsi, bool grab_rtnl)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001867{
Kiran Patil21659032015-09-30 14:09:03 -04001868 struct list_head tmp_del_list, tmp_add_list;
1869 struct i40e_mac_filter *f, *ftmp, *fclone;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001870 bool promisc_forced_on = false;
1871 bool add_happened = false;
1872 int filter_list_len = 0;
1873 u32 changed_flags = 0;
Kiran Patil21659032015-09-30 14:09:03 -04001874 bool err_cond = false;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001875 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001876 struct i40e_pf *pf;
1877 int num_add = 0;
1878 int num_del = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001879 int aq_err = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001880 u16 cmd_flags;
1881
1882 /* empty array typed pointers, kcalloc later */
1883 struct i40e_aqc_add_macvlan_element_data *add_list;
1884 struct i40e_aqc_remove_macvlan_element_data *del_list;
1885
1886 while (test_and_set_bit(__I40E_CONFIG_BUSY, &vsi->state))
1887 usleep_range(1000, 2000);
1888 pf = vsi->back;
1889
1890 if (vsi->netdev) {
1891 changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
1892 vsi->current_netdev_flags = vsi->netdev->flags;
1893 }
1894
Kiran Patil21659032015-09-30 14:09:03 -04001895 INIT_LIST_HEAD(&tmp_del_list);
1896 INIT_LIST_HEAD(&tmp_add_list);
1897
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001898 if (vsi->flags & I40E_VSI_FLAG_FILTER_CHANGED) {
1899 vsi->flags &= ~I40E_VSI_FLAG_FILTER_CHANGED;
1900
Kiran Patil21659032015-09-30 14:09:03 -04001901 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001902 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1903 if (!f->changed)
1904 continue;
1905
1906 if (f->counter != 0)
1907 continue;
1908 f->changed = false;
Kiran Patil21659032015-09-30 14:09:03 -04001909
1910 /* Move the element into temporary del_list */
1911 list_move_tail(&f->list, &tmp_del_list);
1912 }
1913
1914 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
1915 if (!f->changed)
1916 continue;
1917
1918 if (f->counter == 0)
1919 continue;
1920 f->changed = false;
1921
1922 /* Clone MAC filter entry and add into temporary list */
1923 fclone = i40e_mac_filter_entry_clone(f);
1924 if (!fclone) {
1925 err_cond = true;
1926 break;
1927 }
1928 list_add_tail(&fclone->list, &tmp_add_list);
1929 }
1930
1931 /* if failed to clone MAC filter entry - undo */
1932 if (err_cond) {
1933 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
1934 i40e_undo_add_filter_entries(vsi);
1935 }
1936 spin_unlock_bh(&vsi->mac_filter_list_lock);
1937
1938 if (err_cond)
1939 i40e_cleanup_add_list(&tmp_add_list);
1940 }
1941
1942 /* Now process 'del_list' outside the lock */
1943 if (!list_empty(&tmp_del_list)) {
1944 filter_list_len = pf->hw.aq.asq_buf_size /
1945 sizeof(struct i40e_aqc_remove_macvlan_element_data);
1946 del_list = kcalloc(filter_list_len,
1947 sizeof(struct i40e_aqc_remove_macvlan_element_data),
1948 GFP_KERNEL);
1949 if (!del_list) {
1950 i40e_cleanup_add_list(&tmp_add_list);
1951
1952 /* Undo VSI's MAC filter entry element updates */
1953 spin_lock_bh(&vsi->mac_filter_list_lock);
1954 i40e_undo_del_filter_entries(vsi, &tmp_del_list);
1955 i40e_undo_add_filter_entries(vsi);
1956 spin_unlock_bh(&vsi->mac_filter_list_lock);
1957 return -ENOMEM;
1958 }
1959
1960 list_for_each_entry_safe(f, ftmp, &tmp_del_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001961 cmd_flags = 0;
1962
1963 /* add to delete list */
Greg Rose9a173902014-05-22 06:32:02 +00001964 ether_addr_copy(del_list[num_del].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001965 del_list[num_del].vlan_tag =
1966 cpu_to_le16((u16)(f->vlan ==
1967 I40E_VLAN_ANY ? 0 : f->vlan));
1968
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001969 cmd_flags |= I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
1970 del_list[num_del].flags = cmd_flags;
1971 num_del++;
1972
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001973 /* flush a full buffer */
1974 if (num_del == filter_list_len) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001975 ret = i40e_aq_remove_macvlan(&pf->hw,
1976 vsi->seid, del_list, num_del,
1977 NULL);
1978 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001979 num_del = 0;
1980 memset(del_list, 0, sizeof(*del_list));
1981
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001982 if (ret && aq_err != I40E_AQ_RC_ENOENT)
Kiran Patil21659032015-09-30 14:09:03 -04001983 dev_err(&pf->pdev->dev,
1984 "ignoring delete macvlan error, err %s, aq_err %s while flushing a full buffer\n",
1985 i40e_stat_str(&pf->hw, ret),
1986 i40e_aq_str(&pf->hw, aq_err));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001987 }
Kiran Patil21659032015-09-30 14:09:03 -04001988 /* Release memory for MAC filter entries which were
1989 * synced up with HW.
1990 */
1991 list_del(&f->list);
1992 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001993 }
Kiran Patil21659032015-09-30 14:09:03 -04001994
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001995 if (num_del) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001996 ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001997 del_list, num_del, NULL);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04001998 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00001999 num_del = 0;
2000
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002001 if (ret && aq_err != I40E_AQ_RC_ENOENT)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002002 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002003 "ignoring delete macvlan error, err %s aq_err %s\n",
2004 i40e_stat_str(&pf->hw, ret),
2005 i40e_aq_str(&pf->hw, aq_err));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002006 }
2007
2008 kfree(del_list);
2009 del_list = NULL;
Kiran Patil21659032015-09-30 14:09:03 -04002010 }
2011
2012 if (!list_empty(&tmp_add_list)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002013
2014 /* do all the adds now */
2015 filter_list_len = pf->hw.aq.asq_buf_size /
2016 sizeof(struct i40e_aqc_add_macvlan_element_data),
2017 add_list = kcalloc(filter_list_len,
2018 sizeof(struct i40e_aqc_add_macvlan_element_data),
2019 GFP_KERNEL);
Kiran Patil21659032015-09-30 14:09:03 -04002020 if (!add_list) {
2021 /* Purge element from temporary lists */
2022 i40e_cleanup_add_list(&tmp_add_list);
2023
2024 /* Undo add filter entries from VSI MAC filter list */
2025 spin_lock_bh(&vsi->mac_filter_list_lock);
2026 i40e_undo_add_filter_entries(vsi);
2027 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002028 return -ENOMEM;
Kiran Patil21659032015-09-30 14:09:03 -04002029 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002030
Kiran Patil21659032015-09-30 14:09:03 -04002031 list_for_each_entry_safe(f, ftmp, &tmp_add_list, list) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002032
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002033 add_happened = true;
2034 cmd_flags = 0;
2035
2036 /* add to add array */
Greg Rose9a173902014-05-22 06:32:02 +00002037 ether_addr_copy(add_list[num_add].mac_addr, f->macaddr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002038 add_list[num_add].vlan_tag =
2039 cpu_to_le16(
2040 (u16)(f->vlan == I40E_VLAN_ANY ? 0 : f->vlan));
2041 add_list[num_add].queue_number = 0;
2042
2043 cmd_flags |= I40E_AQC_MACVLAN_ADD_PERFECT_MATCH;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002044 add_list[num_add].flags = cpu_to_le16(cmd_flags);
2045 num_add++;
2046
2047 /* flush a full buffer */
2048 if (num_add == filter_list_len) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002049 ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
2050 add_list, num_add,
2051 NULL);
2052 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002053 num_add = 0;
2054
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002055 if (ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002056 break;
2057 memset(add_list, 0, sizeof(*add_list));
2058 }
Kiran Patil21659032015-09-30 14:09:03 -04002059 /* Entries from tmp_add_list were cloned from MAC
2060 * filter list, hence clean those cloned entries
2061 */
2062 list_del(&f->list);
2063 kfree(f);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002064 }
Kiran Patil21659032015-09-30 14:09:03 -04002065
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002066 if (num_add) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002067 ret = i40e_aq_add_macvlan(&pf->hw, vsi->seid,
2068 add_list, num_add, NULL);
2069 aq_err = pf->hw.aq.asq_last_status;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002070 num_add = 0;
2071 }
2072 kfree(add_list);
2073 add_list = NULL;
2074
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002075 if (add_happened && ret && aq_err != I40E_AQ_RC_EINVAL) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002076 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002077 "add filter failed, err %s aq_err %s\n",
2078 i40e_stat_str(&pf->hw, ret),
2079 i40e_aq_str(&pf->hw, aq_err));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002080 if ((pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOSPC) &&
2081 !test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2082 &vsi->state)) {
2083 promisc_forced_on = true;
2084 set_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2085 &vsi->state);
2086 dev_info(&pf->pdev->dev, "promiscuous mode forced on\n");
2087 }
2088 }
2089 }
2090
2091 /* check for changes in promiscuous modes */
2092 if (changed_flags & IFF_ALLMULTI) {
2093 bool cur_multipromisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002094
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002095 cur_multipromisc = !!(vsi->current_netdev_flags & IFF_ALLMULTI);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002096 ret = i40e_aq_set_vsi_multicast_promiscuous(&vsi->back->hw,
2097 vsi->seid,
2098 cur_multipromisc,
2099 NULL);
2100 if (ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002101 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002102 "set multi promisc failed, err %s aq_err %s\n",
2103 i40e_stat_str(&pf->hw, ret),
2104 i40e_aq_str(&pf->hw,
2105 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002106 }
2107 if ((changed_flags & IFF_PROMISC) || promisc_forced_on) {
2108 bool cur_promisc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002109
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002110 cur_promisc = (!!(vsi->current_netdev_flags & IFF_PROMISC) ||
2111 test_bit(__I40E_FILTER_OVERFLOW_PROMISC,
2112 &vsi->state));
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002113 if (vsi->type == I40E_VSI_MAIN && pf->lan_veb != I40E_NO_VEB) {
2114 /* set defport ON for Main VSI instead of true promisc
2115 * this way we will get all unicast/multicast and VLAN
2116 * promisc behavior but will not get VF or VMDq traffic
2117 * replicated on the Main VSI.
2118 */
2119 if (pf->cur_promisc != cur_promisc) {
2120 pf->cur_promisc = cur_promisc;
Anjali Singhai30e25612015-09-28 13:37:12 -07002121 if (grab_rtnl)
2122 i40e_do_reset_safe(pf,
2123 BIT(__I40E_PF_RESET_REQUESTED));
2124 else
2125 i40e_do_reset(pf,
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002126 BIT(__I40E_PF_RESET_REQUESTED));
2127 }
2128 } else {
2129 ret = i40e_aq_set_vsi_unicast_promiscuous(
2130 &vsi->back->hw,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002131 vsi->seid,
2132 cur_promisc, NULL);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04002133 if (ret)
2134 dev_info(&pf->pdev->dev,
2135 "set unicast promisc failed, err %d, aq_err %d\n",
2136 ret, pf->hw.aq.asq_last_status);
2137 ret = i40e_aq_set_vsi_multicast_promiscuous(
2138 &vsi->back->hw,
2139 vsi->seid,
2140 cur_promisc, NULL);
2141 if (ret)
2142 dev_info(&pf->pdev->dev,
2143 "set multicast promisc failed, err %d, aq_err %d\n",
2144 ret, pf->hw.aq.asq_last_status);
2145 }
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002146 ret = i40e_aq_set_vsi_broadcast(&vsi->back->hw,
2147 vsi->seid,
2148 cur_promisc, NULL);
2149 if (ret)
Greg Rose1a103702013-11-28 06:42:39 +00002150 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002151 "set brdcast promisc failed, err %s, aq_err %s\n",
2152 i40e_stat_str(&pf->hw, ret),
2153 i40e_aq_str(&pf->hw,
2154 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002155 }
2156
2157 clear_bit(__I40E_CONFIG_BUSY, &vsi->state);
2158 return 0;
2159}
2160
2161/**
2162 * i40e_sync_filters_subtask - Sync the VSI filter list with HW
2163 * @pf: board private structure
2164 **/
2165static void i40e_sync_filters_subtask(struct i40e_pf *pf)
2166{
2167 int v;
2168
2169 if (!pf || !(pf->flags & I40E_FLAG_FILTER_SYNC))
2170 return;
2171 pf->flags &= ~I40E_FLAG_FILTER_SYNC;
2172
Mitch Williams505682c2014-05-20 08:01:37 +00002173 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002174 if (pf->vsi[v] &&
2175 (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED))
Anjali Singhai30e25612015-09-28 13:37:12 -07002176 i40e_sync_vsi_filters(pf->vsi[v], true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002177 }
2178}
2179
2180/**
2181 * i40e_change_mtu - NDO callback to change the Maximum Transfer Unit
2182 * @netdev: network interface device structure
2183 * @new_mtu: new value for maximum frame size
2184 *
2185 * Returns 0 on success, negative on failure
2186 **/
2187static int i40e_change_mtu(struct net_device *netdev, int new_mtu)
2188{
2189 struct i40e_netdev_priv *np = netdev_priv(netdev);
Jesse Brandeburg61a46a42014-04-23 04:50:05 +00002190 int max_frame = new_mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002191 struct i40e_vsi *vsi = np->vsi;
2192
2193 /* MTU < 68 is an error and causes problems on some kernels */
2194 if ((new_mtu < 68) || (max_frame > I40E_MAX_RXBUFFER))
2195 return -EINVAL;
2196
2197 netdev_info(netdev, "changing MTU from %d to %d\n",
2198 netdev->mtu, new_mtu);
2199 netdev->mtu = new_mtu;
2200 if (netif_running(netdev))
2201 i40e_vsi_reinit_locked(vsi);
2202
2203 return 0;
2204}
2205
2206/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002207 * i40e_ioctl - Access the hwtstamp interface
2208 * @netdev: network interface device structure
2209 * @ifr: interface request data
2210 * @cmd: ioctl command
2211 **/
2212int i40e_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2213{
2214 struct i40e_netdev_priv *np = netdev_priv(netdev);
2215 struct i40e_pf *pf = np->vsi->back;
2216
2217 switch (cmd) {
2218 case SIOCGHWTSTAMP:
2219 return i40e_ptp_get_ts_config(pf, ifr);
2220 case SIOCSHWTSTAMP:
2221 return i40e_ptp_set_ts_config(pf, ifr);
2222 default:
2223 return -EOPNOTSUPP;
2224 }
2225}
2226
2227/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002228 * i40e_vlan_stripping_enable - Turn on vlan stripping for the VSI
2229 * @vsi: the vsi being adjusted
2230 **/
2231void i40e_vlan_stripping_enable(struct i40e_vsi *vsi)
2232{
2233 struct i40e_vsi_context ctxt;
2234 i40e_status ret;
2235
2236 if ((vsi->info.valid_sections &
2237 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2238 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_MODE_MASK) == 0))
2239 return; /* already enabled */
2240
2241 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2242 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2243 I40E_AQ_VSI_PVLAN_EMOD_STR_BOTH;
2244
2245 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002246 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002247 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2248 if (ret) {
2249 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002250 "update vlan stripping failed, err %s aq_err %s\n",
2251 i40e_stat_str(&vsi->back->hw, ret),
2252 i40e_aq_str(&vsi->back->hw,
2253 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002254 }
2255}
2256
2257/**
2258 * i40e_vlan_stripping_disable - Turn off vlan stripping for the VSI
2259 * @vsi: the vsi being adjusted
2260 **/
2261void i40e_vlan_stripping_disable(struct i40e_vsi *vsi)
2262{
2263 struct i40e_vsi_context ctxt;
2264 i40e_status ret;
2265
2266 if ((vsi->info.valid_sections &
2267 cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID)) &&
2268 ((vsi->info.port_vlan_flags & I40E_AQ_VSI_PVLAN_EMOD_MASK) ==
2269 I40E_AQ_VSI_PVLAN_EMOD_MASK))
2270 return; /* already disabled */
2271
2272 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2273 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_ALL |
2274 I40E_AQ_VSI_PVLAN_EMOD_NOTHING;
2275
2276 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002277 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002278 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2279 if (ret) {
2280 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002281 "update vlan stripping failed, err %s aq_err %s\n",
2282 i40e_stat_str(&vsi->back->hw, ret),
2283 i40e_aq_str(&vsi->back->hw,
2284 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002285 }
2286}
2287
2288/**
2289 * i40e_vlan_rx_register - Setup or shutdown vlan offload
2290 * @netdev: network interface to be adjusted
2291 * @features: netdev features to test if VLAN offload is enabled or not
2292 **/
2293static void i40e_vlan_rx_register(struct net_device *netdev, u32 features)
2294{
2295 struct i40e_netdev_priv *np = netdev_priv(netdev);
2296 struct i40e_vsi *vsi = np->vsi;
2297
2298 if (features & NETIF_F_HW_VLAN_CTAG_RX)
2299 i40e_vlan_stripping_enable(vsi);
2300 else
2301 i40e_vlan_stripping_disable(vsi);
2302}
2303
2304/**
2305 * i40e_vsi_add_vlan - Add vsi membership for given vlan
2306 * @vsi: the vsi being configured
2307 * @vid: vlan id to be added (0 = untagged only , -1 = any)
2308 **/
2309int i40e_vsi_add_vlan(struct i40e_vsi *vsi, s16 vid)
2310{
2311 struct i40e_mac_filter *f, *add_f;
2312 bool is_netdev, is_vf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002313
2314 is_vf = (vsi->type == I40E_VSI_SRIOV);
2315 is_netdev = !!(vsi->netdev);
2316
Kiran Patil21659032015-09-30 14:09:03 -04002317 /* Locked once because all functions invoked below iterates list*/
2318 spin_lock_bh(&vsi->mac_filter_list_lock);
2319
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002320 if (is_netdev) {
2321 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, vid,
2322 is_vf, is_netdev);
2323 if (!add_f) {
2324 dev_info(&vsi->back->pdev->dev,
2325 "Could not add vlan filter %d for %pM\n",
2326 vid, vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002327 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002328 return -ENOMEM;
2329 }
2330 }
2331
2332 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2333 add_f = i40e_add_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2334 if (!add_f) {
2335 dev_info(&vsi->back->pdev->dev,
2336 "Could not add vlan filter %d for %pM\n",
2337 vid, f->macaddr);
Kiran Patil21659032015-09-30 14:09:03 -04002338 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002339 return -ENOMEM;
2340 }
2341 }
2342
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002343 /* Now if we add a vlan tag, make sure to check if it is the first
2344 * tag (i.e. a "tag" -1 does exist) and if so replace the -1 "tag"
2345 * with 0, so we now accept untagged and specified tagged traffic
2346 * (and not any taged and untagged)
2347 */
2348 if (vid > 0) {
2349 if (is_netdev && i40e_find_filter(vsi, vsi->netdev->dev_addr,
2350 I40E_VLAN_ANY,
2351 is_vf, is_netdev)) {
2352 i40e_del_filter(vsi, vsi->netdev->dev_addr,
2353 I40E_VLAN_ANY, is_vf, is_netdev);
2354 add_f = i40e_add_filter(vsi, vsi->netdev->dev_addr, 0,
2355 is_vf, is_netdev);
2356 if (!add_f) {
2357 dev_info(&vsi->back->pdev->dev,
2358 "Could not add filter 0 for %pM\n",
2359 vsi->netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002360 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002361 return -ENOMEM;
2362 }
2363 }
Greg Rose8d82a7c2014-01-13 16:13:04 -08002364 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002365
Greg Rose8d82a7c2014-01-13 16:13:04 -08002366 /* Do not assume that I40E_VLAN_ANY should be reset to VLAN 0 */
2367 if (vid > 0 && !vsi->info.pvid) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002368 list_for_each_entry(f, &vsi->mac_filter_list, list) {
Kiran Patil21659032015-09-30 14:09:03 -04002369 if (!i40e_find_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2370 is_vf, is_netdev))
2371 continue;
2372 i40e_del_filter(vsi, f->macaddr, I40E_VLAN_ANY,
2373 is_vf, is_netdev);
2374 add_f = i40e_add_filter(vsi, f->macaddr,
2375 0, is_vf, is_netdev);
2376 if (!add_f) {
2377 dev_info(&vsi->back->pdev->dev,
2378 "Could not add filter 0 for %pM\n",
2379 f->macaddr);
2380 spin_unlock_bh(&vsi->mac_filter_list_lock);
2381 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002382 }
2383 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002384 }
2385
Kiran Patil21659032015-09-30 14:09:03 -04002386 /* Make sure to release before sync_vsi_filter because that
2387 * function will lock/unlock as necessary
2388 */
2389 spin_unlock_bh(&vsi->mac_filter_list_lock);
2390
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002391 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2392 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2393 return 0;
2394
Anjali Singhai30e25612015-09-28 13:37:12 -07002395 return i40e_sync_vsi_filters(vsi, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002396}
2397
2398/**
2399 * i40e_vsi_kill_vlan - Remove vsi membership for given vlan
2400 * @vsi: the vsi being configured
2401 * @vid: vlan id to be removed (0 = untagged only , -1 = any)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002402 *
2403 * Return: 0 on success or negative otherwise
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002404 **/
2405int i40e_vsi_kill_vlan(struct i40e_vsi *vsi, s16 vid)
2406{
2407 struct net_device *netdev = vsi->netdev;
2408 struct i40e_mac_filter *f, *add_f;
2409 bool is_vf, is_netdev;
2410 int filter_count = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002411
2412 is_vf = (vsi->type == I40E_VSI_SRIOV);
2413 is_netdev = !!(netdev);
2414
Kiran Patil21659032015-09-30 14:09:03 -04002415 /* Locked once because all functions invoked below iterates list */
2416 spin_lock_bh(&vsi->mac_filter_list_lock);
2417
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002418 if (is_netdev)
2419 i40e_del_filter(vsi, netdev->dev_addr, vid, is_vf, is_netdev);
2420
2421 list_for_each_entry(f, &vsi->mac_filter_list, list)
2422 i40e_del_filter(vsi, f->macaddr, vid, is_vf, is_netdev);
2423
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002424 /* go through all the filters for this VSI and if there is only
2425 * vid == 0 it means there are no other filters, so vid 0 must
2426 * be replaced with -1. This signifies that we should from now
2427 * on accept any traffic (with any tag present, or untagged)
2428 */
2429 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2430 if (is_netdev) {
2431 if (f->vlan &&
2432 ether_addr_equal(netdev->dev_addr, f->macaddr))
2433 filter_count++;
2434 }
2435
2436 if (f->vlan)
2437 filter_count++;
2438 }
2439
2440 if (!filter_count && is_netdev) {
2441 i40e_del_filter(vsi, netdev->dev_addr, 0, is_vf, is_netdev);
2442 f = i40e_add_filter(vsi, netdev->dev_addr, I40E_VLAN_ANY,
2443 is_vf, is_netdev);
2444 if (!f) {
2445 dev_info(&vsi->back->pdev->dev,
2446 "Could not add filter %d for %pM\n",
2447 I40E_VLAN_ANY, netdev->dev_addr);
Kiran Patil21659032015-09-30 14:09:03 -04002448 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002449 return -ENOMEM;
2450 }
2451 }
2452
2453 if (!filter_count) {
2454 list_for_each_entry(f, &vsi->mac_filter_list, list) {
2455 i40e_del_filter(vsi, f->macaddr, 0, is_vf, is_netdev);
2456 add_f = i40e_add_filter(vsi, f->macaddr, I40E_VLAN_ANY,
Kiran Patil21659032015-09-30 14:09:03 -04002457 is_vf, is_netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002458 if (!add_f) {
2459 dev_info(&vsi->back->pdev->dev,
2460 "Could not add filter %d for %pM\n",
2461 I40E_VLAN_ANY, f->macaddr);
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
Kiran Patil21659032015-09-30 14:09:03 -04002468 /* Make sure to release before sync_vsi_filter because that
2469 * function with lock/unlock as necessary
2470 */
2471 spin_unlock_bh(&vsi->mac_filter_list_lock);
2472
Anjali Singhai Jain80f64282013-11-28 06:39:47 +00002473 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
2474 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
2475 return 0;
2476
Anjali Singhai30e25612015-09-28 13:37:12 -07002477 return i40e_sync_vsi_filters(vsi, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002478}
2479
2480/**
2481 * i40e_vlan_rx_add_vid - Add a vlan id filter to HW offload
2482 * @netdev: network interface to be adjusted
2483 * @vid: vlan id to be added
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002484 *
2485 * net_device_ops implementation for adding vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002486 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002487#ifdef I40E_FCOE
2488int i40e_vlan_rx_add_vid(struct net_device *netdev,
2489 __always_unused __be16 proto, u16 vid)
2490#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002491static int i40e_vlan_rx_add_vid(struct net_device *netdev,
2492 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002493#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002494{
2495 struct i40e_netdev_priv *np = netdev_priv(netdev);
2496 struct i40e_vsi *vsi = np->vsi;
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002497 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002498
2499 if (vid > 4095)
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002500 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002501
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002502 netdev_info(netdev, "adding %pM vid=%d\n", netdev->dev_addr, vid);
2503
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002504 /* If the network stack called us with vid = 0 then
2505 * it is asking to receive priority tagged packets with
2506 * vlan id 0. Our HW receives them by default when configured
2507 * to receive untagged packets so there is no need to add an
2508 * extra filter for vlan 0 tagged packets.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002509 */
Anjali Singhai Jain6982d422014-02-06 05:51:10 +00002510 if (vid)
2511 ret = i40e_vsi_add_vlan(vsi, vid);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002512
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002513 if (!ret && (vid < VLAN_N_VID))
2514 set_bit(vid, vsi->active_vlans);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002515
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002516 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002517}
2518
2519/**
2520 * i40e_vlan_rx_kill_vid - Remove a vlan id filter from HW offload
2521 * @netdev: network interface to be adjusted
2522 * @vid: vlan id to be removed
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002523 *
Akeem G Abodunrinfdfd9432014-02-11 08:24:15 +00002524 * net_device_ops implementation for removing vlan ids
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002525 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002526#ifdef I40E_FCOE
2527int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2528 __always_unused __be16 proto, u16 vid)
2529#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002530static int i40e_vlan_rx_kill_vid(struct net_device *netdev,
2531 __always_unused __be16 proto, u16 vid)
Vasu Dev38e00432014-08-01 13:27:03 -07002532#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002533{
2534 struct i40e_netdev_priv *np = netdev_priv(netdev);
2535 struct i40e_vsi *vsi = np->vsi;
2536
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002537 netdev_info(netdev, "removing %pM vid=%d\n", netdev->dev_addr, vid);
2538
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002539 /* return code is ignored as there is nothing a user
2540 * can do about failure to remove and a log message was
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002541 * already printed from the other function
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002542 */
2543 i40e_vsi_kill_vlan(vsi, vid);
2544
2545 clear_bit(vid, vsi->active_vlans);
Jesse Brandeburg078b5872013-09-25 23:41:14 +00002546
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002547 return 0;
2548}
2549
2550/**
2551 * i40e_restore_vlan - Reinstate vlans when vsi/netdev comes back up
2552 * @vsi: the vsi being brought back up
2553 **/
2554static void i40e_restore_vlan(struct i40e_vsi *vsi)
2555{
2556 u16 vid;
2557
2558 if (!vsi->netdev)
2559 return;
2560
2561 i40e_vlan_rx_register(vsi->netdev, vsi->netdev->features);
2562
2563 for_each_set_bit(vid, vsi->active_vlans, VLAN_N_VID)
2564 i40e_vlan_rx_add_vid(vsi->netdev, htons(ETH_P_8021Q),
2565 vid);
2566}
2567
2568/**
2569 * i40e_vsi_add_pvid - Add pvid for the VSI
2570 * @vsi: the vsi being adjusted
2571 * @vid: the vlan id to set as a PVID
2572 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002573int i40e_vsi_add_pvid(struct i40e_vsi *vsi, u16 vid)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002574{
2575 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002576 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002577
2578 vsi->info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
2579 vsi->info.pvid = cpu_to_le16(vid);
Greg Rose6c12fcb2013-11-28 06:39:34 +00002580 vsi->info.port_vlan_flags = I40E_AQ_VSI_PVLAN_MODE_TAGGED |
2581 I40E_AQ_VSI_PVLAN_INSERT_PVID |
Greg Roseb774c7d2013-11-28 06:39:44 +00002582 I40E_AQ_VSI_PVLAN_EMOD_STR;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002583
2584 ctxt.seid = vsi->seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07002585 ctxt.info = vsi->info;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002586 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
2587 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002588 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04002589 "add pvid failed, err %s aq_err %s\n",
2590 i40e_stat_str(&vsi->back->hw, ret),
2591 i40e_aq_str(&vsi->back->hw,
2592 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002593 return -ENOENT;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002594 }
2595
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00002596 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002597}
2598
2599/**
2600 * i40e_vsi_remove_pvid - Remove the pvid from the VSI
2601 * @vsi: the vsi being adjusted
2602 *
2603 * Just use the vlan_rx_register() service to put it back to normal
2604 **/
2605void i40e_vsi_remove_pvid(struct i40e_vsi *vsi)
2606{
Greg Rose6c12fcb2013-11-28 06:39:34 +00002607 i40e_vlan_stripping_disable(vsi);
2608
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002609 vsi->info.pvid = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002610}
2611
2612/**
2613 * i40e_vsi_setup_tx_resources - Allocate VSI Tx queue resources
2614 * @vsi: ptr to the VSI
2615 *
2616 * If this function returns with an error, then it's possible one or
2617 * more of the rings is populated (while the rest are not). It is the
2618 * callers duty to clean those orphaned rings.
2619 *
2620 * Return 0 on success, negative on failure
2621 **/
2622static int i40e_vsi_setup_tx_resources(struct i40e_vsi *vsi)
2623{
2624 int i, err = 0;
2625
2626 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002627 err = i40e_setup_tx_descriptors(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002628
2629 return err;
2630}
2631
2632/**
2633 * i40e_vsi_free_tx_resources - Free Tx resources for VSI queues
2634 * @vsi: ptr to the VSI
2635 *
2636 * Free VSI's transmit software resources
2637 **/
2638static void i40e_vsi_free_tx_resources(struct i40e_vsi *vsi)
2639{
2640 int i;
2641
Greg Rose8e9dca52013-12-18 13:45:53 +00002642 if (!vsi->tx_rings)
2643 return;
2644
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002645 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002646 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002647 i40e_free_tx_resources(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002648}
2649
2650/**
2651 * i40e_vsi_setup_rx_resources - Allocate VSI queues Rx resources
2652 * @vsi: ptr to the VSI
2653 *
2654 * If this function returns with an error, then it's possible one or
2655 * more of the rings is populated (while the rest are not). It is the
2656 * callers duty to clean those orphaned rings.
2657 *
2658 * Return 0 on success, negative on failure
2659 **/
2660static int i40e_vsi_setup_rx_resources(struct i40e_vsi *vsi)
2661{
2662 int i, err = 0;
2663
2664 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002665 err = i40e_setup_rx_descriptors(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002666#ifdef I40E_FCOE
2667 i40e_fcoe_setup_ddp_resources(vsi);
2668#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002669 return err;
2670}
2671
2672/**
2673 * i40e_vsi_free_rx_resources - Free Rx Resources for VSI queues
2674 * @vsi: ptr to the VSI
2675 *
2676 * Free all receive software resources
2677 **/
2678static void i40e_vsi_free_rx_resources(struct i40e_vsi *vsi)
2679{
2680 int i;
2681
Greg Rose8e9dca52013-12-18 13:45:53 +00002682 if (!vsi->rx_rings)
2683 return;
2684
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002685 for (i = 0; i < vsi->num_queue_pairs; i++)
Greg Rose8e9dca52013-12-18 13:45:53 +00002686 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002687 i40e_free_rx_resources(vsi->rx_rings[i]);
Vasu Dev38e00432014-08-01 13:27:03 -07002688#ifdef I40E_FCOE
2689 i40e_fcoe_free_ddp_resources(vsi);
2690#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002691}
2692
2693/**
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002694 * i40e_config_xps_tx_ring - Configure XPS for a Tx ring
2695 * @ring: The Tx ring to configure
2696 *
2697 * This enables/disables XPS for a given Tx descriptor ring
2698 * based on the TCs enabled for the VSI that ring belongs to.
2699 **/
2700static void i40e_config_xps_tx_ring(struct i40e_ring *ring)
2701{
2702 struct i40e_vsi *vsi = ring->vsi;
2703 cpumask_var_t mask;
2704
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002705 if (!ring->q_vector || !ring->netdev)
2706 return;
2707
2708 /* Single TC mode enable XPS */
2709 if (vsi->tc_config.numtc <= 1) {
2710 if (!test_and_set_bit(__I40E_TX_XPS_INIT_DONE, &ring->state))
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002711 netif_set_xps_queue(ring->netdev,
2712 &ring->q_vector->affinity_mask,
2713 ring->queue_index);
Jesse Brandeburg9a660ee2015-02-26 16:13:22 +00002714 } else if (alloc_cpumask_var(&mask, GFP_KERNEL)) {
2715 /* Disable XPS to allow selection based on TC */
2716 bitmap_zero(cpumask_bits(mask), nr_cpumask_bits);
2717 netif_set_xps_queue(ring->netdev, mask, ring->queue_index);
2718 free_cpumask_var(mask);
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002719 }
2720}
2721
2722/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002723 * i40e_configure_tx_ring - Configure a transmit ring context and rest
2724 * @ring: The Tx ring to configure
2725 *
2726 * Configure the Tx descriptor ring in the HMC context.
2727 **/
2728static int i40e_configure_tx_ring(struct i40e_ring *ring)
2729{
2730 struct i40e_vsi *vsi = ring->vsi;
2731 u16 pf_q = vsi->base_queue + ring->queue_index;
2732 struct i40e_hw *hw = &vsi->back->hw;
2733 struct i40e_hmc_obj_txq tx_ctx;
2734 i40e_status err = 0;
2735 u32 qtx_ctl = 0;
2736
2737 /* some ATR related tx ring init */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002738 if (vsi->back->flags & I40E_FLAG_FD_ATR_ENABLED) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002739 ring->atr_sample_rate = vsi->back->atr_sample_rate;
2740 ring->atr_count = 0;
2741 } else {
2742 ring->atr_sample_rate = 0;
2743 }
2744
Neerav Parikh3ffa0372014-11-12 00:19:02 +00002745 /* configure XPS */
2746 i40e_config_xps_tx_ring(ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002747
2748 /* clear the context structure first */
2749 memset(&tx_ctx, 0, sizeof(tx_ctx));
2750
2751 tx_ctx.new_context = 1;
2752 tx_ctx.base = (ring->dma / 128);
2753 tx_ctx.qlen = ring->count;
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08002754 tx_ctx.fd_ena = !!(vsi->back->flags & (I40E_FLAG_FD_SB_ENABLED |
2755 I40E_FLAG_FD_ATR_ENABLED));
Vasu Dev38e00432014-08-01 13:27:03 -07002756#ifdef I40E_FCOE
2757 tx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2758#endif
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002759 tx_ctx.timesync_ena = !!(vsi->back->flags & I40E_FLAG_PTP);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002760 /* FDIR VSI tx ring can still use RS bit and writebacks */
2761 if (vsi->type != I40E_VSI_FDIR)
2762 tx_ctx.head_wb_ena = 1;
2763 tx_ctx.head_wb_addr = ring->dma +
2764 (ring->count * sizeof(struct i40e_tx_desc));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002765
2766 /* As part of VSI creation/update, FW allocates certain
2767 * Tx arbitration queue sets for each TC enabled for
2768 * the VSI. The FW returns the handles to these queue
2769 * sets as part of the response buffer to Add VSI,
2770 * Update VSI, etc. AQ commands. It is expected that
2771 * these queue set handles be associated with the Tx
2772 * queues by the driver as part of the TX queue context
2773 * initialization. This has to be done regardless of
2774 * DCB as by default everything is mapped to TC0.
2775 */
2776 tx_ctx.rdylist = le16_to_cpu(vsi->info.qs_handle[ring->dcb_tc]);
2777 tx_ctx.rdylist_act = 0;
2778
2779 /* clear the context in the HMC */
2780 err = i40e_clear_lan_tx_queue_context(hw, pf_q);
2781 if (err) {
2782 dev_info(&vsi->back->pdev->dev,
2783 "Failed to clear LAN Tx queue context on Tx ring %d (pf_q %d), error: %d\n",
2784 ring->queue_index, pf_q, err);
2785 return -ENOMEM;
2786 }
2787
2788 /* set the context in the HMC */
2789 err = i40e_set_lan_tx_queue_context(hw, pf_q, &tx_ctx);
2790 if (err) {
2791 dev_info(&vsi->back->pdev->dev,
2792 "Failed to set LAN Tx queue context on Tx ring %d (pf_q %d, error: %d\n",
2793 ring->queue_index, pf_q, err);
2794 return -ENOMEM;
2795 }
2796
2797 /* Now associate this queue with this PCI function */
Mitch Williams7a28d882014-10-17 03:14:52 +00002798 if (vsi->type == I40E_VSI_VMDQ2) {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002799 qtx_ctl = I40E_QTX_CTL_VM_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002800 qtx_ctl |= ((vsi->id) << I40E_QTX_CTL_VFVM_INDX_SHIFT) &
2801 I40E_QTX_CTL_VFVM_INDX_MASK;
2802 } else {
Shannon Nelson9d8bf542014-01-14 00:49:50 -08002803 qtx_ctl = I40E_QTX_CTL_PF_QUEUE;
Mitch Williams7a28d882014-10-17 03:14:52 +00002804 }
2805
Shannon Nelson13fd9772013-09-28 07:14:19 +00002806 qtx_ctl |= ((hw->pf_id << I40E_QTX_CTL_PF_INDX_SHIFT) &
2807 I40E_QTX_CTL_PF_INDX_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002808 wr32(hw, I40E_QTX_CTL(pf_q), qtx_ctl);
2809 i40e_flush(hw);
2810
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002811 /* cache tail off for easier writes later */
2812 ring->tail = hw->hw_addr + I40E_QTX_TAIL(pf_q);
2813
2814 return 0;
2815}
2816
2817/**
2818 * i40e_configure_rx_ring - Configure a receive ring context
2819 * @ring: The Rx ring to configure
2820 *
2821 * Configure the Rx descriptor ring in the HMC context.
2822 **/
2823static int i40e_configure_rx_ring(struct i40e_ring *ring)
2824{
2825 struct i40e_vsi *vsi = ring->vsi;
2826 u32 chain_len = vsi->back->hw.func_caps.rx_buf_chain_len;
2827 u16 pf_q = vsi->base_queue + ring->queue_index;
2828 struct i40e_hw *hw = &vsi->back->hw;
2829 struct i40e_hmc_obj_rxq rx_ctx;
2830 i40e_status err = 0;
2831
2832 ring->state = 0;
2833
2834 /* clear the context structure first */
2835 memset(&rx_ctx, 0, sizeof(rx_ctx));
2836
2837 ring->rx_buf_len = vsi->rx_buf_len;
2838 ring->rx_hdr_len = vsi->rx_hdr_len;
2839
2840 rx_ctx.dbuff = ring->rx_buf_len >> I40E_RXQ_CTX_DBUFF_SHIFT;
2841 rx_ctx.hbuff = ring->rx_hdr_len >> I40E_RXQ_CTX_HBUFF_SHIFT;
2842
2843 rx_ctx.base = (ring->dma / 128);
2844 rx_ctx.qlen = ring->count;
2845
2846 if (vsi->back->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED) {
2847 set_ring_16byte_desc_enabled(ring);
2848 rx_ctx.dsize = 0;
2849 } else {
2850 rx_ctx.dsize = 1;
2851 }
2852
2853 rx_ctx.dtype = vsi->dtype;
2854 if (vsi->dtype) {
2855 set_ring_ps_enabled(ring);
2856 rx_ctx.hsplit_0 = I40E_RX_SPLIT_L2 |
2857 I40E_RX_SPLIT_IP |
2858 I40E_RX_SPLIT_TCP_UDP |
2859 I40E_RX_SPLIT_SCTP;
2860 } else {
2861 rx_ctx.hsplit_0 = 0;
2862 }
2863
2864 rx_ctx.rxmax = min_t(u16, vsi->max_frame,
2865 (chain_len * ring->rx_buf_len));
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00002866 if (hw->revision_id == 0)
2867 rx_ctx.lrxqthresh = 0;
2868 else
2869 rx_ctx.lrxqthresh = 2;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002870 rx_ctx.crcstrip = 1;
2871 rx_ctx.l2tsel = 1;
Jesse Brandeburgc4bbac32015-09-28 11:21:48 -07002872 /* this controls whether VLAN is stripped from inner headers */
2873 rx_ctx.showiv = 0;
Vasu Dev38e00432014-08-01 13:27:03 -07002874#ifdef I40E_FCOE
2875 rx_ctx.fc_ena = (vsi->type == I40E_VSI_FCOE);
2876#endif
Catherine Sullivanacb36762014-03-06 09:02:30 +00002877 /* set the prefena field to 1 because the manual says to */
2878 rx_ctx.prefena = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002879
2880 /* clear the context in the HMC */
2881 err = i40e_clear_lan_rx_queue_context(hw, pf_q);
2882 if (err) {
2883 dev_info(&vsi->back->pdev->dev,
2884 "Failed to clear LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2885 ring->queue_index, pf_q, err);
2886 return -ENOMEM;
2887 }
2888
2889 /* set the context in the HMC */
2890 err = i40e_set_lan_rx_queue_context(hw, pf_q, &rx_ctx);
2891 if (err) {
2892 dev_info(&vsi->back->pdev->dev,
2893 "Failed to set LAN Rx queue context on Rx ring %d (pf_q %d), error: %d\n",
2894 ring->queue_index, pf_q, err);
2895 return -ENOMEM;
2896 }
2897
2898 /* cache tail for quicker writes, and clear the reg before use */
2899 ring->tail = hw->hw_addr + I40E_QRX_TAIL(pf_q);
2900 writel(0, ring->tail);
2901
Mitch Williamsa132af22015-01-24 09:58:35 +00002902 if (ring_is_ps_enabled(ring)) {
2903 i40e_alloc_rx_headers(ring);
2904 i40e_alloc_rx_buffers_ps(ring, I40E_DESC_UNUSED(ring));
2905 } else {
2906 i40e_alloc_rx_buffers_1buf(ring, I40E_DESC_UNUSED(ring));
2907 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002908
2909 return 0;
2910}
2911
2912/**
2913 * i40e_vsi_configure_tx - Configure the VSI for Tx
2914 * @vsi: VSI structure describing this set of rings and resources
2915 *
2916 * Configure the Tx VSI for operation.
2917 **/
2918static int i40e_vsi_configure_tx(struct i40e_vsi *vsi)
2919{
2920 int err = 0;
2921 u16 i;
2922
Alexander Duyck9f65e152013-09-28 06:00:58 +00002923 for (i = 0; (i < vsi->num_queue_pairs) && !err; i++)
2924 err = i40e_configure_tx_ring(vsi->tx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002925
2926 return err;
2927}
2928
2929/**
2930 * i40e_vsi_configure_rx - Configure the VSI for Rx
2931 * @vsi: the VSI being configured
2932 *
2933 * Configure the Rx VSI for operation.
2934 **/
2935static int i40e_vsi_configure_rx(struct i40e_vsi *vsi)
2936{
2937 int err = 0;
2938 u16 i;
2939
2940 if (vsi->netdev && (vsi->netdev->mtu > ETH_DATA_LEN))
2941 vsi->max_frame = vsi->netdev->mtu + ETH_HLEN
2942 + ETH_FCS_LEN + VLAN_HLEN;
2943 else
2944 vsi->max_frame = I40E_RXBUFFER_2048;
2945
2946 /* figure out correct receive buffer length */
2947 switch (vsi->back->flags & (I40E_FLAG_RX_1BUF_ENABLED |
2948 I40E_FLAG_RX_PS_ENABLED)) {
2949 case I40E_FLAG_RX_1BUF_ENABLED:
2950 vsi->rx_hdr_len = 0;
2951 vsi->rx_buf_len = vsi->max_frame;
2952 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2953 break;
2954 case I40E_FLAG_RX_PS_ENABLED:
2955 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2956 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2957 vsi->dtype = I40E_RX_DTYPE_HEADER_SPLIT;
2958 break;
2959 default:
2960 vsi->rx_hdr_len = I40E_RX_HDR_SIZE;
2961 vsi->rx_buf_len = I40E_RXBUFFER_2048;
2962 vsi->dtype = I40E_RX_DTYPE_SPLIT_ALWAYS;
2963 break;
2964 }
2965
Vasu Dev38e00432014-08-01 13:27:03 -07002966#ifdef I40E_FCOE
2967 /* setup rx buffer for FCoE */
2968 if ((vsi->type == I40E_VSI_FCOE) &&
2969 (vsi->back->flags & I40E_FLAG_FCOE_ENABLED)) {
2970 vsi->rx_hdr_len = 0;
2971 vsi->rx_buf_len = I40E_RXBUFFER_3072;
2972 vsi->max_frame = I40E_RXBUFFER_3072;
2973 vsi->dtype = I40E_RX_DTYPE_NO_SPLIT;
2974 }
2975
2976#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002977 /* round up for the chip's needs */
2978 vsi->rx_hdr_len = ALIGN(vsi->rx_hdr_len,
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002979 BIT_ULL(I40E_RXQ_CTX_HBUFF_SHIFT));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002980 vsi->rx_buf_len = ALIGN(vsi->rx_buf_len,
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04002981 BIT_ULL(I40E_RXQ_CTX_DBUFF_SHIFT));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002982
2983 /* set up individual rings */
2984 for (i = 0; i < vsi->num_queue_pairs && !err; i++)
Alexander Duyck9f65e152013-09-28 06:00:58 +00002985 err = i40e_configure_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002986
2987 return err;
2988}
2989
2990/**
2991 * i40e_vsi_config_dcb_rings - Update rings to reflect DCB TC
2992 * @vsi: ptr to the VSI
2993 **/
2994static void i40e_vsi_config_dcb_rings(struct i40e_vsi *vsi)
2995{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00002996 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00002997 u16 qoffset, qcount;
2998 int i, n;
2999
Parikh, Neeravcd238a32015-02-21 06:43:37 +00003000 if (!(vsi->back->flags & I40E_FLAG_DCB_ENABLED)) {
3001 /* Reset the TC information */
3002 for (i = 0; i < vsi->num_queue_pairs; i++) {
3003 rx_ring = vsi->rx_rings[i];
3004 tx_ring = vsi->tx_rings[i];
3005 rx_ring->dcb_tc = 0;
3006 tx_ring->dcb_tc = 0;
3007 }
3008 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003009
3010 for (n = 0; n < I40E_MAX_TRAFFIC_CLASS; n++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04003011 if (!(vsi->tc_config.enabled_tc & BIT_ULL(n)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003012 continue;
3013
3014 qoffset = vsi->tc_config.tc_info[n].qoffset;
3015 qcount = vsi->tc_config.tc_info[n].qcount;
3016 for (i = qoffset; i < (qoffset + qcount); i++) {
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00003017 rx_ring = vsi->rx_rings[i];
3018 tx_ring = vsi->tx_rings[i];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003019 rx_ring->dcb_tc = n;
3020 tx_ring->dcb_tc = n;
3021 }
3022 }
3023}
3024
3025/**
3026 * i40e_set_vsi_rx_mode - Call set_rx_mode on a VSI
3027 * @vsi: ptr to the VSI
3028 **/
3029static void i40e_set_vsi_rx_mode(struct i40e_vsi *vsi)
3030{
3031 if (vsi->netdev)
3032 i40e_set_rx_mode(vsi->netdev);
3033}
3034
3035/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003036 * i40e_fdir_filter_restore - Restore the Sideband Flow Director filters
3037 * @vsi: Pointer to the targeted VSI
3038 *
3039 * This function replays the hlist on the hw where all the SB Flow Director
3040 * filters were saved.
3041 **/
3042static void i40e_fdir_filter_restore(struct i40e_vsi *vsi)
3043{
3044 struct i40e_fdir_filter *filter;
3045 struct i40e_pf *pf = vsi->back;
3046 struct hlist_node *node;
3047
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00003048 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
3049 return;
3050
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00003051 hlist_for_each_entry_safe(filter, node,
3052 &pf->fdir_filter_list, fdir_node) {
3053 i40e_add_del_fdir(vsi, filter, true);
3054 }
3055}
3056
3057/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003058 * i40e_vsi_configure - Set up the VSI for action
3059 * @vsi: the VSI being configured
3060 **/
3061static int i40e_vsi_configure(struct i40e_vsi *vsi)
3062{
3063 int err;
3064
3065 i40e_set_vsi_rx_mode(vsi);
3066 i40e_restore_vlan(vsi);
3067 i40e_vsi_config_dcb_rings(vsi);
3068 err = i40e_vsi_configure_tx(vsi);
3069 if (!err)
3070 err = i40e_vsi_configure_rx(vsi);
3071
3072 return err;
3073}
3074
3075/**
3076 * i40e_vsi_configure_msix - MSIX mode Interrupt Config in the HW
3077 * @vsi: the VSI being configured
3078 **/
3079static void i40e_vsi_configure_msix(struct i40e_vsi *vsi)
3080{
3081 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003082 struct i40e_hw *hw = &pf->hw;
3083 u16 vector;
3084 int i, q;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003085 u32 qp;
3086
3087 /* The interrupt indexing is offset by 1 in the PFINT_ITRn
3088 * and PFINT_LNKLSTn registers, e.g.:
3089 * PFINT_ITRn[0..n-1] gets msix-1..msix-n (qpair interrupts)
3090 */
3091 qp = vsi->base_queue;
3092 vector = vsi->base_vector;
Alexander Duyck493fb302013-09-28 07:01:44 +00003093 for (i = 0; i < vsi->num_q_vectors; i++, vector++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003094 struct i40e_q_vector *q_vector = vsi->q_vectors[i];
3095
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003096 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003097 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
3098 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3099 wr32(hw, I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1),
3100 q_vector->rx.itr);
3101 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
3102 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3103 wr32(hw, I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1),
3104 q_vector->tx.itr);
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003105 wr32(hw, I40E_PFINT_RATEN(vector - 1),
3106 INTRL_USEC_TO_REG(vsi->int_rate_limit));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003107
3108 /* Linked list for the queuepairs assigned to this vector */
3109 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), qp);
3110 for (q = 0; q < q_vector->num_ringpairs; q++) {
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04003111 u32 val;
3112
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003113 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3114 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3115 (vector << I40E_QINT_RQCTL_MSIX_INDX_SHIFT) |
3116 (qp << I40E_QINT_RQCTL_NEXTQ_INDX_SHIFT)|
3117 (I40E_QUEUE_TYPE_TX
3118 << I40E_QINT_RQCTL_NEXTQ_TYPE_SHIFT);
3119
3120 wr32(hw, I40E_QINT_RQCTL(qp), val);
3121
3122 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3123 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3124 (vector << I40E_QINT_TQCTL_MSIX_INDX_SHIFT) |
3125 ((qp+1) << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT)|
3126 (I40E_QUEUE_TYPE_RX
3127 << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3128
3129 /* Terminate the linked list */
3130 if (q == (q_vector->num_ringpairs - 1))
3131 val |= (I40E_QUEUE_END_OF_LIST
3132 << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3133
3134 wr32(hw, I40E_QINT_TQCTL(qp), val);
3135 qp++;
3136 }
3137 }
3138
3139 i40e_flush(hw);
3140}
3141
3142/**
3143 * i40e_enable_misc_int_causes - enable the non-queue interrupts
3144 * @hw: ptr to the hardware info
3145 **/
Jacob Kellerab437b52014-12-14 01:55:08 +00003146static void i40e_enable_misc_int_causes(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003147{
Jacob Kellerab437b52014-12-14 01:55:08 +00003148 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003149 u32 val;
3150
3151 /* clear things first */
3152 wr32(hw, I40E_PFINT_ICR0_ENA, 0); /* disable all */
3153 rd32(hw, I40E_PFINT_ICR0); /* read to clear */
3154
3155 val = I40E_PFINT_ICR0_ENA_ECC_ERR_MASK |
3156 I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK |
3157 I40E_PFINT_ICR0_ENA_GRST_MASK |
3158 I40E_PFINT_ICR0_ENA_PCI_EXCEPTION_MASK |
3159 I40E_PFINT_ICR0_ENA_GPIO_MASK |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003160 I40E_PFINT_ICR0_ENA_HMC_ERR_MASK |
3161 I40E_PFINT_ICR0_ENA_VFLR_MASK |
3162 I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3163
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003164 if (pf->flags & I40E_FLAG_IWARP_ENABLED)
3165 val |= I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3166
Jacob Kellerab437b52014-12-14 01:55:08 +00003167 if (pf->flags & I40E_FLAG_PTP)
3168 val |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
3169
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003170 wr32(hw, I40E_PFINT_ICR0_ENA, val);
3171
3172 /* SW_ITR_IDX = 0, but don't change INTENA */
Anjali Singhai Jain84ed40e2013-11-26 10:49:32 +00003173 wr32(hw, I40E_PFINT_DYN_CTL0, I40E_PFINT_DYN_CTL0_SW_ITR_INDX_MASK |
3174 I40E_PFINT_DYN_CTL0_INTENA_MSK_MASK);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003175
3176 /* OTHER_ITR_IDX = 0 */
3177 wr32(hw, I40E_PFINT_STAT_CTL0, 0);
3178}
3179
3180/**
3181 * i40e_configure_msi_and_legacy - Legacy mode interrupt config in the HW
3182 * @vsi: the VSI being configured
3183 **/
3184static void i40e_configure_msi_and_legacy(struct i40e_vsi *vsi)
3185{
Alexander Duyck493fb302013-09-28 07:01:44 +00003186 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003187 struct i40e_pf *pf = vsi->back;
3188 struct i40e_hw *hw = &pf->hw;
3189 u32 val;
3190
3191 /* set the ITR configuration */
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04003192 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003193 q_vector->rx.itr = ITR_TO_REG(vsi->rx_itr_setting);
3194 q_vector->rx.latency_range = I40E_LOW_LATENCY;
3195 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), q_vector->rx.itr);
3196 q_vector->tx.itr = ITR_TO_REG(vsi->tx_itr_setting);
3197 q_vector->tx.latency_range = I40E_LOW_LATENCY;
3198 wr32(hw, I40E_PFINT_ITR0(I40E_TX_ITR), q_vector->tx.itr);
3199
Jacob Kellerab437b52014-12-14 01:55:08 +00003200 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003201
3202 /* FIRSTQ_INDX = 0, FIRSTQ_TYPE = 0 (rx) */
3203 wr32(hw, I40E_PFINT_LNKLST0, 0);
3204
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00003205 /* Associate the queue pair to the vector and enable the queue int */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003206 val = I40E_QINT_RQCTL_CAUSE_ENA_MASK |
3207 (I40E_RX_ITR << I40E_QINT_RQCTL_ITR_INDX_SHIFT) |
3208 (I40E_QUEUE_TYPE_TX << I40E_QINT_TQCTL_NEXTQ_TYPE_SHIFT);
3209
3210 wr32(hw, I40E_QINT_RQCTL(0), val);
3211
3212 val = I40E_QINT_TQCTL_CAUSE_ENA_MASK |
3213 (I40E_TX_ITR << I40E_QINT_TQCTL_ITR_INDX_SHIFT) |
3214 (I40E_QUEUE_END_OF_LIST << I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT);
3215
3216 wr32(hw, I40E_QINT_TQCTL(0), val);
3217 i40e_flush(hw);
3218}
3219
3220/**
Mitch Williams2ef28cf2013-11-28 06:39:32 +00003221 * i40e_irq_dynamic_disable_icr0 - Disable default interrupt generation for icr0
3222 * @pf: board private structure
3223 **/
3224void i40e_irq_dynamic_disable_icr0(struct i40e_pf *pf)
3225{
3226 struct i40e_hw *hw = &pf->hw;
3227
3228 wr32(hw, I40E_PFINT_DYN_CTL0,
3229 I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT);
3230 i40e_flush(hw);
3231}
3232
3233/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003234 * i40e_irq_dynamic_enable_icr0 - Enable default interrupt generation for icr0
3235 * @pf: board private structure
3236 **/
Shannon Nelson116a57d2013-09-28 07:13:59 +00003237void i40e_irq_dynamic_enable_icr0(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003238{
3239 struct i40e_hw *hw = &pf->hw;
3240 u32 val;
3241
3242 val = I40E_PFINT_DYN_CTL0_INTENA_MASK |
3243 I40E_PFINT_DYN_CTL0_CLEARPBA_MASK |
3244 (I40E_ITR_NONE << I40E_PFINT_DYN_CTL0_ITR_INDX_SHIFT);
3245
3246 wr32(hw, I40E_PFINT_DYN_CTL0, val);
3247 i40e_flush(hw);
3248}
3249
3250/**
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00003251 * i40e_irq_dynamic_disable - Disable default interrupt generation settings
3252 * @vsi: pointer to a vsi
Greg Rose03147772015-01-24 09:58:29 +00003253 * @vector: disable a particular Hw Interrupt vector
Carolyn Wyborny5c2cebd2014-06-04 01:23:18 +00003254 **/
3255void i40e_irq_dynamic_disable(struct i40e_vsi *vsi, int vector)
3256{
3257 struct i40e_pf *pf = vsi->back;
3258 struct i40e_hw *hw = &pf->hw;
3259 u32 val;
3260
3261 val = I40E_ITR_NONE << I40E_PFINT_DYN_CTLN_ITR_INDX_SHIFT;
3262 wr32(hw, I40E_PFINT_DYN_CTLN(vector - 1), val);
3263 i40e_flush(hw);
3264}
3265
3266/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003267 * i40e_msix_clean_rings - MSIX mode Interrupt Handler
3268 * @irq: interrupt number
3269 * @data: pointer to a q_vector
3270 **/
3271static irqreturn_t i40e_msix_clean_rings(int irq, void *data)
3272{
3273 struct i40e_q_vector *q_vector = data;
3274
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003275 if (!q_vector->tx.ring && !q_vector->rx.ring)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003276 return IRQ_HANDLED;
3277
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003278 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003279
3280 return IRQ_HANDLED;
3281}
3282
3283/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003284 * i40e_vsi_request_irq_msix - Initialize MSI-X interrupts
3285 * @vsi: the VSI being configured
3286 * @basename: name for the vector
3287 *
3288 * Allocates MSI-X vectors and requests interrupts from the kernel.
3289 **/
3290static int i40e_vsi_request_irq_msix(struct i40e_vsi *vsi, char *basename)
3291{
3292 int q_vectors = vsi->num_q_vectors;
3293 struct i40e_pf *pf = vsi->back;
3294 int base = vsi->base_vector;
3295 int rx_int_idx = 0;
3296 int tx_int_idx = 0;
3297 int vector, err;
3298
3299 for (vector = 0; vector < q_vectors; vector++) {
Alexander Duyck493fb302013-09-28 07:01:44 +00003300 struct i40e_q_vector *q_vector = vsi->q_vectors[vector];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003301
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003302 if (q_vector->tx.ring && q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003303 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3304 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
3305 tx_int_idx++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003306 } else if (q_vector->rx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003307 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3308 "%s-%s-%d", basename, "rx", rx_int_idx++);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003309 } else if (q_vector->tx.ring) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003310 snprintf(q_vector->name, sizeof(q_vector->name) - 1,
3311 "%s-%s-%d", basename, "tx", tx_int_idx++);
3312 } else {
3313 /* skip this unused q_vector */
3314 continue;
3315 }
3316 err = request_irq(pf->msix_entries[base + vector].vector,
3317 vsi->irq_handler,
3318 0,
3319 q_vector->name,
3320 q_vector);
3321 if (err) {
3322 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003323 "MSIX request_irq failed, error: %d\n", err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003324 goto free_queue_irqs;
3325 }
3326 /* assign the mask for this irq */
3327 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3328 &q_vector->affinity_mask);
3329 }
3330
Shannon Nelson63741842014-04-23 04:50:16 +00003331 vsi->irqs_ready = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003332 return 0;
3333
3334free_queue_irqs:
3335 while (vector) {
3336 vector--;
3337 irq_set_affinity_hint(pf->msix_entries[base + vector].vector,
3338 NULL);
3339 free_irq(pf->msix_entries[base + vector].vector,
3340 &(vsi->q_vectors[vector]));
3341 }
3342 return err;
3343}
3344
3345/**
3346 * i40e_vsi_disable_irq - Mask off queue interrupt generation on the VSI
3347 * @vsi: the VSI being un-configured
3348 **/
3349static void i40e_vsi_disable_irq(struct i40e_vsi *vsi)
3350{
3351 struct i40e_pf *pf = vsi->back;
3352 struct i40e_hw *hw = &pf->hw;
3353 int base = vsi->base_vector;
3354 int i;
3355
3356 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00003357 wr32(hw, I40E_QINT_TQCTL(vsi->tx_rings[i]->reg_idx), 0);
3358 wr32(hw, I40E_QINT_RQCTL(vsi->rx_rings[i]->reg_idx), 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003359 }
3360
3361 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3362 for (i = vsi->base_vector;
3363 i < (vsi->num_q_vectors + vsi->base_vector); i++)
3364 wr32(hw, I40E_PFINT_DYN_CTLN(i - 1), 0);
3365
3366 i40e_flush(hw);
3367 for (i = 0; i < vsi->num_q_vectors; i++)
3368 synchronize_irq(pf->msix_entries[i + base].vector);
3369 } else {
3370 /* Legacy and MSI mode - this stops all interrupt handling */
3371 wr32(hw, I40E_PFINT_ICR0_ENA, 0);
3372 wr32(hw, I40E_PFINT_DYN_CTL0, 0);
3373 i40e_flush(hw);
3374 synchronize_irq(pf->pdev->irq);
3375 }
3376}
3377
3378/**
3379 * i40e_vsi_enable_irq - Enable IRQ for the given VSI
3380 * @vsi: the VSI being configured
3381 **/
3382static int i40e_vsi_enable_irq(struct i40e_vsi *vsi)
3383{
3384 struct i40e_pf *pf = vsi->back;
3385 int i;
3386
3387 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Jesse Brandeburg78455482015-07-23 16:54:41 -04003388 for (i = 0; i < vsi->num_q_vectors; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003389 i40e_irq_dynamic_enable(vsi, i);
3390 } else {
3391 i40e_irq_dynamic_enable_icr0(pf);
3392 }
3393
Jesse Brandeburg1022cb62013-09-28 07:13:08 +00003394 i40e_flush(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003395 return 0;
3396}
3397
3398/**
3399 * i40e_stop_misc_vector - Stop the vector that handles non-queue events
3400 * @pf: board private structure
3401 **/
3402static void i40e_stop_misc_vector(struct i40e_pf *pf)
3403{
3404 /* Disable ICR 0 */
3405 wr32(&pf->hw, I40E_PFINT_ICR0_ENA, 0);
3406 i40e_flush(&pf->hw);
3407}
3408
3409/**
3410 * i40e_intr - MSI/Legacy and non-queue interrupt handler
3411 * @irq: interrupt number
3412 * @data: pointer to a q_vector
3413 *
3414 * This is the handler used for all MSI/Legacy interrupts, and deals
3415 * with both queue and non-queue interrupts. This is also used in
3416 * MSIX mode to handle the non-queue interrupts.
3417 **/
3418static irqreturn_t i40e_intr(int irq, void *data)
3419{
3420 struct i40e_pf *pf = (struct i40e_pf *)data;
3421 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003422 irqreturn_t ret = IRQ_NONE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003423 u32 icr0, icr0_remaining;
3424 u32 val, ena_mask;
3425
3426 icr0 = rd32(hw, I40E_PFINT_ICR0);
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003427 ena_mask = rd32(hw, I40E_PFINT_ICR0_ENA);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003428
Shannon Nelson116a57d2013-09-28 07:13:59 +00003429 /* if sharing a legacy IRQ, we might get called w/o an intr pending */
3430 if ((icr0 & I40E_PFINT_ICR0_INTEVENT_MASK) == 0)
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003431 goto enable_intr;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003432
Shannon Nelsoncd92e722013-11-16 10:00:44 +00003433 /* if interrupt but no bits showing, must be SWINT */
3434 if (((icr0 & ~I40E_PFINT_ICR0_INTEVENT_MASK) == 0) ||
3435 (icr0 & I40E_PFINT_ICR0_SWINT_MASK))
3436 pf->sw_int_count++;
3437
Anjali Singhai Jain0d8e1432015-06-05 12:20:32 -04003438 if ((pf->flags & I40E_FLAG_IWARP_ENABLED) &&
3439 (ena_mask & I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK)) {
3440 ena_mask &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3441 icr0 &= ~I40E_PFINT_ICR0_ENA_PE_CRITERR_MASK;
3442 dev_info(&pf->pdev->dev, "cleared PE_CRITERR\n");
3443 }
3444
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003445 /* only q0 is used in MSI/Legacy mode, and none are used in MSIX */
3446 if (icr0 & I40E_PFINT_ICR0_QUEUE_0_MASK) {
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003447 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
3448 struct i40e_q_vector *q_vector = vsi->q_vectors[0];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003449
3450 /* temporarily disable queue cause for NAPI processing */
3451 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003452
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003453 qval &= ~I40E_QINT_RQCTL_CAUSE_ENA_MASK;
3454 wr32(hw, I40E_QINT_RQCTL(0), qval);
3455
3456 qval = rd32(hw, I40E_QINT_TQCTL(0));
3457 qval &= ~I40E_QINT_TQCTL_CAUSE_ENA_MASK;
3458 wr32(hw, I40E_QINT_TQCTL(0), qval);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003459
3460 if (!test_bit(__I40E_DOWN, &pf->state))
Alexander Duyck5d3465a2015-09-29 15:19:50 -07003461 napi_schedule_irqoff(&q_vector->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003462 }
3463
3464 if (icr0 & I40E_PFINT_ICR0_ADMINQ_MASK) {
3465 ena_mask &= ~I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
3466 set_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
3467 }
3468
3469 if (icr0 & I40E_PFINT_ICR0_MAL_DETECT_MASK) {
3470 ena_mask &= ~I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
3471 set_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
3472 }
3473
3474 if (icr0 & I40E_PFINT_ICR0_VFLR_MASK) {
3475 ena_mask &= ~I40E_PFINT_ICR0_ENA_VFLR_MASK;
3476 set_bit(__I40E_VFLR_EVENT_PENDING, &pf->state);
3477 }
3478
3479 if (icr0 & I40E_PFINT_ICR0_GRST_MASK) {
3480 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
3481 set_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
3482 ena_mask &= ~I40E_PFINT_ICR0_ENA_GRST_MASK;
3483 val = rd32(hw, I40E_GLGEN_RSTAT);
3484 val = (val & I40E_GLGEN_RSTAT_RESET_TYPE_MASK)
3485 >> I40E_GLGEN_RSTAT_RESET_TYPE_SHIFT;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003486 if (val == I40E_RESET_CORER) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003487 pf->corer_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003488 } else if (val == I40E_RESET_GLOBR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003489 pf->globr_count++;
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003490 } else if (val == I40E_RESET_EMPR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003491 pf->empr_count++;
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00003492 set_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00003493 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003494 }
3495
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003496 if (icr0 & I40E_PFINT_ICR0_HMC_ERR_MASK) {
3497 icr0 &= ~I40E_PFINT_ICR0_HMC_ERR_MASK;
3498 dev_info(&pf->pdev->dev, "HMC error interrupt\n");
Anjali Singhai Jain25fc0e62015-03-31 00:45:01 -07003499 dev_info(&pf->pdev->dev, "HMC error info 0x%x, HMC error data 0x%x\n",
3500 rd32(hw, I40E_PFHMC_ERRORINFO),
3501 rd32(hw, I40E_PFHMC_ERRORDATA));
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003502 }
3503
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003504 if (icr0 & I40E_PFINT_ICR0_TIMESYNC_MASK) {
3505 u32 prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_0);
3506
3507 if (prttsyn_stat & I40E_PRTTSYN_STAT_0_TXTIME_MASK) {
Jacob Kellercafa1fc2014-04-24 18:05:03 -07003508 icr0 &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003509 i40e_ptp_tx_hwtstamp(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003510 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00003511 }
3512
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003513 /* If a critical error is pending we have no choice but to reset the
3514 * device.
3515 * Report and mask out any remaining unexpected interrupts.
3516 */
3517 icr0_remaining = icr0 & ena_mask;
3518 if (icr0_remaining) {
3519 dev_info(&pf->pdev->dev, "unhandled interrupt icr0=0x%08x\n",
3520 icr0_remaining);
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003521 if ((icr0_remaining & I40E_PFINT_ICR0_PE_CRITERR_MASK) ||
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003522 (icr0_remaining & I40E_PFINT_ICR0_PCI_EXCEPTION_MASK) ||
Anjali Singhai Jainc0c28972014-02-12 01:45:34 +00003523 (icr0_remaining & I40E_PFINT_ICR0_ECC_ERR_MASK)) {
Anjali Singhai Jain9c010ee2013-11-28 06:39:20 +00003524 dev_info(&pf->pdev->dev, "device will be reset\n");
3525 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
3526 i40e_service_event_schedule(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003527 }
3528 ena_mask &= ~icr0_remaining;
3529 }
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003530 ret = IRQ_HANDLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003531
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003532enable_intr:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003533 /* re-enable interrupt causes */
3534 wr32(hw, I40E_PFINT_ICR0_ENA, ena_mask);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003535 if (!test_bit(__I40E_DOWN, &pf->state)) {
3536 i40e_service_event_schedule(pf);
3537 i40e_irq_dynamic_enable_icr0(pf);
3538 }
3539
Anjali Singhai Jain5e823062013-12-18 13:45:49 +00003540 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003541}
3542
3543/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003544 * i40e_clean_fdir_tx_irq - Reclaim resources after transmit completes
3545 * @tx_ring: tx ring to clean
3546 * @budget: how many cleans we're allowed
3547 *
3548 * Returns true if there's any budget left (e.g. the clean is finished)
3549 **/
3550static bool i40e_clean_fdir_tx_irq(struct i40e_ring *tx_ring, int budget)
3551{
3552 struct i40e_vsi *vsi = tx_ring->vsi;
3553 u16 i = tx_ring->next_to_clean;
3554 struct i40e_tx_buffer *tx_buf;
3555 struct i40e_tx_desc *tx_desc;
3556
3557 tx_buf = &tx_ring->tx_bi[i];
3558 tx_desc = I40E_TX_DESC(tx_ring, i);
3559 i -= tx_ring->count;
3560
3561 do {
3562 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
3563
3564 /* if next_to_watch is not set then there is no work pending */
3565 if (!eop_desc)
3566 break;
3567
3568 /* prevent any other reads prior to eop_desc */
3569 read_barrier_depends();
3570
3571 /* if the descriptor isn't done, no work yet to do */
3572 if (!(eop_desc->cmd_type_offset_bsz &
3573 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
3574 break;
3575
3576 /* clear next_to_watch to prevent false hangs */
3577 tx_buf->next_to_watch = NULL;
3578
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003579 tx_desc->buffer_addr = 0;
3580 tx_desc->cmd_type_offset_bsz = 0;
3581 /* move past filter desc */
3582 tx_buf++;
3583 tx_desc++;
3584 i++;
3585 if (unlikely(!i)) {
3586 i -= tx_ring->count;
3587 tx_buf = tx_ring->tx_bi;
3588 tx_desc = I40E_TX_DESC(tx_ring, 0);
3589 }
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003590 /* unmap skb header data */
3591 dma_unmap_single(tx_ring->dev,
3592 dma_unmap_addr(tx_buf, dma),
3593 dma_unmap_len(tx_buf, len),
3594 DMA_TO_DEVICE);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003595 if (tx_buf->tx_flags & I40E_TX_FLAGS_FD_SB)
3596 kfree(tx_buf->raw_buf);
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003597
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003598 tx_buf->raw_buf = NULL;
3599 tx_buf->tx_flags = 0;
3600 tx_buf->next_to_watch = NULL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003601 dma_unmap_len_set(tx_buf, len, 0);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003602 tx_desc->buffer_addr = 0;
3603 tx_desc->cmd_type_offset_bsz = 0;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003604
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +00003605 /* move us past the eop_desc for start of next FD desc */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003606 tx_buf++;
3607 tx_desc++;
3608 i++;
3609 if (unlikely(!i)) {
3610 i -= tx_ring->count;
3611 tx_buf = tx_ring->tx_bi;
3612 tx_desc = I40E_TX_DESC(tx_ring, 0);
3613 }
3614
3615 /* update budget accounting */
3616 budget--;
3617 } while (likely(budget));
3618
3619 i += tx_ring->count;
3620 tx_ring->next_to_clean = i;
3621
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003622 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED)
Jesse Brandeburg78455482015-07-23 16:54:41 -04003623 i40e_irq_dynamic_enable(vsi, tx_ring->q_vector->v_idx);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04003624
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08003625 return budget > 0;
3626}
3627
3628/**
3629 * i40e_fdir_clean_ring - Interrupt Handler for FDIR SB ring
3630 * @irq: interrupt number
3631 * @data: pointer to a q_vector
3632 **/
3633static irqreturn_t i40e_fdir_clean_ring(int irq, void *data)
3634{
3635 struct i40e_q_vector *q_vector = data;
3636 struct i40e_vsi *vsi;
3637
3638 if (!q_vector->tx.ring)
3639 return IRQ_HANDLED;
3640
3641 vsi = q_vector->tx.ring->vsi;
3642 i40e_clean_fdir_tx_irq(q_vector->tx.ring, vsi->work_limit);
3643
3644 return IRQ_HANDLED;
3645}
3646
3647/**
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003648 * i40e_map_vector_to_qp - Assigns the queue pair to the vector
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003649 * @vsi: the VSI being configured
3650 * @v_idx: vector index
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003651 * @qp_idx: queue pair index
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003652 **/
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003653static void i40e_map_vector_to_qp(struct i40e_vsi *vsi, int v_idx, int qp_idx)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003654{
Alexander Duyck493fb302013-09-28 07:01:44 +00003655 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyck9f65e152013-09-28 06:00:58 +00003656 struct i40e_ring *tx_ring = vsi->tx_rings[qp_idx];
3657 struct i40e_ring *rx_ring = vsi->rx_rings[qp_idx];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003658
3659 tx_ring->q_vector = q_vector;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003660 tx_ring->next = q_vector->tx.ring;
3661 q_vector->tx.ring = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003662 q_vector->tx.count++;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003663
3664 rx_ring->q_vector = q_vector;
3665 rx_ring->next = q_vector->rx.ring;
3666 q_vector->rx.ring = rx_ring;
3667 q_vector->rx.count++;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003668}
3669
3670/**
3671 * i40e_vsi_map_rings_to_vectors - Maps descriptor rings to vectors
3672 * @vsi: the VSI being configured
3673 *
3674 * This function maps descriptor rings to the queue-specific vectors
3675 * we were allotted through the MSI-X enabling code. Ideally, we'd have
3676 * one vector per queue pair, but on a constrained vector budget, we
3677 * group the queue pairs as "efficiently" as possible.
3678 **/
3679static void i40e_vsi_map_rings_to_vectors(struct i40e_vsi *vsi)
3680{
3681 int qp_remaining = vsi->num_queue_pairs;
3682 int q_vectors = vsi->num_q_vectors;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003683 int num_ringpairs;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003684 int v_start = 0;
3685 int qp_idx = 0;
3686
3687 /* If we don't have enough vectors for a 1-to-1 mapping, we'll have to
3688 * group them so there are multiple queues per vector.
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003689 * It is also important to go through all the vectors available to be
3690 * sure that if we don't use all the vectors, that the remaining vectors
3691 * are cleared. This is especially important when decreasing the
3692 * number of queues in use.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003693 */
Anjali Singhai Jain70114ec2014-06-03 23:50:14 +00003694 for (; v_start < q_vectors; v_start++) {
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003695 struct i40e_q_vector *q_vector = vsi->q_vectors[v_start];
3696
3697 num_ringpairs = DIV_ROUND_UP(qp_remaining, q_vectors - v_start);
3698
3699 q_vector->num_ringpairs = num_ringpairs;
3700
3701 q_vector->rx.count = 0;
3702 q_vector->tx.count = 0;
3703 q_vector->rx.ring = NULL;
3704 q_vector->tx.ring = NULL;
3705
3706 while (num_ringpairs--) {
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04003707 i40e_map_vector_to_qp(vsi, v_start, qp_idx);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00003708 qp_idx++;
3709 qp_remaining--;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003710 }
3711 }
3712}
3713
3714/**
3715 * i40e_vsi_request_irq - Request IRQ from the OS
3716 * @vsi: the VSI being configured
3717 * @basename: name for the vector
3718 **/
3719static int i40e_vsi_request_irq(struct i40e_vsi *vsi, char *basename)
3720{
3721 struct i40e_pf *pf = vsi->back;
3722 int err;
3723
3724 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
3725 err = i40e_vsi_request_irq_msix(vsi, basename);
3726 else if (pf->flags & I40E_FLAG_MSI_ENABLED)
3727 err = request_irq(pf->pdev->irq, i40e_intr, 0,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003728 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003729 else
3730 err = request_irq(pf->pdev->irq, i40e_intr, IRQF_SHARED,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00003731 pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003732
3733 if (err)
3734 dev_info(&pf->pdev->dev, "request_irq failed, Error %d\n", err);
3735
3736 return err;
3737}
3738
3739#ifdef CONFIG_NET_POLL_CONTROLLER
3740/**
3741 * i40e_netpoll - A Polling 'interrupt'handler
3742 * @netdev: network interface device structure
3743 *
3744 * This is used by netconsole to send skbs without having to re-enable
3745 * interrupts. It's not called while the normal interrupt routine is executing.
3746 **/
Vasu Dev38e00432014-08-01 13:27:03 -07003747#ifdef I40E_FCOE
3748void i40e_netpoll(struct net_device *netdev)
3749#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003750static void i40e_netpoll(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07003751#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003752{
3753 struct i40e_netdev_priv *np = netdev_priv(netdev);
3754 struct i40e_vsi *vsi = np->vsi;
3755 struct i40e_pf *pf = vsi->back;
3756 int i;
3757
3758 /* if interface is down do nothing */
3759 if (test_bit(__I40E_DOWN, &vsi->state))
3760 return;
3761
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003762 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3763 for (i = 0; i < vsi->num_q_vectors; i++)
Alexander Duyck493fb302013-09-28 07:01:44 +00003764 i40e_msix_clean_rings(0, vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003765 } else {
3766 i40e_intr(pf->pdev->irq, netdev);
3767 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003768}
3769#endif
3770
3771/**
Neerav Parikh23527302014-06-03 23:50:15 +00003772 * i40e_pf_txq_wait - Wait for a PF's Tx queue to be enabled or disabled
3773 * @pf: the PF being configured
3774 * @pf_q: the PF queue
3775 * @enable: enable or disable state of the queue
3776 *
3777 * This routine will wait for the given Tx queue of the PF to reach the
3778 * enabled or disabled state.
3779 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3780 * multiple retries; else will return 0 in case of success.
3781 **/
3782static int i40e_pf_txq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3783{
3784 int i;
3785 u32 tx_reg;
3786
3787 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3788 tx_reg = rd32(&pf->hw, I40E_QTX_ENA(pf_q));
3789 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
3790 break;
3791
Neerav Parikhf98a2002014-09-13 07:40:44 +00003792 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003793 }
3794 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3795 return -ETIMEDOUT;
3796
3797 return 0;
3798}
3799
3800/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003801 * i40e_vsi_control_tx - Start or stop a VSI's rings
3802 * @vsi: the VSI being configured
3803 * @enable: start or stop the rings
3804 **/
3805static int i40e_vsi_control_tx(struct i40e_vsi *vsi, bool enable)
3806{
3807 struct i40e_pf *pf = vsi->back;
3808 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003809 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003810 u32 tx_reg;
3811
3812 pf_q = vsi->base_queue;
3813 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Matt Jared351499ab2014-04-23 04:50:03 +00003814
3815 /* warn the TX unit of coming changes */
3816 i40e_pre_tx_queue_cfg(&pf->hw, pf_q, enable);
3817 if (!enable)
Neerav Parikhf98a2002014-09-13 07:40:44 +00003818 usleep_range(10, 20);
Matt Jared351499ab2014-04-23 04:50:03 +00003819
Mitch Williams6c5ef622014-02-20 19:29:16 -08003820 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003821 tx_reg = rd32(hw, I40E_QTX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003822 if (((tx_reg >> I40E_QTX_ENA_QENA_REQ_SHIFT) & 1) ==
3823 ((tx_reg >> I40E_QTX_ENA_QENA_STAT_SHIFT) & 1))
3824 break;
3825 usleep_range(1000, 2000);
3826 }
Mitch Williamsfda972f2013-11-28 06:39:29 +00003827 /* Skip if the queue is already in the requested state */
Catherine Sullivan7c122002014-03-14 07:32:29 +00003828 if (enable == !!(tx_reg & I40E_QTX_ENA_QENA_STAT_MASK))
Mitch Williamsfda972f2013-11-28 06:39:29 +00003829 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003830
3831 /* turn on/off the queue */
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003832 if (enable) {
3833 wr32(hw, I40E_QTX_HEAD(pf_q), 0);
Mitch Williams6c5ef622014-02-20 19:29:16 -08003834 tx_reg |= I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003835 } else {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003836 tx_reg &= ~I40E_QTX_ENA_QENA_REQ_MASK;
Shannon Nelsonc5c9eb92013-12-21 05:44:48 +00003837 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003838
3839 wr32(hw, I40E_QTX_ENA(pf_q), tx_reg);
Neerav Parikh69129dc2014-11-12 00:18:46 +00003840 /* No waiting for the Tx queue to disable */
3841 if (!enable && test_bit(__I40E_PORT_TX_SUSPENDED, &pf->state))
3842 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003843
3844 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003845 ret = i40e_pf_txq_wait(pf, pf_q, enable);
3846 if (ret) {
3847 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003848 "VSI seid %d Tx ring %d %sable timeout\n",
3849 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003850 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003851 }
3852 }
3853
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003854 if (hw->revision_id == 0)
3855 mdelay(50);
Neerav Parikh23527302014-06-03 23:50:15 +00003856 return ret;
3857}
3858
3859/**
3860 * i40e_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
3861 * @pf: the PF being configured
3862 * @pf_q: the PF queue
3863 * @enable: enable or disable state of the queue
3864 *
3865 * This routine will wait for the given Rx queue of the PF to reach the
3866 * enabled or disabled state.
3867 * Returns -ETIMEDOUT in case of failing to reach the requested state after
3868 * multiple retries; else will return 0 in case of success.
3869 **/
3870static int i40e_pf_rxq_wait(struct i40e_pf *pf, int pf_q, bool enable)
3871{
3872 int i;
3873 u32 rx_reg;
3874
3875 for (i = 0; i < I40E_QUEUE_WAIT_RETRY_LIMIT; i++) {
3876 rx_reg = rd32(&pf->hw, I40E_QRX_ENA(pf_q));
3877 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3878 break;
3879
Neerav Parikhf98a2002014-09-13 07:40:44 +00003880 usleep_range(10, 20);
Neerav Parikh23527302014-06-03 23:50:15 +00003881 }
3882 if (i >= I40E_QUEUE_WAIT_RETRY_LIMIT)
3883 return -ETIMEDOUT;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00003884
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003885 return 0;
3886}
3887
3888/**
3889 * i40e_vsi_control_rx - Start or stop a VSI's rings
3890 * @vsi: the VSI being configured
3891 * @enable: start or stop the rings
3892 **/
3893static int i40e_vsi_control_rx(struct i40e_vsi *vsi, bool enable)
3894{
3895 struct i40e_pf *pf = vsi->back;
3896 struct i40e_hw *hw = &pf->hw;
Neerav Parikh23527302014-06-03 23:50:15 +00003897 int i, j, pf_q, ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003898 u32 rx_reg;
3899
3900 pf_q = vsi->base_queue;
3901 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
Mitch Williams6c5ef622014-02-20 19:29:16 -08003902 for (j = 0; j < 50; j++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003903 rx_reg = rd32(hw, I40E_QRX_ENA(pf_q));
Mitch Williams6c5ef622014-02-20 19:29:16 -08003904 if (((rx_reg >> I40E_QRX_ENA_QENA_REQ_SHIFT) & 1) ==
3905 ((rx_reg >> I40E_QRX_ENA_QENA_STAT_SHIFT) & 1))
3906 break;
3907 usleep_range(1000, 2000);
3908 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003909
Catherine Sullivan7c122002014-03-14 07:32:29 +00003910 /* Skip if the queue is already in the requested state */
3911 if (enable == !!(rx_reg & I40E_QRX_ENA_QENA_STAT_MASK))
3912 continue;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003913
3914 /* turn on/off the queue */
3915 if (enable)
Mitch Williams6c5ef622014-02-20 19:29:16 -08003916 rx_reg |= I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003917 else
Mitch Williams6c5ef622014-02-20 19:29:16 -08003918 rx_reg &= ~I40E_QRX_ENA_QENA_REQ_MASK;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003919 wr32(hw, I40E_QRX_ENA(pf_q), rx_reg);
3920
3921 /* wait for the change to finish */
Neerav Parikh23527302014-06-03 23:50:15 +00003922 ret = i40e_pf_rxq_wait(pf, pf_q, enable);
3923 if (ret) {
3924 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04003925 "VSI seid %d Rx ring %d %sable timeout\n",
3926 vsi->seid, pf_q, (enable ? "en" : "dis"));
Neerav Parikh23527302014-06-03 23:50:15 +00003927 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003928 }
3929 }
3930
Neerav Parikh23527302014-06-03 23:50:15 +00003931 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003932}
3933
3934/**
3935 * i40e_vsi_control_rings - Start or stop a VSI's rings
3936 * @vsi: the VSI being configured
3937 * @enable: start or stop the rings
3938 **/
Mitch Williamsfc18eaa2013-11-28 06:39:27 +00003939int i40e_vsi_control_rings(struct i40e_vsi *vsi, bool request)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003940{
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003941 int ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003942
3943 /* do rx first for enable and last for disable */
3944 if (request) {
3945 ret = i40e_vsi_control_rx(vsi, request);
3946 if (ret)
3947 return ret;
3948 ret = i40e_vsi_control_tx(vsi, request);
3949 } else {
Anjali Singhai Jain3b867b22013-12-21 05:44:44 +00003950 /* Ignore return value, we need to shutdown whatever we can */
3951 i40e_vsi_control_tx(vsi, request);
3952 i40e_vsi_control_rx(vsi, request);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003953 }
3954
3955 return ret;
3956}
3957
3958/**
3959 * i40e_vsi_free_irq - Free the irq association with the OS
3960 * @vsi: the VSI being configured
3961 **/
3962static void i40e_vsi_free_irq(struct i40e_vsi *vsi)
3963{
3964 struct i40e_pf *pf = vsi->back;
3965 struct i40e_hw *hw = &pf->hw;
3966 int base = vsi->base_vector;
3967 u32 val, qp;
3968 int i;
3969
3970 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
3971 if (!vsi->q_vectors)
3972 return;
3973
Shannon Nelson63741842014-04-23 04:50:16 +00003974 if (!vsi->irqs_ready)
3975 return;
3976
3977 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003978 for (i = 0; i < vsi->num_q_vectors; i++) {
3979 u16 vector = i + base;
3980
3981 /* free only the irqs that were actually requested */
Shannon Nelson78681b12013-11-28 06:39:36 +00003982 if (!vsi->q_vectors[i] ||
3983 !vsi->q_vectors[i]->num_ringpairs)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003984 continue;
3985
3986 /* clear the affinity_mask in the IRQ descriptor */
3987 irq_set_affinity_hint(pf->msix_entries[vector].vector,
3988 NULL);
3989 free_irq(pf->msix_entries[vector].vector,
Alexander Duyck493fb302013-09-28 07:01:44 +00003990 vsi->q_vectors[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00003991
3992 /* Tear down the interrupt queue link list
3993 *
3994 * We know that they come in pairs and always
3995 * the Rx first, then the Tx. To clear the
3996 * link list, stick the EOL value into the
3997 * next_q field of the registers.
3998 */
3999 val = rd32(hw, I40E_PFINT_LNKLSTN(vector - 1));
4000 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4001 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4002 val |= I40E_QUEUE_END_OF_LIST
4003 << I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4004 wr32(hw, I40E_PFINT_LNKLSTN(vector - 1), val);
4005
4006 while (qp != I40E_QUEUE_END_OF_LIST) {
4007 u32 next;
4008
4009 val = rd32(hw, I40E_QINT_RQCTL(qp));
4010
4011 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4012 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4013 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4014 I40E_QINT_RQCTL_INTEVENT_MASK);
4015
4016 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4017 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4018
4019 wr32(hw, I40E_QINT_RQCTL(qp), val);
4020
4021 val = rd32(hw, I40E_QINT_TQCTL(qp));
4022
4023 next = (val & I40E_QINT_TQCTL_NEXTQ_INDX_MASK)
4024 >> I40E_QINT_TQCTL_NEXTQ_INDX_SHIFT;
4025
4026 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4027 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4028 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4029 I40E_QINT_TQCTL_INTEVENT_MASK);
4030
4031 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4032 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4033
4034 wr32(hw, I40E_QINT_TQCTL(qp), val);
4035 qp = next;
4036 }
4037 }
4038 } else {
4039 free_irq(pf->pdev->irq, pf);
4040
4041 val = rd32(hw, I40E_PFINT_LNKLST0);
4042 qp = (val & I40E_PFINT_LNKLSTN_FIRSTQ_INDX_MASK)
4043 >> I40E_PFINT_LNKLSTN_FIRSTQ_INDX_SHIFT;
4044 val |= I40E_QUEUE_END_OF_LIST
4045 << I40E_PFINT_LNKLST0_FIRSTQ_INDX_SHIFT;
4046 wr32(hw, I40E_PFINT_LNKLST0, val);
4047
4048 val = rd32(hw, I40E_QINT_RQCTL(qp));
4049 val &= ~(I40E_QINT_RQCTL_MSIX_INDX_MASK |
4050 I40E_QINT_RQCTL_MSIX0_INDX_MASK |
4051 I40E_QINT_RQCTL_CAUSE_ENA_MASK |
4052 I40E_QINT_RQCTL_INTEVENT_MASK);
4053
4054 val |= (I40E_QINT_RQCTL_ITR_INDX_MASK |
4055 I40E_QINT_RQCTL_NEXTQ_INDX_MASK);
4056
4057 wr32(hw, I40E_QINT_RQCTL(qp), val);
4058
4059 val = rd32(hw, I40E_QINT_TQCTL(qp));
4060
4061 val &= ~(I40E_QINT_TQCTL_MSIX_INDX_MASK |
4062 I40E_QINT_TQCTL_MSIX0_INDX_MASK |
4063 I40E_QINT_TQCTL_CAUSE_ENA_MASK |
4064 I40E_QINT_TQCTL_INTEVENT_MASK);
4065
4066 val |= (I40E_QINT_TQCTL_ITR_INDX_MASK |
4067 I40E_QINT_TQCTL_NEXTQ_INDX_MASK);
4068
4069 wr32(hw, I40E_QINT_TQCTL(qp), val);
4070 }
4071}
4072
4073/**
Alexander Duyck493fb302013-09-28 07:01:44 +00004074 * i40e_free_q_vector - Free memory allocated for specific interrupt vector
4075 * @vsi: the VSI being configured
4076 * @v_idx: Index of vector to be freed
4077 *
4078 * This function frees the memory allocated to the q_vector. In addition if
4079 * NAPI is enabled it will delete any references to the NAPI struct prior
4080 * to freeing the q_vector.
4081 **/
4082static void i40e_free_q_vector(struct i40e_vsi *vsi, int v_idx)
4083{
4084 struct i40e_q_vector *q_vector = vsi->q_vectors[v_idx];
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004085 struct i40e_ring *ring;
Alexander Duyck493fb302013-09-28 07:01:44 +00004086
4087 if (!q_vector)
4088 return;
4089
4090 /* disassociate q_vector from rings */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00004091 i40e_for_each_ring(ring, q_vector->tx)
4092 ring->q_vector = NULL;
4093
4094 i40e_for_each_ring(ring, q_vector->rx)
4095 ring->q_vector = NULL;
Alexander Duyck493fb302013-09-28 07:01:44 +00004096
4097 /* only VSI w/ an associated netdev is set up w/ NAPI */
4098 if (vsi->netdev)
4099 netif_napi_del(&q_vector->napi);
4100
4101 vsi->q_vectors[v_idx] = NULL;
4102
4103 kfree_rcu(q_vector, rcu);
4104}
4105
4106/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004107 * i40e_vsi_free_q_vectors - Free memory allocated for interrupt vectors
4108 * @vsi: the VSI being un-configured
4109 *
4110 * This frees the memory allocated to the q_vectors and
4111 * deletes references to the NAPI struct.
4112 **/
4113static void i40e_vsi_free_q_vectors(struct i40e_vsi *vsi)
4114{
4115 int v_idx;
4116
Alexander Duyck493fb302013-09-28 07:01:44 +00004117 for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++)
4118 i40e_free_q_vector(vsi, v_idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004119}
4120
4121/**
4122 * i40e_reset_interrupt_capability - Disable interrupt setup in OS
4123 * @pf: board private structure
4124 **/
4125static void i40e_reset_interrupt_capability(struct i40e_pf *pf)
4126{
4127 /* If we're in Legacy mode, the interrupt was cleaned in vsi_close */
4128 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4129 pci_disable_msix(pf->pdev);
4130 kfree(pf->msix_entries);
4131 pf->msix_entries = NULL;
Shannon Nelson3b444392015-02-26 16:15:57 +00004132 kfree(pf->irq_pile);
4133 pf->irq_pile = NULL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004134 } else if (pf->flags & I40E_FLAG_MSI_ENABLED) {
4135 pci_disable_msi(pf->pdev);
4136 }
4137 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED);
4138}
4139
4140/**
4141 * i40e_clear_interrupt_scheme - Clear the current interrupt scheme settings
4142 * @pf: board private structure
4143 *
4144 * We go through and clear interrupt specific resources and reset the structure
4145 * to pre-load conditions
4146 **/
4147static void i40e_clear_interrupt_scheme(struct i40e_pf *pf)
4148{
4149 int i;
4150
Shannon Nelsone1477582015-02-21 06:44:33 +00004151 i40e_stop_misc_vector(pf);
4152 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
4153 synchronize_irq(pf->msix_entries[0].vector);
4154 free_irq(pf->msix_entries[0].vector, pf);
4155 }
4156
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004157 i40e_put_lump(pf->irq_pile, 0, I40E_PILE_VALID_BIT-1);
Mitch Williams505682c2014-05-20 08:01:37 +00004158 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004159 if (pf->vsi[i])
4160 i40e_vsi_free_q_vectors(pf->vsi[i]);
4161 i40e_reset_interrupt_capability(pf);
4162}
4163
4164/**
4165 * i40e_napi_enable_all - Enable NAPI for all q_vectors in the VSI
4166 * @vsi: the VSI being configured
4167 **/
4168static void i40e_napi_enable_all(struct i40e_vsi *vsi)
4169{
4170 int q_idx;
4171
4172 if (!vsi->netdev)
4173 return;
4174
4175 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004176 napi_enable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004177}
4178
4179/**
4180 * i40e_napi_disable_all - Disable NAPI for all q_vectors in the VSI
4181 * @vsi: the VSI being configured
4182 **/
4183static void i40e_napi_disable_all(struct i40e_vsi *vsi)
4184{
4185 int q_idx;
4186
4187 if (!vsi->netdev)
4188 return;
4189
4190 for (q_idx = 0; q_idx < vsi->num_q_vectors; q_idx++)
Alexander Duyck493fb302013-09-28 07:01:44 +00004191 napi_disable(&vsi->q_vectors[q_idx]->napi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004192}
4193
4194/**
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004195 * i40e_vsi_close - Shut down a VSI
4196 * @vsi: the vsi to be quelled
4197 **/
4198static void i40e_vsi_close(struct i40e_vsi *vsi)
4199{
4200 if (!test_and_set_bit(__I40E_DOWN, &vsi->state))
4201 i40e_down(vsi);
4202 i40e_vsi_free_irq(vsi);
4203 i40e_vsi_free_tx_resources(vsi);
4204 i40e_vsi_free_rx_resources(vsi);
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04004205 vsi->current_netdev_flags = 0;
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004206}
4207
4208/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004209 * i40e_quiesce_vsi - Pause a given VSI
4210 * @vsi: the VSI being paused
4211 **/
4212static void i40e_quiesce_vsi(struct i40e_vsi *vsi)
4213{
4214 if (test_bit(__I40E_DOWN, &vsi->state))
4215 return;
4216
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004217 /* No need to disable FCoE VSI when Tx suspended */
4218 if ((test_bit(__I40E_PORT_TX_SUSPENDED, &vsi->back->state)) &&
4219 vsi->type == I40E_VSI_FCOE) {
4220 dev_dbg(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004221 "VSI seid %d skipping FCoE VSI disable\n", vsi->seid);
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004222 return;
4223 }
4224
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004225 set_bit(__I40E_NEEDS_RESTART, &vsi->state);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004226 if (vsi->netdev && netif_running(vsi->netdev))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004227 vsi->netdev->netdev_ops->ndo_stop(vsi->netdev);
Jesse Brandeburg6995b362015-08-28 17:55:54 -04004228 else
Shannon Nelson90ef8d42014-03-14 07:32:26 +00004229 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004230}
4231
4232/**
4233 * i40e_unquiesce_vsi - Resume a given VSI
4234 * @vsi: the VSI being resumed
4235 **/
4236static void i40e_unquiesce_vsi(struct i40e_vsi *vsi)
4237{
4238 if (!test_bit(__I40E_NEEDS_RESTART, &vsi->state))
4239 return;
4240
4241 clear_bit(__I40E_NEEDS_RESTART, &vsi->state);
4242 if (vsi->netdev && netif_running(vsi->netdev))
4243 vsi->netdev->netdev_ops->ndo_open(vsi->netdev);
4244 else
Shannon Nelson8276f752014-03-14 07:32:27 +00004245 i40e_vsi_open(vsi); /* this clears the DOWN bit */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004246}
4247
4248/**
4249 * i40e_pf_quiesce_all_vsi - Pause all VSIs on a PF
4250 * @pf: the PF
4251 **/
4252static void i40e_pf_quiesce_all_vsi(struct i40e_pf *pf)
4253{
4254 int v;
4255
Mitch Williams505682c2014-05-20 08:01:37 +00004256 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004257 if (pf->vsi[v])
4258 i40e_quiesce_vsi(pf->vsi[v]);
4259 }
4260}
4261
4262/**
4263 * i40e_pf_unquiesce_all_vsi - Resume all VSIs on a PF
4264 * @pf: the PF
4265 **/
4266static void i40e_pf_unquiesce_all_vsi(struct i40e_pf *pf)
4267{
4268 int v;
4269
Mitch Williams505682c2014-05-20 08:01:37 +00004270 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004271 if (pf->vsi[v])
4272 i40e_unquiesce_vsi(pf->vsi[v]);
4273 }
4274}
4275
Neerav Parikh69129dc2014-11-12 00:18:46 +00004276#ifdef CONFIG_I40E_DCB
4277/**
4278 * i40e_vsi_wait_txq_disabled - Wait for VSI's queues to be disabled
4279 * @vsi: the VSI being configured
4280 *
4281 * This function waits for the given VSI's Tx queues to be disabled.
4282 **/
4283static int i40e_vsi_wait_txq_disabled(struct i40e_vsi *vsi)
4284{
4285 struct i40e_pf *pf = vsi->back;
4286 int i, pf_q, ret;
4287
4288 pf_q = vsi->base_queue;
4289 for (i = 0; i < vsi->num_queue_pairs; i++, pf_q++) {
4290 /* Check and wait for the disable status of the queue */
4291 ret = i40e_pf_txq_wait(pf, pf_q, false);
4292 if (ret) {
4293 dev_info(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04004294 "VSI seid %d Tx ring %d disable timeout\n",
4295 vsi->seid, pf_q);
Neerav Parikh69129dc2014-11-12 00:18:46 +00004296 return ret;
4297 }
4298 }
4299
4300 return 0;
4301}
4302
4303/**
4304 * i40e_pf_wait_txq_disabled - Wait for all queues of PF VSIs to be disabled
4305 * @pf: the PF
4306 *
4307 * This function waits for the Tx queues to be in disabled state for all the
4308 * VSIs that are managed by this PF.
4309 **/
4310static int i40e_pf_wait_txq_disabled(struct i40e_pf *pf)
4311{
4312 int v, ret = 0;
4313
4314 for (v = 0; v < pf->hw.func_caps.num_vsis; v++) {
Neerav Parikhd341b7a2014-11-12 00:18:51 +00004315 /* No need to wait for FCoE VSI queues */
4316 if (pf->vsi[v] && pf->vsi[v]->type != I40E_VSI_FCOE) {
Neerav Parikh69129dc2014-11-12 00:18:46 +00004317 ret = i40e_vsi_wait_txq_disabled(pf->vsi[v]);
4318 if (ret)
4319 break;
4320 }
4321 }
4322
4323 return ret;
4324}
4325
4326#endif
Kiran Patilb03a8c12015-09-24 18:13:15 -04004327
4328/**
4329 * i40e_detect_recover_hung_queue - Function to detect and recover hung_queue
4330 * @q_idx: TX queue number
4331 * @vsi: Pointer to VSI struct
4332 *
4333 * This function checks specified queue for given VSI. Detects hung condition.
4334 * Sets hung bit since it is two step process. Before next run of service task
4335 * if napi_poll runs, it reset 'hung' bit for respective q_vector. If not,
4336 * hung condition remain unchanged and during subsequent run, this function
4337 * issues SW interrupt to recover from hung condition.
4338 **/
4339static void i40e_detect_recover_hung_queue(int q_idx, struct i40e_vsi *vsi)
4340{
4341 struct i40e_ring *tx_ring = NULL;
4342 struct i40e_pf *pf;
4343 u32 head, val, tx_pending;
4344 int i;
4345
4346 pf = vsi->back;
4347
4348 /* now that we have an index, find the tx_ring struct */
4349 for (i = 0; i < vsi->num_queue_pairs; i++) {
4350 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc) {
4351 if (q_idx == vsi->tx_rings[i]->queue_index) {
4352 tx_ring = vsi->tx_rings[i];
4353 break;
4354 }
4355 }
4356 }
4357
4358 if (!tx_ring)
4359 return;
4360
4361 /* Read interrupt register */
4362 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
4363 val = rd32(&pf->hw,
4364 I40E_PFINT_DYN_CTLN(tx_ring->q_vector->v_idx +
4365 tx_ring->vsi->base_vector - 1));
4366 else
4367 val = rd32(&pf->hw, I40E_PFINT_DYN_CTL0);
4368
4369 head = i40e_get_head(tx_ring);
4370
4371 tx_pending = i40e_get_tx_pending(tx_ring);
4372
4373 /* Interrupts are disabled and TX pending is non-zero,
4374 * trigger the SW interrupt (don't wait). Worst case
4375 * there will be one extra interrupt which may result
4376 * into not cleaning any queues because queues are cleaned.
4377 */
4378 if (tx_pending && (!(val & I40E_PFINT_DYN_CTLN_INTENA_MASK)))
4379 i40e_force_wb(vsi, tx_ring->q_vector);
4380}
4381
4382/**
4383 * i40e_detect_recover_hung - Function to detect and recover hung_queues
4384 * @pf: pointer to PF struct
4385 *
4386 * LAN VSI has netdev and netdev has TX queues. This function is to check
4387 * each of those TX queues if they are hung, trigger recovery by issuing
4388 * SW interrupt.
4389 **/
4390static void i40e_detect_recover_hung(struct i40e_pf *pf)
4391{
4392 struct net_device *netdev;
4393 struct i40e_vsi *vsi;
4394 int i;
4395
4396 /* Only for LAN VSI */
4397 vsi = pf->vsi[pf->lan_vsi];
4398
4399 if (!vsi)
4400 return;
4401
4402 /* Make sure, VSI state is not DOWN/RECOVERY_PENDING */
4403 if (test_bit(__I40E_DOWN, &vsi->back->state) ||
4404 test_bit(__I40E_RESET_RECOVERY_PENDING, &vsi->back->state))
4405 return;
4406
4407 /* Make sure type is MAIN VSI */
4408 if (vsi->type != I40E_VSI_MAIN)
4409 return;
4410
4411 netdev = vsi->netdev;
4412 if (!netdev)
4413 return;
4414
4415 /* Bail out if netif_carrier is not OK */
4416 if (!netif_carrier_ok(netdev))
4417 return;
4418
4419 /* Go thru' TX queues for netdev */
4420 for (i = 0; i < netdev->num_tx_queues; i++) {
4421 struct netdev_queue *q;
4422
4423 q = netdev_get_tx_queue(netdev, i);
4424 if (q)
4425 i40e_detect_recover_hung_queue(i, vsi);
4426 }
4427}
4428
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004429/**
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004430 * i40e_get_iscsi_tc_map - Return TC map for iSCSI APP
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00004431 * @pf: pointer to PF
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004432 *
4433 * Get TC map for ISCSI PF type that will include iSCSI TC
4434 * and LAN TC.
4435 **/
4436static u8 i40e_get_iscsi_tc_map(struct i40e_pf *pf)
4437{
4438 struct i40e_dcb_app_priority_table app;
4439 struct i40e_hw *hw = &pf->hw;
4440 u8 enabled_tc = 1; /* TC0 is always enabled */
4441 u8 tc, i;
4442 /* Get the iSCSI APP TLV */
4443 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4444
4445 for (i = 0; i < dcbcfg->numapps; i++) {
4446 app = dcbcfg->app[i];
4447 if (app.selector == I40E_APP_SEL_TCPIP &&
4448 app.protocolid == I40E_APP_PROTOID_ISCSI) {
4449 tc = dcbcfg->etscfg.prioritytable[app.priority];
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004450 enabled_tc |= BIT_ULL(tc);
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004451 break;
4452 }
4453 }
4454
4455 return enabled_tc;
4456}
4457
4458/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004459 * i40e_dcb_get_num_tc - Get the number of TCs from DCBx config
4460 * @dcbcfg: the corresponding DCBx configuration structure
4461 *
4462 * Return the number of TCs from given DCBx configuration
4463 **/
4464static u8 i40e_dcb_get_num_tc(struct i40e_dcbx_config *dcbcfg)
4465{
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004466 u8 num_tc = 0;
4467 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004468
4469 /* Scan the ETS Config Priority Table to find
4470 * traffic class enabled for a given priority
4471 * and use the traffic class index to get the
4472 * number of traffic classes enabled
4473 */
4474 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4475 if (dcbcfg->etscfg.prioritytable[i] > num_tc)
4476 num_tc = dcbcfg->etscfg.prioritytable[i];
4477 }
4478
4479 /* Traffic class index starts from zero so
4480 * increment to return the actual count
4481 */
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004482 return num_tc + 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004483}
4484
4485/**
4486 * i40e_dcb_get_enabled_tc - Get enabled traffic classes
4487 * @dcbcfg: the corresponding DCBx configuration structure
4488 *
4489 * Query the current DCB configuration and return the number of
4490 * traffic classes enabled from the given DCBX config
4491 **/
4492static u8 i40e_dcb_get_enabled_tc(struct i40e_dcbx_config *dcbcfg)
4493{
4494 u8 num_tc = i40e_dcb_get_num_tc(dcbcfg);
4495 u8 enabled_tc = 1;
4496 u8 i;
4497
4498 for (i = 0; i < num_tc; i++)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004499 enabled_tc |= BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004500
4501 return enabled_tc;
4502}
4503
4504/**
4505 * i40e_pf_get_num_tc - Get enabled traffic classes for PF
4506 * @pf: PF being queried
4507 *
4508 * Return number of traffic classes enabled for the given PF
4509 **/
4510static u8 i40e_pf_get_num_tc(struct i40e_pf *pf)
4511{
4512 struct i40e_hw *hw = &pf->hw;
4513 u8 i, enabled_tc;
4514 u8 num_tc = 0;
4515 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4516
4517 /* If DCB is not enabled then always in single TC */
4518 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4519 return 1;
4520
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004521 /* SFP mode will be enabled for all TCs on port */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004522 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4523 return i40e_dcb_get_num_tc(dcbcfg);
4524
4525 /* MFP mode return count of enabled TCs for this PF */
4526 if (pf->hw.func_caps.iscsi)
4527 enabled_tc = i40e_get_iscsi_tc_map(pf);
4528 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004529 return 1; /* Only TC0 */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004530
4531 /* At least have TC0 */
4532 enabled_tc = (enabled_tc ? enabled_tc : 0x1);
4533 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004534 if (enabled_tc & BIT_ULL(i))
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004535 num_tc++;
4536 }
4537 return num_tc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004538}
4539
4540/**
4541 * i40e_pf_get_default_tc - Get bitmap for first enabled TC
4542 * @pf: PF being queried
4543 *
4544 * Return a bitmap for first enabled traffic class for this PF.
4545 **/
4546static u8 i40e_pf_get_default_tc(struct i40e_pf *pf)
4547{
4548 u8 enabled_tc = pf->hw.func_caps.enabled_tcmap;
4549 u8 i = 0;
4550
4551 if (!enabled_tc)
4552 return 0x1; /* TC0 */
4553
4554 /* Find the first enabled TC */
4555 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004556 if (enabled_tc & BIT_ULL(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004557 break;
4558 }
4559
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004560 return BIT(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004561}
4562
4563/**
4564 * i40e_pf_get_pf_tc_map - Get bitmap for enabled traffic classes
4565 * @pf: PF being queried
4566 *
4567 * Return a bitmap for enabled traffic classes for this PF.
4568 **/
4569static u8 i40e_pf_get_tc_map(struct i40e_pf *pf)
4570{
4571 /* If DCB is not enabled for this PF then just return default TC */
4572 if (!(pf->flags & I40E_FLAG_DCB_ENABLED))
4573 return i40e_pf_get_default_tc(pf);
4574
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004575 /* SFP mode we want PF to be enabled for all TCs */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004576 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
4577 return i40e_dcb_get_enabled_tc(&pf->hw.local_dcbx_config);
4578
Neerav Parikhfc51de92015-02-24 06:58:53 +00004579 /* MFP enabled and iSCSI PF type */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00004580 if (pf->hw.func_caps.iscsi)
4581 return i40e_get_iscsi_tc_map(pf);
4582 else
Neerav Parikhfc51de92015-02-24 06:58:53 +00004583 return i40e_pf_get_default_tc(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004584}
4585
4586/**
4587 * i40e_vsi_get_bw_info - Query VSI BW Information
4588 * @vsi: the VSI being queried
4589 *
4590 * Returns 0 on success, negative value on failure
4591 **/
4592static int i40e_vsi_get_bw_info(struct i40e_vsi *vsi)
4593{
4594 struct i40e_aqc_query_vsi_ets_sla_config_resp bw_ets_config = {0};
4595 struct i40e_aqc_query_vsi_bw_config_resp bw_config = {0};
4596 struct i40e_pf *pf = vsi->back;
4597 struct i40e_hw *hw = &pf->hw;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004598 i40e_status ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004599 u32 tc_bw_max;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004600 int i;
4601
4602 /* Get the VSI level BW configuration */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004603 ret = i40e_aq_query_vsi_bw_config(hw, vsi->seid, &bw_config, NULL);
4604 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004605 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004606 "couldn't get PF vsi bw config, err %s aq_err %s\n",
4607 i40e_stat_str(&pf->hw, ret),
4608 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004609 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004610 }
4611
4612 /* Get the VSI level BW configuration per TC */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004613 ret = i40e_aq_query_vsi_ets_sla_config(hw, vsi->seid, &bw_ets_config,
4614 NULL);
4615 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004616 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004617 "couldn't get PF vsi ets bw config, err %s aq_err %s\n",
4618 i40e_stat_str(&pf->hw, ret),
4619 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004620 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004621 }
4622
4623 if (bw_config.tc_valid_bits != bw_ets_config.tc_valid_bits) {
4624 dev_info(&pf->pdev->dev,
4625 "Enabled TCs mismatch from querying VSI BW info 0x%08x 0x%08x\n",
4626 bw_config.tc_valid_bits,
4627 bw_ets_config.tc_valid_bits);
4628 /* Still continuing */
4629 }
4630
4631 vsi->bw_limit = le16_to_cpu(bw_config.port_bw_limit);
4632 vsi->bw_max_quanta = bw_config.max_bw;
4633 tc_bw_max = le16_to_cpu(bw_ets_config.tc_bw_max[0]) |
4634 (le16_to_cpu(bw_ets_config.tc_bw_max[1]) << 16);
4635 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4636 vsi->bw_ets_share_credits[i] = bw_ets_config.share_credits[i];
4637 vsi->bw_ets_limit_credits[i] =
4638 le16_to_cpu(bw_ets_config.credits[i]);
4639 /* 3 bits out of 4 for each TC */
4640 vsi->bw_ets_max_quanta[i] = (u8)((tc_bw_max >> (i*4)) & 0x7);
4641 }
Jesse Brandeburg078b5872013-09-25 23:41:14 +00004642
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004643 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004644}
4645
4646/**
4647 * i40e_vsi_configure_bw_alloc - Configure VSI BW allocation per TC
4648 * @vsi: the VSI being configured
4649 * @enabled_tc: TC bitmap
4650 * @bw_credits: BW shared credits per TC
4651 *
4652 * Returns 0 on success, negative value on failure
4653 **/
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004654static int i40e_vsi_configure_bw_alloc(struct i40e_vsi *vsi, u8 enabled_tc,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004655 u8 *bw_share)
4656{
4657 struct i40e_aqc_configure_vsi_tc_bw_data bw_data;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004658 i40e_status ret;
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004659 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004660
4661 bw_data.tc_valid_bits = enabled_tc;
4662 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4663 bw_data.tc_bw_credits[i] = bw_share[i];
4664
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004665 ret = i40e_aq_config_vsi_tc_bw(&vsi->back->hw, vsi->seid, &bw_data,
4666 NULL);
4667 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004668 dev_info(&vsi->back->pdev->dev,
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00004669 "AQ command Config VSI BW allocation per TC failed = %d\n",
4670 vsi->back->hw.aq.asq_last_status);
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004671 return -EINVAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004672 }
4673
4674 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++)
4675 vsi->info.qs_handle[i] = bw_data.qs_handles[i];
4676
Jesse Brandeburgdcae29b2013-09-13 08:23:20 +00004677 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004678}
4679
4680/**
4681 * i40e_vsi_config_netdev_tc - Setup the netdev TC configuration
4682 * @vsi: the VSI being configured
4683 * @enabled_tc: TC map to be enabled
4684 *
4685 **/
4686static void i40e_vsi_config_netdev_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4687{
4688 struct net_device *netdev = vsi->netdev;
4689 struct i40e_pf *pf = vsi->back;
4690 struct i40e_hw *hw = &pf->hw;
4691 u8 netdev_tc = 0;
4692 int i;
4693 struct i40e_dcbx_config *dcbcfg = &hw->local_dcbx_config;
4694
4695 if (!netdev)
4696 return;
4697
4698 if (!enabled_tc) {
4699 netdev_reset_tc(netdev);
4700 return;
4701 }
4702
4703 /* Set up actual enabled TCs on the VSI */
4704 if (netdev_set_num_tc(netdev, vsi->tc_config.numtc))
4705 return;
4706
4707 /* set per TC queues for the VSI */
4708 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
4709 /* Only set TC queues for enabled tcs
4710 *
4711 * e.g. For a VSI that has TC0 and TC3 enabled the
4712 * enabled_tc bitmap would be 0x00001001; the driver
4713 * will set the numtc for netdev as 2 that will be
4714 * referenced by the netdev layer as TC 0 and 1.
4715 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004716 if (vsi->tc_config.enabled_tc & BIT_ULL(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004717 netdev_set_tc_queue(netdev,
4718 vsi->tc_config.tc_info[i].netdev_tc,
4719 vsi->tc_config.tc_info[i].qcount,
4720 vsi->tc_config.tc_info[i].qoffset);
4721 }
4722
4723 /* Assign UP2TC map for the VSI */
4724 for (i = 0; i < I40E_MAX_USER_PRIORITY; i++) {
4725 /* Get the actual TC# for the UP */
4726 u8 ets_tc = dcbcfg->etscfg.prioritytable[i];
4727 /* Get the mapped netdev TC# for the UP */
4728 netdev_tc = vsi->tc_config.tc_info[ets_tc].netdev_tc;
4729 netdev_set_prio_tc_map(netdev, i, netdev_tc);
4730 }
4731}
4732
4733/**
4734 * i40e_vsi_update_queue_map - Update our copy of VSi info with new queue map
4735 * @vsi: the VSI being configured
4736 * @ctxt: the ctxt buffer returned from AQ VSI update param command
4737 **/
4738static void i40e_vsi_update_queue_map(struct i40e_vsi *vsi,
4739 struct i40e_vsi_context *ctxt)
4740{
4741 /* copy just the sections touched not the entire info
4742 * since not all sections are valid as returned by
4743 * update vsi params
4744 */
4745 vsi->info.mapping_flags = ctxt->info.mapping_flags;
4746 memcpy(&vsi->info.queue_mapping,
4747 &ctxt->info.queue_mapping, sizeof(vsi->info.queue_mapping));
4748 memcpy(&vsi->info.tc_mapping, ctxt->info.tc_mapping,
4749 sizeof(vsi->info.tc_mapping));
4750}
4751
4752/**
4753 * i40e_vsi_config_tc - Configure VSI Tx Scheduler for given TC map
4754 * @vsi: VSI to be configured
4755 * @enabled_tc: TC bitmap
4756 *
4757 * This configures a particular VSI for TCs that are mapped to the
4758 * given TC bitmap. It uses default bandwidth share for TCs across
4759 * VSIs to configure TC for a particular VSI.
4760 *
4761 * NOTE:
4762 * It is expected that the VSI queues have been quisced before calling
4763 * this function.
4764 **/
4765static int i40e_vsi_config_tc(struct i40e_vsi *vsi, u8 enabled_tc)
4766{
4767 u8 bw_share[I40E_MAX_TRAFFIC_CLASS] = {0};
4768 struct i40e_vsi_context ctxt;
4769 int ret = 0;
4770 int i;
4771
4772 /* Check if enabled_tc is same as existing or new TCs */
4773 if (vsi->tc_config.enabled_tc == enabled_tc)
4774 return ret;
4775
4776 /* Enable ETS TCs with equal BW Share for now across all VSIs */
4777 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004778 if (enabled_tc & BIT_ULL(i))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004779 bw_share[i] = 1;
4780 }
4781
4782 ret = i40e_vsi_configure_bw_alloc(vsi, enabled_tc, bw_share);
4783 if (ret) {
4784 dev_info(&vsi->back->pdev->dev,
4785 "Failed configuring TC map %d for VSI %d\n",
4786 enabled_tc, vsi->seid);
4787 goto out;
4788 }
4789
4790 /* Update Queue Pairs Mapping for currently enabled UPs */
4791 ctxt.seid = vsi->seid;
4792 ctxt.pf_num = vsi->back->hw.pf_id;
4793 ctxt.vf_num = 0;
4794 ctxt.uplink_seid = vsi->uplink_seid;
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07004795 ctxt.info = vsi->info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004796 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
4797
4798 /* Update the VSI after updating the VSI queue-mapping information */
4799 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
4800 if (ret) {
4801 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004802 "Update vsi tc config failed, err %s aq_err %s\n",
4803 i40e_stat_str(&vsi->back->hw, ret),
4804 i40e_aq_str(&vsi->back->hw,
4805 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004806 goto out;
4807 }
4808 /* update the local VSI info with updated queue map */
4809 i40e_vsi_update_queue_map(vsi, &ctxt);
4810 vsi->info.valid_sections = 0;
4811
4812 /* Update current VSI BW information */
4813 ret = i40e_vsi_get_bw_info(vsi);
4814 if (ret) {
4815 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004816 "Failed updating vsi bw info, err %s aq_err %s\n",
4817 i40e_stat_str(&vsi->back->hw, ret),
4818 i40e_aq_str(&vsi->back->hw,
4819 vsi->back->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00004820 goto out;
4821 }
4822
4823 /* Update the netdev TC setup */
4824 i40e_vsi_config_netdev_tc(vsi, enabled_tc);
4825out:
4826 return ret;
4827}
4828
4829/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004830 * i40e_veb_config_tc - Configure TCs for given VEB
4831 * @veb: given VEB
4832 * @enabled_tc: TC bitmap
4833 *
4834 * Configures given TC bitmap for VEB (switching) element
4835 **/
4836int i40e_veb_config_tc(struct i40e_veb *veb, u8 enabled_tc)
4837{
4838 struct i40e_aqc_configure_switching_comp_bw_config_data bw_data = {0};
4839 struct i40e_pf *pf = veb->pf;
4840 int ret = 0;
4841 int i;
4842
4843 /* No TCs or already enabled TCs just return */
4844 if (!enabled_tc || veb->enabled_tc == enabled_tc)
4845 return ret;
4846
4847 bw_data.tc_valid_bits = enabled_tc;
4848 /* bw_data.absolute_credits is not set (relative) */
4849
4850 /* Enable ETS TCs with equal BW Share for now */
4851 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04004852 if (enabled_tc & BIT_ULL(i))
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004853 bw_data.tc_bw_share_credits[i] = 1;
4854 }
4855
4856 ret = i40e_aq_config_switch_comp_bw_config(&pf->hw, veb->seid,
4857 &bw_data, NULL);
4858 if (ret) {
4859 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004860 "VEB bw config failed, err %s aq_err %s\n",
4861 i40e_stat_str(&pf->hw, ret),
4862 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004863 goto out;
4864 }
4865
4866 /* Update the BW information */
4867 ret = i40e_veb_get_bw_info(veb);
4868 if (ret) {
4869 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004870 "Failed getting veb bw config, err %s aq_err %s\n",
4871 i40e_stat_str(&pf->hw, ret),
4872 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004873 }
4874
4875out:
4876 return ret;
4877}
4878
4879#ifdef CONFIG_I40E_DCB
4880/**
4881 * i40e_dcb_reconfigure - Reconfigure all VEBs and VSIs
4882 * @pf: PF struct
4883 *
4884 * Reconfigure VEB/VSIs on a given PF; it is assumed that
4885 * the caller would've quiesce all the VSIs before calling
4886 * this function
4887 **/
4888static void i40e_dcb_reconfigure(struct i40e_pf *pf)
4889{
4890 u8 tc_map = 0;
4891 int ret;
4892 u8 v;
4893
4894 /* Enable the TCs available on PF to all VEBs */
4895 tc_map = i40e_pf_get_tc_map(pf);
4896 for (v = 0; v < I40E_MAX_VEB; v++) {
4897 if (!pf->veb[v])
4898 continue;
4899 ret = i40e_veb_config_tc(pf->veb[v], tc_map);
4900 if (ret) {
4901 dev_info(&pf->pdev->dev,
4902 "Failed configuring TC for VEB seid=%d\n",
4903 pf->veb[v]->seid);
4904 /* Will try to configure as many components */
4905 }
4906 }
4907
4908 /* Update each VSI */
Mitch Williams505682c2014-05-20 08:01:37 +00004909 for (v = 0; v < pf->num_alloc_vsi; v++) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004910 if (!pf->vsi[v])
4911 continue;
4912
4913 /* - Enable all TCs for the LAN VSI
Vasu Dev38e00432014-08-01 13:27:03 -07004914#ifdef I40E_FCOE
4915 * - For FCoE VSI only enable the TC configured
4916 * as per the APP TLV
4917#endif
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004918 * - For all others keep them at TC0 for now
4919 */
4920 if (v == pf->lan_vsi)
4921 tc_map = i40e_pf_get_tc_map(pf);
4922 else
4923 tc_map = i40e_pf_get_default_tc(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07004924#ifdef I40E_FCOE
4925 if (pf->vsi[v]->type == I40E_VSI_FCOE)
4926 tc_map = i40e_get_fcoe_tc_map(pf);
4927#endif /* #ifdef I40E_FCOE */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004928
4929 ret = i40e_vsi_config_tc(pf->vsi[v], tc_map);
4930 if (ret) {
4931 dev_info(&pf->pdev->dev,
4932 "Failed configuring TC for VSI seid=%d\n",
4933 pf->vsi[v]->seid);
4934 /* Will try to configure as many components */
4935 } else {
Neerav Parikh0672a092014-04-01 07:11:47 +00004936 /* Re-configure VSI vectors based on updated TC map */
4937 i40e_vsi_map_rings_to_vectors(pf->vsi[v]);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004938 if (pf->vsi[v]->netdev)
4939 i40e_dcbnl_set_all(pf->vsi[v]);
4940 }
4941 }
4942}
4943
4944/**
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004945 * i40e_resume_port_tx - Resume port Tx
4946 * @pf: PF struct
4947 *
4948 * Resume a port's Tx and issue a PF reset in case of failure to
4949 * resume.
4950 **/
4951static int i40e_resume_port_tx(struct i40e_pf *pf)
4952{
4953 struct i40e_hw *hw = &pf->hw;
4954 int ret;
4955
4956 ret = i40e_aq_resume_port_tx(hw, NULL);
4957 if (ret) {
4958 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04004959 "Resume Port Tx failed, err %s aq_err %s\n",
4960 i40e_stat_str(&pf->hw, ret),
4961 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh2fd75f32014-11-12 00:18:20 +00004962 /* Schedule PF reset to recover */
4963 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
4964 i40e_service_event_schedule(pf);
4965 }
4966
4967 return ret;
4968}
4969
4970/**
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004971 * i40e_init_pf_dcb - Initialize DCB configuration
4972 * @pf: PF being configured
4973 *
4974 * Query the current DCB configuration and cache it
4975 * in the hardware structure
4976 **/
4977static int i40e_init_pf_dcb(struct i40e_pf *pf)
4978{
4979 struct i40e_hw *hw = &pf->hw;
4980 int err = 0;
4981
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00004982 /* Do not enable DCB for SW1 and SW2 images even if the FW is capable */
4983 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
4984 (pf->hw.aq.fw_maj_ver < 4))
4985 goto out;
4986
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08004987 /* Get the initial DCB configuration */
4988 err = i40e_init_dcb(hw);
4989 if (!err) {
4990 /* Device/Function is not DCBX capable */
4991 if ((!hw->func_caps.dcb) ||
4992 (hw->dcbx_status == I40E_DCBX_STATUS_DISABLED)) {
4993 dev_info(&pf->pdev->dev,
4994 "DCBX offload is not supported or is disabled for this PF.\n");
4995
4996 if (pf->flags & I40E_FLAG_MFP_ENABLED)
4997 goto out;
4998
4999 } else {
5000 /* When status is not DISABLED then DCBX in FW */
5001 pf->dcbx_cap = DCB_CAP_DCBX_LLD_MANAGED |
5002 DCB_CAP_DCBX_VER_IEEE;
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005003
5004 pf->flags |= I40E_FLAG_DCB_CAPABLE;
5005 /* Enable DCB tagging only when more than one TC */
5006 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
5007 pf->flags |= I40E_FLAG_DCB_ENABLED;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005008 dev_dbg(&pf->pdev->dev,
5009 "DCBX offload is supported for this PF.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005010 }
Neerav Parikh014269f2014-04-01 07:11:48 +00005011 } else {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00005012 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005013 "Query for DCB configuration failed, err %s aq_err %s\n",
5014 i40e_stat_str(&pf->hw, err),
5015 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005016 }
5017
5018out:
5019 return err;
5020}
5021#endif /* CONFIG_I40E_DCB */
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005022#define SPEED_SIZE 14
5023#define FC_SIZE 8
5024/**
5025 * i40e_print_link_message - print link up or down
5026 * @vsi: the VSI for which link needs a message
5027 */
Matt Jaredc156f852015-08-27 11:42:39 -04005028void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005029{
Shannon Nelsona9165492015-09-03 17:19:00 -04005030 char *speed = "Unknown";
5031 char *fc = "Unknown";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005032
Matt Jaredc156f852015-08-27 11:42:39 -04005033 if (vsi->current_isup == isup)
5034 return;
5035 vsi->current_isup = isup;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005036 if (!isup) {
5037 netdev_info(vsi->netdev, "NIC Link is Down\n");
5038 return;
5039 }
5040
Greg Rose148c2d82014-12-11 07:06:27 +00005041 /* Warn user if link speed on NPAR enabled partition is not at
5042 * least 10GB
5043 */
5044 if (vsi->back->hw.func_caps.npar_enable &&
5045 (vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_1GB ||
5046 vsi->back->hw.phy.link_info.link_speed == I40E_LINK_SPEED_100MB))
5047 netdev_warn(vsi->netdev,
5048 "The partition detected link speed that is less than 10Gbps\n");
5049
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005050 switch (vsi->back->hw.phy.link_info.link_speed) {
5051 case I40E_LINK_SPEED_40GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005052 speed = "40 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005053 break;
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005054 case I40E_LINK_SPEED_20GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005055 speed = "20 G";
Jesse Brandeburgae24b402015-03-27 00:12:09 -07005056 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005057 case I40E_LINK_SPEED_10GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005058 speed = "10 G";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005059 break;
5060 case I40E_LINK_SPEED_1GB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005061 speed = "1000 M";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005062 break;
Mitch Williams5960d332014-09-13 07:40:47 +00005063 case I40E_LINK_SPEED_100MB:
Shannon Nelsona9165492015-09-03 17:19:00 -04005064 speed = "100 M";
Mitch Williams5960d332014-09-13 07:40:47 +00005065 break;
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005066 default:
5067 break;
5068 }
5069
5070 switch (vsi->back->hw.fc.current_mode) {
5071 case I40E_FC_FULL:
Shannon Nelsona9165492015-09-03 17:19:00 -04005072 fc = "RX/TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005073 break;
5074 case I40E_FC_TX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005075 fc = "TX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005076 break;
5077 case I40E_FC_RX_PAUSE:
Shannon Nelsona9165492015-09-03 17:19:00 -04005078 fc = "RX";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005079 break;
5080 default:
Shannon Nelsona9165492015-09-03 17:19:00 -04005081 fc = "None";
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005082 break;
5083 }
5084
Shannon Nelsona9165492015-09-03 17:19:00 -04005085 netdev_info(vsi->netdev, "NIC Link is Up %sbps Full Duplex, Flow Control: %s\n",
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005086 speed, fc);
5087}
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005088
5089/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005090 * i40e_up_complete - Finish the last steps of bringing up a connection
5091 * @vsi: the VSI being configured
5092 **/
5093static int i40e_up_complete(struct i40e_vsi *vsi)
5094{
5095 struct i40e_pf *pf = vsi->back;
5096 int err;
5097
5098 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
5099 i40e_vsi_configure_msix(vsi);
5100 else
5101 i40e_configure_msi_and_legacy(vsi);
5102
5103 /* start rings */
5104 err = i40e_vsi_control_rings(vsi, true);
5105 if (err)
5106 return err;
5107
5108 clear_bit(__I40E_DOWN, &vsi->state);
5109 i40e_napi_enable_all(vsi);
5110 i40e_vsi_enable_irq(vsi);
5111
5112 if ((pf->hw.phy.link_info.link_info & I40E_AQ_LINK_UP) &&
5113 (vsi->netdev)) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005114 i40e_print_link_message(vsi, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005115 netif_tx_start_all_queues(vsi->netdev);
5116 netif_carrier_on(vsi->netdev);
Anjali Singhai6d779b42013-09-28 06:00:02 +00005117 } else if (vsi->netdev) {
Jesse Brandeburgcf05ed02014-04-23 04:50:12 +00005118 i40e_print_link_message(vsi, false);
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00005119 /* need to check for qualified module here*/
5120 if ((pf->hw.phy.link_info.link_info &
5121 I40E_AQ_MEDIA_AVAILABLE) &&
5122 (!(pf->hw.phy.link_info.an_info &
5123 I40E_AQ_QUALIFIED_MODULE)))
5124 netdev_err(vsi->netdev,
5125 "the driver failed to link because an unqualified module was detected.");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005126 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005127
5128 /* replay FDIR SB filters */
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005129 if (vsi->type == I40E_VSI_FDIR) {
5130 /* reset fd counters */
5131 pf->fd_add_err = pf->fd_atr_cnt = 0;
5132 if (pf->fd_tcp_rule > 0) {
5133 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005134 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5135 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 exist\n");
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005136 pf->fd_tcp_rule = 0;
5137 }
Anjali Singhai Jainca64fa42014-02-11 08:26:30 +00005138 i40e_fdir_filter_restore(vsi);
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005139 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005140 i40e_service_event_schedule(pf);
5141
5142 return 0;
5143}
5144
5145/**
5146 * i40e_vsi_reinit_locked - Reset the VSI
5147 * @vsi: the VSI being configured
5148 *
5149 * Rebuild the ring structs after some configuration
5150 * has changed, e.g. MTU size.
5151 **/
5152static void i40e_vsi_reinit_locked(struct i40e_vsi *vsi)
5153{
5154 struct i40e_pf *pf = vsi->back;
5155
5156 WARN_ON(in_interrupt());
5157 while (test_and_set_bit(__I40E_CONFIG_BUSY, &pf->state))
5158 usleep_range(1000, 2000);
5159 i40e_down(vsi);
5160
5161 /* Give a VF some time to respond to the reset. The
5162 * two second wait is based upon the watchdog cycle in
5163 * the VF driver.
5164 */
5165 if (vsi->type == I40E_VSI_SRIOV)
5166 msleep(2000);
5167 i40e_up(vsi);
5168 clear_bit(__I40E_CONFIG_BUSY, &pf->state);
5169}
5170
5171/**
5172 * i40e_up - Bring the connection back up after being down
5173 * @vsi: the VSI being configured
5174 **/
5175int i40e_up(struct i40e_vsi *vsi)
5176{
5177 int err;
5178
5179 err = i40e_vsi_configure(vsi);
5180 if (!err)
5181 err = i40e_up_complete(vsi);
5182
5183 return err;
5184}
5185
5186/**
5187 * i40e_down - Shutdown the connection processing
5188 * @vsi: the VSI being stopped
5189 **/
5190void i40e_down(struct i40e_vsi *vsi)
5191{
5192 int i;
5193
5194 /* It is assumed that the caller of this function
5195 * sets the vsi->state __I40E_DOWN bit.
5196 */
5197 if (vsi->netdev) {
5198 netif_carrier_off(vsi->netdev);
5199 netif_tx_disable(vsi->netdev);
5200 }
5201 i40e_vsi_disable_irq(vsi);
5202 i40e_vsi_control_rings(vsi, false);
5203 i40e_napi_disable_all(vsi);
5204
5205 for (i = 0; i < vsi->num_queue_pairs; i++) {
Alexander Duyck9f65e152013-09-28 06:00:58 +00005206 i40e_clean_tx_ring(vsi->tx_rings[i]);
5207 i40e_clean_rx_ring(vsi->rx_rings[i]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005208 }
5209}
5210
5211/**
5212 * i40e_setup_tc - configure multiple traffic classes
5213 * @netdev: net device to configure
5214 * @tc: number of traffic classes to enable
5215 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005216#ifdef I40E_FCOE
5217int i40e_setup_tc(struct net_device *netdev, u8 tc)
5218#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005219static int i40e_setup_tc(struct net_device *netdev, u8 tc)
Vasu Dev38e00432014-08-01 13:27:03 -07005220#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005221{
5222 struct i40e_netdev_priv *np = netdev_priv(netdev);
5223 struct i40e_vsi *vsi = np->vsi;
5224 struct i40e_pf *pf = vsi->back;
5225 u8 enabled_tc = 0;
5226 int ret = -EINVAL;
5227 int i;
5228
5229 /* Check if DCB enabled to continue */
5230 if (!(pf->flags & I40E_FLAG_DCB_ENABLED)) {
5231 netdev_info(netdev, "DCB is not enabled for adapter\n");
5232 goto exit;
5233 }
5234
5235 /* Check if MFP enabled */
5236 if (pf->flags & I40E_FLAG_MFP_ENABLED) {
5237 netdev_info(netdev, "Configuring TC not supported in MFP mode\n");
5238 goto exit;
5239 }
5240
5241 /* Check whether tc count is within enabled limit */
5242 if (tc > i40e_pf_get_num_tc(pf)) {
5243 netdev_info(netdev, "TC count greater than enabled on link for adapter\n");
5244 goto exit;
5245 }
5246
5247 /* Generate TC map for number of tc requested */
5248 for (i = 0; i < tc; i++)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005249 enabled_tc |= BIT_ULL(i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005250
5251 /* Requesting same TC configuration as already enabled */
5252 if (enabled_tc == vsi->tc_config.enabled_tc)
5253 return 0;
5254
5255 /* Quiesce VSI queues */
5256 i40e_quiesce_vsi(vsi);
5257
5258 /* Configure VSI for enabled TCs */
5259 ret = i40e_vsi_config_tc(vsi, enabled_tc);
5260 if (ret) {
5261 netdev_info(netdev, "Failed configuring TC for VSI seid=%d\n",
5262 vsi->seid);
5263 goto exit;
5264 }
5265
5266 /* Unquiesce VSI */
5267 i40e_unquiesce_vsi(vsi);
5268
5269exit:
5270 return ret;
5271}
5272
5273/**
5274 * i40e_open - Called when a network interface is made active
5275 * @netdev: network interface device structure
5276 *
5277 * The open entry point is called when a network interface is made
5278 * active by the system (IFF_UP). At this point all resources needed
5279 * for transmit and receive operations are allocated, the interrupt
5280 * handler is registered with the OS, the netdev watchdog subtask is
5281 * enabled, and the stack is notified that the interface is ready.
5282 *
5283 * Returns 0 on success, negative value on failure
5284 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005285int i40e_open(struct net_device *netdev)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005286{
5287 struct i40e_netdev_priv *np = netdev_priv(netdev);
5288 struct i40e_vsi *vsi = np->vsi;
5289 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005290 int err;
5291
Shannon Nelson4eb3f762014-03-06 08:59:58 +00005292 /* disallow open during test or if eeprom is broken */
5293 if (test_bit(__I40E_TESTING, &pf->state) ||
5294 test_bit(__I40E_BAD_EEPROM, &pf->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005295 return -EBUSY;
5296
5297 netif_carrier_off(netdev);
5298
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005299 err = i40e_vsi_open(vsi);
5300 if (err)
5301 return err;
5302
Jesse Brandeburg059dab62014-04-01 09:07:20 +00005303 /* configure global TSO hardware offload settings */
5304 wr32(&pf->hw, I40E_GLLAN_TSOMSK_F, be32_to_cpu(TCP_FLAG_PSH |
5305 TCP_FLAG_FIN) >> 16);
5306 wr32(&pf->hw, I40E_GLLAN_TSOMSK_M, be32_to_cpu(TCP_FLAG_PSH |
5307 TCP_FLAG_FIN |
5308 TCP_FLAG_CWR) >> 16);
5309 wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >> 16);
5310
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005311#ifdef CONFIG_I40E_VXLAN
5312 vxlan_get_rx_port(netdev);
5313#endif
5314
5315 return 0;
5316}
5317
5318/**
5319 * i40e_vsi_open -
5320 * @vsi: the VSI to open
5321 *
5322 * Finish initialization of the VSI.
5323 *
5324 * Returns 0 on success, negative value on failure
5325 **/
5326int i40e_vsi_open(struct i40e_vsi *vsi)
5327{
5328 struct i40e_pf *pf = vsi->back;
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00005329 char int_name[I40E_INT_NAME_STR_LEN];
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005330 int err;
5331
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005332 /* allocate descriptors */
5333 err = i40e_vsi_setup_tx_resources(vsi);
5334 if (err)
5335 goto err_setup_tx;
5336 err = i40e_vsi_setup_rx_resources(vsi);
5337 if (err)
5338 goto err_setup_rx;
5339
5340 err = i40e_vsi_configure(vsi);
5341 if (err)
5342 goto err_setup_rx;
5343
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005344 if (vsi->netdev) {
5345 snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
5346 dev_driver_string(&pf->pdev->dev), vsi->netdev->name);
5347 err = i40e_vsi_request_irq(vsi, int_name);
5348 if (err)
5349 goto err_setup_rx;
5350
5351 /* Notify the stack of the actual queue counts. */
5352 err = netif_set_real_num_tx_queues(vsi->netdev,
5353 vsi->num_queue_pairs);
5354 if (err)
5355 goto err_set_queues;
5356
5357 err = netif_set_real_num_rx_queues(vsi->netdev,
5358 vsi->num_queue_pairs);
5359 if (err)
5360 goto err_set_queues;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005361
5362 } else if (vsi->type == I40E_VSI_FDIR) {
Carolyn Wybornye240f672014-12-11 07:06:37 +00005363 snprintf(int_name, sizeof(int_name) - 1, "%s-%s:fdir",
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005364 dev_driver_string(&pf->pdev->dev),
5365 dev_name(&pf->pdev->dev));
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00005366 err = i40e_vsi_request_irq(vsi, int_name);
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +00005367
Shannon Nelsonc22e3c62014-03-14 07:32:25 +00005368 } else {
Jean Sacrence9ccb12014-05-01 14:31:18 +00005369 err = -EINVAL;
Elizabeth Kappler6c167f52014-02-15 07:41:38 +00005370 goto err_setup_rx;
5371 }
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005372
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005373 err = i40e_up_complete(vsi);
5374 if (err)
5375 goto err_up_complete;
5376
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005377 return 0;
5378
5379err_up_complete:
5380 i40e_down(vsi);
Anjali Singhai Jain25946dd2013-11-26 10:49:14 +00005381err_set_queues:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005382 i40e_vsi_free_irq(vsi);
5383err_setup_rx:
5384 i40e_vsi_free_rx_resources(vsi);
5385err_setup_tx:
5386 i40e_vsi_free_tx_resources(vsi);
5387 if (vsi == pf->vsi[pf->lan_vsi])
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005388 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005389
5390 return err;
5391}
5392
5393/**
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005394 * i40e_fdir_filter_exit - Cleans up the Flow Director accounting
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00005395 * @pf: Pointer to PF
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00005396 *
5397 * This function destroys the hlist where all the Flow Director
5398 * filters were saved.
5399 **/
5400static void i40e_fdir_filter_exit(struct i40e_pf *pf)
5401{
5402 struct i40e_fdir_filter *filter;
5403 struct hlist_node *node2;
5404
5405 hlist_for_each_entry_safe(filter, node2,
5406 &pf->fdir_filter_list, fdir_node) {
5407 hlist_del(&filter->fdir_node);
5408 kfree(filter);
5409 }
5410 pf->fdir_pf_active_filters = 0;
5411}
5412
5413/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005414 * i40e_close - Disables a network interface
5415 * @netdev: network interface device structure
5416 *
5417 * The close entry point is called when an interface is de-activated
5418 * by the OS. The hardware is still under the driver's control, but
5419 * this netdev interface is disabled.
5420 *
5421 * Returns 0, this is not allowed to fail
5422 **/
Vasu Dev38e00432014-08-01 13:27:03 -07005423#ifdef I40E_FCOE
5424int i40e_close(struct net_device *netdev)
5425#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005426static int i40e_close(struct net_device *netdev)
Vasu Dev38e00432014-08-01 13:27:03 -07005427#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005428{
5429 struct i40e_netdev_priv *np = netdev_priv(netdev);
5430 struct i40e_vsi *vsi = np->vsi;
5431
Shannon Nelson90ef8d42014-03-14 07:32:26 +00005432 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005433
5434 return 0;
5435}
5436
5437/**
5438 * i40e_do_reset - Start a PF or Core Reset sequence
5439 * @pf: board private structure
5440 * @reset_flags: which reset is requested
5441 *
5442 * The essential difference in resets is that the PF Reset
5443 * doesn't clear the packet buffers, doesn't reset the PE
5444 * firmware, and doesn't bother the other PFs on the chip.
5445 **/
5446void i40e_do_reset(struct i40e_pf *pf, u32 reset_flags)
5447{
5448 u32 val;
5449
5450 WARN_ON(in_interrupt());
5451
Mitch Williams263fc482014-04-23 04:50:11 +00005452 if (i40e_check_asq_alive(&pf->hw))
5453 i40e_vc_notify_reset(pf);
5454
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005455 /* do the biggest reset indicated */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005456 if (reset_flags & BIT_ULL(__I40E_GLOBAL_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005457
5458 /* Request a Global Reset
5459 *
5460 * This will start the chip's countdown to the actual full
5461 * chip reset event, and a warning interrupt to be sent
5462 * to all PFs, including the requestor. Our handler
5463 * for the warning interrupt will deal with the shutdown
5464 * and recovery of the switch setup.
5465 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005466 dev_dbg(&pf->pdev->dev, "GlobalR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005467 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5468 val |= I40E_GLGEN_RTRIG_GLOBR_MASK;
5469 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5470
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005471 } else if (reset_flags & BIT_ULL(__I40E_CORE_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005472
5473 /* Request a Core Reset
5474 *
5475 * Same as Global Reset, except does *not* include the MAC/PHY
5476 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005477 dev_dbg(&pf->pdev->dev, "CoreR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005478 val = rd32(&pf->hw, I40E_GLGEN_RTRIG);
5479 val |= I40E_GLGEN_RTRIG_CORER_MASK;
5480 wr32(&pf->hw, I40E_GLGEN_RTRIG, val);
5481 i40e_flush(&pf->hw);
5482
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005483 } else if (reset_flags & BIT_ULL(__I40E_PF_RESET_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005484
5485 /* Request a PF Reset
5486 *
5487 * Resets only the PF-specific registers
5488 *
5489 * This goes directly to the tear-down and rebuild of
5490 * the switch, since we need to do all the recovery as
5491 * for the Core Reset.
5492 */
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005493 dev_dbg(&pf->pdev->dev, "PFR requested\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005494 i40e_handle_reset_warning(pf);
5495
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005496 } else if (reset_flags & BIT_ULL(__I40E_REINIT_REQUESTED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005497 int v;
5498
5499 /* Find the VSI(s) that requested a re-init */
5500 dev_info(&pf->pdev->dev,
5501 "VSI reinit requested\n");
Mitch Williams505682c2014-05-20 08:01:37 +00005502 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005503 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005504
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005505 if (vsi != NULL &&
5506 test_bit(__I40E_REINIT_REQUESTED, &vsi->state)) {
5507 i40e_vsi_reinit_locked(pf->vsi[v]);
5508 clear_bit(__I40E_REINIT_REQUESTED, &vsi->state);
5509 }
5510 }
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04005511 } else if (reset_flags & BIT_ULL(__I40E_DOWN_REQUESTED)) {
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005512 int v;
5513
5514 /* Find the VSI(s) that needs to be brought down */
5515 dev_info(&pf->pdev->dev, "VSI down requested\n");
5516 for (v = 0; v < pf->num_alloc_vsi; v++) {
5517 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04005518
Neerav Parikhb5d06f02014-06-03 23:50:17 +00005519 if (vsi != NULL &&
5520 test_bit(__I40E_DOWN_REQUESTED, &vsi->state)) {
5521 set_bit(__I40E_DOWN, &vsi->state);
5522 i40e_down(vsi);
5523 clear_bit(__I40E_DOWN_REQUESTED, &vsi->state);
5524 }
5525 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005526 } else {
5527 dev_info(&pf->pdev->dev,
5528 "bad reset request 0x%08x\n", reset_flags);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005529 }
5530}
5531
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005532#ifdef CONFIG_I40E_DCB
5533/**
5534 * i40e_dcb_need_reconfig - Check if DCB needs reconfig
5535 * @pf: board private structure
5536 * @old_cfg: current DCB config
5537 * @new_cfg: new DCB config
5538 **/
5539bool i40e_dcb_need_reconfig(struct i40e_pf *pf,
5540 struct i40e_dcbx_config *old_cfg,
5541 struct i40e_dcbx_config *new_cfg)
5542{
5543 bool need_reconfig = false;
5544
5545 /* Check if ETS configuration has changed */
5546 if (memcmp(&new_cfg->etscfg,
5547 &old_cfg->etscfg,
5548 sizeof(new_cfg->etscfg))) {
5549 /* If Priority Table has changed reconfig is needed */
5550 if (memcmp(&new_cfg->etscfg.prioritytable,
5551 &old_cfg->etscfg.prioritytable,
5552 sizeof(new_cfg->etscfg.prioritytable))) {
5553 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005554 dev_dbg(&pf->pdev->dev, "ETS UP2TC changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005555 }
5556
5557 if (memcmp(&new_cfg->etscfg.tcbwtable,
5558 &old_cfg->etscfg.tcbwtable,
5559 sizeof(new_cfg->etscfg.tcbwtable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005560 dev_dbg(&pf->pdev->dev, "ETS TC BW Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005561
5562 if (memcmp(&new_cfg->etscfg.tsatable,
5563 &old_cfg->etscfg.tsatable,
5564 sizeof(new_cfg->etscfg.tsatable)))
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005565 dev_dbg(&pf->pdev->dev, "ETS TSA Table changed.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005566 }
5567
5568 /* Check if PFC configuration has changed */
5569 if (memcmp(&new_cfg->pfc,
5570 &old_cfg->pfc,
5571 sizeof(new_cfg->pfc))) {
5572 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005573 dev_dbg(&pf->pdev->dev, "PFC config change detected.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005574 }
5575
5576 /* Check if APP Table has changed */
5577 if (memcmp(&new_cfg->app,
5578 &old_cfg->app,
Dave Jones3d9667a2014-01-27 23:11:09 -05005579 sizeof(new_cfg->app))) {
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005580 need_reconfig = true;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005581 dev_dbg(&pf->pdev->dev, "APP Table change detected.\n");
Dave Jones3d9667a2014-01-27 23:11:09 -05005582 }
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005583
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005584 dev_dbg(&pf->pdev->dev, "dcb need_reconfig=%d\n", need_reconfig);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005585 return need_reconfig;
5586}
5587
5588/**
5589 * i40e_handle_lldp_event - Handle LLDP Change MIB event
5590 * @pf: board private structure
5591 * @e: event info posted on ARQ
5592 **/
5593static int i40e_handle_lldp_event(struct i40e_pf *pf,
5594 struct i40e_arq_event_info *e)
5595{
5596 struct i40e_aqc_lldp_get_mib *mib =
5597 (struct i40e_aqc_lldp_get_mib *)&e->desc.params.raw;
5598 struct i40e_hw *hw = &pf->hw;
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005599 struct i40e_dcbx_config tmp_dcbx_cfg;
5600 bool need_reconfig = false;
5601 int ret = 0;
5602 u8 type;
5603
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005604 /* Not DCB capable or capability disabled */
5605 if (!(pf->flags & I40E_FLAG_DCB_CAPABLE))
5606 return ret;
5607
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005608 /* Ignore if event is not for Nearest Bridge */
5609 type = ((mib->type >> I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT)
5610 & I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005611 dev_dbg(&pf->pdev->dev, "LLDP event mib bridge type 0x%x\n", type);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005612 if (type != I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE)
5613 return ret;
5614
5615 /* Check MIB Type and return if event for Remote MIB update */
5616 type = mib->type & I40E_AQ_LLDP_MIB_TYPE_MASK;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005617 dev_dbg(&pf->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04005618 "LLDP event mib type %s\n", type ? "remote" : "local");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005619 if (type == I40E_AQ_LLDP_MIB_REMOTE) {
5620 /* Update the remote cached instance and return */
5621 ret = i40e_aq_get_dcb_config(hw, I40E_AQ_LLDP_MIB_REMOTE,
5622 I40E_AQ_LLDP_BRIDGE_TYPE_NEAREST_BRIDGE,
5623 &hw->remote_dcbx_config);
5624 goto exit;
5625 }
5626
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005627 /* Store the old configuration */
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07005628 tmp_dcbx_cfg = hw->local_dcbx_config;
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005629
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005630 /* Reset the old DCBx configuration data */
5631 memset(&hw->local_dcbx_config, 0, sizeof(hw->local_dcbx_config));
Neerav Parikh9fa61dd2014-11-12 00:18:25 +00005632 /* Get updated DCBX data from firmware */
5633 ret = i40e_get_dcb_config(&pf->hw);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005634 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04005635 dev_info(&pf->pdev->dev,
5636 "Failed querying DCB configuration data from firmware, err %s aq_err %s\n",
5637 i40e_stat_str(&pf->hw, ret),
5638 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005639 goto exit;
5640 }
5641
5642 /* No change detected in DCBX configs */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005643 if (!memcmp(&tmp_dcbx_cfg, &hw->local_dcbx_config,
5644 sizeof(tmp_dcbx_cfg))) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005645 dev_dbg(&pf->pdev->dev, "No change detected in DCBX configuration.\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005646 goto exit;
5647 }
5648
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005649 need_reconfig = i40e_dcb_need_reconfig(pf, &tmp_dcbx_cfg,
5650 &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005651
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005652 i40e_dcbnl_flush_apps(pf, &tmp_dcbx_cfg, &hw->local_dcbx_config);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005653
5654 if (!need_reconfig)
5655 goto exit;
5656
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005657 /* Enable DCB tagging only when more than one TC */
Neerav Parikh750fcbc2015-02-24 06:58:47 +00005658 if (i40e_dcb_get_num_tc(&hw->local_dcbx_config) > 1)
Neerav Parikh4d9b6042014-05-22 06:31:51 +00005659 pf->flags |= I40E_FLAG_DCB_ENABLED;
5660 else
5661 pf->flags &= ~I40E_FLAG_DCB_ENABLED;
5662
Neerav Parikh69129dc2014-11-12 00:18:46 +00005663 set_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005664 /* Reconfiguration needed quiesce all VSIs */
5665 i40e_pf_quiesce_all_vsi(pf);
5666
5667 /* Changes in configuration update VEB/VSI */
5668 i40e_dcb_reconfigure(pf);
5669
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005670 ret = i40e_resume_port_tx(pf);
5671
Neerav Parikh69129dc2014-11-12 00:18:46 +00005672 clear_bit(__I40E_PORT_TX_SUSPENDED, &pf->state);
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005673 /* In case of error no point in resuming VSIs */
Neerav Parikh69129dc2014-11-12 00:18:46 +00005674 if (ret)
5675 goto exit;
5676
5677 /* Wait for the PF's Tx queues to be disabled */
5678 ret = i40e_pf_wait_txq_disabled(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005679 if (ret) {
5680 /* Schedule PF reset to recover */
5681 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
5682 i40e_service_event_schedule(pf);
5683 } else {
Neerav Parikh2fd75f32014-11-12 00:18:20 +00005684 i40e_pf_unquiesce_all_vsi(pf);
Parikh, Neerav11e47702015-02-21 06:43:55 +00005685 }
5686
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08005687exit:
5688 return ret;
5689}
5690#endif /* CONFIG_I40E_DCB */
5691
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005692/**
Anjali Singhai Jain233261862013-11-26 10:49:22 +00005693 * i40e_do_reset_safe - Protected reset path for userland calls.
5694 * @pf: board private structure
5695 * @reset_flags: which reset is requested
5696 *
5697 **/
5698void i40e_do_reset_safe(struct i40e_pf *pf, u32 reset_flags)
5699{
5700 rtnl_lock();
5701 i40e_do_reset(pf, reset_flags);
5702 rtnl_unlock();
5703}
5704
5705/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005706 * i40e_handle_lan_overflow_event - Handler for LAN queue overflow event
5707 * @pf: board private structure
5708 * @e: event info posted on ARQ
5709 *
5710 * Handler for LAN Queue Overflow Event generated by the firmware for PF
5711 * and VF queues
5712 **/
5713static void i40e_handle_lan_overflow_event(struct i40e_pf *pf,
5714 struct i40e_arq_event_info *e)
5715{
5716 struct i40e_aqc_lan_overflow *data =
5717 (struct i40e_aqc_lan_overflow *)&e->desc.params.raw;
5718 u32 queue = le32_to_cpu(data->prtdcb_rupto);
5719 u32 qtx_ctl = le32_to_cpu(data->otx_ctl);
5720 struct i40e_hw *hw = &pf->hw;
5721 struct i40e_vf *vf;
5722 u16 vf_id;
5723
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00005724 dev_dbg(&pf->pdev->dev, "overflow Rx Queue Number = %d QTX_CTL=0x%08x\n",
5725 queue, qtx_ctl);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005726
5727 /* Queue belongs to VF, find the VF and issue VF reset */
5728 if (((qtx_ctl & I40E_QTX_CTL_PFVF_Q_MASK)
5729 >> I40E_QTX_CTL_PFVF_Q_SHIFT) == I40E_QTX_CTL_VF_QUEUE) {
5730 vf_id = (u16)((qtx_ctl & I40E_QTX_CTL_VFVM_INDX_MASK)
5731 >> I40E_QTX_CTL_VFVM_INDX_SHIFT);
5732 vf_id -= hw->func_caps.vf_base_id;
5733 vf = &pf->vf[vf_id];
5734 i40e_vc_notify_vf_reset(vf);
5735 /* Allow VF to process pending reset notification */
5736 msleep(20);
5737 i40e_reset_vf(vf, false);
5738 }
5739}
5740
5741/**
5742 * i40e_service_event_complete - Finish up the service event
5743 * @pf: board private structure
5744 **/
5745static void i40e_service_event_complete(struct i40e_pf *pf)
5746{
Shannon Nelsonb875f992015-10-21 19:47:03 -04005747 WARN_ON(!test_bit(__I40E_SERVICE_SCHED, &pf->state));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005748
5749 /* flush memory to make sure state is correct before next watchog */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005750 smp_mb__before_atomic();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005751 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
5752}
5753
5754/**
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005755 * i40e_get_cur_guaranteed_fd_count - Get the consumed guaranteed FD filters
5756 * @pf: board private structure
5757 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005758u32 i40e_get_cur_guaranteed_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005759{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005760 u32 val, fcnt_prog;
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005761
5762 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5763 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK);
5764 return fcnt_prog;
5765}
5766
5767/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005768 * i40e_get_current_fd_count - Get total FD filters programmed for this PF
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005769 * @pf: board private structure
5770 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005771u32 i40e_get_current_fd_count(struct i40e_pf *pf)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005772{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005773 u32 val, fcnt_prog;
5774
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005775 val = rd32(&pf->hw, I40E_PFQF_FDSTAT);
5776 fcnt_prog = (val & I40E_PFQF_FDSTAT_GUARANT_CNT_MASK) +
5777 ((val & I40E_PFQF_FDSTAT_BEST_CNT_MASK) >>
5778 I40E_PFQF_FDSTAT_BEST_CNT_SHIFT);
5779 return fcnt_prog;
5780}
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005781
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005782/**
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005783 * i40e_get_global_fd_count - Get total FD filters programmed on device
5784 * @pf: board private structure
5785 **/
5786u32 i40e_get_global_fd_count(struct i40e_pf *pf)
5787{
5788 u32 val, fcnt_prog;
5789
5790 val = rd32(&pf->hw, I40E_GLQF_FDCNT_0);
5791 fcnt_prog = (val & I40E_GLQF_FDCNT_0_GUARANT_CNT_MASK) +
5792 ((val & I40E_GLQF_FDCNT_0_BESTCNT_MASK) >>
5793 I40E_GLQF_FDCNT_0_BESTCNT_SHIFT);
5794 return fcnt_prog;
5795}
5796
5797/**
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005798 * i40e_fdir_check_and_reenable - Function to reenabe FD ATR or SB if disabled
5799 * @pf: board private structure
5800 **/
5801void i40e_fdir_check_and_reenable(struct i40e_pf *pf)
5802{
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005803 struct i40e_fdir_filter *filter;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005804 u32 fcnt_prog, fcnt_avail;
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005805 struct hlist_node *node;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005806
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005807 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
5808 return;
5809
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005810 /* Check if, FD SB or ATR was auto disabled and if there is enough room
5811 * to re-enable
5812 */
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005813 fcnt_prog = i40e_get_global_fd_count(pf);
Anjali Singhai Jain12957382014-06-04 04:22:47 +00005814 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005815 if ((fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM)) ||
5816 (pf->fd_add_err == 0) ||
5817 (i40e_get_current_atr_cnt(pf) < pf->fd_atr_cnt)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005818 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
5819 (pf->auto_disable_flags & I40E_FLAG_FD_SB_ENABLED)) {
5820 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005821 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5822 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 +00005823 }
5824 }
5825 /* Wait for some more space to be available to turn on ATR */
5826 if (fcnt_prog < (fcnt_avail - I40E_FDIR_BUFFER_HEAD_ROOM * 2)) {
5827 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
5828 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) {
5829 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04005830 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5831 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 +00005832 }
5833 }
Carolyn Wyborny3487b6c2015-08-27 11:42:38 -04005834
5835 /* if hw had a problem adding a filter, delete it */
5836 if (pf->fd_inv > 0) {
5837 hlist_for_each_entry_safe(filter, node,
5838 &pf->fdir_filter_list, fdir_node) {
5839 if (filter->fd_id == pf->fd_inv) {
5840 hlist_del(&filter->fdir_node);
5841 kfree(filter);
5842 pf->fdir_pf_active_filters--;
5843 }
5844 }
5845 }
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005846}
5847
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005848#define I40E_MIN_FD_FLUSH_INTERVAL 10
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005849#define I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE 30
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005850/**
5851 * i40e_fdir_flush_and_replay - Function to flush all FD filters and replay SB
5852 * @pf: board private structure
5853 **/
5854static void i40e_fdir_flush_and_replay(struct i40e_pf *pf)
5855{
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005856 unsigned long min_flush_time;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005857 int flush_wait_retry = 50;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005858 bool disable_atr = false;
5859 int fd_room;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005860 int reg;
5861
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005862 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5863 return;
5864
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005865 if (!time_after(jiffies, pf->fd_flush_timestamp +
5866 (I40E_MIN_FD_FLUSH_INTERVAL * HZ)))
5867 return;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005868
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005869 /* If the flush is happening too quick and we have mostly SB rules we
5870 * should not re-enable ATR for some time.
5871 */
5872 min_flush_time = pf->fd_flush_timestamp +
5873 (I40E_MIN_FD_FLUSH_SB_ATR_UNSTABLE * HZ);
5874 fd_room = pf->fdir_pf_filter_count - pf->fdir_pf_active_filters;
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005875
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005876 if (!(time_after(jiffies, min_flush_time)) &&
5877 (fd_room < I40E_FDIR_BUFFER_HEAD_ROOM_FOR_ATR)) {
5878 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5879 dev_info(&pf->pdev->dev, "ATR disabled, not enough FD filter space.\n");
5880 disable_atr = true;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005881 }
Jesse Brandeburga5fdaf32015-08-28 17:55:56 -04005882
5883 pf->fd_flush_timestamp = jiffies;
5884 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
5885 /* flush all filters */
5886 wr32(&pf->hw, I40E_PFQF_CTL_1,
5887 I40E_PFQF_CTL_1_CLEARFDTABLE_MASK);
5888 i40e_flush(&pf->hw);
5889 pf->fd_flush_cnt++;
5890 pf->fd_add_err = 0;
5891 do {
5892 /* Check FD flush status every 5-6msec */
5893 usleep_range(5000, 6000);
5894 reg = rd32(&pf->hw, I40E_PFQF_CTL_1);
5895 if (!(reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK))
5896 break;
5897 } while (flush_wait_retry--);
5898 if (reg & I40E_PFQF_CTL_1_CLEARFDTABLE_MASK) {
5899 dev_warn(&pf->pdev->dev, "FD table did not flush, needs more time\n");
5900 } else {
5901 /* replay sideband filters */
5902 i40e_fdir_filter_restore(pf->vsi[pf->lan_vsi]);
5903 if (!disable_atr)
5904 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
5905 clear_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state);
5906 if (I40E_DEBUG_FD & pf->hw.debug_mask)
5907 dev_info(&pf->pdev->dev, "FD Filter table flushed and FD-SB replayed.\n");
5908 }
5909
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005910}
5911
5912/**
5913 * i40e_get_current_atr_count - Get the count of total FD ATR filters programmed
5914 * @pf: board private structure
5915 **/
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005916u32 i40e_get_current_atr_cnt(struct i40e_pf *pf)
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005917{
5918 return i40e_get_current_fd_count(pf) - pf->fdir_pf_active_filters;
5919}
5920
5921/* We can see up to 256 filter programming desc in transit if the filters are
5922 * being applied really fast; before we see the first
5923 * filter miss error on Rx queue 0. Accumulating enough error messages before
5924 * reacting will make sure we don't cause flush too often.
5925 */
5926#define I40E_MAX_FD_PROGRAM_ERROR 256
5927
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005928/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005929 * i40e_fdir_reinit_subtask - Worker thread to reinit FDIR filter table
5930 * @pf: board private structure
5931 **/
5932static void i40e_fdir_reinit_subtask(struct i40e_pf *pf)
5933{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005934
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005935 /* if interface is down do nothing */
5936 if (test_bit(__I40E_DOWN, &pf->state))
5937 return;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005938
Akeem G Abodunrin1790ed02014-10-17 03:14:41 +00005939 if (!(pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED)))
5940 return;
5941
Anjali Singhai Jain04294e32015-02-27 09:15:28 +00005942 if (test_bit(__I40E_FD_FLUSH_REQUESTED, &pf->state))
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00005943 i40e_fdir_flush_and_replay(pf);
5944
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00005945 i40e_fdir_check_and_reenable(pf);
5946
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005947}
5948
5949/**
5950 * i40e_vsi_link_event - notify VSI of a link event
5951 * @vsi: vsi to be notified
5952 * @link_up: link up or down
5953 **/
5954static void i40e_vsi_link_event(struct i40e_vsi *vsi, bool link_up)
5955{
Jesse Brandeburg32b5b812014-08-12 06:33:14 +00005956 if (!vsi || test_bit(__I40E_DOWN, &vsi->state))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005957 return;
5958
5959 switch (vsi->type) {
5960 case I40E_VSI_MAIN:
Vasu Dev38e00432014-08-01 13:27:03 -07005961#ifdef I40E_FCOE
5962 case I40E_VSI_FCOE:
5963#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005964 if (!vsi->netdev || !vsi->netdev_registered)
5965 break;
5966
5967 if (link_up) {
5968 netif_carrier_on(vsi->netdev);
5969 netif_tx_wake_all_queues(vsi->netdev);
5970 } else {
5971 netif_carrier_off(vsi->netdev);
5972 netif_tx_stop_all_queues(vsi->netdev);
5973 }
5974 break;
5975
5976 case I40E_VSI_SRIOV:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00005977 case I40E_VSI_VMDQ2:
5978 case I40E_VSI_CTRL:
5979 case I40E_VSI_MIRROR:
5980 default:
5981 /* there is no notification for other VSIs */
5982 break;
5983 }
5984}
5985
5986/**
5987 * i40e_veb_link_event - notify elements on the veb of a link event
5988 * @veb: veb to be notified
5989 * @link_up: link up or down
5990 **/
5991static void i40e_veb_link_event(struct i40e_veb *veb, bool link_up)
5992{
5993 struct i40e_pf *pf;
5994 int i;
5995
5996 if (!veb || !veb->pf)
5997 return;
5998 pf = veb->pf;
5999
6000 /* depth first... */
6001 for (i = 0; i < I40E_MAX_VEB; i++)
6002 if (pf->veb[i] && (pf->veb[i]->uplink_seid == veb->seid))
6003 i40e_veb_link_event(pf->veb[i], link_up);
6004
6005 /* ... now the local VSIs */
Mitch Williams505682c2014-05-20 08:01:37 +00006006 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006007 if (pf->vsi[i] && (pf->vsi[i]->uplink_seid == veb->seid))
6008 i40e_vsi_link_event(pf->vsi[i], link_up);
6009}
6010
6011/**
6012 * i40e_link_event - Update netif_carrier status
6013 * @pf: board private structure
6014 **/
6015static void i40e_link_event(struct i40e_pf *pf)
6016{
Mitch Williams320684c2014-10-17 03:14:43 +00006017 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006018 u8 new_link_speed, old_link_speed;
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006019 i40e_status status;
6020 bool new_link, old_link;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006021
Catherine Sullivan1f9610e2015-10-21 19:47:09 -04006022 /* save off old link status information */
6023 pf->hw.phy.link_info_old = pf->hw.phy.link_info;
6024
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006025 /* set this to force the get_link_status call to refresh state */
6026 pf->hw.phy.get_link_info = true;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006027
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006028 old_link = (pf->hw.phy.link_info_old.link_info & I40E_AQ_LINK_UP);
Jesse Brandeburga72a5abc2015-08-26 15:14:19 -04006029
6030 status = i40e_get_link_status(&pf->hw, &new_link);
6031 if (status) {
6032 dev_dbg(&pf->pdev->dev, "couldn't get link state, status: %d\n",
6033 status);
6034 return;
6035 }
6036
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006037 old_link_speed = pf->hw.phy.link_info_old.link_speed;
6038 new_link_speed = pf->hw.phy.link_info.link_speed;
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006039
6040 if (new_link == old_link &&
Catherine Sullivanfef59dd2014-12-11 07:06:33 +00006041 new_link_speed == old_link_speed &&
Mitch Williams320684c2014-10-17 03:14:43 +00006042 (test_bit(__I40E_DOWN, &vsi->state) ||
6043 new_link == netif_carrier_ok(vsi->netdev)))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006044 return;
Mitch Williams320684c2014-10-17 03:14:43 +00006045
6046 if (!test_bit(__I40E_DOWN, &vsi->state))
6047 i40e_print_link_message(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006048
6049 /* Notify the base of the switch tree connected to
6050 * the link. Floating VEBs are not notified.
6051 */
6052 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
6053 i40e_veb_link_event(pf->veb[pf->lan_veb], new_link);
6054 else
Mitch Williams320684c2014-10-17 03:14:43 +00006055 i40e_vsi_link_event(vsi, new_link);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006056
6057 if (pf->vf)
6058 i40e_vc_notify_link_state(pf);
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006059
6060 if (pf->flags & I40E_FLAG_PTP)
6061 i40e_ptp_set_increment(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006062}
6063
6064/**
Shannon Nelson21536712014-10-25 10:35:25 +00006065 * i40e_watchdog_subtask - periodic checks not using event driven response
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006066 * @pf: board private structure
6067 **/
6068static void i40e_watchdog_subtask(struct i40e_pf *pf)
6069{
6070 int i;
6071
6072 /* if interface is down do nothing */
6073 if (test_bit(__I40E_DOWN, &pf->state) ||
6074 test_bit(__I40E_CONFIG_BUSY, &pf->state))
6075 return;
6076
Shannon Nelson21536712014-10-25 10:35:25 +00006077 /* make sure we don't do these things too often */
6078 if (time_before(jiffies, (pf->service_timer_previous +
6079 pf->service_timer_period)))
6080 return;
6081 pf->service_timer_previous = jiffies;
6082
Shannon Nelson9ac77262015-08-27 11:42:40 -04006083 if (pf->flags & I40E_FLAG_LINK_POLLING_ENABLED)
6084 i40e_link_event(pf);
Shannon Nelson21536712014-10-25 10:35:25 +00006085
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006086 /* Update the stats for active netdevs so the network stack
6087 * can look at updated numbers whenever it cares to
6088 */
Mitch Williams505682c2014-05-20 08:01:37 +00006089 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006090 if (pf->vsi[i] && pf->vsi[i]->netdev)
6091 i40e_update_stats(pf->vsi[i]);
6092
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04006093 if (pf->flags & I40E_FLAG_VEB_STATS_ENABLED) {
6094 /* Update the stats for the active switching components */
6095 for (i = 0; i < I40E_MAX_VEB; i++)
6096 if (pf->veb[i])
6097 i40e_update_veb_stats(pf->veb[i]);
6098 }
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00006099
6100 i40e_ptp_rx_hang(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006101}
6102
6103/**
6104 * i40e_reset_subtask - Set up for resetting the device and driver
6105 * @pf: board private structure
6106 **/
6107static void i40e_reset_subtask(struct i40e_pf *pf)
6108{
6109 u32 reset_flags = 0;
6110
Anjali Singhai Jain233261862013-11-26 10:49:22 +00006111 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006112 if (test_bit(__I40E_REINIT_REQUESTED, &pf->state)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04006113 reset_flags |= BIT_ULL(__I40E_REINIT_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006114 clear_bit(__I40E_REINIT_REQUESTED, &pf->state);
6115 }
6116 if (test_bit(__I40E_PF_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04006117 reset_flags |= BIT_ULL(__I40E_PF_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006118 clear_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6119 }
6120 if (test_bit(__I40E_CORE_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04006121 reset_flags |= BIT_ULL(__I40E_CORE_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006122 clear_bit(__I40E_CORE_RESET_REQUESTED, &pf->state);
6123 }
6124 if (test_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04006125 reset_flags |= BIT_ULL(__I40E_GLOBAL_RESET_REQUESTED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006126 clear_bit(__I40E_GLOBAL_RESET_REQUESTED, &pf->state);
6127 }
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006128 if (test_bit(__I40E_DOWN_REQUESTED, &pf->state)) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04006129 reset_flags |= BIT_ULL(__I40E_DOWN_REQUESTED);
Neerav Parikhb5d06f02014-06-03 23:50:17 +00006130 clear_bit(__I40E_DOWN_REQUESTED, &pf->state);
6131 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006132
6133 /* If there's a recovery already waiting, it takes
6134 * precedence before starting a new reset sequence.
6135 */
6136 if (test_bit(__I40E_RESET_INTR_RECEIVED, &pf->state)) {
6137 i40e_handle_reset_warning(pf);
Anjali Singhai Jain233261862013-11-26 10:49:22 +00006138 goto unlock;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006139 }
6140
6141 /* If we're already down or resetting, just bail */
6142 if (reset_flags &&
6143 !test_bit(__I40E_DOWN, &pf->state) &&
6144 !test_bit(__I40E_CONFIG_BUSY, &pf->state))
6145 i40e_do_reset(pf, reset_flags);
Anjali Singhai Jain233261862013-11-26 10:49:22 +00006146
6147unlock:
6148 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006149}
6150
6151/**
6152 * i40e_handle_link_event - Handle link event
6153 * @pf: board private structure
6154 * @e: event info posted on ARQ
6155 **/
6156static void i40e_handle_link_event(struct i40e_pf *pf,
6157 struct i40e_arq_event_info *e)
6158{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006159 struct i40e_aqc_get_link_status *status =
6160 (struct i40e_aqc_get_link_status *)&e->desc.params.raw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006161
Jesse Brandeburg1e701e02014-09-13 07:40:42 +00006162 /* Do a new status request to re-enable LSE reporting
6163 * and load new status information into the hw struct
6164 * This completely ignores any state information
6165 * in the ARQ event info, instead choosing to always
6166 * issue the AQ update link status command.
6167 */
6168 i40e_link_event(pf);
6169
Carolyn Wyborny7b592f62014-07-10 07:58:19 +00006170 /* check for unqualified module, if link is down */
6171 if ((status->link_info & I40E_AQ_MEDIA_AVAILABLE) &&
6172 (!(status->an_info & I40E_AQ_QUALIFIED_MODULE)) &&
6173 (!(status->link_info & I40E_AQ_LINK_UP)))
6174 dev_err(&pf->pdev->dev,
6175 "The driver failed to link because an unqualified module was detected.\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006176}
6177
6178/**
6179 * i40e_clean_adminq_subtask - Clean the AdminQ rings
6180 * @pf: board private structure
6181 **/
6182static void i40e_clean_adminq_subtask(struct i40e_pf *pf)
6183{
6184 struct i40e_arq_event_info event;
6185 struct i40e_hw *hw = &pf->hw;
6186 u16 pending, i = 0;
6187 i40e_status ret;
6188 u16 opcode;
Shannon Nelson86df2422014-05-20 08:01:35 +00006189 u32 oldval;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006190 u32 val;
6191
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006192 /* Do not run clean AQ when PF reset fails */
6193 if (test_bit(__I40E_RESET_FAILED, &pf->state))
6194 return;
6195
Shannon Nelson86df2422014-05-20 08:01:35 +00006196 /* check for error indications */
6197 val = rd32(&pf->hw, pf->hw.aq.arq.len);
6198 oldval = val;
6199 if (val & I40E_PF_ARQLEN_ARQVFE_MASK) {
6200 dev_info(&pf->pdev->dev, "ARQ VF Error detected\n");
6201 val &= ~I40E_PF_ARQLEN_ARQVFE_MASK;
6202 }
6203 if (val & I40E_PF_ARQLEN_ARQOVFL_MASK) {
6204 dev_info(&pf->pdev->dev, "ARQ Overflow Error detected\n");
6205 val &= ~I40E_PF_ARQLEN_ARQOVFL_MASK;
6206 }
6207 if (val & I40E_PF_ARQLEN_ARQCRIT_MASK) {
6208 dev_info(&pf->pdev->dev, "ARQ Critical Error detected\n");
6209 val &= ~I40E_PF_ARQLEN_ARQCRIT_MASK;
6210 }
6211 if (oldval != val)
6212 wr32(&pf->hw, pf->hw.aq.arq.len, val);
6213
6214 val = rd32(&pf->hw, pf->hw.aq.asq.len);
6215 oldval = val;
6216 if (val & I40E_PF_ATQLEN_ATQVFE_MASK) {
6217 dev_info(&pf->pdev->dev, "ASQ VF Error detected\n");
6218 val &= ~I40E_PF_ATQLEN_ATQVFE_MASK;
6219 }
6220 if (val & I40E_PF_ATQLEN_ATQOVFL_MASK) {
6221 dev_info(&pf->pdev->dev, "ASQ Overflow Error detected\n");
6222 val &= ~I40E_PF_ATQLEN_ATQOVFL_MASK;
6223 }
6224 if (val & I40E_PF_ATQLEN_ATQCRIT_MASK) {
6225 dev_info(&pf->pdev->dev, "ASQ Critical Error detected\n");
6226 val &= ~I40E_PF_ATQLEN_ATQCRIT_MASK;
6227 }
6228 if (oldval != val)
6229 wr32(&pf->hw, pf->hw.aq.asq.len, val);
6230
Mitch Williams1001dc32014-11-11 20:02:19 +00006231 event.buf_len = I40E_MAX_AQ_BUF_SIZE;
6232 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006233 if (!event.msg_buf)
6234 return;
6235
6236 do {
6237 ret = i40e_clean_arq_element(hw, &event, &pending);
Mitch Williams56497972014-06-04 08:45:18 +00006238 if (ret == I40E_ERR_ADMIN_QUEUE_NO_WORK)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006239 break;
Mitch Williams56497972014-06-04 08:45:18 +00006240 else if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006241 dev_info(&pf->pdev->dev, "ARQ event error %d\n", ret);
6242 break;
6243 }
6244
6245 opcode = le16_to_cpu(event.desc.opcode);
6246 switch (opcode) {
6247
6248 case i40e_aqc_opc_get_link_status:
6249 i40e_handle_link_event(pf, &event);
6250 break;
6251 case i40e_aqc_opc_send_msg_to_pf:
6252 ret = i40e_vc_process_vf_msg(pf,
6253 le16_to_cpu(event.desc.retval),
6254 le32_to_cpu(event.desc.cookie_high),
6255 le32_to_cpu(event.desc.cookie_low),
6256 event.msg_buf,
Mitch Williams1001dc32014-11-11 20:02:19 +00006257 event.msg_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006258 break;
6259 case i40e_aqc_opc_lldp_update_mib:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006260 dev_dbg(&pf->pdev->dev, "ARQ: Update LLDP MIB event received\n");
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006261#ifdef CONFIG_I40E_DCB
6262 rtnl_lock();
6263 ret = i40e_handle_lldp_event(pf, &event);
6264 rtnl_unlock();
6265#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006266 break;
6267 case i40e_aqc_opc_event_lan_overflow:
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006268 dev_dbg(&pf->pdev->dev, "ARQ LAN queue overflow event received\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006269 i40e_handle_lan_overflow_event(pf, &event);
6270 break;
Shannon Nelson0467bc92013-12-18 13:45:58 +00006271 case i40e_aqc_opc_send_msg_to_peer:
6272 dev_info(&pf->pdev->dev, "ARQ: Msg from other pf\n");
6273 break;
Shannon Nelson91a0f932015-03-19 14:32:01 -07006274 case i40e_aqc_opc_nvm_erase:
6275 case i40e_aqc_opc_nvm_update:
6276 i40e_debug(&pf->hw, I40E_DEBUG_NVM, "ARQ NVM operation completed\n");
6277 break;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006278 default:
6279 dev_info(&pf->pdev->dev,
Shannon Nelson0467bc92013-12-18 13:45:58 +00006280 "ARQ Error: Unknown event 0x%04x received\n",
6281 opcode);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006282 break;
6283 }
6284 } while (pending && (i++ < pf->adminq_work_limit));
6285
6286 clear_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state);
6287 /* re-enable Admin queue interrupt cause */
6288 val = rd32(hw, I40E_PFINT_ICR0_ENA);
6289 val |= I40E_PFINT_ICR0_ENA_ADMINQ_MASK;
6290 wr32(hw, I40E_PFINT_ICR0_ENA, val);
6291 i40e_flush(hw);
6292
6293 kfree(event.msg_buf);
6294}
6295
6296/**
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006297 * i40e_verify_eeprom - make sure eeprom is good to use
6298 * @pf: board private structure
6299 **/
6300static void i40e_verify_eeprom(struct i40e_pf *pf)
6301{
6302 int err;
6303
6304 err = i40e_diag_eeprom_test(&pf->hw);
6305 if (err) {
6306 /* retry in case of garbage read */
6307 err = i40e_diag_eeprom_test(&pf->hw);
6308 if (err) {
6309 dev_info(&pf->pdev->dev, "eeprom check failed (%d), Tx/Rx traffic disabled\n",
6310 err);
6311 set_bit(__I40E_BAD_EEPROM, &pf->state);
6312 }
6313 }
6314
6315 if (!err && test_bit(__I40E_BAD_EEPROM, &pf->state)) {
6316 dev_info(&pf->pdev->dev, "eeprom check passed, Tx/Rx traffic enabled\n");
6317 clear_bit(__I40E_BAD_EEPROM, &pf->state);
6318 }
6319}
6320
6321/**
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006322 * i40e_enable_pf_switch_lb
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006323 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006324 *
6325 * enable switch loop back or die - no point in a return value
6326 **/
6327static void i40e_enable_pf_switch_lb(struct i40e_pf *pf)
6328{
6329 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6330 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006331 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006332
6333 ctxt.seid = pf->main_vsi_seid;
6334 ctxt.pf_num = pf->hw.pf_id;
6335 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006336 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6337 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006338 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006339 "couldn't get PF vsi config, err %s aq_err %s\n",
6340 i40e_stat_str(&pf->hw, ret),
6341 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006342 return;
6343 }
6344 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6345 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6346 ctxt.info.switch_id |= cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6347
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006348 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6349 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006350 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006351 "update vsi switch failed, err %s aq_err %s\n",
6352 i40e_stat_str(&pf->hw, ret),
6353 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006354 }
6355}
6356
6357/**
6358 * i40e_disable_pf_switch_lb
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006359 * @pf: pointer to the PF structure
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006360 *
6361 * disable switch loop back or die - no point in a return value
6362 **/
6363static void i40e_disable_pf_switch_lb(struct i40e_pf *pf)
6364{
6365 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
6366 struct i40e_vsi_context ctxt;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006367 int ret;
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006368
6369 ctxt.seid = pf->main_vsi_seid;
6370 ctxt.pf_num = pf->hw.pf_id;
6371 ctxt.vf_num = 0;
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006372 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
6373 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006374 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006375 "couldn't get PF vsi config, err %s aq_err %s\n",
6376 i40e_stat_str(&pf->hw, ret),
6377 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006378 return;
6379 }
6380 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
6381 ctxt.info.valid_sections = cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
6382 ctxt.info.switch_id &= ~cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
6383
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006384 ret = i40e_aq_update_vsi_params(&vsi->back->hw, &ctxt, NULL);
6385 if (ret) {
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006386 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006387 "update vsi switch failed, err %s aq_err %s\n",
6388 i40e_stat_str(&pf->hw, ret),
6389 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Akeem G Abodunrin386a0af2015-02-27 09:15:25 +00006390 }
6391}
6392
6393/**
Neerav Parikh51616012015-02-06 08:52:14 +00006394 * i40e_config_bridge_mode - Configure the HW bridge mode
6395 * @veb: pointer to the bridge instance
6396 *
6397 * Configure the loop back mode for the LAN VSI that is downlink to the
6398 * specified HW bridge instance. It is expected this function is called
6399 * when a new HW bridge is instantiated.
6400 **/
6401static void i40e_config_bridge_mode(struct i40e_veb *veb)
6402{
6403 struct i40e_pf *pf = veb->pf;
6404
Shannon Nelson6dec1012015-09-28 14:12:30 -04006405 if (pf->hw.debug_mask & I40E_DEBUG_LAN)
6406 dev_info(&pf->pdev->dev, "enabling bridge mode: %s\n",
6407 veb->bridge_mode == BRIDGE_MODE_VEPA ? "VEPA" : "VEB");
Neerav Parikh51616012015-02-06 08:52:14 +00006408 if (veb->bridge_mode & BRIDGE_MODE_VEPA)
6409 i40e_disable_pf_switch_lb(pf);
6410 else
6411 i40e_enable_pf_switch_lb(pf);
6412}
6413
6414/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006415 * i40e_reconstitute_veb - rebuild the VEB and anything connected to it
6416 * @veb: pointer to the VEB instance
6417 *
6418 * This is a recursive function that first builds the attached VSIs then
6419 * recurses in to build the next layer of VEB. We track the connections
6420 * through our own index numbers because the seid's from the HW could
6421 * change across the reset.
6422 **/
6423static int i40e_reconstitute_veb(struct i40e_veb *veb)
6424{
6425 struct i40e_vsi *ctl_vsi = NULL;
6426 struct i40e_pf *pf = veb->pf;
6427 int v, veb_idx;
6428 int ret;
6429
6430 /* build VSI that owns this VEB, temporarily attached to base VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006431 for (v = 0; v < pf->num_alloc_vsi && !ctl_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006432 if (pf->vsi[v] &&
6433 pf->vsi[v]->veb_idx == veb->idx &&
6434 pf->vsi[v]->flags & I40E_VSI_FLAG_VEB_OWNER) {
6435 ctl_vsi = pf->vsi[v];
6436 break;
6437 }
6438 }
6439 if (!ctl_vsi) {
6440 dev_info(&pf->pdev->dev,
6441 "missing owner VSI for veb_idx %d\n", veb->idx);
6442 ret = -ENOENT;
6443 goto end_reconstitute;
6444 }
6445 if (ctl_vsi != pf->vsi[pf->lan_vsi])
6446 ctl_vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
6447 ret = i40e_add_vsi(ctl_vsi);
6448 if (ret) {
6449 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006450 "rebuild of veb_idx %d owner VSI failed: %d\n",
6451 veb->idx, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006452 goto end_reconstitute;
6453 }
6454 i40e_vsi_reset_stats(ctl_vsi);
6455
6456 /* create the VEB in the switch and move the VSI onto the VEB */
6457 ret = i40e_add_veb(veb, ctl_vsi);
6458 if (ret)
6459 goto end_reconstitute;
6460
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07006461 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
6462 veb->bridge_mode = BRIDGE_MODE_VEB;
6463 else
6464 veb->bridge_mode = BRIDGE_MODE_VEPA;
Neerav Parikh51616012015-02-06 08:52:14 +00006465 i40e_config_bridge_mode(veb);
Anjali Singhai Jainb64ba082014-11-13 03:06:15 +00006466
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006467 /* create the remaining VSIs attached to this VEB */
Mitch Williams505682c2014-05-20 08:01:37 +00006468 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006469 if (!pf->vsi[v] || pf->vsi[v] == ctl_vsi)
6470 continue;
6471
6472 if (pf->vsi[v]->veb_idx == veb->idx) {
6473 struct i40e_vsi *vsi = pf->vsi[v];
Jesse Brandeburg6995b362015-08-28 17:55:54 -04006474
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006475 vsi->uplink_seid = veb->seid;
6476 ret = i40e_add_vsi(vsi);
6477 if (ret) {
6478 dev_info(&pf->pdev->dev,
6479 "rebuild of vsi_idx %d failed: %d\n",
6480 v, ret);
6481 goto end_reconstitute;
6482 }
6483 i40e_vsi_reset_stats(vsi);
6484 }
6485 }
6486
6487 /* create any VEBs attached to this VEB - RECURSION */
6488 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
6489 if (pf->veb[veb_idx] && pf->veb[veb_idx]->veb_idx == veb->idx) {
6490 pf->veb[veb_idx]->uplink_seid = veb->seid;
6491 ret = i40e_reconstitute_veb(pf->veb[veb_idx]);
6492 if (ret)
6493 break;
6494 }
6495 }
6496
6497end_reconstitute:
6498 return ret;
6499}
6500
6501/**
6502 * i40e_get_capabilities - get info about the HW
6503 * @pf: the PF struct
6504 **/
6505static int i40e_get_capabilities(struct i40e_pf *pf)
6506{
6507 struct i40e_aqc_list_capabilities_element_resp *cap_buf;
6508 u16 data_size;
6509 int buf_len;
6510 int err;
6511
6512 buf_len = 40 * sizeof(struct i40e_aqc_list_capabilities_element_resp);
6513 do {
6514 cap_buf = kzalloc(buf_len, GFP_KERNEL);
6515 if (!cap_buf)
6516 return -ENOMEM;
6517
6518 /* this loads the data into the hw struct for us */
6519 err = i40e_aq_discover_capabilities(&pf->hw, cap_buf, buf_len,
6520 &data_size,
6521 i40e_aqc_opc_list_func_capabilities,
6522 NULL);
6523 /* data loaded, buffer no longer needed */
6524 kfree(cap_buf);
6525
6526 if (pf->hw.aq.asq_last_status == I40E_AQ_RC_ENOMEM) {
6527 /* retry with a larger buffer */
6528 buf_len = data_size;
6529 } else if (pf->hw.aq.asq_last_status != I40E_AQ_RC_OK) {
6530 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006531 "capability discovery failed, err %s aq_err %s\n",
6532 i40e_stat_str(&pf->hw, err),
6533 i40e_aq_str(&pf->hw,
6534 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006535 return -ENODEV;
6536 }
6537 } while (err);
6538
6539 if (pf->hw.debug_mask & I40E_DEBUG_USER)
6540 dev_info(&pf->pdev->dev,
6541 "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",
6542 pf->hw.pf_id, pf->hw.func_caps.num_vfs,
6543 pf->hw.func_caps.num_msix_vectors,
6544 pf->hw.func_caps.num_msix_vectors_vf,
6545 pf->hw.func_caps.fd_filters_guaranteed,
6546 pf->hw.func_caps.fd_filters_best_effort,
6547 pf->hw.func_caps.num_tx_qp,
6548 pf->hw.func_caps.num_vsis);
6549
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00006550#define DEF_NUM_VSI (1 + (pf->hw.func_caps.fcoe ? 1 : 0) \
6551 + pf->hw.func_caps.num_vfs)
6552 if (pf->hw.revision_id == 0 && (DEF_NUM_VSI > pf->hw.func_caps.num_vsis)) {
6553 dev_info(&pf->pdev->dev,
6554 "got num_vsis %d, setting num_vsis to %d\n",
6555 pf->hw.func_caps.num_vsis, DEF_NUM_VSI);
6556 pf->hw.func_caps.num_vsis = DEF_NUM_VSI;
6557 }
6558
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006559 return 0;
6560}
6561
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006562static int i40e_vsi_clear(struct i40e_vsi *vsi);
6563
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006564/**
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006565 * i40e_fdir_sb_setup - initialize the Flow Director resources for Sideband
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006566 * @pf: board private structure
6567 **/
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006568static void i40e_fdir_sb_setup(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006569{
6570 struct i40e_vsi *vsi;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006571 int i;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006572
Jesse Brandeburg407e0632014-06-03 23:50:12 +00006573 /* quick workaround for an NVM issue that leaves a critical register
6574 * uninitialized
6575 */
6576 if (!rd32(&pf->hw, I40E_GLQF_HKEY(0))) {
6577 static const u32 hkey[] = {
6578 0xe640d33f, 0xcdfe98ab, 0x73fa7161, 0x0d7a7d36,
6579 0xeacb7d61, 0xaa4f05b6, 0x9c5c89ed, 0xfc425ddb,
6580 0xa4654832, 0xfc7461d4, 0x8f827619, 0xf5c63c21,
6581 0x95b3a76d};
6582
6583 for (i = 0; i <= I40E_GLQF_HKEY_MAX_INDEX; i++)
6584 wr32(&pf->hw, I40E_GLQF_HKEY(i), hkey[i]);
6585 }
6586
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006587 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006588 return;
6589
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006590 /* find existing VSI and see if it needs configuring */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006591 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +00006592 for (i = 0; i < pf->num_alloc_vsi; i++) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006593 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006594 vsi = pf->vsi[i];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006595 break;
6596 }
6597 }
6598
6599 /* create a new VSI if none exists */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006600 if (!vsi) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006601 vsi = i40e_vsi_setup(pf, I40E_VSI_FDIR,
6602 pf->vsi[pf->lan_vsi]->seid, 0);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006603 if (!vsi) {
6604 dev_info(&pf->pdev->dev, "Couldn't create FDir VSI\n");
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006605 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
6606 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006607 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006608 }
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +00006609
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08006610 i40e_vsi_setup_irqhandler(vsi, i40e_fdir_clean_ring);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006611}
6612
6613/**
6614 * i40e_fdir_teardown - release the Flow Director resources
6615 * @pf: board private structure
6616 **/
6617static void i40e_fdir_teardown(struct i40e_pf *pf)
6618{
6619 int i;
6620
Joseph Gasparakis17a73f62014-02-12 01:45:30 +00006621 i40e_fdir_filter_exit(pf);
Mitch Williams505682c2014-05-20 08:01:37 +00006622 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006623 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
6624 i40e_vsi_release(pf->vsi[i]);
6625 break;
6626 }
6627 }
6628}
6629
6630/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006631 * i40e_prep_for_reset - prep for the core to reset
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006632 * @pf: board private structure
6633 *
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006634 * Close up the VFs and other things in prep for PF Reset.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006635 **/
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006636static void i40e_prep_for_reset(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006637{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006638 struct i40e_hw *hw = &pf->hw;
Shannon Nelson60442de2014-04-23 04:50:13 +00006639 i40e_status ret = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006640 u32 v;
6641
6642 clear_bit(__I40E_RESET_INTR_RECEIVED, &pf->state);
6643 if (test_and_set_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state))
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006644 return;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006645
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006646 dev_dbg(&pf->pdev->dev, "Tearing down internal switch for reset\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006647
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006648 /* quiesce the VSIs and their queues that are not already DOWN */
6649 i40e_pf_quiesce_all_vsi(pf);
6650
Mitch Williams505682c2014-05-20 08:01:37 +00006651 for (v = 0; v < pf->num_alloc_vsi; v++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006652 if (pf->vsi[v])
6653 pf->vsi[v]->seid = 0;
6654 }
6655
6656 i40e_shutdown_adminq(&pf->hw);
6657
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006658 /* call shutdown HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +00006659 if (hw->hmc.hmc_obj) {
6660 ret = i40e_shutdown_lan_hmc(hw);
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006661 if (ret)
Shannon Nelson60442de2014-04-23 04:50:13 +00006662 dev_warn(&pf->pdev->dev,
6663 "shutdown_lan_hmc failed: %d\n", ret);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006664 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006665}
6666
6667/**
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006668 * i40e_send_version - update firmware with driver version
6669 * @pf: PF struct
6670 */
6671static void i40e_send_version(struct i40e_pf *pf)
6672{
6673 struct i40e_driver_version dv;
6674
6675 dv.major_version = DRV_VERSION_MAJOR;
6676 dv.minor_version = DRV_VERSION_MINOR;
6677 dv.build_version = DRV_VERSION_BUILD;
6678 dv.subbuild_version = 0;
Rickard Strandqvist35a7d802014-07-29 09:26:25 +00006679 strlcpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006680 i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
6681}
6682
6683/**
Jesse Brandeburg4dda12e2013-12-18 13:46:01 +00006684 * i40e_reset_and_rebuild - reset and rebuild using a saved config
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006685 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006686 * @reinit: if the Main VSI needs to re-initialized.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006687 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006688static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006689{
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006690 struct i40e_hw *hw = &pf->hw;
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006691 u8 set_fc_aq_fail = 0;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006692 i40e_status ret;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006693 u32 val;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006694 u32 v;
6695
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006696 /* Now we wait for GRST to settle out.
6697 * We don't have to delete the VEBs or VSIs from the hw switch
6698 * because the reset will make them disappear.
6699 */
6700 ret = i40e_pf_reset(hw);
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006701 if (ret) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006702 dev_info(&pf->pdev->dev, "PF reset failed, %d\n", ret);
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006703 set_bit(__I40E_RESET_FAILED, &pf->state);
6704 goto clear_recovery;
Akeem G Abodunrinb5565402014-04-09 05:59:04 +00006705 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006706 pf->pfr_count++;
6707
6708 if (test_bit(__I40E_DOWN, &pf->state))
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006709 goto clear_recovery;
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006710 dev_dbg(&pf->pdev->dev, "Rebuilding internal switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006711
6712 /* rebuild the basics for the AdminQ, HMC, and initial HW switch */
6713 ret = i40e_init_adminq(&pf->hw);
6714 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006715 dev_info(&pf->pdev->dev, "Rebuild AdminQ failed, err %s aq_err %s\n",
6716 i40e_stat_str(&pf->hw, ret),
6717 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006718 goto clear_recovery;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006719 }
6720
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006721 /* re-verify the eeprom if we just had an EMP reset */
Anjali Singhai Jain9df42d12015-01-24 09:58:40 +00006722 if (test_and_clear_bit(__I40E_EMP_RESET_INTR_RECEIVED, &pf->state))
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006723 i40e_verify_eeprom(pf);
Shannon Nelson4eb3f762014-03-06 08:59:58 +00006724
Shannon Nelsone78ac4bf2014-05-10 04:49:09 +00006725 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006726 ret = i40e_get_capabilities(pf);
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006727 if (ret)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006728 goto end_core_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006729
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006730 ret = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
6731 hw->func_caps.num_rx_qp,
6732 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
6733 if (ret) {
6734 dev_info(&pf->pdev->dev, "init_lan_hmc failed: %d\n", ret);
6735 goto end_core_reset;
6736 }
6737 ret = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
6738 if (ret) {
6739 dev_info(&pf->pdev->dev, "configure_lan_hmc failed: %d\n", ret);
6740 goto end_core_reset;
6741 }
6742
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006743#ifdef CONFIG_I40E_DCB
6744 ret = i40e_init_pf_dcb(pf);
6745 if (ret) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +00006746 dev_info(&pf->pdev->dev, "DCB init failed %d, disabled\n", ret);
6747 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
6748 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006749 }
6750#endif /* CONFIG_I40E_DCB */
Vasu Dev38e00432014-08-01 13:27:03 -07006751#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04006752 i40e_init_pf_fcoe(pf);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08006753
Vasu Dev38e00432014-08-01 13:27:03 -07006754#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006755 /* do basic switch setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00006756 ret = i40e_setup_pf_switch(pf, reinit);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006757 if (ret)
6758 goto end_core_reset;
6759
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006760 /* driver is only interested in link up/down and module qualification
6761 * reports from firmware
6762 */
6763 ret = i40e_aq_set_phy_int_mask(&pf->hw,
6764 I40E_AQ_EVENT_LINK_UPDOWN |
6765 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
6766 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006767 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
6768 i40e_stat_str(&pf->hw, ret),
6769 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +00006770
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006771 /* make sure our flow control settings are restored */
6772 ret = i40e_set_fc(&pf->hw, &set_fc_aq_fail, true);
6773 if (ret)
Neerav Parikh8279e492015-09-03 17:18:50 -04006774 dev_dbg(&pf->pdev->dev, "setting flow control: ret = %s last_status = %s\n",
6775 i40e_stat_str(&pf->hw, ret),
6776 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006777
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006778 /* Rebuild the VSIs and VEBs that existed before reset.
6779 * They are still in our local switch element arrays, so only
6780 * need to rebuild the switch model in the HW.
6781 *
6782 * If there were VEBs but the reconstitution failed, we'll try
6783 * try to recover minimal use by getting the basic PF VSI working.
6784 */
6785 if (pf->vsi[pf->lan_vsi]->uplink_seid != pf->mac_seid) {
Jesse Brandeburg69bfb112014-02-11 08:24:13 +00006786 dev_dbg(&pf->pdev->dev, "attempting to rebuild switch\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006787 /* find the one VEB connected to the MAC, and find orphans */
6788 for (v = 0; v < I40E_MAX_VEB; v++) {
6789 if (!pf->veb[v])
6790 continue;
6791
6792 if (pf->veb[v]->uplink_seid == pf->mac_seid ||
6793 pf->veb[v]->uplink_seid == 0) {
6794 ret = i40e_reconstitute_veb(pf->veb[v]);
6795
6796 if (!ret)
6797 continue;
6798
6799 /* If Main VEB failed, we're in deep doodoo,
6800 * so give up rebuilding the switch and set up
6801 * for minimal rebuild of PF VSI.
6802 * If orphan failed, we'll report the error
6803 * but try to keep going.
6804 */
6805 if (pf->veb[v]->uplink_seid == pf->mac_seid) {
6806 dev_info(&pf->pdev->dev,
6807 "rebuild of switch failed: %d, will try to set up simple PF connection\n",
6808 ret);
6809 pf->vsi[pf->lan_vsi]->uplink_seid
6810 = pf->mac_seid;
6811 break;
6812 } else if (pf->veb[v]->uplink_seid == 0) {
6813 dev_info(&pf->pdev->dev,
6814 "rebuild of orphan VEB failed: %d\n",
6815 ret);
6816 }
6817 }
6818 }
6819 }
6820
6821 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
Shannon Nelsoncde4cbc2014-06-04 01:23:17 +00006822 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006823 /* no VEB, so rebuild only the Main VSI */
6824 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
6825 if (ret) {
6826 dev_info(&pf->pdev->dev,
6827 "rebuild of Main VSI failed: %d\n", ret);
6828 goto end_core_reset;
6829 }
6830 }
6831
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -04006832 /* Reconfigure hardware for allowing smaller MSS in the case
6833 * of TSO, so that we avoid the MDD being fired and causing
6834 * a reset in the case of small MSS+TSO.
6835 */
6836#define I40E_REG_MSS 0x000E64DC
6837#define I40E_REG_MSS_MIN_MASK 0x3FF0000
6838#define I40E_64BYTE_MSS 0x400000
6839 val = rd32(hw, I40E_REG_MSS);
6840 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
6841 val &= ~I40E_REG_MSS_MIN_MASK;
6842 val |= I40E_64BYTE_MSS;
6843 wr32(hw, I40E_REG_MSS, val);
6844 }
6845
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +00006846 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
6847 (pf->hw.aq.fw_maj_ver < 4)) {
6848 msleep(75);
6849 ret = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
6850 if (ret)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04006851 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
6852 i40e_stat_str(&pf->hw, ret),
6853 i40e_aq_str(&pf->hw,
6854 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +00006855 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006856 /* reinit the misc interrupt */
6857 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
6858 ret = i40e_setup_misc_vector(pf);
6859
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -04006860 /* Add a filter to drop all Flow control frames from any VSI from being
6861 * transmitted. By doing so we stop a malicious VF from sending out
6862 * PAUSE or PFC frames and potentially controlling traffic for other
6863 * PF/VF VSIs.
6864 * The FW can still send Flow control frames if enabled.
6865 */
6866 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
6867 pf->main_vsi_seid);
6868
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006869 /* restart the VSIs that were rebuilt and running before the reset */
6870 i40e_pf_unquiesce_all_vsi(pf);
6871
Mitch Williams69f64b22014-02-13 03:48:46 -08006872 if (pf->num_alloc_vfs) {
6873 for (v = 0; v < pf->num_alloc_vfs; v++)
6874 i40e_reset_vf(&pf->vf[v], true);
6875 }
6876
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006877 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +00006878 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006879
6880end_core_reset:
Anjali Singhai Jaina316f652014-07-12 07:28:25 +00006881 clear_bit(__I40E_RESET_FAILED, &pf->state);
6882clear_recovery:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006883 clear_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state);
6884}
6885
6886/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006887 * i40e_handle_reset_warning - prep for the PF to reset, reset and rebuild
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006888 * @pf: board private structure
6889 *
6890 * Close up the VFs and other things in prep for a Core Reset,
6891 * then get ready to rebuild the world.
6892 **/
6893static void i40e_handle_reset_warning(struct i40e_pf *pf)
6894{
Shannon Nelson23cfbe02014-06-04 01:23:14 +00006895 i40e_prep_for_reset(pf);
6896 i40e_reset_and_rebuild(pf, false);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00006897}
6898
6899/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006900 * i40e_handle_mdd_event
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006901 * @pf: pointer to the PF structure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006902 *
6903 * Called from the MDD irq handler to identify possibly malicious vfs
6904 **/
6905static void i40e_handle_mdd_event(struct i40e_pf *pf)
6906{
6907 struct i40e_hw *hw = &pf->hw;
6908 bool mdd_detected = false;
Neerav Parikhdf430b12014-06-04 01:23:15 +00006909 bool pf_mdd_detected = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006910 struct i40e_vf *vf;
6911 u32 reg;
6912 int i;
6913
6914 if (!test_bit(__I40E_MDD_EVENT_PENDING, &pf->state))
6915 return;
6916
6917 /* find what triggered the MDD event */
6918 reg = rd32(hw, I40E_GL_MDET_TX);
6919 if (reg & I40E_GL_MDET_TX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006920 u8 pf_num = (reg & I40E_GL_MDET_TX_PF_NUM_MASK) >>
6921 I40E_GL_MDET_TX_PF_NUM_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006922 u16 vf_num = (reg & I40E_GL_MDET_TX_VF_NUM_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006923 I40E_GL_MDET_TX_VF_NUM_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006924 u8 event = (reg & I40E_GL_MDET_TX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006925 I40E_GL_MDET_TX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006926 u16 queue = ((reg & I40E_GL_MDET_TX_QUEUE_MASK) >>
6927 I40E_GL_MDET_TX_QUEUE_SHIFT) -
6928 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006929 if (netif_msg_tx_err(pf))
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00006930 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 +00006931 event, queue, pf_num, vf_num);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006932 wr32(hw, I40E_GL_MDET_TX, 0xffffffff);
6933 mdd_detected = true;
6934 }
6935 reg = rd32(hw, I40E_GL_MDET_RX);
6936 if (reg & I40E_GL_MDET_RX_VALID_MASK) {
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006937 u8 func = (reg & I40E_GL_MDET_RX_FUNCTION_MASK) >>
6938 I40E_GL_MDET_RX_FUNCTION_SHIFT;
Dan Carpenter013f6572014-10-22 20:06:29 -07006939 u8 event = (reg & I40E_GL_MDET_RX_EVENT_MASK) >>
Anjali Singhai Jain4c33f832014-06-05 00:18:21 +00006940 I40E_GL_MDET_RX_EVENT_SHIFT;
Mitch Williams2089ad02014-10-17 03:14:53 +00006941 u16 queue = ((reg & I40E_GL_MDET_RX_QUEUE_MASK) >>
6942 I40E_GL_MDET_RX_QUEUE_SHIFT) -
6943 pf->hw.func_caps.base_queue;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006944 if (netif_msg_rx_err(pf))
6945 dev_info(&pf->pdev->dev, "Malicious Driver Detection event 0x%02x on RX queue %d of function 0x%02x\n",
6946 event, queue, func);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006947 wr32(hw, I40E_GL_MDET_RX, 0xffffffff);
6948 mdd_detected = true;
6949 }
6950
Neerav Parikhdf430b12014-06-04 01:23:15 +00006951 if (mdd_detected) {
6952 reg = rd32(hw, I40E_PF_MDET_TX);
6953 if (reg & I40E_PF_MDET_TX_VALID_MASK) {
6954 wr32(hw, I40E_PF_MDET_TX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006955 dev_info(&pf->pdev->dev, "TX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006956 pf_mdd_detected = true;
6957 }
6958 reg = rd32(hw, I40E_PF_MDET_RX);
6959 if (reg & I40E_PF_MDET_RX_VALID_MASK) {
6960 wr32(hw, I40E_PF_MDET_RX, 0xFFFF);
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006961 dev_info(&pf->pdev->dev, "RX driver issue detected, PF reset issued\n");
Neerav Parikhdf430b12014-06-04 01:23:15 +00006962 pf_mdd_detected = true;
6963 }
6964 /* Queue belongs to the PF, initiate a reset */
6965 if (pf_mdd_detected) {
6966 set_bit(__I40E_PF_RESET_REQUESTED, &pf->state);
6967 i40e_service_event_schedule(pf);
6968 }
6969 }
6970
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006971 /* see if one of the VFs needs its hand slapped */
6972 for (i = 0; i < pf->num_alloc_vfs && mdd_detected; i++) {
6973 vf = &(pf->vf[i]);
6974 reg = rd32(hw, I40E_VP_MDET_TX(i));
6975 if (reg & I40E_VP_MDET_TX_VALID_MASK) {
6976 wr32(hw, I40E_VP_MDET_TX(i), 0xFFFF);
6977 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006978 dev_info(&pf->pdev->dev, "TX driver issue detected on VF %d\n",
6979 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006980 }
6981
6982 reg = rd32(hw, I40E_VP_MDET_RX(i));
6983 if (reg & I40E_VP_MDET_RX_VALID_MASK) {
6984 wr32(hw, I40E_VP_MDET_RX(i), 0xFFFF);
6985 vf->num_mdd_events++;
Jesse Brandeburgfaf32972014-07-12 07:28:21 +00006986 dev_info(&pf->pdev->dev, "RX driver issue detected on VF %d\n",
6987 i);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00006988 }
6989
6990 if (vf->num_mdd_events > I40E_DEFAULT_NUM_MDD_EVENTS_ALLOWED) {
6991 dev_info(&pf->pdev->dev,
6992 "Too many MDD events on VF %d, disabled\n", i);
6993 dev_info(&pf->pdev->dev,
6994 "Use PF Control I/F to re-enable the VF\n");
6995 set_bit(I40E_VF_STAT_DISABLED, &vf->vf_states);
6996 }
6997 }
6998
6999 /* re-enable mdd interrupt cause */
7000 clear_bit(__I40E_MDD_EVENT_PENDING, &pf->state);
7001 reg = rd32(hw, I40E_PFINT_ICR0_ENA);
7002 reg |= I40E_PFINT_ICR0_ENA_MAL_DETECT_MASK;
7003 wr32(hw, I40E_PFINT_ICR0_ENA, reg);
7004 i40e_flush(hw);
7005}
7006
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007007#ifdef CONFIG_I40E_VXLAN
7008/**
7009 * i40e_sync_vxlan_filters_subtask - Sync the VSI filter list with HW
7010 * @pf: board private structure
7011 **/
7012static void i40e_sync_vxlan_filters_subtask(struct i40e_pf *pf)
7013{
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007014 struct i40e_hw *hw = &pf->hw;
7015 i40e_status ret;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007016 __be16 port;
7017 int i;
7018
7019 if (!(pf->flags & I40E_FLAG_VXLAN_FILTER_SYNC))
7020 return;
7021
7022 pf->flags &= ~I40E_FLAG_VXLAN_FILTER_SYNC;
7023
7024 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04007025 if (pf->pending_vxlan_bitmap & BIT_ULL(i)) {
7026 pf->pending_vxlan_bitmap &= ~BIT_ULL(i);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007027 port = pf->vxlan_ports[i];
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007028 if (port)
7029 ret = i40e_aq_add_udp_tunnel(hw, ntohs(port),
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007030 I40E_AQC_TUNNEL_TYPE_VXLAN,
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007031 NULL, NULL);
7032 else
7033 ret = i40e_aq_del_udp_tunnel(hw, i, NULL);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007034
7035 if (ret) {
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007036 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007037 "%s vxlan port %d, index %d failed, err %s aq_err %s\n",
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07007038 port ? "add" : "delete",
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04007039 ntohs(port), i,
7040 i40e_stat_str(&pf->hw, ret),
7041 i40e_aq_str(&pf->hw,
7042 pf->hw.aq.asq_last_status));
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007043 pf->vxlan_ports[i] = 0;
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007044 }
7045 }
7046 }
7047}
7048
7049#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007050/**
7051 * i40e_service_task - Run the driver's async subtasks
7052 * @work: pointer to work_struct containing our data
7053 **/
7054static void i40e_service_task(struct work_struct *work)
7055{
7056 struct i40e_pf *pf = container_of(work,
7057 struct i40e_pf,
7058 service_task);
7059 unsigned long start_time = jiffies;
7060
Shannon Nelsone57a2fe2014-06-03 23:50:19 +00007061 /* don't bother with service tasks if a reset is in progress */
7062 if (test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7063 i40e_service_event_complete(pf);
7064 return;
7065 }
7066
Kiran Patilb03a8c12015-09-24 18:13:15 -04007067 i40e_detect_recover_hung(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007068 i40e_reset_subtask(pf);
7069 i40e_handle_mdd_event(pf);
7070 i40e_vc_process_vflr_event(pf);
7071 i40e_watchdog_subtask(pf);
7072 i40e_fdir_reinit_subtask(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007073 i40e_sync_filters_subtask(pf);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00007074#ifdef CONFIG_I40E_VXLAN
7075 i40e_sync_vxlan_filters_subtask(pf);
7076#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007077 i40e_clean_adminq_subtask(pf);
7078
7079 i40e_service_event_complete(pf);
7080
7081 /* If the tasks have taken longer than one timer cycle or there
7082 * is more work to be done, reschedule the service task now
7083 * rather than wait for the timer to tick again.
7084 */
7085 if (time_after(jiffies, (start_time + pf->service_timer_period)) ||
7086 test_bit(__I40E_ADMINQ_EVENT_PENDING, &pf->state) ||
7087 test_bit(__I40E_MDD_EVENT_PENDING, &pf->state) ||
7088 test_bit(__I40E_VFLR_EVENT_PENDING, &pf->state))
7089 i40e_service_event_schedule(pf);
7090}
7091
7092/**
7093 * i40e_service_timer - timer callback
7094 * @data: pointer to PF struct
7095 **/
7096static void i40e_service_timer(unsigned long data)
7097{
7098 struct i40e_pf *pf = (struct i40e_pf *)data;
7099
7100 mod_timer(&pf->service_timer,
7101 round_jiffies(jiffies + pf->service_timer_period));
7102 i40e_service_event_schedule(pf);
7103}
7104
7105/**
7106 * i40e_set_num_rings_in_vsi - Determine number of rings in the VSI
7107 * @vsi: the VSI being configured
7108 **/
7109static int i40e_set_num_rings_in_vsi(struct i40e_vsi *vsi)
7110{
7111 struct i40e_pf *pf = vsi->back;
7112
7113 switch (vsi->type) {
7114 case I40E_VSI_MAIN:
7115 vsi->alloc_queue_pairs = pf->num_lan_qps;
7116 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7117 I40E_REQ_DESCRIPTOR_MULTIPLE);
7118 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7119 vsi->num_q_vectors = pf->num_lan_msix;
7120 else
7121 vsi->num_q_vectors = 1;
7122
7123 break;
7124
7125 case I40E_VSI_FDIR:
7126 vsi->alloc_queue_pairs = 1;
7127 vsi->num_desc = ALIGN(I40E_FDIR_RING_COUNT,
7128 I40E_REQ_DESCRIPTOR_MULTIPLE);
7129 vsi->num_q_vectors = 1;
7130 break;
7131
7132 case I40E_VSI_VMDQ2:
7133 vsi->alloc_queue_pairs = pf->num_vmdq_qps;
7134 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7135 I40E_REQ_DESCRIPTOR_MULTIPLE);
7136 vsi->num_q_vectors = pf->num_vmdq_msix;
7137 break;
7138
7139 case I40E_VSI_SRIOV:
7140 vsi->alloc_queue_pairs = pf->num_vf_qps;
7141 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7142 I40E_REQ_DESCRIPTOR_MULTIPLE);
7143 break;
7144
Vasu Dev38e00432014-08-01 13:27:03 -07007145#ifdef I40E_FCOE
7146 case I40E_VSI_FCOE:
7147 vsi->alloc_queue_pairs = pf->num_fcoe_qps;
7148 vsi->num_desc = ALIGN(I40E_DEFAULT_NUM_DESCRIPTORS,
7149 I40E_REQ_DESCRIPTOR_MULTIPLE);
7150 vsi->num_q_vectors = pf->num_fcoe_msix;
7151 break;
7152
7153#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007154 default:
7155 WARN_ON(1);
7156 return -ENODATA;
7157 }
7158
7159 return 0;
7160}
7161
7162/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007163 * i40e_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the vsi
7164 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007165 * @alloc_qvectors: a bool to specify if q_vectors need to be allocated.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007166 *
7167 * On error: returns error code (negative)
7168 * On success: returns 0
7169 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007170static int i40e_vsi_alloc_arrays(struct i40e_vsi *vsi, bool alloc_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007171{
7172 int size;
7173 int ret = 0;
7174
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007175 /* allocate memory for both Tx and Rx ring pointers */
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007176 size = sizeof(struct i40e_ring *) * vsi->alloc_queue_pairs * 2;
7177 vsi->tx_rings = kzalloc(size, GFP_KERNEL);
7178 if (!vsi->tx_rings)
7179 return -ENOMEM;
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007180 vsi->rx_rings = &vsi->tx_rings[vsi->alloc_queue_pairs];
7181
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007182 if (alloc_qvectors) {
7183 /* allocate memory for q_vector pointers */
Julia Lawallf57e4fb2014-07-30 03:11:09 +00007184 size = sizeof(struct i40e_q_vector *) * vsi->num_q_vectors;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007185 vsi->q_vectors = kzalloc(size, GFP_KERNEL);
7186 if (!vsi->q_vectors) {
7187 ret = -ENOMEM;
7188 goto err_vectors;
7189 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007190 }
7191 return ret;
7192
7193err_vectors:
7194 kfree(vsi->tx_rings);
7195 return ret;
7196}
7197
7198/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007199 * i40e_vsi_mem_alloc - Allocates the next available struct vsi in the PF
7200 * @pf: board private structure
7201 * @type: type of VSI
7202 *
7203 * On error: returns error code (negative)
7204 * On success: returns vsi index in PF (positive)
7205 **/
7206static int i40e_vsi_mem_alloc(struct i40e_pf *pf, enum i40e_vsi_type type)
7207{
7208 int ret = -ENODEV;
7209 struct i40e_vsi *vsi;
7210 int vsi_idx;
7211 int i;
7212
7213 /* Need to protect the allocation of the VSIs at the PF level */
7214 mutex_lock(&pf->switch_mutex);
7215
7216 /* VSI list may be fragmented if VSI creation/destruction has
7217 * been happening. We can afford to do a quick scan to look
7218 * for any free VSIs in the list.
7219 *
7220 * find next empty vsi slot, looping back around if necessary
7221 */
7222 i = pf->next_vsi;
Mitch Williams505682c2014-05-20 08:01:37 +00007223 while (i < pf->num_alloc_vsi && pf->vsi[i])
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007224 i++;
Mitch Williams505682c2014-05-20 08:01:37 +00007225 if (i >= pf->num_alloc_vsi) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007226 i = 0;
7227 while (i < pf->next_vsi && pf->vsi[i])
7228 i++;
7229 }
7230
Mitch Williams505682c2014-05-20 08:01:37 +00007231 if (i < pf->num_alloc_vsi && !pf->vsi[i]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007232 vsi_idx = i; /* Found one! */
7233 } else {
7234 ret = -ENODEV;
Alexander Duyck493fb302013-09-28 07:01:44 +00007235 goto unlock_pf; /* out of VSI slots! */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007236 }
7237 pf->next_vsi = ++i;
7238
7239 vsi = kzalloc(sizeof(*vsi), GFP_KERNEL);
7240 if (!vsi) {
7241 ret = -ENOMEM;
Alexander Duyck493fb302013-09-28 07:01:44 +00007242 goto unlock_pf;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007243 }
7244 vsi->type = type;
7245 vsi->back = pf;
7246 set_bit(__I40E_DOWN, &vsi->state);
7247 vsi->flags = 0;
7248 vsi->idx = vsi_idx;
7249 vsi->rx_itr_setting = pf->rx_itr_default;
7250 vsi->tx_itr_setting = pf->tx_itr_default;
Jesse Brandeburgac26fc12015-09-28 14:12:37 -04007251 vsi->int_rate_limit = 0;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00007252 vsi->rss_table_size = (vsi->type == I40E_VSI_MAIN) ?
7253 pf->rss_table_size : 64;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007254 vsi->netdev_registered = false;
7255 vsi->work_limit = I40E_DEFAULT_IRQ_WORK;
7256 INIT_LIST_HEAD(&vsi->mac_filter_list);
Shannon Nelson63741842014-04-23 04:50:16 +00007257 vsi->irqs_ready = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007258
Alexander Duyck9f65e152013-09-28 06:00:58 +00007259 ret = i40e_set_num_rings_in_vsi(vsi);
7260 if (ret)
7261 goto err_rings;
7262
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007263 ret = i40e_vsi_alloc_arrays(vsi, true);
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007264 if (ret)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007265 goto err_rings;
Alexander Duyck493fb302013-09-28 07:01:44 +00007266
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007267 /* Setup default MSIX irq handler for VSI */
7268 i40e_vsi_setup_irqhandler(vsi, i40e_msix_clean_rings);
7269
Kiran Patil21659032015-09-30 14:09:03 -04007270 /* Initialize VSI lock */
7271 spin_lock_init(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007272 pf->vsi[vsi_idx] = vsi;
7273 ret = vsi_idx;
Alexander Duyck493fb302013-09-28 07:01:44 +00007274 goto unlock_pf;
7275
Alexander Duyck9f65e152013-09-28 06:00:58 +00007276err_rings:
Alexander Duyck493fb302013-09-28 07:01:44 +00007277 pf->next_vsi = i - 1;
7278 kfree(vsi);
7279unlock_pf:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007280 mutex_unlock(&pf->switch_mutex);
7281 return ret;
7282}
7283
7284/**
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007285 * i40e_vsi_free_arrays - Free queue and vector pointer arrays for the VSI
7286 * @type: VSI pointer
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007287 * @free_qvectors: a bool to specify if q_vectors need to be freed.
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007288 *
7289 * On error: returns error code (negative)
7290 * On success: returns 0
7291 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007292static void i40e_vsi_free_arrays(struct i40e_vsi *vsi, bool free_qvectors)
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007293{
7294 /* free the ring and vector containers */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007295 if (free_qvectors) {
7296 kfree(vsi->q_vectors);
7297 vsi->q_vectors = NULL;
7298 }
Anjali Singhai Jainf650a382013-11-20 10:02:55 +00007299 kfree(vsi->tx_rings);
7300 vsi->tx_rings = NULL;
7301 vsi->rx_rings = NULL;
7302}
7303
7304/**
Helin Zhang28c58692015-10-26 19:44:27 -04007305 * i40e_clear_rss_config_user - clear the user configured RSS hash keys
7306 * and lookup table
7307 * @vsi: Pointer to VSI structure
7308 */
7309static void i40e_clear_rss_config_user(struct i40e_vsi *vsi)
7310{
7311 if (!vsi)
7312 return;
7313
7314 kfree(vsi->rss_hkey_user);
7315 vsi->rss_hkey_user = NULL;
7316
7317 kfree(vsi->rss_lut_user);
7318 vsi->rss_lut_user = NULL;
7319}
7320
7321/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007322 * i40e_vsi_clear - Deallocate the VSI provided
7323 * @vsi: the VSI being un-configured
7324 **/
7325static int i40e_vsi_clear(struct i40e_vsi *vsi)
7326{
7327 struct i40e_pf *pf;
7328
7329 if (!vsi)
7330 return 0;
7331
7332 if (!vsi->back)
7333 goto free_vsi;
7334 pf = vsi->back;
7335
7336 mutex_lock(&pf->switch_mutex);
7337 if (!pf->vsi[vsi->idx]) {
7338 dev_err(&pf->pdev->dev, "pf->vsi[%d] is NULL, just free vsi[%d](%p,type %d)\n",
7339 vsi->idx, vsi->idx, vsi, vsi->type);
7340 goto unlock_vsi;
7341 }
7342
7343 if (pf->vsi[vsi->idx] != vsi) {
7344 dev_err(&pf->pdev->dev,
7345 "pf->vsi[%d](%p, type %d) != vsi[%d](%p,type %d): no free!\n",
7346 pf->vsi[vsi->idx]->idx,
7347 pf->vsi[vsi->idx],
7348 pf->vsi[vsi->idx]->type,
7349 vsi->idx, vsi, vsi->type);
7350 goto unlock_vsi;
7351 }
7352
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00007353 /* updates the PF for this cleared vsi */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007354 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
7355 i40e_put_lump(pf->irq_pile, vsi->base_vector, vsi->idx);
7356
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00007357 i40e_vsi_free_arrays(vsi, true);
Helin Zhang28c58692015-10-26 19:44:27 -04007358 i40e_clear_rss_config_user(vsi);
Alexander Duyck493fb302013-09-28 07:01:44 +00007359
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007360 pf->vsi[vsi->idx] = NULL;
7361 if (vsi->idx < pf->next_vsi)
7362 pf->next_vsi = vsi->idx;
7363
7364unlock_vsi:
7365 mutex_unlock(&pf->switch_mutex);
7366free_vsi:
7367 kfree(vsi);
7368
7369 return 0;
7370}
7371
7372/**
Alexander Duyck9f65e152013-09-28 06:00:58 +00007373 * i40e_vsi_clear_rings - Deallocates the Rx and Tx rings for the provided VSI
7374 * @vsi: the VSI being cleaned
7375 **/
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007376static void i40e_vsi_clear_rings(struct i40e_vsi *vsi)
Alexander Duyck9f65e152013-09-28 06:00:58 +00007377{
7378 int i;
7379
Greg Rose8e9dca52013-12-18 13:45:53 +00007380 if (vsi->tx_rings && vsi->tx_rings[0]) {
Neerav Parikhd7397642013-11-28 06:39:37 +00007381 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Mitch Williams00403f02013-09-28 07:13:13 +00007382 kfree_rcu(vsi->tx_rings[i], rcu);
7383 vsi->tx_rings[i] = NULL;
7384 vsi->rx_rings[i] = NULL;
7385 }
Shannon Nelsonbe1d5ee2013-11-28 06:39:23 +00007386 }
Alexander Duyck9f65e152013-09-28 06:00:58 +00007387}
7388
7389/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007390 * i40e_alloc_rings - Allocates the Rx and Tx rings for the provided VSI
7391 * @vsi: the VSI being configured
7392 **/
7393static int i40e_alloc_rings(struct i40e_vsi *vsi)
7394{
Akeem G Abodunrine7046ee2014-04-09 05:58:58 +00007395 struct i40e_ring *tx_ring, *rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007396 struct i40e_pf *pf = vsi->back;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007397 int i;
7398
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007399 /* Set basic values in the rings to be used later during open() */
Neerav Parikhd7397642013-11-28 06:39:37 +00007400 for (i = 0; i < vsi->alloc_queue_pairs; i++) {
Shannon Nelsonac6c5e32013-11-20 10:02:57 +00007401 /* allocate space for both Tx and Rx in one shot */
Alexander Duyck9f65e152013-09-28 06:00:58 +00007402 tx_ring = kzalloc(sizeof(struct i40e_ring) * 2, GFP_KERNEL);
7403 if (!tx_ring)
7404 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007405
7406 tx_ring->queue_index = i;
7407 tx_ring->reg_idx = vsi->base_queue + i;
7408 tx_ring->ring_active = false;
7409 tx_ring->vsi = vsi;
7410 tx_ring->netdev = vsi->netdev;
7411 tx_ring->dev = &pf->pdev->dev;
7412 tx_ring->count = vsi->num_desc;
7413 tx_ring->size = 0;
7414 tx_ring->dcb_tc = 0;
Anjali Singhai Jain8e0764b2015-06-05 12:20:30 -04007415 if (vsi->back->flags & I40E_FLAG_WB_ON_ITR_CAPABLE)
7416 tx_ring->flags = I40E_TXR_FLAGS_WB_ON_ITR;
Anjali Singhai Jain527274c2015-06-05 12:20:31 -04007417 if (vsi->back->flags & I40E_FLAG_OUTER_UDP_CSUM_CAPABLE)
7418 tx_ring->flags |= I40E_TXR_FLAGS_OUTER_UDP_CSUM;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007419 vsi->tx_rings[i] = tx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007420
Alexander Duyck9f65e152013-09-28 06:00:58 +00007421 rx_ring = &tx_ring[1];
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007422 rx_ring->queue_index = i;
7423 rx_ring->reg_idx = vsi->base_queue + i;
7424 rx_ring->ring_active = false;
7425 rx_ring->vsi = vsi;
7426 rx_ring->netdev = vsi->netdev;
7427 rx_ring->dev = &pf->pdev->dev;
7428 rx_ring->count = vsi->num_desc;
7429 rx_ring->size = 0;
7430 rx_ring->dcb_tc = 0;
7431 if (pf->flags & I40E_FLAG_16BYTE_RX_DESC_ENABLED)
7432 set_ring_16byte_desc_enabled(rx_ring);
7433 else
7434 clear_ring_16byte_desc_enabled(rx_ring);
Alexander Duyck9f65e152013-09-28 06:00:58 +00007435 vsi->rx_rings[i] = rx_ring;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007436 }
7437
7438 return 0;
Alexander Duyck9f65e152013-09-28 06:00:58 +00007439
7440err_out:
7441 i40e_vsi_clear_rings(vsi);
7442 return -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007443}
7444
7445/**
7446 * i40e_reserve_msix_vectors - Reserve MSI-X vectors in the kernel
7447 * @pf: board private structure
7448 * @vectors: the number of MSI-X vectors to request
7449 *
7450 * Returns the number of vectors reserved, or error
7451 **/
7452static int i40e_reserve_msix_vectors(struct i40e_pf *pf, int vectors)
7453{
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007454 vectors = pci_enable_msix_range(pf->pdev, pf->msix_entries,
7455 I40E_MIN_MSIX, vectors);
7456 if (vectors < 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007457 dev_info(&pf->pdev->dev,
Alexander Gordeev7b37f372014-02-18 11:11:42 +01007458 "MSI-X vector reservation failed: %d\n", vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007459 vectors = 0;
7460 }
7461
7462 return vectors;
7463}
7464
7465/**
7466 * i40e_init_msix - Setup the MSIX capability
7467 * @pf: board private structure
7468 *
7469 * Work with the OS to set up the MSIX vectors needed.
7470 *
Shannon Nelson3b444392015-02-26 16:15:57 +00007471 * Returns the number of vectors reserved or negative on failure
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007472 **/
7473static int i40e_init_msix(struct i40e_pf *pf)
7474{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007475 struct i40e_hw *hw = &pf->hw;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007476 int vectors_left;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007477 int v_budget, i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007478 int v_actual;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007479
7480 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
7481 return -ENODEV;
7482
7483 /* The number of vectors we'll request will be comprised of:
7484 * - Add 1 for "other" cause for Admin Queue events, etc.
7485 * - The number of LAN queue pairs
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00007486 * - Queues being used for RSS.
7487 * We don't need as many as max_rss_size vectors.
7488 * use rss_size instead in the calculation since that
7489 * is governed by number of cpus in the system.
7490 * - assumes symmetric Tx/Rx pairing
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007491 * - The number of VMDq pairs
Vasu Dev38e00432014-08-01 13:27:03 -07007492#ifdef I40E_FCOE
7493 * - The number of FCOE qps.
7494#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007495 * Once we count this up, try the request.
7496 *
7497 * If we can't get what we want, we'll simplify to nearly nothing
7498 * and try again. If that still fails, we punt.
7499 */
Shannon Nelson1e200e42015-02-27 09:15:24 +00007500 vectors_left = hw->func_caps.num_msix_vectors;
7501 v_budget = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007502
Shannon Nelson1e200e42015-02-27 09:15:24 +00007503 /* reserve one vector for miscellaneous handler */
7504 if (vectors_left) {
7505 v_budget++;
7506 vectors_left--;
7507 }
7508
7509 /* reserve vectors for the main PF traffic queues */
7510 pf->num_lan_msix = min_t(int, num_online_cpus(), vectors_left);
7511 vectors_left -= pf->num_lan_msix;
7512 v_budget += pf->num_lan_msix;
7513
7514 /* reserve one vector for sideband flow director */
7515 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
7516 if (vectors_left) {
7517 v_budget++;
7518 vectors_left--;
7519 } else {
7520 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
7521 }
7522 }
John W Linville83840e42015-01-14 03:06:28 +00007523
Vasu Dev38e00432014-08-01 13:27:03 -07007524#ifdef I40E_FCOE
Shannon Nelson1e200e42015-02-27 09:15:24 +00007525 /* can we reserve enough for FCoE? */
Vasu Dev38e00432014-08-01 13:27:03 -07007526 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
Shannon Nelson1e200e42015-02-27 09:15:24 +00007527 if (!vectors_left)
7528 pf->num_fcoe_msix = 0;
7529 else if (vectors_left >= pf->num_fcoe_qps)
7530 pf->num_fcoe_msix = pf->num_fcoe_qps;
7531 else
7532 pf->num_fcoe_msix = 1;
Vasu Dev38e00432014-08-01 13:27:03 -07007533 v_budget += pf->num_fcoe_msix;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007534 vectors_left -= pf->num_fcoe_msix;
Vasu Dev38e00432014-08-01 13:27:03 -07007535 }
Shannon Nelson1e200e42015-02-27 09:15:24 +00007536
Vasu Dev38e00432014-08-01 13:27:03 -07007537#endif
Shannon Nelson1e200e42015-02-27 09:15:24 +00007538 /* any vectors left over go for VMDq support */
7539 if (pf->flags & I40E_FLAG_VMDQ_ENABLED) {
7540 int vmdq_vecs_wanted = pf->num_vmdq_vsis * pf->num_vmdq_qps;
7541 int vmdq_vecs = min_t(int, vectors_left, vmdq_vecs_wanted);
7542
7543 /* if we're short on vectors for what's desired, we limit
7544 * the queues per vmdq. If this is still more than are
7545 * available, the user will need to change the number of
7546 * queues/vectors used by the PF later with the ethtool
7547 * channels command
7548 */
7549 if (vmdq_vecs < vmdq_vecs_wanted)
7550 pf->num_vmdq_qps = 1;
7551 pf->num_vmdq_msix = pf->num_vmdq_qps;
7552
7553 v_budget += vmdq_vecs;
7554 vectors_left -= vmdq_vecs;
7555 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007556
7557 pf->msix_entries = kcalloc(v_budget, sizeof(struct msix_entry),
7558 GFP_KERNEL);
7559 if (!pf->msix_entries)
7560 return -ENOMEM;
7561
7562 for (i = 0; i < v_budget; i++)
7563 pf->msix_entries[i].entry = i;
Shannon Nelson3b444392015-02-26 16:15:57 +00007564 v_actual = i40e_reserve_msix_vectors(pf, v_budget);
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007565
Shannon Nelson3b444392015-02-26 16:15:57 +00007566 if (v_actual != v_budget) {
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007567 /* If we have limited resources, we will start with no vectors
7568 * for the special features and then allocate vectors to some
7569 * of these features based on the policy and at the end disable
7570 * the features that did not get any vectors.
7571 */
Vasu Dev38e00432014-08-01 13:27:03 -07007572#ifdef I40E_FCOE
7573 pf->num_fcoe_qps = 0;
7574 pf->num_fcoe_msix = 0;
7575#endif
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007576 pf->num_vmdq_msix = 0;
7577 }
7578
Shannon Nelson3b444392015-02-26 16:15:57 +00007579 if (v_actual < I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007580 pf->flags &= ~I40E_FLAG_MSIX_ENABLED;
7581 kfree(pf->msix_entries);
7582 pf->msix_entries = NULL;
7583 return -ENODEV;
7584
Shannon Nelson3b444392015-02-26 16:15:57 +00007585 } else if (v_actual == I40E_MIN_MSIX) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007586 /* Adjust for minimal MSIX use */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007587 pf->num_vmdq_vsis = 0;
7588 pf->num_vmdq_qps = 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007589 pf->num_lan_qps = 1;
7590 pf->num_lan_msix = 1;
7591
Shannon Nelson3b444392015-02-26 16:15:57 +00007592 } else if (v_actual != v_budget) {
7593 int vec;
7594
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007595 /* reserve the misc vector */
Shannon Nelson3b444392015-02-26 16:15:57 +00007596 vec = v_actual - 1;
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007597
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007598 /* Scale vector usage down */
7599 pf->num_vmdq_msix = 1; /* force VMDqs to only one vector */
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007600 pf->num_vmdq_vsis = 1;
Shannon Nelson1e200e42015-02-27 09:15:24 +00007601 pf->num_vmdq_qps = 1;
7602 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007603
7604 /* partition out the remaining vectors */
7605 switch (vec) {
7606 case 2:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007607 pf->num_lan_msix = 1;
7608 break;
7609 case 3:
Vasu Dev38e00432014-08-01 13:27:03 -07007610#ifdef I40E_FCOE
7611 /* give one vector to FCoE */
7612 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7613 pf->num_lan_msix = 1;
7614 pf->num_fcoe_msix = 1;
7615 }
7616#else
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007617 pf->num_lan_msix = 2;
Vasu Dev38e00432014-08-01 13:27:03 -07007618#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007619 break;
7620 default:
Vasu Dev38e00432014-08-01 13:27:03 -07007621#ifdef I40E_FCOE
7622 /* give one vector to FCoE */
7623 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
7624 pf->num_fcoe_msix = 1;
7625 vec--;
7626 }
7627#endif
Shannon Nelson1e200e42015-02-27 09:15:24 +00007628 /* give the rest to the PF */
7629 pf->num_lan_msix = min_t(int, vec, pf->num_lan_qps);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007630 break;
7631 }
7632 }
7633
Anjali Singhai Jaina34977b2014-05-21 23:32:43 +00007634 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
7635 (pf->num_vmdq_msix == 0)) {
7636 dev_info(&pf->pdev->dev, "VMDq disabled, not enough MSI-X vectors\n");
7637 pf->flags &= ~I40E_FLAG_VMDQ_ENABLED;
7638 }
Vasu Dev38e00432014-08-01 13:27:03 -07007639#ifdef I40E_FCOE
7640
7641 if ((pf->flags & I40E_FLAG_FCOE_ENABLED) && (pf->num_fcoe_msix == 0)) {
7642 dev_info(&pf->pdev->dev, "FCOE disabled, not enough MSI-X vectors\n");
7643 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
7644 }
7645#endif
Shannon Nelson3b444392015-02-26 16:15:57 +00007646 return v_actual;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007647}
7648
7649/**
Greg Rose90e04072014-03-06 08:59:57 +00007650 * i40e_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
Alexander Duyck493fb302013-09-28 07:01:44 +00007651 * @vsi: the VSI being configured
7652 * @v_idx: index of the vector in the vsi struct
7653 *
7654 * We allocate one q_vector. If allocation fails we return -ENOMEM.
7655 **/
Greg Rose90e04072014-03-06 08:59:57 +00007656static int i40e_vsi_alloc_q_vector(struct i40e_vsi *vsi, int v_idx)
Alexander Duyck493fb302013-09-28 07:01:44 +00007657{
7658 struct i40e_q_vector *q_vector;
7659
7660 /* allocate q_vector */
7661 q_vector = kzalloc(sizeof(struct i40e_q_vector), GFP_KERNEL);
7662 if (!q_vector)
7663 return -ENOMEM;
7664
7665 q_vector->vsi = vsi;
7666 q_vector->v_idx = v_idx;
7667 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
7668 if (vsi->netdev)
7669 netif_napi_add(vsi->netdev, &q_vector->napi,
Jesse Brandeburgeefeace2014-05-10 04:49:13 +00007670 i40e_napi_poll, NAPI_POLL_WEIGHT);
Alexander Duyck493fb302013-09-28 07:01:44 +00007671
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00007672 q_vector->rx.latency_range = I40E_LOW_LATENCY;
7673 q_vector->tx.latency_range = I40E_LOW_LATENCY;
7674
Alexander Duyck493fb302013-09-28 07:01:44 +00007675 /* tie q_vector and vsi together */
7676 vsi->q_vectors[v_idx] = q_vector;
7677
7678 return 0;
7679}
7680
7681/**
Greg Rose90e04072014-03-06 08:59:57 +00007682 * i40e_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007683 * @vsi: the VSI being configured
7684 *
7685 * We allocate one q_vector per queue interrupt. If allocation fails we
7686 * return -ENOMEM.
7687 **/
Greg Rose90e04072014-03-06 08:59:57 +00007688static int i40e_vsi_alloc_q_vectors(struct i40e_vsi *vsi)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007689{
7690 struct i40e_pf *pf = vsi->back;
7691 int v_idx, num_q_vectors;
Alexander Duyck493fb302013-09-28 07:01:44 +00007692 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007693
7694 /* if not MSIX, give the one vector only to the LAN VSI */
7695 if (pf->flags & I40E_FLAG_MSIX_ENABLED)
7696 num_q_vectors = vsi->num_q_vectors;
7697 else if (vsi == pf->vsi[pf->lan_vsi])
7698 num_q_vectors = 1;
7699 else
7700 return -EINVAL;
7701
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007702 for (v_idx = 0; v_idx < num_q_vectors; v_idx++) {
Greg Rose90e04072014-03-06 08:59:57 +00007703 err = i40e_vsi_alloc_q_vector(vsi, v_idx);
Alexander Duyck493fb302013-09-28 07:01:44 +00007704 if (err)
7705 goto err_out;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007706 }
7707
7708 return 0;
Alexander Duyck493fb302013-09-28 07:01:44 +00007709
7710err_out:
7711 while (v_idx--)
7712 i40e_free_q_vector(vsi, v_idx);
7713
7714 return err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007715}
7716
7717/**
7718 * i40e_init_interrupt_scheme - Determine proper interrupt scheme
7719 * @pf: board private structure to initialize
7720 **/
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007721static int i40e_init_interrupt_scheme(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007722{
Shannon Nelson3b444392015-02-26 16:15:57 +00007723 int vectors = 0;
7724 ssize_t size;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007725
7726 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
Shannon Nelson3b444392015-02-26 16:15:57 +00007727 vectors = i40e_init_msix(pf);
7728 if (vectors < 0) {
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007729 pf->flags &= ~(I40E_FLAG_MSIX_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -07007730#ifdef I40E_FCOE
7731 I40E_FLAG_FCOE_ENABLED |
7732#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007733 I40E_FLAG_RSS_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +00007734 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08007735 I40E_FLAG_SRIOV_ENABLED |
7736 I40E_FLAG_FD_SB_ENABLED |
7737 I40E_FLAG_FD_ATR_ENABLED |
7738 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007739
7740 /* rework the queue expectations without MSIX */
7741 i40e_determine_queue_usage(pf);
7742 }
7743 }
7744
7745 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED) &&
7746 (pf->flags & I40E_FLAG_MSI_ENABLED)) {
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007747 dev_info(&pf->pdev->dev, "MSI-X not available, trying MSI\n");
Shannon Nelson3b444392015-02-26 16:15:57 +00007748 vectors = pci_enable_msi(pf->pdev);
7749 if (vectors < 0) {
7750 dev_info(&pf->pdev->dev, "MSI init failed - %d\n",
7751 vectors);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007752 pf->flags &= ~I40E_FLAG_MSI_ENABLED;
7753 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007754 vectors = 1; /* one MSI or Legacy vector */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007755 }
7756
Shannon Nelson958a3e32013-09-28 07:13:28 +00007757 if (!(pf->flags & (I40E_FLAG_MSIX_ENABLED | I40E_FLAG_MSI_ENABLED)))
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007758 dev_info(&pf->pdev->dev, "MSI-X and MSI not available, falling back to Legacy IRQ\n");
Shannon Nelson958a3e32013-09-28 07:13:28 +00007759
Shannon Nelson3b444392015-02-26 16:15:57 +00007760 /* set up vector assignment tracking */
7761 size = sizeof(struct i40e_lump_tracking) + (sizeof(u16) * vectors);
7762 pf->irq_pile = kzalloc(size, GFP_KERNEL);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007763 if (!pf->irq_pile) {
7764 dev_err(&pf->pdev->dev, "error allocating irq_pile memory\n");
7765 return -ENOMEM;
7766 }
Shannon Nelson3b444392015-02-26 16:15:57 +00007767 pf->irq_pile->num_entries = vectors;
7768 pf->irq_pile->search_hint = 0;
7769
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007770 /* track first vector for misc interrupts, ignore return */
Shannon Nelson3b444392015-02-26 16:15:57 +00007771 (void)i40e_get_lump(pf, pf->irq_pile, 1, I40E_PILE_VALID_BIT - 1);
Jesse Brandeburgc11472802015-04-07 19:45:39 -04007772
7773 return 0;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007774}
7775
7776/**
7777 * i40e_setup_misc_vector - Setup the misc vector to handle non queue events
7778 * @pf: board private structure
7779 *
7780 * This sets up the handler for MSIX 0, which is used to manage the
7781 * non-queue interrupts, e.g. AdminQ and errors. This is not used
7782 * when in MSI or Legacy interrupt mode.
7783 **/
7784static int i40e_setup_misc_vector(struct i40e_pf *pf)
7785{
7786 struct i40e_hw *hw = &pf->hw;
7787 int err = 0;
7788
7789 /* Only request the irq if this is the first time through, and
7790 * not when we're rebuilding after a Reset
7791 */
7792 if (!test_bit(__I40E_RESET_RECOVERY_PENDING, &pf->state)) {
7793 err = request_irq(pf->msix_entries[0].vector,
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007794 i40e_intr, 0, pf->int_name, pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007795 if (err) {
7796 dev_info(&pf->pdev->dev,
Catherine Sullivan77fa28b2014-02-20 19:29:17 -08007797 "request_irq for %s failed: %d\n",
Carolyn Wybornyb294ac72014-12-11 07:06:39 +00007798 pf->int_name, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007799 return -EFAULT;
7800 }
7801 }
7802
Jacob Kellerab437b52014-12-14 01:55:08 +00007803 i40e_enable_misc_int_causes(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00007804
7805 /* associate no queues to the misc vector */
7806 wr32(hw, I40E_PFINT_LNKLST0, I40E_QUEUE_END_OF_LIST);
7807 wr32(hw, I40E_PFINT_ITR0(I40E_RX_ITR), I40E_ITR_8K);
7808
7809 i40e_flush(hw);
7810
7811 i40e_irq_dynamic_enable_icr0(pf);
7812
7813 return err;
7814}
7815
7816/**
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04007817 * i40e_config_rss_aq - Prepare for RSS using AQ commands
7818 * @vsi: vsi structure
7819 * @seed: RSS hash seed
7820 **/
Helin Zhange69ff812015-10-21 19:56:22 -04007821static int i40e_config_rss_aq(struct i40e_vsi *vsi, const u8 *seed,
7822 u8 *lut, u16 lut_size)
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04007823{
7824 struct i40e_aqc_get_set_rss_key_data rss_key;
7825 struct i40e_pf *pf = vsi->back;
7826 struct i40e_hw *hw = &pf->hw;
7827 bool pf_lut = false;
7828 u8 *rss_lut;
7829 int ret, i;
7830
7831 memset(&rss_key, 0, sizeof(rss_key));
7832 memcpy(&rss_key, seed, sizeof(rss_key));
7833
7834 rss_lut = kzalloc(pf->rss_table_size, GFP_KERNEL);
7835 if (!rss_lut)
7836 return -ENOMEM;
7837
7838 /* Populate the LUT with max no. of queues in round robin fashion */
7839 for (i = 0; i < vsi->rss_table_size; i++)
7840 rss_lut[i] = i % vsi->rss_size;
7841
7842 ret = i40e_aq_set_rss_key(hw, vsi->id, &rss_key);
7843 if (ret) {
7844 dev_info(&pf->pdev->dev,
7845 "Cannot set RSS key, err %s aq_err %s\n",
7846 i40e_stat_str(&pf->hw, ret),
7847 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Anjali Singhai126b63d2015-08-24 13:26:53 -07007848 goto config_rss_aq_out;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04007849 }
7850
7851 if (vsi->type == I40E_VSI_MAIN)
7852 pf_lut = true;
7853
7854 ret = i40e_aq_set_rss_lut(hw, vsi->id, pf_lut, rss_lut,
7855 vsi->rss_table_size);
7856 if (ret)
7857 dev_info(&pf->pdev->dev,
7858 "Cannot set RSS lut, err %s aq_err %s\n",
7859 i40e_stat_str(&pf->hw, ret),
7860 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
7861
Anjali Singhai126b63d2015-08-24 13:26:53 -07007862config_rss_aq_out:
7863 kfree(rss_lut);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04007864 return ret;
7865}
7866
7867/**
7868 * i40e_vsi_config_rss - Prepare for VSI(VMDq) RSS if used
7869 * @vsi: VSI structure
7870 **/
7871static int i40e_vsi_config_rss(struct i40e_vsi *vsi)
7872{
7873 u8 seed[I40E_HKEY_ARRAY_SIZE];
7874 struct i40e_pf *pf = vsi->back;
Helin Zhange69ff812015-10-21 19:56:22 -04007875 u8 *lut;
7876 int ret;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04007877
Helin Zhange69ff812015-10-21 19:56:22 -04007878 if (!(pf->flags & I40E_FLAG_RSS_AQ_CAPABLE))
7879 return 0;
7880
7881 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
7882 if (!lut)
7883 return -ENOMEM;
7884
7885 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04007886 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhangacd65442015-10-26 19:44:28 -04007887 vsi->rss_size = min_t(int, pf->alloc_rss_size, vsi->num_queue_pairs);
Helin Zhange69ff812015-10-21 19:56:22 -04007888 ret = i40e_config_rss_aq(vsi, seed, lut, vsi->rss_table_size);
7889 kfree(lut);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04007890
Helin Zhange69ff812015-10-21 19:56:22 -04007891 return ret;
7892}
7893
7894/**
Helin Zhang043dd652015-10-21 19:56:23 -04007895 * i40e_config_rss_reg - Configure RSS keys and lut by writing registers
Helin Zhange69ff812015-10-21 19:56:22 -04007896 * @vsi: Pointer to vsi structure
7897 * @seed: RSS hash seed
7898 * @lut: Lookup table
7899 * @lut_size: Lookup table size
7900 *
7901 * Returns 0 on success, negative on failure
7902 **/
7903static int i40e_config_rss_reg(struct i40e_vsi *vsi, const u8 *seed,
7904 const u8 *lut, u16 lut_size)
7905{
7906 struct i40e_pf *pf = vsi->back;
7907 struct i40e_hw *hw = &pf->hw;
7908 u8 i;
7909
7910 /* Fill out hash function seed */
7911 if (seed) {
7912 u32 *seed_dw = (u32 *)seed;
7913
7914 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
7915 wr32(hw, I40E_PFQF_HKEY(i), seed_dw[i]);
7916 }
7917
7918 if (lut) {
7919 u32 *lut_dw = (u32 *)lut;
7920
7921 if (lut_size != I40E_HLUT_ARRAY_SIZE)
7922 return -EINVAL;
7923
7924 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
7925 wr32(hw, I40E_PFQF_HLUT(i), lut_dw[i]);
7926 }
7927 i40e_flush(hw);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04007928
7929 return 0;
7930}
7931
7932/**
Helin Zhang043dd652015-10-21 19:56:23 -04007933 * i40e_get_rss_reg - Get the RSS keys and lut by reading registers
7934 * @vsi: Pointer to VSI structure
7935 * @seed: Buffer to store the keys
7936 * @lut: Buffer to store the lookup table entries
7937 * @lut_size: Size of buffer to store the lookup table entries
7938 *
7939 * Returns 0 on success, negative on failure
7940 */
7941static int i40e_get_rss_reg(struct i40e_vsi *vsi, u8 *seed,
7942 u8 *lut, u16 lut_size)
7943{
7944 struct i40e_pf *pf = vsi->back;
7945 struct i40e_hw *hw = &pf->hw;
7946 u16 i;
7947
7948 if (seed) {
7949 u32 *seed_dw = (u32 *)seed;
7950
7951 for (i = 0; i <= I40E_PFQF_HKEY_MAX_INDEX; i++)
7952 seed_dw[i] = rd32(hw, I40E_PFQF_HKEY(i));
7953 }
7954 if (lut) {
7955 u32 *lut_dw = (u32 *)lut;
7956
7957 if (lut_size != I40E_HLUT_ARRAY_SIZE)
7958 return -EINVAL;
7959 for (i = 0; i <= I40E_PFQF_HLUT_MAX_INDEX; i++)
7960 lut_dw[i] = rd32(hw, I40E_PFQF_HLUT(i));
7961 }
7962
7963 return 0;
7964}
7965
7966/**
7967 * i40e_config_rss - Configure RSS keys and lut
7968 * @vsi: Pointer to VSI structure
7969 * @seed: RSS hash seed
7970 * @lut: Lookup table
7971 * @lut_size: Lookup table size
7972 *
7973 * Returns 0 on success, negative on failure
7974 */
7975int i40e_config_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
7976{
7977 struct i40e_pf *pf = vsi->back;
7978
7979 if (pf->flags & I40E_FLAG_RSS_AQ_CAPABLE)
7980 return i40e_config_rss_aq(vsi, seed, lut, lut_size);
7981 else
7982 return i40e_config_rss_reg(vsi, seed, lut, lut_size);
7983}
7984
7985/**
7986 * i40e_get_rss - Get RSS keys and lut
7987 * @vsi: Pointer to VSI structure
7988 * @seed: Buffer to store the keys
7989 * @lut: Buffer to store the lookup table entries
7990 * lut_size: Size of buffer to store the lookup table entries
7991 *
7992 * Returns 0 on success, negative on failure
7993 */
7994int i40e_get_rss(struct i40e_vsi *vsi, u8 *seed, u8 *lut, u16 lut_size)
7995{
7996 return i40e_get_rss_reg(vsi, seed, lut, lut_size);
7997}
7998
7999/**
Helin Zhange69ff812015-10-21 19:56:22 -04008000 * i40e_fill_rss_lut - Fill the RSS lookup table with default values
8001 * @pf: Pointer to board private structure
8002 * @lut: Lookup table
8003 * @rss_table_size: Lookup table size
8004 * @rss_size: Range of queue number for hashing
8005 */
8006static void i40e_fill_rss_lut(struct i40e_pf *pf, u8 *lut,
8007 u16 rss_table_size, u16 rss_size)
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008008{
Helin Zhange69ff812015-10-21 19:56:22 -04008009 u16 i;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008010
Helin Zhange69ff812015-10-21 19:56:22 -04008011 for (i = 0; i < rss_table_size; i++)
8012 lut[i] = i % rss_size;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008013}
8014
8015/**
Helin Zhang043dd652015-10-21 19:56:23 -04008016 * i40e_pf_config_rss - Prepare for RSS if used
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008017 * @pf: board private structure
8018 **/
Helin Zhang043dd652015-10-21 19:56:23 -04008019static int i40e_pf_config_rss(struct i40e_pf *pf)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008020{
Anjali Singhai Jain66ddcff2015-02-24 06:58:50 +00008021 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008022 u8 seed[I40E_HKEY_ARRAY_SIZE];
Helin Zhange69ff812015-10-21 19:56:22 -04008023 u8 *lut;
Anjali Singhai Jain4617e8c2013-11-20 10:02:56 +00008024 struct i40e_hw *hw = &pf->hw;
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008025 u32 reg_val;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008026 u64 hena;
Helin Zhange69ff812015-10-21 19:56:22 -04008027 int ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008028
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008029 /* By default we enable TCP/UDP with IPv4/IPv6 ptypes */
8030 hena = (u64)rd32(hw, I40E_PFQF_HENA(0)) |
8031 ((u64)rd32(hw, I40E_PFQF_HENA(1)) << 32);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008032 hena |= i40e_pf_get_default_rss_hena(pf);
8033
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008034 wr32(hw, I40E_PFQF_HENA(0), (u32)hena);
8035 wr32(hw, I40E_PFQF_HENA(1), (u32)(hena >> 32));
8036
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008037 /* Determine the RSS table size based on the hardware capabilities */
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008038 reg_val = rd32(hw, I40E_PFQF_CTL_0);
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008039 reg_val = (pf->rss_table_size == 512) ?
8040 (reg_val | I40E_PFQF_CTL_0_HASHLUTSIZE_512) :
8041 (reg_val & ~I40E_PFQF_CTL_0_HASHLUTSIZE_512);
Carolyn Wybornye157ea32014-06-03 23:50:22 +00008042 wr32(hw, I40E_PFQF_CTL_0, reg_val);
8043
Helin Zhang28c58692015-10-26 19:44:27 -04008044 /* Determine the RSS size of the VSI */
8045 if (!vsi->rss_size)
Helin Zhangacd65442015-10-26 19:44:28 -04008046 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8047 vsi->num_queue_pairs);
Helin Zhang28c58692015-10-26 19:44:27 -04008048
Helin Zhange69ff812015-10-21 19:56:22 -04008049 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
8050 if (!lut)
8051 return -ENOMEM;
8052
Helin Zhang28c58692015-10-26 19:44:27 -04008053 /* Use user configured lut if there is one, otherwise use default */
8054 if (vsi->rss_lut_user)
8055 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
8056 else
8057 i40e_fill_rss_lut(pf, lut, vsi->rss_table_size, vsi->rss_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008058
Helin Zhang28c58692015-10-26 19:44:27 -04008059 /* Use user configured hash key if there is one, otherwise
8060 * use default.
8061 */
8062 if (vsi->rss_hkey_user)
8063 memcpy(seed, vsi->rss_hkey_user, I40E_HKEY_ARRAY_SIZE);
8064 else
8065 netdev_rss_key_fill((void *)seed, I40E_HKEY_ARRAY_SIZE);
Helin Zhang043dd652015-10-21 19:56:23 -04008066 ret = i40e_config_rss(vsi, seed, lut, vsi->rss_table_size);
Helin Zhange69ff812015-10-21 19:56:22 -04008067 kfree(lut);
8068
8069 return ret;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008070}
8071
8072/**
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008073 * i40e_reconfig_rss_queues - change number of queues for rss and rebuild
8074 * @pf: board private structure
8075 * @queue_count: the requested queue count for rss.
8076 *
8077 * returns 0 if rss is not enabled, if enabled returns the final rss queue
8078 * count which may be different from the requested queue count.
8079 **/
8080int i40e_reconfig_rss_queues(struct i40e_pf *pf, int queue_count)
8081{
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008082 struct i40e_vsi *vsi = pf->vsi[pf->lan_vsi];
8083 int new_rss_size;
8084
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008085 if (!(pf->flags & I40E_FLAG_RSS_ENABLED))
8086 return 0;
8087
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008088 new_rss_size = min_t(int, queue_count, pf->rss_size_max);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008089
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +00008090 if (queue_count != vsi->num_queue_pairs) {
8091 vsi->req_queue_pairs = queue_count;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008092 i40e_prep_for_reset(pf);
8093
Helin Zhangacd65442015-10-26 19:44:28 -04008094 pf->alloc_rss_size = new_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008095
8096 i40e_reset_and_rebuild(pf, true);
Helin Zhang28c58692015-10-26 19:44:27 -04008097
8098 /* Discard the user configured hash keys and lut, if less
8099 * queues are enabled.
8100 */
8101 if (queue_count < vsi->rss_size) {
8102 i40e_clear_rss_config_user(vsi);
8103 dev_dbg(&pf->pdev->dev,
8104 "discard user configured hash keys and lut\n");
8105 }
8106
8107 /* Reset vsi->rss_size, as number of enabled queues changed */
Helin Zhangacd65442015-10-26 19:44:28 -04008108 vsi->rss_size = min_t(int, pf->alloc_rss_size,
8109 vsi->num_queue_pairs);
Helin Zhang28c58692015-10-26 19:44:27 -04008110
Helin Zhang043dd652015-10-21 19:56:23 -04008111 i40e_pf_config_rss(pf);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008112 }
Helin Zhange36b0b12015-10-26 19:44:36 -04008113 dev_info(&pf->pdev->dev, "RSS count/HW max RSS count: %d/%d\n",
8114 pf->alloc_rss_size, pf->rss_size_max);
Helin Zhangacd65442015-10-26 19:44:28 -04008115 return pf->alloc_rss_size;
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008116}
8117
8118/**
Greg Rosef4492db2015-02-06 08:52:12 +00008119 * i40e_get_npar_bw_setting - Retrieve BW settings for this PF partition
8120 * @pf: board private structure
8121 **/
8122i40e_status i40e_get_npar_bw_setting(struct i40e_pf *pf)
8123{
8124 i40e_status status;
8125 bool min_valid, max_valid;
8126 u32 max_bw, min_bw;
8127
8128 status = i40e_read_bw_from_alt_ram(&pf->hw, &max_bw, &min_bw,
8129 &min_valid, &max_valid);
8130
8131 if (!status) {
8132 if (min_valid)
8133 pf->npar_min_bw = min_bw;
8134 if (max_valid)
8135 pf->npar_max_bw = max_bw;
8136 }
8137
8138 return status;
8139}
8140
8141/**
8142 * i40e_set_npar_bw_setting - Set BW settings for this PF partition
8143 * @pf: board private structure
8144 **/
8145i40e_status i40e_set_npar_bw_setting(struct i40e_pf *pf)
8146{
8147 struct i40e_aqc_configure_partition_bw_data bw_data;
8148 i40e_status status;
8149
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00008150 /* Set the valid bit for this PF */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008151 bw_data.pf_valid_bits = cpu_to_le16(BIT(pf->hw.pf_id));
Greg Rosef4492db2015-02-06 08:52:12 +00008152 bw_data.max_bw[pf->hw.pf_id] = pf->npar_max_bw & I40E_ALT_BW_VALUE_MASK;
8153 bw_data.min_bw[pf->hw.pf_id] = pf->npar_min_bw & I40E_ALT_BW_VALUE_MASK;
8154
8155 /* Set the new bandwidths */
8156 status = i40e_aq_configure_partition_bw(&pf->hw, &bw_data, NULL);
8157
8158 return status;
8159}
8160
8161/**
8162 * i40e_commit_npar_bw_setting - Commit BW settings for this PF partition
8163 * @pf: board private structure
8164 **/
8165i40e_status i40e_commit_npar_bw_setting(struct i40e_pf *pf)
8166{
8167 /* Commit temporary BW setting to permanent NVM image */
8168 enum i40e_admin_queue_err last_aq_status;
8169 i40e_status ret;
8170 u16 nvm_word;
8171
8172 if (pf->hw.partition_id != 1) {
8173 dev_info(&pf->pdev->dev,
8174 "Commit BW only works on partition 1! This is partition %d",
8175 pf->hw.partition_id);
8176 ret = I40E_NOT_SUPPORTED;
8177 goto bw_commit_out;
8178 }
8179
8180 /* Acquire NVM for read access */
8181 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_READ);
8182 last_aq_status = pf->hw.aq.asq_last_status;
8183 if (ret) {
8184 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008185 "Cannot acquire NVM for read access, err %s aq_err %s\n",
8186 i40e_stat_str(&pf->hw, ret),
8187 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008188 goto bw_commit_out;
8189 }
8190
8191 /* Read word 0x10 of NVM - SW compatibility word 1 */
8192 ret = i40e_aq_read_nvm(&pf->hw,
8193 I40E_SR_NVM_CONTROL_WORD,
8194 0x10, sizeof(nvm_word), &nvm_word,
8195 false, NULL);
8196 /* Save off last admin queue command status before releasing
8197 * the NVM
8198 */
8199 last_aq_status = pf->hw.aq.asq_last_status;
8200 i40e_release_nvm(&pf->hw);
8201 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008202 dev_info(&pf->pdev->dev, "NVM read error, err %s aq_err %s\n",
8203 i40e_stat_str(&pf->hw, ret),
8204 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008205 goto bw_commit_out;
8206 }
8207
8208 /* Wait a bit for NVM release to complete */
8209 msleep(50);
8210
8211 /* Acquire NVM for write access */
8212 ret = i40e_acquire_nvm(&pf->hw, I40E_RESOURCE_WRITE);
8213 last_aq_status = pf->hw.aq.asq_last_status;
8214 if (ret) {
8215 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008216 "Cannot acquire NVM for write access, err %s aq_err %s\n",
8217 i40e_stat_str(&pf->hw, ret),
8218 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008219 goto bw_commit_out;
8220 }
8221 /* Write it back out unchanged to initiate update NVM,
8222 * which will force a write of the shadow (alt) RAM to
8223 * the NVM - thus storing the bandwidth values permanently.
8224 */
8225 ret = i40e_aq_update_nvm(&pf->hw,
8226 I40E_SR_NVM_CONTROL_WORD,
8227 0x10, sizeof(nvm_word),
8228 &nvm_word, true, NULL);
8229 /* Save off last admin queue command status before releasing
8230 * the NVM
8231 */
8232 last_aq_status = pf->hw.aq.asq_last_status;
8233 i40e_release_nvm(&pf->hw);
8234 if (ret)
8235 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008236 "BW settings NOT SAVED, err %s aq_err %s\n",
8237 i40e_stat_str(&pf->hw, ret),
8238 i40e_aq_str(&pf->hw, last_aq_status));
Greg Rosef4492db2015-02-06 08:52:12 +00008239bw_commit_out:
8240
8241 return ret;
8242}
8243
8244/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008245 * i40e_sw_init - Initialize general software structures (struct i40e_pf)
8246 * @pf: board private structure to initialize
8247 *
8248 * i40e_sw_init initializes the Adapter private data structure.
8249 * Fields are initialized based on PCI device information and
8250 * OS network device settings (MTU size).
8251 **/
8252static int i40e_sw_init(struct i40e_pf *pf)
8253{
8254 int err = 0;
8255 int size;
8256
8257 pf->msg_enable = netif_msg_init(I40E_DEFAULT_MSG_ENABLE,
8258 (NETIF_MSG_DRV|NETIF_MSG_PROBE|NETIF_MSG_LINK));
Shannon Nelson27599972013-11-16 10:00:43 +00008259 pf->hw.debug_mask = pf->msg_enable | I40E_DEBUG_DIAG;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008260 if (debug != -1 && debug != I40E_DEFAULT_MSG_ENABLE) {
8261 if (I40E_DEBUG_USER & debug)
8262 pf->hw.debug_mask = debug;
8263 pf->msg_enable = netif_msg_init((debug & ~I40E_DEBUG_USER),
8264 I40E_DEFAULT_MSG_ENABLE);
8265 }
8266
8267 /* Set default capability flags */
8268 pf->flags = I40E_FLAG_RX_CSUM_ENABLED |
8269 I40E_FLAG_MSI_ENABLED |
Shannon Nelson9ac77262015-08-27 11:42:40 -04008270 I40E_FLAG_LINK_POLLING_ENABLED |
Mitch Williams2bc7ee82015-02-06 08:52:11 +00008271 I40E_FLAG_MSIX_ENABLED;
8272
8273 if (iommu_present(&pci_bus_type))
8274 pf->flags |= I40E_FLAG_RX_PS_ENABLED;
8275 else
8276 pf->flags |= I40E_FLAG_RX_1BUF_ENABLED;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008277
Mitch Williamsca99eb92014-04-04 04:43:07 +00008278 /* Set default ITR */
8279 pf->rx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_RX_DEF;
8280 pf->tx_itr_default = I40E_ITR_DYNAMIC | I40E_ITR_TX_DEF;
8281
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008282 /* Depending on PF configurations, it is possible that the RSS
8283 * maximum might end up larger than the available queues
8284 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008285 pf->rss_size_max = BIT(pf->hw.func_caps.rss_table_entry_width);
Helin Zhangacd65442015-10-26 19:44:28 -04008286 pf->alloc_rss_size = 1;
Anjali Singhai Jain5db4cb52015-02-24 06:58:49 +00008287 pf->rss_table_size = pf->hw.func_caps.rss_table_size;
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +00008288 pf->rss_size_max = min_t(int, pf->rss_size_max,
8289 pf->hw.func_caps.num_tx_qp);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008290 if (pf->hw.func_caps.rss) {
8291 pf->flags |= I40E_FLAG_RSS_ENABLED;
Helin Zhangacd65442015-10-26 19:44:28 -04008292 pf->alloc_rss_size = min_t(int, pf->rss_size_max,
8293 num_online_cpus());
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008294 }
8295
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008296 /* MFP mode enabled */
Pawel Orlowskic78b9532015-04-22 19:34:06 -04008297 if (pf->hw.func_caps.npar_enable || pf->hw.func_caps.flex10_enable) {
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008298 pf->flags |= I40E_FLAG_MFP_ENABLED;
8299 dev_info(&pf->pdev->dev, "MFP mode Enabled\n");
Greg Rosef4492db2015-02-06 08:52:12 +00008300 if (i40e_get_npar_bw_setting(pf))
8301 dev_warn(&pf->pdev->dev,
8302 "Could not get NPAR bw settings\n");
8303 else
8304 dev_info(&pf->pdev->dev,
8305 "Min BW = %8.8x, Max BW = %8.8x\n",
8306 pf->npar_min_bw, pf->npar_max_bw);
Catherine Sullivan2050bc62013-12-18 13:46:03 +00008307 }
8308
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008309 /* FW/NVM is not yet fixed in this regard */
8310 if ((pf->hw.func_caps.fd_filters_guaranteed > 0) ||
8311 (pf->hw.func_caps.fd_filters_best_effort > 0)) {
8312 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
8313 pf->atr_sample_rate = I40E_DEFAULT_ATR_SAMPLE_RATE;
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008314 if (pf->flags & I40E_FLAG_MFP_ENABLED &&
8315 pf->hw.num_partitions > 1)
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008316 dev_info(&pf->pdev->dev,
Anjali Singhai Jain0b675842014-03-06 08:59:51 +00008317 "Flow Director Sideband mode Disabled in MFP mode\n");
Shannon Nelson6eae9c62015-09-03 17:18:55 -04008318 else
8319 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08008320 pf->fdir_pf_filter_count =
8321 pf->hw.func_caps.fd_filters_guaranteed;
8322 pf->hw.fdir_shared_filter_count =
8323 pf->hw.func_caps.fd_filters_best_effort;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008324 }
8325
8326 if (pf->hw.func_caps.vmdq) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008327 pf->num_vmdq_vsis = I40E_DEFAULT_NUM_VMDQ_VSI;
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04008328 pf->flags |= I40E_FLAG_VMDQ_ENABLED;
Jesse Brandeburge9e53662015-10-02 17:57:21 -07008329 pf->num_vmdq_qps = i40e_default_queues_per_vmdq(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008330 }
8331
Vasu Dev38e00432014-08-01 13:27:03 -07008332#ifdef I40E_FCOE
Shannon Nelson21364bc2015-08-26 15:14:13 -04008333 i40e_init_pf_fcoe(pf);
Vasu Dev38e00432014-08-01 13:27:03 -07008334
8335#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008336#ifdef CONFIG_PCI_IOV
Shannon Nelsonba252f132014-12-11 07:06:34 +00008337 if (pf->hw.func_caps.num_vfs && pf->hw.partition_id == 1) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008338 pf->num_vf_qps = I40E_DEFAULT_QUEUES_PER_VF;
8339 pf->flags |= I40E_FLAG_SRIOV_ENABLED;
8340 pf->num_req_vfs = min_t(int,
8341 pf->hw.func_caps.num_vfs,
8342 I40E_MAX_VF_COUNT);
8343 }
8344#endif /* CONFIG_PCI_IOV */
Anjali Singhai Jaind502ce02015-06-05 12:20:26 -04008345 if (pf->hw.mac.type == I40E_MAC_X722) {
8346 pf->flags |= I40E_FLAG_RSS_AQ_CAPABLE |
8347 I40E_FLAG_128_QP_RSS_CAPABLE |
8348 I40E_FLAG_HW_ATR_EVICT_CAPABLE |
8349 I40E_FLAG_OUTER_UDP_CSUM_CAPABLE |
8350 I40E_FLAG_WB_ON_ITR_CAPABLE |
8351 I40E_FLAG_MULTIPLE_TCP_UDP_RSS_PCTYPE;
8352 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008353 pf->eeprom_version = 0xDEAD;
8354 pf->lan_veb = I40E_NO_VEB;
8355 pf->lan_vsi = I40E_NO_VSI;
8356
Anjali Singhai Jaind1a8d272015-07-23 16:54:40 -04008357 /* By default FW has this off for performance reasons */
8358 pf->flags &= ~I40E_FLAG_VEB_STATS_ENABLED;
8359
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008360 /* set up queue assignment tracking */
8361 size = sizeof(struct i40e_lump_tracking)
8362 + (sizeof(u16) * pf->hw.func_caps.num_tx_qp);
8363 pf->qp_pile = kzalloc(size, GFP_KERNEL);
8364 if (!pf->qp_pile) {
8365 err = -ENOMEM;
8366 goto sw_init_done;
8367 }
8368 pf->qp_pile->num_entries = pf->hw.func_caps.num_tx_qp;
8369 pf->qp_pile->search_hint = 0;
8370
Anjali Singhai Jain327fe042014-06-04 01:23:26 +00008371 pf->tx_timeout_recovery_level = 1;
8372
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008373 mutex_init(&pf->switch_mutex);
8374
Greg Rosec668a122015-02-26 16:10:39 +00008375 /* If NPAR is enabled nudge the Tx scheduler */
8376 if (pf->hw.func_caps.npar_enable && (!i40e_get_npar_bw_setting(pf)))
8377 i40e_set_npar_bw_setting(pf);
8378
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008379sw_init_done:
8380 return err;
8381}
8382
8383/**
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008384 * i40e_set_ntuple - set the ntuple feature flag and take action
8385 * @pf: board private structure to initialize
8386 * @features: the feature set that the stack is suggesting
8387 *
8388 * returns a bool to indicate if reset needs to happen
8389 **/
8390bool i40e_set_ntuple(struct i40e_pf *pf, netdev_features_t features)
8391{
8392 bool need_reset = false;
8393
8394 /* Check if Flow Director n-tuple support was enabled or disabled. If
8395 * the state changed, we need to reset.
8396 */
8397 if (features & NETIF_F_NTUPLE) {
8398 /* Enable filters and mark for reset */
8399 if (!(pf->flags & I40E_FLAG_FD_SB_ENABLED))
8400 need_reset = true;
8401 pf->flags |= I40E_FLAG_FD_SB_ENABLED;
8402 } else {
8403 /* turn off filters, mark for reset and clear SW filter list */
8404 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
8405 need_reset = true;
8406 i40e_fdir_filter_exit(pf);
8407 }
8408 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008409 pf->auto_disable_flags &= ~I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +00008410 /* reset fd counters */
8411 pf->fd_add_err = pf->fd_atr_cnt = pf->fd_tcp_rule = 0;
8412 pf->fdir_pf_active_filters = 0;
8413 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain2e4875e2015-04-16 20:06:06 -04008414 if (I40E_DEBUG_FD & pf->hw.debug_mask)
8415 dev_info(&pf->pdev->dev, "ATR re-enabled.\n");
Anjali Singhai Jain8a4f34f2014-06-04 08:45:20 +00008416 /* if ATR was auto disabled it can be re-enabled. */
8417 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
8418 (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
8419 pf->auto_disable_flags &= ~I40E_FLAG_FD_ATR_ENABLED;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008420 }
8421 return need_reset;
8422}
8423
8424/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008425 * i40e_set_features - set the netdev feature flags
8426 * @netdev: ptr to the netdev being adjusted
8427 * @features: the feature set that the stack is suggesting
8428 **/
8429static int i40e_set_features(struct net_device *netdev,
8430 netdev_features_t features)
8431{
8432 struct i40e_netdev_priv *np = netdev_priv(netdev);
8433 struct i40e_vsi *vsi = np->vsi;
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008434 struct i40e_pf *pf = vsi->back;
8435 bool need_reset;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008436
8437 if (features & NETIF_F_HW_VLAN_CTAG_RX)
8438 i40e_vlan_stripping_enable(vsi);
8439 else
8440 i40e_vlan_stripping_disable(vsi);
8441
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008442 need_reset = i40e_set_ntuple(pf, features);
8443
8444 if (need_reset)
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008445 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Anjali Singhai Jain7c3c2882014-02-14 02:14:38 +00008446
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008447 return 0;
8448}
8449
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008450#ifdef CONFIG_I40E_VXLAN
8451/**
8452 * i40e_get_vxlan_port_idx - Lookup a possibly offloaded for Rx UDP port
8453 * @pf: board private structure
8454 * @port: The UDP port to look up
8455 *
8456 * Returns the index number or I40E_MAX_PF_UDP_OFFLOAD_PORTS if port not found
8457 **/
8458static u8 i40e_get_vxlan_port_idx(struct i40e_pf *pf, __be16 port)
8459{
8460 u8 i;
8461
8462 for (i = 0; i < I40E_MAX_PF_UDP_OFFLOAD_PORTS; i++) {
8463 if (pf->vxlan_ports[i] == port)
8464 return i;
8465 }
8466
8467 return i;
8468}
8469
8470/**
8471 * i40e_add_vxlan_port - Get notifications about VXLAN ports that come up
8472 * @netdev: This physical port's netdev
8473 * @sa_family: Socket Family that VXLAN is notifying us about
8474 * @port: New UDP port number that VXLAN started listening to
8475 **/
8476static void i40e_add_vxlan_port(struct net_device *netdev,
8477 sa_family_t sa_family, __be16 port)
8478{
8479 struct i40e_netdev_priv *np = netdev_priv(netdev);
8480 struct i40e_vsi *vsi = np->vsi;
8481 struct i40e_pf *pf = vsi->back;
8482 u8 next_idx;
8483 u8 idx;
8484
8485 if (sa_family == AF_INET6)
8486 return;
8487
8488 idx = i40e_get_vxlan_port_idx(pf, port);
8489
8490 /* Check if port already exists */
8491 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07008492 netdev_info(netdev, "vxlan port %d already offloaded\n",
8493 ntohs(port));
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008494 return;
8495 }
8496
8497 /* Now check if there is space to add the new port */
8498 next_idx = i40e_get_vxlan_port_idx(pf, 0);
8499
8500 if (next_idx == I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07008501 netdev_info(netdev, "maximum number of vxlan UDP ports reached, not adding port %d\n",
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008502 ntohs(port));
8503 return;
8504 }
8505
8506 /* New port: add it and mark its index in the bitmap */
8507 pf->vxlan_ports[next_idx] = port;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008508 pf->pending_vxlan_bitmap |= BIT_ULL(next_idx);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008509 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
8510}
8511
8512/**
8513 * i40e_del_vxlan_port - Get notifications about VXLAN ports that go away
8514 * @netdev: This physical port's netdev
8515 * @sa_family: Socket Family that VXLAN is notifying us about
8516 * @port: UDP port number that VXLAN stopped listening to
8517 **/
8518static void i40e_del_vxlan_port(struct net_device *netdev,
8519 sa_family_t sa_family, __be16 port)
8520{
8521 struct i40e_netdev_priv *np = netdev_priv(netdev);
8522 struct i40e_vsi *vsi = np->vsi;
8523 struct i40e_pf *pf = vsi->back;
8524 u8 idx;
8525
8526 if (sa_family == AF_INET6)
8527 return;
8528
8529 idx = i40e_get_vxlan_port_idx(pf, port);
8530
8531 /* Check if port already exists */
8532 if (idx < I40E_MAX_PF_UDP_OFFLOAD_PORTS) {
8533 /* if port exists, set it to 0 (mark for deletion)
8534 * and make it pending
8535 */
8536 pf->vxlan_ports[idx] = 0;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04008537 pf->pending_vxlan_bitmap |= BIT_ULL(idx);
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008538 pf->flags |= I40E_FLAG_VXLAN_FILTER_SYNC;
8539 } else {
Shannon Nelsonc22c06c2015-03-31 00:45:04 -07008540 netdev_warn(netdev, "vxlan port %d was not found, not deleting\n",
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008541 ntohs(port));
8542 }
8543}
8544
8545#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008546static int i40e_get_phys_port_id(struct net_device *netdev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01008547 struct netdev_phys_item_id *ppid)
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008548{
8549 struct i40e_netdev_priv *np = netdev_priv(netdev);
8550 struct i40e_pf *pf = np->vsi->back;
8551 struct i40e_hw *hw = &pf->hw;
8552
8553 if (!(pf->flags & I40E_FLAG_PORT_ID_VALID))
8554 return -EOPNOTSUPP;
8555
8556 ppid->id_len = min_t(int, sizeof(hw->mac.port_addr), sizeof(ppid->id));
8557 memcpy(ppid->id, hw->mac.port_addr, ppid->id_len);
8558
8559 return 0;
8560}
8561
Jesse Brandeburg2f90ade2014-11-20 16:30:02 -08008562/**
8563 * i40e_ndo_fdb_add - add an entry to the hardware database
8564 * @ndm: the input from the stack
8565 * @tb: pointer to array of nladdr (unused)
8566 * @dev: the net device pointer
8567 * @addr: the MAC address entry being added
8568 * @flags: instructions from stack about fdb operation
8569 */
Greg Rose4ba0dea2014-03-06 08:59:55 +00008570static int i40e_ndo_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
8571 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +01008572 const unsigned char *addr, u16 vid,
Greg Rose4ba0dea2014-03-06 08:59:55 +00008573 u16 flags)
Greg Rose4ba0dea2014-03-06 08:59:55 +00008574{
8575 struct i40e_netdev_priv *np = netdev_priv(dev);
8576 struct i40e_pf *pf = np->vsi->back;
8577 int err = 0;
8578
8579 if (!(pf->flags & I40E_FLAG_SRIOV_ENABLED))
8580 return -EOPNOTSUPP;
8581
Or Gerlitz65891fe2014-12-14 18:19:05 +02008582 if (vid) {
8583 pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name);
8584 return -EINVAL;
8585 }
8586
Greg Rose4ba0dea2014-03-06 08:59:55 +00008587 /* Hardware does not support aging addresses so if a
8588 * ndm_state is given only allow permanent addresses
8589 */
8590 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
8591 netdev_info(dev, "FDB only supports static addresses\n");
8592 return -EINVAL;
8593 }
8594
8595 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
8596 err = dev_uc_add_excl(dev, addr);
8597 else if (is_multicast_ether_addr(addr))
8598 err = dev_mc_add_excl(dev, addr);
8599 else
8600 err = -EINVAL;
8601
8602 /* Only return duplicate errors if NLM_F_EXCL is set */
8603 if (err == -EEXIST && !(flags & NLM_F_EXCL))
8604 err = 0;
8605
8606 return err;
8607}
8608
Neerav Parikh51616012015-02-06 08:52:14 +00008609/**
8610 * i40e_ndo_bridge_setlink - Set the hardware bridge mode
8611 * @dev: the netdev being configured
8612 * @nlh: RTNL message
8613 *
8614 * Inserts a new hardware bridge if not already created and
8615 * enables the bridging mode requested (VEB or VEPA). If the
8616 * hardware bridge has already been inserted and the request
8617 * is to change the mode then that requires a PF reset to
8618 * allow rebuild of the components with required hardware
8619 * bridge mode enabled.
8620 **/
8621static int i40e_ndo_bridge_setlink(struct net_device *dev,
Carolyn Wyborny9df70b62015-04-27 14:57:11 -04008622 struct nlmsghdr *nlh,
8623 u16 flags)
Neerav Parikh51616012015-02-06 08:52:14 +00008624{
8625 struct i40e_netdev_priv *np = netdev_priv(dev);
8626 struct i40e_vsi *vsi = np->vsi;
8627 struct i40e_pf *pf = vsi->back;
8628 struct i40e_veb *veb = NULL;
8629 struct nlattr *attr, *br_spec;
8630 int i, rem;
8631
8632 /* Only for PF VSI for now */
8633 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8634 return -EOPNOTSUPP;
8635
8636 /* Find the HW bridge for PF VSI */
8637 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8638 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8639 veb = pf->veb[i];
8640 }
8641
8642 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
8643
8644 nla_for_each_nested(attr, br_spec, rem) {
8645 __u16 mode;
8646
8647 if (nla_type(attr) != IFLA_BRIDGE_MODE)
8648 continue;
8649
8650 mode = nla_get_u16(attr);
8651 if ((mode != BRIDGE_MODE_VEPA) &&
8652 (mode != BRIDGE_MODE_VEB))
8653 return -EINVAL;
8654
8655 /* Insert a new HW bridge */
8656 if (!veb) {
8657 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
8658 vsi->tc_config.enabled_tc);
8659 if (veb) {
8660 veb->bridge_mode = mode;
8661 i40e_config_bridge_mode(veb);
8662 } else {
8663 /* No Bridge HW offload available */
8664 return -ENOENT;
8665 }
8666 break;
8667 } else if (mode != veb->bridge_mode) {
8668 /* Existing HW bridge but different mode needs reset */
8669 veb->bridge_mode = mode;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07008670 /* TODO: If no VFs or VMDq VSIs, disallow VEB mode */
8671 if (mode == BRIDGE_MODE_VEB)
8672 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
8673 else
8674 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
8675 i40e_do_reset(pf, BIT_ULL(__I40E_PF_RESET_REQUESTED));
Neerav Parikh51616012015-02-06 08:52:14 +00008676 break;
8677 }
8678 }
8679
8680 return 0;
8681}
8682
8683/**
8684 * i40e_ndo_bridge_getlink - Get the hardware bridge mode
8685 * @skb: skb buff
8686 * @pid: process id
8687 * @seq: RTNL message seq #
8688 * @dev: the netdev being configured
8689 * @filter_mask: unused
Jesse Brandeburgd4b2f9f2015-09-03 17:18:48 -04008690 * @nlflags: netlink flags passed in
Neerav Parikh51616012015-02-06 08:52:14 +00008691 *
8692 * Return the mode in which the hardware bridge is operating in
8693 * i.e VEB or VEPA.
8694 **/
Neerav Parikh51616012015-02-06 08:52:14 +00008695static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
8696 struct net_device *dev,
Carolyn Wyborny9f4ffc42015-08-31 19:54:42 -04008697 u32 __always_unused filter_mask,
8698 int nlflags)
Neerav Parikh51616012015-02-06 08:52:14 +00008699{
8700 struct i40e_netdev_priv *np = netdev_priv(dev);
8701 struct i40e_vsi *vsi = np->vsi;
8702 struct i40e_pf *pf = vsi->back;
8703 struct i40e_veb *veb = NULL;
8704 int i;
8705
8706 /* Only for PF VSI for now */
8707 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid)
8708 return -EOPNOTSUPP;
8709
8710 /* Find the HW bridge for the PF VSI */
8711 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
8712 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
8713 veb = pf->veb[i];
8714 }
8715
8716 if (!veb)
8717 return 0;
8718
Nicolas Dichtel46c264d2015-04-28 18:33:49 +02008719 return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
Scott Feldman7d4f8d82015-06-22 00:27:17 -07008720 nlflags, 0, 0, filter_mask, NULL);
Neerav Parikh51616012015-02-06 08:52:14 +00008721}
Neerav Parikh51616012015-02-06 08:52:14 +00008722
Joe Stringerf44a75e2015-04-14 17:09:14 -07008723#define I40E_MAX_TUNNEL_HDR_LEN 80
8724/**
8725 * i40e_features_check - Validate encapsulated packet conforms to limits
8726 * @skb: skb buff
Jean Sacren2bc11c62015-09-19 05:08:43 -06008727 * @dev: This physical port's netdev
Joe Stringerf44a75e2015-04-14 17:09:14 -07008728 * @features: Offload features that the stack believes apply
8729 **/
8730static netdev_features_t i40e_features_check(struct sk_buff *skb,
8731 struct net_device *dev,
8732 netdev_features_t features)
8733{
8734 if (skb->encapsulation &&
8735 (skb_inner_mac_header(skb) - skb_transport_header(skb) >
8736 I40E_MAX_TUNNEL_HDR_LEN))
8737 return features & ~(NETIF_F_ALL_CSUM | NETIF_F_GSO_MASK);
8738
8739 return features;
8740}
8741
Shannon Nelson37a29732015-02-27 09:15:19 +00008742static const struct net_device_ops i40e_netdev_ops = {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008743 .ndo_open = i40e_open,
8744 .ndo_stop = i40e_close,
8745 .ndo_start_xmit = i40e_lan_xmit_frame,
8746 .ndo_get_stats64 = i40e_get_netdev_stats_struct,
8747 .ndo_set_rx_mode = i40e_set_rx_mode,
8748 .ndo_validate_addr = eth_validate_addr,
8749 .ndo_set_mac_address = i40e_set_mac,
8750 .ndo_change_mtu = i40e_change_mtu,
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00008751 .ndo_do_ioctl = i40e_ioctl,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008752 .ndo_tx_timeout = i40e_tx_timeout,
8753 .ndo_vlan_rx_add_vid = i40e_vlan_rx_add_vid,
8754 .ndo_vlan_rx_kill_vid = i40e_vlan_rx_kill_vid,
8755#ifdef CONFIG_NET_POLL_CONTROLLER
8756 .ndo_poll_controller = i40e_netpoll,
8757#endif
8758 .ndo_setup_tc = i40e_setup_tc,
Vasu Dev38e00432014-08-01 13:27:03 -07008759#ifdef I40E_FCOE
8760 .ndo_fcoe_enable = i40e_fcoe_enable,
8761 .ndo_fcoe_disable = i40e_fcoe_disable,
8762#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008763 .ndo_set_features = i40e_set_features,
8764 .ndo_set_vf_mac = i40e_ndo_set_vf_mac,
8765 .ndo_set_vf_vlan = i40e_ndo_set_vf_port_vlan,
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04008766 .ndo_set_vf_rate = i40e_ndo_set_vf_bw,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008767 .ndo_get_vf_config = i40e_ndo_get_vf_config,
Mitch Williams588aefa2014-02-11 08:27:49 +00008768 .ndo_set_vf_link_state = i40e_ndo_set_vf_link_state,
Serey Konge6d90042014-07-12 07:28:14 +00008769 .ndo_set_vf_spoofchk = i40e_ndo_set_vf_spoofchk,
Jeff Kirshera1c9a9d2013-12-28 07:32:18 +00008770#ifdef CONFIG_I40E_VXLAN
8771 .ndo_add_vxlan_port = i40e_add_vxlan_port,
8772 .ndo_del_vxlan_port = i40e_del_vxlan_port,
8773#endif
Neerav Parikh1f224ad2014-02-12 01:45:31 +00008774 .ndo_get_phys_port_id = i40e_get_phys_port_id,
Greg Rose4ba0dea2014-03-06 08:59:55 +00008775 .ndo_fdb_add = i40e_ndo_fdb_add,
Joe Stringerf44a75e2015-04-14 17:09:14 -07008776 .ndo_features_check = i40e_features_check,
Neerav Parikh51616012015-02-06 08:52:14 +00008777 .ndo_bridge_getlink = i40e_ndo_bridge_getlink,
8778 .ndo_bridge_setlink = i40e_ndo_bridge_setlink,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008779};
8780
8781/**
8782 * i40e_config_netdev - Setup the netdev flags
8783 * @vsi: the VSI being configured
8784 *
8785 * Returns 0 on success, negative value on failure
8786 **/
8787static int i40e_config_netdev(struct i40e_vsi *vsi)
8788{
Greg Rose1a103702013-11-28 06:42:39 +00008789 u8 brdcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008790 struct i40e_pf *pf = vsi->back;
8791 struct i40e_hw *hw = &pf->hw;
8792 struct i40e_netdev_priv *np;
8793 struct net_device *netdev;
8794 u8 mac_addr[ETH_ALEN];
8795 int etherdev_size;
8796
8797 etherdev_size = sizeof(struct i40e_netdev_priv);
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +00008798 netdev = alloc_etherdev_mq(etherdev_size, vsi->alloc_queue_pairs);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008799 if (!netdev)
8800 return -ENOMEM;
8801
8802 vsi->netdev = netdev;
8803 np = netdev_priv(netdev);
8804 np->vsi = vsi;
8805
Or Gerlitzd70e9412014-03-18 10:36:45 +02008806 netdev->hw_enc_features |= NETIF_F_IP_CSUM |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008807 NETIF_F_GSO_UDP_TUNNEL |
Jesse Brandeburgfec31ff2015-10-01 18:25:42 -07008808 NETIF_F_GSO_GRE |
Or Gerlitzd70e9412014-03-18 10:36:45 +02008809 NETIF_F_TSO;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008810
8811 netdev->features = NETIF_F_SG |
8812 NETIF_F_IP_CSUM |
8813 NETIF_F_SCTP_CSUM |
8814 NETIF_F_HIGHDMA |
8815 NETIF_F_GSO_UDP_TUNNEL |
Jesse Brandeburgfec31ff2015-10-01 18:25:42 -07008816 NETIF_F_GSO_GRE |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008817 NETIF_F_HW_VLAN_CTAG_TX |
8818 NETIF_F_HW_VLAN_CTAG_RX |
8819 NETIF_F_HW_VLAN_CTAG_FILTER |
8820 NETIF_F_IPV6_CSUM |
8821 NETIF_F_TSO |
Jesse Brandeburg059dab62014-04-01 09:07:20 +00008822 NETIF_F_TSO_ECN |
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008823 NETIF_F_TSO6 |
8824 NETIF_F_RXCSUM |
8825 NETIF_F_RXHASH |
8826 0;
8827
Anjali Singhai Jain2e86a0b2014-04-01 07:11:53 +00008828 if (!(pf->flags & I40E_FLAG_MFP_ENABLED))
8829 netdev->features |= NETIF_F_NTUPLE;
8830
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008831 /* copy netdev features into list of user selectable features */
8832 netdev->hw_features |= netdev->features;
8833
8834 if (vsi->type == I40E_VSI_MAIN) {
8835 SET_NETDEV_DEV(netdev, &pf->pdev->dev);
Greg Rose9a173902014-05-22 06:32:02 +00008836 ether_addr_copy(mac_addr, hw->mac.perm_addr);
Shannon Nelson30650cc2014-07-29 04:01:50 +00008837 /* The following steps are necessary to prevent reception
8838 * of tagged packets - some older NVM configurations load a
8839 * default a MAC-VLAN filter that accepts any tagged packet
8840 * which must be replaced by a normal filter.
Greg Rose8c27d422014-05-22 06:31:56 +00008841 */
Kiran Patil21659032015-09-30 14:09:03 -04008842 if (!i40e_rm_default_mac_filter(vsi, mac_addr)) {
8843 spin_lock_bh(&vsi->mac_filter_list_lock);
Shannon Nelson30650cc2014-07-29 04:01:50 +00008844 i40e_add_filter(vsi, mac_addr,
8845 I40E_VLAN_ANY, false, true);
Kiran Patil21659032015-09-30 14:09:03 -04008846 spin_unlock_bh(&vsi->mac_filter_list_lock);
8847 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008848 } else {
8849 /* relate the VSI_VMDQ name to the VSI_MAIN name */
8850 snprintf(netdev->name, IFNAMSIZ, "%sv%%d",
8851 pf->vsi[pf->lan_vsi]->netdev->name);
8852 random_ether_addr(mac_addr);
Kiran Patil21659032015-09-30 14:09:03 -04008853
8854 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008855 i40e_add_filter(vsi, mac_addr, I40E_VLAN_ANY, false, false);
Kiran Patil21659032015-09-30 14:09:03 -04008856 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008857 }
Kiran Patil21659032015-09-30 14:09:03 -04008858
8859 spin_lock_bh(&vsi->mac_filter_list_lock);
Greg Rose1a103702013-11-28 06:42:39 +00008860 i40e_add_filter(vsi, brdcast, I40E_VLAN_ANY, false, false);
Kiran Patil21659032015-09-30 14:09:03 -04008861 spin_unlock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008862
Greg Rose9a173902014-05-22 06:32:02 +00008863 ether_addr_copy(netdev->dev_addr, mac_addr);
8864 ether_addr_copy(netdev->perm_addr, mac_addr);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008865 /* vlan gets same features (except vlan offload)
8866 * after any tweaks for specific VSI types
8867 */
8868 netdev->vlan_features = netdev->features & ~(NETIF_F_HW_VLAN_CTAG_TX |
8869 NETIF_F_HW_VLAN_CTAG_RX |
8870 NETIF_F_HW_VLAN_CTAG_FILTER);
8871 netdev->priv_flags |= IFF_UNICAST_FLT;
8872 netdev->priv_flags |= IFF_SUPP_NOFCS;
8873 /* Setup netdev TC information */
8874 i40e_vsi_config_netdev_tc(vsi, vsi->tc_config.enabled_tc);
8875
8876 netdev->netdev_ops = &i40e_netdev_ops;
8877 netdev->watchdog_timeo = 5 * HZ;
8878 i40e_set_ethtool_ops(netdev);
Vasu Dev38e00432014-08-01 13:27:03 -07008879#ifdef I40E_FCOE
8880 i40e_fcoe_config_netdev(netdev, vsi);
8881#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008882
8883 return 0;
8884}
8885
8886/**
8887 * i40e_vsi_delete - Delete a VSI from the switch
8888 * @vsi: the VSI being removed
8889 *
8890 * Returns 0 on success, negative value on failure
8891 **/
8892static void i40e_vsi_delete(struct i40e_vsi *vsi)
8893{
8894 /* remove default VSI is not allowed */
8895 if (vsi == vsi->back->vsi[vsi->back->lan_vsi])
8896 return;
8897
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008898 i40e_aq_delete_element(&vsi->back->hw, vsi->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008899}
8900
8901/**
Neerav Parikh51616012015-02-06 08:52:14 +00008902 * i40e_is_vsi_uplink_mode_veb - Check if the VSI's uplink bridge mode is VEB
8903 * @vsi: the VSI being queried
8904 *
8905 * Returns 1 if HW bridge mode is VEB and return 0 in case of VEPA mode
8906 **/
8907int i40e_is_vsi_uplink_mode_veb(struct i40e_vsi *vsi)
8908{
8909 struct i40e_veb *veb;
8910 struct i40e_pf *pf = vsi->back;
8911
8912 /* Uplink is not a bridge so default to VEB */
8913 if (vsi->veb_idx == I40E_NO_VEB)
8914 return 1;
8915
8916 veb = pf->veb[vsi->veb_idx];
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04008917 if (!veb) {
8918 dev_info(&pf->pdev->dev,
8919 "There is no veb associated with the bridge\n");
8920 return -ENOENT;
8921 }
Neerav Parikh51616012015-02-06 08:52:14 +00008922
Akeem G Abodunrin09603ea2015-10-01 14:37:36 -04008923 /* Uplink is a bridge in VEPA mode */
8924 if (veb->bridge_mode & BRIDGE_MODE_VEPA) {
8925 return 0;
8926 } else {
8927 /* Uplink is a bridge in VEB mode */
8928 return 1;
8929 }
8930
8931 /* VEPA is now default bridge, so return 0 */
8932 return 0;
Neerav Parikh51616012015-02-06 08:52:14 +00008933}
8934
8935/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008936 * i40e_add_vsi - Add a VSI to the switch
8937 * @vsi: the VSI being configured
8938 *
8939 * This initializes a VSI context depending on the VSI type to be added and
8940 * passes it down to the add_vsi aq command.
8941 **/
8942static int i40e_add_vsi(struct i40e_vsi *vsi)
8943{
8944 int ret = -ENODEV;
Kiran Patil21659032015-09-30 14:09:03 -04008945 u8 laa_macaddr[ETH_ALEN];
8946 bool found_laa_mac_filter = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008947 struct i40e_pf *pf = vsi->back;
8948 struct i40e_hw *hw = &pf->hw;
8949 struct i40e_vsi_context ctxt;
Kiran Patil21659032015-09-30 14:09:03 -04008950 struct i40e_mac_filter *f, *ftmp;
8951
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008952 u8 enabled_tc = 0x1; /* TC0 enabled */
8953 int f_count = 0;
8954
8955 memset(&ctxt, 0, sizeof(ctxt));
8956 switch (vsi->type) {
8957 case I40E_VSI_MAIN:
8958 /* The PF's main VSI is already setup as part of the
8959 * device initialization, so we'll not bother with
8960 * the add_vsi call, but we will retrieve the current
8961 * VSI context.
8962 */
8963 ctxt.seid = pf->main_vsi_seid;
8964 ctxt.pf_num = pf->hw.pf_id;
8965 ctxt.vf_num = 0;
8966 ret = i40e_aq_get_vsi_params(&pf->hw, &ctxt, NULL);
8967 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
8968 if (ret) {
8969 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008970 "couldn't get PF vsi config, err %s aq_err %s\n",
8971 i40e_stat_str(&pf->hw, ret),
8972 i40e_aq_str(&pf->hw,
8973 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008974 return -ENOENT;
8975 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07008976 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008977 vsi->info.valid_sections = 0;
8978
8979 vsi->seid = ctxt.seid;
8980 vsi->id = ctxt.vsi_number;
8981
8982 enabled_tc = i40e_pf_get_tc_map(pf);
8983
8984 /* MFP mode setup queue map and update VSI */
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00008985 if ((pf->flags & I40E_FLAG_MFP_ENABLED) &&
8986 !(pf->hw.func_caps.iscsi)) { /* NIC type PF */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008987 memset(&ctxt, 0, sizeof(ctxt));
8988 ctxt.seid = pf->main_vsi_seid;
8989 ctxt.pf_num = pf->hw.pf_id;
8990 ctxt.vf_num = 0;
8991 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, false);
8992 ret = i40e_aq_update_vsi_params(hw, &ctxt, NULL);
8993 if (ret) {
8994 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04008995 "update vsi failed, err %s aq_err %s\n",
8996 i40e_stat_str(&pf->hw, ret),
8997 i40e_aq_str(&pf->hw,
8998 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00008999 ret = -ENOENT;
9000 goto err;
9001 }
9002 /* update the local VSI info queue map */
9003 i40e_vsi_update_queue_map(vsi, &ctxt);
9004 vsi->info.valid_sections = 0;
9005 } else {
9006 /* Default/Main VSI is only enabled for TC0
9007 * reconfigure it to enable all TCs that are
9008 * available on the port in SFP mode.
Neerav Parikh63d7e5a2014-12-14 01:55:16 +00009009 * For MFP case the iSCSI PF would use this
9010 * flow to enable LAN+iSCSI TC.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009011 */
9012 ret = i40e_vsi_config_tc(vsi, enabled_tc);
9013 if (ret) {
9014 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009015 "failed to configure TCs for main VSI tc_map 0x%08x, err %s aq_err %s\n",
9016 enabled_tc,
9017 i40e_stat_str(&pf->hw, ret),
9018 i40e_aq_str(&pf->hw,
9019 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009020 ret = -ENOENT;
9021 }
9022 }
9023 break;
9024
9025 case I40E_VSI_FDIR:
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009026 ctxt.pf_num = hw->pf_id;
9027 ctxt.vf_num = 0;
9028 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009029 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009030 ctxt.flags = I40E_AQ_VSI_TYPE_PF;
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009031 if ((pf->flags & I40E_FLAG_VEB_MODE_ENABLED) &&
9032 (i40e_is_vsi_uplink_mode_veb(vsi))) {
Neerav Parikh51616012015-02-06 08:52:14 +00009033 ctxt.info.valid_sections |=
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009034 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
Neerav Parikh51616012015-02-06 08:52:14 +00009035 ctxt.info.switch_id =
Anjali Singhai Jainfc608612015-05-08 15:35:57 -07009036 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
Neerav Parikh51616012015-02-06 08:52:14 +00009037 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009038 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009039 break;
9040
9041 case I40E_VSI_VMDQ2:
9042 ctxt.pf_num = hw->pf_id;
9043 ctxt.vf_num = 0;
9044 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009045 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009046 ctxt.flags = I40E_AQ_VSI_TYPE_VMDQ2;
9047
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009048 /* This VSI is connected to VEB so the switch_id
9049 * should be set to zero by default.
9050 */
Neerav Parikh51616012015-02-06 08:52:14 +00009051 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9052 ctxt.info.valid_sections |=
9053 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9054 ctxt.info.switch_id =
9055 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9056 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009057
9058 /* Setup the VSI tx/rx queue map for TC0 only for now */
9059 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9060 break;
9061
9062 case I40E_VSI_SRIOV:
9063 ctxt.pf_num = hw->pf_id;
9064 ctxt.vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
9065 ctxt.uplink_seid = vsi->uplink_seid;
Neerav Parikh2b18e592015-01-24 09:58:38 +00009066 ctxt.connection_type = I40E_AQ_VSI_CONN_TYPE_NORMAL;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009067 ctxt.flags = I40E_AQ_VSI_TYPE_VF;
9068
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009069 /* This VSI is connected to VEB so the switch_id
9070 * should be set to zero by default.
9071 */
Neerav Parikh51616012015-02-06 08:52:14 +00009072 if (i40e_is_vsi_uplink_mode_veb(vsi)) {
9073 ctxt.info.valid_sections |=
9074 cpu_to_le16(I40E_AQ_VSI_PROP_SWITCH_VALID);
9075 ctxt.info.switch_id =
9076 cpu_to_le16(I40E_AQ_VSI_SW_ID_FLAG_ALLOW_LB);
9077 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009078
9079 ctxt.info.valid_sections |= cpu_to_le16(I40E_AQ_VSI_PROP_VLAN_VALID);
9080 ctxt.info.port_vlan_flags |= I40E_AQ_VSI_PVLAN_MODE_ALL;
Mitch Williamsc674d122014-05-20 08:01:40 +00009081 if (pf->vf[vsi->vf_id].spoofchk) {
9082 ctxt.info.valid_sections |=
9083 cpu_to_le16(I40E_AQ_VSI_PROP_SECURITY_VALID);
9084 ctxt.info.sec_flags |=
9085 (I40E_AQ_VSI_SEC_FLAG_ENABLE_VLAN_CHK |
9086 I40E_AQ_VSI_SEC_FLAG_ENABLE_MAC_CHK);
9087 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009088 /* Setup the VSI tx/rx queue map for TC0 only for now */
9089 i40e_vsi_setup_queue_map(vsi, &ctxt, enabled_tc, true);
9090 break;
9091
Vasu Dev38e00432014-08-01 13:27:03 -07009092#ifdef I40E_FCOE
9093 case I40E_VSI_FCOE:
9094 ret = i40e_fcoe_vsi_init(vsi, &ctxt);
9095 if (ret) {
9096 dev_info(&pf->pdev->dev, "failed to initialize FCoE VSI\n");
9097 return ret;
9098 }
9099 break;
9100
9101#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009102 default:
9103 return -ENODEV;
9104 }
9105
9106 if (vsi->type != I40E_VSI_MAIN) {
9107 ret = i40e_aq_add_vsi(hw, &ctxt, NULL);
9108 if (ret) {
9109 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009110 "add vsi failed, err %s aq_err %s\n",
9111 i40e_stat_str(&pf->hw, ret),
9112 i40e_aq_str(&pf->hw,
9113 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009114 ret = -ENOENT;
9115 goto err;
9116 }
Jesse Brandeburg1a2f6242015-03-31 00:45:01 -07009117 vsi->info = ctxt.info;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009118 vsi->info.valid_sections = 0;
9119 vsi->seid = ctxt.seid;
9120 vsi->id = ctxt.vsi_number;
9121 }
9122
Kiran Patil21659032015-09-30 14:09:03 -04009123 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009124 /* If macvlan filters already exist, force them to get loaded */
9125 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list) {
9126 f->changed = true;
9127 f_count++;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00009128
Kiran Patil21659032015-09-30 14:09:03 -04009129 /* Expected to have only one MAC filter entry for LAA in list */
Shannon Nelson6252c7e2014-06-04 01:23:23 +00009130 if (f->is_laa && vsi->type == I40E_VSI_MAIN) {
Kiran Patil21659032015-09-30 14:09:03 -04009131 ether_addr_copy(laa_macaddr, f->macaddr);
9132 found_laa_mac_filter = true;
Shannon Nelson6252c7e2014-06-04 01:23:23 +00009133 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009134 }
Kiran Patil21659032015-09-30 14:09:03 -04009135 spin_unlock_bh(&vsi->mac_filter_list_lock);
9136
9137 if (found_laa_mac_filter) {
9138 struct i40e_aqc_remove_macvlan_element_data element;
9139
9140 memset(&element, 0, sizeof(element));
9141 ether_addr_copy(element.mac_addr, laa_macaddr);
9142 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH;
9143 ret = i40e_aq_remove_macvlan(hw, vsi->seid,
9144 &element, 1, NULL);
9145 if (ret) {
9146 /* some older FW has a different default */
9147 element.flags |=
9148 I40E_AQC_MACVLAN_DEL_IGNORE_VLAN;
9149 i40e_aq_remove_macvlan(hw, vsi->seid,
9150 &element, 1, NULL);
9151 }
9152
9153 i40e_aq_mac_address_write(hw,
9154 I40E_AQC_WRITE_TYPE_LAA_WOL,
9155 laa_macaddr, NULL);
9156 }
9157
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009158 if (f_count) {
9159 vsi->flags |= I40E_VSI_FLAG_FILTER_CHANGED;
9160 pf->flags |= I40E_FLAG_FILTER_SYNC;
9161 }
9162
9163 /* Update VSI BW information */
9164 ret = i40e_vsi_get_bw_info(vsi);
9165 if (ret) {
9166 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009167 "couldn't get vsi bw info, err %s aq_err %s\n",
9168 i40e_stat_str(&pf->hw, ret),
9169 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009170 /* VSI is already added so not tearing that up */
9171 ret = 0;
9172 }
9173
9174err:
9175 return ret;
9176}
9177
9178/**
9179 * i40e_vsi_release - Delete a VSI and free its resources
9180 * @vsi: the VSI being removed
9181 *
9182 * Returns 0 on success or < 0 on error
9183 **/
9184int i40e_vsi_release(struct i40e_vsi *vsi)
9185{
9186 struct i40e_mac_filter *f, *ftmp;
9187 struct i40e_veb *veb = NULL;
9188 struct i40e_pf *pf;
9189 u16 uplink_seid;
9190 int i, n;
9191
9192 pf = vsi->back;
9193
9194 /* release of a VEB-owner or last VSI is not allowed */
9195 if (vsi->flags & I40E_VSI_FLAG_VEB_OWNER) {
9196 dev_info(&pf->pdev->dev, "VSI %d has existing VEB %d\n",
9197 vsi->seid, vsi->uplink_seid);
9198 return -ENODEV;
9199 }
9200 if (vsi == pf->vsi[pf->lan_vsi] &&
9201 !test_bit(__I40E_DOWN, &pf->state)) {
9202 dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
9203 return -ENODEV;
9204 }
9205
9206 uplink_seid = vsi->uplink_seid;
9207 if (vsi->type != I40E_VSI_SRIOV) {
9208 if (vsi->netdev_registered) {
9209 vsi->netdev_registered = false;
9210 if (vsi->netdev) {
9211 /* results in a call to i40e_close() */
9212 unregister_netdev(vsi->netdev);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009213 }
9214 } else {
Shannon Nelson90ef8d42014-03-14 07:32:26 +00009215 i40e_vsi_close(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009216 }
9217 i40e_vsi_disable_irq(vsi);
9218 }
9219
Kiran Patil21659032015-09-30 14:09:03 -04009220 spin_lock_bh(&vsi->mac_filter_list_lock);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009221 list_for_each_entry_safe(f, ftmp, &vsi->mac_filter_list, list)
9222 i40e_del_filter(vsi, f->macaddr, f->vlan,
9223 f->is_vf, f->is_netdev);
Kiran Patil21659032015-09-30 14:09:03 -04009224 spin_unlock_bh(&vsi->mac_filter_list_lock);
9225
Anjali Singhai30e25612015-09-28 13:37:12 -07009226 i40e_sync_vsi_filters(vsi, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009227
9228 i40e_vsi_delete(vsi);
9229 i40e_vsi_free_q_vectors(vsi);
Shannon Nelsona4866592014-02-11 08:24:07 +00009230 if (vsi->netdev) {
9231 free_netdev(vsi->netdev);
9232 vsi->netdev = NULL;
9233 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009234 i40e_vsi_clear_rings(vsi);
9235 i40e_vsi_clear(vsi);
9236
9237 /* If this was the last thing on the VEB, except for the
9238 * controlling VSI, remove the VEB, which puts the controlling
9239 * VSI onto the next level down in the switch.
9240 *
9241 * Well, okay, there's one more exception here: don't remove
9242 * the orphan VEBs yet. We'll wait for an explicit remove request
9243 * from up the network stack.
9244 */
Mitch Williams505682c2014-05-20 08:01:37 +00009245 for (n = 0, i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009246 if (pf->vsi[i] &&
9247 pf->vsi[i]->uplink_seid == uplink_seid &&
9248 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9249 n++; /* count the VSIs */
9250 }
9251 }
9252 for (i = 0; i < I40E_MAX_VEB; i++) {
9253 if (!pf->veb[i])
9254 continue;
9255 if (pf->veb[i]->uplink_seid == uplink_seid)
9256 n++; /* count the VEBs */
9257 if (pf->veb[i]->seid == uplink_seid)
9258 veb = pf->veb[i];
9259 }
9260 if (n == 0 && veb && veb->uplink_seid != 0)
9261 i40e_veb_release(veb);
9262
9263 return 0;
9264}
9265
9266/**
9267 * i40e_vsi_setup_vectors - Set up the q_vectors for the given VSI
9268 * @vsi: ptr to the VSI
9269 *
9270 * This should only be called after i40e_vsi_mem_alloc() which allocates the
9271 * corresponding SW VSI structure and initializes num_queue_pairs for the
9272 * newly allocated VSI.
9273 *
9274 * Returns 0 on success or negative on failure
9275 **/
9276static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
9277{
9278 int ret = -ENOENT;
9279 struct i40e_pf *pf = vsi->back;
9280
Alexander Duyck493fb302013-09-28 07:01:44 +00009281 if (vsi->q_vectors[0]) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009282 dev_info(&pf->pdev->dev, "VSI %d has existing q_vectors\n",
9283 vsi->seid);
9284 return -EEXIST;
9285 }
9286
9287 if (vsi->base_vector) {
Jesse Brandeburgf29eaa32014-02-11 08:24:12 +00009288 dev_info(&pf->pdev->dev, "VSI %d has non-zero base vector %d\n",
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009289 vsi->seid, vsi->base_vector);
9290 return -EEXIST;
9291 }
9292
Greg Rose90e04072014-03-06 08:59:57 +00009293 ret = i40e_vsi_alloc_q_vectors(vsi);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009294 if (ret) {
9295 dev_info(&pf->pdev->dev,
9296 "failed to allocate %d q_vector for VSI %d, ret=%d\n",
9297 vsi->num_q_vectors, vsi->seid, ret);
9298 vsi->num_q_vectors = 0;
9299 goto vector_setup_out;
9300 }
9301
Anjali Singhai Jain26cdc442015-07-10 19:36:00 -04009302 /* In Legacy mode, we do not have to get any other vector since we
9303 * piggyback on the misc/ICR0 for queue interrupts.
9304 */
9305 if (!(pf->flags & I40E_FLAG_MSIX_ENABLED))
9306 return ret;
Shannon Nelson958a3e32013-09-28 07:13:28 +00009307 if (vsi->num_q_vectors)
9308 vsi->base_vector = i40e_get_lump(pf, pf->irq_pile,
9309 vsi->num_q_vectors, vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009310 if (vsi->base_vector < 0) {
9311 dev_info(&pf->pdev->dev,
Shannon Nelson049a2be2014-10-17 03:14:50 +00009312 "failed to get tracking for %d vectors for VSI %d, err=%d\n",
9313 vsi->num_q_vectors, vsi->seid, vsi->base_vector);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009314 i40e_vsi_free_q_vectors(vsi);
9315 ret = -ENOENT;
9316 goto vector_setup_out;
9317 }
9318
9319vector_setup_out:
9320 return ret;
9321}
9322
9323/**
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009324 * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
9325 * @vsi: pointer to the vsi.
9326 *
9327 * This re-allocates a vsi's queue resources.
9328 *
9329 * Returns pointer to the successfully allocated and configured VSI sw struct
9330 * on success, otherwise returns NULL on failure.
9331 **/
9332static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
9333{
9334 struct i40e_pf *pf = vsi->back;
9335 u8 enabled_tc;
9336 int ret;
9337
9338 i40e_put_lump(pf->qp_pile, vsi->base_queue, vsi->idx);
9339 i40e_vsi_clear_rings(vsi);
9340
9341 i40e_vsi_free_arrays(vsi, false);
9342 i40e_set_num_rings_in_vsi(vsi);
9343 ret = i40e_vsi_alloc_arrays(vsi, false);
9344 if (ret)
9345 goto err_vsi;
9346
9347 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs, vsi->idx);
9348 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009349 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009350 "failed to get tracking for %d queues for VSI %d err %d\n",
Shannon Nelson049a2be2014-10-17 03:14:50 +00009351 vsi->alloc_queue_pairs, vsi->seid, ret);
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +00009352 goto err_vsi;
9353 }
9354 vsi->base_queue = ret;
9355
9356 /* Update the FW view of the VSI. Force a reset of TC and queue
9357 * layout configurations.
9358 */
9359 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
9360 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
9361 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
9362 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
9363
9364 /* assign it some queues */
9365 ret = i40e_alloc_rings(vsi);
9366 if (ret)
9367 goto err_rings;
9368
9369 /* map all of the rings to the q_vectors */
9370 i40e_vsi_map_rings_to_vectors(vsi);
9371 return vsi;
9372
9373err_rings:
9374 i40e_vsi_free_q_vectors(vsi);
9375 if (vsi->netdev_registered) {
9376 vsi->netdev_registered = false;
9377 unregister_netdev(vsi->netdev);
9378 free_netdev(vsi->netdev);
9379 vsi->netdev = NULL;
9380 }
9381 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9382err_vsi:
9383 i40e_vsi_clear(vsi);
9384 return NULL;
9385}
9386
9387/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009388 * i40e_vsi_setup - Set up a VSI by a given type
9389 * @pf: board private structure
9390 * @type: VSI type
9391 * @uplink_seid: the switch element to link to
9392 * @param1: usage depends upon VSI type. For VF types, indicates VF id
9393 *
9394 * This allocates the sw VSI structure and its queue resources, then add a VSI
9395 * to the identified VEB.
9396 *
9397 * Returns pointer to the successfully allocated and configure VSI sw struct on
9398 * success, otherwise returns NULL on failure.
9399 **/
9400struct i40e_vsi *i40e_vsi_setup(struct i40e_pf *pf, u8 type,
9401 u16 uplink_seid, u32 param1)
9402{
9403 struct i40e_vsi *vsi = NULL;
9404 struct i40e_veb *veb = NULL;
9405 int ret, i;
9406 int v_idx;
9407
9408 /* The requested uplink_seid must be either
9409 * - the PF's port seid
9410 * no VEB is needed because this is the PF
9411 * or this is a Flow Director special case VSI
9412 * - seid of an existing VEB
9413 * - seid of a VSI that owns an existing VEB
9414 * - seid of a VSI that doesn't own a VEB
9415 * a new VEB is created and the VSI becomes the owner
9416 * - seid of the PF VSI, which is what creates the first VEB
9417 * this is a special case of the previous
9418 *
9419 * Find which uplink_seid we were given and create a new VEB if needed
9420 */
9421 for (i = 0; i < I40E_MAX_VEB; i++) {
9422 if (pf->veb[i] && pf->veb[i]->seid == uplink_seid) {
9423 veb = pf->veb[i];
9424 break;
9425 }
9426 }
9427
9428 if (!veb && uplink_seid != pf->mac_seid) {
9429
Mitch Williams505682c2014-05-20 08:01:37 +00009430 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009431 if (pf->vsi[i] && pf->vsi[i]->seid == uplink_seid) {
9432 vsi = pf->vsi[i];
9433 break;
9434 }
9435 }
9436 if (!vsi) {
9437 dev_info(&pf->pdev->dev, "no such uplink_seid %d\n",
9438 uplink_seid);
9439 return NULL;
9440 }
9441
9442 if (vsi->uplink_seid == pf->mac_seid)
9443 veb = i40e_veb_setup(pf, 0, pf->mac_seid, vsi->seid,
9444 vsi->tc_config.enabled_tc);
9445 else if ((vsi->flags & I40E_VSI_FLAG_VEB_OWNER) == 0)
9446 veb = i40e_veb_setup(pf, 0, vsi->uplink_seid, vsi->seid,
9447 vsi->tc_config.enabled_tc);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009448 if (veb) {
9449 if (vsi->seid != pf->vsi[pf->lan_vsi]->seid) {
9450 dev_info(&vsi->back->pdev->dev,
Shannon Nelsonfb43201f2015-08-26 15:14:17 -04009451 "New VSI creation error, uplink seid of LAN VSI expected.\n");
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009452 return NULL;
9453 }
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -04009454 /* We come up by default in VEPA mode if SRIOV is not
9455 * already enabled, in which case we can't force VEPA
9456 * mode.
9457 */
9458 if (!(pf->flags & I40E_FLAG_VEB_MODE_ENABLED)) {
9459 veb->bridge_mode = BRIDGE_MODE_VEPA;
9460 pf->flags &= ~I40E_FLAG_VEB_MODE_ENABLED;
9461 }
Neerav Parikh51616012015-02-06 08:52:14 +00009462 i40e_config_bridge_mode(veb);
Anjali Singhai Jain79c21a82014-11-13 03:06:14 +00009463 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009464 for (i = 0; i < I40E_MAX_VEB && !veb; i++) {
9465 if (pf->veb[i] && pf->veb[i]->seid == vsi->uplink_seid)
9466 veb = pf->veb[i];
9467 }
9468 if (!veb) {
9469 dev_info(&pf->pdev->dev, "couldn't add VEB\n");
9470 return NULL;
9471 }
9472
9473 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
9474 uplink_seid = veb->seid;
9475 }
9476
9477 /* get vsi sw struct */
9478 v_idx = i40e_vsi_mem_alloc(pf, type);
9479 if (v_idx < 0)
9480 goto err_alloc;
9481 vsi = pf->vsi[v_idx];
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009482 if (!vsi)
9483 goto err_alloc;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009484 vsi->type = type;
9485 vsi->veb_idx = (veb ? veb->idx : I40E_NO_VEB);
9486
9487 if (type == I40E_VSI_MAIN)
9488 pf->lan_vsi = v_idx;
9489 else if (type == I40E_VSI_SRIOV)
9490 vsi->vf_id = param1;
9491 /* assign it some queues */
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -08009492 ret = i40e_get_lump(pf, pf->qp_pile, vsi->alloc_queue_pairs,
9493 vsi->idx);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009494 if (ret < 0) {
Shannon Nelson049a2be2014-10-17 03:14:50 +00009495 dev_info(&pf->pdev->dev,
9496 "failed to get tracking for %d queues for VSI %d err=%d\n",
9497 vsi->alloc_queue_pairs, vsi->seid, ret);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009498 goto err_vsi;
9499 }
9500 vsi->base_queue = ret;
9501
9502 /* get a VSI from the hardware */
9503 vsi->uplink_seid = uplink_seid;
9504 ret = i40e_add_vsi(vsi);
9505 if (ret)
9506 goto err_vsi;
9507
9508 switch (vsi->type) {
9509 /* setup the netdev if needed */
9510 case I40E_VSI_MAIN:
9511 case I40E_VSI_VMDQ2:
Vasu Dev38e00432014-08-01 13:27:03 -07009512 case I40E_VSI_FCOE:
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009513 ret = i40e_config_netdev(vsi);
9514 if (ret)
9515 goto err_netdev;
9516 ret = register_netdev(vsi->netdev);
9517 if (ret)
9518 goto err_netdev;
9519 vsi->netdev_registered = true;
9520 netif_carrier_off(vsi->netdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -08009521#ifdef CONFIG_I40E_DCB
9522 /* Setup DCB netlink interface */
9523 i40e_dcbnl_setup(vsi);
9524#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009525 /* fall through */
9526
9527 case I40E_VSI_FDIR:
9528 /* set up vectors and rings if needed */
9529 ret = i40e_vsi_setup_vectors(vsi);
9530 if (ret)
9531 goto err_msix;
9532
9533 ret = i40e_alloc_rings(vsi);
9534 if (ret)
9535 goto err_rings;
9536
9537 /* map all of the rings to the q_vectors */
9538 i40e_vsi_map_rings_to_vectors(vsi);
9539
9540 i40e_vsi_reset_stats(vsi);
9541 break;
9542
9543 default:
9544 /* no netdev or rings for the other VSI types */
9545 break;
9546 }
9547
Anjali Singhai Jaine25d00b82015-06-23 19:00:04 -04009548 if ((pf->flags & I40E_FLAG_RSS_AQ_CAPABLE) &&
9549 (vsi->type == I40E_VSI_VMDQ2)) {
9550 ret = i40e_vsi_config_rss(vsi);
9551 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009552 return vsi;
9553
9554err_rings:
9555 i40e_vsi_free_q_vectors(vsi);
9556err_msix:
9557 if (vsi->netdev_registered) {
9558 vsi->netdev_registered = false;
9559 unregister_netdev(vsi->netdev);
9560 free_netdev(vsi->netdev);
9561 vsi->netdev = NULL;
9562 }
9563err_netdev:
9564 i40e_aq_delete_element(&pf->hw, vsi->seid, NULL);
9565err_vsi:
9566 i40e_vsi_clear(vsi);
9567err_alloc:
9568 return NULL;
9569}
9570
9571/**
9572 * i40e_veb_get_bw_info - Query VEB BW information
9573 * @veb: the veb to query
9574 *
9575 * Query the Tx scheduler BW configuration data for given VEB
9576 **/
9577static int i40e_veb_get_bw_info(struct i40e_veb *veb)
9578{
9579 struct i40e_aqc_query_switching_comp_ets_config_resp ets_data;
9580 struct i40e_aqc_query_switching_comp_bw_config_resp bw_data;
9581 struct i40e_pf *pf = veb->pf;
9582 struct i40e_hw *hw = &pf->hw;
9583 u32 tc_bw_max;
9584 int ret = 0;
9585 int i;
9586
9587 ret = i40e_aq_query_switch_comp_bw_config(hw, veb->seid,
9588 &bw_data, NULL);
9589 if (ret) {
9590 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009591 "query veb bw config failed, err %s aq_err %s\n",
9592 i40e_stat_str(&pf->hw, ret),
9593 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009594 goto out;
9595 }
9596
9597 ret = i40e_aq_query_switch_comp_ets_config(hw, veb->seid,
9598 &ets_data, NULL);
9599 if (ret) {
9600 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009601 "query veb bw ets config failed, err %s aq_err %s\n",
9602 i40e_stat_str(&pf->hw, ret),
9603 i40e_aq_str(&pf->hw, hw->aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009604 goto out;
9605 }
9606
9607 veb->bw_limit = le16_to_cpu(ets_data.port_bw_limit);
9608 veb->bw_max_quanta = ets_data.tc_bw_max;
9609 veb->is_abs_credits = bw_data.absolute_credits_enable;
Neerav Parikh23cd1f02014-11-12 00:18:41 +00009610 veb->enabled_tc = ets_data.tc_valid_bits;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009611 tc_bw_max = le16_to_cpu(bw_data.tc_bw_max[0]) |
9612 (le16_to_cpu(bw_data.tc_bw_max[1]) << 16);
9613 for (i = 0; i < I40E_MAX_TRAFFIC_CLASS; i++) {
9614 veb->bw_tc_share_credits[i] = bw_data.tc_bw_share_credits[i];
9615 veb->bw_tc_limit_credits[i] =
9616 le16_to_cpu(bw_data.tc_bw_limits[i]);
9617 veb->bw_tc_max_quanta[i] = ((tc_bw_max >> (i*4)) & 0x7);
9618 }
9619
9620out:
9621 return ret;
9622}
9623
9624/**
9625 * i40e_veb_mem_alloc - Allocates the next available struct veb in the PF
9626 * @pf: board private structure
9627 *
9628 * On error: returns error code (negative)
9629 * On success: returns vsi index in PF (positive)
9630 **/
9631static int i40e_veb_mem_alloc(struct i40e_pf *pf)
9632{
9633 int ret = -ENOENT;
9634 struct i40e_veb *veb;
9635 int i;
9636
9637 /* Need to protect the allocation of switch elements at the PF level */
9638 mutex_lock(&pf->switch_mutex);
9639
9640 /* VEB list may be fragmented if VEB creation/destruction has
9641 * been happening. We can afford to do a quick scan to look
9642 * for any free slots in the list.
9643 *
9644 * find next empty veb slot, looping back around if necessary
9645 */
9646 i = 0;
9647 while ((i < I40E_MAX_VEB) && (pf->veb[i] != NULL))
9648 i++;
9649 if (i >= I40E_MAX_VEB) {
9650 ret = -ENOMEM;
9651 goto err_alloc_veb; /* out of VEB slots! */
9652 }
9653
9654 veb = kzalloc(sizeof(*veb), GFP_KERNEL);
9655 if (!veb) {
9656 ret = -ENOMEM;
9657 goto err_alloc_veb;
9658 }
9659 veb->pf = pf;
9660 veb->idx = i;
9661 veb->enabled_tc = 1;
9662
9663 pf->veb[i] = veb;
9664 ret = i;
9665err_alloc_veb:
9666 mutex_unlock(&pf->switch_mutex);
9667 return ret;
9668}
9669
9670/**
9671 * i40e_switch_branch_release - Delete a branch of the switch tree
9672 * @branch: where to start deleting
9673 *
9674 * This uses recursion to find the tips of the branch to be
9675 * removed, deleting until we get back to and can delete this VEB.
9676 **/
9677static void i40e_switch_branch_release(struct i40e_veb *branch)
9678{
9679 struct i40e_pf *pf = branch->pf;
9680 u16 branch_seid = branch->seid;
9681 u16 veb_idx = branch->idx;
9682 int i;
9683
9684 /* release any VEBs on this VEB - RECURSION */
9685 for (i = 0; i < I40E_MAX_VEB; i++) {
9686 if (!pf->veb[i])
9687 continue;
9688 if (pf->veb[i]->uplink_seid == branch->seid)
9689 i40e_switch_branch_release(pf->veb[i]);
9690 }
9691
9692 /* Release the VSIs on this VEB, but not the owner VSI.
9693 *
9694 * NOTE: Removing the last VSI on a VEB has the SIDE EFFECT of removing
9695 * the VEB itself, so don't use (*branch) after this loop.
9696 */
Mitch Williams505682c2014-05-20 08:01:37 +00009697 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009698 if (!pf->vsi[i])
9699 continue;
9700 if (pf->vsi[i]->uplink_seid == branch_seid &&
9701 (pf->vsi[i]->flags & I40E_VSI_FLAG_VEB_OWNER) == 0) {
9702 i40e_vsi_release(pf->vsi[i]);
9703 }
9704 }
9705
9706 /* There's one corner case where the VEB might not have been
9707 * removed, so double check it here and remove it if needed.
9708 * This case happens if the veb was created from the debugfs
9709 * commands and no VSIs were added to it.
9710 */
9711 if (pf->veb[veb_idx])
9712 i40e_veb_release(pf->veb[veb_idx]);
9713}
9714
9715/**
9716 * i40e_veb_clear - remove veb struct
9717 * @veb: the veb to remove
9718 **/
9719static void i40e_veb_clear(struct i40e_veb *veb)
9720{
9721 if (!veb)
9722 return;
9723
9724 if (veb->pf) {
9725 struct i40e_pf *pf = veb->pf;
9726
9727 mutex_lock(&pf->switch_mutex);
9728 if (pf->veb[veb->idx] == veb)
9729 pf->veb[veb->idx] = NULL;
9730 mutex_unlock(&pf->switch_mutex);
9731 }
9732
9733 kfree(veb);
9734}
9735
9736/**
9737 * i40e_veb_release - Delete a VEB and free its resources
9738 * @veb: the VEB being removed
9739 **/
9740void i40e_veb_release(struct i40e_veb *veb)
9741{
9742 struct i40e_vsi *vsi = NULL;
9743 struct i40e_pf *pf;
9744 int i, n = 0;
9745
9746 pf = veb->pf;
9747
9748 /* find the remaining VSI and check for extras */
Mitch Williams505682c2014-05-20 08:01:37 +00009749 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009750 if (pf->vsi[i] && pf->vsi[i]->uplink_seid == veb->seid) {
9751 n++;
9752 vsi = pf->vsi[i];
9753 }
9754 }
9755 if (n != 1) {
9756 dev_info(&pf->pdev->dev,
9757 "can't remove VEB %d with %d VSIs left\n",
9758 veb->seid, n);
9759 return;
9760 }
9761
9762 /* move the remaining VSI to uplink veb */
9763 vsi->flags &= ~I40E_VSI_FLAG_VEB_OWNER;
9764 if (veb->uplink_seid) {
9765 vsi->uplink_seid = veb->uplink_seid;
9766 if (veb->uplink_seid == pf->mac_seid)
9767 vsi->veb_idx = I40E_NO_VEB;
9768 else
9769 vsi->veb_idx = veb->veb_idx;
9770 } else {
9771 /* floating VEB */
9772 vsi->uplink_seid = pf->vsi[pf->lan_vsi]->uplink_seid;
9773 vsi->veb_idx = pf->vsi[pf->lan_vsi]->veb_idx;
9774 }
9775
9776 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
9777 i40e_veb_clear(veb);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009778}
9779
9780/**
9781 * i40e_add_veb - create the VEB in the switch
9782 * @veb: the VEB to be instantiated
9783 * @vsi: the controlling VSI
9784 **/
9785static int i40e_add_veb(struct i40e_veb *veb, struct i40e_vsi *vsi)
9786{
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009787 struct i40e_pf *pf = veb->pf;
Anjali Singhai Jain92faef82015-07-28 13:02:00 -04009788 bool is_default = veb->pf->cur_promisc;
Kevin Scotte1c51b952013-11-20 10:02:51 +00009789 bool is_cloud = false;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009790 int ret;
9791
9792 /* get a VEB from the hardware */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009793 ret = i40e_aq_add_veb(&pf->hw, veb->uplink_seid, vsi->seid,
Kevin Scotte1c51b952013-11-20 10:02:51 +00009794 veb->enabled_tc, is_default,
9795 is_cloud, &veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009796 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009797 dev_info(&pf->pdev->dev,
9798 "couldn't add VEB, err %s aq_err %s\n",
9799 i40e_stat_str(&pf->hw, ret),
9800 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009801 return -EPERM;
9802 }
9803
9804 /* get statistics counter */
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009805 ret = i40e_aq_get_veb_parameters(&pf->hw, veb->seid, NULL, NULL,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009806 &veb->stats_idx, NULL, NULL, NULL);
9807 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009808 dev_info(&pf->pdev->dev,
9809 "couldn't get VEB statistics idx, err %s aq_err %s\n",
9810 i40e_stat_str(&pf->hw, ret),
9811 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009812 return -EPERM;
9813 }
9814 ret = i40e_veb_get_bw_info(veb);
9815 if (ret) {
Shannon Nelsonf1c7e722015-06-04 16:24:01 -04009816 dev_info(&pf->pdev->dev,
9817 "couldn't get VEB bw info, err %s aq_err %s\n",
9818 i40e_stat_str(&pf->hw, ret),
9819 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
9820 i40e_aq_delete_element(&pf->hw, veb->seid, NULL);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009821 return -ENOENT;
9822 }
9823
9824 vsi->uplink_seid = veb->seid;
9825 vsi->veb_idx = veb->idx;
9826 vsi->flags |= I40E_VSI_FLAG_VEB_OWNER;
9827
9828 return 0;
9829}
9830
9831/**
9832 * i40e_veb_setup - Set up a VEB
9833 * @pf: board private structure
9834 * @flags: VEB setup flags
9835 * @uplink_seid: the switch element to link to
9836 * @vsi_seid: the initial VSI seid
9837 * @enabled_tc: Enabled TC bit-map
9838 *
9839 * This allocates the sw VEB structure and links it into the switch
9840 * It is possible and legal for this to be a duplicate of an already
9841 * existing VEB. It is also possible for both uplink and vsi seids
9842 * to be zero, in order to create a floating VEB.
9843 *
9844 * Returns pointer to the successfully allocated VEB sw struct on
9845 * success, otherwise returns NULL on failure.
9846 **/
9847struct i40e_veb *i40e_veb_setup(struct i40e_pf *pf, u16 flags,
9848 u16 uplink_seid, u16 vsi_seid,
9849 u8 enabled_tc)
9850{
9851 struct i40e_veb *veb, *uplink_veb = NULL;
9852 int vsi_idx, veb_idx;
9853 int ret;
9854
9855 /* if one seid is 0, the other must be 0 to create a floating relay */
9856 if ((uplink_seid == 0 || vsi_seid == 0) &&
9857 (uplink_seid + vsi_seid != 0)) {
9858 dev_info(&pf->pdev->dev,
9859 "one, not both seid's are 0: uplink=%d vsi=%d\n",
9860 uplink_seid, vsi_seid);
9861 return NULL;
9862 }
9863
9864 /* make sure there is such a vsi and uplink */
Mitch Williams505682c2014-05-20 08:01:37 +00009865 for (vsi_idx = 0; vsi_idx < pf->num_alloc_vsi; vsi_idx++)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009866 if (pf->vsi[vsi_idx] && pf->vsi[vsi_idx]->seid == vsi_seid)
9867 break;
Mitch Williams505682c2014-05-20 08:01:37 +00009868 if (vsi_idx >= pf->num_alloc_vsi && vsi_seid != 0) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009869 dev_info(&pf->pdev->dev, "vsi seid %d not found\n",
9870 vsi_seid);
9871 return NULL;
9872 }
9873
9874 if (uplink_seid && uplink_seid != pf->mac_seid) {
9875 for (veb_idx = 0; veb_idx < I40E_MAX_VEB; veb_idx++) {
9876 if (pf->veb[veb_idx] &&
9877 pf->veb[veb_idx]->seid == uplink_seid) {
9878 uplink_veb = pf->veb[veb_idx];
9879 break;
9880 }
9881 }
9882 if (!uplink_veb) {
9883 dev_info(&pf->pdev->dev,
9884 "uplink seid %d not found\n", uplink_seid);
9885 return NULL;
9886 }
9887 }
9888
9889 /* get veb sw struct */
9890 veb_idx = i40e_veb_mem_alloc(pf);
9891 if (veb_idx < 0)
9892 goto err_alloc;
9893 veb = pf->veb[veb_idx];
9894 veb->flags = flags;
9895 veb->uplink_seid = uplink_seid;
9896 veb->veb_idx = (uplink_veb ? uplink_veb->idx : I40E_NO_VEB);
9897 veb->enabled_tc = (enabled_tc ? enabled_tc : 0x1);
9898
9899 /* create the VEB in the switch */
9900 ret = i40e_add_veb(veb, pf->vsi[vsi_idx]);
9901 if (ret)
9902 goto err_veb;
Shannon Nelson1bb8b932014-04-23 04:49:54 +00009903 if (vsi_idx == pf->lan_vsi)
9904 pf->lan_veb = veb->idx;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009905
9906 return veb;
9907
9908err_veb:
9909 i40e_veb_clear(veb);
9910err_alloc:
9911 return NULL;
9912}
9913
9914/**
Jeff Kirsherb40c82e62015-02-27 09:18:34 +00009915 * i40e_setup_pf_switch_element - set PF vars based on switch type
Jesse Brandeburg41c445f2013-09-11 08:39:46 +00009916 * @pf: board private structure
9917 * @ele: element we are building info from
9918 * @num_reported: total number of elements
9919 * @printconfig: should we print the contents
9920 *
9921 * helper function to assist in extracting a few useful SEID values.
9922 **/
9923static void i40e_setup_pf_switch_element(struct i40e_pf *pf,
9924 struct i40e_aqc_switch_config_element_resp *ele,
9925 u16 num_reported, bool printconfig)
9926{
9927 u16 downlink_seid = le16_to_cpu(ele->downlink_seid);
9928 u16 uplink_seid = le16_to_cpu(ele->uplink_seid);
9929 u8 element_type = ele->element_type;
9930 u16 seid = le16_to_cpu(ele->seid);
9931
9932 if (printconfig)
9933 dev_info(&pf->pdev->dev,
9934 "type=%d seid=%d uplink=%d downlink=%d\n",
9935 element_type, seid, uplink_seid, downlink_seid);
9936
9937 switch (element_type) {
9938 case I40E_SWITCH_ELEMENT_TYPE_MAC:
9939 pf->mac_seid = seid;
9940 break;
9941 case I40E_SWITCH_ELEMENT_TYPE_VEB:
9942 /* Main VEB? */
9943 if (uplink_seid != pf->mac_seid)
9944 break;
9945 if (pf->lan_veb == I40E_NO_VEB) {
9946 int v;
9947
9948 /* find existing or else empty VEB */
9949 for (v = 0; v < I40E_MAX_VEB; v++) {
9950 if (pf->veb[v] && (pf->veb[v]->seid == seid)) {
9951 pf->lan_veb = v;
9952 break;
9953 }
9954 }
9955 if (pf->lan_veb == I40E_NO_VEB) {
9956 v = i40e_veb_mem_alloc(pf);
9957 if (v < 0)
9958 break;
9959 pf->lan_veb = v;
9960 }
9961 }
9962
9963 pf->veb[pf->lan_veb]->seid = seid;
9964 pf->veb[pf->lan_veb]->uplink_seid = pf->mac_seid;
9965 pf->veb[pf->lan_veb]->pf = pf;
9966 pf->veb[pf->lan_veb]->veb_idx = I40E_NO_VEB;
9967 break;
9968 case I40E_SWITCH_ELEMENT_TYPE_VSI:
9969 if (num_reported != 1)
9970 break;
9971 /* This is immediately after a reset so we can assume this is
9972 * the PF's VSI
9973 */
9974 pf->mac_seid = uplink_seid;
9975 pf->pf_seid = downlink_seid;
9976 pf->main_vsi_seid = seid;
9977 if (printconfig)
9978 dev_info(&pf->pdev->dev,
9979 "pf_seid=%d main_vsi_seid=%d\n",
9980 pf->pf_seid, pf->main_vsi_seid);
9981 break;
9982 case I40E_SWITCH_ELEMENT_TYPE_PF:
9983 case I40E_SWITCH_ELEMENT_TYPE_VF:
9984 case I40E_SWITCH_ELEMENT_TYPE_EMP:
9985 case I40E_SWITCH_ELEMENT_TYPE_BMC:
9986 case I40E_SWITCH_ELEMENT_TYPE_PE:
9987 case I40E_SWITCH_ELEMENT_TYPE_PA:
9988 /* ignore these for now */
9989 break;
9990 default:
9991 dev_info(&pf->pdev->dev, "unknown element type=%d seid=%d\n",
9992 element_type, seid);
9993 break;
9994 }
9995}
9996
9997/**
9998 * i40e_fetch_switch_configuration - Get switch config from firmware
9999 * @pf: board private structure
10000 * @printconfig: should we print the contents
10001 *
10002 * Get the current switch configuration from the device and
10003 * extract a few useful SEID values.
10004 **/
10005int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
10006{
10007 struct i40e_aqc_get_switch_config_resp *sw_config;
10008 u16 next_seid = 0;
10009 int ret = 0;
10010 u8 *aq_buf;
10011 int i;
10012
10013 aq_buf = kzalloc(I40E_AQ_LARGE_BUF, GFP_KERNEL);
10014 if (!aq_buf)
10015 return -ENOMEM;
10016
10017 sw_config = (struct i40e_aqc_get_switch_config_resp *)aq_buf;
10018 do {
10019 u16 num_reported, num_total;
10020
10021 ret = i40e_aq_get_switch_config(&pf->hw, sw_config,
10022 I40E_AQ_LARGE_BUF,
10023 &next_seid, NULL);
10024 if (ret) {
10025 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010026 "get switch config failed err %s aq_err %s\n",
10027 i40e_stat_str(&pf->hw, ret),
10028 i40e_aq_str(&pf->hw,
10029 pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010030 kfree(aq_buf);
10031 return -ENOENT;
10032 }
10033
10034 num_reported = le16_to_cpu(sw_config->header.num_reported);
10035 num_total = le16_to_cpu(sw_config->header.num_total);
10036
10037 if (printconfig)
10038 dev_info(&pf->pdev->dev,
10039 "header: %d reported %d total\n",
10040 num_reported, num_total);
10041
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010042 for (i = 0; i < num_reported; i++) {
10043 struct i40e_aqc_switch_config_element_resp *ele =
10044 &sw_config->element[i];
10045
10046 i40e_setup_pf_switch_element(pf, ele, num_reported,
10047 printconfig);
10048 }
10049 } while (next_seid != 0);
10050
10051 kfree(aq_buf);
10052 return ret;
10053}
10054
10055/**
10056 * i40e_setup_pf_switch - Setup the HW switch on startup or after reset
10057 * @pf: board private structure
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010058 * @reinit: if the Main VSI needs to re-initialized.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010059 *
10060 * Returns 0 on success, negative value on failure
10061 **/
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010062static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit)
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010063{
10064 int ret;
10065
10066 /* find out what's out there already */
10067 ret = i40e_fetch_switch_configuration(pf, false);
10068 if (ret) {
10069 dev_info(&pf->pdev->dev,
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010070 "couldn't fetch switch config, err %s aq_err %s\n",
10071 i40e_stat_str(&pf->hw, ret),
10072 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010073 return ret;
10074 }
10075 i40e_pf_reset_stats(pf);
10076
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010077 /* first time setup */
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010078 if (pf->lan_vsi == I40E_NO_VSI || reinit) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010079 struct i40e_vsi *vsi = NULL;
10080 u16 uplink_seid;
10081
10082 /* Set up the PF VSI associated with the PF's main VSI
10083 * that is already in the HW switch
10084 */
10085 if (pf->lan_veb != I40E_NO_VEB && pf->veb[pf->lan_veb])
10086 uplink_seid = pf->veb[pf->lan_veb]->seid;
10087 else
10088 uplink_seid = pf->mac_seid;
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010089 if (pf->lan_vsi == I40E_NO_VSI)
10090 vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
10091 else if (reinit)
10092 vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010093 if (!vsi) {
10094 dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
10095 i40e_fdir_teardown(pf);
10096 return -EAGAIN;
10097 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010098 } else {
10099 /* force a reset of TC and queue layout configurations */
10100 u8 enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
Jesse Brandeburg6995b362015-08-28 17:55:54 -040010101
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010102 pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
10103 pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
10104 i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
10105 }
10106 i40e_vlan_stripping_disable(pf->vsi[pf->lan_vsi]);
10107
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010108 i40e_fdir_sb_setup(pf);
10109
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010110 /* Setup static PF queue filter control settings */
10111 ret = i40e_setup_pf_filter_control(pf);
10112 if (ret) {
10113 dev_info(&pf->pdev->dev, "setup_pf_filter_control failed: %d\n",
10114 ret);
10115 /* Failure here should not stop continuing other steps */
10116 }
10117
10118 /* enable RSS in the HW, even for only one queue, as the stack can use
10119 * the hash
10120 */
10121 if ((pf->flags & I40E_FLAG_RSS_ENABLED))
Helin Zhang043dd652015-10-21 19:56:23 -040010122 i40e_pf_config_rss(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010123
10124 /* fill in link information and enable LSE reporting */
Catherine Sullivan0a862b42015-08-31 19:54:53 -040010125 i40e_update_link_info(&pf->hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010126 i40e_link_event(pf);
10127
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010128 /* Initialize user-specific link properties */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010129 pf->fc_autoneg_status = ((pf->hw.phy.link_info.an_info &
10130 I40E_AQ_AN_COMPLETED) ? true : false);
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010131
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000010132 i40e_ptp_init(pf);
10133
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010134 return ret;
10135}
10136
10137/**
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010138 * i40e_determine_queue_usage - Work out queue distribution
10139 * @pf: board private structure
10140 **/
10141static void i40e_determine_queue_usage(struct i40e_pf *pf)
10142{
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010143 int queues_left;
10144
10145 pf->num_lan_qps = 0;
Vasu Dev38e00432014-08-01 13:27:03 -070010146#ifdef I40E_FCOE
10147 pf->num_fcoe_qps = 0;
10148#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010149
10150 /* Find the max queues to be put into basic use. We'll always be
10151 * using TC0, whether or not DCB is running, and TC0 will get the
10152 * big RSS set.
10153 */
10154 queues_left = pf->hw.func_caps.num_tx_qp;
10155
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010156 if ((queues_left == 1) ||
Frank Zhang9aa7e932014-05-20 08:01:42 +000010157 !(pf->flags & I40E_FLAG_MSIX_ENABLED)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010158 /* one qp for PF, no queues for anything else */
10159 queues_left = 0;
Helin Zhangacd65442015-10-26 19:44:28 -040010160 pf->alloc_rss_size = pf->num_lan_qps = 1;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010161
10162 /* make sure all the fancies are disabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010163 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010164#ifdef I40E_FCOE
10165 I40E_FLAG_FCOE_ENABLED |
10166#endif
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010167 I40E_FLAG_FD_SB_ENABLED |
10168 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010169 I40E_FLAG_DCB_CAPABLE |
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010170 I40E_FLAG_SRIOV_ENABLED |
10171 I40E_FLAG_VMDQ_ENABLED);
Frank Zhang9aa7e932014-05-20 08:01:42 +000010172 } else if (!(pf->flags & (I40E_FLAG_RSS_ENABLED |
10173 I40E_FLAG_FD_SB_ENABLED |
Anjali Singhai Jainbbe7d0e2014-05-20 08:01:44 +000010174 I40E_FLAG_FD_ATR_ENABLED |
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010175 I40E_FLAG_DCB_CAPABLE))) {
Frank Zhang9aa7e932014-05-20 08:01:42 +000010176 /* one qp for PF */
Helin Zhangacd65442015-10-26 19:44:28 -040010177 pf->alloc_rss_size = pf->num_lan_qps = 1;
Frank Zhang9aa7e932014-05-20 08:01:42 +000010178 queues_left -= pf->num_lan_qps;
10179
10180 pf->flags &= ~(I40E_FLAG_RSS_ENABLED |
Vasu Dev38e00432014-08-01 13:27:03 -070010181#ifdef I40E_FCOE
10182 I40E_FLAG_FCOE_ENABLED |
10183#endif
Frank Zhang9aa7e932014-05-20 08:01:42 +000010184 I40E_FLAG_FD_SB_ENABLED |
10185 I40E_FLAG_FD_ATR_ENABLED |
10186 I40E_FLAG_DCB_ENABLED |
10187 I40E_FLAG_VMDQ_ENABLED);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010188 } else {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010189 /* Not enough queues for all TCs */
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010190 if ((pf->flags & I40E_FLAG_DCB_CAPABLE) &&
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010191 (queues_left < I40E_MAX_TRAFFIC_CLASS)) {
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010192 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010193 dev_info(&pf->pdev->dev, "not enough queues for DCB. DCB is disabled.\n");
10194 }
Anjali Singhai Jain9a3bd2f2015-02-24 06:58:44 +000010195 pf->num_lan_qps = max_t(int, pf->rss_size_max,
10196 num_online_cpus());
10197 pf->num_lan_qps = min_t(int, pf->num_lan_qps,
10198 pf->hw.func_caps.num_tx_qp);
10199
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010200 queues_left -= pf->num_lan_qps;
10201 }
10202
Vasu Dev38e00432014-08-01 13:27:03 -070010203#ifdef I40E_FCOE
10204 if (pf->flags & I40E_FLAG_FCOE_ENABLED) {
10205 if (I40E_DEFAULT_FCOE <= queues_left) {
10206 pf->num_fcoe_qps = I40E_DEFAULT_FCOE;
10207 } else if (I40E_MINIMUM_FCOE <= queues_left) {
10208 pf->num_fcoe_qps = I40E_MINIMUM_FCOE;
10209 } else {
10210 pf->num_fcoe_qps = 0;
10211 pf->flags &= ~I40E_FLAG_FCOE_ENABLED;
10212 dev_info(&pf->pdev->dev, "not enough queues for FCoE. FCoE feature will be disabled\n");
10213 }
10214
10215 queues_left -= pf->num_fcoe_qps;
10216 }
10217
10218#endif
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010219 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
10220 if (queues_left > 1) {
10221 queues_left -= 1; /* save 1 queue for FD */
10222 } else {
10223 pf->flags &= ~I40E_FLAG_FD_SB_ENABLED;
10224 dev_info(&pf->pdev->dev, "not enough queues for Flow Director. Flow Director feature is disabled\n");
10225 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010226 }
10227
10228 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10229 pf->num_vf_qps && pf->num_req_vfs && queues_left) {
Anjali Singhai Jaincbf61322014-01-17 15:36:35 -080010230 pf->num_req_vfs = min_t(int, pf->num_req_vfs,
10231 (queues_left / pf->num_vf_qps));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010232 queues_left -= (pf->num_req_vfs * pf->num_vf_qps);
10233 }
10234
10235 if ((pf->flags & I40E_FLAG_VMDQ_ENABLED) &&
10236 pf->num_vmdq_vsis && pf->num_vmdq_qps && queues_left) {
10237 pf->num_vmdq_vsis = min_t(int, pf->num_vmdq_vsis,
10238 (queues_left / pf->num_vmdq_qps));
10239 queues_left -= (pf->num_vmdq_vsis * pf->num_vmdq_qps);
10240 }
10241
Anjali Singhai Jainf8ff1462013-11-26 10:49:19 +000010242 pf->queues_left = queues_left;
Neerav Parikh8279e492015-09-03 17:18:50 -040010243 dev_dbg(&pf->pdev->dev,
10244 "qs_avail=%d FD SB=%d lan_qs=%d lan_tc0=%d vf=%d*%d vmdq=%d*%d, remaining=%d\n",
10245 pf->hw.func_caps.num_tx_qp,
10246 !!(pf->flags & I40E_FLAG_FD_SB_ENABLED),
Helin Zhangacd65442015-10-26 19:44:28 -040010247 pf->num_lan_qps, pf->alloc_rss_size, pf->num_req_vfs,
10248 pf->num_vf_qps, pf->num_vmdq_vsis, pf->num_vmdq_qps,
10249 queues_left);
Vasu Dev38e00432014-08-01 13:27:03 -070010250#ifdef I40E_FCOE
Neerav Parikh8279e492015-09-03 17:18:50 -040010251 dev_dbg(&pf->pdev->dev, "fcoe queues = %d\n", pf->num_fcoe_qps);
Vasu Dev38e00432014-08-01 13:27:03 -070010252#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010253}
10254
10255/**
10256 * i40e_setup_pf_filter_control - Setup PF static filter control
10257 * @pf: PF to be setup
10258 *
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000010259 * i40e_setup_pf_filter_control sets up a PF's initial filter control
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010260 * settings. If PE/FCoE are enabled then it will also set the per PF
10261 * based filter sizes required for them. It also enables Flow director,
10262 * ethertype and macvlan type filter settings for the pf.
10263 *
10264 * Returns 0 on success, negative on failure
10265 **/
10266static int i40e_setup_pf_filter_control(struct i40e_pf *pf)
10267{
10268 struct i40e_filter_control_settings *settings = &pf->filter_settings;
10269
10270 settings->hash_lut_size = I40E_HASH_LUT_SIZE_128;
10271
10272 /* Flow Director is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -080010273 if (pf->flags & (I40E_FLAG_FD_SB_ENABLED | I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010274 settings->enable_fdir = true;
10275
10276 /* Ethtype and MACVLAN filters enabled for PF */
10277 settings->enable_ethtype = true;
10278 settings->enable_macvlan = true;
10279
10280 if (i40e_set_filter_control(&pf->hw, settings))
10281 return -ENOENT;
10282
10283 return 0;
10284}
10285
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010286#define INFO_STRING_LEN 255
Shannon Nelson7fd89542015-10-21 19:47:04 -040010287#define REMAIN(__x) (INFO_STRING_LEN - (__x))
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010288static void i40e_print_features(struct i40e_pf *pf)
10289{
10290 struct i40e_hw *hw = &pf->hw;
10291 char *buf, *string;
Shannon Nelson7fd89542015-10-21 19:47:04 -040010292 int i = 0;
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010293
10294 string = kzalloc(INFO_STRING_LEN, GFP_KERNEL);
10295 if (!string) {
10296 dev_err(&pf->pdev->dev, "Features string allocation failed\n");
10297 return;
10298 }
10299
10300 buf = string;
10301
Shannon Nelson7fd89542015-10-21 19:47:04 -040010302 i += snprintf(&buf[i], REMAIN(i), "Features: PF-id[%d] ", hw->pf_id);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010303#ifdef CONFIG_PCI_IOV
Shannon Nelson7fd89542015-10-21 19:47:04 -040010304 i += snprintf(&buf[i], REMAIN(i), "VFs: %d ", pf->num_req_vfs);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010305#endif
Shannon Nelson7fd89542015-10-21 19:47:04 -040010306 i += snprintf(&buf[i], REMAIN(i), "VSIs: %d QP: %d RX: %s ",
10307 pf->hw.func_caps.num_vsis,
10308 pf->vsi[pf->lan_vsi]->num_queue_pairs,
10309 pf->flags & I40E_FLAG_RX_PS_ENABLED ? "PS" : "1BUF");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010310
10311 if (pf->flags & I40E_FLAG_RSS_ENABLED)
Shannon Nelson7fd89542015-10-21 19:47:04 -040010312 i += snprintf(&buf[i], REMAIN(i), "RSS ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010313 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED)
Shannon Nelson7fd89542015-10-21 19:47:04 -040010314 i += snprintf(&buf[i], REMAIN(i), "FD_ATR ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010315 if (pf->flags & I40E_FLAG_FD_SB_ENABLED) {
Shannon Nelson7fd89542015-10-21 19:47:04 -040010316 i += snprintf(&buf[i], REMAIN(i), "FD_SB ");
10317 i += snprintf(&buf[i], REMAIN(i), "NTUPLE ");
Akeem G Abodunrinc6423ff2014-05-10 04:49:08 +000010318 }
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010319 if (pf->flags & I40E_FLAG_DCB_CAPABLE)
Shannon Nelson7fd89542015-10-21 19:47:04 -040010320 i += snprintf(&buf[i], REMAIN(i), "DCB ");
Jesse Brandeburgce6fcb32015-08-28 17:55:59 -040010321#if IS_ENABLED(CONFIG_VXLAN)
Shannon Nelson7fd89542015-10-21 19:47:04 -040010322 i += snprintf(&buf[i], REMAIN(i), "VxLAN ");
Jesse Brandeburgce6fcb32015-08-28 17:55:59 -040010323#endif
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010324 if (pf->flags & I40E_FLAG_PTP)
Shannon Nelson7fd89542015-10-21 19:47:04 -040010325 i += snprintf(&buf[i], REMAIN(i), "PTP ");
Vasu Dev38e00432014-08-01 13:27:03 -070010326#ifdef I40E_FCOE
10327 if (pf->flags & I40E_FLAG_FCOE_ENABLED)
Shannon Nelson7fd89542015-10-21 19:47:04 -040010328 i += snprintf(&buf[i], REMAIN(i), "FCOE ");
Vasu Dev38e00432014-08-01 13:27:03 -070010329#endif
Shannon Nelson6dec1012015-09-28 14:12:30 -040010330 if (pf->flags & I40E_FLAG_VEB_MODE_ENABLED)
Shannon Nelson7fd89542015-10-21 19:47:04 -040010331 i += snprintf(&buf[i], REMAIN(i), "VEPA ");
Shannon Nelson6dec1012015-09-28 14:12:30 -040010332 else
10333 buf += sprintf(buf, "VEPA ");
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010334
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010335 dev_info(&pf->pdev->dev, "%s\n", string);
10336 kfree(string);
Shannon Nelson7fd89542015-10-21 19:47:04 -040010337 WARN_ON(i > INFO_STRING_LEN);
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010338}
10339
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010340/**
10341 * i40e_probe - Device initialization routine
10342 * @pdev: PCI device information struct
10343 * @ent: entry in i40e_pci_tbl
10344 *
Jeff Kirsherb40c82e62015-02-27 09:18:34 +000010345 * i40e_probe initializes a PF identified by a pci_dev structure.
10346 * The OS initialization, configuring of the PF private structure,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010347 * and a hardware reset occur.
10348 *
10349 * Returns 0 on success, negative on failure
10350 **/
10351static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
10352{
Catherine Sullivane8278452015-02-06 08:52:08 +000010353 struct i40e_aq_get_phy_abilities_resp abilities;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010354 struct i40e_pf *pf;
10355 struct i40e_hw *hw;
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010356 static u16 pfs_found;
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010357 u16 wol_nvm_bits;
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010358 u16 link_status;
Jean Sacren6f66a482015-09-19 05:08:45 -060010359 int err;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010360 u32 len;
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040010361 u32 val;
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010362 u32 i;
Helin Zhang58fc3262015-10-01 14:37:38 -040010363 u8 set_fc_aq_fail;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010364
10365 err = pci_enable_device_mem(pdev);
10366 if (err)
10367 return err;
10368
10369 /* set up for high or low dma */
Mitch Williams64942942014-02-11 08:26:33 +000010370 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
Mitch Williams64942942014-02-11 08:26:33 +000010371 if (err) {
Jean Sacrene3e3bfd2014-03-25 04:30:27 +000010372 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
10373 if (err) {
10374 dev_err(&pdev->dev,
10375 "DMA configuration failed: 0x%x\n", err);
10376 goto err_dma;
10377 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010378 }
10379
10380 /* set up pci connections */
10381 err = pci_request_selected_regions(pdev, pci_select_bars(pdev,
10382 IORESOURCE_MEM), i40e_driver_name);
10383 if (err) {
10384 dev_info(&pdev->dev,
10385 "pci_request_selected_regions failed %d\n", err);
10386 goto err_pci_reg;
10387 }
10388
10389 pci_enable_pcie_error_reporting(pdev);
10390 pci_set_master(pdev);
10391
10392 /* Now that we have a PCI connection, we need to do the
10393 * low level device setup. This is primarily setting up
10394 * the Admin Queue structures and then querying for the
10395 * device's current profile information.
10396 */
10397 pf = kzalloc(sizeof(*pf), GFP_KERNEL);
10398 if (!pf) {
10399 err = -ENOMEM;
10400 goto err_pf_alloc;
10401 }
10402 pf->next_vsi = 0;
10403 pf->pdev = pdev;
10404 set_bit(__I40E_DOWN, &pf->state);
10405
10406 hw = &pf->hw;
10407 hw->back = pf;
Anjali Singhai232f4702015-02-26 16:15:39 +000010408
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010409 pf->ioremap_len = min_t(int, pci_resource_len(pdev, 0),
10410 I40E_MAX_CSR_SPACE);
Anjali Singhai232f4702015-02-26 16:15:39 +000010411
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010412 hw->hw_addr = ioremap(pci_resource_start(pdev, 0), pf->ioremap_len);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010413 if (!hw->hw_addr) {
10414 err = -EIO;
10415 dev_info(&pdev->dev, "ioremap(0x%04x, 0x%04x) failed: 0x%x\n",
10416 (unsigned int)pci_resource_start(pdev, 0),
Shannon Nelson2ac8b672015-07-23 16:54:37 -040010417 pf->ioremap_len, err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010418 goto err_ioremap;
10419 }
10420 hw->vendor_id = pdev->vendor;
10421 hw->device_id = pdev->device;
10422 pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
10423 hw->subsystem_vendor_id = pdev->subsystem_vendor;
10424 hw->subsystem_device_id = pdev->subsystem_device;
10425 hw->bus.device = PCI_SLOT(pdev->devfn);
10426 hw->bus.func = PCI_FUNC(pdev->devfn);
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010427 pf->instance = pfs_found;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010428
Shannon Nelson5b5faa42014-10-17 03:14:51 +000010429 if (debug != -1) {
10430 pf->msg_enable = pf->hw.debug_mask;
10431 pf->msg_enable = debug;
10432 }
10433
Jesse Brandeburg7134f9c2013-11-26 08:56:05 +000010434 /* do a special CORER for clearing PXE mode once at init */
10435 if (hw->revision_id == 0 &&
10436 (rd32(hw, I40E_GLLAN_RCTL_0) & I40E_GLLAN_RCTL_0_PXE_MODE_MASK)) {
10437 wr32(hw, I40E_GLGEN_RTRIG, I40E_GLGEN_RTRIG_CORER_MASK);
10438 i40e_flush(hw);
10439 msleep(200);
10440 pf->corer_count++;
10441
10442 i40e_clear_pxe_mode(hw);
10443 }
10444
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010445 /* Reset here to make sure all is clean and to define PF 'n' */
Shannon Nelson838d41d2014-06-04 20:41:27 +000010446 i40e_clear_hw(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010447 err = i40e_pf_reset(hw);
10448 if (err) {
10449 dev_info(&pdev->dev, "Initial pf_reset failed: %d\n", err);
10450 goto err_pf_reset;
10451 }
10452 pf->pfr_count++;
10453
10454 hw->aq.num_arq_entries = I40E_AQ_LEN;
10455 hw->aq.num_asq_entries = I40E_AQ_LEN;
10456 hw->aq.arq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10457 hw->aq.asq_buf_size = I40E_MAX_AQ_BUF_SIZE;
10458 pf->adminq_work_limit = I40E_AQ_WORK_LIMIT;
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010459
Carolyn Wybornyb294ac72014-12-11 07:06:39 +000010460 snprintf(pf->int_name, sizeof(pf->int_name) - 1,
Carolyn Wybornyb2008cb2014-11-11 20:05:26 +000010461 "%s-%s:misc",
10462 dev_driver_string(&pf->pdev->dev), dev_name(&pdev->dev));
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010463
10464 err = i40e_init_shared_code(hw);
10465 if (err) {
Anjali Singhai Jainb2a75c52015-04-27 14:57:20 -040010466 dev_warn(&pdev->dev, "unidentified MAC or BLANK NVM: %d\n",
10467 err);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010468 goto err_pf_reset;
10469 }
10470
Jesse Brandeburgd52c20b2013-11-26 10:49:15 +000010471 /* set up a default setting for link flow control */
10472 pf->hw.fc.requested_mode = I40E_FC_NONE;
10473
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010474 err = i40e_init_adminq(hw);
Carolyn Wyborny2b2426a762015-10-26 19:44:35 -040010475 if (err) {
10476 if (err == I40E_ERR_FIRMWARE_API_VERSION)
10477 dev_info(&pdev->dev,
10478 "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");
10479 else
10480 dev_info(&pdev->dev,
10481 "The driver for the device stopped because the device firmware failed to init. Try updating your NVM image.\n");
10482
10483 goto err_pf_reset;
10484 }
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010485
Shannon Nelson6dec1012015-09-28 14:12:30 -040010486 /* provide nvm, fw, api versions */
10487 dev_info(&pdev->dev, "fw %d.%d.%05d api %d.%d nvm %s\n",
10488 hw->aq.fw_maj_ver, hw->aq.fw_min_ver, hw->aq.fw_build,
10489 hw->aq.api_maj_ver, hw->aq.api_min_ver,
10490 i40e_nvm_version_str(hw));
Carolyn Wybornyf0b44442015-08-31 19:54:49 -040010491
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010492 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
10493 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
Shannon Nelson278b6f62014-06-04 01:41:03 +000010494 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010495 "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");
10496 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
10497 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
Shannon Nelson278b6f62014-06-04 01:41:03 +000010498 dev_info(&pdev->dev,
Catherine Sullivan7aa67612014-07-09 07:46:17 +000010499 "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 +000010500
Shannon Nelson4eb3f762014-03-06 08:59:58 +000010501 i40e_verify_eeprom(pf);
10502
Jesse Brandeburg2c5fe332014-04-23 04:49:57 +000010503 /* Rev 0 hardware was never productized */
10504 if (hw->revision_id < 1)
10505 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");
10506
Shannon Nelson6ff4ef82013-12-21 05:44:49 +000010507 i40e_clear_pxe_mode(hw);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010508 err = i40e_get_capabilities(pf);
10509 if (err)
10510 goto err_adminq_setup;
10511
10512 err = i40e_sw_init(pf);
10513 if (err) {
10514 dev_info(&pdev->dev, "sw_init failed: %d\n", err);
10515 goto err_sw_init;
10516 }
10517
10518 err = i40e_init_lan_hmc(hw, hw->func_caps.num_tx_qp,
10519 hw->func_caps.num_rx_qp,
10520 pf->fcoe_hmc_cntx_num, pf->fcoe_hmc_filt_num);
10521 if (err) {
10522 dev_info(&pdev->dev, "init_lan_hmc failed: %d\n", err);
10523 goto err_init_lan_hmc;
10524 }
10525
10526 err = i40e_configure_lan_hmc(hw, I40E_HMC_MODEL_DIRECT_ONLY);
10527 if (err) {
10528 dev_info(&pdev->dev, "configure_lan_hmc failed: %d\n", err);
10529 err = -ENOENT;
10530 goto err_configure_lan_hmc;
10531 }
10532
Neerav Parikhb686ece2014-12-14 01:55:11 +000010533 /* Disable LLDP for NICs that have firmware versions lower than v4.3.
10534 * Ignore error return codes because if it was already disabled via
10535 * hardware settings this will fail
10536 */
10537 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 3)) ||
10538 (pf->hw.aq.fw_maj_ver < 4)) {
10539 dev_info(&pdev->dev, "Stopping firmware LLDP agent.\n");
10540 i40e_aq_stop_lldp(hw, true, NULL);
10541 }
10542
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010543 i40e_get_mac_addr(hw, hw->mac.addr);
Jesse Brandeburgf62b5062013-11-28 06:39:27 +000010544 if (!is_valid_ether_addr(hw->mac.addr)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010545 dev_info(&pdev->dev, "invalid MAC address %pM\n", hw->mac.addr);
10546 err = -EIO;
10547 goto err_mac_addr;
10548 }
10549 dev_info(&pdev->dev, "MAC address: %pM\n", hw->mac.addr);
Greg Rose9a173902014-05-22 06:32:02 +000010550 ether_addr_copy(hw->mac.perm_addr, hw->mac.addr);
Neerav Parikh1f224ad2014-02-12 01:45:31 +000010551 i40e_get_port_mac_addr(hw, hw->mac.port_addr);
10552 if (is_valid_ether_addr(hw->mac.port_addr))
10553 pf->flags |= I40E_FLAG_PORT_ID_VALID;
Vasu Dev38e00432014-08-01 13:27:03 -070010554#ifdef I40E_FCOE
10555 err = i40e_get_san_mac_addr(hw, hw->mac.san_addr);
10556 if (err)
10557 dev_info(&pdev->dev,
10558 "(non-fatal) SAN MAC retrieval failed: %d\n", err);
10559 if (!is_valid_ether_addr(hw->mac.san_addr)) {
10560 dev_warn(&pdev->dev, "invalid SAN MAC address %pM, falling back to LAN MAC\n",
10561 hw->mac.san_addr);
10562 ether_addr_copy(hw->mac.san_addr, hw->mac.addr);
10563 }
10564 dev_info(&pf->pdev->dev, "SAN MAC: %pM\n", hw->mac.san_addr);
10565#endif /* I40E_FCOE */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010566
10567 pci_set_drvdata(pdev, pf);
10568 pci_save_state(pdev);
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010569#ifdef CONFIG_I40E_DCB
10570 err = i40e_init_pf_dcb(pf);
10571 if (err) {
Shannon Nelsonaebfc812014-12-11 07:06:38 +000010572 dev_info(&pdev->dev, "DCB init failed %d, disabled\n", err);
Neerav Parikh4d9b6042014-05-22 06:31:51 +000010573 pf->flags &= ~I40E_FLAG_DCB_CAPABLE;
Neerav Parikh014269f2014-04-01 07:11:48 +000010574 /* Continue without DCB enabled */
Neerav Parikh4e3b35b2014-01-17 15:36:37 -080010575 }
10576#endif /* CONFIG_I40E_DCB */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010577
10578 /* set up periodic task facility */
10579 setup_timer(&pf->service_timer, i40e_service_timer, (unsigned long)pf);
10580 pf->service_timer_period = HZ;
10581
10582 INIT_WORK(&pf->service_task, i40e_service_task);
10583 clear_bit(__I40E_SERVICE_SCHED, &pf->state);
10584 pf->flags |= I40E_FLAG_NEED_LINK_UPDATE;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010585
Shannon Nelson1d5109d2015-08-26 15:14:08 -040010586 /* NVM bit on means WoL disabled for the port */
10587 i40e_read_nvm_word(hw, I40E_SR_NVM_WAKE_ON_LAN, &wol_nvm_bits);
10588 if ((1 << hw->port) & wol_nvm_bits || hw->partition_id != 1)
10589 pf->wol_en = false;
10590 else
10591 pf->wol_en = true;
Shannon Nelson8e2773a2013-11-28 06:39:22 +000010592 device_set_wakeup_enable(&pf->pdev->dev, pf->wol_en);
10593
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010594 /* set up the main switch operations */
10595 i40e_determine_queue_usage(pf);
Jesse Brandeburgc11472802015-04-07 19:45:39 -040010596 err = i40e_init_interrupt_scheme(pf);
10597 if (err)
10598 goto err_switch_setup;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010599
Mitch Williams505682c2014-05-20 08:01:37 +000010600 /* The number of VSIs reported by the FW is the minimum guaranteed
10601 * to us; HW supports far more and we share the remaining pool with
10602 * the other PFs. We allocate space for more than the guarantee with
10603 * the understanding that we might not get them all later.
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010604 */
Mitch Williams505682c2014-05-20 08:01:37 +000010605 if (pf->hw.func_caps.num_vsis < I40E_MIN_VSI_ALLOC)
10606 pf->num_alloc_vsi = I40E_MIN_VSI_ALLOC;
10607 else
10608 pf->num_alloc_vsi = pf->hw.func_caps.num_vsis;
10609
10610 /* Set up the *vsi struct and our local tracking of the MAIN PF vsi. */
10611 len = sizeof(struct i40e_vsi *) * pf->num_alloc_vsi;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010612 pf->vsi = kzalloc(len, GFP_KERNEL);
Wei Yongjuned87ac02013-09-24 05:17:25 +000010613 if (!pf->vsi) {
10614 err = -ENOMEM;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010615 goto err_switch_setup;
Wei Yongjuned87ac02013-09-24 05:17:25 +000010616 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010617
Anjali Singhai Jainfa11cb32015-05-27 12:06:14 -040010618#ifdef CONFIG_PCI_IOV
10619 /* prep for VF support */
10620 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
10621 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
10622 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
10623 if (pci_num_vf(pdev))
10624 pf->flags |= I40E_FLAG_VEB_MODE_ENABLED;
10625 }
10626#endif
Anjali Singhai Jainbc7d3382013-11-26 10:49:18 +000010627 err = i40e_setup_pf_switch(pf, false);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010628 if (err) {
10629 dev_info(&pdev->dev, "setup_pf_switch failed: %d\n", err);
10630 goto err_vsis;
10631 }
Helin Zhang58fc3262015-10-01 14:37:38 -040010632
10633 /* Make sure flow control is set according to current settings */
10634 err = i40e_set_fc(hw, &set_fc_aq_fail, true);
10635 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_GET)
10636 dev_dbg(&pf->pdev->dev,
10637 "Set fc with err %s aq_err %s on get_phy_cap\n",
10638 i40e_stat_str(hw, err),
10639 i40e_aq_str(hw, hw->aq.asq_last_status));
10640 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_SET)
10641 dev_dbg(&pf->pdev->dev,
10642 "Set fc with err %s aq_err %s on set_phy_config\n",
10643 i40e_stat_str(hw, err),
10644 i40e_aq_str(hw, hw->aq.asq_last_status));
10645 if (set_fc_aq_fail & I40E_SET_FC_AQ_FAIL_UPDATE)
10646 dev_dbg(&pf->pdev->dev,
10647 "Set fc with err %s aq_err %s on get_link_info\n",
10648 i40e_stat_str(hw, err),
10649 i40e_aq_str(hw, hw->aq.asq_last_status));
10650
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010651 /* if FDIR VSI was set up, start it now */
Mitch Williams505682c2014-05-20 08:01:37 +000010652 for (i = 0; i < pf->num_alloc_vsi; i++) {
Shannon Nelson8a9eb7d2014-03-14 07:32:28 +000010653 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR) {
10654 i40e_vsi_open(pf->vsi[i]);
10655 break;
10656 }
10657 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010658
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010659 /* driver is only interested in link up/down and module qualification
10660 * reports from firmware
10661 */
10662 err = i40e_aq_set_phy_int_mask(&pf->hw,
10663 I40E_AQ_EVENT_LINK_UPDOWN |
10664 I40E_AQ_EVENT_MODULE_QUAL_FAIL, NULL);
10665 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010666 dev_info(&pf->pdev->dev, "set phy mask fail, err %s aq_err %s\n",
10667 i40e_stat_str(&pf->hw, err),
10668 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Jesse Brandeburg7e2453f2014-09-13 07:40:41 +000010669
Anjali Singhai Jain4f2f017c2015-10-21 19:47:07 -040010670 /* Reconfigure hardware for allowing smaller MSS in the case
10671 * of TSO, so that we avoid the MDD being fired and causing
10672 * a reset in the case of small MSS+TSO.
10673 */
10674 val = rd32(hw, I40E_REG_MSS);
10675 if ((val & I40E_REG_MSS_MIN_MASK) > I40E_64BYTE_MSS) {
10676 val &= ~I40E_REG_MSS_MIN_MASK;
10677 val |= I40E_64BYTE_MSS;
10678 wr32(hw, I40E_REG_MSS, val);
10679 }
10680
Anjali Singhai Jain025b4a52015-02-24 06:58:46 +000010681 if (((pf->hw.aq.fw_maj_ver == 4) && (pf->hw.aq.fw_min_ver < 33)) ||
10682 (pf->hw.aq.fw_maj_ver < 4)) {
10683 msleep(75);
10684 err = i40e_aq_set_link_restart_an(&pf->hw, true, NULL);
10685 if (err)
Shannon Nelsonf1c7e722015-06-04 16:24:01 -040010686 dev_info(&pf->pdev->dev, "link restart failed, err %s aq_err %s\n",
10687 i40e_stat_str(&pf->hw, err),
10688 i40e_aq_str(&pf->hw,
10689 pf->hw.aq.asq_last_status));
Anjali Singhai Jaincafa2ee2014-09-13 07:40:45 +000010690 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010691 /* The main driver is (mostly) up and happy. We need to set this state
10692 * before setting up the misc vector or we get a race and the vector
10693 * ends up disabled forever.
10694 */
10695 clear_bit(__I40E_DOWN, &pf->state);
10696
10697 /* In case of MSIX we are going to setup the misc vector right here
10698 * to handle admin queue events etc. In case of legacy and MSI
10699 * the misc functionality and queue processing is combined in
10700 * the same vector and that gets setup at open.
10701 */
10702 if (pf->flags & I40E_FLAG_MSIX_ENABLED) {
10703 err = i40e_setup_misc_vector(pf);
10704 if (err) {
10705 dev_info(&pdev->dev,
10706 "setup of misc vector failed: %d\n", err);
10707 goto err_vsis;
10708 }
10709 }
10710
Greg Rosedf805f62014-04-04 04:43:16 +000010711#ifdef CONFIG_PCI_IOV
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010712 /* prep for VF support */
10713 if ((pf->flags & I40E_FLAG_SRIOV_ENABLED) &&
Shannon Nelson4eb3f762014-03-06 08:59:58 +000010714 (pf->flags & I40E_FLAG_MSIX_ENABLED) &&
10715 !test_bit(__I40E_BAD_EEPROM, &pf->state)) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010716 u32 val;
10717
10718 /* disable link interrupts for VFs */
10719 val = rd32(hw, I40E_PFGEN_PORTMDIO_NUM);
10720 val &= ~I40E_PFGEN_PORTMDIO_NUM_VFLINK_STAT_ENA_MASK;
10721 wr32(hw, I40E_PFGEN_PORTMDIO_NUM, val);
10722 i40e_flush(hw);
Mitch Williams4aeec012014-02-13 03:48:47 -080010723
10724 if (pci_num_vf(pdev)) {
10725 dev_info(&pdev->dev,
10726 "Active VFs found, allocating resources.\n");
10727 err = i40e_alloc_vfs(pf, pci_num_vf(pdev));
10728 if (err)
10729 dev_info(&pdev->dev,
10730 "Error %d allocating resources for existing VFs\n",
10731 err);
10732 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010733 }
Greg Rosedf805f62014-04-04 04:43:16 +000010734#endif /* CONFIG_PCI_IOV */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010735
Anjali Singhai Jain93cd7652013-11-20 10:03:01 +000010736 pfs_found++;
10737
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010738 i40e_dbg_pf_init(pf);
10739
10740 /* tell the firmware that we're starting */
Jesse Brandeburg44033fa2014-04-23 04:50:15 +000010741 i40e_send_version(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010742
10743 /* since everything's happy, start the service_task timer */
10744 mod_timer(&pf->service_timer,
10745 round_jiffies(jiffies + pf->service_timer_period));
10746
Vasu Dev38e00432014-08-01 13:27:03 -070010747#ifdef I40E_FCOE
10748 /* create FCoE interface */
10749 i40e_fcoe_vsi_setup(pf);
10750
10751#endif
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040010752#define PCI_SPEED_SIZE 8
10753#define PCI_WIDTH_SIZE 8
10754 /* Devices on the IOSF bus do not have this information
10755 * and will report PCI Gen 1 x 1 by default so don't bother
10756 * checking them.
10757 */
10758 if (!(pf->flags & I40E_FLAG_NO_PCI_LINK_CHECK)) {
10759 char speed[PCI_SPEED_SIZE] = "Unknown";
10760 char width[PCI_WIDTH_SIZE] = "Unknown";
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010761
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040010762 /* Get the negotiated link width and speed from PCI config
10763 * space
10764 */
10765 pcie_capability_read_word(pf->pdev, PCI_EXP_LNKSTA,
10766 &link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010767
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040010768 i40e_set_pci_config_data(hw, link_status);
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010769
Anjali Singhai Jain3fced532015-09-03 17:18:59 -040010770 switch (hw->bus.speed) {
10771 case i40e_bus_speed_8000:
10772 strncpy(speed, "8.0", PCI_SPEED_SIZE); break;
10773 case i40e_bus_speed_5000:
10774 strncpy(speed, "5.0", PCI_SPEED_SIZE); break;
10775 case i40e_bus_speed_2500:
10776 strncpy(speed, "2.5", PCI_SPEED_SIZE); break;
10777 default:
10778 break;
10779 }
10780 switch (hw->bus.width) {
10781 case i40e_bus_width_pcie_x8:
10782 strncpy(width, "8", PCI_WIDTH_SIZE); break;
10783 case i40e_bus_width_pcie_x4:
10784 strncpy(width, "4", PCI_WIDTH_SIZE); break;
10785 case i40e_bus_width_pcie_x2:
10786 strncpy(width, "2", PCI_WIDTH_SIZE); break;
10787 case i40e_bus_width_pcie_x1:
10788 strncpy(width, "1", PCI_WIDTH_SIZE); break;
10789 default:
10790 break;
10791 }
10792
10793 dev_info(&pdev->dev, "PCI-Express: Speed %sGT/s Width x%s\n",
10794 speed, width);
10795
10796 if (hw->bus.width < i40e_bus_width_pcie_x8 ||
10797 hw->bus.speed < i40e_bus_speed_8000) {
10798 dev_warn(&pdev->dev, "PCI-Express bandwidth available for this device may be insufficient for optimal performance.\n");
10799 dev_warn(&pdev->dev, "Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.\n");
10800 }
Catherine Sullivand4dfb812013-11-28 06:39:21 +000010801 }
10802
Catherine Sullivane8278452015-02-06 08:52:08 +000010803 /* get the requested speeds from the fw */
10804 err = i40e_aq_get_phy_capabilities(hw, false, false, &abilities, NULL);
10805 if (err)
Neerav Parikh8279e492015-09-03 17:18:50 -040010806 dev_dbg(&pf->pdev->dev, "get requested speeds ret = %s last_status = %s\n",
10807 i40e_stat_str(&pf->hw, err),
10808 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
Catherine Sullivane8278452015-02-06 08:52:08 +000010809 pf->hw.phy.link_info.requested_speeds = abilities.link_speed;
10810
Catherine Sullivanfc72dbc2015-09-01 11:36:30 -040010811 /* get the supported phy types from the fw */
10812 err = i40e_aq_get_phy_capabilities(hw, false, true, &abilities, NULL);
10813 if (err)
10814 dev_dbg(&pf->pdev->dev, "get supported phy types ret = %s last_status = %s\n",
10815 i40e_stat_str(&pf->hw, err),
10816 i40e_aq_str(&pf->hw, pf->hw.aq.asq_last_status));
10817 pf->hw.phy.phy_types = le32_to_cpu(abilities.phy_type);
10818
Anjali Singhai Jaine7358f52015-10-01 14:37:34 -040010819 /* Add a filter to drop all Flow control frames from any VSI from being
10820 * transmitted. By doing so we stop a malicious VF from sending out
10821 * PAUSE or PFC frames and potentially controlling traffic for other
10822 * PF/VF VSIs.
10823 * The FW can still send Flow control frames if enabled.
10824 */
10825 i40e_add_filter_to_drop_tx_flow_control_frames(&pf->hw,
10826 pf->main_vsi_seid);
10827
Jesse Brandeburg0c22b3d2014-02-11 08:24:14 +000010828 /* print a string summarizing features */
10829 i40e_print_features(pf);
10830
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010831 return 0;
10832
10833 /* Unwind what we've done if something failed in the setup */
10834err_vsis:
10835 set_bit(__I40E_DOWN, &pf->state);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010836 i40e_clear_interrupt_scheme(pf);
10837 kfree(pf->vsi);
Shannon Nelson04b03012013-11-28 06:39:34 +000010838err_switch_setup:
10839 i40e_reset_interrupt_capability(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010840 del_timer_sync(&pf->service_timer);
10841err_mac_addr:
10842err_configure_lan_hmc:
10843 (void)i40e_shutdown_lan_hmc(hw);
10844err_init_lan_hmc:
10845 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010846err_sw_init:
10847err_adminq_setup:
10848 (void)i40e_shutdown_adminq(hw);
10849err_pf_reset:
10850 iounmap(hw->hw_addr);
10851err_ioremap:
10852 kfree(pf);
10853err_pf_alloc:
10854 pci_disable_pcie_error_reporting(pdev);
10855 pci_release_selected_regions(pdev,
10856 pci_select_bars(pdev, IORESOURCE_MEM));
10857err_pci_reg:
10858err_dma:
10859 pci_disable_device(pdev);
10860 return err;
10861}
10862
10863/**
10864 * i40e_remove - Device removal routine
10865 * @pdev: PCI device information struct
10866 *
10867 * i40e_remove is called by the PCI subsystem to alert the driver
10868 * that is should release a PCI device. This could be caused by a
10869 * Hot-Plug event, or because the driver is going to be removed from
10870 * memory.
10871 **/
10872static void i40e_remove(struct pci_dev *pdev)
10873{
10874 struct i40e_pf *pf = pci_get_drvdata(pdev);
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040010875 struct i40e_hw *hw = &pf->hw;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010876 i40e_status ret_code;
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010877 int i;
10878
10879 i40e_dbg_pf_exit(pf);
10880
Jacob Kellerbeb0dff2014-01-11 05:43:19 +000010881 i40e_ptp_stop(pf);
10882
Carolyn Wybornybcab2db2015-09-28 14:16:55 -040010883 /* Disable RSS in hw */
10884 wr32(hw, I40E_PFQF_HENA(0), 0);
10885 wr32(hw, I40E_PFQF_HENA(1), 0);
10886
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010887 /* no more scheduling of any task */
10888 set_bit(__I40E_DOWN, &pf->state);
10889 del_timer_sync(&pf->service_timer);
10890 cancel_work_sync(&pf->service_task);
Mitch A Williams33c62b32015-02-21 06:44:51 +000010891 i40e_fdir_teardown(pf);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010892
Mitch Williamseb2d80b2014-02-13 03:48:48 -080010893 if (pf->flags & I40E_FLAG_SRIOV_ENABLED) {
10894 i40e_free_vfs(pf);
10895 pf->flags &= ~I40E_FLAG_SRIOV_ENABLED;
10896 }
10897
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010898 i40e_fdir_teardown(pf);
10899
10900 /* If there is a switch structure or any orphans, remove them.
10901 * This will leave only the PF's VSI remaining.
10902 */
10903 for (i = 0; i < I40E_MAX_VEB; i++) {
10904 if (!pf->veb[i])
10905 continue;
10906
10907 if (pf->veb[i]->uplink_seid == pf->mac_seid ||
10908 pf->veb[i]->uplink_seid == 0)
10909 i40e_switch_branch_release(pf->veb[i]);
10910 }
10911
10912 /* Now we can shutdown the PF's VSI, just before we kill
10913 * adminq and hmc.
10914 */
10915 if (pf->vsi[pf->lan_vsi])
10916 i40e_vsi_release(pf->vsi[pf->lan_vsi]);
10917
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010918 /* shutdown and destroy the HMC */
Shannon Nelson60442de2014-04-23 04:50:13 +000010919 if (pf->hw.hmc.hmc_obj) {
10920 ret_code = i40e_shutdown_lan_hmc(&pf->hw);
10921 if (ret_code)
10922 dev_warn(&pdev->dev,
10923 "Failed to destroy the HMC resources: %d\n",
10924 ret_code);
10925 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010926
10927 /* shutdown the adminq */
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010928 ret_code = i40e_shutdown_adminq(&pf->hw);
10929 if (ret_code)
10930 dev_warn(&pdev->dev,
10931 "Failed to destroy the Admin Queue resources: %d\n",
10932 ret_code);
10933
10934 /* Clear all dynamic memory lists of rings, q_vectors, and VSIs */
10935 i40e_clear_interrupt_scheme(pf);
Mitch Williams505682c2014-05-20 08:01:37 +000010936 for (i = 0; i < pf->num_alloc_vsi; i++) {
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010937 if (pf->vsi[i]) {
10938 i40e_vsi_clear_rings(pf->vsi[i]);
10939 i40e_vsi_clear(pf->vsi[i]);
10940 pf->vsi[i] = NULL;
10941 }
10942 }
10943
10944 for (i = 0; i < I40E_MAX_VEB; i++) {
10945 kfree(pf->veb[i]);
10946 pf->veb[i] = NULL;
10947 }
10948
10949 kfree(pf->qp_pile);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010950 kfree(pf->vsi);
10951
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010952 iounmap(pf->hw.hw_addr);
10953 kfree(pf);
10954 pci_release_selected_regions(pdev,
10955 pci_select_bars(pdev, IORESOURCE_MEM));
10956
10957 pci_disable_pcie_error_reporting(pdev);
10958 pci_disable_device(pdev);
10959}
10960
10961/**
10962 * i40e_pci_error_detected - warning that something funky happened in PCI land
10963 * @pdev: PCI device information struct
10964 *
10965 * Called to warn that something happened and the error handling steps
10966 * are in progress. Allows the driver to quiesce things, be ready for
10967 * remediation.
10968 **/
10969static pci_ers_result_t i40e_pci_error_detected(struct pci_dev *pdev,
10970 enum pci_channel_state error)
10971{
10972 struct i40e_pf *pf = pci_get_drvdata(pdev);
10973
10974 dev_info(&pdev->dev, "%s: error %d\n", __func__, error);
10975
10976 /* shutdown all operations */
Shannon Nelson9007bcc2013-11-26 10:49:23 +000010977 if (!test_bit(__I40E_SUSPENDED, &pf->state)) {
10978 rtnl_lock();
10979 i40e_prep_for_reset(pf);
10980 rtnl_unlock();
10981 }
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000010982
10983 /* Request a slot reset */
10984 return PCI_ERS_RESULT_NEED_RESET;
10985}
10986
10987/**
10988 * i40e_pci_error_slot_reset - a PCI slot reset just happened
10989 * @pdev: PCI device information struct
10990 *
10991 * Called to find if the driver can work with the device now that
10992 * the pci slot has been reset. If a basic connection seems good
10993 * (registers are readable and have sane content) then return a
10994 * happy little PCI_ERS_RESULT_xxx.
10995 **/
10996static pci_ers_result_t i40e_pci_error_slot_reset(struct pci_dev *pdev)
10997{
10998 struct i40e_pf *pf = pci_get_drvdata(pdev);
10999 pci_ers_result_t result;
11000 int err;
11001 u32 reg;
11002
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011003 dev_dbg(&pdev->dev, "%s\n", __func__);
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011004 if (pci_enable_device_mem(pdev)) {
11005 dev_info(&pdev->dev,
11006 "Cannot re-enable PCI device after reset.\n");
11007 result = PCI_ERS_RESULT_DISCONNECT;
11008 } else {
11009 pci_set_master(pdev);
11010 pci_restore_state(pdev);
11011 pci_save_state(pdev);
11012 pci_wake_from_d3(pdev, false);
11013
11014 reg = rd32(&pf->hw, I40E_GLGEN_RTRIG);
11015 if (reg == 0)
11016 result = PCI_ERS_RESULT_RECOVERED;
11017 else
11018 result = PCI_ERS_RESULT_DISCONNECT;
11019 }
11020
11021 err = pci_cleanup_aer_uncorrect_error_status(pdev);
11022 if (err) {
11023 dev_info(&pdev->dev,
11024 "pci_cleanup_aer_uncorrect_error_status failed 0x%0x\n",
11025 err);
11026 /* non-fatal, continue */
11027 }
11028
11029 return result;
11030}
11031
11032/**
11033 * i40e_pci_error_resume - restart operations after PCI error recovery
11034 * @pdev: PCI device information struct
11035 *
11036 * Called to allow the driver to bring things back up after PCI error
11037 * and/or reset recovery has finished.
11038 **/
11039static void i40e_pci_error_resume(struct pci_dev *pdev)
11040{
11041 struct i40e_pf *pf = pci_get_drvdata(pdev);
11042
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011043 dev_dbg(&pdev->dev, "%s\n", __func__);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011044 if (test_bit(__I40E_SUSPENDED, &pf->state))
11045 return;
11046
11047 rtnl_lock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011048 i40e_handle_reset_warning(pf);
Vasily Averin4c4935a2015-07-08 15:04:26 +030011049 rtnl_unlock();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011050}
11051
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011052/**
11053 * i40e_shutdown - PCI callback for shutting down
11054 * @pdev: PCI device information struct
11055 **/
11056static void i40e_shutdown(struct pci_dev *pdev)
11057{
11058 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011059 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011060
11061 set_bit(__I40E_SUSPENDED, &pf->state);
11062 set_bit(__I40E_DOWN, &pf->state);
11063 rtnl_lock();
11064 i40e_prep_for_reset(pf);
11065 rtnl_unlock();
11066
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011067 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11068 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11069
Catherine Sullivan02b42492015-07-10 19:35:59 -040011070 del_timer_sync(&pf->service_timer);
11071 cancel_work_sync(&pf->service_task);
11072 i40e_fdir_teardown(pf);
11073
11074 rtnl_lock();
11075 i40e_prep_for_reset(pf);
11076 rtnl_unlock();
11077
11078 wr32(hw, I40E_PFPM_APM,
11079 (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11080 wr32(hw, I40E_PFPM_WUFC,
11081 (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11082
Shannon Nelsone1477582015-02-21 06:44:33 +000011083 i40e_clear_interrupt_scheme(pf);
11084
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011085 if (system_state == SYSTEM_POWER_OFF) {
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011086 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011087 pci_set_power_state(pdev, PCI_D3hot);
11088 }
11089}
11090
11091#ifdef CONFIG_PM
11092/**
11093 * i40e_suspend - PCI callback for moving to D3
11094 * @pdev: PCI device information struct
11095 **/
11096static int i40e_suspend(struct pci_dev *pdev, pm_message_t state)
11097{
11098 struct i40e_pf *pf = pci_get_drvdata(pdev);
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011099 struct i40e_hw *hw = &pf->hw;
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011100
11101 set_bit(__I40E_SUSPENDED, &pf->state);
11102 set_bit(__I40E_DOWN, &pf->state);
Mitch Williams3932dbf2015-03-31 00:45:04 -070011103
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011104 rtnl_lock();
11105 i40e_prep_for_reset(pf);
11106 rtnl_unlock();
11107
Shannon Nelson8e2773a2013-11-28 06:39:22 +000011108 wr32(hw, I40E_PFPM_APM, (pf->wol_en ? I40E_PFPM_APM_APME_MASK : 0));
11109 wr32(hw, I40E_PFPM_WUFC, (pf->wol_en ? I40E_PFPM_WUFC_MAG_MASK : 0));
11110
11111 pci_wake_from_d3(pdev, pf->wol_en);
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011112 pci_set_power_state(pdev, PCI_D3hot);
11113
11114 return 0;
11115}
11116
11117/**
11118 * i40e_resume - PCI callback for waking up from D3
11119 * @pdev: PCI device information struct
11120 **/
11121static int i40e_resume(struct pci_dev *pdev)
11122{
11123 struct i40e_pf *pf = pci_get_drvdata(pdev);
11124 u32 err;
11125
11126 pci_set_power_state(pdev, PCI_D0);
11127 pci_restore_state(pdev);
11128 /* pci_restore_state() clears dev->state_saves, so
11129 * call pci_save_state() again to restore it.
11130 */
11131 pci_save_state(pdev);
11132
11133 err = pci_enable_device_mem(pdev);
11134 if (err) {
Shannon Nelsonfb43201f2015-08-26 15:14:17 -040011135 dev_err(&pdev->dev, "Cannot enable PCI device from suspend\n");
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011136 return err;
11137 }
11138 pci_set_master(pdev);
11139
11140 /* no wakeup events while running */
11141 pci_wake_from_d3(pdev, false);
11142
11143 /* handling the reset will rebuild the device state */
11144 if (test_and_clear_bit(__I40E_SUSPENDED, &pf->state)) {
11145 clear_bit(__I40E_DOWN, &pf->state);
11146 rtnl_lock();
11147 i40e_reset_and_rebuild(pf, false);
11148 rtnl_unlock();
11149 }
11150
11151 return 0;
11152}
11153
11154#endif
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011155static const struct pci_error_handlers i40e_err_handler = {
11156 .error_detected = i40e_pci_error_detected,
11157 .slot_reset = i40e_pci_error_slot_reset,
11158 .resume = i40e_pci_error_resume,
11159};
11160
11161static struct pci_driver i40e_driver = {
11162 .name = i40e_driver_name,
11163 .id_table = i40e_pci_tbl,
11164 .probe = i40e_probe,
11165 .remove = i40e_remove,
Shannon Nelson9007bcc2013-11-26 10:49:23 +000011166#ifdef CONFIG_PM
11167 .suspend = i40e_suspend,
11168 .resume = i40e_resume,
11169#endif
11170 .shutdown = i40e_shutdown,
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011171 .err_handler = &i40e_err_handler,
11172 .sriov_configure = i40e_pci_sriov_configure,
11173};
11174
11175/**
11176 * i40e_init_module - Driver registration routine
11177 *
11178 * i40e_init_module is the first routine called when the driver is
11179 * loaded. All it does is register with the PCI subsystem.
11180 **/
11181static int __init i40e_init_module(void)
11182{
11183 pr_info("%s: %s - version %s\n", i40e_driver_name,
11184 i40e_driver_string, i40e_driver_version_str);
11185 pr_info("%s: %s\n", i40e_driver_name, i40e_copyright);
Greg Rose96664482015-02-06 08:52:13 +000011186
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011187 i40e_dbg_init();
11188 return pci_register_driver(&i40e_driver);
11189}
11190module_init(i40e_init_module);
11191
11192/**
11193 * i40e_exit_module - Driver exit cleanup routine
11194 *
11195 * i40e_exit_module is called just before the driver is removed
11196 * from memory.
11197 **/
11198static void __exit i40e_exit_module(void)
11199{
11200 pci_unregister_driver(&i40e_driver);
11201 i40e_dbg_exit();
Jesse Brandeburg41c445f2013-09-11 08:39:46 +000011202}
11203module_exit(i40e_exit_module);